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

数学计算

开发平台:

Unix_Linux

  1. dnl  x86 mpn_mul_1 (for 386, 486, and Pentium Pro) -- Multiply a limb vector
  2. dnl  with a limb and store the result in a second limb vector.
  3. dnl  Copyright 1992, 1994, 1997, 1998, 1999, 2000, 2001, 2002, 2005 Free
  4. dnl  Software Foundation, Inc.
  5. dnl
  6. dnl  This file is part of the GNU MP Library.
  7. dnl
  8. dnl  The GNU MP Library is free software; you can redistribute it and/or
  9. dnl  modify it under the terms of the GNU Lesser General Public License as
  10. dnl  published by the Free Software Foundation; either version 3 of the
  11. dnl  License, or (at your option) any later version.
  12. dnl
  13. dnl  The GNU MP Library is distributed in the hope that it will be useful,
  14. dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16. dnl  Lesser General Public License for more details.
  17. dnl
  18. dnl  You should have received a copy of the GNU Lesser General Public License
  19. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  20. include(`../config.m4')
  21. C                           cycles/limb
  22. C P5:                           12.5
  23. C P6 model 0-8,10-12)            5.5
  24. C P6 model 9  (Banias)
  25. C P6 model 13 (Dothan)           5.25
  26. C P4 model 0  (Willamette)      19.0
  27. C P4 model 1  (?)               19.0
  28. C P4 model 2  (Northwood)       19.0
  29. C P4 model 3  (Prescott)
  30. C P4 model 4  (Nocona)
  31. C K6:                           10.5
  32. C K7:                            4.5
  33. C K8:
  34. C mp_limb_t mpn_mul_1 (mp_ptr dst, mp_srcptr src, mp_size_t size,
  35. C                      mp_limb_t multiplier);
  36. defframe(PARAM_MULTIPLIER,16)
  37. defframe(PARAM_SIZE,      12)
  38. defframe(PARAM_SRC,       8)
  39. defframe(PARAM_DST,       4)
  40. TEXT
  41. ALIGN(8)
  42. PROLOGUE(mpn_mul_1)
  43. deflit(`FRAME',0)
  44. pushl %edi
  45. pushl %esi
  46. pushl %ebx
  47. pushl %ebp
  48. deflit(`FRAME',16)
  49. movl PARAM_DST,%edi
  50. movl PARAM_SRC,%esi
  51. movl PARAM_SIZE,%ecx
  52. xorl %ebx,%ebx
  53. andl $3,%ecx
  54. jz L(end0)
  55. L(oop0):
  56. movl (%esi),%eax
  57. mull PARAM_MULTIPLIER
  58. leal 4(%esi),%esi
  59. addl %ebx,%eax
  60. movl $0,%ebx
  61. adcl %ebx,%edx
  62. movl %eax,(%edi)
  63. movl %edx,%ebx C propagate carry into cylimb
  64. leal 4(%edi),%edi
  65. decl %ecx
  66. jnz L(oop0)
  67. L(end0):
  68. movl PARAM_SIZE,%ecx
  69. shrl $2,%ecx
  70. jz L(end)
  71. ALIGN(8)
  72. L(oop): movl (%esi),%eax
  73. mull PARAM_MULTIPLIER
  74. addl %eax,%ebx
  75. movl $0,%ebp
  76. adcl %edx,%ebp
  77. movl 4(%esi),%eax
  78. mull PARAM_MULTIPLIER
  79. movl %ebx,(%edi)
  80. addl %eax,%ebp C new lo + cylimb
  81. movl $0,%ebx
  82. adcl %edx,%ebx
  83. movl 8(%esi),%eax
  84. mull PARAM_MULTIPLIER
  85. movl %ebp,4(%edi)
  86. addl %eax,%ebx C new lo + cylimb
  87. movl $0,%ebp
  88. adcl %edx,%ebp
  89. movl 12(%esi),%eax
  90. mull PARAM_MULTIPLIER
  91. movl %ebx,8(%edi)
  92. addl %eax,%ebp C new lo + cylimb
  93. movl $0,%ebx
  94. adcl %edx,%ebx
  95. movl %ebp,12(%edi)
  96. leal 16(%esi),%esi
  97. leal 16(%edi),%edi
  98. decl %ecx
  99. jnz L(oop)
  100. L(end): movl %ebx,%eax
  101. popl %ebp
  102. popl %ebx
  103. popl %esi
  104. popl %edi
  105. ret
  106. EPILOGUE()