2009-01-10 10:15:37 -05:00
|
|
|
|
|
|
|
; Copyright 2008 Brian Gladman
|
2008-06-25 03:33:36 -04:00
|
|
|
;
|
2009-01-10 10:15:37 -05:00
|
|
|
; This file is part of the MPIR Library.
|
2008-06-25 03:33:36 -04:00
|
|
|
;
|
2009-01-10 10:15:37 -05:00
|
|
|
; The MPIR Library is free software; you can redistribute it and/or
|
2008-06-25 03:33:36 -04:00
|
|
|
; modify it under the terms of the GNU Lesser General Public License as
|
|
|
|
; published by the Free Software Foundation; either version 2.1 of the
|
|
|
|
; License, or (at your option) any later version.
|
|
|
|
;
|
2009-01-10 10:15:37 -05:00
|
|
|
; The MPIR Library is distributed in the hope that it will be useful,
|
2008-06-25 03:33:36 -04:00
|
|
|
; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
; Lesser General Public License for more details.
|
|
|
|
;
|
|
|
|
; You should have received a copy of the GNU Lesser General Public
|
2009-01-10 10:15:37 -05:00
|
|
|
; License along with the MPIR Library; see the file COPYING.LIB. If
|
2008-06-25 03:33:36 -04:00
|
|
|
; not, write to the Free Software Foundation, Inc., 51 Franklin Street,
|
|
|
|
; Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-02-22 16:03:08 -05:00
|
|
|
;
|
2008-06-25 03:33:36 -04:00
|
|
|
; x86 mpn_udiv_qrnnd -- 2 by 1 limb division
|
|
|
|
;
|
|
|
|
; mp_limb_t mpn_udiv_qrnnd (
|
|
|
|
; mp_limb_t *remptr, rcx
|
|
|
|
; mp_limb_t high, rdx
|
|
|
|
; mp_limb_t low, r8
|
|
|
|
; mp_limb_t divisor r9
|
|
|
|
; );
|
|
|
|
|
2009-03-07 10:00:35 -05:00
|
|
|
%include "yasm_mac.inc"
|
2008-06-25 03:33:36 -04:00
|
|
|
|
2009-03-07 10:00:35 -05:00
|
|
|
BITS 64
|
2008-06-25 03:33:36 -04:00
|
|
|
|
2009-03-07 10:00:35 -05:00
|
|
|
LEAF_PROC mpn_udiv_qrnnd
|
2008-06-25 03:33:36 -04:00
|
|
|
mov rax,r8
|
|
|
|
div r9
|
|
|
|
mov [rcx],rdx
|
|
|
|
ret
|
|
|
|
|
|
|
|
end
|