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

数学计算

开发平台:

Unix_Linux

  1. dnl  ARM mpn_copyd.
  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_copyd)
  21. mov r12, n, lsl #2
  22. sub r12, r12, #4
  23. add rp, rp, r12 C make rp point at last limb
  24. add up, up, r12 C make up point at last limb
  25. tst n, #1
  26. beq L(skip1)
  27. ldr r3, [up], #-4
  28. str r3, [rp], #-4
  29. L(skip1):
  30. tst n, #2
  31. beq L(skip2)
  32. ldmda up!, { r3, r12 } C load 2 limbs
  33. stmda rp!, { r3, r12 } C store 2 limbs
  34. L(skip2):
  35. bics n, n, #3
  36. beq L(return)
  37. stmfd sp!, { r7, r8, r9 } C save regs on stack
  38. L(loop):
  39. ldmda up!, { r3, r8, r9, r12 } C load 4 limbs
  40. ldr r7, [rp, #-12] C cache allocate
  41. subs n, n, #4
  42. stmda rp!, { r3, r8, r9, r12 } C store 4 limbs
  43. bne L(loop)
  44. ldmfd sp!, { r7, r8, r9 } C restore regs from stack
  45. L(return):
  46. mov pc, lr
  47. EPILOGUE(mpn_copyd)