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

数学计算

开发平台:

Unix_Linux

  1. dnl  Alpha mpn_rshift -- Shift a number right.
  2. dnl  Copyright 1994, 1995, 2000, 2009 Free Software Foundation, Inc.
  3. dnl  This file is part of the GNU MP Library.
  4. dnl  The GNU MP Library is free software; you can redistribute it and/or modify
  5. dnl  it under the terms of the GNU Lesser General Public License as published
  6. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  7. dnl  your option) any later version.
  8. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  9. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. dnl  License for more details.
  12. dnl  You should have received a copy of the GNU Lesser General Public License
  13. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  14. include(`../config.m4')
  15. C      cycles/limb
  16. C EV4:     ?
  17. C EV5:     3.25
  18. C EV6:     1.75
  19. C  INPUT PARAMETERS
  20. C  rp r16
  21. C  up r17
  22. C  n r18
  23. C  cnt r19
  24. ASM_START()
  25. PROLOGUE(mpn_rshift)
  26. ldq r4,0(r17) C load first limb
  27. subq r31,r19,r20
  28. subq r18,1,r18
  29. and r18,4-1,r28 C number of limbs in first loop
  30. sll r4,r20,r0 C compute function result
  31. beq r28,L(L0)
  32. subq r18,r28,r18
  33. ALIGN(8)
  34. L(top0):
  35. ldq r3,8(r17)
  36. addq r16,8,r16
  37. srl r4,r19,r5
  38. addq r17,8,r17
  39. subq r28,1,r28
  40. sll r3,r20,r6
  41. bis r3,r3,r4
  42. bis r5,r6,r8
  43. stq r8,-8(r16)
  44. bne r28,L(top0)
  45. L(L0): srl r4,r19,r24
  46. beq r18,L(end)
  47. C warm up phase 1
  48. ldq r1,8(r17)
  49. subq r18,4,r18
  50. ldq r2,16(r17)
  51. ldq r3,24(r17)
  52. ldq r4,32(r17)
  53. C warm up phase 2
  54. sll r1,r20,r7
  55. srl r1,r19,r21
  56. sll r2,r20,r8
  57. beq r18,L(end1)
  58. ldq r1,40(r17)
  59. srl r2,r19,r22
  60. ldq r2,48(r17)
  61. sll r3,r20,r5
  62. bis r7,r24,r7
  63. srl r3,r19,r23
  64. bis r8,r21,r8
  65. sll r4,r20,r6
  66. ldq r3,56(r17)
  67. srl r4,r19,r24
  68. ldq r4,64(r17)
  69. subq r18,4,r18
  70. beq r18,L(end2)
  71. ALIGN(16)
  72. C main loop
  73. L(top): stq r7,0(r16)
  74. bis r5,r22,r5
  75. stq r8,8(r16)
  76. bis r6,r23,r6
  77. sll r1,r20,r7
  78. subq r18,4,r18
  79. srl r1,r19,r21
  80. unop C ldq r31,-96(r17)
  81. sll r2,r20,r8
  82. ldq r1,72(r17)
  83. srl r2,r19,r22
  84. ldq r2,80(r17)
  85. stq r5,16(r16)
  86. bis r7,r24,r7
  87. stq r6,24(r16)
  88. bis r8,r21,r8
  89. sll r3,r20,r5
  90. unop C ldq r31,-96(r17)
  91. srl r3,r19,r23
  92. addq r16,32,r16
  93. sll r4,r20,r6
  94. ldq r3,88(r17)
  95. srl r4,r19,r24
  96. ldq r4,96(r17)
  97. addq r17,32,r17
  98. bne r18,L(top)
  99. C cool down phase 2/1
  100. L(end2):
  101. stq r7,0(r16)
  102. bis r5,r22,r5
  103. stq r8,8(r16)
  104. bis r6,r23,r6
  105. sll r1,r20,r7
  106. srl r1,r19,r21
  107. sll r2,r20,r8
  108. srl r2,r19,r22
  109. stq r5,16(r16)
  110. bis r7,r24,r7
  111. stq r6,24(r16)
  112. bis r8,r21,r8
  113. sll r3,r20,r5
  114. srl r3,r19,r23
  115. sll r4,r20,r6
  116. srl r4,r19,r24
  117. C cool down phase 2/2
  118. stq r7,32(r16)
  119. bis r5,r22,r5
  120. stq r8,40(r16)
  121. bis r6,r23,r6
  122. stq r5,48(r16)
  123. stq r6,56(r16)
  124. C cool down phase 2/3
  125. stq r24,64(r16)
  126. ret r31,(r26),1
  127. C cool down phase 1/1
  128. L(end1):
  129. srl r2,r19,r22
  130. sll r3,r20,r5
  131. bis r7,r24,r7
  132. srl r3,r19,r23
  133. bis r8,r21,r8
  134. sll r4,r20,r6
  135. srl r4,r19,r24
  136. C cool down phase 1/2
  137. stq r7,0(r16)
  138. bis r5,r22,r5
  139. stq r8,8(r16)
  140. bis r6,r23,r6
  141. stq r5,16(r16)
  142. stq r6,24(r16)
  143. stq r24,32(r16)
  144. ret r31,(r26),1
  145. L(end): stq r24,0(r16)
  146. ret r31,(r26),1
  147. EPILOGUE(mpn_rshift)
  148. ASM_END()