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

数学计算

开发平台:

Unix_Linux

  1. dnl  PPC64 mpn_bdiv_dbm1c.
  2. dnl  Copyright 2008 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:    6-18
  17. C POWER4/PPC970:    8.5
  18. C POWER5:           ?
  19. C TODO
  20. C  * Nothing to do...
  21. C INPUT PARAMETERS
  22. define(`rp', `r3')
  23. define(`up', `r4')
  24. define(`n',  `r5')
  25. define(`bd', `r6')
  26. define(`cy', `r7')
  27. ASM_START()
  28. PROLOGUE(mpn_bdiv_dbm1c)
  29. ld r0, 0(r4)
  30. rldicl. r12, r5, 0,62
  31. cmpldi cr6, r12, 2
  32. cmpldi cr7, r5, 4
  33. addi r5, r5, 1
  34. srwi r5, r5, 2
  35. mtctr r5
  36. beq cr0, L(b00)
  37. blt cr6, L(b01)
  38. beq cr6, L(b10)
  39. L(b11): mulld r5, r0, r6
  40. mulhdu r12, r0, r6
  41. ld r0, 8(r4)
  42. addi r4, r4, -24
  43. addi r3, r3, -24
  44. b L(3)
  45. L(b00): mulld r9, r0, r6
  46. mulhdu r8, r0, r6
  47. ld r0, 8(r4)
  48. addi r4, r4, -16
  49. addi r3, r3, -16
  50. b L(0)
  51. L(b01): mulld r5, r0, r6
  52. mulhdu r12, r0, r6
  53. addi r3, r3, -8
  54. ble cr7, L(e1)
  55. ld r0, 8(r4)
  56. addi r4, r4, -8
  57. b L(1)
  58. L(b10): mulld r9, r0, r6
  59. mulhdu r8, r0, r6
  60. ld r0, 8(r4)
  61. ble cr7, L(e2)
  62. ALIGN(16)
  63. L(top): mulld r5, r0, r6
  64. mulhdu r12, r0, r6
  65. subfc r11, r9, r7
  66. ld r0, 16(r4)
  67. subfe r7, r8, r11
  68. std r11, 0(r3)
  69. L(1): mulld r9, r0, r6
  70. mulhdu r8, r0, r6
  71. subfc r11, r5, r7
  72. ld r0, 24(r4)
  73. subfe r7, r12, r11
  74. std r11, 8(r3)
  75. L(0): mulld r5, r0, r6
  76. mulhdu r12, r0, r6
  77. subfc r11, r9, r7
  78. ld r0, 32(r4)
  79. subfe r7, r8, r11
  80. std r11, 16(r3)
  81. L(3): mulld r9, r0, r6
  82. mulhdu r8, r0, r6
  83. subfc r11, r5, r7
  84. ld r0, 40(r4)
  85. subfe r7, r12, r11
  86. std r11, 24(r3)
  87. addi r4, r4, 32
  88. addi r3, r3, 32
  89. bdnz L(top)
  90. L(e2): mulld r5, r0, r6
  91. mulhdu r12, r0, r6
  92. subfc r11, r9, r7
  93. subfe r7, r8, r11
  94. std r11, 0(r3)
  95. L(e1): subfc r11, r5, r7
  96. std r11, 8(r3)
  97. subfe r3, r12, r11
  98. blr
  99. EPILOGUE()