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

数学计算

开发平台:

Unix_Linux

  1. dnl  IBM POWER mpn_add_n -- Add two limb vectors of equal, non-zero length.
  2. dnl  Copyright 1992, 1994, 1995, 1996, 1999, 2000, 2001, 2005 Free Software
  3. dnl  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. dnl  INPUT PARAMETERS
  16. dnl  res_ptr r3
  17. dnl  s1_ptr r4
  18. dnl  s2_ptr r5
  19. dnl  size r6
  20. include(`../config.m4')
  21. ASM_START()
  22. PROLOGUE(mpn_add_n)
  23. andil. 10,6,1 C odd or even number of limbs?
  24. l 8,0(4) C load least significant s1 limb
  25. l 0,0(5) C load least significant s2 limb
  26. cal 3,-4(3) C offset res_ptr, it's updated before it's used
  27. sri 10,6,1 C count for unrolled loop
  28. a 7,0,8 C add least significant limbs, set cy
  29. mtctr 10 C copy count into CTR
  30. beq 0,Leven C branch if even # of limbs (# of limbs >= 2)
  31. C We have an odd # of limbs.  Add the first limbs separately.
  32. cmpi 1,10,0 C is count for unrolled loop zero?
  33. bc 4,6,L1 C bne cr1,L1 (misassembled by gas)
  34. st 7,4(3)
  35. aze 3,10 C use the fact that r10 is zero...
  36. br C return
  37. C We added least significant limbs.  Now reload the next limbs to enter loop.
  38. L1: lu 8,4(4) C load s1 limb and update s1_ptr
  39. lu 0,4(5) C load s2 limb and update s2_ptr
  40. stu 7,4(3)
  41. ae 7,0,8 C add limbs, set cy
  42. Leven: lu 9,4(4) C load s1 limb and update s1_ptr
  43. lu 10,4(5) C load s2 limb and update s2_ptr
  44. bdz Lend C If done, skip loop
  45. Loop: lu 8,4(4) C load s1 limb and update s1_ptr
  46. lu 0,4(5) C load s2 limb and update s2_ptr
  47. ae 11,10,9 C add previous limbs with cy, set cy
  48. stu 7,4(3) C
  49. lu 9,4(4) C load s1 limb and update s1_ptr
  50. lu 10,4(5) C load s2 limb and update s2_ptr
  51. ae 7,0,8 C add previous limbs with cy, set cy
  52. stu 11,4(3) C
  53. bdn Loop C decrement CTR and loop back
  54. Lend: ae 11,10,9 C add limbs with cy, set cy
  55. st 7,4(3) C
  56. st 11,8(3) C
  57. lil 3,0 C load cy into ...
  58. aze 3,3 C ... return value register
  59. br
  60. EPILOGUE(mpn_add_n)