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

数学计算

开发平台:

Unix_Linux

  1. dnl  PowerPC-64 mpn_rshift -- rp[] = up[] >> cnt
  2. dnl  Copyright 2003, 2005 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 POWER3/PPC630:     1.5
  17. C POWER4/PPC970:     3.0
  18. C INPUT PARAMETERS
  19. define(`rp',`r3')
  20. define(`up',`r4')
  21. define(`n',`r5')
  22. define(`cnt',`r6')
  23. define(`tnc',`r5')
  24. define(`v0',`r0')
  25. define(`v1',`r7')
  26. define(`u0',`r8')
  27. define(`u1',`r9')
  28. define(`h0',`r10')
  29. define(`h1',`r11')
  30. ASM_START()
  31. PROLOGUE(mpn_rshift)
  32. ifdef(`HAVE_ABI_mode32',
  33. ` rldicl n, n, 0, 32') C zero extend n
  34. mtctr n C copy n to count register
  35. addi rp, rp, -16
  36. subfic tnc, cnt, 64 C reverse shift count
  37. ld u0, 0(up)
  38. srd h0, u0, cnt
  39. sld r12, u0, tnc C return value
  40. bdz L(1) C jump for n = 1
  41. ld u1, 8(up)
  42. bdz L(2) C jump for n = 2
  43. ldu u0, 16(up)
  44. bdz L(end) C jump for n = 3
  45. L(oop): sld v1, u1, tnc
  46. srd h1, u1, cnt
  47. ld u1, 8(up)
  48. or h0, v1, h0
  49. stdu h0, 16(rp)
  50. bdz L(exit)
  51. sld v0, u0, tnc
  52. srd h0, u0, cnt
  53. ldu u0, 16(up)
  54. or h1, v0, h1
  55. std h1, 8(rp)
  56. bdnz L(oop)
  57. L(end): sld v1, u1, tnc
  58. srd h1, u1, cnt
  59. or h0, v1, h0
  60. stdu h0, 16(rp)
  61. sld v0, u0, tnc
  62. srd h0, u0, cnt
  63. or h1, v0, h1
  64. std h1, 8(rp)
  65. L(1): std h0, 16(rp)
  66. ifdef(`HAVE_ABI_mode32',
  67. ` srdi r3, r12, 32
  68. mr r4, r12
  69. ',` mr r3, r12
  70. ')
  71. blr
  72. L(exit): sld v0, u0, tnc
  73. srd h0, u0, cnt
  74. or h1, v0, h1
  75. std h1, 8(rp)
  76. L(2): sld v1, u1, tnc
  77. srd h1, u1, cnt
  78. or h0, v1, h0
  79. stdu h0, 16(rp)
  80. std h1, 8(rp)
  81. ifdef(`HAVE_ABI_mode32',
  82. ` srdi r3, r12, 32
  83. mr r4, r12
  84. ',` mr r3, r12
  85. ')
  86. blr
  87. EPILOGUE()