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

数学计算

开发平台:

Unix_Linux

  1. dnl  Intel Pentium-4 mpn_modexact_1_odd -- mpn by limb exact 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 P4: 19.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. defframe(PARAM_CARRY,  16)
  26. defframe(PARAM_DIVISOR,12)
  27. defframe(PARAM_SIZE,   8)
  28. defframe(PARAM_SRC,    4)
  29. TEXT
  30. ALIGN(16)
  31. PROLOGUE(mpn_modexact_1c_odd)
  32. deflit(`FRAME',0)
  33. movd PARAM_CARRY, %mm1
  34. jmp L(start_1c)
  35. EPILOGUE()
  36. ALIGN(16)
  37. PROLOGUE(mpn_modexact_1_odd)
  38. deflit(`FRAME',0)
  39. pxor %mm1, %mm1 C carry limb
  40. L(start_1c):
  41. movl PARAM_DIVISOR, %eax
  42. movd PARAM_DIVISOR, %mm7
  43. shrl %eax
  44. andl $127, %eax C d/2, 7 bits
  45. ifdef(`PIC',`
  46. LEA( binvert_limb_table, %edx)
  47. movzbl (%eax,%edx), %eax C inv 8 bits
  48. ',`
  49. movzbl binvert_limb_table(%eax), %eax C inv 8 bits
  50. ')
  51. C
  52. movd %eax, %mm6 C inv
  53. movd %eax, %mm0 C inv
  54. pmuludq %mm6, %mm6 C inv*inv
  55. C
  56. pmuludq %mm7, %mm6 C inv*inv*d
  57. paddd %mm0, %mm0 C 2*inv
  58. C
  59. psubd %mm6, %mm0 C inv = 2*inv - inv*inv*d
  60. pxor %mm6, %mm6
  61. paddd %mm0, %mm6
  62. pmuludq %mm0, %mm0 C inv*inv
  63. C
  64. pmuludq %mm7, %mm0 C inv*inv*d
  65. paddd %mm6, %mm6 C 2*inv
  66. movl PARAM_SRC, %eax
  67. movl PARAM_SIZE, %ecx
  68. C
  69. psubd %mm0, %mm6 C inv = 2*inv - inv*inv*d
  70. ASSERT(e,` C expect d*inv == 1 mod 2^GMP_LIMB_BITS
  71. pushl %eax FRAME_pushl()
  72. movd %mm6, %eax
  73. imul PARAM_DIVISOR, %eax
  74. cmpl $1, %eax
  75. popl %eax FRAME_popl()')
  76. pxor %mm0, %mm0 C carry bit
  77. C The dependent chain here is as follows.
  78. C
  79. C         latency
  80. C psubq  s = (src-cbit) - climb    2
  81. C pmuludq  q = s*inverse             8
  82. C pmuludq  prod = q*divisor          8
  83. C psrlq  climb = high(prod)        2
  84. C                                   --
  85. C                                   20
  86. C
  87. C Yet the loop measures 19.0 c/l, so obviously there's something gained
  88. C there over a straight reading of the chip documentation.
  89. L(top):
  90. C eax src, incrementing
  91. C ebx
  92. C ecx counter, limbs
  93. C edx
  94. C
  95. C mm0 carry bit
  96. C mm1 carry limb
  97. C mm6 inverse
  98. C mm7 divisor
  99. movd (%eax), %mm2
  100. addl $4, %eax
  101. psubq %mm0, %mm2 C src - cbit
  102. psubq %mm1, %mm2 C src - cbit - climb
  103. movq %mm2, %mm0
  104. psrlq $63, %mm0 C new cbit
  105. pmuludq %mm6, %mm2 C s*inverse
  106. movq %mm7, %mm1
  107. pmuludq %mm2, %mm1 C q*divisor
  108. psrlq $32, %mm1 C new climb
  109. subl $1, %ecx
  110. jnz L(top)
  111. L(done):
  112. paddq %mm1, %mm0
  113. movd %mm0, %eax
  114. emms
  115. ret
  116. EPILOGUE()