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

数学计算

开发平台:

Unix_Linux

  1. dnl  ARM mpn_submul_1 -- Multiply a limb vector with a limb and subtract the
  2. dnl  result from a second limb vector.
  3. dnl  Copyright 1998, 2000, 2001, 2003 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            cycles/limb
  17. C StrongARM:  7.75-9.75  (dependent on vl value)
  18. C XScale:        8-9     (dependent on vl value, estimated)
  19. define(`rp',`r0')
  20. define(`up',`r1')
  21. define(`n',`r2')
  22. define(`vl',`r3')
  23. define(`rl',`r12')
  24. define(`ul',`r6')
  25. define(`r',`lr')
  26. ASM_START()
  27. PROLOGUE(mpn_submul_1)
  28. stmfd sp!, { r4-r6, lr }
  29. subs r4, r0, r0 C clear r4, set cy
  30. tst n, #1
  31. beq L(skip1)
  32. ldr ul, [up], #4
  33. ldr rl, [rp, #0]
  34. umull r5, r4, ul, vl
  35. subs r, rl, r5
  36. str r, [rp], #4
  37. L(skip1):
  38. tst n, #2
  39. beq L(skip2)
  40. ldr ul, [up], #4
  41. ldr rl, [rp, #0]
  42. mov r5, #0
  43. umlal r4, r5, ul, vl
  44. ldr ul, [up], #4
  45. sbcs r, rl, r4
  46. ldr rl, [rp, #4]
  47. mov r4, #0
  48. umlal r5, r4, ul, vl
  49. str r, [rp], #4
  50. sbcs r, rl, r5
  51. str r, [rp], #4
  52. L(skip2):
  53. bics r, n, #3
  54. beq L(return)
  55. ldr ul, [up], #4
  56. ldr rl, [rp, #0]
  57. mov r5, #0
  58. umlal r4, r5, ul, vl
  59. b L(in)
  60. L(loop):
  61. ldr ul, [up], #4
  62. sbcs r, rl, r5
  63. ldr rl, [rp, #4]
  64. mov r5, #0
  65. umlal r4, r5, ul, vl
  66. str r, [rp], #4
  67. L(in): ldr ul, [up], #4
  68. sbcs r, rl, r4
  69. ldr rl, [rp, #4]
  70. mov r4, #0
  71. umlal r5, r4, ul, vl
  72. str r, [rp], #4
  73. ldr ul, [up], #4
  74. sbcs r, rl, r5
  75. ldr rl, [rp, #4]
  76. mov r5, #0
  77. umlal r4, r5, ul, vl
  78. str r, [rp], #4
  79. ldr ul, [up], #4
  80. sbcs r, rl, r4
  81. ldr rl, [rp, #4]
  82. mov r4, #0
  83. umlal r5, r4, ul, vl
  84. str r, [rp], #4
  85. sub n, n, #4
  86. bics r, n, #3
  87. bne L(loop)
  88. sbcs r, rl, r5
  89. str r, [rp], #4
  90. L(return):
  91. sbc r0, r0, r0
  92. sub r0, r4, r0
  93. ldmfd sp!, { r4-r6, pc }
  94. EPILOGUE(mpn_submul_1)