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

数学计算

开发平台:

Unix_Linux

  1. dnl  IBM POWER mpn_rshift -- Shift a number right.
  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_rshift)
  22. sfi 8,6,32
  23. mtctr 5 C put limb count in CTR loop register
  24. l 0,0(4) C read least significant limb
  25. ai 9,3,-4 C adjust res_ptr since it's offset in the stu:s
  26. sle 3,0,8 C compute carry limb, and init MQ register
  27. bdz Lend2 C if just one limb, skip loop
  28. lu 0,4(4) C read 2:nd least significant limb
  29. sleq 7,0,8 C compute least significant limb of result
  30. bdz Lend C if just two limb, skip loop
  31. Loop: lu 0,4(4) C load next higher limb
  32. stu 7,4(9) C store previous result during read latency
  33. sleq 7,0,8 C compute result limb
  34. bdn Loop C loop back until CTR is zero
  35. Lend: stu 7,4(9) C store 2:nd most significant limb
  36. Lend2: sre 7,0,6 C compute most significant limb
  37. st 7,4(9) C store it
  38. br
  39. EPILOGUE(mpn_rshift)