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

数学计算

开发平台:

Unix_Linux

  1. dnl  SPARC mpn_mul_1 -- Multiply a limb vector with a limb and store
  2. dnl  the result in a second limb vector.
  3. dnl  Copyright 1992, 1993, 1994, 2000 Free Software Foundation, Inc.
  4. dnl  This file is part of the GNU MP Library.
  5. dnl  The GNU MP Library is free software; you can redistribute it and/or modify
  6. dnl  it under the terms of the GNU Lesser General Public License as published
  7. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  8. dnl  your option) any later version.
  9. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  10. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. dnl  License for more details.
  13. dnl  You should have received a copy of the GNU Lesser General Public License
  14. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  15. include(`../config.m4')
  16. C INPUT PARAMETERS
  17. C res_ptr o0
  18. C s1_ptr o1
  19. C size o2
  20. C s2_limb o3
  21. ASM_START()
  22. PROLOGUE(mpn_mul_1)
  23. C Make S1_PTR and RES_PTR point at the end of their blocks
  24. C and put (- 4 x SIZE) in index/loop counter.
  25. sll %o2,2,%o2
  26. add %o0,%o2,%o4 C RES_PTR in o4 since o0 is retval
  27. add %o1,%o2,%o1
  28. sub %g0,%o2,%o2
  29. cmp %o3,0xfff
  30. bgu L(large)
  31. nop
  32. ld [%o1+%o2],%o5
  33. mov 0,%o0
  34. b L(0)
  35.  add %o4,-4,%o4
  36. L(loop0):
  37. st %g1,[%o4+%o2]
  38. L(0): wr %g0,%o3,%y
  39. sra %o5,31,%g2
  40. and %o3,%g2,%g2
  41. andcc %g1,0,%g1
  42. mulscc %g1,%o5,%g1
  43. mulscc %g1,%o5,%g1
  44. mulscc %g1,%o5,%g1
  45. mulscc %g1,%o5,%g1
  46. mulscc %g1,%o5,%g1
  47. mulscc %g1,%o5,%g1
  48. mulscc %g1,%o5,%g1
  49. mulscc %g1,%o5,%g1
  50. mulscc %g1,%o5,%g1
  51. mulscc %g1,%o5,%g1
  52. mulscc %g1,%o5,%g1
  53. mulscc %g1,%o5,%g1
  54. mulscc %g1,0,%g1
  55. sra %g1,20,%g4
  56. sll %g1,12,%g1
  57. rd %y,%g3
  58. srl %g3,20,%g3
  59. or %g1,%g3,%g1
  60. addcc %g1,%o0,%g1
  61. addx %g2,%g4,%o0 C add sign-compensation and cy to hi limb
  62. addcc %o2,4,%o2 C loop counter
  63. bne,a L(loop0)
  64.  ld [%o1+%o2],%o5
  65. retl
  66. st %g1,[%o4+%o2]
  67. L(large):
  68. ld [%o1+%o2],%o5
  69. mov 0,%o0
  70. sra %o3,31,%g4 C g4 = mask of ones iff S2_LIMB < 0
  71. b L(1)
  72.  add %o4,-4,%o4
  73. L(loop):
  74. st %g3,[%o4+%o2]
  75. L(1): wr %g0,%o5,%y
  76. and %o5,%g4,%g2 C g2 = S1_LIMB iff S2_LIMB < 0, else 0
  77. andcc %g0,%g0,%g1
  78. mulscc %g1,%o3,%g1
  79. mulscc %g1,%o3,%g1
  80. mulscc %g1,%o3,%g1
  81. mulscc %g1,%o3,%g1
  82. mulscc %g1,%o3,%g1
  83. mulscc %g1,%o3,%g1
  84. mulscc %g1,%o3,%g1
  85. mulscc %g1,%o3,%g1
  86. mulscc %g1,%o3,%g1
  87. mulscc %g1,%o3,%g1
  88. mulscc %g1,%o3,%g1
  89. mulscc %g1,%o3,%g1
  90. mulscc %g1,%o3,%g1
  91. mulscc %g1,%o3,%g1
  92. mulscc %g1,%o3,%g1
  93. mulscc %g1,%o3,%g1
  94. mulscc %g1,%o3,%g1
  95. mulscc %g1,%o3,%g1
  96. mulscc %g1,%o3,%g1
  97. mulscc %g1,%o3,%g1
  98. mulscc %g1,%o3,%g1
  99. mulscc %g1,%o3,%g1
  100. mulscc %g1,%o3,%g1
  101. mulscc %g1,%o3,%g1
  102. mulscc %g1,%o3,%g1
  103. mulscc %g1,%o3,%g1
  104. mulscc %g1,%o3,%g1
  105. mulscc %g1,%o3,%g1
  106. mulscc %g1,%o3,%g1
  107. mulscc %g1,%o3,%g1
  108. mulscc %g1,%o3,%g1
  109. mulscc %g1,%o3,%g1
  110. mulscc %g1,%g0,%g1
  111. rd %y,%g3
  112. addcc %g3,%o0,%g3
  113. addx %g2,%g1,%o0 C add sign-compensation and cy to hi limb
  114. addcc %o2,4,%o2 C loop counter
  115. bne,a L(loop)
  116.  ld [%o1+%o2],%o5
  117. retl
  118. st %g3,[%o4+%o2]
  119. EPILOGUE(mpn_mul_1)