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

数学计算

开发平台:

Unix_Linux

  1. dnl  PowerPC-32 mpn_submul_1 -- Multiply a limb vector with a limb and subtract
  2. dnl  the result from a second limb vector.
  3. dnl  Copyright 1995, 1997, 1998, 2000, 2002, 2005 Free Software Foundation,
  4. dnl  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                cycles/limb
  18. C 603e:            ?
  19. C 604e:            7.5
  20. C 75x (G3):        9.3-15
  21. C 7400,7410 (G4):  9.3-15
  22. C 744x,745x (G4+): 10.5
  23. C power4/ppc970:   6.75
  24. C power5:          6.5
  25. C INPUT PARAMETERS
  26. C rp r3
  27. C up r4
  28. C n r5
  29. C vl r6
  30. C This is optimized for the PPC604.  See addmul_1.asm for additional comments.
  31. ASM_START()
  32. PROLOGUE(mpn_submul_1)
  33. cmpwi cr0,r5,9 C more than 9 limbs?
  34. bgt cr0,L(big) C branch if more than 9 limbs
  35. mtctr r5
  36. lwz r0,0(r4)
  37. mullw r7,r0,r6
  38. mulhwu r10,r0,r6
  39. lwz r9,0(r3)
  40. subfc r8,r7,r9
  41. addc r7,r7,r8 C invert cy (r7 is junk)
  42. addi r3,r3,-4
  43. bdz L(end)
  44. L(loop):
  45. lwzu r0,4(r4)
  46. stwu r8,4(r3)
  47. mullw r8,r0,r6
  48. adde r7,r8,r10
  49. mulhwu r10,r0,r6
  50. lwz r9,4(r3)
  51. addze r10,r10
  52. subfc r8,r7,r9
  53. addc r7,r7,r8 C invert cy (r7 is junk)
  54. bdnz L(loop)
  55. L(end): stw r8,4(r3)
  56. addze r3,r10
  57. blr
  58. L(big): stmw r30,-32(r1)
  59. addi r5,r5,-1
  60. srwi r0,r5,2
  61. mtctr r0
  62. lwz r7,0(r4)
  63. mullw r8,r7,r6
  64. mulhwu r0,r7,r6
  65. lwz r7,0(r3)
  66. subfc r7,r8,r7
  67. addc r8,r8,r7
  68. stw r7,0(r3)
  69. L(loopU):
  70. lwz r7,4(r4)
  71. lwz r12,8(r4)
  72. lwz r30,12(r4)
  73. lwzu r31,16(r4)
  74. mullw r8,r7,r6
  75. mullw r9,r12,r6
  76. mullw r10,r30,r6
  77. mullw r11,r31,r6
  78. adde r8,r8,r0 C add cy_limb
  79. mulhwu r0,r7,r6
  80. lwz r7,4(r3)
  81. adde r9,r9,r0
  82. mulhwu r0,r12,r6
  83. lwz r12,8(r3)
  84. adde r10,r10,r0
  85. mulhwu r0,r30,r6
  86. lwz r30,12(r3)
  87. adde r11,r11,r0
  88. mulhwu r0,r31,r6
  89. lwz r31,16(r3)
  90. addze r0,r0 C new cy_limb
  91. subfc r7,r8,r7
  92. stw r7,4(r3)
  93. subfe r12,r9,r12
  94. stw r12,8(r3)
  95. subfe r30,r10,r30
  96. stw r30,12(r3)
  97. subfe r31,r11,r31
  98. stwu r31,16(r3)
  99. subfe r11,r11,r11 C invert ...
  100. addic r11,r11,1 C ... carry
  101. bdnz L(loopU)
  102. andi. r31,r5,3
  103. mtctr r31
  104. beq cr0,L(endx)
  105. L(loopE):
  106. lwzu r7,4(r4)
  107. mullw r8,r7,r6
  108. adde r8,r8,r0 C add cy_limb
  109. mulhwu r0,r7,r6
  110. lwz r7,4(r3)
  111. addze r0,r0 C new cy_limb
  112. subfc r7,r8,r7
  113. addc r8,r8,r7
  114. stwu r7,4(r3)
  115. bdnz L(loopE)
  116. L(endx):
  117. addze r3,r0
  118. lmw r30,-32(r1)
  119. blr
  120. EPILOGUE(mpn_submul_1)