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

数学计算

开发平台:

Unix_Linux

  1. dnl  ARM mpn_add_n -- Add two limb vectors of the same length > 0 and store sum
  2. dnl  in a third limb vector.
  3. dnl  Contributed by Robert Harley.
  4. dnl  Copyright 1997, 2000, 2001 Free Software Foundation, Inc.
  5. dnl  This file is part of the GNU MP Library.
  6. dnl  The GNU MP Library is free software; you can redistribute it and/or modify
  7. dnl  it under the terms of the GNU Lesser General Public License as published
  8. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  9. dnl  your option) any later version.
  10. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  11. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  12. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  13. dnl  License for more details.
  14. dnl  You should have received a copy of the GNU Lesser General Public License
  15. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  16. include(`../config.m4')
  17. C This code runs at 5 cycles/limb.
  18. define(`rp',`r0')
  19. define(`up',`r1')
  20. define(`vp',`r2')
  21. define(`n',`r3')
  22. ASM_START()
  23. PROLOGUE(mpn_add_n)
  24. stmfd sp!, { r8, r9, lr }
  25. movs n, n, lsr #1
  26. bcc L(skip1)
  27. ldr r12, [up], #4
  28. ldr lr, [vp], #4
  29. adds r12, r12, lr
  30. str r12, [rp], #4
  31. L(skip1):
  32. tst n, #1
  33. beq L(skip2)
  34. ldmia up!, { r8, r9 }
  35. ldmia vp!, { r12, lr }
  36. adcs r8, r8, r12
  37. adcs r9, r9, lr
  38. stmia rp!, { r8, r9 }
  39. L(skip2):
  40. bics n, n, #1
  41. beq L(return)
  42. stmfd sp!, { r4, r5, r6, r7 }
  43. L(add_n_loop):
  44. ldmia up!, { r4, r5, r6, r7 }
  45. ldmia vp!, { r8, r9, r12, lr }
  46. adcs r4, r4, r8
  47. ldr r8, [rp, #12] C cache allocate
  48. adcs r5, r5, r9
  49. adcs r6, r6, r12
  50. adcs r7, r7, lr
  51. stmia rp!, { r4, r5, r6, r7 }
  52. sub n, n, #2
  53. teq n, #0
  54. bne L(add_n_loop)
  55. ldmfd sp!, { r4, r5, r6, r7 }
  56. L(return):
  57. adc r0, n, #0
  58. ldmfd sp!, { r8, r9, pc }
  59. EPILOGUE(mpn_add_n)