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.
  3. dnl  Copyright 1992, 1994, 2000, 2001, 2002 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 INPUT PARAMETERS
  17. C res_ptr gr26
  18. C s1_ptr gr25
  19. C s2_ptr gr24
  20. C size gr23
  21. C One might want to unroll this as for other processors, but it turns out that
  22. C the data cache contention after a store makes such unrolling useless.  We
  23. C can't come under 5 cycles/limb anyway.
  24. ASM_START()
  25. PROLOGUE(mpn_add_n)
  26. ldws,ma 4(0,%r25),%r20
  27. ldws,ma 4(0,%r24),%r19
  28. addib,= -1,%r23,L(end) C check for (SIZE == 1)
  29.  add %r20,%r19,%r28 C add first limbs ignoring cy
  30. LDEF(loop)
  31. ldws,ma 4(0,%r25),%r20
  32. ldws,ma 4(0,%r24),%r19
  33. stws,ma %r28,4(0,%r26)
  34. addib,<> -1,%r23,L(loop)
  35.  addc %r20,%r19,%r28
  36. LDEF(end)
  37. stws %r28,0(0,%r26)
  38. bv 0(%r2)
  39.  addc %r0,%r0,%r28
  40. EPILOGUE()