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

数学计算

开发平台:

Unix_Linux

  1. dnl  HP-PA  mpn_lshift -- Shift a number left.
  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_lshift)
  24. sh2add %r24,%r25,%r25
  25. sh2add %r24,%r26,%r26
  26. ldws,mb -4(0,%r25),%r22
  27. subi 32,%r23,%r1
  28. mtsar %r1
  29. addib,= -1,%r24,L(0004)
  30. vshd %r0,%r22,%r28 C compute carry out limb
  31. ldws,mb -4(0,%r25),%r29
  32. addib,<= -5,%r24,L(rest)
  33. vshd %r22,%r29,%r20
  34. LDEF(loop)
  35. ldws,mb -4(0,%r25),%r22
  36. stws,mb %r20,-4(0,%r26)
  37. vshd %r29,%r22,%r20
  38. ldws,mb -4(0,%r25),%r29
  39. stws,mb %r20,-4(0,%r26)
  40. vshd %r22,%r29,%r20
  41. ldws,mb -4(0,%r25),%r22
  42. stws,mb %r20,-4(0,%r26)
  43. vshd %r29,%r22,%r20
  44. ldws,mb -4(0,%r25),%r29
  45. stws,mb %r20,-4(0,%r26)
  46. addib,> -4,%r24,L(loop)
  47. vshd %r22,%r29,%r20
  48. LDEF(rest)
  49. addib,= 4,%r24,L(end1)
  50. nop
  51. LDEF(eloop)
  52. ldws,mb -4(0,%r25),%r22
  53. stws,mb %r20,-4(0,%r26)
  54. addib,<= -1,%r24,L(end2)
  55. vshd %r29,%r22,%r20
  56. ldws,mb -4(0,%r25),%r29
  57. stws,mb %r20,-4(0,%r26)
  58. addib,> -1,%r24,L(eloop)
  59. vshd %r22,%r29,%r20
  60. LDEF(end1)
  61. stws,mb %r20,-4(0,%r26)
  62. vshd %r29,%r0,%r20
  63. bv 0(%r2)
  64. stw %r20,-4(0,%r26)
  65. LDEF(end2)
  66. stws,mb %r20,-4(0,%r26)
  67. LDEF(0004)
  68. vshd %r22,%r0,%r20
  69. bv 0(%r2)
  70. stw %r20,-4(0,%r26)
  71. EPILOGUE()