~ubuntu-branches/ubuntu/jaunty/simh/jaunty

« back to all changes in this revision

Viewing changes to HP2100/hp2100_fp1.h

  • Committer: Bazaar Package Importer
  • Author(s): Vince Mulhollon
  • Date: 2007-04-13 20:16:15 UTC
  • mto: (1.1.7 upstream) (2.1.3 lenny)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20070413201615-9cjgwio4ryhg7c92
ImportĀ upstreamĀ versionĀ 3.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* hp2100_fp1.h: HP 2100/21MX extended-precision floating point definitions
 
1
/* hp2100_fp1.h: HP 2100/1000 multiple-precision floating point definitions
2
2
 
3
 
   Copyright (c) 2005, J. David Bryan
 
3
   Copyright (c) 2005-2006, J. David Bryan
4
4
 
5
5
   Permission is hereby granted, free of charge, to any person obtaining a
6
6
   copy of this software and associated documentation files (the "Software"),
15
15
   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
16
   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
17
   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18
 
   ROBERT M SUPNIK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 
18
   THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
19
   IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
20
   CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
21
 
22
 
   Except as contained in this notice, the name of the author shall not
23
 
   be used in advertising or otherwise to promote the sale, use or other dealings
24
 
   in this Software without prior written authorization from the author.
 
22
   Except as contained in this notice, the name of the author shall not be used
 
23
   in advertising or otherwise to promote the sale, use or other dealings in
 
24
   this Software without prior written authorization from the author.
 
25
 
 
26
   16-Oct-06    JDB     Generalized FP calling sequences for F-Series
 
27
   12-Oct-06    JDB     Altered x_trun for F-Series FFP compatibility
25
28
*/
26
29
 
27
30
#ifndef _HP2100_FP1_H_
28
31
#define _HP2100_FP1_H_  0
29
32
 
30
 
/* HP memory representation of an extended-precision number */
31
 
 
32
 
typedef struct {
33
 
    uint32      high;
34
 
    uint32      low;
35
 
    } XPN;
36
 
 
37
 
 
38
 
#define AS_XPN(x) (*(XPN *) &(x))                       /* view as XPN */
39
 
 
40
 
XPN ReadX (uint32 va);
41
 
void WriteX (uint32 va, XPN packed);
42
 
 
43
 
uint32 x_add (XPN *sum, XPN augend, XPN addend);
44
 
uint32 x_sub (XPN *difference, XPN minuend, XPN subtrahend);
45
 
uint32 x_mpy (XPN *product, XPN multiplicand, XPN multiplier);
46
 
uint32 x_div (XPN *quotient, XPN dividend, XPN divisor);
47
 
uint32 x_pak (XPN *result, XPN mantissa, int32 exponent);
48
 
uint32 x_com (XPN *mantissa);
49
 
uint32 x_dcm (XPN *packed);
50
 
void x_trun (XPN *result, XPN source);
 
33
 
 
34
/* Special operands. */
 
35
 
 
36
#define ACCUM   NULL                                    /* result not returned */
 
37
static const OP NOP = { { 0, 0, 0, 0, 0 } };            /* unneeded operand */
 
38
 
 
39
 
 
40
/* Generalized floating-point handlers. */
 
41
 
 
42
void   fp_prec   (uint16 opcode, OPSIZE *operand_l, OPSIZE *operand_r, OPSIZE *result);
 
43
uint32 fp_exec   (uint16 opcode, OP *result, OP operand_l, OP operand_r);
 
44
OP     fp_accum  (const OP *operand, OPSIZE precision);
 
45
uint32 fp_pack   (OP *result, OP mantissa, int32 exponent, OPSIZE precision);
 
46
uint32 fp_nrpack (OP *result, OP mantissa, int32 exponent, OPSIZE precision);
 
47
uint32 fp_unpack (OP *mantissa, int32 *exponent, OP packed, OPSIZE precision);
 
48
uint32 fp_ucom   (OP *mantissa, OPSIZE precision);
 
49
uint32 fp_pcom   (OP *packed, OPSIZE precision);
 
50
uint32 fp_trun   (OP *result, OP source, OPSIZE precision);
 
51
uint32 fp_cvt    (OP *result, OPSIZE source_precision, OPSIZE dest_precision);
51
52
 
52
53
#endif