PageRenderTime 80ms CodeModel.GetById 42ms RepoModel.GetById 1ms app.codeStats 0ms

/arch/m68k/fpsp040/bindec.S

https://github.com/mturquette/linux
Assembly | 919 lines | 888 code | 31 blank | 0 comment | 38 complexity | 9915d31286cc5a8bb2e5912bfdc50d53 MD5 | raw file
  1. |
  2. | bindec.sa 3.4 1/3/91
  3. |
  4. | bindec
  5. |
  6. | Description:
  7. | Converts an input in extended precision format
  8. | to bcd format.
  9. |
  10. | Input:
  11. | a0 points to the input extended precision value
  12. | value in memory; d0 contains the k-factor sign-extended
  13. | to 32-bits. The input may be either normalized,
  14. | unnormalized, or denormalized.
  15. |
  16. | Output: result in the FP_SCR1 space on the stack.
  17. |
  18. | Saves and Modifies: D2-D7,A2,FP2
  19. |
  20. | Algorithm:
  21. |
  22. | A1. Set RM and size ext; Set SIGMA = sign of input.
  23. | The k-factor is saved for use in d7. Clear the
  24. | BINDEC_FLG for separating normalized/denormalized
  25. | input. If input is unnormalized or denormalized,
  26. | normalize it.
  27. |
  28. | A2. Set X = abs(input).
  29. |
  30. | A3. Compute ILOG.
  31. | ILOG is the log base 10 of the input value. It is
  32. | approximated by adding e + 0.f when the original
  33. | value is viewed as 2^^e * 1.f in extended precision.
  34. | This value is stored in d6.
  35. |
  36. | A4. Clr INEX bit.
  37. | The operation in A3 above may have set INEX2.
  38. |
  39. | A5. Set ICTR = 0;
  40. | ICTR is a flag used in A13. It must be set before the
  41. | loop entry A6.
  42. |
  43. | A6. Calculate LEN.
  44. | LEN is the number of digits to be displayed. The
  45. | k-factor can dictate either the total number of digits,
  46. | if it is a positive number, or the number of digits
  47. | after the decimal point which are to be included as
  48. | significant. See the 68882 manual for examples.
  49. | If LEN is computed to be greater than 17, set OPERR in
  50. | USER_FPSR. LEN is stored in d4.
  51. |
  52. | A7. Calculate SCALE.
  53. | SCALE is equal to 10^ISCALE, where ISCALE is the number
  54. | of decimal places needed to insure LEN integer digits
  55. | in the output before conversion to bcd. LAMBDA is the
  56. | sign of ISCALE, used in A9. Fp1 contains
  57. | 10^^(abs(ISCALE)) using a rounding mode which is a
  58. | function of the original rounding mode and the signs
  59. | of ISCALE and X. A table is given in the code.
  60. |
  61. | A8. Clr INEX; Force RZ.
  62. | The operation in A3 above may have set INEX2.
  63. | RZ mode is forced for the scaling operation to insure
  64. | only one rounding error. The grs bits are collected in
  65. | the INEX flag for use in A10.
  66. |
  67. | A9. Scale X -> Y.
  68. | The mantissa is scaled to the desired number of
  69. | significant digits. The excess digits are collected
  70. | in INEX2.
  71. |
  72. | A10. Or in INEX.
  73. | If INEX is set, round error occurred. This is
  74. | compensated for by 'or-ing' in the INEX2 flag to
  75. | the lsb of Y.
  76. |
  77. | A11. Restore original FPCR; set size ext.
  78. | Perform FINT operation in the user's rounding mode.
  79. | Keep the size to extended.
  80. |
  81. | A12. Calculate YINT = FINT(Y) according to user's rounding
  82. | mode. The FPSP routine sintd0 is used. The output
  83. | is in fp0.
  84. |
  85. | A13. Check for LEN digits.
  86. | If the int operation results in more than LEN digits,
  87. | or less than LEN -1 digits, adjust ILOG and repeat from
  88. | A6. This test occurs only on the first pass. If the
  89. | result is exactly 10^LEN, decrement ILOG and divide
  90. | the mantissa by 10.
  91. |
  92. | A14. Convert the mantissa to bcd.
  93. | The binstr routine is used to convert the LEN digit
  94. | mantissa to bcd in memory. The input to binstr is
  95. | to be a fraction; i.e. (mantissa)/10^LEN and adjusted
  96. | such that the decimal point is to the left of bit 63.
  97. | The bcd digits are stored in the correct position in
  98. | the final string area in memory.
  99. |
  100. | A15. Convert the exponent to bcd.
  101. | As in A14 above, the exp is converted to bcd and the
  102. | digits are stored in the final string.
  103. | Test the length of the final exponent string. If the
  104. | length is 4, set operr.
  105. |
  106. | A16. Write sign bits to final string.
  107. |
  108. | Implementation Notes:
  109. |
  110. | The registers are used as follows:
  111. |
  112. | d0: scratch; LEN input to binstr
  113. | d1: scratch
  114. | d2: upper 32-bits of mantissa for binstr
  115. | d3: scratch;lower 32-bits of mantissa for binstr
  116. | d4: LEN
  117. | d5: LAMBDA/ICTR
  118. | d6: ILOG
  119. | d7: k-factor
  120. | a0: ptr for original operand/final result
  121. | a1: scratch pointer
  122. | a2: pointer to FP_X; abs(original value) in ext
  123. | fp0: scratch
  124. | fp1: scratch
  125. | fp2: scratch
  126. | F_SCR1:
  127. | F_SCR2:
  128. | L_SCR1:
  129. | L_SCR2:
  130. | Copyright (C) Motorola, Inc. 1990
  131. | All Rights Reserved
  132. |
  133. | For details on the license for this file, please see the
  134. | file, README, in this same directory.
  135. |BINDEC idnt 2,1 | Motorola 040 Floating Point Software Package
  136. #include "fpsp.h"
  137. |section 8
  138. | Constants in extended precision
  139. LOG2: .long 0x3FFD0000,0x9A209A84,0xFBCFF798,0x00000000
  140. LOG2UP1: .long 0x3FFD0000,0x9A209A84,0xFBCFF799,0x00000000
  141. | Constants in single precision
  142. FONE: .long 0x3F800000,0x00000000,0x00000000,0x00000000
  143. FTWO: .long 0x40000000,0x00000000,0x00000000,0x00000000
  144. FTEN: .long 0x41200000,0x00000000,0x00000000,0x00000000
  145. F4933: .long 0x459A2800,0x00000000,0x00000000,0x00000000
  146. RBDTBL: .byte 0,0,0,0
  147. .byte 3,3,2,2
  148. .byte 3,2,2,3
  149. .byte 2,3,3,2
  150. |xref binstr
  151. |xref sintdo
  152. |xref ptenrn,ptenrm,ptenrp
  153. .global bindec
  154. .global sc_mul
  155. bindec:
  156. moveml %d2-%d7/%a2,-(%a7)
  157. fmovemx %fp0-%fp2,-(%a7)
  158. | A1. Set RM and size ext. Set SIGMA = sign input;
  159. | The k-factor is saved for use in d7. Clear BINDEC_FLG for
  160. | separating normalized/denormalized input. If the input
  161. | is a denormalized number, set the BINDEC_FLG memory word
  162. | to signal denorm. If the input is unnormalized, normalize
  163. | the input and test for denormalized result.
  164. |
  165. fmovel #rm_mode,%FPCR |set RM and ext
  166. movel (%a0),L_SCR2(%a6) |save exponent for sign check
  167. movel %d0,%d7 |move k-factor to d7
  168. clrb BINDEC_FLG(%a6) |clr norm/denorm flag
  169. movew STAG(%a6),%d0 |get stag
  170. andiw #0xe000,%d0 |isolate stag bits
  171. beq A2_str |if zero, input is norm
  172. |
  173. | Normalize the denorm
  174. |
  175. un_de_norm:
  176. movew (%a0),%d0
  177. andiw #0x7fff,%d0 |strip sign of normalized exp
  178. movel 4(%a0),%d1
  179. movel 8(%a0),%d2
  180. norm_loop:
  181. subw #1,%d0
  182. lsll #1,%d2
  183. roxll #1,%d1
  184. tstl %d1
  185. bges norm_loop
  186. |
  187. | Test if the normalized input is denormalized
  188. |
  189. tstw %d0
  190. bgts pos_exp |if greater than zero, it is a norm
  191. st BINDEC_FLG(%a6) |set flag for denorm
  192. pos_exp:
  193. andiw #0x7fff,%d0 |strip sign of normalized exp
  194. movew %d0,(%a0)
  195. movel %d1,4(%a0)
  196. movel %d2,8(%a0)
  197. | A2. Set X = abs(input).
  198. |
  199. A2_str:
  200. movel (%a0),FP_SCR2(%a6) | move input to work space
  201. movel 4(%a0),FP_SCR2+4(%a6) | move input to work space
  202. movel 8(%a0),FP_SCR2+8(%a6) | move input to work space
  203. andil #0x7fffffff,FP_SCR2(%a6) |create abs(X)
  204. | A3. Compute ILOG.
  205. | ILOG is the log base 10 of the input value. It is approx-
  206. | imated by adding e + 0.f when the original value is viewed
  207. | as 2^^e * 1.f in extended precision. This value is stored
  208. | in d6.
  209. |
  210. | Register usage:
  211. | Input/Output
  212. | d0: k-factor/exponent
  213. | d2: x/x
  214. | d3: x/x
  215. | d4: x/x
  216. | d5: x/x
  217. | d6: x/ILOG
  218. | d7: k-factor/Unchanged
  219. | a0: ptr for original operand/final result
  220. | a1: x/x
  221. | a2: x/x
  222. | fp0: x/float(ILOG)
  223. | fp1: x/x
  224. | fp2: x/x
  225. | F_SCR1:x/x
  226. | F_SCR2:Abs(X)/Abs(X) with $3fff exponent
  227. | L_SCR1:x/x
  228. | L_SCR2:first word of X packed/Unchanged
  229. tstb BINDEC_FLG(%a6) |check for denorm
  230. beqs A3_cont |if clr, continue with norm
  231. movel #-4933,%d6 |force ILOG = -4933
  232. bras A4_str
  233. A3_cont:
  234. movew FP_SCR2(%a6),%d0 |move exp to d0
  235. movew #0x3fff,FP_SCR2(%a6) |replace exponent with 0x3fff
  236. fmovex FP_SCR2(%a6),%fp0 |now fp0 has 1.f
  237. subw #0x3fff,%d0 |strip off bias
  238. faddw %d0,%fp0 |add in exp
  239. fsubs FONE,%fp0 |subtract off 1.0
  240. fbge pos_res |if pos, branch
  241. fmulx LOG2UP1,%fp0 |if neg, mul by LOG2UP1
  242. fmovel %fp0,%d6 |put ILOG in d6 as a lword
  243. bras A4_str |go move out ILOG
  244. pos_res:
  245. fmulx LOG2,%fp0 |if pos, mul by LOG2
  246. fmovel %fp0,%d6 |put ILOG in d6 as a lword
  247. | A4. Clr INEX bit.
  248. | The operation in A3 above may have set INEX2.
  249. A4_str:
  250. fmovel #0,%FPSR |zero all of fpsr - nothing needed
  251. | A5. Set ICTR = 0;
  252. | ICTR is a flag used in A13. It must be set before the
  253. | loop entry A6. The lower word of d5 is used for ICTR.
  254. clrw %d5 |clear ICTR
  255. | A6. Calculate LEN.
  256. | LEN is the number of digits to be displayed. The k-factor
  257. | can dictate either the total number of digits, if it is
  258. | a positive number, or the number of digits after the
  259. | original decimal point which are to be included as
  260. | significant. See the 68882 manual for examples.
  261. | If LEN is computed to be greater than 17, set OPERR in
  262. | USER_FPSR. LEN is stored in d4.
  263. |
  264. | Register usage:
  265. | Input/Output
  266. | d0: exponent/Unchanged
  267. | d2: x/x/scratch
  268. | d3: x/x
  269. | d4: exc picture/LEN
  270. | d5: ICTR/Unchanged
  271. | d6: ILOG/Unchanged
  272. | d7: k-factor/Unchanged
  273. | a0: ptr for original operand/final result
  274. | a1: x/x
  275. | a2: x/x
  276. | fp0: float(ILOG)/Unchanged
  277. | fp1: x/x
  278. | fp2: x/x
  279. | F_SCR1:x/x
  280. | F_SCR2:Abs(X) with $3fff exponent/Unchanged
  281. | L_SCR1:x/x
  282. | L_SCR2:first word of X packed/Unchanged
  283. A6_str:
  284. tstl %d7 |branch on sign of k
  285. bles k_neg |if k <= 0, LEN = ILOG + 1 - k
  286. movel %d7,%d4 |if k > 0, LEN = k
  287. bras len_ck |skip to LEN check
  288. k_neg:
  289. movel %d6,%d4 |first load ILOG to d4
  290. subl %d7,%d4 |subtract off k
  291. addql #1,%d4 |add in the 1
  292. len_ck:
  293. tstl %d4 |LEN check: branch on sign of LEN
  294. bles LEN_ng |if neg, set LEN = 1
  295. cmpl #17,%d4 |test if LEN > 17
  296. bles A7_str |if not, forget it
  297. movel #17,%d4 |set max LEN = 17
  298. tstl %d7 |if negative, never set OPERR
  299. bles A7_str |if positive, continue
  300. orl #opaop_mask,USER_FPSR(%a6) |set OPERR & AIOP in USER_FPSR
  301. bras A7_str |finished here
  302. LEN_ng:
  303. moveql #1,%d4 |min LEN is 1
  304. | A7. Calculate SCALE.
  305. | SCALE is equal to 10^ISCALE, where ISCALE is the number
  306. | of decimal places needed to insure LEN integer digits
  307. | in the output before conversion to bcd. LAMBDA is the sign
  308. | of ISCALE, used in A9. Fp1 contains 10^^(abs(ISCALE)) using
  309. | the rounding mode as given in the following table (see
  310. | Coonen, p. 7.23 as ref.; however, the SCALE variable is
  311. | of opposite sign in bindec.sa from Coonen).
  312. |
  313. | Initial USE
  314. | FPCR[6:5] LAMBDA SIGN(X) FPCR[6:5]
  315. | ----------------------------------------------
  316. | RN 00 0 0 00/0 RN
  317. | RN 00 0 1 00/0 RN
  318. | RN 00 1 0 00/0 RN
  319. | RN 00 1 1 00/0 RN
  320. | RZ 01 0 0 11/3 RP
  321. | RZ 01 0 1 11/3 RP
  322. | RZ 01 1 0 10/2 RM
  323. | RZ 01 1 1 10/2 RM
  324. | RM 10 0 0 11/3 RP
  325. | RM 10 0 1 10/2 RM
  326. | RM 10 1 0 10/2 RM
  327. | RM 10 1 1 11/3 RP
  328. | RP 11 0 0 10/2 RM
  329. | RP 11 0 1 11/3 RP
  330. | RP 11 1 0 11/3 RP
  331. | RP 11 1 1 10/2 RM
  332. |
  333. | Register usage:
  334. | Input/Output
  335. | d0: exponent/scratch - final is 0
  336. | d2: x/0 or 24 for A9
  337. | d3: x/scratch - offset ptr into PTENRM array
  338. | d4: LEN/Unchanged
  339. | d5: 0/ICTR:LAMBDA
  340. | d6: ILOG/ILOG or k if ((k<=0)&(ILOG<k))
  341. | d7: k-factor/Unchanged
  342. | a0: ptr for original operand/final result
  343. | a1: x/ptr to PTENRM array
  344. | a2: x/x
  345. | fp0: float(ILOG)/Unchanged
  346. | fp1: x/10^ISCALE
  347. | fp2: x/x
  348. | F_SCR1:x/x
  349. | F_SCR2:Abs(X) with $3fff exponent/Unchanged
  350. | L_SCR1:x/x
  351. | L_SCR2:first word of X packed/Unchanged
  352. A7_str:
  353. tstl %d7 |test sign of k
  354. bgts k_pos |if pos and > 0, skip this
  355. cmpl %d6,%d7 |test k - ILOG
  356. blts k_pos |if ILOG >= k, skip this
  357. movel %d7,%d6 |if ((k<0) & (ILOG < k)) ILOG = k
  358. k_pos:
  359. movel %d6,%d0 |calc ILOG + 1 - LEN in d0
  360. addql #1,%d0 |add the 1
  361. subl %d4,%d0 |sub off LEN
  362. swap %d5 |use upper word of d5 for LAMBDA
  363. clrw %d5 |set it zero initially
  364. clrw %d2 |set up d2 for very small case
  365. tstl %d0 |test sign of ISCALE
  366. bges iscale |if pos, skip next inst
  367. addqw #1,%d5 |if neg, set LAMBDA true
  368. cmpl #0xffffecd4,%d0 |test iscale <= -4908
  369. bgts no_inf |if false, skip rest
  370. addil #24,%d0 |add in 24 to iscale
  371. movel #24,%d2 |put 24 in d2 for A9
  372. no_inf:
  373. negl %d0 |and take abs of ISCALE
  374. iscale:
  375. fmoves FONE,%fp1 |init fp1 to 1
  376. bfextu USER_FPCR(%a6){#26:#2},%d1 |get initial rmode bits
  377. lslw #1,%d1 |put them in bits 2:1
  378. addw %d5,%d1 |add in LAMBDA
  379. lslw #1,%d1 |put them in bits 3:1
  380. tstl L_SCR2(%a6) |test sign of original x
  381. bges x_pos |if pos, don't set bit 0
  382. addql #1,%d1 |if neg, set bit 0
  383. x_pos:
  384. leal RBDTBL,%a2 |load rbdtbl base
  385. moveb (%a2,%d1),%d3 |load d3 with new rmode
  386. lsll #4,%d3 |put bits in proper position
  387. fmovel %d3,%fpcr |load bits into fpu
  388. lsrl #4,%d3 |put bits in proper position
  389. tstb %d3 |decode new rmode for pten table
  390. bnes not_rn |if zero, it is RN
  391. leal PTENRN,%a1 |load a1 with RN table base
  392. bras rmode |exit decode
  393. not_rn:
  394. lsrb #1,%d3 |get lsb in carry
  395. bccs not_rp |if carry clear, it is RM
  396. leal PTENRP,%a1 |load a1 with RP table base
  397. bras rmode |exit decode
  398. not_rp:
  399. leal PTENRM,%a1 |load a1 with RM table base
  400. rmode:
  401. clrl %d3 |clr table index
  402. e_loop:
  403. lsrl #1,%d0 |shift next bit into carry
  404. bccs e_next |if zero, skip the mul
  405. fmulx (%a1,%d3),%fp1 |mul by 10**(d3_bit_no)
  406. e_next:
  407. addl #12,%d3 |inc d3 to next pwrten table entry
  408. tstl %d0 |test if ISCALE is zero
  409. bnes e_loop |if not, loop
  410. | A8. Clr INEX; Force RZ.
  411. | The operation in A3 above may have set INEX2.
  412. | RZ mode is forced for the scaling operation to insure
  413. | only one rounding error. The grs bits are collected in
  414. | the INEX flag for use in A10.
  415. |
  416. | Register usage:
  417. | Input/Output
  418. fmovel #0,%FPSR |clr INEX
  419. fmovel #rz_mode,%FPCR |set RZ rounding mode
  420. | A9. Scale X -> Y.
  421. | The mantissa is scaled to the desired number of significant
  422. | digits. The excess digits are collected in INEX2. If mul,
  423. | Check d2 for excess 10 exponential value. If not zero,
  424. | the iscale value would have caused the pwrten calculation
  425. | to overflow. Only a negative iscale can cause this, so
  426. | multiply by 10^(d2), which is now only allowed to be 24,
  427. | with a multiply by 10^8 and 10^16, which is exact since
  428. | 10^24 is exact. If the input was denormalized, we must
  429. | create a busy stack frame with the mul command and the
  430. | two operands, and allow the fpu to complete the multiply.
  431. |
  432. | Register usage:
  433. | Input/Output
  434. | d0: FPCR with RZ mode/Unchanged
  435. | d2: 0 or 24/unchanged
  436. | d3: x/x
  437. | d4: LEN/Unchanged
  438. | d5: ICTR:LAMBDA
  439. | d6: ILOG/Unchanged
  440. | d7: k-factor/Unchanged
  441. | a0: ptr for original operand/final result
  442. | a1: ptr to PTENRM array/Unchanged
  443. | a2: x/x
  444. | fp0: float(ILOG)/X adjusted for SCALE (Y)
  445. | fp1: 10^ISCALE/Unchanged
  446. | fp2: x/x
  447. | F_SCR1:x/x
  448. | F_SCR2:Abs(X) with $3fff exponent/Unchanged
  449. | L_SCR1:x/x
  450. | L_SCR2:first word of X packed/Unchanged
  451. A9_str:
  452. fmovex (%a0),%fp0 |load X from memory
  453. fabsx %fp0 |use abs(X)
  454. tstw %d5 |LAMBDA is in lower word of d5
  455. bne sc_mul |if neg (LAMBDA = 1), scale by mul
  456. fdivx %fp1,%fp0 |calculate X / SCALE -> Y to fp0
  457. bras A10_st |branch to A10
  458. sc_mul:
  459. tstb BINDEC_FLG(%a6) |check for denorm
  460. beqs A9_norm |if norm, continue with mul
  461. fmovemx %fp1-%fp1,-(%a7) |load ETEMP with 10^ISCALE
  462. movel 8(%a0),-(%a7) |load FPTEMP with input arg
  463. movel 4(%a0),-(%a7)
  464. movel (%a0),-(%a7)
  465. movel #18,%d3 |load count for busy stack
  466. A9_loop:
  467. clrl -(%a7) |clear lword on stack
  468. dbf %d3,A9_loop
  469. moveb VER_TMP(%a6),(%a7) |write current version number
  470. moveb #BUSY_SIZE-4,1(%a7) |write current busy size
  471. moveb #0x10,0x44(%a7) |set fcefpte[15] bit
  472. movew #0x0023,0x40(%a7) |load cmdreg1b with mul command
  473. moveb #0xfe,0x8(%a7) |load all 1s to cu savepc
  474. frestore (%a7)+ |restore frame to fpu for completion
  475. fmulx 36(%a1),%fp0 |multiply fp0 by 10^8
  476. fmulx 48(%a1),%fp0 |multiply fp0 by 10^16
  477. bras A10_st
  478. A9_norm:
  479. tstw %d2 |test for small exp case
  480. beqs A9_con |if zero, continue as normal
  481. fmulx 36(%a1),%fp0 |multiply fp0 by 10^8
  482. fmulx 48(%a1),%fp0 |multiply fp0 by 10^16
  483. A9_con:
  484. fmulx %fp1,%fp0 |calculate X * SCALE -> Y to fp0
  485. | A10. Or in INEX.
  486. | If INEX is set, round error occurred. This is compensated
  487. | for by 'or-ing' in the INEX2 flag to the lsb of Y.
  488. |
  489. | Register usage:
  490. | Input/Output
  491. | d0: FPCR with RZ mode/FPSR with INEX2 isolated
  492. | d2: x/x
  493. | d3: x/x
  494. | d4: LEN/Unchanged
  495. | d5: ICTR:LAMBDA
  496. | d6: ILOG/Unchanged
  497. | d7: k-factor/Unchanged
  498. | a0: ptr for original operand/final result
  499. | a1: ptr to PTENxx array/Unchanged
  500. | a2: x/ptr to FP_SCR2(a6)
  501. | fp0: Y/Y with lsb adjusted
  502. | fp1: 10^ISCALE/Unchanged
  503. | fp2: x/x
  504. A10_st:
  505. fmovel %FPSR,%d0 |get FPSR
  506. fmovex %fp0,FP_SCR2(%a6) |move Y to memory
  507. leal FP_SCR2(%a6),%a2 |load a2 with ptr to FP_SCR2
  508. btstl #9,%d0 |check if INEX2 set
  509. beqs A11_st |if clear, skip rest
  510. oril #1,8(%a2) |or in 1 to lsb of mantissa
  511. fmovex FP_SCR2(%a6),%fp0 |write adjusted Y back to fpu
  512. | A11. Restore original FPCR; set size ext.
  513. | Perform FINT operation in the user's rounding mode. Keep
  514. | the size to extended. The sintdo entry point in the sint
  515. | routine expects the FPCR value to be in USER_FPCR for
  516. | mode and precision. The original FPCR is saved in L_SCR1.
  517. A11_st:
  518. movel USER_FPCR(%a6),L_SCR1(%a6) |save it for later
  519. andil #0x00000030,USER_FPCR(%a6) |set size to ext,
  520. | ;block exceptions
  521. | A12. Calculate YINT = FINT(Y) according to user's rounding mode.
  522. | The FPSP routine sintd0 is used. The output is in fp0.
  523. |
  524. | Register usage:
  525. | Input/Output
  526. | d0: FPSR with AINEX cleared/FPCR with size set to ext
  527. | d2: x/x/scratch
  528. | d3: x/x
  529. | d4: LEN/Unchanged
  530. | d5: ICTR:LAMBDA/Unchanged
  531. | d6: ILOG/Unchanged
  532. | d7: k-factor/Unchanged
  533. | a0: ptr for original operand/src ptr for sintdo
  534. | a1: ptr to PTENxx array/Unchanged
  535. | a2: ptr to FP_SCR2(a6)/Unchanged
  536. | a6: temp pointer to FP_SCR2(a6) - orig value saved and restored
  537. | fp0: Y/YINT
  538. | fp1: 10^ISCALE/Unchanged
  539. | fp2: x/x
  540. | F_SCR1:x/x
  541. | F_SCR2:Y adjusted for inex/Y with original exponent
  542. | L_SCR1:x/original USER_FPCR
  543. | L_SCR2:first word of X packed/Unchanged
  544. A12_st:
  545. moveml %d0-%d1/%a0-%a1,-(%a7) |save regs used by sintd0
  546. movel L_SCR1(%a6),-(%a7)
  547. movel L_SCR2(%a6),-(%a7)
  548. leal FP_SCR2(%a6),%a0 |a0 is ptr to F_SCR2(a6)
  549. fmovex %fp0,(%a0) |move Y to memory at FP_SCR2(a6)
  550. tstl L_SCR2(%a6) |test sign of original operand
  551. bges do_fint |if pos, use Y
  552. orl #0x80000000,(%a0) |if neg, use -Y
  553. do_fint:
  554. movel USER_FPSR(%a6),-(%a7)
  555. bsr sintdo |sint routine returns int in fp0
  556. moveb (%a7),USER_FPSR(%a6)
  557. addl #4,%a7
  558. movel (%a7)+,L_SCR2(%a6)
  559. movel (%a7)+,L_SCR1(%a6)
  560. moveml (%a7)+,%d0-%d1/%a0-%a1 |restore regs used by sint
  561. movel L_SCR2(%a6),FP_SCR2(%a6) |restore original exponent
  562. movel L_SCR1(%a6),USER_FPCR(%a6) |restore user's FPCR
  563. | A13. Check for LEN digits.
  564. | If the int operation results in more than LEN digits,
  565. | or less than LEN -1 digits, adjust ILOG and repeat from
  566. | A6. This test occurs only on the first pass. If the
  567. | result is exactly 10^LEN, decrement ILOG and divide
  568. | the mantissa by 10. The calculation of 10^LEN cannot
  569. | be inexact, since all powers of ten up to 10^27 are exact
  570. | in extended precision, so the use of a previous power-of-ten
  571. | table will introduce no error.
  572. |
  573. |
  574. | Register usage:
  575. | Input/Output
  576. | d0: FPCR with size set to ext/scratch final = 0
  577. | d2: x/x
  578. | d3: x/scratch final = x
  579. | d4: LEN/LEN adjusted
  580. | d5: ICTR:LAMBDA/LAMBDA:ICTR
  581. | d6: ILOG/ILOG adjusted
  582. | d7: k-factor/Unchanged
  583. | a0: pointer into memory for packed bcd string formation
  584. | a1: ptr to PTENxx array/Unchanged
  585. | a2: ptr to FP_SCR2(a6)/Unchanged
  586. | fp0: int portion of Y/abs(YINT) adjusted
  587. | fp1: 10^ISCALE/Unchanged
  588. | fp2: x/10^LEN
  589. | F_SCR1:x/x
  590. | F_SCR2:Y with original exponent/Unchanged
  591. | L_SCR1:original USER_FPCR/Unchanged
  592. | L_SCR2:first word of X packed/Unchanged
  593. A13_st:
  594. swap %d5 |put ICTR in lower word of d5
  595. tstw %d5 |check if ICTR = 0
  596. bne not_zr |if non-zero, go to second test
  597. |
  598. | Compute 10^(LEN-1)
  599. |
  600. fmoves FONE,%fp2 |init fp2 to 1.0
  601. movel %d4,%d0 |put LEN in d0
  602. subql #1,%d0 |d0 = LEN -1
  603. clrl %d3 |clr table index
  604. l_loop:
  605. lsrl #1,%d0 |shift next bit into carry
  606. bccs l_next |if zero, skip the mul
  607. fmulx (%a1,%d3),%fp2 |mul by 10**(d3_bit_no)
  608. l_next:
  609. addl #12,%d3 |inc d3 to next pwrten table entry
  610. tstl %d0 |test if LEN is zero
  611. bnes l_loop |if not, loop
  612. |
  613. | 10^LEN-1 is computed for this test and A14. If the input was
  614. | denormalized, check only the case in which YINT > 10^LEN.
  615. |
  616. tstb BINDEC_FLG(%a6) |check if input was norm
  617. beqs A13_con |if norm, continue with checking
  618. fabsx %fp0 |take abs of YINT
  619. bra test_2
  620. |
  621. | Compare abs(YINT) to 10^(LEN-1) and 10^LEN
  622. |
  623. A13_con:
  624. fabsx %fp0 |take abs of YINT
  625. fcmpx %fp2,%fp0 |compare abs(YINT) with 10^(LEN-1)
  626. fbge test_2 |if greater, do next test
  627. subql #1,%d6 |subtract 1 from ILOG
  628. movew #1,%d5 |set ICTR
  629. fmovel #rm_mode,%FPCR |set rmode to RM
  630. fmuls FTEN,%fp2 |compute 10^LEN
  631. bra A6_str |return to A6 and recompute YINT
  632. test_2:
  633. fmuls FTEN,%fp2 |compute 10^LEN
  634. fcmpx %fp2,%fp0 |compare abs(YINT) with 10^LEN
  635. fblt A14_st |if less, all is ok, go to A14
  636. fbgt fix_ex |if greater, fix and redo
  637. fdivs FTEN,%fp0 |if equal, divide by 10
  638. addql #1,%d6 | and inc ILOG
  639. bras A14_st | and continue elsewhere
  640. fix_ex:
  641. addql #1,%d6 |increment ILOG by 1
  642. movew #1,%d5 |set ICTR
  643. fmovel #rm_mode,%FPCR |set rmode to RM
  644. bra A6_str |return to A6 and recompute YINT
  645. |
  646. | Since ICTR <> 0, we have already been through one adjustment,
  647. | and shouldn't have another; this is to check if abs(YINT) = 10^LEN
  648. | 10^LEN is again computed using whatever table is in a1 since the
  649. | value calculated cannot be inexact.
  650. |
  651. not_zr:
  652. fmoves FONE,%fp2 |init fp2 to 1.0
  653. movel %d4,%d0 |put LEN in d0
  654. clrl %d3 |clr table index
  655. z_loop:
  656. lsrl #1,%d0 |shift next bit into carry
  657. bccs z_next |if zero, skip the mul
  658. fmulx (%a1,%d3),%fp2 |mul by 10**(d3_bit_no)
  659. z_next:
  660. addl #12,%d3 |inc d3 to next pwrten table entry
  661. tstl %d0 |test if LEN is zero
  662. bnes z_loop |if not, loop
  663. fabsx %fp0 |get abs(YINT)
  664. fcmpx %fp2,%fp0 |check if abs(YINT) = 10^LEN
  665. fbne A14_st |if not, skip this
  666. fdivs FTEN,%fp0 |divide abs(YINT) by 10
  667. addql #1,%d6 |and inc ILOG by 1
  668. addql #1,%d4 | and inc LEN
  669. fmuls FTEN,%fp2 | if LEN++, the get 10^^LEN
  670. | A14. Convert the mantissa to bcd.
  671. | The binstr routine is used to convert the LEN digit
  672. | mantissa to bcd in memory. The input to binstr is
  673. | to be a fraction; i.e. (mantissa)/10^LEN and adjusted
  674. | such that the decimal point is to the left of bit 63.
  675. | The bcd digits are stored in the correct position in
  676. | the final string area in memory.
  677. |
  678. |
  679. | Register usage:
  680. | Input/Output
  681. | d0: x/LEN call to binstr - final is 0
  682. | d1: x/0
  683. | d2: x/ms 32-bits of mant of abs(YINT)
  684. | d3: x/ls 32-bits of mant of abs(YINT)
  685. | d4: LEN/Unchanged
  686. | d5: ICTR:LAMBDA/LAMBDA:ICTR
  687. | d6: ILOG
  688. | d7: k-factor/Unchanged
  689. | a0: pointer into memory for packed bcd string formation
  690. | /ptr to first mantissa byte in result string
  691. | a1: ptr to PTENxx array/Unchanged
  692. | a2: ptr to FP_SCR2(a6)/Unchanged
  693. | fp0: int portion of Y/abs(YINT) adjusted
  694. | fp1: 10^ISCALE/Unchanged
  695. | fp2: 10^LEN/Unchanged
  696. | F_SCR1:x/Work area for final result
  697. | F_SCR2:Y with original exponent/Unchanged
  698. | L_SCR1:original USER_FPCR/Unchanged
  699. | L_SCR2:first word of X packed/Unchanged
  700. A14_st:
  701. fmovel #rz_mode,%FPCR |force rz for conversion
  702. fdivx %fp2,%fp0 |divide abs(YINT) by 10^LEN
  703. leal FP_SCR1(%a6),%a0
  704. fmovex %fp0,(%a0) |move abs(YINT)/10^LEN to memory
  705. movel 4(%a0),%d2 |move 2nd word of FP_RES to d2
  706. movel 8(%a0),%d3 |move 3rd word of FP_RES to d3
  707. clrl 4(%a0) |zero word 2 of FP_RES
  708. clrl 8(%a0) |zero word 3 of FP_RES
  709. movel (%a0),%d0 |move exponent to d0
  710. swap %d0 |put exponent in lower word
  711. beqs no_sft |if zero, don't shift
  712. subil #0x3ffd,%d0 |sub bias less 2 to make fract
  713. tstl %d0 |check if > 1
  714. bgts no_sft |if so, don't shift
  715. negl %d0 |make exp positive
  716. m_loop:
  717. lsrl #1,%d2 |shift d2:d3 right, add 0s
  718. roxrl #1,%d3 |the number of places
  719. dbf %d0,m_loop |given in d0
  720. no_sft:
  721. tstl %d2 |check for mantissa of zero
  722. bnes no_zr |if not, go on
  723. tstl %d3 |continue zero check
  724. beqs zer_m |if zero, go directly to binstr
  725. no_zr:
  726. clrl %d1 |put zero in d1 for addx
  727. addil #0x00000080,%d3 |inc at bit 7
  728. addxl %d1,%d2 |continue inc
  729. andil #0xffffff80,%d3 |strip off lsb not used by 882
  730. zer_m:
  731. movel %d4,%d0 |put LEN in d0 for binstr call
  732. addql #3,%a0 |a0 points to M16 byte in result
  733. bsr binstr |call binstr to convert mant
  734. | A15. Convert the exponent to bcd.
  735. | As in A14 above, the exp is converted to bcd and the
  736. | digits are stored in the final string.
  737. |
  738. | Digits are stored in L_SCR1(a6) on return from BINDEC as:
  739. |
  740. | 32 16 15 0
  741. | -----------------------------------------
  742. | | 0 | e3 | e2 | e1 | e4 | X | X | X |
  743. | -----------------------------------------
  744. |
  745. | And are moved into their proper places in FP_SCR1. If digit e4
  746. | is non-zero, OPERR is signaled. In all cases, all 4 digits are
  747. | written as specified in the 881/882 manual for packed decimal.
  748. |
  749. | Register usage:
  750. | Input/Output
  751. | d0: x/LEN call to binstr - final is 0
  752. | d1: x/scratch (0);shift count for final exponent packing
  753. | d2: x/ms 32-bits of exp fraction/scratch
  754. | d3: x/ls 32-bits of exp fraction
  755. | d4: LEN/Unchanged
  756. | d5: ICTR:LAMBDA/LAMBDA:ICTR
  757. | d6: ILOG
  758. | d7: k-factor/Unchanged
  759. | a0: ptr to result string/ptr to L_SCR1(a6)
  760. | a1: ptr to PTENxx array/Unchanged
  761. | a2: ptr to FP_SCR2(a6)/Unchanged
  762. | fp0: abs(YINT) adjusted/float(ILOG)
  763. | fp1: 10^ISCALE/Unchanged
  764. | fp2: 10^LEN/Unchanged
  765. | F_SCR1:Work area for final result/BCD result
  766. | F_SCR2:Y with original exponent/ILOG/10^4
  767. | L_SCR1:original USER_FPCR/Exponent digits on return from binstr
  768. | L_SCR2:first word of X packed/Unchanged
  769. A15_st:
  770. tstb BINDEC_FLG(%a6) |check for denorm
  771. beqs not_denorm
  772. ftstx %fp0 |test for zero
  773. fbeq den_zero |if zero, use k-factor or 4933
  774. fmovel %d6,%fp0 |float ILOG
  775. fabsx %fp0 |get abs of ILOG
  776. bras convrt
  777. den_zero:
  778. tstl %d7 |check sign of the k-factor
  779. blts use_ilog |if negative, use ILOG
  780. fmoves F4933,%fp0 |force exponent to 4933
  781. bras convrt |do it
  782. use_ilog:
  783. fmovel %d6,%fp0 |float ILOG
  784. fabsx %fp0 |get abs of ILOG
  785. bras convrt
  786. not_denorm:
  787. ftstx %fp0 |test for zero
  788. fbne not_zero |if zero, force exponent
  789. fmoves FONE,%fp0 |force exponent to 1
  790. bras convrt |do it
  791. not_zero:
  792. fmovel %d6,%fp0 |float ILOG
  793. fabsx %fp0 |get abs of ILOG
  794. convrt:
  795. fdivx 24(%a1),%fp0 |compute ILOG/10^4
  796. fmovex %fp0,FP_SCR2(%a6) |store fp0 in memory
  797. movel 4(%a2),%d2 |move word 2 to d2
  798. movel 8(%a2),%d3 |move word 3 to d3
  799. movew (%a2),%d0 |move exp to d0
  800. beqs x_loop_fin |if zero, skip the shift
  801. subiw #0x3ffd,%d0 |subtract off bias
  802. negw %d0 |make exp positive
  803. x_loop:
  804. lsrl #1,%d2 |shift d2:d3 right
  805. roxrl #1,%d3 |the number of places
  806. dbf %d0,x_loop |given in d0
  807. x_loop_fin:
  808. clrl %d1 |put zero in d1 for addx
  809. addil #0x00000080,%d3 |inc at bit 6
  810. addxl %d1,%d2 |continue inc
  811. andil #0xffffff80,%d3 |strip off lsb not used by 882
  812. movel #4,%d0 |put 4 in d0 for binstr call
  813. leal L_SCR1(%a6),%a0 |a0 is ptr to L_SCR1 for exp digits
  814. bsr binstr |call binstr to convert exp
  815. movel L_SCR1(%a6),%d0 |load L_SCR1 lword to d0
  816. movel #12,%d1 |use d1 for shift count
  817. lsrl %d1,%d0 |shift d0 right by 12
  818. bfins %d0,FP_SCR1(%a6){#4:#12} |put e3:e2:e1 in FP_SCR1
  819. lsrl %d1,%d0 |shift d0 right by 12
  820. bfins %d0,FP_SCR1(%a6){#16:#4} |put e4 in FP_SCR1
  821. tstb %d0 |check if e4 is zero
  822. beqs A16_st |if zero, skip rest
  823. orl #opaop_mask,USER_FPSR(%a6) |set OPERR & AIOP in USER_FPSR
  824. | A16. Write sign bits to final string.
  825. | Sigma is bit 31 of initial value; RHO is bit 31 of d6 (ILOG).
  826. |
  827. | Register usage:
  828. | Input/Output
  829. | d0: x/scratch - final is x
  830. | d2: x/x
  831. | d3: x/x
  832. | d4: LEN/Unchanged
  833. | d5: ICTR:LAMBDA/LAMBDA:ICTR
  834. | d6: ILOG/ILOG adjusted
  835. | d7: k-factor/Unchanged
  836. | a0: ptr to L_SCR1(a6)/Unchanged
  837. | a1: ptr to PTENxx array/Unchanged
  838. | a2: ptr to FP_SCR2(a6)/Unchanged
  839. | fp0: float(ILOG)/Unchanged
  840. | fp1: 10^ISCALE/Unchanged
  841. | fp2: 10^LEN/Unchanged
  842. | F_SCR1:BCD result with correct signs
  843. | F_SCR2:ILOG/10^4
  844. | L_SCR1:Exponent digits on return from binstr
  845. | L_SCR2:first word of X packed/Unchanged
  846. A16_st:
  847. clrl %d0 |clr d0 for collection of signs
  848. andib #0x0f,FP_SCR1(%a6) |clear first nibble of FP_SCR1
  849. tstl L_SCR2(%a6) |check sign of original mantissa
  850. bges mant_p |if pos, don't set SM
  851. moveql #2,%d0 |move 2 in to d0 for SM
  852. mant_p:
  853. tstl %d6 |check sign of ILOG
  854. bges wr_sgn |if pos, don't set SE
  855. addql #1,%d0 |set bit 0 in d0 for SE
  856. wr_sgn:
  857. bfins %d0,FP_SCR1(%a6){#0:#2} |insert SM and SE into FP_SCR1
  858. | Clean up and restore all registers used.
  859. fmovel #0,%FPSR |clear possible inex2/ainex bits
  860. fmovemx (%a7)+,%fp0-%fp2
  861. moveml (%a7)+,%d2-%d7/%a2
  862. rts
  863. |end