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

数学计算

开发平台:

Unix_Linux

  1. dnl  Generic x86 mpn_mod_34lsub1 -- mpn remainder modulo 2^24-1.
  2. dnl  Copyright 2000, 2001, 2002, 2004 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      cycles/limb
  20. C P5:     3.0
  21. C P6:     3.66
  22. C K6:     3.0
  23. C K7:     1.3
  24. C P4:     9
  25. C mp_limb_t mpn_mod_34lsub1 (mp_srcptr src, mp_size_t size)
  26. C
  27. defframe(PARAM_SIZE, 8)
  28. defframe(PARAM_SRC,  4)
  29. dnl  re-use parameter space
  30. define(SAVE_EBX, `PARAM_SRC')
  31. TEXT
  32. ALIGN(16)
  33. PROLOGUE(mpn_mod_34lsub1)
  34. deflit(`FRAME',0)
  35. movl PARAM_SIZE, %ecx
  36. movl PARAM_SRC, %edx
  37. subl $2, %ecx
  38. ja L(three_or_more)
  39. movl (%edx), %eax
  40. jb L(one)
  41. movl 4(%edx), %ecx
  42. movl %eax, %edx
  43. shrl $24, %eax C src[0] low
  44. andl $0xFFFFFF, %edx C src[0] high
  45. addl %edx, %eax
  46. movl %ecx, %edx
  47. andl $0xFFFF, %ecx
  48. shrl $16, %edx C src[1] high
  49. addl %edx, %eax
  50. shll $8, %ecx C src[1] low
  51. addl %ecx, %eax
  52. L(one):
  53. ret
  54. L(three_or_more):
  55. C eax
  56. C ebx
  57. C ecx size-2
  58. C edx src
  59. C esi
  60. C edi
  61. C ebp
  62. movl %ebx, SAVE_EBX C and arrange 16-byte loop alignment
  63. xorl %ebx, %ebx
  64. pushl %esi FRAME_pushl()
  65. xorl %esi, %esi
  66. pushl %edi FRAME_pushl()
  67. xorl %eax, %eax C and clear carry flag
  68. C offset 0x40 here
  69. L(top):
  70. C eax acc 0mod3
  71. C ebx acc 1mod3
  72. C ecx counter, limbs
  73. C edx src
  74. C esi acc 2mod3
  75. C edi
  76. C ebp
  77. leal 12(%edx), %edx
  78. leal -2(%ecx), %ecx
  79. adcl -12(%edx), %eax
  80. adcl -8(%edx), %ebx
  81. adcl -4(%edx), %esi
  82. decl %ecx
  83. jg L(top)
  84. C ecx is -2, -1 or 0 representing 0, 1 or 2 more limbs, respectively
  85. movl $0xFFFFFFFF, %edi
  86. incl %ecx
  87. js L(combine)
  88. adcl (%edx), %eax
  89. movl $0xFFFFFF00, %edi
  90. decl %ecx
  91. js L(combine)
  92. adcl 4(%edx), %ebx
  93. movl $0xFFFF0000, %edi
  94. L(combine):
  95. C eax acc 0mod3
  96. C ebx acc 1mod3
  97. C ecx
  98. C edx
  99. C esi acc 2mod3
  100. C edi mask
  101. C ebp
  102. sbbl %ecx, %ecx C carry
  103. movl %eax, %edx C 0mod3
  104. shrl $24, %eax C 0mod3 high
  105. andl %edi, %ecx C carry masked
  106. subl %ecx, %eax C apply carry
  107. movl %ebx, %edi C 1mod3
  108. shrl $16, %ebx C 1mod3 high
  109. andl $0x00FFFFFF, %edx C 0mod3 low
  110. addl %edx, %eax C apply 0mod3 low
  111. andl $0xFFFF, %edi
  112. shll $8, %edi C 1mod3 low
  113. addl %ebx, %eax C apply 1mod3 high
  114. addl %edi, %eax C apply 1mod3 low
  115. movl %esi, %edx C 2mod3
  116. shrl $8, %esi C 2mod3 high
  117. andl $0xFF, %edx C 2mod3 low
  118. shll $16, %edx C 2mod3 low
  119. addl %esi, %eax C apply 2mod3 high
  120. addl %edx, %eax C apply 2mod3 low
  121. popl %edi FRAME_popl()
  122. movl SAVE_EBX, %ebx
  123. popl %esi FRAME_popl()
  124. ret
  125. EPILOGUE()