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

数学计算

开发平台:

Unix_Linux

  1. dnl  PowerPC-64 mpn_divexact_1 -- mpn by limb exact division.
  2. dnl  Copyright 2006 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 POWER3/PPC630:    13-19
  17. C POWER4/PPC970:     16
  18. C POWER5:      16
  19. C TODO
  20. C  * Check if n=1 code is really an improvement.  It probably isn't.
  21. C  * Perhaps remove L(norm) code, it is currently unreachable.
  22. C  * Make more similar to mode1o.asm.
  23. C INPUT PARAMETERS
  24. define(`rp', `r3')
  25. define(`up', `r4')
  26. define(`n',  `r5')
  27. define(`d',  `r6')
  28. ASM_START()
  29. EXTERN(binvert_limb_table)
  30. PROLOGUE(mpn_divexact_1)
  31. addic. n, n, -1
  32. ld r12, 0(up)
  33. bne cr0, L(2)
  34. divdu r0, r12, d
  35. std r0, 0(rp)
  36. blr
  37. L(2):
  38. rldicl. r0, d, 0, 63
  39. li r10, 0
  40. bne cr0, L(7)
  41. neg r0, d
  42. and r0, d, r0
  43. cntlzd r0, r0
  44. subfic r0, r0, 63
  45. rldicl r10, r0, 0, 32
  46. srd d, d, r0
  47. L(7):
  48. mtctr n
  49. LEA( r5, binvert_limb_table)
  50. rldicl r11, d, 63, 57
  51. C cmpdi cr7, r0, 0
  52. lbzx r0, r5, r11
  53. mulld r9, r0, r0
  54. sldi r0, r0, 1
  55. mulld r9, d, r9
  56. subf r0, r9, r0
  57. mulld r5, r0, r0
  58. sldi r0, r0, 1
  59. mulld r5, d, r5
  60. subf r0, r5, r0
  61. mulld r9, r0, r0
  62. sldi r0, r0, 1
  63. mulld r9, d, r9
  64. subf r7, r9, r0 C r7 = 1/d mod 2^64
  65. C beq cr7, L(norm)
  66. subfic r8, r10, 64 C set carry as side effect
  67. li r5, 0
  68. ALIGN(16)
  69. L(loop0):
  70. srd r11, r12, r10
  71. ld r12, 8(up)
  72. addi up, up, 8
  73. sld r0, r12, r8
  74. or r11, r11, r0
  75. subfe r9, r5, r11
  76. mulld r0, r7, r9
  77. std r0, 0(rp)
  78. addi rp, rp, 8
  79. mulhdu r5, r0, d
  80. bdnz L(loop0)
  81. srd r0, r12, r10
  82. subfe r0, r5, r0
  83. mulld r0, r7, r0
  84. std r0, 0(rp)
  85. blr
  86. ALIGN(16)
  87. L(norm):
  88. mulld r11, r12, r7
  89. std r11, 0(rp)
  90. ALIGN(16)
  91. L(loop1):
  92. mulhdu r5, r11, d
  93. ld r9, 8(up)
  94. addi up, up, 8
  95. subfe r5, r5, r9
  96. mulld r11, r7, r5
  97. std r11, 8(rp)
  98. addi rp, rp, 8
  99. bdnz L(loop1)
  100. blr
  101. EPILOGUE()
  102. ASM_END()