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

数学计算

开发平台:

Unix_Linux

  1. dnl  AMD K6 mpn_modexact_1_odd -- exact division style remainder.
  2. dnl  Copyright 2000, 2001, 2002, 2003, 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 K6: 10.0 cycles/limb
  20. C mp_limb_t mpn_modexact_1_odd (mp_srcptr src, mp_size_t size,
  21. C                               mp_limb_t divisor);
  22. C mp_limb_t mpn_modexact_1c_odd (mp_srcptr src, mp_size_t size,
  23. C                                mp_limb_t divisor, mp_limb_t carry);
  24. C
  25. C A special case for high<divisor at the end measured only about 4 cycles
  26. C faster, and so isn't used.
  27. C
  28. C A special case for size==1 using a divl rather than the inverse measured
  29. C only about 5 cycles faster, and so isn't used.  When size==1 and
  30. C high<divisor it can skip a division and be a full 24 cycles faster, but
  31. C this isn't an important case.
  32. defframe(PARAM_CARRY,  16)
  33. defframe(PARAM_DIVISOR,12)
  34. defframe(PARAM_SIZE,   8)
  35. defframe(PARAM_SRC,    4)
  36. TEXT
  37. ALIGN(32)
  38. PROLOGUE(mpn_modexact_1c_odd)
  39. deflit(`FRAME',0)
  40. movl PARAM_DIVISOR, %ecx
  41. pushl %esi FRAME_pushl()
  42. movl PARAM_CARRY, %edx
  43. jmp L(start_1c)
  44. EPILOGUE()
  45. ALIGN(16)
  46. PROLOGUE(mpn_modexact_1_odd)
  47. deflit(`FRAME',0)
  48. movl PARAM_DIVISOR, %ecx
  49. pushl %esi FRAME_pushl()
  50. xorl %edx, %edx
  51. L(start_1c):
  52. pushl %edi FRAME_pushl()
  53. shrl %ecx C d/2
  54. movl PARAM_DIVISOR, %esi
  55. andl $127, %ecx C d/2, 7 bits
  56. pushl %ebp FRAME_pushl()
  57. ifdef(`PIC',`
  58. LEA( binvert_limb_table, %edi)
  59. Zdisp( movzbl, 0,(%ecx,%edi), %edi) C inv 8 bits
  60. ',`
  61. movzbl binvert_limb_table(%ecx), %edi C inv 8 bits
  62. ')
  63. leal (%edi,%edi), %ecx C 2*inv
  64. imull %edi, %edi C inv*inv
  65. movl PARAM_SRC, %eax
  66. movl PARAM_SIZE, %ebp
  67. imull %esi, %edi C inv*inv*d
  68. pushl %ebx FRAME_pushl()
  69. leal (%eax,%ebp,4), %ebx C src end
  70. subl %edi, %ecx C inv = 2*inv - inv*inv*d
  71. leal (%ecx,%ecx), %edi C 2*inv
  72. imull %ecx, %ecx C inv*inv
  73. movl (%eax), %eax C src low limb
  74. negl %ebp C -size
  75. imull %esi, %ecx C inv*inv*d
  76. subl %ecx, %edi C inv = 2*inv - inv*inv*d
  77. ASSERT(e,` C d*inv == 1 mod 2^GMP_LIMB_BITS
  78. pushl %eax
  79. movl %esi, %eax
  80. imull %edi, %eax
  81. cmpl $1, %eax
  82. popl %eax')
  83. jmp L(entry)
  84. C Rotating the mul to the top of the loop saves 1 cycle, presumably by
  85. C hiding the loop control under the imul latency.
  86. C
  87. C The run time is 10 cycles, but decoding is only 9 (and the dependent chain
  88. C only 8).  It's not clear how to get down to 9 cycles.
  89. C
  90. C The xor and rcl to handle the carry bit could be an sbb instead, with the
  91. C the carry bit add becoming a sub, but that doesn't save anything.
  92. L(top):
  93. C eax (low product)
  94. C ebx src end
  95. C ecx carry bit, 0 or 1
  96. C edx (high product, being carry limb)
  97. C esi divisor
  98. C edi inverse
  99. C ebp counter, limbs, negative
  100. mull %esi
  101. movl (%ebx,%ebp,4), %eax
  102. addl %ecx, %edx C apply carry bit to carry limb
  103. L(entry):
  104. xorl %ecx, %ecx
  105. subl %edx, %eax C apply carry limb
  106. rcll %ecx
  107. imull %edi, %eax
  108. incl %ebp
  109. jnz L(top)
  110. popl %ebx
  111. popl %ebp
  112. mull %esi
  113. popl %edi
  114. popl %esi
  115. leal (%ecx,%edx), %eax
  116. ret
  117. EPILOGUE()