l_setox.s
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:28k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* l_setox.s - Motorola 68040 FP exponential routines (LIB) */
  2. /* Copyright 1991-1993 Wind River Systems, Inc. */
  3. .data
  4. .globl _copyright_wind_river
  5. .long _copyright_wind_river
  6. /*
  7. modification history
  8. --------------------
  9. 01f,12nov94,dvs  fixed clearcase conversion search/replace errors.
  10. 01e,21jul93,kdl  added .text (SPR #2372).
  11. 01d,23aug92,jcf  changed bxxx to jxx.
  12. 01c,26may92,rrr  the tree shuffle
  13. 01b,09jan92,kdl  added modification history; general cleanup.
  14. 01a,15aug91,kdl  original version, from Motorola FPSP v2.0.
  15. */
  16. /*
  17. DESCRIPTION
  18. setoxsa 3.1 12/10/90
  19. The entry point __l_setox computes the exponential of a value.
  20. __l_setoxd does the same except the input value is a denormalized
  21. number. __l_setoxm1 computes exp(X)-1, and __l_setoxm1d computes
  22. exp(X)-1 for denormalized X.
  23. INPUT
  24. -----
  25. Double-extended value in memory location pointed to by address
  26. register a0.
  27. OUTPUT
  28. ------
  29. exp(X) or exp(X)-1 returned in floating-point register fp0.
  30. ACCURACY and MONOTONICITY
  31. -------------------------
  32. The returned result is within 0.85 ulps in 64 significant bit, i.e.
  33. within 0.5001 ulp to 53 bits if the result is subsequently rounded
  34. to double precision. The result is provably monotonic in double
  35. precision.
  36. SPEED
  37. -----
  38. Two timings are measured, both in the copy-back mode. The
  39. first one is measured when the function is invoked the first time
  40. (so the instructions and data are not in cache), and the
  41. second one is measured when the function is reinvoked at the same
  42. input argument.
  43. The program __l_setox takes approximately 210/190 cycles for input
  44. argument X whose magnitude is less than 16380 log2, which
  45. is the usual situation. For the less common arguments,
  46. depending on their values, the program may run faster or slower --
  47. but no worse than 10 slower even in the extreme cases.
  48. The program __l_setoxm1 takes approximately ???/??? cycles for input
  49. argument X, 0.25 <= |X| < 70log2. For |X| < 0.25, it takes
  50. approximately ???/??? cycles. For the less common arguments,
  51. depending on their values, the program may run faster or slower --
  52. but no worse than 10 slower even in the extreme cases.
  53. ALGORITHM and IMPLEMENTATION NOTES
  54. ----------------------------------
  55. __l_setoxd
  56. ------
  57. Step 1. Set ans := 1.0
  58. Step 2. Return ans := ans + sign(X)*2^(-126). Exit.
  59. Notes: This will always generate one exception -- inexact.
  60. __l_setox
  61. -----
  62. Step 1. Filter out extreme cases of input argument.
  63. 1.1 If |X| >= 2^(-65), go to Step 1.3.
  64. 1.2 Go to Step 7.
  65. 1.3 If |X| < 16380 log(2), go to Step 2.
  66. 1.4 Go to Step 8.
  67. Notes: The usual case should take the branches 1.1 -> 1.3 -> 2.
  68.  To avoid the use of floating-point comparisons, a
  69.  compact representation of |X| is used. This format is a
  70.  32-bit integer, the upper (more significant) 16 bits are
  71.  the sign and biased exponent field of |X||  the lower 16
  72.  bits are the 16 most significant fraction (including the
  73.  explicit bit) bits of |X|. Consequently, the comparisons
  74.  in Steps 1.1 and 1.3 can be performed by integer comparison.
  75.  Note also that the constant 16380 log(2) used in Step 1.3
  76.  is also in the compact form. Thus taking the branch
  77.  to Step 2 guarantees |X| < 16380 log(2). There is no harm
  78.  to have a small number of cases where |X| is less than,
  79.  but close to, 16380 log(2) and the branch to Step 9 is
  80.  taken.
  81. Step 2. Calculate N = round-to-nearest-int( X * 64/log2 ).
  82. 2.1 Set AdjFlag := 0 (indicates the branch 1.3 -> 2 was taken)
  83. 2.2 N := round-to-nearest-integer( X * 64/log2 ).
  84. 2.3 Calculate J = N mod 64|  so J = 0,1,2,..., or 63.
  85. 2.4 Calculate M = (N - J)/64|  so N = 64M + J.
  86. 2.5 Calculate the address of the stored value of 2^(J/64).
  87. 2.6 Create the value Scale = 2^M.
  88. Notes: The calculation in 2.2 is really performed by
  89. Z := X * constant
  90. N := round-to-nearest-integer(Z)
  91.  where
  92. constant := single-precision( 64/log 2 ).
  93.  Using a single-precision constant avoids memory access.
  94.  Another effect of using a single-precision "constant" is
  95.  that the calculated value Z is
  96. Z = X*(64/log2)*(1+eps), |eps| <= 2^(-24).
  97.  This error has to be considered later in Steps 3 and 4.
  98. Step 3. Calculate X - N*log2/64.
  99. 3.1 R := X + N*L1, where L1 := single-precision(-log2/64).
  100. 3.2 R := R + N*L2, L2 := extended-precision(-log2/64 - L1).
  101. Notes: a) The way L1 and L2 are chosen ensures L1+L2 approximate
  102.  the value -log2/64 to 88 bits of accuracy.
  103.  b) N*L1 is exact because N is no longer than 22 bits and
  104.  L1 is no longer than 24 bits.
  105.  c) The calculation X+N*L1 is also exact due to cancellation.
  106.  Thus, R is practically X+N(L1+L2) to full 64 bits.
  107.  d) It is important to estimate how large can |R| be after
  108.  Step 3.2.
  109. N = rnd-to-int( X*64/log2 (1+eps) ), |eps|<=2^(-24)
  110. X*64/log2 (1+eps) = N + f, |f| <= 0.5
  111. X*64/log2 - N = f - eps*X 64/log2
  112. X - N*log2/64 = f*log2/64 - eps*X
  113.  Now |X| <= 16446 log2, thus
  114. |X - N*log2/64| <= (0.5 + 16446/2^(18))*log2/64
  115. <= 0.57 log2/64.
  116.  This bound will be used in Step 4.
  117. Step 4. Approximate exp(R)-1 by a polynomial
  118. p = R + R*R*(A1 + R*(A2 + R*(A3 + R*(A4 + R*A5))))
  119. Notes: a) In order to reduce memory access, the coefficients are
  120.  made as "short" as possible: A1 (which is 1/2), A4 and A5
  121.  are single precision|  A2 and A3 are double precision.
  122.  b) Even with the restrictions above,
  123. |p - (exp(R)-1)| < 2^(-68.8) for all |R| <= 0.0062.
  124.  Note that 0.0062 is slightly bigger than 0.57 log2/64.
  125.  c) To fully utilize the pipeline, p is separated into
  126.  two independent pieces of roughly equal complexities
  127. p = [ R + R*S*(A2 + S*A4) ] +
  128. [ S*(A1 + S*(A3 + S*A5)) ]
  129.  where S = R*R.
  130. Step 5. Compute 2^(J/64)*exp(R) = 2^(J/64)*(1+p) by
  131. ans := T + ( T*p + t)
  132.  where T and t are the stored values for 2^(J/64).
  133. Notes: 2^(J/64) is stored as T and t where T+t approximates
  134.  2^(J/64) to roughly 85 bits|  T is in extended precision
  135.  and t is in single precision. Note also that T is rounded
  136.  to 62 bits so that the last two bits of T are zero. The
  137.  reason for such a special form is that T-1, T-2, and T-8
  138.  will all be exact --- a property that will give much
  139.  more accurate computation of the function EXPM1.
  140. Step 6. Reconstruction of exp(X)
  141. exp(X) = 2^M * 2^(J/64) * exp(R).
  142. 6.1 If AdjFlag = 0, go to 6.3
  143. 6.2 ans := ans * AdjScale
  144. 6.3 Restore the user fpcr
  145. 6.4 Return ans := ans * Scale. Exit.
  146. Notes: If AdjFlag = 0, we have X = Mlog2 + Jlog2/64 + R,
  147.  |M| <= 16380, and Scale = 2^M. Moreover, exp(X) will
  148.  neither overflow nor underflow. If AdjFlag = 1, that
  149.  means that
  150. X = (M1+M)log2 + Jlog2/64 + R, |M1+M| >= 16380.
  151.  Hence, exp(X) may overflow or underflow or neither.
  152.  When that is the case, AdjScale = 2^(M1) where M1 is
  153.  approximately M. Thus 6.2 will never cause over/underflow.
  154.  Possible exception in 6.4 is overflow or underflow.
  155.  The inexact exception is not generated in 6.4. Although
  156.  one can argue that the inexact flag should always be
  157.  raised, to simulate that exception cost to much than the
  158.  flag is worth in practical uses.
  159. Step 7. Return 1 + X.
  160. 7.1 ans := X
  161. 7.2 Restore user fpcr.
  162. 7.3 Return ans := 1 + ans. Exit
  163. Notes: For non-zero X, the inexact exception will always be
  164.  raised by 7.3. That is the only exception raised by 7.3.
  165.  Note also that we use the FMOVEM instruction to move X
  166.  in Step 7.1 to avoid unnecessary trapping. (Although
  167.  the FMOVEM may not seem relevant since X is normalized,
  168.  the precaution will be useful in the library version of
  169.  this code where the separate entry for denormalized inputs
  170.  will be done away with.)
  171. Step 8. Handle exp(X) where |X| >= 16380log2.
  172. 8.1 If |X| > 16480 log2, go to Step 9.
  173. (mimic 2.2 - 2.6)
  174. 8.2 N := round-to-integer( X * 64/log2 )
  175. 8.3 Calculate J = N mod 64, J = 0,1,...,63
  176. 8.4 K := (N-J)/64, M1 := truncate(K/2), M = K-M1, AdjFlag := 1.
  177. 8.5 Calculate the address of the stored value 2^(J/64).
  178. 8.6 Create the values Scale = 2^M, AdjScale = 2^M1.
  179. 8.7 Go to Step 3.
  180. Notes: Refer to notes for 2.2 - 2.6.
  181. Step 9. Handle exp(X), |X| > 16480 log2.
  182. 9.1 If X < 0, go to 9.3
  183. 9.2 ans := Huge, go to 9.4
  184. 9.3 ans := Tiny.
  185. 9.4 Restore user fpcr.
  186. 9.5 Return ans := ans * ans. Exit.
  187. Notes: Exp(X) will surely overflow or underflow, depending on
  188.  X's sign. "Huge" and "Tiny" are respectively large/tiny
  189.  extended-precision numbers whose square over/underflow
  190.  with an inexact result. Thus, 9.5 always raises the
  191.  inexact together with either overflow or underflow.
  192. __l_setoxm1d
  193. --------
  194. Step 1. Set ans := 0
  195. Step 2. Return ans := X + ans. Exit.
  196. Notes: This will return X with the appropriate rounding
  197.  precision prescribed by the user fpcr.
  198. __l_setoxm1
  199. -------
  200. Step 1. Check |X|
  201. 1.1 If |X| >= 1/4, go to Step 1.3.
  202. 1.2 Go to Step 7.
  203. 1.3 If |X| < 70 log(2), go to Step 2.
  204. 1.4 Go to Step 10.
  205. Notes: The usual case should take the branches 1.1 -> 1.3 -> 2.
  206.  However, it is conceivable |X| can be small very often
  207.  because EXPM1 is intended to evaluate exp(X)-1 accurately
  208.  when |X| is small. For further details on the comparisons,
  209.  see the notes on Step 1 of __l_setox.
  210. Step 2. Calculate N = round-to-nearest-int( X * 64/log2 ).
  211. 2.1 N := round-to-nearest-integer( X * 64/log2 ).
  212. 2.2 Calculate J = N mod 64|  so J = 0,1,2,..., or 63.
  213. 2.3 Calculate M = (N - J)/64|  so N = 64M + J.
  214. 2.4 Calculate the address of the stored value of 2^(J/64).
  215. 2.5 Create the values Sc = 2^M and OnebySc := -2^(-M).
  216. Notes: See the notes on Step 2 of __l_setox.
  217. Step 3. Calculate X - N*log2/64.
  218. 3.1 R := X + N*L1, where L1 := single-precision(-log2/64).
  219. 3.2 R := R + N*L2, L2 := extended-precision(-log2/64 - L1).
  220. Notes: Applying the analysis of Step 3 of __l_setox in this case
  221.  shows that |R| <= 0.0055 (note that |X| <= 70 log2 in
  222.  this case).
  223. Step 4. Approximate exp(R)-1 by a polynomial
  224. p = R+R*R*(A1+R*(A2+R*(A3+R*(A4+R*(A5+R*A6)))))
  225. Notes: a) In order to reduce memory access, the coefficients are
  226.  made as "short" as possible: A1 (which is 1/2), A5 and A6
  227.  are single precision|  A2, A3 and A4 are double precision.
  228.  b) Even with the restriction above,
  229. |p - (exp(R)-1)| < |R| * 2^(-72.7)
  230.  for all |R| <= 0.0055.
  231.  c) To fully utilize the pipeline, p is separated into
  232.  two independent pieces of roughly equal complexity
  233. p = [ R*S*(A2 + S*(A4 + S*A6)) ] +
  234. [ R + S*(A1 + S*(A3 + S*A5)) ]
  235.  where S = R*R.
  236. Step 5. Compute 2^(J/64)*p by
  237. p := T*p
  238.  where T and t are the stored values for 2^(J/64).
  239. Notes: 2^(J/64) is stored as T and t where T+t approximates
  240.  2^(J/64) to roughly 85 bits|  T is in extended precision
  241.  and t is in single precision. Note also that T is rounded
  242.  to 62 bits so that the last two bits of T are zero. The
  243.  reason for such a special form is that T-1, T-2, and T-8
  244.  will all be exact --- a property that will be exploited
  245.  in Step 6 below. The total relative error in p is no
  246.  bigger than 2^(-67.7) compared to the final result.
  247. Step 6. Reconstruction of exp(X)-1
  248. exp(X)-1 = 2^M * ( 2^(J/64) + p - 2^(-M) ).
  249. 6.1 If M <= 63, go to Step 6.3.
  250. 6.2 ans := T + (p + (t + OnebySc)). Go to 6.6
  251. 6.3 If M >= -3, go to 6.5.
  252. 6.4 ans := (T + (p + t)) + OnebySc. Go to 6.6
  253. 6.5 ans := (T + OnebySc) + (p + t).
  254. 6.6 Restore user fpcr.
  255. 6.7 Return ans := Sc * ans. Exit.
  256. Notes: The various arrangements of the expressions give accurate
  257.  evaluations.
  258. Step 7. exp(X)-1 for |X| < 1/4.
  259. 7.1 If |X| >= 2^(-65), go to Step 9.
  260. 7.2 Go to Step 8.
  261. Step 8. Calculate exp(X)-1, |X| < 2^(-65).
  262. 8.1 If |X| < 2^(-16312), goto 8.3
  263. 8.2 Restore fpcr|  return ans := X - 2^(-16382). Exit.
  264. 8.3 X := X * 2^(140).
  265. 8.4 Restore fpcr|  ans := ans - 2^(-16382).
  266.  Return ans := ans*2^(140). Exit
  267. Notes: The idea is to return "X - tiny" under the user
  268.  precision and rounding modes. To avoid unnecessary
  269.  inefficiency, we stay away from denormalized numbers the
  270.  best we can. For |X| >= 2^(-16312), the straightforward
  271.  8.2 generates the inexact exception as the case warrants.
  272. Step 9. Calculate exp(X)-1, |X| < 1/4, by a polynomial
  273. p = X + X*X*(B1 + X*(B2 + |... + X*B12))
  274. Notes: a) In order to reduce memory access, the coefficients are
  275.  made as "short" as possible: B1 (which is 1/2), B9 to B12
  276.  are single precision|  B3 to B8 are double precision|  and
  277.  B2 is double extended.
  278.  b) Even with the restriction above,
  279. |p - (exp(X)-1)| < |X| 2^(-70.6)
  280.  for all |X| <= 0.251.
  281.  Note that 0.251 is slightly bigger than 1/4.
  282.  c) To fully preserve accuracy, the polynomial is computed
  283.  as X + ( S*B1 + Q ) where S = X*X and
  284. Q = X*S*(B2 + X*(B3 + |... + X*B12))
  285.  d) To fully utilize the pipeline, Q is separated into
  286.  two independent pieces of roughly equal complexity
  287. Q = [ X*S*(B2 + S*(B4 + |... + S*B12)) ] +
  288. [ S*S*(B3 + S*(B5 + |... + S*B11)) ]
  289. Step 10. Calculate exp(X)-1 for |X| >= 70 log 2.
  290. 10.1 If X >= 70log2 , exp(X) - 1 = exp(X) for all practical
  291.  purposes. Therefore, go to Step 1 of __l_setox.
  292. 10.2 If X <= -70log2, exp(X) - 1 = -1 for all practical purposes.
  293.  ans := -1
  294.  Restore user fpcr
  295.  Return ans := ans + 2^(-126). Exit.
  296. Notes: 10.2 will always create an inexact and return -1 + tiny
  297.  in the user rounding precision and mode.
  298. Copyright (C) Motorola, Inc. 1990
  299. All Rights Reserved
  300. THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF MOTOROLA
  301. The copyright notice above does not evidence any
  302. actual or intended publication of such source code.
  303. __l_setox IDNT 2,1 Motorola 040 Floating Point Software Package
  304. section 8
  305. NOMANUAL
  306. */
  307. #include "fpsp040L.h"
  308. L2: .long 0x3FDC0000,0x82E30865,0x4361C4C6,0x00000000
  309. EXPA3: .long 0x3FA55555,0x55554431
  310. EXPA2: .long 0x3FC55555,0x55554018
  311. HUGE: .long 0x7FFE0000,0xFFFFFFFF,0xFFFFFFFF,0x00000000
  312. TINY: .long 0x00010000,0xFFFFFFFF,0xFFFFFFFF,0x00000000
  313. EM1A4: .long 0x3F811111,0x11174385
  314. EM1A3: .long 0x3FA55555,0x55554F5A
  315. EM1A2: .long 0x3FC55555,0x55555555,0x00000000,0x00000000
  316. EM1B8: .long 0x3EC71DE3,0xA5774682
  317. EM1B7: .long 0x3EFA01A0,0x19D7CB68
  318. EM1B6: .long 0x3F2A01A0,0x1A019DF3
  319. EM1B5: .long 0x3F56C16C,0x16C170E2
  320. EM1B4: .long 0x3F811111,0x11111111
  321. EM1B3: .long 0x3FA55555,0x55555555
  322. EM1B2: .long 0x3FFC0000,0xAAAAAAAA,0xAAAAAAAB
  323. .long 0x00000000
  324. TWO140: .long 0x48B00000,0x00000000
  325. TWON140: .long 0x37300000,0x00000000
  326. EXPTBL:
  327. .long 0x3FFF0000,0x80000000,0x00000000,0x00000000
  328. .long 0x3FFF0000,0x8164D1F3,0xBC030774,0x9F841A9B
  329. .long 0x3FFF0000,0x82CD8698,0xAC2BA1D8,0x9FC1D5B9
  330. .long 0x3FFF0000,0x843A28C3,0xACDE4048,0xA0728369
  331. .long 0x3FFF0000,0x85AAC367,0xCC487B14,0x1FC5C95C
  332. .long 0x3FFF0000,0x871F6196,0x9E8D1010,0x1EE85C9F
  333. .long 0x3FFF0000,0x88980E80,0x92DA8528,0x9FA20729
  334. .long 0x3FFF0000,0x8A14D575,0x496EFD9C,0xA07BF9AF
  335. .long 0x3FFF0000,0x8B95C1E3,0xEA8BD6E8,0xA0020DCF
  336. .long 0x3FFF0000,0x8D1ADF5B,0x7E5BA9E4,0x205A63DA
  337. .long 0x3FFF0000,0x8EA4398B,0x45CD53C0,0x1EB70051
  338. .long 0x3FFF0000,0x9031DC43,0x1466B1DC,0x1F6EB029
  339. .long 0x3FFF0000,0x91C3D373,0xAB11C338,0xA0781494
  340. .long 0x3FFF0000,0x935A2B2F,0x13E6E92C,0x9EB319B0
  341. .long 0x3FFF0000,0x94F4EFA8,0xFEF70960,0x2017457D
  342. .long 0x3FFF0000,0x96942D37,0x20185A00,0x1F11D537
  343. .long 0x3FFF0000,0x9837F051,0x8DB8A970,0x9FB952DD
  344. .long 0x3FFF0000,0x99E04593,0x20B7FA64,0x1FE43087
  345. .long 0x3FFF0000,0x9B8D39B9,0xD54E5538,0x1FA2A818
  346. .long 0x3FFF0000,0x9D3ED9A7,0x2CFFB750,0x1FDE494D
  347. .long 0x3FFF0000,0x9EF53260,0x91A111AC,0x20504890
  348. .long 0x3FFF0000,0xA0B0510F,0xB9714FC4,0xA073691C
  349. .long 0x3FFF0000,0xA2704303,0x0C496818,0x1F9B7A05
  350. .long 0x3FFF0000,0xA43515AE,0x09E680A0,0xA0797126
  351. .long 0x3FFF0000,0xA5FED6A9,0xB15138EC,0xA071A140
  352. .long 0x3FFF0000,0xA7CD93B4,0xE9653568,0x204F62DA
  353. .long 0x3FFF0000,0xA9A15AB4,0xEA7C0EF8,0x1F283C4A
  354. .long 0x3FFF0000,0xAB7A39B5,0xA93ED338,0x9F9A7FDC
  355. .long 0x3FFF0000,0xAD583EEA,0x42A14AC8,0xA05B3FAC
  356. .long 0x3FFF0000,0xAF3B78AD,0x690A4374,0x1FDF2610
  357. .long 0x3FFF0000,0xB123F581,0xD2AC2590,0x9F705F90
  358. .long 0x3FFF0000,0xB311C412,0xA9112488,0x201F678A
  359. .long 0x3FFF0000,0xB504F333,0xF9DE6484,0x1F32FB13
  360. .long 0x3FFF0000,0xB6FD91E3,0x28D17790,0x20038B30
  361. .long 0x3FFF0000,0xB8FBAF47,0x62FB9EE8,0x200DC3CC
  362. .long 0x3FFF0000,0xBAFF5AB2,0x133E45FC,0x9F8B2AE6
  363. .long 0x3FFF0000,0xBD08A39F,0x580C36C0,0xA02BBF70
  364. .long 0x3FFF0000,0xBF1799B6,0x7A731084,0xA00BF518
  365. .long 0x3FFF0000,0xC12C4CCA,0x66709458,0xA041DD41
  366. .long 0x3FFF0000,0xC346CCDA,0x24976408,0x9FDF137B
  367. .long 0x3FFF0000,0xC5672A11,0x5506DADC,0x201F1568
  368. .long 0x3FFF0000,0xC78D74C8,0xABB9B15C,0x1FC13A2E
  369. .long 0x3FFF0000,0xC9B9BD86,0x6E2F27A4,0xA03F8F03
  370. .long 0x3FFF0000,0xCBEC14FE,0xF2727C5C,0x1FF4907D
  371. .long 0x3FFF0000,0xCE248C15,0x1F8480E4,0x9E6E53E4
  372. .long 0x3FFF0000,0xD06333DA,0xEF2B2594,0x1FD6D45C
  373. .long 0x3FFF0000,0xD2A81D91,0xF12AE45C,0xA076EDB9
  374. .long 0x3FFF0000,0xD4F35AAB,0xCFEDFA20,0x9FA6DE21
  375. .long 0x3FFF0000,0xD744FCCA,0xD69D6AF4,0x1EE69A2F
  376. .long 0x3FFF0000,0xD99D15C2,0x78AFD7B4,0x207F439F
  377. .long 0x3FFF0000,0xDBFBB797,0xDAF23754,0x201EC207
  378. .long 0x3FFF0000,0xDE60F482,0x5E0E9124,0x9E8BE175
  379. .long 0x3FFF0000,0xE0CCDEEC,0x2A94E110,0x20032C4B
  380. .long 0x3FFF0000,0xE33F8972,0xBE8A5A50,0x2004DFF5
  381. .long 0x3FFF0000,0xE5B906E7,0x7C8348A8,0x1E72F47A
  382. .long 0x3FFF0000,0xE8396A50,0x3C4BDC68,0x1F722F22
  383. .long 0x3FFF0000,0xEAC0C6E7,0xDD243930,0xA017E945
  384. .long 0x3FFF0000,0xED4F301E,0xD9942B84,0x1F401A5B
  385. .long 0x3FFF0000,0xEFE4B99B,0xDCDAF5CC,0x9FB9A9E3
  386. .long 0x3FFF0000,0xF281773C,0x59FFB138,0x20744C05
  387. .long 0x3FFF0000,0xF5257D15,0x2486CC2C,0x1F773A19
  388. .long 0x3FFF0000,0xF7D0DF73,0x0AD13BB8,0x1FFE90D5
  389. .long 0x3FFF0000,0xFA83B2DB,0x722A033C,0xA041ED22
  390. .long 0x3FFF0000,0xFD3E0C0C,0xF486C174,0x1F853F3A
  391. #define ADJFLAG  L_SCR2
  392. #define SCALE  FP_SCR1
  393. #define ADJSCALE  FP_SCR2
  394. #define SC  FP_SCR3
  395. #define ONEBYSC  FP_SCR4
  396. | xref __l_t_frcinx
  397. | xref __l_t_extdnrm
  398. | xref __l_t_unfl
  399. | xref __l_t_ovfl
  400. .text
  401. .globl __l_setoxd
  402. __l_setoxd:
  403. |--entry point for EXP(X), X is denormalized
  404. movel a0@,d0
  405. andil #0x80000000,d0
  406. oril #0x00800000,d0 |...sign(X)*2^(-126)
  407. movel d0,a7@-
  408. /* fmoves &0x3F800000,fp0 */  .long 0xf23c4400,0x3f800000
  409. fmovel d1,fpcr
  410. fadds a7@+,fp0
  411. jra  __l_t_frcinx
  412. .globl __l_setox
  413. __l_setox:
  414. /* |--entry point for EXP(X), here X is finite, non-zero, and not NaN's */
  415. |--Step 1.
  416. movel a0@,d0  |...load part of input X
  417. andil #0x7FFF0000,d0 |...biased expo. of X
  418. cmpil #0x3FBE0000,d0 |...2^(-65)
  419. jge  EXPC1 |...normal case
  420. jra  EXPSM
  421. EXPC1:
  422. |--The case |X| >= 2^(-65)
  423. movew a0@(4),d0 |...expo. and partial sig. of |X|
  424. cmpil #0x400CB167,d0 |...16380 log2 trunc. 16 bits
  425. jlt  EXPMAIN  |...normal case
  426. jra  EXPBIG
  427. EXPMAIN:
  428. |--Step 2.
  429. |--This is the normal branch: 2^(-65) <= |X| < 16380 log2.
  430. fmovex a0@,fp0 |...load input from a0@
  431. fmovex fp0,fp1
  432. /* fmuls &0x42B8AA3B,fp0 */  .long 0xf23c4423,0x42b8aa3b
  433. fmovemx fp2/fp3,a7@- |...save fp2
  434. movel #0,a6@(ADJFLAG)
  435. fmovel fp0,d0 |...N = int( X * 64/log2 )
  436. lea EXPTBL,a1
  437. fmovel d0,fp0 |...convert to floating-format
  438. movel d0,a6@(L_SCR1) |...save N temporarily
  439. andil #0x3F,d0 |...D0 is J = N mod 64
  440. lsll #4,d0
  441. addal d0,a1 |...address of 2^(J/64)
  442. movel a6@(L_SCR1),d0
  443. asrl #6,d0 |...D0 is M
  444. addiw #0x3FFF,d0 |...biased expo. of 2^(M)
  445. movew L2,a6@(L_SCR1) |...prefetch L2, no need in CB
  446. EXPCONT1:
  447. |--Step 3.
  448. |--fp1,fp2 saved on the stack. fp0 is N, fp1 is X,
  449. |--a0 points to 2^(J/64), D0 is biased expo. of 2^(M)
  450. fmovex fp0,fp2
  451. /* fmuls &0xBC317218,fp0 */  .long 0xf23c4423,0xbc317218
  452. fmulx L2,fp2 |...N * L2, L1+L2 = -log2/64
  453. faddx fp1,fp0   |...X + N*L1
  454. faddx fp2,fp0 |...fp0 is R, reduced arg.
  455. | MOVE.w #0x3FA5,EXPA3 |...load EXPA3 in cache
  456. |--Step 4.
  457. |--WE NOW COMPUTE EXP(R)-1 BY A POLYNOMIAL
  458. |-- R + R*R*(A1 + R*(A2 + R*(A3 + R*(A4 + R*A5))))
  459. |--TO FULLY UTILIZE THE PIPELINE, WE COMPUTE S = R*R
  460. |--[R+R*S*(A2+S*A4)] + [S*(A1+S*(A3+S*A5))]
  461. fmovex fp0,fp1
  462. fmulx fp1,fp1   |...fp1 IS S = R*R
  463. /* fmoves &0x3AB60B70,fp2 */  .long 0xf23c4500,0x3ab60b70
  464. | MOVE.w #0,a1@(2) |...load 2^(J/64) in cache
  465. fmulx fp1,fp2   |...fp2 IS S*A5
  466. fmovex fp1,fp3
  467. /* fmuls &0x3C088895,fp3 */  .long 0xf23c45a3,0x3c088895
  468. faddd EXPA3,fp2 |...fp2 IS a3+S*A5
  469. faddd EXPA2,fp3 |...fp3 IS a2+S*A4
  470. fmulx fp1,fp2   |...fp2 IS S*(A3+S*A5)
  471. movew d0,a6@(SCALE) |...SCALE is 2^(M) in extended
  472. clrw a6@(SCALE+2)
  473. movel #0x80000000,a6@(SCALE+4)
  474. clrl a6@(SCALE+8)
  475. fmulx fp1,fp3   |...fp3 IS S*(A2+S*A4)
  476. /* fadds &0x3F000000,fp2 */  .long 0xf23c4522,0x3f000000
  477. fmulx fp0,fp3   |...fp3 IS R*S*(A2+S*A4)
  478. fmulx fp1,fp2   |...fp2 IS S*(A1+S*(A3+S*A5))
  479. faddx fp3,fp0   |...fp0 IS R+R*S*(A2+S*A4),
  480. | |...fp3 released
  481. fmovex a1@+,fp1 |...fp1 is lead. pt. of 2^(J/64)
  482. faddx fp2,fp0   |...fp0 is EXP(R) - 1
  483. | |...fp2 released
  484. |--Step 5
  485. |--final reconstruction process
  486. |--EXP(X) = 2^M * ( 2^(J/64) + 2^(J/64)*(EXP(R)-1) )
  487. fmulx fp1,fp0   |...2^(J/64)*(Exp(R)-1)
  488. fmovemx a7@+,fp2/fp3 |...fp2 restored
  489. fadds a1@,fp0 |...accurate 2^(J/64)
  490. faddx fp1,fp0   |...2^(J/64) + 2^(J/64)*...
  491. movel a6@(ADJFLAG),d0
  492. |--Step 6
  493. tstl d0
  494. jeq  NORMAL
  495. ADJUST:
  496. fmulx a6@(ADJSCALE),fp0
  497. NORMAL:
  498. fmovel d1,fpcr   |...restore user fpcr
  499. fmulx a6@(SCALE),fp0 |...multiply 2^(M)
  500. jra  __l_t_frcinx
  501. EXPSM:
  502. |--Step 7
  503. fmovemx a0@,fp0-fp0 |...in case X is denormalized
  504. fmovel d1,fpcr
  505. /* fadds &0x3F800000,fp0 */  .long 0xf23c4422,0x3f800000
  506. jra  __l_t_frcinx
  507. EXPBIG:
  508. |--Step 8
  509. cmpil #0x400CB27C,d0 |...16480 log2
  510. jgt  EXP2BIG
  511. |--Steps 8.2 -- 8.6
  512. fmovex a0@,fp0 |...load input from a0@
  513. fmovex fp0,fp1
  514. /* fmuls &0x42B8AA3B,fp0 */  .long 0xf23c4423,0x42b8aa3b
  515. fmovemx  fp2/fp3,a7@- |...save fp2
  516. movel #1,a6@(ADJFLAG)
  517. fmovel fp0,d0 |...N = int( X * 64/log2 )
  518. lea EXPTBL,a1
  519. fmovel d0,fp0 |...convert to floating-format
  520. movel d0,a6@(L_SCR1) |...save N temporarily
  521. andil #0x3F,d0  |...D0 is J = N mod 64
  522. lsll #4,d0
  523. addal d0,a1 |...address of 2^(J/64)
  524. movel a6@(L_SCR1),d0
  525. asrl #6,d0 |...D0 is K
  526. movel d0,a6@(L_SCR1) |...save K temporarily
  527. asrl #1,d0 |...D0 is M1
  528. subl d0,a6@(L_SCR1) |...a1 is M
  529. addiw #0x3FFF,d0 |...biased expo. of 2^(M1)
  530. movew d0,a6@(ADJSCALE) |...ADJSCALE := 2^(M1)
  531. clrw a6@(ADJSCALE+2)
  532. movel #0x80000000,a6@(ADJSCALE+4)
  533. clrl a6@(ADJSCALE+8)
  534. movel a6@(L_SCR1),d0 |...D0 is M
  535. addiw #0x3FFF,d0 |...biased expo. of 2^(M)
  536. jra  EXPCONT1 |...go back to Step 3
  537. EXP2BIG:
  538. |--Step 9
  539. fmovel d1,fpcr
  540. movel a0@,d0
  541. bclr #sign_bit,a0@ |...setox always returns positive
  542. cmpil #0,d0
  543. jlt  __l_t_unfl
  544. jra  __l_t_ovfl
  545. .globl __l_setoxm1d
  546. __l_setoxm1d:
  547. |--entry point for EXPM1(X), here X is denormalized
  548. |--Step 0.
  549. jra  __l_t_extdnrm
  550. .globl __l_setoxm1
  551. __l_setoxm1:
  552. |--entry point for EXPM1(X), here X is finite, non-zero, non-NaN
  553. |--Step 1.
  554. |--Step 1.1
  555. movel a0@,d0  |...load part of input X
  556. andil #0x7FFF0000,d0 |...biased expo. of X
  557. cmpil #0x3FFD0000,d0 |...1/4
  558. jge  EM1CON1  |...|X| >= 1/4
  559. jra  EM1SM
  560. EM1CON1:
  561. |--Step 1.3
  562. |--The case |X| >= 1/4
  563. movew a0@(4),d0 |...expo. and partial sig. of |X|
  564. cmpil #0x4004C215,d0 |...70log2 rounded up to 16 bits
  565. jle  EM1MAIN  |...1/4 <= |X| <= 70log2
  566. jra  EM1BIG
  567. EM1MAIN:
  568. |--Step 2.
  569. |--This is the case: 1/4 <= |X| <= 70 log2.
  570. fmovex a0@,fp0 |...load input from a0@
  571. fmovex fp0,fp1
  572. /* fmuls &0x42B8AA3B,fp0 */  .long 0xf23c4423,0x42b8aa3b
  573. fmovemx fp2/fp3,a7@- |...save fp2
  574. | MOVE.w #0x3F81,EM1A4 |...prefetch in CB mode
  575. fmovel fp0,d0 |...N = int( X * 64/log2 )
  576. lea EXPTBL,a1
  577. fmovel d0,fp0 |...convert to floating-format
  578. movel d0,a6@(L_SCR1) |...save N temporarily
  579. andil #0x3F,d0  |...D0 is J = N mod 64
  580. lsll #4,d0
  581. addal d0,a1 |...address of 2^(J/64)
  582. movel a6@(L_SCR1),d0
  583. asrl #6,d0 |...D0 is M
  584. movel d0,a6@(L_SCR1) |...save a copy of M
  585. | MOVE.w #0x3FDC,L2 |...prefetch L2 in CB mode
  586. |--Step 3.
  587. |--fp1,fp2 saved on the stack. fp0 is N, fp1 is X,
  588. |--a0 points to 2^(J/64), D0 and a1 both contain M
  589. fmovex fp0,fp2
  590. /* fmuls &0xBC317218,fp0 */  .long 0xf23c4423,0xbc317218
  591. fmulx L2,fp2 |...N * L2, L1+L2 = -log2/64
  592. faddx fp1,fp0  |...X + N*L1
  593. faddx fp2,fp0  |...fp0 is R, reduced arg.
  594. | MOVE.w #0x3FC5,EM1A2 |...load EM1A2 in cache
  595. addiw #0x3FFF,d0 |...D0 is biased expo. of 2^M
  596. |--Step 4.
  597. |--WE NOW COMPUTE EXP(R)-1 BY A POLYNOMIAL
  598. |-- R + R*R*(A1 + R*(A2 + R*(A3 + R*(A4 + R*(A5 + R*A6)))))
  599. |--TO FULLY UTILIZE THE PIPELINE, WE COMPUTE S = R*R
  600. |--[R*S*(A2+S*(A4+S*A6))] + [R+S*(A1+S*(A3+S*A5))]
  601. fmovex fp0,fp1
  602. fmulx fp1,fp1 |...fp1 IS S = R*R
  603. /* fmoves &0x3950097B,fp2 */  .long 0xf23c4500,0x3950097b
  604. | MOVE.w #0,a1@(2) |...load 2^(J/64) in cache
  605. fmulx fp1,fp2 |...fp2 IS S*A6
  606. fmovex fp1,fp3
  607. /* fmuls &0x3AB60B6A,fp3 */  .long 0xf23c45a3,0x3ab60b6a
  608. faddd EM1A4,fp2 |...fp2 IS a4+S*A6
  609. faddd EM1A3,fp3 |...fp3 IS a3+S*A5
  610. movew d0,a6@(SC) |...SC is 2^(M) in extended
  611. clrw a6@(SC+2)
  612. movel #0x80000000,a6@(SC+4)
  613. clrl a6@(SC+8)
  614. fmulx fp1,fp2 |...fp2 IS S*(A4+S*A6)
  615. movel a6@(L_SCR1),d0 |...D0 is M
  616. negw d0 |...D0 is -M
  617. fmulx fp1,fp3 |...fp3 IS S*(A3+S*A5)
  618. addiw #0x3FFF,d0 |...biased expo. of 2^(-M)
  619. faddd EM1A2,fp2 |...fp2 IS a2+S*(A4+S*A6)
  620. /* fadds &0x3F000000,fp3 */  .long 0xf23c45a2,0x3f000000
  621. fmulx fp1,fp2 |...fp2 IS S*(A2+S*(A4+S*A6))
  622. oriw #0x8000,d0 |...signed/expo. of -2^(-M)
  623. movew d0,a6@(ONEBYSC) |...OnebySc is -2^(-M)
  624. clrw a6@(ONEBYSC+2)
  625. movel #0x80000000,a6@(ONEBYSC+4)
  626. clrl a6@(ONEBYSC+8)
  627. fmulx fp3,fp1 |...fp1 IS S*(A1+S*(A3+S*A5))
  628. | |...fp3 released
  629. fmulx fp0,fp2 |...fp2 IS R*S*(A2+S*(A4+S*A6))
  630. faddx fp1,fp0 |...fp0 IS R+S*(A1+S*(A3+S*A5))
  631. | |...fp1 released
  632. faddx fp2,fp0 |...fp0 IS EXP(R)-1
  633. | |...fp2 released
  634. fmovemx a7@+,fp2/fp3 |...fp2 restored
  635. |--Step 5
  636. |--Compute 2^(J/64)*p
  637. fmulx a1@,fp0 |...2^(J/64)*(Exp(R)-1)
  638. |--Step 6
  639. |--Step 6.1
  640. movel a6@(L_SCR1),d0 |...retrieve M
  641. cmpil #63,d0
  642. jle  MLE63
  643. |--Step 6.2 M >= 64
  644. fmoves a1@(12),fp1 |...fp1 is t
  645. faddx a6@(ONEBYSC),fp1 |...fp1 is t+OnebySc
  646. faddx fp1,fp0 |...p+(t+OnebySc), fp1 released
  647. faddx a1@,fp0 |...T+(p+(t+OnebySc))
  648. jra  EM1SCALE
  649. MLE63:
  650. |--Step 6.3 M <= 63
  651. cmpil #-3,d0
  652. jge  MGEN3
  653. MLTN3:
  654. |--Step 6.4 M <= -4
  655. fadds a1@(12),fp0 |...p+t
  656. faddx a1@,fp0 |...T+(p+t)
  657. faddx a6@(ONEBYSC),fp0 |...OnebySc + (T+(p+t))
  658. jra  EM1SCALE
  659. MGEN3:
  660. |--Step 6.5 -3 <= M <= 63
  661. fmovex a1@+,fp1 |...fp1 is T
  662. fadds a1@,fp0 |...fp0 is p+t
  663. faddx a6@(ONEBYSC),fp1 |...fp1 is T+OnebySc
  664. faddx fp1,fp0 |...(T+OnebySc)+(p+t)
  665. EM1SCALE:
  666. |--Step 6.6
  667. fmovel d1,fpcr
  668. fmulx a6@(SC),fp0
  669. jra  __l_t_frcinx
  670. EM1SM:
  671. |--Step 7 |X| < 1/4.
  672. cmpil #0x3FBE0000,d0 |...2^(-65)
  673. jge  EM1POLY
  674. EM1TINY:
  675. |--Step 8 |X| < 2^(-65)
  676. cmpil #0x00330000,d0 |...2^(-16312)
  677. jlt  EM12TINY
  678. |--Step 8.2
  679. movel #0x80010000,a6@(SC) |...SC is -2^(-16382)
  680. movel #0x80000000,a6@(SC+4)
  681. clrl a6@(SC+8)
  682. fmovex a0@,fp0
  683. fmovel d1,fpcr
  684. faddx a6@(SC),fp0
  685. jra  __l_t_frcinx
  686. EM12TINY:
  687. |--Step 8.3
  688. fmovex a0@,fp0
  689. fmuld TWO140,fp0
  690. movel #0x80010000,a6@(SC)
  691. movel #0x80000000,a6@(SC+4)
  692. clrl a6@(SC+8)
  693. faddx a6@(SC),fp0
  694. fmovel d1,fpcr
  695. fmuld TWON140,fp0
  696. jra  __l_t_frcinx
  697. EM1POLY:
  698. |--Step 9 exp(X)-1 by a simple polynomial
  699. fmovex a0@,fp0 |...fp0 is X
  700. fmulx fp0,fp0 |...fp0 is S := X*X
  701. fmovemx fp2/fp3,a7@- |...save fp2
  702. /* fmoves &0x2F30CAA8,fp1 */  .long 0xf23c4480,0x2f30caa8
  703. fmulx fp0,fp1 |...fp1 is S*B12
  704. /* fmoves &0x310F8290,fp2 */  .long 0xf23c4500,0x310f8290
  705. /* fadds &0x32D73220,fp1 */  .long 0xf23c44a2,0x32d73220
  706. fmulx fp0,fp2 |...fp2 is S*B11
  707. fmulx fp0,fp1 |...fp1 is S*(B10 + ...
  708. /* fadds &0x3493F281,fp2 */  .long 0xf23c4522,0x3493f281
  709. faddd EM1B8,fp1 |...fp1 is B8+S*...
  710. fmulx fp0,fp2 |...fp2 is S*(B9+...
  711. fmulx fp0,fp1 |...fp1 is S*(B8+...
  712. faddd EM1B7,fp2 |...fp2 is B7+S*...
  713. faddd EM1B6,fp1 |...fp1 is B6+S*...
  714. fmulx fp0,fp2 |...fp2 is S*(B7+...
  715. fmulx fp0,fp1 |...fp1 is S*(B6+...
  716. faddd EM1B5,fp2 |...fp2 is B5+S*...
  717. faddd EM1B4,fp1 |...fp1 is B4+S*...
  718. fmulx fp0,fp2 |...fp2 is S*(B5+...
  719. fmulx fp0,fp1 |...fp1 is S*(B4+...
  720. faddd EM1B3,fp2 |...fp2 is B3+S*...
  721. faddx EM1B2,fp1 |...fp1 is B2+S*...
  722. fmulx fp0,fp2 |...fp2 is S*(B3+...
  723. fmulx fp0,fp1 |...fp1 is S*(B2+...
  724. fmulx fp0,fp2 |...fp2 is S*S*(B3+...)
  725. fmulx a0@,fp1 |...fp1 is X*S*(B2...
  726. /* fmuls &0x3F000000,fp0 */  .long 0xf23c4423,0x3f000000
  727. faddx fp2,fp1 |...fp1 is Q
  728. | |...fp2 released
  729. fmovemx a7@+,fp2/fp3 |...fp2 restored
  730. faddx fp1,fp0 |...fp0 is S*B1+Q
  731. | |...fp1 released
  732. fmovel d1,fpcr
  733. faddx a0@,fp0
  734. jra  __l_t_frcinx
  735. EM1BIG:
  736. |--Step 10 |X| > 70 log2
  737. movel a0@,d0
  738. cmpil #0,d0
  739. jgt  EXPC1
  740. |--Step 10.2
  741. /* fmoves &0xBF800000,fp0 */  .long 0xf23c4400,0xbf800000
  742. fmovel d1,fpcr
  743. /* fadds &0x00800000,fp0 */  .long 0xf23c4422,0x00800000
  744. jra  __l_t_frcinx
  745. | end