aors_n.asm
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:5k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. dnl  Alpha ev6 nails mpn_add_n and mpn_sub_n.
  2. dnl  Copyright 2002, 2006 Free Software Foundation, Inc.
  3. dnl
  4. dnl  This file is part of the GNU MP Library.
  5. dnl
  6. dnl  The GNU MP Library is free software; you can redistribute it and/or
  7. dnl  modify it under the terms of the GNU Lesser General Public License as
  8. dnl  published by the Free Software Foundation; either version 3 of the
  9. dnl  License, or (at your option) any later version.
  10. dnl
  11. dnl  The GNU MP Library is distributed in the hope that it will be useful,
  12. dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14. dnl  Lesser General Public License for more details.
  15. dnl
  16. dnl  You should have received a copy of the GNU Lesser General Public License
  17. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  18. dnl  Runs at 2.5 cycles/limb.  It would be possible to reach 2.0 cycles/limb
  19. dnl  with 8-way unrolling.
  20. include(`../config.m4')
  21. dnl  INPUT PARAMETERS
  22. define(`rp',`r16')
  23. define(`up',`r17')
  24. define(`vp',`r18')
  25. define(`n',`r19')
  26. define(`rl0',`r0')
  27. define(`rl1',`r1')
  28. define(`rl2',`r2')
  29. define(`rl3',`r3')
  30. define(`ul0',`r4')
  31. define(`ul1',`r5')
  32. define(`ul2',`r6')
  33. define(`ul3',`r7')
  34. define(`vl0',`r22')
  35. define(`vl1',`r23')
  36. define(`vl2',`r24')
  37. define(`vl3',`r25')
  38. define(`numb_mask',`r21')
  39. define(`NAIL_BITS',`GMP_NAIL_BITS')
  40. define(`CYSH',`GMP_NUMB_BITS')
  41. dnl  This declaration is munged by configure
  42. NAILS_SUPPORT(1-63)
  43. ifdef(`OPERATION_add_n', `
  44. define(`OP',        addq)
  45. define(`CYSH',`GMP_NUMB_BITS')
  46. define(`func',  mpn_add_n)')
  47. ifdef(`OPERATION_sub_n', `
  48. define(`OP',        subq)
  49. define(`CYSH',63)
  50. define(`func',  mpn_sub_n)')
  51. MULFUNC_PROLOGUE(mpn_add_n mpn_sub_n)
  52. ASM_START()
  53. PROLOGUE(func)
  54. lda numb_mask, -1(r31)
  55. srl numb_mask, NAIL_BITS, numb_mask
  56. bis r31, r31, r20
  57. and n, 3, r25
  58. lda n, -4(n)
  59. beq r25, L(ge4)
  60. L(lp0): ldq ul0, 0(up)
  61. lda up, 8(up)
  62. ldq vl0, 0(vp)
  63. lda vp, 8(vp)
  64. lda rp, 8(rp)
  65. lda r25, -1(r25)
  66. OP ul0, vl0, rl0
  67. OP rl0, r20, rl0
  68. and rl0, numb_mask, r28
  69. stq r28, -8(rp)
  70. srl rl0, CYSH, r20
  71. bne r25, L(lp0)
  72. blt n, L(ret)
  73. L(ge4): ldq ul0, 0(up)
  74. ldq vl0, 0(vp)
  75. ldq ul1, 8(up)
  76. ldq vl1, 8(vp)
  77. ldq ul2, 16(up)
  78. ldq vl2, 16(vp)
  79. ldq ul3, 24(up)
  80. ldq vl3, 24(vp)
  81. lda up, 32(up)
  82. lda vp, 32(vp)
  83. lda n, -4(n)
  84. bge n, L(ge8)
  85. OP ul0, vl0, rl0 C main-add 0
  86. OP rl0, r20, rl0 C cy-add 0
  87. OP ul1, vl1, rl1 C main-add 1
  88. srl rl0, CYSH, r20 C gen cy 0
  89. OP rl1, r20, rl1 C cy-add 1
  90. and rl0,numb_mask, r27
  91. br r31, L(cj0)
  92. L(ge8): OP ul0, vl0, rl0 C main-add 0
  93. ldq ul0, 0(up)
  94. ldq vl0, 0(vp)
  95. OP rl0, r20, rl0 C cy-add 0
  96. OP ul1, vl1, rl1 C main-add 1
  97. srl rl0, CYSH, r20 C gen cy 0
  98. ldq ul1, 8(up)
  99. ldq vl1, 8(vp)
  100. OP rl1, r20, rl1 C cy-add 1
  101. and rl0,numb_mask, r27
  102. OP ul2, vl2, rl2 C main-add 2
  103. srl rl1, CYSH, r20 C gen cy 1
  104. ldq ul2, 16(up)
  105. ldq vl2, 16(vp)
  106. OP rl2, r20, rl2 C cy-add 2
  107. and rl1,numb_mask, r28
  108. stq r27, 0(rp)
  109. OP ul3, vl3, rl3 C main-add 3
  110. srl rl2, CYSH, r20 C gen cy 2
  111. ldq ul3, 24(up)
  112. ldq vl3, 24(vp)
  113. OP rl3, r20, rl3 C cy-add 3
  114. and rl2,numb_mask, r27
  115. stq r28, 8(rp)
  116. lda rp, 32(rp)
  117. lda up, 32(up)
  118. lda vp, 32(vp)
  119. lda n, -4(n)
  120. blt n, L(end)
  121. ALIGN(32)
  122. L(top): OP ul0, vl0, rl0 C main-add 0
  123. srl rl3, CYSH, r20 C gen cy 3
  124. ldq ul0, 0(up)
  125. ldq vl0, 0(vp)
  126. OP rl0, r20, rl0 C cy-add 0
  127. and rl3,numb_mask, r28
  128. stq r27, -16(rp)
  129. bis r31, r31, r31
  130. OP ul1, vl1, rl1 C main-add 1
  131. srl rl0, CYSH, r20 C gen cy 0
  132. ldq ul1, 8(up)
  133. ldq vl1, 8(vp)
  134. OP rl1, r20, rl1 C cy-add 1
  135. and rl0,numb_mask, r27
  136. stq r28, -8(rp)
  137. bis r31, r31, r31
  138. OP ul2, vl2, rl2 C main-add 2
  139. srl rl1, CYSH, r20 C gen cy 1
  140. ldq ul2, 16(up)
  141. ldq vl2, 16(vp)
  142. OP rl2, r20, rl2 C cy-add 2
  143. and rl1,numb_mask, r28
  144. stq r27, 0(rp)
  145. bis r31, r31, r31
  146. OP ul3, vl3, rl3 C main-add 3
  147. srl rl2, CYSH, r20 C gen cy 2
  148. ldq ul3, 24(up)
  149. ldq vl3, 24(vp)
  150. OP rl3, r20, rl3 C cy-add 3
  151. and rl2,numb_mask, r27
  152. stq r28, 8(rp)
  153. bis r31, r31, r31
  154. bis r31, r31, r31
  155. lda n, -4(n)
  156. lda up, 32(up)
  157. lda vp, 32(vp)
  158. bis r31, r31, r31
  159. bis r31, r31, r31
  160. lda rp, 32(rp)
  161. bge n, L(top)
  162. L(end): OP ul0, vl0, rl0 C main-add 0
  163. srl rl3, CYSH, r20 C gen cy 3
  164. OP rl0, r20, rl0 C cy-add 0
  165. and rl3,numb_mask, r28
  166. stq r27, -16(rp)
  167. OP ul1, vl1, rl1 C main-add 1
  168. srl rl0, CYSH, r20 C gen cy 0
  169. OP rl1, r20, rl1 C cy-add 1
  170. and rl0,numb_mask, r27
  171. stq r28, -8(rp)
  172. L(cj0): OP ul2, vl2, rl2 C main-add 2
  173. srl rl1, CYSH, r20 C gen cy 1
  174. OP rl2, r20, rl2 C cy-add 2
  175. and rl1,numb_mask, r28
  176. stq r27, 0(rp)
  177. OP ul3, vl3, rl3 C main-add 3
  178. srl rl2, CYSH, r20 C gen cy 2
  179. OP rl3, r20, rl3 C cy-add 3
  180. and rl2,numb_mask, r27
  181. stq r28, 8(rp)
  182. srl rl3, CYSH, r20 C gen cy 3
  183. and rl3,numb_mask, r28
  184. stq r27, 16(rp)
  185. stq r28, 24(rp)
  186. L(ret): and r20, 1, r0
  187. ret r31, (r26), 1
  188. EPILOGUE()
  189. ASM_END()