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

数学计算

开发平台:

Unix_Linux

  1. dnl  ARM mpn_copyi.
  2. dnl  Copyright 2003 Free Software Foundation, Inc.
  3. dnl  This file is part of the GNU MP Library.
  4. dnl  The GNU MP Library is free software; you can redistribute it and/or modify
  5. dnl  it under the terms of the GNU Lesser General Public License as published
  6. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  7. dnl  your option) any later version.
  8. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  9. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. dnl  License for more details.
  12. dnl  You should have received a copy of the GNU Lesser General Public License
  13. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  14. include(`../config.m4')
  15. C This runs at 3 cycles/limb in the StrongARM.
  16. define(`rp',`r0')
  17. define(`up',`r1')
  18. define(`n',`r2')
  19. ASM_START()
  20. PROLOGUE(mpn_copyi)
  21. tst n, #1
  22. beq L(skip1)
  23. ldr r3, [up], #4
  24. str r3, [rp], #4
  25. L(skip1):
  26. tst n, #2
  27. beq L(skip2)
  28. ldmia up!, { r3, r12 } C load 2 limbs
  29. stmia rp!, { r3, r12 } C store 2 limbs
  30. L(skip2):
  31. bics n, n, #3
  32. beq L(return)
  33. stmfd sp!, { r7, r8, r9 } C save regs on stack
  34. L(loop):
  35. ldmia up!, { r3, r8, r9, r12 } C load 4 limbs
  36. ldr r7, [rp, #12] C cache allocate
  37. subs n, n, #4
  38. stmia rp!, { r3, r8, r9, r12 } C store 4 limbs
  39. bne L(loop)
  40. ldmfd sp!, { r7, r8, r9 } C restore regs from stack
  41. L(return):
  42. mov pc, lr
  43. EPILOGUE(mpn_copyi)