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

数学计算

开发平台:

Unix_Linux

  1. dnl  x86 mpn_udiv_qrnnd -- 2 by 1 limb division
  2. dnl  Copyright 1999, 2000, 2002 Free Software Foundation, Inc.
  3. dnl
  4. dnl  This file is part of the GNU MP Library.
  5. dnl
  6. dnl  The GNU MP Library is free software; you can redistribute it and/or
  7. dnl  modify it under the terms of the GNU Lesser General Public License as
  8. dnl  published by the Free Software Foundation; either version 3 of the
  9. dnl  License, or (at your option) any later version.
  10. dnl
  11. dnl  The GNU MP Library is distributed in the hope that it will be useful,
  12. dnl  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. dnl  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14. dnl  Lesser General Public License for more details.
  15. dnl
  16. dnl  You should have received a copy of the GNU Lesser General Public License
  17. dnl  along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
  18. include(`../config.m4')
  19. C mp_limb_t mpn_udiv_qrnnd (mp_limb_t *remptr, mp_limb_t high, mp_limb_t low,
  20. C                           mp_limb_t divisor);
  21. defframe(PARAM_DIVISOR, 16)
  22. defframe(PARAM_LOW,     12)
  23. defframe(PARAM_HIGH,    8)
  24. defframe(PARAM_REMPTR,  4)
  25. TEXT
  26. ALIGN(8)
  27. PROLOGUE(mpn_udiv_qrnnd)
  28. deflit(`FRAME',0)
  29. movl PARAM_LOW, %eax
  30. movl PARAM_HIGH, %edx
  31. divl PARAM_DIVISOR
  32. movl PARAM_REMPTR, %ecx
  33. movl %edx, (%ecx)
  34. ret
  35. EPILOGUE()