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

数学计算

开发平台:

Unix_Linux

  1. dnl  PowerPC-32 mpn_add_n and mpn_sub_n.
  2. dnl  Copyright 2002, 2005, 2007 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                cycles/limb
  16. C 603e:              ?
  17. C 604e:              ? old: 3.25
  18. C 75x (G3):          ? old: 3.5
  19. C 7400,7410 (G4):    3.25
  20. C 744x,745x (G4+):   4
  21. C power4/ppc970:     ? old: 2.0
  22. C power5:            ? old: 2.5
  23. C INPUT PARAMETERS
  24. define(`rp', `r3')
  25. define(`up', `r4')
  26. define(`vp', `r5')
  27. define(`n', `r6')
  28. define(`cy', `r7')
  29. ifdef(`OPERATION_add_n', `
  30. define(ADCSBC, adde)
  31. define(func, mpn_add_n)
  32. define(func_nc, mpn_add_nc)
  33. define(IFADD, `$1')
  34. define(IFSUB, `')')
  35. ifdef(`OPERATION_sub_n', `
  36. define(ADCSBC, subfe)
  37. define(func, mpn_sub_n)
  38. define(func_nc, mpn_sub_nc)
  39. define(IFADD, `')
  40. define(IFSUB, `$1')')
  41. MULFUNC_PROLOGUE(mpn_add_n mpn_add_nc mpn_sub_n mpn_sub_nc)
  42. ASM_START()
  43. PROLOGUE(func_nc)
  44. IFADD(` addic r0, cy, -1') C set carry from argument
  45. IFSUB(` subfic r0, cy, 0') C set carry from argument
  46. b L(ent)
  47. EPILOGUE()
  48. PROLOGUE(func)
  49. IFADD(` addic r0, n, 0') C clear carry
  50. IFSUB(` addic r0, n, -1') C set carry
  51. L(ent): andi. r0, n, 3
  52. addi r3, r3, -12
  53. addi n, n, 1
  54. cmpwi cr7, r0, 2
  55. srwi r0, n, 2
  56. sub r4, r4, r3
  57. sub r5, r5, r3
  58. mtctr r0
  59. bne cr0, L(n00)
  60. lwzx r7, r4, r3 C n = 4, 8, 12, ...
  61. lwzx r8, r5, r3
  62. addi r3, r3, 4
  63. lwzx r9, r4, r3
  64. ADCSBC r7, r8, r7
  65. lwzx r10, r5, r3
  66. addi r3, r3, 4
  67. b L(00)
  68. L(n00): bge cr7, L(n01)
  69. cmpwi cr0, r0, 0 C n = 1, 5, 9, 13, ...
  70. lwzx r0, r4, r3
  71. lwzx r6, r5, r3
  72. addi r3, r3, 4
  73. ADCSBC r0, r6, r0
  74. ble L(ret)
  75. L(gt1): lwzx r7, r4, r3
  76. lwzx r8, r5, r3
  77. addi r3, r3, 4
  78. b L(01)
  79. L(n10):
  80. lwzx r9, r4, r3 C n = 3, 7, 11, 15, ...
  81. lwzx r10, r5, r3
  82. addi r3, r3, 4
  83. lwzx r11, r4, r3
  84. ADCSBC r9, r10, r9
  85. lwzx r12, r5, r3
  86. addi r3, r3, 4
  87. b L(11)
  88. L(n01): bne cr7, L(n10)
  89. cmpwi cr0, r0, 0 C n = 2, 6, 10, 14, ...
  90. lwzx r11, r4, r3
  91. lwzx r12, r5, r3
  92. addi r3, r3, 4
  93. lwzx r0, r4, r3
  94. ADCSBC r11, r12, r11
  95. lwzx r6, r5, r3
  96. addi r3, r3, 4
  97. ble cr0, L(end)
  98. L(lp): lwzx r7, r4, r3
  99. ADCSBC r0, r6, r0
  100. lwzx r8, r5, r3
  101. stwu r11, 4(r3)
  102. L(01): lwzx r9, r4, r3
  103. ADCSBC r7, r8, r7
  104. lwzx r10, r5, r3
  105. stwu r0, 4(r3)
  106. L(00): lwzx r11, r4, r3
  107. ADCSBC r9, r10, r9
  108. lwzx r12, r5, r3
  109. stwu r7, 4(r3)
  110. L(11): lwzx r0, r4, r3
  111. ADCSBC r11, r12, r11
  112. lwzx r6, r5, r3
  113. stwu r9, 4(r3)
  114. bdnz L(lp)
  115. L(end): ADCSBC r0, r6, r0
  116. stw r11, 4(r3)
  117. L(ret): stw r0, 8(r3)
  118. IFADD(` li r3, 0 ')
  119. IFADD(` addze r3, r3 ')
  120. IFSUB(` subfe r3, r0, r0')
  121. IFSUB(` neg r3, r3')
  122. blr
  123. EPILOGUE()