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

数学计算

开发平台:

Unix_Linux

  1. dnl  Alpha mpn_sqr_diagonal.
  2. dnl  Copyright 2001, 2002, 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 EV4:      ?
  17. C EV5:      ?
  18. C EV6:      2.3
  19. C  INPUT PARAMETERS
  20. C  rp r16
  21. C  up r17
  22. C  n r18
  23. ASM_START()
  24. PROLOGUE(mpn_sqr_diagonal)
  25. lda r18, -2(r18) C n -= 2
  26. ldq r0,   0(r17)
  27. mulq r0, r0, r4
  28. umulh r0, r0, r20
  29. blt r18, L(ex1)
  30. ldq r1,   8(r17)
  31. mulq r1, r1, r5
  32. umulh r1, r1, r21
  33. beq r18, L(ex2)
  34. lda r18, -2(r18) C n -= 2
  35. ldq r0,  16(r17)
  36. blt r18, L(ex3)
  37. ldq r1,  24(r17)
  38. beq r18, L(ex4)
  39. ALIGN(16)
  40. L(top): lda r18, -2(r18) C n -= 2
  41. stq r4,   0(r16)
  42. mulq r0, r0, r4
  43. stq r20,  8(r16)
  44. umulh r0, r0, r20
  45. ldq r0,  32(r17)
  46. blt r18, L(x)
  47. stq r5,  16(r16)
  48. mulq r1, r1, r5
  49. stq r21, 24(r16)
  50. umulh r1, r1, r21
  51. ldq r1,  40(r17)
  52. lda r16, 32(r16) C rp += 4
  53. lda r17, 16(r17) C up += 2
  54. bne r18, L(top)
  55. ALIGN(16)
  56. L(ex4): stq r4,   0(r16)
  57. mulq r0, r0, r4
  58. stq r20,  8(r16)
  59. umulh r0, r0, r20
  60. stq r5,  16(r16)
  61. mulq r1, r1, r5
  62. stq r21, 24(r16)
  63. umulh r1, r1, r21
  64. stq r4,  32(r16)
  65. stq r20, 40(r16)
  66. stq r5,  48(r16)
  67. stq r21, 56(r16)
  68. ret r31, (r26), 1
  69. ALIGN(16)
  70. L(x): stq r5,  16(r16)
  71. mulq r1, r1, r5
  72. stq r21, 24(r16)
  73. umulh r1, r1, r21
  74. stq r4,  32(r16)
  75. mulq r0, r0, r4
  76. stq r20, 40(r16)
  77. umulh r0, r0, r20
  78. stq r5,  48(r16)
  79. stq r21, 56(r16)
  80. stq r4,  64(r16)
  81. stq r20, 72(r16)
  82. ret r31, (r26), 1
  83. L(ex1): stq r4,   0(r16)
  84. stq r20,  8(r16)
  85. ret r31, (r26), 1
  86. ALIGN(16)
  87. L(ex2): stq r4,   0(r16)
  88. stq r20,  8(r16)
  89. stq r5,  16(r16)
  90. stq r21, 24(r16)
  91. ret r31, (r26), 1
  92. ALIGN(16)
  93. L(ex3): stq r4,   0(r16)
  94. mulq r0, r0, r4
  95. stq r20,  8(r16)
  96. umulh r0, r0, r20
  97. stq r5,  16(r16)
  98. stq r21, 24(r16)
  99. stq r4,  32(r16)
  100. stq r20, 40(r16)
  101. ret r31, (r26), 1
  102. EPILOGUE()
  103. ASM_END()