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

数学计算

开发平台:

Unix_Linux

  1. dnl  HP-PA  mpn_rshift -- Shift a number right.
  2. dnl  Copyright 1992, 1994, 2000, 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 INPUT PARAMETERS
  16. C res_ptr gr26
  17. C s_ptr gr25
  18. C size gr24
  19. C cnt gr23
  20. ASM_START()
  21. PROLOGUE(mpn_rshift)
  22. ldws,ma 4(0,%r25),%r22
  23. mtsar %r23
  24. addib,= -1,%r24,L(0004)
  25. vshd %r22,%r0,%r28 C compute carry out limb
  26. ldws,ma 4(0,%r25),%r29
  27. addib,= -1,%r24,L(0002)
  28. vshd %r29,%r22,%r20
  29. LDEF(loop)
  30. ldws,ma 4(0,%r25),%r22
  31. stws,ma %r20,4(0,%r26)
  32. addib,= -1,%r24,L(0003)
  33. vshd %r22,%r29,%r20
  34. ldws,ma 4(0,%r25),%r29
  35. stws,ma %r20,4(0,%r26)
  36. addib,<> -1,%r24,L(loop)
  37. vshd %r29,%r22,%r20
  38. LDEF(0002)
  39. stws,ma %r20,4(0,%r26)
  40. vshd %r0,%r29,%r20
  41. bv 0(%r2)
  42. stw %r20,0(0,%r26)
  43. LDEF(0003)
  44. stws,ma %r20,4(0,%r26)
  45. LDEF(0004)
  46. vshd %r0,%r22,%r20
  47. bv 0(%r2)
  48. stw %r20,0(0,%r26)
  49. EPILOGUE()