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

数学计算

开发平台:

Unix_Linux

  1. dnl  HP-PA mpn_add_n -- Add two limb vectors of the same length > 0 and store
  2. dnl  sum in a third limb vector.  Optimized for the PA7100, where is runs at
  3. dnl  4.25 cycles/limb.
  4. dnl  Copyright 1992, 1994, 2000, 2001, 2002, 2003 Free Software Foundation,
  5. dnl  Inc.
  6. dnl  This file is part of the GNU MP Library.
  7. dnl  The GNU MP Library is free software; you can redistribute it and/or modify
  8. dnl  it under the terms of the GNU Lesser General Public License as published
  9. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  10. dnl  your option) any later version.
  11. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  12. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  13. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  14. dnl  License for more details.
  15. dnl  You should have received a copy of the GNU Lesser General Public License
  16. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  17. include(`../config.m4')
  18. C INPUT PARAMETERS
  19. C res_ptr r26
  20. C s1_ptr r25
  21. C s2_ptr r24
  22. C size r23
  23. ASM_START()
  24. PROLOGUE(mpn_add_n)
  25. ldws,ma 4(0,%r25),%r20
  26. ldws,ma 4(0,%r24),%r19
  27. addib,<= -5,%r23,L(rest)
  28.  add %r20,%r19,%r28 C add first limbs ignoring cy
  29. LDEF(loop)
  30. ldws,ma 4(0,%r25),%r20
  31. ldws,ma 4(0,%r24),%r19
  32. stws,ma %r28,4(0,%r26)
  33. addc %r20,%r19,%r28
  34. ldws,ma 4(0,%r25),%r20
  35. ldws,ma 4(0,%r24),%r19
  36. stws,ma %r28,4(0,%r26)
  37. addc %r20,%r19,%r28
  38. ldws,ma 4(0,%r25),%r20
  39. ldws,ma 4(0,%r24),%r19
  40. stws,ma %r28,4(0,%r26)
  41. addc %r20,%r19,%r28
  42. ldws,ma 4(0,%r25),%r20
  43. ldws,ma 4(0,%r24),%r19
  44. stws,ma %r28,4(0,%r26)
  45. addib,> -4,%r23,L(loop)
  46. addc %r20,%r19,%r28
  47. LDEF(rest)
  48. addib,= 4,%r23,L(end)
  49. nop
  50. LDEF(eloop)
  51. ldws,ma 4(0,%r25),%r20
  52. ldws,ma 4(0,%r24),%r19
  53. stws,ma %r28,4(0,%r26)
  54. addib,> -1,%r23,L(eloop)
  55. addc %r20,%r19,%r28
  56. LDEF(end)
  57. stws %r28,0(0,%r26)
  58. bv 0(%r2)
  59.  addc %r0,%r0,%r28
  60. EPILOGUE()