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

数学计算

开发平台:

Unix_Linux

  1. dnl  PowerPC-64/mode32 mpn_add_n -- Add two limb vectors of the same length > 0
  2. dnl  and store sum in a third limb vector.
  3. dnl  Copyright 1999, 2000, 2001, 2003, 2005 Free Software Foundation, Inc.
  4. dnl  This file is part of the GNU MP Library.
  5. dnl  The GNU MP Library is free software; you can redistribute it and/or modify
  6. dnl  it under the terms of the GNU Lesser General Public License as published
  7. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  8. dnl  your option) any later version.
  9. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  10. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. dnl  License for more details.
  13. dnl  You should have received a copy of the GNU Lesser General Public License
  14. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  15. include(`../config.m4')
  16. C cycles/limb
  17. C POWER3/PPC630:     ?
  18. C POWER4/PPC970:     4.25
  19. C INPUT PARAMETERS
  20. C rp r3
  21. C up r4
  22. C vp r5
  23. C n r6
  24. ASM_START()
  25. PROLOGUE(mpn_add_n)
  26. mtctr r6 C copy size into CTR
  27. addic r0, r0, 0 C clear cy
  28. ld r8, 0(r4) C load least significant s1 limb
  29. ld r0, 0(r5) C load least significant s2 limb
  30. addi r3, r3, -8 C offset res_ptr, it's updated before it's used
  31. bdz L(end) C If done, skip loop
  32. L(oop): ld r9, 8(r4) C load s1 limb
  33. ld r10, 8(r5) C load s2 limb
  34. adde r7, r0, r8 C add limbs with cy, set cy
  35. srdi r6, r0, 32
  36. srdi r11, r8, 32
  37. adde r6, r6, r11 C add high limb parts, set cy
  38. std r7, 8(r3) C store result limb
  39. bdz L(exit) C decrement CTR and exit if done
  40. ldu r8, 16(r4) C load s1 limb and update s1_ptr
  41. ldu r0, 16(r5) C load s2 limb and update s2_ptr
  42. adde r7, r10, r9 C add limbs with cy, set cy
  43. srdi r6, r10, 32
  44. srdi r11, r9, 32
  45. adde r6, r6, r11 C add high limb parts, set cy
  46. stdu r7, 16(r3) C store result limb and update res_ptr
  47. bdnz L(oop) C decrement CTR and loop back
  48. L(end): adde r7, r0, r8
  49. srdi r6, r0, 32
  50. srdi r11, r8, 32
  51. adde r6, r6, r11 C add limbs with cy, set cy
  52. std r7, 8(r3) C store ultimate result limb
  53. li r3, 0 C load cy into ...
  54. addze r4, r3 C ... return value register
  55. blr
  56. L(exit): adde r7, r10, r9
  57. srdi r6, r10, 32
  58. srdi r11, r9, 32
  59. adde r6, r6, r11 C add limbs with cy, set cy
  60. std r7, 16(r3)
  61. li r3, 0 C load cy into ...
  62. addze r4, r3 C ... return value register
  63. blr
  64. EPILOGUE()