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

数学计算

开发平台:

Unix_Linux

  1. dnl  PowerPC-64 mpn_rsh1add_n -- rp[] = (up[] + vp[]) >> 1
  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:     2 (1.5 c/l should be possible)
  17. C POWER4/PPC970:     4 (2.0 c/l should be possible)
  18. C INPUT PARAMETERS
  19. C rp r3
  20. C up r4
  21. C vp r5
  22. C n r6
  23. define(`rp',`r3')
  24. define(`up',`r4')
  25. define(`vp',`r5')
  26. define(`s0',`r6')
  27. define(`s1',`r7')
  28. define(`x',`r0')
  29. define(`u0',`r8')
  30. define(`u1',`r9')
  31. define(`v0',`r10')
  32. define(`v1',`r11')
  33. ASM_START()
  34. PROLOGUE(mpn_rsh1add_n)
  35. mtctr r6 C copy size to count register
  36. addi rp, rp, -8
  37. ld u1, 0(up)
  38. ld v1, 0(vp)
  39. addc x, v1, u1
  40. rldicl r12, x, 0, 63 C return value
  41. srdi s1, x, 1
  42. bdz L(1)
  43. ld u0, 8(up)
  44. ld v0, 8(vp)
  45. bdz L(end)
  46. L(oop): ldu u1, 16(up)
  47. ldu v1, 16(vp)
  48. adde x, v0, u0
  49. srdi s0, x, 1
  50. rldimi s1, x, 63, 0
  51. std s1, 8(rp)
  52. bdz L(exit)
  53. ld u0, 8(up)
  54. ld v0, 8(vp)
  55. adde x, v1, u1
  56. srdi s1, x, 1
  57. rldimi s0, x, 63, 0
  58. stdu s0, 16(rp)
  59. bdnz L(oop)
  60. L(end): adde x, v0, u0
  61. srdi s0, x, 1
  62. rldimi s1, x, 63, 0
  63. std s1, 8(rp)
  64. li x, 0
  65. addze x, x
  66. rldimi s0, x, 63, 0
  67. std s0, 16(rp)
  68. mr r3, r12
  69. blr
  70. L(exit): adde x, v1, u1
  71. srdi s1, x, 1
  72. rldimi s0, x, 63, 0
  73. stdu s0, 16(rp)
  74. L(1): li x, 0
  75. addze x, x
  76. rldimi s1, x, 63, 0
  77. std s1, 8(rp)
  78. mr r3, r12
  79. blr
  80. EPILOGUE()