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

数学计算

开发平台:

Unix_Linux

  1. dnl  x86-64 mpn_lshift optimized for "Core 2".
  2. dnl  Copyright 2007, 2009 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      cycles/limb
  20. C K8,K9:  4.25
  21. C K10:  4.25
  22. C P4: 14.7
  23. C P6 core2:  1.27
  24. C P6 corei7:  1.5
  25. C INPUT PARAMETERS
  26. define(`rp', `%rdi')
  27. define(`up', `%rsi')
  28. define(`n', `%rdx')
  29. define(`cnt', `%cl')
  30. ASM_START()
  31. TEXT
  32. ALIGN(16)
  33. PROLOGUE(mpn_lshift)
  34. lea -8(rp,n,8), rp
  35. lea -8(up,n,8), up
  36. mov %edx, %eax
  37. and $3, %eax
  38. jne L(nb00)
  39. L(b00): C n = 4, 8, 12, ...
  40. mov (up), %r10
  41. mov -8(up), %r11
  42. xor %eax, %eax
  43. shld %cl, %r10, %rax
  44. mov -16(up), %r8
  45. lea 24(rp), rp
  46. sub $4, n
  47. jmp L(00)
  48. L(nb00):C n = 1, 5, 9, ...
  49. cmp $2, %eax
  50. jae L(nb01)
  51. L(b01): mov (up), %r9
  52. xor %eax, %eax
  53. shld %cl, %r9, %rax
  54. sub $2, n
  55. jb L(le1)
  56. mov -8(up), %r10
  57. mov -16(up), %r11
  58. lea -8(up), up
  59. lea 16(rp), rp
  60. jmp L(01)
  61. L(le1): shl %cl, %r9
  62. mov %r9, (rp)
  63. ret
  64. L(nb01):C n = 2, 6, 10, ...
  65. jne L(b11)
  66. L(b10): mov (up), %r8
  67. mov -8(up), %r9
  68. xor %eax, %eax
  69. shld %cl, %r8, %rax
  70. sub $3, n
  71. jb L(le2)
  72. mov -16(up), %r10
  73. lea -16(up), up
  74. lea 8(rp), rp
  75. jmp L(10)
  76. L(le2): shld %cl, %r9, %r8
  77. mov %r8, (rp)
  78. shl %cl, %r9
  79. mov %r9, -8(rp)
  80. ret
  81. ALIGN(16) C performance critical!
  82. L(b11): C n = 3, 7, 11, ...
  83. mov (up), %r11
  84. mov -8(up), %r8
  85. xor %eax, %eax
  86. shld %cl, %r11, %rax
  87. mov -16(up), %r9
  88. lea -24(up), up
  89. sub $4, n
  90. jb L(end)
  91. ALIGN(16)
  92. L(top): shld %cl, %r8, %r11
  93. mov (up), %r10
  94. mov %r11, (rp)
  95. L(10): shld %cl, %r9, %r8
  96. mov -8(up), %r11
  97. mov %r8, -8(rp)
  98. L(01): shld %cl, %r10, %r9
  99. mov -16(up), %r8
  100. mov %r9, -16(rp)
  101. L(00): shld %cl, %r11, %r10
  102. mov -24(up), %r9
  103. mov %r10, -24(rp)
  104. add $-32, up
  105. lea -32(rp), rp
  106. sub $4, n
  107. jnc L(top)
  108. L(end): shld %cl, %r8, %r11
  109. mov %r11, (rp)
  110. shld %cl, %r9, %r8
  111. mov %r8, -8(rp)
  112. shl %cl, %r9
  113. mov %r9, -16(rp)
  114. ret
  115. EPILOGUE()