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

数学计算

开发平台:

Unix_Linux

  1. dnl  HP-PA  mpn_rshift -- Shift a number right.
  2. dnl  Optimized for the PA7100, where is runs at 3.25 cycles/limb.
  3. dnl  Copyright 1992, 1994, 2000, 2001, 2002, 2003 Free Software Foundation,
  4. dnl  Inc.
  5. dnl  This file is part of the GNU MP Library.
  6. dnl  The GNU MP Library is free software; you can redistribute it and/or modify
  7. dnl  it under the terms of the GNU Lesser General Public License as published
  8. dnl  by the Free Software Foundation; either version 3 of the License, or (at
  9. dnl  your option) any later version.
  10. dnl  The GNU MP Library is distributed in the hope that it will be useful, but
  11. dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  12. dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  13. dnl  License for more details.
  14. dnl  You should have received a copy of the GNU Lesser General Public License
  15. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  16. include(`../config.m4')
  17. C INPUT PARAMETERS
  18. C res_ptr r26
  19. C s_ptr r25
  20. C size r24
  21. C cnt r23
  22. ASM_START()
  23. PROLOGUE(mpn_rshift)
  24. ldws,ma 4(0,%r25),%r22
  25. mtsar %r23
  26. addib,= -1,%r24,L(0004)
  27. vshd %r22,%r0,%r28 C compute carry out limb
  28. ldws,ma 4(0,%r25),%r29
  29. addib,<= -5,%r24,L(rest)
  30. vshd %r29,%r22,%r20
  31. LDEF(loop)
  32. ldws,ma 4(0,%r25),%r22
  33. stws,ma %r20,4(0,%r26)
  34. vshd %r22,%r29,%r20
  35. ldws,ma 4(0,%r25),%r29
  36. stws,ma %r20,4(0,%r26)
  37. vshd %r29,%r22,%r20
  38. ldws,ma 4(0,%r25),%r22
  39. stws,ma %r20,4(0,%r26)
  40. vshd %r22,%r29,%r20
  41. ldws,ma 4(0,%r25),%r29
  42. stws,ma %r20,4(0,%r26)
  43. addib,> -4,%r24,L(loop)
  44. vshd %r29,%r22,%r20
  45. LDEF(rest)
  46. addib,= 4,%r24,L(end1)
  47. nop
  48. LDEF(eloop)
  49. ldws,ma 4(0,%r25),%r22
  50. stws,ma %r20,4(0,%r26)
  51. addib,<= -1,%r24,L(end2)
  52. vshd %r22,%r29,%r20
  53. ldws,ma 4(0,%r25),%r29
  54. stws,ma %r20,4(0,%r26)
  55. addib,> -1,%r24,L(eloop)
  56. vshd %r29,%r22,%r20
  57. LDEF(end1)
  58. stws,ma %r20,4(0,%r26)
  59. vshd %r0,%r29,%r20
  60. bv 0(%r2)
  61. stw %r20,0(0,%r26)
  62. LDEF(end2)
  63. stws,ma %r20,4(0,%r26)
  64. LDEF(0004)
  65. vshd %r0,%r22,%r20
  66. bv 0(%r2)
  67. stw %r20,0(0,%r26)
  68. EPILOGUE()