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

数学计算

开发平台:

Unix_Linux

  1. dnl  HP-PA  mpn_lshift -- Shift a number left.
  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_lshift)
  22. sh2add %r24,%r25,%r25
  23. sh2add %r24,%r26,%r26
  24. ldws,mb -4(0,%r25),%r22
  25. subi 32,%r23,%r1
  26. mtsar %r1
  27. addib,= -1,%r24,L(0004)
  28. vshd %r0,%r22,%r28 C compute carry out limb
  29. ldws,mb -4(0,%r25),%r29
  30. addib,= -1,%r24,L(0002)
  31. vshd %r22,%r29,%r20
  32. LDEF(loop)
  33. ldws,mb -4(0,%r25),%r22
  34. stws,mb %r20,-4(0,%r26)
  35. addib,= -1,%r24,L(0003)
  36. vshd %r29,%r22,%r20
  37. ldws,mb -4(0,%r25),%r29
  38. stws,mb %r20,-4(0,%r26)
  39. addib,<> -1,%r24,L(loop)
  40. vshd %r22,%r29,%r20
  41. LDEF(0002)
  42. stws,mb %r20,-4(0,%r26)
  43. vshd %r29,%r0,%r20
  44. bv 0(%r2)
  45. stw %r20,-4(0,%r26)
  46. LDEF(0003)
  47. stws,mb %r20,-4(0,%r26)
  48. LDEF(0004)
  49. vshd %r22,%r0,%r20
  50. bv 0(%r2)
  51. stw %r20,-4(0,%r26)
  52. EPILOGUE()