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

数学计算

开发平台:

Unix_Linux

  1. ; mc88110 __gmpn_add_n -- Add two limb vectors of the same length > 0 and store
  2. ; sum in a third limb vector.
  3. ; Copyright 1995, 1996, 2000 Free Software Foundation, Inc.
  4. ; This file is part of the GNU MP Library.
  5. ; The GNU MP Library is free software; you can redistribute it and/or modify
  6. ; it under the terms of the GNU Lesser General Public License as published by
  7. ; the Free Software Foundation; either version 3 of the License, or (at your
  8. ; option) any later version.
  9. ; The GNU MP Library is distributed in the hope that it will be useful, but
  10. ; WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. ; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. ; License for more details.
  13. ; You should have received a copy of the GNU Lesser General Public License
  14. ; along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  15. ; INPUT PARAMETERS
  16. #define res_ptr r2
  17. #define s1_ptr r3
  18. #define s2_ptr r4
  19. #define size r5
  20. #include "sysdep.h"
  21. text
  22. align 16
  23. global C_SYMBOL_NAME(__gmpn_add_n)
  24. C_SYMBOL_NAME(__gmpn_add_n):
  25. addu.co  r0,r0,r0 ; clear cy flag
  26. xor  r12,s2_ptr,res_ptr
  27. bb1  2,r12,L1
  28. ; **  V1a  **
  29. L0: bb0  2,res_ptr,L_v1 ; branch if res_ptr is aligned?
  30. /* Add least significant limb separately to align res_ptr and s2_ptr */
  31. ld  r10,s1_ptr,0
  32. addu  s1_ptr,s1_ptr,4
  33. ld  r8,s2_ptr,0
  34. addu  s2_ptr,s2_ptr,4
  35. subu  size,size,1
  36. addu.co  r6,r10,r8
  37. st  r6,res_ptr,0
  38. addu  res_ptr,res_ptr,4
  39. L_v1: cmp  r12,size,2
  40. bb1  lt,r12,Lend2
  41. ld  r10,s1_ptr,0
  42. ld  r12,s1_ptr,4
  43. ld.d  r8,s2_ptr,0
  44. subu  size,size,10
  45. bcnd  lt0,size,Lfin1
  46. /* Add blocks of 8 limbs until less than 8 limbs remain */
  47. align  8
  48. Loop1: subu  size,size,8
  49. addu.cio r6,r10,r8
  50. ld  r10,s1_ptr,8
  51. addu.cio r7,r12,r9
  52. ld  r12,s1_ptr,12
  53. ld.d  r8,s2_ptr,8
  54. st.d  r6,res_ptr,0
  55. addu.cio r6,r10,r8
  56. ld  r10,s1_ptr,16
  57. addu.cio r7,r12,r9
  58. ld  r12,s1_ptr,20
  59. ld.d  r8,s2_ptr,16
  60. st.d  r6,res_ptr,8
  61. addu.cio r6,r10,r8
  62. ld  r10,s1_ptr,24
  63. addu.cio r7,r12,r9
  64. ld  r12,s1_ptr,28
  65. ld.d  r8,s2_ptr,24
  66. st.d  r6,res_ptr,16
  67. addu.cio r6,r10,r8
  68. ld  r10,s1_ptr,32
  69. addu.cio r7,r12,r9
  70. ld  r12,s1_ptr,36
  71. addu  s1_ptr,s1_ptr,32
  72. ld.d  r8,s2_ptr,32
  73. addu  s2_ptr,s2_ptr,32
  74. st.d  r6,res_ptr,24
  75. addu  res_ptr,res_ptr,32
  76. bcnd  ge0,size,Loop1
  77. Lfin1: addu  size,size,8-2
  78. bcnd  lt0,size,Lend1
  79. /* Add blocks of 2 limbs until less than 2 limbs remain */
  80. Loope1: addu.cio r6,r10,r8
  81. ld  r10,s1_ptr,8
  82. addu.cio r7,r12,r9
  83. ld  r12,s1_ptr,12
  84. ld.d  r8,s2_ptr,8
  85. st.d  r6,res_ptr,0
  86. subu  size,size,2
  87. addu  s1_ptr,s1_ptr,8
  88. addu  s2_ptr,s2_ptr,8
  89. addu  res_ptr,res_ptr,8
  90. bcnd  ge0,size,Loope1
  91. Lend1: addu.cio r6,r10,r8
  92. addu.cio r7,r12,r9
  93. st.d  r6,res_ptr,0
  94. bb0  0,size,Lret1
  95. /* Add last limb */
  96. ld  r10,s1_ptr,8
  97. ld  r8,s2_ptr,8
  98. addu.cio r6,r10,r8
  99. st  r6,res_ptr,8
  100. Lret1: jmp.n  r1
  101. addu.ci  r2,r0,r0 ; return carry-out from most sign. limb
  102. L1: xor  r12,s1_ptr,res_ptr
  103. bb1  2,r12,L2
  104. ; **  V1b  **
  105. or  r12,r0,s2_ptr
  106. or  s2_ptr,r0,s1_ptr
  107. or  s1_ptr,r0,r12
  108. br  L0
  109. ; **  V2  **
  110. /* If we come here, the alignment of s1_ptr and res_ptr as well as the
  111.    alignment of s2_ptr and res_ptr differ.  Since there are only two ways
  112.    things can be aligned (that we care about) we now know that the alignment
  113.    of s1_ptr and s2_ptr are the same.  */
  114. L2: cmp  r12,size,1
  115. bb1  eq,r12,Ljone
  116. bb0  2,s1_ptr,L_v2 ; branch if s1_ptr is aligned
  117. /* Add least significant limb separately to align res_ptr and s2_ptr */
  118. ld  r10,s1_ptr,0
  119. addu  s1_ptr,s1_ptr,4
  120. ld  r8,s2_ptr,0
  121. addu  s2_ptr,s2_ptr,4
  122. subu  size,size,1
  123. addu.co  r6,r10,r8
  124. st  r6,res_ptr,0
  125. addu  res_ptr,res_ptr,4
  126. L_v2: subu  size,size,8
  127. bcnd  lt0,size,Lfin2
  128. /* Add blocks of 8 limbs until less than 8 limbs remain */
  129. align  8
  130. Loop2: subu  size,size,8
  131. ld.d  r8,s1_ptr,0
  132. ld.d  r6,s2_ptr,0
  133. addu.cio r8,r8,r6
  134. st  r8,res_ptr,0
  135. addu.cio r9,r9,r7
  136. st  r9,res_ptr,4
  137. ld.d  r8,s1_ptr,8
  138. ld.d  r6,s2_ptr,8
  139. addu.cio r8,r8,r6
  140. st  r8,res_ptr,8
  141. addu.cio r9,r9,r7
  142. st  r9,res_ptr,12
  143. ld.d  r8,s1_ptr,16
  144. ld.d  r6,s2_ptr,16
  145. addu.cio r8,r8,r6
  146. st  r8,res_ptr,16
  147. addu.cio r9,r9,r7
  148. st  r9,res_ptr,20
  149. ld.d  r8,s1_ptr,24
  150. ld.d  r6,s2_ptr,24
  151. addu.cio r8,r8,r6
  152. st  r8,res_ptr,24
  153. addu.cio r9,r9,r7
  154. st  r9,res_ptr,28
  155. addu  s1_ptr,s1_ptr,32
  156. addu  s2_ptr,s2_ptr,32
  157. addu  res_ptr,res_ptr,32
  158. bcnd  ge0,size,Loop2
  159. Lfin2: addu  size,size,8-2
  160. bcnd  lt0,size,Lend2
  161. Loope2: ld.d  r8,s1_ptr,0
  162. ld.d  r6,s2_ptr,0
  163. addu.cio r8,r8,r6
  164. st  r8,res_ptr,0
  165. addu.cio r9,r9,r7
  166. st  r9,res_ptr,4
  167. subu  size,size,2
  168. addu  s1_ptr,s1_ptr,8
  169. addu  s2_ptr,s2_ptr,8
  170. addu  res_ptr,res_ptr,8
  171. bcnd  ge0,size,Loope2
  172. Lend2: bb0  0,size,Lret2
  173. /* Add last limb */
  174. Ljone: ld  r10,s1_ptr,0
  175. ld  r8,s2_ptr,0
  176. addu.cio r6,r10,r8
  177. st  r6,res_ptr,0
  178. Lret2: jmp.n  r1
  179. addu.ci  r2,r0,r0 ; return carry-out from most sign. limb