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

嵌入式Linux

开发平台:

Unix_Linux

  1. |
  2. | stanh.sa 3.1 12/10/90
  3. |
  4. | The entry point sTanh computes the hyperbolic tangent of
  5. | an input argument; sTanhd does the same except for denormalized
  6. | input.
  7. |
  8. | Input: Double-extended number X in location pointed to
  9. | by address register a0.
  10. |
  11. | Output: The value tanh(X) returned in floating-point register Fp0.
  12. |
  13. | Accuracy and Monotonicity: The returned result is within 3 ulps in
  14. | 64 significant bit, i.e. within 0.5001 ulp to 53 bits if the
  15. | result is subsequently rounded to double precision. The
  16. | result is provably monotonic in double precision.
  17. |
  18. | Speed: The program stanh takes approximately 270 cycles.
  19. |
  20. | Algorithm:
  21. |
  22. | TANH
  23. | 1. If |X| >= (5/2) log2 or |X| <= 2**(-40), go to 3.
  24. |
  25. | 2. (2**(-40) < |X| < (5/2) log2) Calculate tanh(X) by
  26. | sgn := sign(X), y := 2|X|, z := expm1(Y), and
  27. | tanh(X) = sgn*( z/(2+z) ).
  28. | Exit.
  29. |
  30. | 3. (|X| <= 2**(-40) or |X| >= (5/2) log2). If |X| < 1,
  31. | go to 7.
  32. |
  33. | 4. (|X| >= (5/2) log2) If |X| >= 50 log2, go to 6.
  34. |
  35. | 5. ((5/2) log2 <= |X| < 50 log2) Calculate tanh(X) by
  36. | sgn := sign(X), y := 2|X|, z := exp(Y),
  37. | tanh(X) = sgn - [ sgn*2/(1+z) ].
  38. | Exit.
  39. |
  40. | 6. (|X| >= 50 log2) Tanh(X) = +-1 (round to nearest). Thus, we
  41. | calculate Tanh(X) by
  42. | sgn := sign(X), Tiny := 2**(-126),
  43. | tanh(X) := sgn - sgn*Tiny.
  44. | Exit.
  45. |
  46. | 7. (|X| < 2**(-40)). Tanh(X) = X. Exit.
  47. |
  48. | Copyright (C) Motorola, Inc. 1990
  49. | All Rights Reserved
  50. |
  51. | THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF MOTOROLA 
  52. | The copyright notice above does not evidence any  
  53. | actual or intended publication of such source code.
  54. |STANH idnt 2,1 | Motorola 040 Floating Point Software Package
  55. |section 8
  56. .include "fpsp.h"
  57. .set X,FP_SCR5
  58. .set XDCARE,X+2
  59. .set XFRAC,X+4
  60. .set SGN,L_SCR3
  61. .set V,FP_SCR6
  62. BOUNDS1: .long 0x3FD78000,0x3FFFDDCE | ... 2^(-40), (5/2)LOG2
  63. |xref t_frcinx
  64. |xref t_extdnrm
  65. |xref setox
  66. |xref setoxm1
  67. .global stanhd
  68. stanhd:
  69. |--TANH(X) = X FOR DENORMALIZED X
  70. bra t_extdnrm
  71. .global stanh
  72. stanh:
  73. fmovex (%a0),%fp0 | ...LOAD INPUT
  74. fmovex %fp0,X(%a6)
  75. movel (%a0),%d0
  76. movew 4(%a0),%d0
  77. movel %d0,X(%a6)
  78. andl #0x7FFFFFFF,%d0
  79. cmp2l BOUNDS1(%pc),%d0 | ...2**(-40) < |X| < (5/2)LOG2 ?
  80. bcss TANHBORS
  81. |--THIS IS THE USUAL CASE
  82. |--Y = 2|X|, Z = EXPM1(Y), TANH(X) = SIGN(X) * Z / (Z+2).
  83. movel X(%a6),%d0
  84. movel %d0,SGN(%a6)
  85. andl #0x7FFF0000,%d0
  86. addl #0x00010000,%d0 | ...EXPONENT OF 2|X|
  87. movel %d0,X(%a6)
  88. andl #0x80000000,SGN(%a6)
  89. fmovex X(%a6),%fp0 | ...FP0 IS Y = 2|X|
  90. movel %d1,-(%a7)
  91. clrl %d1
  92. fmovemx %fp0-%fp0,(%a0)
  93. bsr setoxm1   | ...FP0 IS Z = EXPM1(Y)
  94. movel (%a7)+,%d1
  95. fmovex %fp0,%fp1
  96. fadds #0x40000000,%fp1 | ...Z+2
  97. movel SGN(%a6),%d0
  98. fmovex %fp1,V(%a6)
  99. eorl %d0,V(%a6)
  100. fmovel %d1,%FPCR |restore users exceptions
  101. fdivx V(%a6),%fp0
  102. bra t_frcinx
  103. TANHBORS:
  104. cmpl #0x3FFF8000,%d0
  105. blt TANHSM
  106. cmpl #0x40048AA1,%d0
  107. bgt TANHHUGE
  108. |-- (5/2) LOG2 < |X| < 50 LOG2,
  109. |--TANH(X) = 1 - (2/[EXP(2X)+1]). LET Y = 2|X|, SGN = SIGN(X),
  110. |--TANH(X) = SGN - SGN*2/[EXP(Y)+1].
  111. movel X(%a6),%d0
  112. movel %d0,SGN(%a6)
  113. andl #0x7FFF0000,%d0
  114. addl #0x00010000,%d0 | ...EXPO OF 2|X|
  115. movel %d0,X(%a6) | ...Y = 2|X|
  116. andl #0x80000000,SGN(%a6)
  117. movel SGN(%a6),%d0
  118. fmovex X(%a6),%fp0 | ...Y = 2|X|
  119. movel %d1,-(%a7)
  120. clrl %d1
  121. fmovemx %fp0-%fp0,(%a0)
  122. bsr setox | ...FP0 IS EXP(Y)
  123. movel (%a7)+,%d1
  124. movel SGN(%a6),%d0
  125. fadds #0x3F800000,%fp0 | ...EXP(Y)+1
  126. eorl #0xC0000000,%d0 | ...-SIGN(X)*2
  127. fmoves %d0,%fp1 | ...-SIGN(X)*2 IN SGL FMT
  128. fdivx %fp0,%fp1   | ...-SIGN(X)2 / [EXP(Y)+1 ]
  129. movel SGN(%a6),%d0
  130. orl #0x3F800000,%d0 | ...SGN
  131. fmoves %d0,%fp0 | ...SGN IN SGL FMT
  132. fmovel %d1,%FPCR |restore users exceptions
  133. faddx %fp1,%fp0
  134. bra t_frcinx
  135. TANHSM:
  136. movew #0x0000,XDCARE(%a6)
  137. fmovel %d1,%FPCR |restore users exceptions
  138. fmovex X(%a6),%fp0 |last inst - possible exception set
  139. bra t_frcinx
  140. TANHHUGE:
  141. |---RETURN SGN(X) - SGN(X)EPS
  142. movel X(%a6),%d0
  143. andl #0x80000000,%d0
  144. orl #0x3F800000,%d0
  145. fmoves %d0,%fp0
  146. andl #0x80000000,%d0
  147. eorl #0x80800000,%d0 | ...-SIGN(X)*EPS
  148. fmovel %d1,%FPCR |restore users exceptions
  149. fadds %d0,%fp0
  150. bra t_frcinx
  151. |end