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

数学计算

开发平台:

Unix_Linux

  1. dnl  SPARC mpn_rshift -- Shift a number right.
  2. dnl  Copyright 1995, 1996, 2000 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 INPUT PARAMETERS
  16. C res_ptr %o0
  17. C src_ptr %o1
  18. C size %o2
  19. C cnt %o3
  20. ASM_START()
  21. PROLOGUE(mpn_rshift)
  22. ld [%o1],%g2 C load first limb
  23. sub %g0,%o3,%o5 C negate shift count
  24. add %o2,-1,%o2
  25. andcc %o2,4-1,%g4 C number of limbs in first loop
  26. sll %g2,%o5,%g1 C compute function result
  27. be L(0) C if multiple of 4 limbs, skip first loop
  28. st %g1,[%sp+80]
  29. sub %o2,%g4,%o2 C adjust count for main loop
  30. L(loop0):
  31. ld [%o1+4],%g3
  32. add %o0,4,%o0
  33. add %o1,4,%o1
  34. addcc %g4,-1,%g4
  35. srl %g2,%o3,%o4
  36. sll %g3,%o5,%g1
  37. mov %g3,%g2
  38. or %o4,%g1,%o4
  39. bne L(loop0)
  40.  st %o4,[%o0-4]
  41. L(0): tst %o2
  42. be L(end)
  43.  nop
  44. L(loop):
  45. ld [%o1+4],%g3
  46. add %o0,16,%o0
  47. addcc %o2,-4,%o2
  48. srl %g2,%o3,%o4
  49. sll %g3,%o5,%g1
  50. ld [%o1+8],%g2
  51. srl %g3,%o3,%g4
  52. or %o4,%g1,%o4
  53. st %o4,[%o0-16]
  54. sll %g2,%o5,%g1
  55. ld [%o1+12],%g3
  56. srl %g2,%o3,%o4
  57. or %g4,%g1,%g4
  58. st %g4,[%o0-12]
  59. sll %g3,%o5,%g1
  60. ld [%o1+16],%g2
  61. srl %g3,%o3,%g4
  62. or %o4,%g1,%o4
  63. st %o4,[%o0-8]
  64. sll %g2,%o5,%g1
  65. add %o1,16,%o1
  66. or %g4,%g1,%g4
  67. bne L(loop)
  68.  st %g4,[%o0-4]
  69. L(end): srl %g2,%o3,%g2
  70. st %g2,[%o0-0]
  71. retl
  72. ld [%sp+80],%o0
  73. EPILOGUE(mpn_rshift)