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

数学计算

开发平台:

Unix_Linux

  1. dnl  x86-64 mpn_lshift optimized for Pentium 4.
  2. dnl  Copyright 2003, 2005, 2007, 2008 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:  2.5
  21. C K10:  ?
  22. C P4:  3.29
  23. C P6-15 (Core2): 2.1 (fluctuates, presumably cache related)
  24. C P6-28 (Atom): 14.3
  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(32)
  33. PROLOGUE(mpn_lshift)
  34. mov -8(up,n,8), %rax
  35. movd %ecx, %mm4
  36. neg %ecx C put rsh count in cl
  37. and $63, %ecx
  38. movd %ecx, %mm5
  39. lea 1(n), %r8d
  40. shr %cl, %rax C function return value
  41. and $3, %r8d
  42. je L(rol) C jump for n = 3, 7, 11, ...
  43. dec %r8d
  44. jne L(1)
  45. C n = 4, 8, 12, ...
  46. movq -8(up,n,8), %mm2
  47. psllq %mm4, %mm2
  48. movq -16(up,n,8), %mm0
  49. psrlq %mm5, %mm0
  50. por %mm0, %mm2
  51. movq %mm2, -8(rp,n,8)
  52. dec n
  53. jmp L(rol)
  54. L(1): dec %r8d
  55. je L(1x) C jump for n = 1, 5, 9, 13, ...
  56. C n = 2, 6, 10, 16, ...
  57. movq -8(up,n,8), %mm2
  58. psllq %mm4, %mm2
  59. movq -16(up,n,8), %mm0
  60. psrlq %mm5, %mm0
  61. por %mm0, %mm2
  62. movq %mm2, -8(rp,n,8)
  63. dec n
  64. L(1x):
  65. cmp $1, n
  66. je L(ast)
  67. movq -8(up,n,8), %mm2
  68. psllq %mm4, %mm2
  69. movq -16(up,n,8), %mm3
  70. psllq %mm4, %mm3
  71. movq -16(up,n,8), %mm0
  72. movq -24(up,n,8), %mm1
  73. psrlq %mm5, %mm0
  74. por %mm0, %mm2
  75. psrlq %mm5, %mm1
  76. por %mm1, %mm3
  77. movq %mm2, -8(rp,n,8)
  78. movq %mm3, -16(rp,n,8)
  79. sub $2, n
  80. L(rol): movq -8(up,n,8), %mm2
  81. psllq %mm4, %mm2
  82. movq -16(up,n,8), %mm3
  83. psllq %mm4, %mm3
  84. sub $4, n C       4
  85. jb L(end) C       2
  86. ALIGN(32)
  87. L(top):
  88. C finish stuff from lsh block
  89. movq 16(up,n,8), %mm0
  90. movq 8(up,n,8), %mm1
  91. psrlq %mm5, %mm0
  92. por %mm0, %mm2
  93. psrlq %mm5, %mm1
  94. movq (up,n,8), %mm0
  95. por %mm1, %mm3
  96. movq -8(up,n,8), %mm1
  97. movq %mm2, 24(rp,n,8)
  98. movq %mm3, 16(rp,n,8)
  99. C start two new rsh
  100. psrlq %mm5, %mm0
  101. psrlq %mm5, %mm1
  102. C finish stuff from rsh block
  103. movq 8(up,n,8), %mm2
  104. movq (up,n,8), %mm3
  105. psllq %mm4, %mm2
  106. por %mm2, %mm0
  107. psllq %mm4, %mm3
  108. movq -8(up,n,8), %mm2
  109. por %mm3, %mm1
  110. movq -16(up,n,8), %mm3
  111. movq %mm0, 8(rp,n,8)
  112. movq %mm1, (rp,n,8)
  113. C start two new lsh
  114. sub $4, n
  115. psllq %mm4, %mm2
  116. psllq %mm4, %mm3
  117. jae L(top) C       2
  118. L(end):
  119. movq 16(up,n,8), %mm0
  120. psrlq %mm5, %mm0
  121. por %mm0, %mm2
  122. movq 8(up,n,8), %mm1
  123. psrlq %mm5, %mm1
  124. por %mm1, %mm3
  125. movq %mm2, 24(rp,n,8)
  126. movq %mm3, 16(rp,n,8)
  127. L(ast): movq (up), %mm2
  128. psllq %mm4, %mm2
  129. movq %mm2, (rp)
  130. emms
  131. ret
  132. EPILOGUE()