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

数学计算

开发平台:

Unix_Linux

  1. dnl  HP-PA 32-bit mpn_sqr_diagonal optimized for the PA8x00.
  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 cycles/limb on PA8x00.
  16. C The 2-way unrolling is actually not helping the PA7100.
  17. C INPUT PARAMETERS
  18. define(`rp',`%r26')
  19. define(`up',`%r25')
  20. define(`n',`%r24')
  21. ASM_START()
  22. PROLOGUE(mpn_sqr_diagonal)
  23. fldws,ma 4(up),%fr4r
  24. addib,= -1,n,L(end1)
  25. ldo 4(rp),rp
  26. fldws,ma 4(up),%fr6r
  27. addib,= -1,n,L(end2)
  28. xmpyu %fr4r,%fr4r,%fr5
  29. fldws,ma 4(up),%fr4r
  30. addib,= -1,n,L(end3)
  31. xmpyu %fr6r,%fr6r,%fr7
  32. LDEF(loop)
  33. fldws,ma 4(up),%fr6r
  34. fstws %fr5r,-4(rp)
  35. fstws,ma %fr5l,8(rp)
  36. addib,= -1,n,L(exite)
  37. xmpyu %fr4r,%fr4r,%fr5
  38. fldws,ma 4(up),%fr4r
  39. fstws %fr7r,-4(rp)
  40. fstws,ma %fr7l,8(rp)
  41. addib,<> -1,n,L(loop)
  42. xmpyu %fr6r,%fr6r,%fr7
  43. LDEF(exito)
  44. fstws %fr5r,-4(rp)
  45. fstws %fr5l,0(rp)
  46. xmpyu %fr4r,%fr4r,%fr5
  47. fstws %fr7r,4(rp)
  48. fstws %fr7l,8(rp)
  49. fstws,mb %fr5r,12(rp)
  50. bv 0(%r2)
  51. fstws %fr5l,4(rp)
  52. LDEF(exite)
  53. fstws %fr7r,-4(rp)
  54. fstws %fr7l,0(rp)
  55. xmpyu %fr6r,%fr6r,%fr7
  56. fstws %fr5r,4(rp)
  57. fstws %fr5l,8(rp)
  58. fstws,mb %fr7r,12(rp)
  59. bv 0(%r2)
  60. fstws %fr7l,4(rp)
  61. LDEF(end1)
  62. xmpyu %fr4r,%fr4r,%fr5
  63. fstws %fr5r,-4(rp)
  64. bv 0(%r2)
  65. fstws,ma %fr5l,8(rp)
  66. LDEF(end2)
  67. xmpyu %fr6r,%fr6r,%fr7
  68. fstws %fr5r,-4(rp)
  69. fstws %fr5l,0(rp)
  70. fstws %fr7r,4(rp)
  71. bv 0(%r2)
  72. fstws %fr7l,8(rp)
  73. LDEF(end3)
  74. fstws %fr5r,-4(rp)
  75. fstws %fr5l,0(rp)
  76. xmpyu %fr4r,%fr4r,%fr5
  77. fstws %fr7r,4(rp)
  78. fstws %fr7l,8(rp)
  79. fstws,mb %fr5r,12(rp)
  80. bv 0(%r2)
  81. fstws %fr5l,4(rp)
  82. EPILOGUE(mpn_sqr_diagonal)