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

数学计算

开发平台:

Unix_Linux

  1. dnl  SPARC v9 32-bit mpn_udiv_qrnnd - division support for longlong.h.
  2. dnl  Copyright 2002, 2003 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 rem_ptr o0
  17. C n1 o1
  18. C n0 o2
  19. C d o3
  20. ASM_START()
  21. PROLOGUE(mpn_udiv_qrnnd)
  22. sllx %o1, 32, %g1 C shift upper dividend limb
  23. srl %o2, 0, %g2 C zero extend lower dividend limb
  24. srl %o3, 0, %g3 C zero extend divisor
  25. or %g2, %g1, %g1 C assemble 64-bit dividend
  26. udivx %g1, %g3, %g1
  27. mulx %g1, %g3, %g4
  28. sub %g2, %g4, %g2
  29. st %g2, [%o0] C store remainder
  30. retl
  31. mov %g1, %o0 C return quotient
  32. EPILOGUE(mpn_udiv_qrnnd)