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

数学计算

开发平台:

Unix_Linux

  1. dnl  Alpha auxiliary for longlong.h's count_leading_zeros
  2. dnl  Copyright 1997, 2000, 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. ASM_START()
  16. EXTERN(__clz_tab)
  17. PROLOGUE(mpn_count_leading_zeros,gp)
  18. cmpbge r31,  r16, r1
  19. LEA(r3,__clz_tab)
  20. sra r1,   1,   r1
  21. xor r1,   127, r1
  22. srl r16,  1,   r16
  23. addq r1,   r3,  r1
  24. ldq_u r0,   0(r1)
  25. lda r2,   64
  26. extbl r0,   r1,   r0
  27. s8subl r0,   8,    r0
  28. srl r16,  r0,   r16
  29. addq r16,  r3,   r16
  30. ldq_u r1,   0(r16)
  31. extbl r1,   r16,  r1
  32. subq r2,   r1,   r2
  33. subq r2,   r0,   r0
  34. ret r31,  (r26),1
  35. EPILOGUE(mpn_count_leading_zeros)
  36. ASM_END()