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

数学计算

开发平台:

Unix_Linux

  1. dnl  AMD K6 mpn_preinv_mod_1 -- mpn by 1 remainder, with pre-inverted divisor.
  2. dnl  Copyright 2000, 2002, 2003 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: 18.0 cycles/limb
  20. C mp_limb_t mpn_preinv_mod_1 (mp_srcptr src, mp_size_t size, mp_limb_t divisor,
  21. C                             mp_limb_t inverse);
  22. C
  23. C This code is only 2 c/l faster than a simple divl, but that's 10% so it's
  24. C considered worthwhile (just).
  25. defframe(PARAM_INVERSE,16)
  26. defframe(PARAM_DIVISOR,12)
  27. defframe(PARAM_SIZE,    8)
  28. defframe(PARAM_SRC,     4)
  29. TEXT
  30. ALIGN(32)
  31. PROLOGUE(mpn_preinv_mod_1)
  32. deflit(`FRAME',0)
  33. ASSERT(ae,`cmpl $1, PARAM_SIZE')
  34. ASSERT(nz,`testl $0x80000000, PARAM_DIVISOR')
  35. movl PARAM_SIZE, %ecx
  36. pushl %ebp FRAME_pushl()
  37. movl PARAM_SRC, %ebp
  38. pushl %edi FRAME_pushl()
  39. movl PARAM_DIVISOR, %eax
  40. pushl %esi FRAME_pushl()
  41. movl -4(%ebp,%ecx,4), %esi C src high limb
  42. pushl %ebx FRAME_pushl()
  43. movl %edx, %edi C first n2 to cancel
  44. subl %eax, %esi C first n1 = high-divisor
  45. decl %ecx
  46. jz L(done_sbbl)
  47. L(top):
  48. C eax scratch
  49. C ebx n10, nadj, q1
  50. C ecx counter, size to 1
  51. C edx scratch
  52. C esi n2
  53. C edi old high, for underflow test
  54. C ebp src
  55. sbbl %edx, %edi     C high n-(q1+1)*d, 0 or -1
  56. L(entry):
  57. andl PARAM_DIVISOR, %edi
  58. L(q1_ff_top):
  59. movl -4(%ebp,%ecx,4), %ebx
  60. addl %esi, %edi     C possible addback
  61. movl %ebx, %esi     C n10
  62. sarl $31, %ebx     C -n1 = 0 or -1
  63. movl %edi, %eax     C n2
  64. movl PARAM_INVERSE, %edx
  65. subl %ebx, %eax     C n2+n1
  66. mull %edx     C m*(n2+n1)
  67. andl PARAM_DIVISOR, %ebx C -n1 & d
  68. addl %esi, %ebx     C nadj = n10 + (-n1&d), ignoring overflow
  69. addl %ebx, %eax     C low m*(n2+n1) + nadj, giving carry flag
  70. leal 1(%edi), %ebx     C n2+1
  71. adcl %ebx, %edx     C 1+high(n2<<32+m*(n2+n1)+nadj) = q1+1
  72. movl PARAM_DIVISOR, %eax C d
  73. jz L(q1_ff)
  74. mull %edx     C (q1+1)*d
  75. subl %eax, %esi     C low  n-(q1+1)*d
  76. loop L(top)
  77. L(done_sbbl):
  78. sbbl %edx, %edi     C high n-(q1+1)*d, 0 or -1
  79. andl PARAM_DIVISOR, %edi
  80. L(done_esi_edi):
  81. popl %ebx
  82. leal (%esi,%edi), %eax
  83. popl %esi
  84. popl %edi
  85. popl %ebp
  86. ret
  87. C Special case for q1=0xFFFFFFFF, giving q=0xFFFFFFFF meaning the low dword
  88. C of q*d is simply -d and the remainder n-q*d = n10+d.  This is rarely
  89. C reached.
  90. L(q1_ff):
  91. movl PARAM_DIVISOR, %edi
  92. loop L(q1_ff_top)
  93. jmp L(done_esi_edi)
  94. EPILOGUE()