2013-08-04 18:17:37 -04:00
|
|
|
; PROLOGUE(mpn_udiv_qrnnd)
|
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
|
|
|
;
|
2009-09-02 07:41:43 -04:00
|
|
|
; mp_limb_t mpn_udiv_qrnnd(mp_ptr, mp_limb_t, mp_limb_t, mp_limb_t)
|
|
|
|
; rax rdi rsi rdx rcx
|
|
|
|
; rax rcx rdx r8 r9
|
2008-06-25 03:33:36 -04:00
|
|
|
|
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
|