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

数学计算

开发平台:

Unix_Linux

  1. dnl  x86-64 mpn_addmul_1 and mpn_submul_1, optimized for "Core 2".
  2. dnl  Copyright 2003, 2004, 2005, 2007, 2008, 2009 Free Software Foundation, Inc.
  3. dnl  This file is part of the GNU MP Library.
  4. dnl  The GNU MP Library is free software; you can redistribute it and/or modify
  5. dnl  it under the terms of the GNU Lesser General Public License as published
  6. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  7. dnl  your option) any later version.
  8. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  9. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. dnl  License for more details.
  12. dnl  You should have received a copy of the GNU Lesser General Public License
  13. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  14. include(`../config.m4')
  15. C      cycles/limb
  16. C K8,K9:  4
  17. C K10:  4
  18. C P4:  ?
  19. C P6 core2:  4.3-4.5 (fluctuating)
  20. C P6 corei7:  5
  21. C INPUT PARAMETERS
  22. define(`rp', `%rdi')
  23. define(`up', `%rsi')
  24. define(`n', `%rdx')
  25. define(`v0', `%rcx')
  26. ifdef(`OPERATION_addmul_1',`
  27.       define(`ADDSUB',        `add')
  28.       define(`func',  `mpn_addmul_1')
  29. ')
  30. ifdef(`OPERATION_submul_1',`
  31.       define(`ADDSUB',        `sub')
  32.       define(`func',  `mpn_submul_1')
  33. ')
  34. MULFUNC_PROLOGUE(mpn_addmul_1 mpn_submul_1)
  35. ASM_START()
  36. TEXT
  37. ALIGN(16)
  38. PROLOGUE(func)
  39. push %rbx
  40. push %rbp
  41. lea (%rdx), %rbx
  42. neg %rbx
  43. mov (up), %rax
  44. mov (rp), %r10
  45. lea -16(rp,%rdx,8), rp
  46. lea (up,%rdx,8), up
  47. mul %rcx
  48. bt $0, R32(%rbx)
  49. jc L(odd)
  50. lea (%rax), %r11
  51. mov 8(up,%rbx,8), %rax
  52. lea (%rdx), %rbp
  53. mul %rcx
  54. add $2, %rbx
  55. jns L(n2)
  56. lea (%rax), %r8
  57. mov (up,%rbx,8), %rax
  58. lea (%rdx), %r9
  59. jmp L(mid)
  60. L(odd): add $1, %rbx
  61. jns L(n1)
  62. lea (%rax), %r8
  63. mov (up,%rbx,8), %rax
  64. lea (%rdx), %r9
  65. mul %rcx
  66. lea (%rax), %r11
  67. mov 8(up,%rbx,8), %rax
  68. lea (%rdx), %rbp
  69. jmp L(e)
  70. ALIGN(16)
  71. L(top): mul %rcx
  72. ADDSUB %r8, %r10
  73. lea (%rax), %r8
  74. mov (up,%rbx,8), %rax
  75. adc %r9, %r11
  76. mov %r10, -8(rp,%rbx,8)
  77. mov (rp,%rbx,8), %r10
  78. lea (%rdx), %r9
  79. adc $0, %rbp
  80. L(mid): mul %rcx
  81. ADDSUB %r11, %r10
  82. lea (%rax), %r11
  83. mov 8(up,%rbx,8), %rax
  84. adc %rbp, %r8
  85. mov %r10, (rp,%rbx,8)
  86. mov 8(rp,%rbx,8), %r10
  87. lea (%rdx), %rbp
  88. adc $0, %r9
  89. L(e): add $2, %rbx
  90. js L(top)
  91. mul %rcx
  92. ADDSUB %r8, %r10
  93. adc %r9, %r11
  94. mov %r10, -8(rp)
  95. adc $0, %rbp
  96. L(n2): mov (rp), %r10
  97. ADDSUB %r11, %r10
  98. adc %rbp, %rax
  99. mov %r10, (rp)
  100. adc $0, %rdx
  101. L(n1): mov 8(rp), %r10
  102. ADDSUB %rax, %r10
  103. mov %r10, 8(rp)
  104. mov R32(%rbx), R32(%rax) C zero rax
  105. adc %rdx, %rax
  106. pop %rbp
  107. pop %rbx
  108. ret
  109. EPILOGUE()