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

数学计算

开发平台:

Unix_Linux

  1. dnl  AMD64 mpn_add_n, mpn_sub_n
  2. dnl  Copyright 2003, 2004, 2005, 2007, 2008 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:  1.5
  17. C K10:  1.5
  18. C P4:  ?
  19. C P6 core2:   4.9
  20. C P6 corei7:
  21. C P6 atom:  4
  22. C The inner loop of this code is the result of running a code generation and
  23. C optimization tool suite written by David Harvey and Torbjorn Granlund.
  24. C INPUT PARAMETERS
  25. define(`rp', `%rdi')
  26. define(`up', `%rsi')
  27. define(`vp', `%rdx')
  28. define(`n', `%rcx')
  29. define(`cy', `%r8') C (only for mpn_add_nc)
  30. ifdef(`OPERATION_add_n', `
  31. define(ADCSBB,       adc)
  32. define(func,       mpn_add_n)
  33. define(func_nc,       mpn_add_nc)')
  34. ifdef(`OPERATION_sub_n', `
  35. define(ADCSBB,       sbb)
  36. define(func,       mpn_sub_n)
  37. define(func_nc,       mpn_sub_nc)')
  38. MULFUNC_PROLOGUE(mpn_add_n mpn_add_nc mpn_sub_n mpn_sub_nc)
  39. ASM_START()
  40. TEXT
  41. ALIGN(16)
  42. PROLOGUE(func_nc)
  43. mov R32(n), R32(%rax)
  44. and $3, R32(%rax)
  45. shr $2, n
  46. bt $0, %r8 C cy flag <- carry parameter
  47. jz L(1)
  48. jmp L(ent)
  49. EPILOGUE()
  50. ALIGN(16)
  51. PROLOGUE(func)
  52. mov R32(n), R32(%rax)
  53. shr $2, n
  54. jz L(0)
  55. and $3, R32(%rax)
  56. L(ent): mov (up), %r8
  57. mov 8(up), %r9
  58. dec n
  59. jmp L(mid)
  60. ALIGN(16)
  61. L(top): ADCSBB (vp), %r8
  62. ADCSBB 8(vp), %r9
  63. ADCSBB 16(vp), %r10
  64. ADCSBB 24(vp), %r11
  65. mov %r8, (rp)
  66. lea 32(up), up
  67. mov %r9, 8(rp)
  68. mov %r10, 16(rp)
  69. dec n
  70. mov %r11, 24(rp)
  71. lea 32(vp), vp
  72. mov (up), %r8
  73. mov 8(up), %r9
  74. lea 32(rp), rp
  75. L(mid): mov 16(up), %r10
  76. mov 24(up), %r11
  77. jnz L(top)
  78. L(end): lea 32(up), up
  79. ADCSBB (vp), %r8
  80. ADCSBB 8(vp), %r9
  81. ADCSBB 16(vp), %r10
  82. ADCSBB 24(vp), %r11
  83. lea 32(vp), vp
  84. mov %r8, (rp)
  85. mov %r9, 8(rp)
  86. mov %r10, 16(rp)
  87. mov %r11, 24(rp)
  88. lea 32(rp), rp
  89. inc R32(%rax)
  90. dec R32(%rax)
  91. jnz L(1)
  92. adc %eax, %eax
  93. ret
  94. L(0): test R32(%rax), R32(%rax)
  95. L(1): dec R32(%rax)
  96. mov (up), %r8
  97. jnz L(2)
  98. ADCSBB (vp), %r8
  99. mov %r8, (rp)
  100. adc %eax, %eax
  101. ret
  102. L(2): dec R32(%rax)
  103. mov 8(up), %r9
  104. jnz L(3)
  105. ADCSBB (vp), %r8
  106. ADCSBB 8(vp), %r9
  107. mov %r8, (rp)
  108. mov %r9, 8(rp)
  109. adc %eax, %eax
  110. ret
  111. L(3): mov 16(up), %r10
  112. ADCSBB (vp), %r8
  113. ADCSBB 8(vp), %r9
  114. ADCSBB 16(vp), %r10
  115. mov %r8, (rp)
  116. mov %r9, 8(rp)
  117. mov %r10, 16(rp)
  118. setc %al
  119. ret
  120. EPILOGUE()