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

数学计算

开发平台:

Unix_Linux

  1. dnl  AMD64 mpn_addlsh2_n and mpn_rsblsh2_n.  R = 2*V +- U.
  2. dnl  ("rsb" means reversed subtract, name mandated by mpn_sublsh2_n which
  3. dnl  subtacts the shifted operand from the unshifted operand.)
  4. dnl  Copyright 2009 Free Software Foundation, Inc.
  5. dnl  This file is part of the GNU MP Library.
  6. dnl  The GNU MP Library is free software; you can redistribute it and/or modify
  7. dnl  it under the terms of the GNU Lesser General Public License as published
  8. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  9. dnl  your option) any later version.
  10. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  11. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  12. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  13. dnl  License for more details.
  14. dnl  You should have received a copy of the GNU Lesser General Public License
  15. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  16. include(`../config.m4')
  17. C      cycles/limb
  18. C K8,K9:  2
  19. C K10:  2
  20. C P4:  ?
  21. C P6 core2:   3
  22. C P6 corei7:  2.75
  23. C P6 atom:  ?
  24. C INPUT PARAMETERS
  25. define(`rp', `%rdi')
  26. define(`up', `%rsi')
  27. define(`vp', `%rdx')
  28. define(`n', `%rcx')
  29. ifdef(`OPERATION_addlsh2_n',`
  30.   define(ADDSUB,        `add')
  31.   define(ADCSBB,       `adc')
  32.   define(func, mpn_addlsh2_n)')
  33. ifdef(`OPERATION_rsblsh2_n',`
  34.   define(ADDSUB,        `sub')
  35.   define(ADCSBB,       `sbb')
  36.   define(func, mpn_rsblsh2_n)')
  37. MULFUNC_PROLOGUE(mpn_addlsh2_n mpn_rsblsh2_n)
  38. ASM_START()
  39. TEXT
  40. ALIGN(16)
  41. PROLOGUE(func)
  42. push %r12
  43. push %r13
  44. push %r14
  45. push %r15
  46. mov (vp), %r8
  47. lea (,%r8,4), %r12
  48. shr $62, %r8
  49. mov R32(n), R32(%rax)
  50. lea (rp,n,8), rp
  51. lea (up,n,8), up
  52. lea (vp,n,8), vp
  53. neg n
  54. and $3, R8(%rax)
  55. je L(b00)
  56. cmp $2, R8(%rax)
  57. jc L(b01)
  58. je L(b10)
  59. L(b11): mov 8(vp,n,8), %r10
  60. lea (%r8,%r10,4), %r14
  61. shr $62, %r10
  62. mov 16(vp,n,8), %r11
  63. lea (%r10,%r11,4), %r15
  64. shr $62, %r11
  65. ADDSUB (up,n,8), %r12
  66. ADCSBB 8(up,n,8), %r14
  67. ADCSBB 16(up,n,8), %r15
  68. sbb R32(%rax), R32(%rax)   C save carry for next
  69. mov %r12, (rp,n,8)
  70. mov %r14, 8(rp,n,8)
  71. mov %r15, 16(rp,n,8)
  72. add $3, n
  73. js L(top)
  74. jmp L(end)
  75. L(b01): mov %r8, %r11
  76. ADDSUB (up,n,8), %r12
  77. sbb R32(%rax), R32(%rax)   C save carry for next
  78. mov %r12, (rp,n,8)
  79. add $1, n
  80. js L(top)
  81. jmp L(end)
  82. L(b10): mov 8(vp,n,8), %r11
  83. lea (%r8,%r11,4), %r15
  84. shr $62, %r11
  85. ADDSUB (up,n,8), %r12
  86. ADCSBB 8(up,n,8), %r15
  87. sbb R32(%rax), R32(%rax)   C save carry for next
  88. mov %r12, (rp,n,8)
  89. mov %r15, 8(rp,n,8)
  90. add $2, n
  91. js L(top)
  92. jmp L(end)
  93. L(b00): mov 8(vp,n,8), %r9
  94. mov 16(vp,n,8), %r10
  95. jmp L(e00)
  96. ALIGN(16)
  97. L(top): mov 16(vp,n,8), %r10
  98. mov (vp,n,8), %r8
  99. mov 8(vp,n,8), %r9
  100. lea (%r11,%r8,4), %r12
  101. shr $62, %r8
  102. L(e00): lea (%r8,%r9,4), %r13
  103. shr $62, %r9
  104. mov 24(vp,n,8), %r11
  105. lea (%r9,%r10,4), %r14
  106. shr $62, %r10
  107. lea (%r10,%r11,4), %r15
  108. shr $62, %r11
  109. add R32(%rax), R32(%rax)   C restore carry
  110. ADCSBB (up,n,8), %r12
  111. ADCSBB 8(up,n,8), %r13
  112. ADCSBB 16(up,n,8), %r14
  113. ADCSBB 24(up,n,8), %r15
  114. mov %r12, (rp,n,8)
  115. mov %r13, 8(rp,n,8)
  116. mov %r14, 16(rp,n,8)
  117. sbb R32(%rax), R32(%rax)   C save carry for next
  118. mov %r15, 24(rp,n,8)
  119. add $4, n
  120. js L(top)
  121. L(end):
  122. ifdef(`OPERATION_addlsh2_n',`
  123. sub R32(%r11), R32(%rax)
  124. neg R32(%rax)')
  125. ifdef(`OPERATION_rsblsh2_n',`
  126. add R32(%r11), R32(%rax)
  127. movslq R32(%rax), %rax')
  128. pop %r15
  129. pop %r14
  130. pop %r13
  131. pop %r12
  132. ret
  133. EPILOGUE()