Blame mpn/x86/udiv.asm

Packit 5c3484
dnl  x86 mpn_udiv_qrnnd -- 2 by 1 limb division
Packit 5c3484
Packit 5c3484
dnl  Copyright 1999, 2000, 2002 Free Software Foundation, Inc.
Packit 5c3484
Packit 5c3484
dnl  This file is part of the GNU MP Library.
Packit 5c3484
dnl
Packit 5c3484
dnl  The GNU MP Library is free software; you can redistribute it and/or modify
Packit 5c3484
dnl  it under the terms of either:
Packit 5c3484
dnl
Packit 5c3484
dnl    * the GNU Lesser General Public License as published by the Free
Packit 5c3484
dnl      Software Foundation; either version 3 of the License, or (at your
Packit 5c3484
dnl      option) any later version.
Packit 5c3484
dnl
Packit 5c3484
dnl  or
Packit 5c3484
dnl
Packit 5c3484
dnl    * the GNU General Public License as published by the Free Software
Packit 5c3484
dnl      Foundation; either version 2 of the License, or (at your option) any
Packit 5c3484
dnl      later version.
Packit 5c3484
dnl
Packit 5c3484
dnl  or both in parallel, as here.
Packit 5c3484
dnl
Packit 5c3484
dnl  The GNU MP Library is distributed in the hope that it will be useful, but
Packit 5c3484
dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
Packit 5c3484
dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
Packit 5c3484
dnl  for more details.
Packit 5c3484
dnl
Packit 5c3484
dnl  You should have received copies of the GNU General Public License and the
Packit 5c3484
dnl  GNU Lesser General Public License along with the GNU MP Library.  If not,
Packit 5c3484
dnl  see https://www.gnu.org/licenses/.
Packit 5c3484
Packit 5c3484
include(`../config.m4')
Packit 5c3484
Packit 5c3484
Packit 5c3484
C mp_limb_t mpn_udiv_qrnnd (mp_limb_t *remptr, mp_limb_t high, mp_limb_t low,
Packit 5c3484
C                           mp_limb_t divisor);
Packit 5c3484
Packit 5c3484
defframe(PARAM_DIVISOR, 16)
Packit 5c3484
defframe(PARAM_LOW,     12)
Packit 5c3484
defframe(PARAM_HIGH,    8)
Packit 5c3484
defframe(PARAM_REMPTR,  4)
Packit 5c3484
Packit 5c3484
	TEXT
Packit 5c3484
	ALIGN(8)
Packit 5c3484
PROLOGUE(mpn_udiv_qrnnd)
Packit 5c3484
deflit(`FRAME',0)
Packit 5c3484
	movl	PARAM_LOW, %eax
Packit 5c3484
	movl	PARAM_HIGH, %edx
Packit 5c3484
	divl	PARAM_DIVISOR
Packit 5c3484
	movl	PARAM_REMPTR, %ecx
Packit 5c3484
	movl	%edx, (%ecx)
Packit 5c3484
	ret
Packit 5c3484
EPILOGUE()