scale.S
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:9k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. |
  2. | scale.sa 3.3 7/30/91
  3. |
  4. | The entry point sSCALE computes the destination operand
  5. | scaled by the source operand.  If the absolute value of
  6. | the source operand is (>= 2^14) an overflow or underflow
  7. | is returned.
  8. |
  9. | The entry point sscale is called from do_func to emulate
  10. | the fscale unimplemented instruction.
  11. |
  12. | Input: Double-extended destination operand in FPTEMP, 
  13. | double-extended source operand in ETEMP.
  14. |
  15. | Output: The function returns scale(X,Y) to fp0.
  16. |
  17. | Modifies: fp0.
  18. |
  19. | Algorithm:
  20. |
  21. | Copyright (C) Motorola, Inc. 1990
  22. | All Rights Reserved
  23. |
  24. | THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF MOTOROLA 
  25. | The copyright notice above does not evidence any  
  26. | actual or intended publication of such source code.
  27. |SCALE    idnt    2,1 | Motorola 040 Floating Point Software Package
  28. |section 8
  29. .include "fpsp.h"
  30. |xref t_ovfl2
  31. |xref t_unfl
  32. |xref round
  33. |xref t_resdnrm
  34. SRC_BNDS: .short 0x3fff,0x400c
  35. |
  36. | This entry point is used by the unimplemented instruction exception
  37. | handler.
  38. |
  39. |
  40. |
  41. | FSCALE
  42. |
  43. .global sscale
  44. sscale:
  45. fmovel #0,%fpcr |clr user enabled exc
  46. clrl %d1
  47. movew FPTEMP(%a6),%d1 |get dest exponent
  48. smi L_SCR1(%a6) |use L_SCR1 to hold sign
  49. andil #0x7fff,%d1 |strip sign
  50. movew ETEMP(%a6),%d0 |check src bounds
  51. andiw #0x7fff,%d0 |clr sign bit
  52. cmp2w SRC_BNDS,%d0
  53. bccs src_in
  54. cmpiw #0x400c,%d0 |test for too large
  55. bge src_out
  56. |
  57. | The source input is below 1, so we check for denormalized numbers
  58. | and set unfl.
  59. |
  60. src_small:
  61. moveb DTAG(%a6),%d0
  62. andib #0xe0,%d0
  63. tstb %d0
  64. beqs no_denorm
  65. st STORE_FLG(%a6) |dest already contains result
  66. orl #unfl_mask,USER_FPSR(%a6) |set UNFL
  67. den_done:
  68. leal FPTEMP(%a6),%a0
  69. bra t_resdnrm
  70. no_denorm:
  71. fmovel USER_FPCR(%a6),%FPCR
  72. fmovex FPTEMP(%a6),%fp0 |simply return dest
  73. rts
  74. |
  75. | Source is within 2^14 range.  To perform the int operation,
  76. | move it to d0.
  77. |
  78. src_in:
  79. fmovex ETEMP(%a6),%fp0 |move in src for int
  80. fmovel #rz_mode,%fpcr |force rz for src conversion
  81. fmovel %fp0,%d0 |int src to d0
  82. fmovel #0,%FPSR |clr status from above
  83. tstw ETEMP(%a6) |check src sign
  84. blt src_neg
  85. |
  86. | Source is positive.  Add the src to the dest exponent.
  87. | The result can be denormalized, if src = 0, or overflow,
  88. | if the result of the add sets a bit in the upper word.
  89. |
  90. src_pos:
  91. tstw %d1 |check for denorm
  92. beq dst_dnrm
  93. addl %d0,%d1 |add src to dest exp
  94. beqs denorm |if zero, result is denorm
  95. cmpil #0x7fff,%d1 |test for overflow
  96. bges ovfl
  97. tstb L_SCR1(%a6)
  98. beqs spos_pos
  99. orw #0x8000,%d1
  100. spos_pos:
  101. movew %d1,FPTEMP(%a6) |result in FPTEMP
  102. fmovel USER_FPCR(%a6),%FPCR
  103. fmovex FPTEMP(%a6),%fp0 |write result to fp0
  104. rts
  105. ovfl:
  106. tstb L_SCR1(%a6)
  107. beqs sovl_pos
  108. orw #0x8000,%d1
  109. sovl_pos:
  110. movew FPTEMP(%a6),ETEMP(%a6) |result in ETEMP
  111. movel FPTEMP_HI(%a6),ETEMP_HI(%a6)
  112. movel FPTEMP_LO(%a6),ETEMP_LO(%a6)
  113. bra t_ovfl2
  114. denorm:
  115. tstb L_SCR1(%a6)
  116. beqs den_pos
  117. orw #0x8000,%d1
  118. den_pos:
  119. tstl FPTEMP_HI(%a6) |check j bit
  120. blts nden_exit |if set, not denorm
  121. movew %d1,ETEMP(%a6) |input expected in ETEMP
  122. movel FPTEMP_HI(%a6),ETEMP_HI(%a6)
  123. movel FPTEMP_LO(%a6),ETEMP_LO(%a6)
  124. orl #unfl_bit,USER_FPSR(%a6) |set unfl
  125. leal ETEMP(%a6),%a0
  126. bra t_resdnrm
  127. nden_exit:
  128. movew %d1,FPTEMP(%a6) |result in FPTEMP
  129. fmovel USER_FPCR(%a6),%FPCR
  130. fmovex FPTEMP(%a6),%fp0 |write result to fp0
  131. rts
  132. |
  133. | Source is negative.  Add the src to the dest exponent.
  134. | (The result exponent will be reduced).  The result can be
  135. | denormalized.
  136. |
  137. src_neg:
  138. addl %d0,%d1 |add src to dest
  139. beqs denorm |if zero, result is denorm
  140. blts fix_dnrm |if negative, result is 
  141. | ;needing denormalization
  142. tstb L_SCR1(%a6)
  143. beqs sneg_pos
  144. orw #0x8000,%d1
  145. sneg_pos:
  146. movew %d1,FPTEMP(%a6) |result in FPTEMP
  147. fmovel USER_FPCR(%a6),%FPCR
  148. fmovex FPTEMP(%a6),%fp0 |write result to fp0
  149. rts
  150. |
  151. | The result exponent is below denorm value.  Test for catastrophic
  152. | underflow and force zero if true.  If not, try to shift the 
  153. | mantissa right until a zero exponent exists.
  154. |
  155. fix_dnrm:
  156. cmpiw #0xffc0,%d1 |lower bound for normalization
  157. blt fix_unfl |if lower, catastrophic unfl
  158. movew %d1,%d0 |use d0 for exp
  159. movel %d2,-(%a7) |free d2 for norm
  160. movel FPTEMP_HI(%a6),%d1
  161. movel FPTEMP_LO(%a6),%d2
  162. clrl L_SCR2(%a6)
  163. fix_loop:
  164. addw #1,%d0 |drive d0 to 0
  165. lsrl #1,%d1 |while shifting the
  166. roxrl #1,%d2 |mantissa to the right
  167. bccs no_carry
  168. st L_SCR2(%a6) |use L_SCR2 to capture inex
  169. no_carry:
  170. tstw %d0 |it is finished when
  171. blts fix_loop |d0 is zero or the mantissa
  172. tstb L_SCR2(%a6)
  173. beqs tst_zero
  174. orl #unfl_inx_mask,USER_FPSR(%a6)
  175. | ;set unfl, aunfl, ainex
  176. |
  177. | Test for zero. If zero, simply use fmove to return +/- zero
  178. | to the fpu.
  179. |
  180. tst_zero:
  181. clrw FPTEMP_EX(%a6)
  182. tstb L_SCR1(%a6) |test for sign
  183. beqs tst_con
  184. orw #0x8000,FPTEMP_EX(%a6) |set sign bit
  185. tst_con:
  186. movel %d1,FPTEMP_HI(%a6)
  187. movel %d2,FPTEMP_LO(%a6)
  188. movel (%a7)+,%d2
  189. tstl %d1
  190. bnes not_zero
  191. tstl FPTEMP_LO(%a6)
  192. bnes not_zero
  193. |
  194. | Result is zero.  Check for rounding mode to set lsb.  If the
  195. | mode is rp, and the zero is positive, return smallest denorm.
  196. | If the mode is rm, and the zero is negative, return smallest
  197. | negative denorm.
  198. |
  199. btstb #5,FPCR_MODE(%a6) |test if rm or rp
  200. beqs no_dir
  201. btstb #4,FPCR_MODE(%a6) |check which one
  202. beqs zer_rm
  203. zer_rp:
  204. tstb L_SCR1(%a6) |check sign
  205. bnes no_dir |if set, neg op, no inc
  206. movel #1,FPTEMP_LO(%a6) |set lsb
  207. bras sm_dnrm
  208. zer_rm:
  209. tstb L_SCR1(%a6) |check sign
  210. beqs no_dir |if clr, neg op, no inc
  211. movel #1,FPTEMP_LO(%a6) |set lsb
  212. orl #neg_mask,USER_FPSR(%a6) |set N
  213. bras sm_dnrm
  214. no_dir:
  215. fmovel USER_FPCR(%a6),%FPCR
  216. fmovex FPTEMP(%a6),%fp0 |use fmove to set cc's
  217. rts
  218. |
  219. | The rounding mode changed the zero to a smallest denorm. Call 
  220. | t_resdnrm with exceptional operand in ETEMP.
  221. |
  222. sm_dnrm:
  223. movel FPTEMP_EX(%a6),ETEMP_EX(%a6)
  224. movel FPTEMP_HI(%a6),ETEMP_HI(%a6)
  225. movel FPTEMP_LO(%a6),ETEMP_LO(%a6)
  226. leal ETEMP(%a6),%a0
  227. bra t_resdnrm
  228. |
  229. | Result is still denormalized.
  230. |
  231. not_zero:
  232. orl #unfl_mask,USER_FPSR(%a6) |set unfl
  233. tstb L_SCR1(%a6) |check for sign
  234. beqs fix_exit
  235. orl #neg_mask,USER_FPSR(%a6) |set N
  236. fix_exit:
  237. bras sm_dnrm
  238. |
  239. | The result has underflowed to zero. Return zero and set
  240. | unfl, aunfl, and ainex.
  241. |
  242. fix_unfl:
  243. orl #unfl_inx_mask,USER_FPSR(%a6)
  244. btstb #5,FPCR_MODE(%a6) |test if rm or rp
  245. beqs no_dir2
  246. btstb #4,FPCR_MODE(%a6) |check which one
  247. beqs zer_rm2
  248. zer_rp2:
  249. tstb L_SCR1(%a6) |check sign
  250. bnes no_dir2 |if set, neg op, no inc
  251. clrl FPTEMP_EX(%a6)
  252. clrl FPTEMP_HI(%a6)
  253. movel #1,FPTEMP_LO(%a6) |set lsb
  254. bras sm_dnrm |return smallest denorm
  255. zer_rm2:
  256. tstb L_SCR1(%a6) |check sign
  257. beqs no_dir2 |if clr, neg op, no inc
  258. movew #0x8000,FPTEMP_EX(%a6)
  259. clrl FPTEMP_HI(%a6)
  260. movel #1,FPTEMP_LO(%a6) |set lsb
  261. orl #neg_mask,USER_FPSR(%a6) |set N
  262. bra sm_dnrm |return smallest denorm
  263. no_dir2:
  264. tstb L_SCR1(%a6)
  265. bges pos_zero
  266. neg_zero:
  267. clrl FP_SCR1(%a6) |clear the exceptional operand
  268. clrl FP_SCR1+4(%a6) |for gen_except.
  269. clrl FP_SCR1+8(%a6)
  270. fmoves #0x80000000,%fp0
  271. rts
  272. pos_zero:
  273. clrl FP_SCR1(%a6) |clear the exceptional operand
  274. clrl FP_SCR1+4(%a6) |for gen_except.
  275. clrl FP_SCR1+8(%a6)
  276. fmoves #0x00000000,%fp0
  277. rts
  278. |
  279. | The destination is a denormalized number.  It must be handled
  280. | by first shifting the bits in the mantissa until it is normalized,
  281. | then adding the remainder of the source to the exponent.
  282. |
  283. dst_dnrm:
  284. moveml %d2/%d3,-(%a7)
  285. movew FPTEMP_EX(%a6),%d1
  286. movel FPTEMP_HI(%a6),%d2
  287. movel FPTEMP_LO(%a6),%d3
  288. dst_loop:
  289. tstl %d2 |test for normalized result
  290. blts dst_norm |exit loop if so
  291. tstl %d0 |otherwise, test shift count
  292. beqs dst_fin |if zero, shifting is done
  293. subil #1,%d0 |dec src
  294. lsll #1,%d3
  295. roxll #1,%d2
  296. bras dst_loop
  297. |
  298. | Destination became normalized.  Simply add the remaining 
  299. | portion of the src to the exponent.
  300. |
  301. dst_norm:
  302. addw %d0,%d1 |dst is normalized; add src
  303. tstb L_SCR1(%a6)
  304. beqs dnrm_pos
  305. orl #0x8000,%d1
  306. dnrm_pos:
  307. movemw %d1,FPTEMP_EX(%a6)
  308. moveml %d2,FPTEMP_HI(%a6)
  309. moveml %d3,FPTEMP_LO(%a6)
  310. fmovel USER_FPCR(%a6),%FPCR
  311. fmovex FPTEMP(%a6),%fp0
  312. moveml (%a7)+,%d2/%d3
  313. rts
  314. |
  315. | Destination remained denormalized.  Call t_excdnrm with
  316. | exceptional operand in ETEMP.
  317. |
  318. dst_fin:
  319. tstb L_SCR1(%a6) |check for sign
  320. beqs dst_exit
  321. orl #neg_mask,USER_FPSR(%a6) |set N
  322. orl #0x8000,%d1
  323. dst_exit:
  324. movemw %d1,ETEMP_EX(%a6)
  325. moveml %d2,ETEMP_HI(%a6)
  326. moveml %d3,ETEMP_LO(%a6)
  327. orl #unfl_mask,USER_FPSR(%a6) |set unfl
  328. moveml (%a7)+,%d2/%d3
  329. leal ETEMP(%a6),%a0
  330. bra t_resdnrm
  331. |
  332. | Source is outside of 2^14 range.  Test the sign and branch
  333. | to the appropriate exception handler.
  334. |
  335. src_out:
  336. tstb L_SCR1(%a6)
  337. beqs scro_pos
  338. orl #0x8000,%d1
  339. scro_pos:
  340. movel FPTEMP_HI(%a6),ETEMP_HI(%a6)
  341. movel FPTEMP_LO(%a6),ETEMP_LO(%a6)
  342. tstw ETEMP(%a6)
  343. blts res_neg
  344. res_pos:
  345. movew %d1,ETEMP(%a6) |result in ETEMP
  346. bra t_ovfl2
  347. res_neg:
  348. movew %d1,ETEMP(%a6) |result in ETEMP
  349. leal ETEMP(%a6),%a0
  350. bra t_unfl
  351. |end