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

数学计算

开发平台:

Unix_Linux

  1. dnl  PowerPC-32 mpn_addmul_1 -- Multiply a limb vector with a limb and add the
  2. dnl  result to a second limb vector.
  3. dnl  Copyright 1995, 1997, 1998, 2000, 2001, 2002, 2003, 2005 Free Software
  4. dnl  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                cycles/limb
  18. C 603e:            ?
  19. C 604e:            6.75
  20. C 75x (G3):        8.7-14.3
  21. C 7400,7410 (G4):  8.7-14.3
  22. C 744x,745x (G4+): 9.5
  23. C power4/ppc970:   6.25
  24. C power5:          6.25
  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.  It has not been tuned for other
  31. C PowerPC processors.
  32. C
  33. C Loop Analysis for the 604:
  34. C 12 mem insn
  35. C 8 serializing insn
  36. C 8 int multiply
  37. C 25 int reg write
  38. C 9 int ops (8 of which serialize)
  39. C
  40. C The multiply insns need 16 cycles/4limb.
  41. C The integer register writes will need 13 cycles/4limb.
  42. C All-in-all, it should be possible to get to 4 or 5 cycles/limb on PPC604,
  43. C but that will require some clever FPNOPS and BNOPS for exact
  44. C issue control.
  45. ASM_START()
  46. PROLOGUE(mpn_addmul_1)
  47. cmpwi cr0,r5,9 C more than 9 limbs?
  48. bgt cr0,L(big) C branch if more than 9 limbs
  49. mtctr r5
  50. lwz r0,0(r4)
  51. mullw r7,r0,r6
  52. mulhwu r10,r0,r6
  53. lwz r9,0(r3)
  54. addc r8,r7,r9
  55. addi r3,r3,-4
  56. bdz L(end)
  57. L(loop):
  58. lwzu r0,4(r4)
  59. stwu r8,4(r3)
  60. mullw r8,r0,r6
  61. adde r7,r8,r10
  62. mulhwu r10,r0,r6
  63. lwz r9,4(r3)
  64. addze r10,r10
  65. addc r8,r7,r9
  66. bdnz L(loop)
  67. L(end): stw r8,4(r3)
  68. addze r3,r10
  69. blr
  70. L(big): stmw r30,-32(r1)
  71. addi r5,r5,-1
  72. srwi r0,r5,2
  73. mtctr r0
  74. lwz r7,0(r4)
  75. mullw r8,r7,r6
  76. mulhwu r0,r7,r6
  77. lwz r7,0(r3)
  78. addc r8,r8,r7
  79. stw r8,0(r3)
  80. L(loopU):
  81. lwz r7,4(r4)
  82. lwz r12,8(r4)
  83. lwz r30,12(r4)
  84. lwzu r31,16(r4)
  85. mullw r8,r7,r6
  86. mullw r9,r12,r6
  87. mullw r10,r30,r6
  88. mullw r11,r31,r6
  89. adde r8,r8,r0 C add cy_limb
  90. mulhwu r0,r7,r6
  91. lwz r7,4(r3)
  92. adde r9,r9,r0
  93. mulhwu r0,r12,r6
  94. lwz r12,8(r3)
  95. adde r10,r10,r0
  96. mulhwu r0,r30,r6
  97. lwz r30,12(r3)
  98. adde r11,r11,r0
  99. mulhwu r0,r31,r6
  100. lwz r31,16(r3)
  101. addze r0,r0 C new cy_limb
  102. addc r8,r8,r7
  103. stw r8,4(r3)
  104. adde r9,r9,r12
  105. stw r9,8(r3)
  106. adde r10,r10,r30
  107. stw r10,12(r3)
  108. adde r11,r11,r31
  109. stwu r11,16(r3)
  110. bdnz L(loopU)
  111. andi. r31,r5,3
  112. mtctr r31
  113. beq cr0,L(endx)
  114. L(loopE):
  115. lwzu r7,4(r4)
  116. mullw r8,r7,r6
  117. adde r8,r8,r0 C add cy_limb
  118. mulhwu r0,r7,r6
  119. lwz r7,4(r3)
  120. addze r0,r0 C new cy_limb
  121. addc r8,r8,r7
  122. stwu r8,4(r3)
  123. bdnz L(loopE)
  124. L(endx):
  125. addze r3,r0
  126. lmw r30,-32(r1)
  127. blr
  128. EPILOGUE(mpn_addmul_1)