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

数学计算

开发平台:

Unix_Linux

  1. dnl  ARM mpn_sub_n -- Subtract two limb vectors of the same length > 0 and
  2. dnl  store difference 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_sub_n)
  24. stmfd sp!, { r8, r9, lr }
  25. subs r12, r12, r12
  26. tst n, #1
  27. beq L(skip1)
  28. ldr r12, [up], #4
  29. ldr lr, [vp], #4
  30. subs r12, r12, lr
  31. str r12, [rp], #4
  32. L(skip1):
  33. tst n, #2
  34. beq L(skip2)
  35. ldmia up!, { r8, r9 }
  36. ldmia vp!, { r12, lr }
  37. sbcs r8, r8, r12
  38. sbcs r9, r9, lr
  39. stmia rp!, { r8, r9 }
  40. L(skip2):
  41. bics n, n, #3
  42. beq L(return)
  43. stmfd sp!, { r4, r5, r6, r7 }
  44. L(sub_n_loop):
  45. ldmia up!, { r4, r5, r6, r7 }
  46. ldmia vp!, { r8, r9, r12, lr }
  47. sbcs r4, r4, r8
  48. ldr r8, [rp, #12] C cache allocate
  49. sbcs r5, r5, r9
  50. sbcs r6, r6, r12
  51. sbcs r7, r7, lr
  52. stmia rp!, { r4, r5, r6, r7 }
  53. sub n, n, #4
  54. teq n, #0
  55. bne L(sub_n_loop)
  56. ldmfd sp!, { r4, r5, r6, r7 }
  57. L(return):
  58. sbc r0, r0, r0
  59. and r0, r0, #1
  60. ldmfd sp!, { r8, r9, pc }
  61. EPILOGUE(mpn_sub_n)