4 | The entry point sINT computes the rounded integer
5 | equivalent of the input argument, sINTRZ computes
6 | the integer rounded to zero of the input argument.
8 | Entry points sint and sintrz are called from do_func
9 | to emulate the fint and fintrz unimplemented instructions,
10 | respectively. Entry point sintdo is used by bindec.
12 | Input: (Entry points sint and sintrz) Double-extended
13 | number X in the ETEMP space in the floating-point
15 | (Entry point sintdo) Double-extended number X in
16 | location pointed to by the address register a0.
17 | (Entry point sintd) Double-extended denormalized
18 | number X in the ETEMP space in the floating-point
21 | Output: The function returns int(X) or intrz(X) in fp0.
25 | Algorithm: (sint and sintrz)
27 | 1. If exp(X) >= 63, return X.
28 | If exp(X) < 0, return +/- 0 or +/- 1, according to
31 | 2. (X is in range) set rsc = 63 - exp(X). Unnormalize the
32 | result to the exponent $403e.
34 | 3. Round the result in the mode given in USER_FPCR. For
35 | sintrz, force round-to-zero mode.
37 | 4. Normalize the rounded result; store in fp0.
39 | For the denormalized cases, force the correct result
40 | for the given sign and rounding mode.
51 | Copyright (C) Motorola, Inc. 1990
54 | For details on the license for this file, please see the
55 | file, README, in this same directory.
57 |SINT idnt 2,1 | Motorola 040 Floating Point Software Package
78 bfextu FPCR_MODE(%a6){#2:#2},%d1 |use user's mode for rounding
79 | ;implicitly has extend precision
81 movel %d1,L_SCR1(%a6) |save mode bits
85 | FINT with extended denorm inputs.
89 btstb #5,FPCR_MODE(%a6)
90 beq snzrinx |if round nearest or round zero, +/- 0
91 btstb #4,FPCR_MODE(%a6)
94 btstb #sign_bit,LOCAL_EX(%a0)
96 bsr ld_pone |if round plus inf and pos, answer is +1
99 btstb #sign_bit,LOCAL_EX(%a0)
101 bsr ld_mone |if round mns inf and neg, answer is -1
115 movel #1,L_SCR1(%a6) |use rz mode for rounding
116 | ;implicitly has extend precision
122 | Input: a0 points to an IEEE extended format operand
123 | Output: fp0 has the result
127 | If the subroutine results in an inexact operation, the inx2 and
128 | ainx bits in the USER_FPSR are set.
133 bfextu FPCR_MODE(%a6){#2:#2},%d1 |use user's mode for rounding
134 | ;implicitly has ext precision
136 movel %d1,L_SCR1(%a6) |save mode bits
138 | Real work of sint is in sintexc
141 bclrb #sign_bit,LOCAL_EX(%a0) |convert to internal extended
144 cmpw #0x403e,LOCAL_EX(%a0) |check if (unbiased) exp > 63
145 bgts out_rnge |branch if exp < 63
146 cmpw #0x3ffd,LOCAL_EX(%a0) |check if (unbiased) exp < 0
147 bgt in_rnge |if 63 >= exp > 0, do calc
149 | Input is less than zero. Restore sign, and check for directed
150 | rounding modes. L_SCR1 contains the rmode in the lower byte.
153 btstb #1,L_SCR1+3(%a6) |check for rn and rz
155 tstb LOCAL_SGN(%a0) |check for sign
158 | Sign is +. If rp, load +1.0, if rm, load +0.0
160 cmpib #3,L_SCR1+3(%a6) |check for rp
161 beqs un_ldpone |if rp, load +1.0
162 bsr ld_pzero |if rm, load +0.0
168 | Sign is -. If rm, load -1.0, if rp, load -0.0
171 cmpib #2,L_SCR1+3(%a6) |check for rm
172 beqs un_ldmone |if rm, load -1.0
173 bsr ld_mzero |if rp, load -0.0
179 | Rmode is rn or rz; return signed zero
182 tstb LOCAL_SGN(%a0) |check for sign
191 | Input is greater than 2^63. All bits are significant. Return
195 bfclr LOCAL_SGN(%a0){#0:#8} |change back to IEEE ext format
197 bsetb #sign_bit,LOCAL_EX(%a0)
201 fmovex LOCAL_EX(%a0),%fp0 |if exp > 63
202 | ;then return X to the user
203 | ;there are no fraction bits
208 | ;shift off fraction bits
209 clrl %d0 |clear d0 - initial g,r,s for
211 movel #0x403e,%d1 |set threshold for dnrm_lp
212 | ;assumes a0 points to operand
214 | ;returns unnormalized number
216 | ;output d0 supplies g,r,s
218 movel L_SCR1(%a6),%d1 |use selected rounding mode
221 bsr round |round the unnorm based on users
222 | ;input a0 ptr to ext X
224 | ; d1 PREC/MODE info
225 | ;output a0 ptr to rounded result
226 | ;inexact flag set in USER_FPSR
227 | ;if initial grs set
229 | normalize the rounded result and store value in fp0
231 bsr nrm_set |normalize the unnorm
232 | ;Input: a0 points to operand to
234 | ;Output: a0 points to normalized
236 bfclr LOCAL_SGN(%a0){#0:#8}
238 bsetb #sign_bit,LOCAL_EX(%a0) |return to IEEE extended format
242 fmovex LOCAL_EX(%a0),%fp0 |move result to fp0