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

数学计算

开发平台:

Unix_Linux

  1. dnl  PowerPC-32 mpn_sqr_diagonal.
  2. dnl  Copyright 2001, 2002, 2003, 2005 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:             4.0
  18. C 75x (G3):        10.5
  19. C 7400,7410 (G4):  10.5
  20. C 744x,745x (G4+):  4.0
  21. C power4/ppc970:    8.6
  22. C power5:           7.0
  23. C INPUT PARAMETERS
  24. C rp r3
  25. C up r4
  26. C n r5
  27. ASM_START()
  28. PROLOGUE(mpn_sqr_diagonal)
  29. lwz r6,0(r4)
  30. mtctr r5
  31. addi r3,r3,-4
  32. bdz L(end1)
  33. lwzu r7,4(r4)
  34. mullw r9,r6,r6
  35. mulhwu r11,r6,r6
  36. bdz L(end2)
  37. lwzu r6,4(r4)
  38. mullw r8,r7,r7
  39. mulhwu r10,r7,r7
  40. bdz L(ende)
  41. L(loop):
  42. lwzu r7,4(r4)
  43. stw r9,4(r3)
  44. mullw r9,r6,r6
  45. stwu r11,8(r3)
  46. mulhwu r11,r6,r6
  47. bdz L(endo)
  48. lwzu r6,4(r4)
  49. stw r8,4(r3)
  50. mullw r8,r7,r7
  51. stwu r10,8(r3)
  52. mulhwu r10,r7,r7
  53. bdnz L(loop)
  54. L(ende):
  55. stw r9,4(r3)
  56. mullw r9,r6,r6
  57. stw r11,8(r3)
  58. mulhwu r11,r6,r6
  59. stw r8,12(r3)
  60. stw r10,16(r3)
  61. stw r9,20(r3)
  62. stw r11,24(r3)
  63. blr
  64. L(endo):
  65. stw r8,4(r3)
  66. mullw r8,r7,r7
  67. stw r10,8(r3)
  68. mulhwu r10,r7,r7
  69. stw r9,12(r3)
  70. stw r11,16(r3)
  71. stw r8,20(r3)
  72. stw r10,24(r3)
  73. blr
  74. L(end2):
  75. mullw r8,r7,r7
  76. stw r9,4(r3)
  77. mulhwu r10,r7,r7
  78. stw r11,8(r3)
  79. stw r8,12(r3)
  80. stw r10,16(r3)
  81. blr
  82. L(end1):
  83. mullw r9,r6,r6
  84. mulhwu r11,r6,r6
  85. stw r9,4(r3)
  86. stw r11,8(r3)
  87. blr
  88. EPILOGUE(mpn_sqr_diagonal)