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

数学计算

开发平台:

Unix_Linux

  1. dnl  PowerPC-64 mpn_addlsh1_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(`u0',`r8')
  29. define(`v0',`r10')
  30. define(`v1',`r11')
  31. ASM_START()
  32. PROLOGUE(mpn_addlsh1_n)
  33. mtctr r6 C copy n in ctr
  34. addic r31, r31, 0 C clear cy
  35. ld v0, 0(vp) C load v limb
  36. ld u0, 0(up) C load u limb
  37. addi up, up, -8 C update up
  38. addi rp, rp, -8 C update rp
  39. sldi s1, v0, 1
  40. bdz L(end) C If done, skip loop
  41. L(oop): ld v1, 8(vp) C load v limb
  42. adde s1, s1, u0 C add limbs with cy, set cy
  43. std s1, 8(rp) C store result limb
  44. srdi s0, v0, 63 C shift down previous v limb
  45. ldu u0, 16(up) C load u limb and update up
  46. rldimi s0, v1, 1, 0 C left shift v limb and merge with prev v limb
  47. bdz L(exit) C decrement ctr and exit if done
  48. ldu v0, 16(vp) C load v limb and update vp
  49. adde s0, s0, u0 C add limbs with cy, set cy
  50. stdu s0, 16(rp) C store result limb and update rp
  51. srdi s1, v1, 63 C shift down previous v limb
  52. ld u0, 8(up) C load u limb
  53. rldimi s1, v0, 1, 0 C left shift v limb and merge with prev v limb
  54. bdnz L(oop) C decrement ctr and loop back
  55. L(end): adde r7, s1, u0
  56. std r7, 8(rp) C store last result limb
  57. srdi r3, v0, 63
  58. addze r3, r3
  59. blr
  60. L(exit): adde r7, s0, u0
  61. std r7, 16(rp) C store last result limb
  62. srdi r3, v1, 63
  63. addze r3, r3
  64. blr
  65. EPILOGUE()