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

数学计算

开发平台:

Unix_Linux

  1. dnl  IBM POWER mpn_lshift -- Shift a number left.
  2. dnl  Copyright 1992, 1994, 1999, 2000, 2001 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. dnl  INPUT PARAMETERS
  15. dnl  res_ptr r3
  16. dnl  s_ptr r4
  17. dnl  size r5
  18. dnl  cnt r6
  19. include(`../config.m4')
  20. ASM_START()
  21. PROLOGUE(mpn_lshift)
  22. sli 0,5,2
  23. cax 9,3,0
  24. cax 4,4,0
  25. sfi 8,6,32
  26. mtctr 5 C put limb count in CTR loop register
  27. lu 0,-4(4) C read most significant limb
  28. sre 3,0,8 C compute carry out limb, and init MQ register
  29. bdz Lend2 C if just one limb, skip loop
  30. lu 0,-4(4) C read 2:nd most significant limb
  31. sreq 7,0,8 C compute most significant limb of result
  32. bdz Lend C if just two limb, skip loop
  33. Loop: lu 0,-4(4) C load next lower limb
  34. stu 7,-4(9) C store previous result during read latency
  35. sreq 7,0,8 C compute result limb
  36. bdn Loop C loop back until CTR is zero
  37. Lend: stu 7,-4(9) C store 2:nd least significant limb
  38. Lend2: sle 7,0,6 C compute least significant limb
  39. st 7,-4(9) C store it
  40. br
  41. EPILOGUE(mpn_lshift)