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

数学计算

开发平台:

Unix_Linux

  1. dnl  Alpha mpn_sqr_diagonal.
  2. dnl  Copyright 2001, 2002 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:     42
  17. C EV5:     18
  18. C EV6:      3.45
  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. ldq r2,0(r17) C r2 = s1_limb
  26. lda r18,-2(r18) C size -= 2
  27. mulq r2,r2,r3 C r3 = prod_low
  28. umulh r2,r2,r4 C r4 = prod_high
  29. blt r18,$Lend1 C jump if size was == 1
  30. ldq r2,8(r17) C r2 = s1_limb
  31. beq r18,$Lend2 C jump if size was == 2
  32. ALIGN(8)
  33. $Loop: stq r3,0(r16)
  34. mulq r2,r2,r3 C r3 = prod_low
  35. lda r18,-1(r18) C size--
  36. stq r4,8(r16)
  37. umulh r2,r2,r4 C r4 = cy_limb
  38. ldq r2,16(r17) C r2 = s1_limb
  39. lda r17,8(r17) C s1_ptr++
  40. lda r16,16(r16) C res_ptr++
  41. bne r18,$Loop
  42. $Lend2: stq r3,0(r16)
  43. mulq r2,r2,r3 C r3 = prod_low
  44. stq r4,8(r16)
  45. umulh r2,r2,r4 C r4 = cy_limb
  46. stq r3,16(r16)
  47. stq r4,24(r16)
  48. ret r31,(r26),1
  49. $Lend1: stq r3,0(r16)
  50. stq r4,8(r16)
  51. ret r31,(r26),1
  52. EPILOGUE(mpn_sqr_diagonal)
  53. ASM_END()