round.S
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:16k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. |
  2. | round.sa 3.4 7/29/91
  3. |
  4. | handle rounding and normalization tasks
  5. |
  6. |
  7. |
  8. | Copyright (C) Motorola, Inc. 1990
  9. | All Rights Reserved
  10. |
  11. | THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF MOTOROLA 
  12. | The copyright notice above does not evidence any  
  13. | actual or intended publication of such source code.
  14. |ROUND idnt    2,1 | Motorola 040 Floating Point Software Package
  15. |section 8
  16. .include "fpsp.h"
  17. |
  18. | round --- round result according to precision/mode
  19. |
  20. | a0 points to the input operand in the internal extended format 
  21. | d1(high word) contains rounding precision:
  22. | ext = $0000xxxx
  23. | sgl = $0001xxxx
  24. | dbl = $0002xxxx
  25. | d1(low word) contains rounding mode:
  26. | RN  = $xxxx0000
  27. | RZ  = $xxxx0001
  28. | RM  = $xxxx0010
  29. | RP  = $xxxx0011
  30. | d0{31:29} contains the g,r,s bits (extended)
  31. |
  32. | On return the value pointed to by a0 is correctly rounded,
  33. | a0 is preserved and the g-r-s bits in d0 are cleared.
  34. | The result is not typed - the tag field is invalid.  The
  35. | result is still in the internal extended format.
  36. |
  37. | The INEX bit of USER_FPSR will be set if the rounded result was
  38. | inexact (i.e. if any of the g-r-s bits were set).
  39. |
  40. .global round
  41. round:
  42. | If g=r=s=0 then result is exact and round is done, else set 
  43. | the inex flag in status reg and continue.  
  44. |
  45. bsrs ext_grs |this subroutine looks at the 
  46. | :rounding precision and sets 
  47. | ;the appropriate g-r-s bits.
  48. tstl %d0 |if grs are zero, go force
  49. bne rnd_cont |lower bits to zero for size
  50. swap %d1 |set up d1.w for round prec.
  51. bra truncate
  52. rnd_cont:
  53. |
  54. | Use rounding mode as an index into a jump table for these modes.
  55. |
  56. orl #inx2a_mask,USER_FPSR(%a6) |set inex2/ainex
  57. lea mode_tab,%a1
  58. movel (%a1,%d1.w*4),%a1
  59. jmp (%a1)
  60. |
  61. | Jump table indexed by rounding mode in d1.w.  All following assumes
  62. | grs != 0.
  63. |
  64. mode_tab:
  65. .long rnd_near
  66. .long rnd_zero
  67. .long rnd_mnus
  68. .long rnd_plus
  69. |
  70. | ROUND PLUS INFINITY
  71. |
  72. | If sign of fp number = 0 (positive), then add 1 to l.
  73. |
  74. rnd_plus:
  75. swap  %d1 |set up d1 for round prec.
  76. tstb LOCAL_SGN(%a0) |check for sign
  77. bmi truncate |if positive then truncate
  78. movel #0xffffffff,%d0 |force g,r,s to be all f's
  79. lea add_to_l,%a1
  80. movel (%a1,%d1.w*4),%a1
  81. jmp (%a1)
  82. |
  83. | ROUND MINUS INFINITY
  84. |
  85. | If sign of fp number = 1 (negative), then add 1 to l.
  86. |
  87. rnd_mnus:
  88. swap  %d1 |set up d1 for round prec.
  89. tstb LOCAL_SGN(%a0) |check for sign
  90. bpl truncate |if negative then truncate
  91. movel #0xffffffff,%d0 |force g,r,s to be all f's
  92. lea add_to_l,%a1
  93. movel (%a1,%d1.w*4),%a1
  94. jmp (%a1)
  95. |
  96. | ROUND ZERO
  97. |
  98. | Always truncate.
  99. rnd_zero:
  100. swap  %d1 |set up d1 for round prec.
  101. bra truncate
  102. |
  103. |
  104. | ROUND NEAREST
  105. |
  106. | If (g=1), then add 1 to l and if (r=s=0), then clear l
  107. | Note that this will round to even in case of a tie.
  108. |
  109. rnd_near:
  110. swap  %d1 |set up d1 for round prec.
  111. asll #1,%d0 |shift g-bit to c-bit
  112. bcc truncate |if (g=1) then
  113. lea add_to_l,%a1
  114. movel (%a1,%d1.w*4),%a1
  115. jmp (%a1)
  116. |
  117. | ext_grs --- extract guard, round and sticky bits
  118. |
  119. | Input: d1 = PREC:ROUND
  120. | Output:   d0{31:29}= guard, round, sticky
  121. |
  122. | The ext_grs extract the guard/round/sticky bits according to the
  123. | selected rounding precision. It is called by the round subroutine
  124. | only.  All registers except d0 are kept intact. d0 becomes an 
  125. | updated guard,round,sticky in d0{31:29}
  126. |
  127. | Notes: the ext_grs uses the round PREC, and therefore has to swap d1
  128. |  prior to usage, and needs to restore d1 to original.
  129. |
  130. ext_grs:
  131. swap %d1 |have d1.w point to round precision
  132. cmpiw #0,%d1
  133. bnes sgl_or_dbl
  134. bras end_ext_grs
  135.  
  136. sgl_or_dbl:
  137. moveml %d2/%d3,-(%a7) |make some temp registers
  138. cmpiw #1,%d1
  139. bnes grs_dbl
  140. grs_sgl:
  141. bfextu LOCAL_HI(%a0){#24:#2},%d3 |sgl prec. g-r are 2 bits right
  142. movel #30,%d2 |of the sgl prec. limits
  143. lsll %d2,%d3 |shift g-r bits to MSB of d3
  144. movel LOCAL_HI(%a0),%d2 |get word 2 for s-bit test
  145. andil #0x0000003f,%d2 |s bit is the or of all other 
  146. bnes st_stky |bits to the right of g-r
  147. tstl LOCAL_LO(%a0) |test lower mantissa
  148. bnes st_stky |if any are set, set sticky
  149. tstl %d0 |test original g,r,s
  150. bnes st_stky |if any are set, set sticky
  151. bras end_sd |if words 3 and 4 are clr, exit
  152. grs_dbl:    
  153. bfextu LOCAL_LO(%a0){#21:#2},%d3 |dbl-prec. g-r are 2 bits right
  154. movel #30,%d2 |of the dbl prec. limits
  155. lsll %d2,%d3 |shift g-r bits to the MSB of d3
  156. movel LOCAL_LO(%a0),%d2 |get lower mantissa  for s-bit test
  157. andil #0x000001ff,%d2 |s bit is the or-ing of all 
  158. bnes st_stky |other bits to the right of g-r
  159. tstl %d0 |test word original g,r,s
  160. bnes st_stky |if any are set, set sticky
  161. bras end_sd |if clear, exit
  162. st_stky:
  163. bset #rnd_stky_bit,%d3
  164. end_sd:
  165. movel %d3,%d0 |return grs to d0
  166. moveml (%a7)+,%d2/%d3 |restore scratch registers
  167. end_ext_grs:
  168. swap %d1 |restore d1 to original
  169. rts
  170. |*******************  Local Equates
  171. .set ad_1_sgl,0x00000100 |  constant to add 1 to l-bit in sgl prec
  172. .set ad_1_dbl,0x00000800 |  constant to add 1 to l-bit in dbl prec
  173. |Jump table for adding 1 to the l-bit indexed by rnd prec
  174. add_to_l:
  175. .long add_ext
  176. .long add_sgl
  177. .long add_dbl
  178. .long add_dbl
  179. |
  180. | ADD SINGLE
  181. |
  182. add_sgl:
  183. addl #ad_1_sgl,LOCAL_HI(%a0)
  184. bccs scc_clr |no mantissa overflow
  185. roxrw  LOCAL_HI(%a0) |shift v-bit back in
  186. roxrw  LOCAL_HI+2(%a0) |shift v-bit back in
  187. addw #0x1,LOCAL_EX(%a0) |and incr exponent
  188. scc_clr:
  189. tstl %d0 |test for rs = 0
  190. bnes sgl_done
  191. andiw  #0xfe00,LOCAL_HI+2(%a0) |clear the l-bit
  192. sgl_done:
  193. andil #0xffffff00,LOCAL_HI(%a0) |truncate bits beyond sgl limit
  194. clrl LOCAL_LO(%a0) |clear d2
  195. rts
  196. |
  197. | ADD EXTENDED
  198. |
  199. add_ext:
  200. addql  #1,LOCAL_LO(%a0) |add 1 to l-bit
  201. bccs xcc_clr |test for carry out
  202. addql  #1,LOCAL_HI(%a0) |propagate carry
  203. bccs xcc_clr
  204. roxrw  LOCAL_HI(%a0) |mant is 0 so restore v-bit
  205. roxrw  LOCAL_HI+2(%a0) |mant is 0 so restore v-bit
  206. roxrw LOCAL_LO(%a0)
  207. roxrw LOCAL_LO+2(%a0)
  208. addw #0x1,LOCAL_EX(%a0) |and inc exp
  209. xcc_clr:
  210. tstl %d0 |test rs = 0
  211. bnes add_ext_done
  212. andib #0xfe,LOCAL_LO+3(%a0) |clear the l bit
  213. add_ext_done:
  214. rts
  215. |
  216. | ADD DOUBLE
  217. |
  218. add_dbl:
  219. addl #ad_1_dbl,LOCAL_LO(%a0)
  220. bccs dcc_clr
  221. addql #1,LOCAL_HI(%a0) |propagate carry
  222. bccs dcc_clr
  223. roxrw LOCAL_HI(%a0) |mant is 0 so restore v-bit
  224. roxrw LOCAL_HI+2(%a0) |mant is 0 so restore v-bit
  225. roxrw LOCAL_LO(%a0)
  226. roxrw LOCAL_LO+2(%a0)
  227. addw #0x1,LOCAL_EX(%a0) |incr exponent
  228. dcc_clr:
  229. tstl %d0 |test for rs = 0
  230. bnes dbl_done
  231. andiw #0xf000,LOCAL_LO+2(%a0) |clear the l-bit
  232. dbl_done:
  233. andil #0xfffff800,LOCAL_LO(%a0) |truncate bits beyond dbl limit
  234. rts
  235. error:
  236. rts
  237. |
  238. | Truncate all other bits
  239. |
  240. trunct:
  241. .long end_rnd
  242. .long sgl_done
  243. .long dbl_done
  244. .long dbl_done
  245. truncate:
  246. lea trunct,%a1
  247. movel (%a1,%d1.w*4),%a1
  248. jmp (%a1)
  249. end_rnd:
  250. rts
  251. |
  252. | NORMALIZE
  253. |
  254. | These routines (nrm_zero & nrm_set) normalize the unnorm.  This 
  255. | is done by shifting the mantissa left while decrementing the 
  256. | exponent.
  257. |
  258. | NRM_SET shifts and decrements until there is a 1 set in the integer 
  259. | bit of the mantissa (msb in d1).
  260. |
  261. | NRM_ZERO shifts and decrements until there is a 1 set in the integer 
  262. | bit of the mantissa (msb in d1) unless this would mean the exponent 
  263. | would go less than 0.  In that case the number becomes a denorm - the 
  264. | exponent (d0) is set to 0 and the mantissa (d1 & d2) is not 
  265. | normalized.
  266. |
  267. | Note that both routines have been optimized (for the worst case) and 
  268. | therefore do not have the easy to follow decrement/shift loop.
  269. |
  270. | NRM_ZERO
  271. |
  272. | Distance to first 1 bit in mantissa = X
  273. | Distance to 0 from exponent = Y
  274. | If X < Y
  275. | Then
  276. |   nrm_set
  277. | Else
  278. |   shift mantissa by Y
  279. |   set exponent = 0
  280. |
  281. |input:
  282. | FP_SCR1 = exponent, ms mantissa part, ls mantissa part
  283. |output:
  284. | L_SCR1{4} = fpte15 or ete15 bit
  285. |
  286. .global nrm_zero
  287. nrm_zero:
  288. movew LOCAL_EX(%a0),%d0
  289. cmpw   #64,%d0          |see if exp > 64 
  290. bmis d0_less
  291. bsr nrm_set |exp > 64 so exp won't exceed 0 
  292. rts
  293. d0_less:
  294. moveml %d2/%d3/%d5/%d6,-(%a7)
  295. movel LOCAL_HI(%a0),%d1
  296. movel LOCAL_LO(%a0),%d2
  297. bfffo %d1{#0:#32},%d3 |get the distance to the first 1 
  298. | ;in ms mant
  299. beqs ms_clr |branch if no bits were set
  300. cmpw %d3,%d0 |of X>Y
  301. bmis greater |then exp will go past 0 (neg) if 
  302. | ;it is just shifted
  303. bsr nrm_set |else exp won't go past 0
  304. moveml (%a7)+,%d2/%d3/%d5/%d6
  305. rts
  306. greater:
  307. movel %d2,%d6 |save ls mant in d6
  308. lsll %d0,%d2 |shift ls mant by count
  309. lsll %d0,%d1 |shift ms mant by count
  310. movel #32,%d5
  311. subl %d0,%d5 |make op a denorm by shifting bits 
  312. lsrl %d5,%d6 |by the number in the exp, then 
  313. | ;set exp = 0.
  314. orl %d6,%d1 |shift the ls mant bits into the ms mant
  315. movel #0,%d0 |same as if decremented exp to 0 
  316. | ;while shifting
  317. movew %d0,LOCAL_EX(%a0)
  318. movel %d1,LOCAL_HI(%a0)
  319. movel %d2,LOCAL_LO(%a0)
  320. moveml (%a7)+,%d2/%d3/%d5/%d6
  321. rts
  322. ms_clr:
  323. bfffo %d2{#0:#32},%d3 |check if any bits set in ls mant
  324. beqs all_clr |branch if none set
  325. addw #32,%d3
  326. cmpw %d3,%d0 |if X>Y
  327. bmis greater |then branch
  328. bsr nrm_set |else exp won't go past 0
  329. moveml (%a7)+,%d2/%d3/%d5/%d6
  330. rts
  331. all_clr:
  332. movew #0,LOCAL_EX(%a0) |no mantissa bits set. Set exp = 0.
  333. moveml (%a7)+,%d2/%d3/%d5/%d6
  334. rts
  335. |
  336. | NRM_SET
  337. |
  338. .global nrm_set
  339. nrm_set:
  340. movel %d7,-(%a7)
  341. bfffo LOCAL_HI(%a0){#0:#32},%d7 |find first 1 in ms mant to d7)
  342. beqs lower |branch if ms mant is all 0's
  343. movel %d6,-(%a7)
  344. subw %d7,LOCAL_EX(%a0) |sub exponent by count
  345. movel LOCAL_HI(%a0),%d0 |d0 has ms mant
  346. movel LOCAL_LO(%a0),%d1 |d1 has ls mant
  347. lsll %d7,%d0 |shift first 1 to j bit position
  348. movel %d1,%d6 |copy ls mant into d6
  349. lsll %d7,%d6 |shift ls mant by count
  350. movel %d6,LOCAL_LO(%a0) |store ls mant into memory
  351. moveql #32,%d6
  352. subl %d7,%d6 |continue shift
  353. lsrl %d6,%d1 |shift off all bits but those that will
  354. | ;be shifted into ms mant
  355. orl %d1,%d0 |shift the ls mant bits into the ms mant
  356. movel %d0,LOCAL_HI(%a0) |store ms mant into memory
  357. moveml (%a7)+,%d7/%d6 |restore registers
  358. rts
  359. |
  360. | We get here if ms mant was = 0, and we assume ls mant has bits 
  361. | set (otherwise this would have been tagged a zero not a denorm).
  362. |
  363. lower:
  364. movew LOCAL_EX(%a0),%d0 |d0 has exponent
  365. movel LOCAL_LO(%a0),%d1 |d1 has ls mant
  366. subw #32,%d0 |account for ms mant being all zeros
  367. bfffo %d1{#0:#32},%d7 |find first 1 in ls mant to d7)
  368. subw %d7,%d0 |subtract shift count from exp
  369. lsll %d7,%d1 |shift first 1 to integer bit in ms mant
  370. movew %d0,LOCAL_EX(%a0) |store ms mant
  371. movel %d1,LOCAL_HI(%a0) |store exp
  372. clrl LOCAL_LO(%a0) |clear ls mant
  373. movel (%a7)+,%d7
  374. rts
  375. |
  376. | denorm --- denormalize an intermediate result
  377. |
  378. | Used by underflow.
  379. |
  380. | Input: 
  381. | a0  points to the operand to be denormalized
  382. |  (in the internal extended format)
  383. |  
  384. | d0:   rounding precision
  385. | Output:
  386. | a0  points to the denormalized result
  387. |  (in the internal extended format)
  388. |
  389. | d0  is guard,round,sticky
  390. |
  391. | d0 comes into this routine with the rounding precision. It 
  392. | is then loaded with the denormalized exponent threshold for the 
  393. | rounding precision.
  394. |
  395. .global denorm
  396. denorm:
  397. btstb #6,LOCAL_EX(%a0) |check for exponents between $7fff-$4000
  398. beqs no_sgn_ext
  399. bsetb #7,LOCAL_EX(%a0) |sign extend if it is so
  400. no_sgn_ext:
  401. cmpib #0,%d0 |if 0 then extended precision
  402. bnes not_ext |else branch
  403. clrl %d1 |load d1 with ext threshold
  404. clrl %d0 |clear the sticky flag
  405. bsr dnrm_lp |denormalize the number
  406. tstb %d1 |check for inex
  407. beq no_inex |if clr, no inex
  408. bras dnrm_inex |if set, set inex
  409. not_ext:
  410. cmpil #1,%d0 |if 1 then single precision
  411. beqs load_sgl |else must be 2, double prec
  412. load_dbl:
  413. movew #dbl_thresh,%d1 |put copy of threshold in d1
  414. movel %d1,%d0 |copy d1 into d0
  415. subw LOCAL_EX(%a0),%d0 |diff = threshold - exp
  416. cmpw #67,%d0 |if diff > 67 (mant + grs bits)
  417. bpls chk_stky |then branch (all bits would be 
  418. | ; shifted off in denorm routine)
  419. clrl %d0 |else clear the sticky flag
  420. bsr dnrm_lp |denormalize the number
  421. tstb %d1 |check flag
  422. beqs no_inex |if clr, no inex
  423. bras dnrm_inex |if set, set inex
  424. load_sgl:
  425. movew #sgl_thresh,%d1 |put copy of threshold in d1
  426. movel %d1,%d0 |copy d1 into d0
  427. subw LOCAL_EX(%a0),%d0 |diff = threshold - exp
  428. cmpw #67,%d0 |if diff > 67 (mant + grs bits)
  429. bpls chk_stky |then branch (all bits would be 
  430. | ; shifted off in denorm routine)
  431. clrl %d0 |else clear the sticky flag
  432. bsr dnrm_lp |denormalize the number
  433. tstb %d1 |check flag
  434. beqs no_inex |if clr, no inex
  435. bras dnrm_inex |if set, set inex
  436. chk_stky:
  437. tstl LOCAL_HI(%a0) |check for any bits set
  438. bnes set_stky
  439. tstl LOCAL_LO(%a0) |check for any bits set
  440. bnes set_stky
  441. bras clr_mant
  442. set_stky:
  443. orl #inx2a_mask,USER_FPSR(%a6) |set inex2/ainex
  444. movel #0x20000000,%d0 |set sticky bit in return value
  445. clr_mant:
  446. movew %d1,LOCAL_EX(%a0) |load exp with threshold
  447. movel #0,LOCAL_HI(%a0)  |set d1 = 0 (ms mantissa)
  448. movel #0,LOCAL_LO(%a0) |set d2 = 0 (ms mantissa)
  449. rts
  450. dnrm_inex:
  451. orl #inx2a_mask,USER_FPSR(%a6) |set inex2/ainex
  452. no_inex:
  453. rts
  454. |
  455. | dnrm_lp --- normalize exponent/mantissa to specified threshold
  456. |
  457. | Input:
  458. | a0 points to the operand to be denormalized
  459. | d0{31:29}  initial guard,round,sticky
  460. | d1{15:0} denormalization threshold
  461. | Output:
  462. | a0 points to the denormalized operand
  463. | d0{31:29} final guard,round,sticky
  464. | d1.b inexact flag:  all ones means inexact result
  465. |
  466. | The LOCAL_LO and LOCAL_GRS parts of the value are copied to FP_SCR2
  467. | so that bfext can be used to extract the new low part of the mantissa.
  468. | Dnrm_lp can be called with a0 pointing to ETEMP or WBTEMP and there 
  469. | is no LOCAL_GRS scratch word following it on the fsave frame.
  470. |
  471. .global dnrm_lp
  472. dnrm_lp:
  473. movel %d2,-(%sp) |save d2 for temp use
  474. btstb #E3,E_BYTE(%a6) |test for type E3 exception
  475. beqs not_E3 |not type E3 exception
  476. bfextu WBTEMP_GRS(%a6){#6:#3},%d2 |extract guard,round, sticky  bit
  477. movel #29,%d0
  478. lsll %d0,%d2 |shift g,r,s to their positions
  479. movel %d2,%d0
  480. not_E3:
  481. movel (%sp)+,%d2 |restore d2
  482. movel LOCAL_LO(%a0),FP_SCR2+LOCAL_LO(%a6)
  483. movel %d0,FP_SCR2+LOCAL_GRS(%a6)
  484. movel %d1,%d0 |copy the denorm threshold
  485. subw LOCAL_EX(%a0),%d1 |d1 = threshold - uns exponent
  486. bles no_lp |d1 <= 0
  487. cmpw #32,%d1
  488. blts case_1 |0 = d1 < 32 
  489. cmpw #64,%d1
  490. blts case_2 |32 <= d1 < 64
  491. bra case_3 |d1 >= 64
  492. |
  493. | No normalization necessary
  494. |
  495. no_lp:
  496. clrb %d1 |set no inex2 reported
  497. movel FP_SCR2+LOCAL_GRS(%a6),%d0 |restore original g,r,s
  498. rts
  499. |
  500. | case (0<d1<32)
  501. |
  502. case_1:
  503. movel %d2,-(%sp)
  504. movew %d0,LOCAL_EX(%a0) |exponent = denorm threshold
  505. movel #32,%d0
  506. subw %d1,%d0 |d0 = 32 - d1
  507. bfextu LOCAL_EX(%a0){%d0:#32},%d2
  508. bfextu %d2{%d1:%d0},%d2 |d2 = new LOCAL_HI
  509. bfextu LOCAL_HI(%a0){%d0:#32},%d1 |d1 = new LOCAL_LO
  510. bfextu FP_SCR2+LOCAL_LO(%a6){%d0:#32},%d0 |d0 = new G,R,S
  511. movel %d2,LOCAL_HI(%a0) |store new LOCAL_HI
  512. movel %d1,LOCAL_LO(%a0) |store new LOCAL_LO
  513. clrb %d1
  514. bftst %d0{#2:#30}
  515. beqs c1nstky
  516. bsetl #rnd_stky_bit,%d0
  517. st %d1
  518. c1nstky:
  519. movel FP_SCR2+LOCAL_GRS(%a6),%d2 |restore original g,r,s
  520. andil #0xe0000000,%d2 |clear all but G,R,S
  521. tstl %d2 |test if original G,R,S are clear
  522. beqs grs_clear
  523. orl #0x20000000,%d0 |set sticky bit in d0
  524. grs_clear:
  525. andil #0xe0000000,%d0 |clear all but G,R,S
  526. movel (%sp)+,%d2
  527. rts
  528. |
  529. | case (32<=d1<64)
  530. |
  531. case_2:
  532. movel %d2,-(%sp)
  533. movew %d0,LOCAL_EX(%a0) |unsigned exponent = threshold
  534. subw #32,%d1 |d1 now between 0 and 32
  535. movel #32,%d0
  536. subw %d1,%d0 |d0 = 32 - d1
  537. bfextu LOCAL_EX(%a0){%d0:#32},%d2
  538. bfextu %d2{%d1:%d0},%d2 |d2 = new LOCAL_LO
  539. bfextu LOCAL_HI(%a0){%d0:#32},%d1 |d1 = new G,R,S
  540. bftst %d1{#2:#30}
  541. bnes c2_sstky |bra if sticky bit to be set
  542. bftst FP_SCR2+LOCAL_LO(%a6){%d0:#32}
  543. bnes c2_sstky |bra if sticky bit to be set
  544. movel %d1,%d0
  545. clrb %d1
  546. bras end_c2
  547. c2_sstky:
  548. movel %d1,%d0
  549. bsetl #rnd_stky_bit,%d0
  550. st %d1
  551. end_c2:
  552. clrl LOCAL_HI(%a0) |store LOCAL_HI = 0
  553. movel %d2,LOCAL_LO(%a0) |store LOCAL_LO
  554. movel FP_SCR2+LOCAL_GRS(%a6),%d2 |restore original g,r,s
  555. andil #0xe0000000,%d2 |clear all but G,R,S
  556. tstl %d2 |test if original G,R,S are clear
  557. beqs clear_grs
  558. orl #0x20000000,%d0 |set sticky bit in d0
  559. clear_grs:
  560. andil #0xe0000000,%d0 |get rid of all but G,R,S
  561. movel (%sp)+,%d2
  562. rts
  563. |
  564. | d1 >= 64 Force the exponent to be the denorm threshold with the
  565. | correct sign.
  566. |
  567. case_3:
  568. movew %d0,LOCAL_EX(%a0)
  569. tstw LOCAL_SGN(%a0)
  570. bges c3con
  571. c3neg:
  572. orl #0x80000000,LOCAL_EX(%a0)
  573. c3con:
  574. cmpw #64,%d1
  575. beqs sixty_four
  576. cmpw #65,%d1
  577. beqs sixty_five
  578. |
  579. | Shift value is out of range.  Set d1 for inex2 flag and
  580. | return a zero with the given threshold.
  581. |
  582. clrl LOCAL_HI(%a0)
  583. clrl LOCAL_LO(%a0)
  584. movel #0x20000000,%d0
  585. st %d1
  586. rts
  587. sixty_four:
  588. movel LOCAL_HI(%a0),%d0
  589. bfextu %d0{#2:#30},%d1
  590. andil #0xc0000000,%d0
  591. bras c3com
  592. sixty_five:
  593. movel LOCAL_HI(%a0),%d0
  594. bfextu %d0{#1:#31},%d1
  595. andil #0x80000000,%d0
  596. lsrl #1,%d0 |shift high bit into R bit
  597. c3com:
  598. tstl %d1
  599. bnes c3ssticky
  600. tstl LOCAL_LO(%a0)
  601. bnes c3ssticky
  602. tstb FP_SCR2+LOCAL_GRS(%a6)
  603. bnes c3ssticky
  604. clrb %d1
  605. bras c3end
  606. c3ssticky:
  607. bsetl #rnd_stky_bit,%d0
  608. st %d1
  609. c3end:
  610. clrl LOCAL_HI(%a0)
  611. clrl LOCAL_LO(%a0)
  612. rts
  613. |end