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

数学计算

开发平台:

Unix_Linux

  1. dnl  MIPS64 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. dnl  INPUT PARAMETERS
  15. dnl  rp $4
  16. dnl  up $5
  17. dnl  n $6
  18. include(`../config.m4')
  19. ASM_START()
  20. PROLOGUE(mpn_sqr_diagonal)
  21. ld r8,0(r5)
  22. daddiu r6,r6,-2
  23. dmultu r8,r8
  24. bltz r6,$Lend1
  25. nop
  26. ld r8,8(r5)
  27. beq r6,r0,$Lend2
  28. nop
  29. $Loop: mflo r10
  30. mfhi r9
  31. daddiu r6,r6,-1
  32. sd r10,0(r4)
  33. sd r9,8(r4)
  34. dmultu r8,r8
  35. ld r8,16(r5)
  36. daddiu r5,r5,8
  37. bne r6,r0,$Loop
  38. daddiu r4,r4,16
  39. $Lend2: mflo r10
  40. mfhi r9
  41. sd r10,0(r4)
  42. sd r9,8(r4)
  43. dmultu r8,r8
  44. mflo r10
  45. mfhi r9
  46. sd r10,16(r4)
  47. j r31
  48. sd r9,24(r4)
  49. $Lend1: mflo r10
  50. mfhi r9
  51. sd r10,0(r4)
  52. j r31
  53. sd r9,8(r4)
  54. EPILOGUE(mpn_sqr_diagonal)