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

数学计算

开发平台:

Unix_Linux

  1. dnl  Intel P6 mpn_modexact_1_odd -- exact division style remainder.
  2. dnl  Copyright 2001, 2002, 2007 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. include(`../config.m4')
  19. C       odd  even  divisor
  20. C P6:  10.0  12.0  cycles/limb
  21. C void mpn_divexact_1 (mp_ptr dst, mp_srcptr src, mp_size_t size,
  22. C                      mp_limb_t divisor);
  23. C
  24. C The odd case is basically the same as mpn_modexact_1_odd, just with an
  25. C extra store, and it runs at the same 10 cycles which is the dependent
  26. C chain.
  27. C
  28. C The shifts for the even case aren't on the dependent chain so in principle
  29. C it could run the same too, but nothing running at 10 has been found.
  30. C Perhaps there's too many uops (an extra 4 over the odd case).
  31. defframe(PARAM_DIVISOR,16)
  32. defframe(PARAM_SIZE,   12)
  33. defframe(PARAM_SRC,     8)
  34. defframe(PARAM_DST,     4)
  35. defframe(SAVE_EBX,     -4)
  36. defframe(SAVE_ESI,     -8)
  37. defframe(SAVE_EDI,    -12)
  38. defframe(SAVE_EBP,    -16)
  39. defframe(VAR_INVERSE, -20)
  40. deflit(STACK_SPACE, 20)
  41. TEXT
  42. ALIGN(16)
  43. PROLOGUE(mpn_divexact_1)
  44. deflit(`FRAME',0)
  45. movl PARAM_DIVISOR, %eax
  46. subl $STACK_SPACE, %esp FRAME_subl_esp(STACK_SPACE)
  47. movl %esi, SAVE_ESI
  48. movl PARAM_SRC, %esi
  49. movl %ebx, SAVE_EBX
  50. movl PARAM_SIZE, %ebx
  51. bsfl %eax, %ecx C trailing twos
  52. movl %ebp, SAVE_EBP
  53. shrl %cl, %eax C d without twos
  54. movl %eax, %edx
  55. shrl %eax C d/2 without twos
  56. movl %edx, PARAM_DIVISOR
  57. andl $127, %eax
  58. ifdef(`PIC',`
  59. LEA( binvert_limb_table, %ebp)
  60. movzbl (%eax,%ebp), %ebp C inv 8 bits
  61. ',`
  62. movzbl binvert_limb_table(%eax), %ebp C inv 8 bits
  63. ')
  64. leal (%ebp,%ebp), %eax C 2*inv
  65. imull %ebp, %ebp C inv*inv
  66. movl %edi, SAVE_EDI
  67. movl PARAM_DST, %edi
  68. leal (%esi,%ebx,4), %esi C src end
  69. imull PARAM_DIVISOR, %ebp C inv*inv*d
  70. subl %ebp, %eax C inv = 2*inv - inv*inv*d
  71. leal (%eax,%eax), %ebp C 2*inv
  72. imull %eax, %eax C inv*inv
  73. leal (%edi,%ebx,4), %edi C dst end
  74. negl %ebx C -size
  75. movl %edi, PARAM_DST
  76. imull PARAM_DIVISOR, %eax C inv*inv*d
  77. subl %eax, %ebp C inv = 2*inv - inv*inv*d
  78. ASSERT(e,` C d*inv == 1 mod 2^GMP_LIMB_BITS
  79. movl PARAM_DIVISOR, %eax
  80. imull %ebp, %eax
  81. cmpl $1, %eax')
  82. movl %ebp, VAR_INVERSE
  83. movl (%esi,%ebx,4), %eax C src[0]
  84. orl %ecx, %ecx
  85. jnz L(even)
  86. C ecx initial carry is zero
  87. jmp L(odd_entry)
  88. C The dependent chain here is
  89. C
  90. C subl %edx, %eax       1
  91. C imull %ebp, %eax       4
  92. C mull PARAM_DIVISOR    5
  93. C        ----
  94. C       total         10
  95. C
  96. C and this is the measured speed.  No special scheduling is necessary, out
  97. C of order execution hides the load latency.
  98. L(odd_top):
  99. C eax scratch (src limb)
  100. C ebx counter, limbs, negative
  101. C ecx carry bit
  102. C edx carry limb, high of last product
  103. C esi &src[size]
  104. C edi &dst[size]
  105. C ebp
  106. mull PARAM_DIVISOR
  107. movl (%esi,%ebx,4), %eax
  108. subl %ecx, %eax
  109. sbbl %ecx, %ecx
  110. subl %edx, %eax
  111. sbbl $0, %ecx
  112. L(odd_entry):
  113. imull VAR_INVERSE, %eax
  114. movl %eax, (%edi,%ebx,4)
  115. negl %ecx
  116. incl %ebx
  117. jnz L(odd_top)
  118. movl SAVE_ESI, %esi
  119. movl SAVE_EDI, %edi
  120. movl SAVE_EBP, %ebp
  121. movl SAVE_EBX, %ebx
  122. addl $STACK_SPACE, %esp
  123. ret
  124. L(even):
  125. C eax src[0]
  126. C ebx counter, limbs, negative
  127. C ecx shift
  128. C edx
  129. C esi
  130. C edi
  131. C ebp
  132. xorl %ebp, %ebp C initial carry bit
  133. xorl %edx, %edx C initial carry limb (for size==1)
  134. incl %ebx
  135. jz L(even_one)
  136. movl (%esi,%ebx,4), %edi C src[1]
  137. shrdl( %cl, %edi, %eax)
  138. jmp L(even_entry)
  139. L(even_top):
  140. C eax scratch
  141. C ebx counter, limbs, negative
  142. C ecx shift
  143. C edx scratch
  144. C esi &src[size]
  145. C edi &dst[size] and scratch
  146. C ebp carry bit
  147. movl (%esi,%ebx,4), %edi
  148. mull PARAM_DIVISOR
  149. movl -4(%esi,%ebx,4), %eax
  150. shrdl( %cl, %edi, %eax)
  151. subl %ebp, %eax
  152. sbbl %ebp, %ebp
  153. subl %edx, %eax
  154. sbbl $0, %ebp
  155. L(even_entry):
  156. imull VAR_INVERSE, %eax
  157. movl PARAM_DST, %edi
  158. negl %ebp
  159. movl %eax, -4(%edi,%ebx,4)
  160. incl %ebx
  161. jnz L(even_top)
  162. mull PARAM_DIVISOR
  163. movl -4(%esi), %eax
  164. L(even_one):
  165. shrl %cl, %eax
  166. movl SAVE_ESI, %esi
  167. subl %ebp, %eax
  168. movl SAVE_EBP, %ebp
  169. subl %edx, %eax
  170. movl SAVE_EBX, %ebx
  171. imull VAR_INVERSE, %eax
  172. movl %eax, -4(%edi)
  173. movl SAVE_EDI, %edi
  174. addl $STACK_SPACE, %esp
  175. ret
  176. EPILOGUE()