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

数学计算

开发平台:

Unix_Linux

  1. dnl  HP-PA 1.1 32-bit 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 This code runs at 6 cycles/limb on the PA7100 and 2.5 cycles/limb on PA8x00.
  16. C 2-way unrolling wouldn't help the PA7100; it could however bring times down
  17. C to 2.0 cycles/limb for the PA8x00.
  18. C INPUT PARAMETERS
  19. define(`rp',`%r26')
  20. define(`up',`%r25')
  21. define(`n',`%r24')
  22. ASM_START()
  23. PROLOGUE(mpn_sqr_diagonal)
  24. ldo 4(rp),rp
  25. fldws,ma 4(up),%fr4r
  26. addib,= -1,n,L(exit)
  27. xmpyu %fr4r,%fr4r,%fr5
  28. LDEF(loop)
  29. fldws,ma 4(up),%fr4r
  30. fstws %fr5r,-4(rp)
  31. fstws,ma %fr5l,8(rp)
  32. addib,<> -1,n,L(loop)
  33. xmpyu %fr4r,%fr4r,%fr5
  34. LDEF(exit)
  35. fstws %fr5r,-4(rp)
  36. bv 0(%r2)
  37. fstws %fr5l,0(rp)
  38. EPILOGUE(mpn_sqr_diagonal)