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

数学计算

开发平台:

Unix_Linux

  1. dnl  Intel Pentium mpn_mul_2 -- mpn by 2-limb multiplication.
  2. dnl  Copyright 2001, 2002 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 P5: 24.0 cycles/limb
  20. C mp_limb_t mpn_mul_2 (mp_ptr dst, mp_srcptr src, mp_size_t size,
  21. C                      mp_srcptr mult);
  22. C
  23. C At 24 c/l this is only 2 cycles faster than a separate mul_1 and addmul_1,
  24. C but has the advantage of making just one pass over the operands.
  25. C
  26. C There's not enough registers to use PARAM_MULT directly, so the multiplier
  27. C limbs are transferred to local variables on the stack.
  28. defframe(PARAM_MULT, 16)
  29. defframe(PARAM_SIZE, 12)
  30. defframe(PARAM_SRC,   8)
  31. defframe(PARAM_DST,   4)
  32. dnl  re-use parameter space
  33. define(VAR_MULT_LOW, `PARAM_SRC')
  34. define(VAR_MULT_HIGH,`PARAM_DST')
  35. TEXT
  36. ALIGN(8)
  37. PROLOGUE(mpn_mul_2)
  38. deflit(`FRAME',0)
  39. pushl %esi FRAME_pushl()
  40. pushl %edi FRAME_pushl()
  41. movl PARAM_SRC, %esi
  42. movl PARAM_DST, %edi
  43. movl PARAM_MULT, %eax
  44. movl PARAM_SIZE, %ecx
  45. movl 4(%eax), %edx C mult high
  46. movl (%eax), %eax C mult low
  47. movl %eax, VAR_MULT_LOW
  48. movl %edx, VAR_MULT_HIGH
  49. pushl %ebx FRAME_pushl()
  50. pushl %ebp FRAME_pushl()
  51. mull (%esi) C src[0] * mult[0]
  52. movl %eax, %ebp C in case src==dst
  53. movl (%esi), %eax C src[0]
  54. movl %ebp, (%edi) C dst[0]
  55. movl %edx, %ebx C initial low carry
  56. xorl %ebp, %ebp C initial high carry
  57. leal (%edi,%ecx,4), %edi C dst end
  58. mull VAR_MULT_HIGH C src[0] * mult[1]
  59. subl $2, %ecx C size-2
  60. js L(done)
  61. leal 8(%esi,%ecx,4), %esi C &src[size]
  62. xorl $-1, %ecx C -(size-1)
  63. L(top):
  64. C eax low prod
  65. C ebx low carry
  66. C ecx counter, negative
  67. C edx high prod
  68. C esi src end
  69. C edi dst end
  70. C ebp high carry (0 or -1)
  71. andl $1, %ebp C 1 or 0
  72. addl %eax, %ebx
  73. adcl %edx, %ebp
  74. ASSERT(nc)
  75. movl (%esi,%ecx,4), %eax
  76. mull VAR_MULT_LOW
  77. addl %eax, %ebx C low carry
  78. movl (%esi,%ecx,4), %eax
  79. adcl %ebp, %edx C high carry
  80. movl %ebx, (%edi,%ecx,4)
  81. sbbl %ebp, %ebp C new high carry, -1 or 0
  82. movl %edx, %ebx C new low carry
  83. mull VAR_MULT_HIGH
  84. incl %ecx
  85. jnz L(top)
  86. L(done):
  87. andl $1, %ebp C 1 or 0
  88. addl %ebx, %eax
  89. adcl %ebp, %edx
  90. ASSERT(nc)
  91. movl %eax, (%edi) C store carry low
  92. movl %edx, %eax C return carry high
  93. popl %ebp
  94. popl %ebx
  95. popl %edi
  96. popl %esi
  97. ret
  98. EPILOGUE()