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

数学计算

开发平台:

Unix_Linux

  1. dnl  PowerPC-64/mode32 mpn_sub_n -- Subtract two limb vectors of the same
  2. dnl  length and store difference 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_sub_n)
  26. mtctr r6 C copy size into CTR
  27. addic r0, r6, -1 C set 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. subfe r7, r0, r8 C subtract limbs with cy, set cy
  35. srdi r6, r0, 32
  36. srdi r11, r8, 32
  37. subfe r6, r6, r11
  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. subfe r7, r10, r9 C subtract limbs with cy, set cy
  43. srdi r6, r10, 32
  44. srdi r11, r9, 32
  45. subfe r6, r6, r11
  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): subfe r7, r0, r8
  49. srdi r6, r0, 32
  50. srdi r11, r8, 32
  51. subfe r6, r6, r11
  52. std r7, 8(r3) C store ultimate result limb
  53. subfe r3, r0, r0 C load !cy into ...
  54. subfic r4, r3, 0 C ... return value register
  55. li r3, 0 C zero extend return value
  56. blr
  57. L(exit): subfe r7, r10, r9
  58. srdi r6, r10, 32
  59. srdi r11, r9, 32
  60. subfe r6, r6, r11
  61. std r7, 16(r3)
  62. subfe r3, r0, r0 C load !cy into ...
  63. subfic r4, r3, 0 C ... return value register
  64. li r3, 0 C zero extend return value
  65. blr
  66. EPILOGUE()