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

数学计算

开发平台:

Unix_Linux

  1. dnl  SPARC mpn_sub_n -- Subtract two limb vectors of the same length > 0 and
  2. dnl  store difference in a third limb vector.
  3. dnl  Copyright 2001 Free Software Foundation, Inc.
  4. dnl  This file is part of the GNU MP Library.
  5. dnl  The GNU MP Library is free software; you can redistribute it and/or modify
  6. dnl  it under the terms of the GNU Lesser General Public License as published
  7. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  8. dnl  your option) any later version.
  9. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  10. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. dnl  License for more details.
  13. dnl  You should have received a copy of the GNU Lesser General Public License
  14. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  15. include(`../config.m4')
  16. C INPUT PARAMETERS
  17. define(rp,%o0)
  18. define(s1p,%o1)
  19. define(s2p,%o2)
  20. define(n,%o3)
  21. define(cy,%g1)
  22. C This code uses 64-bit operations on `o' and `g' registers.  It doesn't
  23. C require that `o' registers' upper 32 bits are preserved by the operating
  24. C system, but if they are not, they must be zeroed.  That is indeed what
  25. C happens at least on Slowaris 2.5 and 2.6.
  26. C On UltraSPARC 1 and 2, this code runs at 3 cycles/limb from the Dcache and at
  27. C about 10 cycles/limb from the Ecache.
  28. ASM_START()
  29. PROLOGUE(mpn_sub_n)
  30. lduw [s1p+0],%o4
  31. lduw [s2p+0],%o5
  32. addcc n,-2,n
  33. bl,pn %icc,L(end1)
  34. lduw [s1p+4],%g2
  35. lduw [s2p+4],%g3
  36. be,pn %icc,L(end2)
  37. mov 0,cy
  38. .align 16
  39. L(loop):
  40. sub %o4,%o5,%g4
  41. add rp,8,rp
  42. lduw [s1p+8],%o4
  43. fitod %f0,%f2
  44. C ---
  45. sub %g4,cy,%g4
  46. addcc n,-1,n
  47. lduw [s2p+8],%o5
  48. fitod %f0,%f2
  49. C ---
  50. srlx %g4,63,cy
  51. add s2p,8,s2p
  52. stw %g4,[rp-8]
  53. be,pn %icc,L(exito)+4
  54. C ---
  55. sub %g2,%g3,%g4
  56. addcc n,-1,n
  57. lduw [s1p+12],%g2
  58. fitod %f0,%f2
  59. C ---
  60. sub %g4,cy,%g4
  61. add s1p,8,s1p
  62. lduw [s2p+4],%g3
  63. fitod %f0,%f2
  64. C ---
  65. srlx %g4,63,cy
  66. bne,pt %icc,L(loop)
  67. stw %g4,[rp-4]
  68. C ---
  69. L(exite):
  70. sub %o4,%o5,%g4
  71. sub %g4,cy,%g4
  72. srlx %g4,63,cy
  73. stw %g4,[rp+0]
  74. sub %g2,%g3,%g4
  75. sub %g4,cy,%g4
  76. stw %g4,[rp+4]
  77. retl
  78. srlx %g4,63,%o0
  79. L(exito):
  80. sub %g2,%g3,%g4
  81. sub %g4,cy,%g4
  82. srlx %g4,63,cy
  83. stw %g4,[rp-4]
  84. sub %o4,%o5,%g4
  85. sub %g4,cy,%g4
  86. stw %g4,[rp+0]
  87. retl
  88. srlx %g4,63,%o0
  89. L(end1):
  90. sub %o4,%o5,%g4
  91. stw %g4,[rp+0]
  92. retl
  93. srlx %g4,63,%o0
  94. L(end2):
  95. sub %o4,%o5,%g4
  96. srlx %g4,63,cy
  97. stw %g4,[rp+0]
  98. sub %g2,%g3,%g4
  99. sub %g4,cy,%g4
  100. stw %g4,[rp+4]
  101. retl
  102. srlx %g4,63,%o0
  103. EPILOGUE(mpn_sub_n)