mpir/mpn/x86_64w/core2/subadd_n.asm
2009-04-17 20:36:47 +00:00

100 lines
2.6 KiB
NASM

; AMD64 mpn_subadd_n
; Version 1.0.4
;
; Copyright 2008 Jason Moxham
;
; Windows Conversion Copyright 2008 Brian Gladman
;
; This file is part of the MPIR Library.
; The MPIR Library is free software; you can redistribute it and/or 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.
; The MPIR Library is distributed in the hope that it will be useful, 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 License
; along with the MPIR Library; see the file COPYING.LIB. If not, write
; to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
; Boston, MA 02110-1301, USA.
;
; Calling interface (GCC):
;
; rcx[rbx] = rdx[rbx] - r8[rbx] + r9[rbx]
;
; return carry
;
; mp_limb_t __gmpn_subadd_n(
; mp_ptr dp, rcx
; mp_srcptr sp1, rdx
; mp_srcptr sp2, r8
; mp_srcptr sp3, r9
; mp_size_t len [rsp+0x28] -> rbx
; )
;
; This is an SEH frame function
%include "..\yasm_mac.inc"
%define reg_save_list rbx, rbp, rsi, rdi
CPU Athlon64
BITS 64
FRAME_PROC mpn_subadd_n, 0, reg_save_list
movsxd rbx, dword [rsp+stack_use+40]
lea rdx, [rdx+rbx*8]
lea r8, [r8+rbx*8]
lea rcx, [rcx+rbx*8]
lea r9, [r9+rbx*8]
neg rbx
xor rax, rax
xor r11, r11
test rbx, 3
jz .2
.1: mov rsi, [rdx+rbx*8]
add rax, 1
sbb rsi, [r9+rbx*8]
sbb rax, rax
add r11, 1
sbb rsi, [r8+rbx*8]
sbb r11, r11
mov [rcx+rbx*8], rsi
add rbx, 1
test rbx, 3
jnz .1
.2: cmp rbx, 0
jz .4
xalign 16
.3: add rax, 1
mov rsi, [rdx+rbx*8]
mov rdi, [rdx+rbx*8+8]
mov rbp, [rdx+rbx*8+16]
mov r10, [rdx+rbx*8+24]
sbb rsi, [r9+rbx*8]
sbb rdi, [r9+rbx*8+8]
sbb rbp, [r9+rbx*8+16]
sbb r10, [r9+rbx*8+24]
sbb rax, rax
add r11, 1
sbb rsi, [r8+rbx*8]
sbb rdi, [r8+rbx*8+8]
sbb rbp, [r8+rbx*8+16]
sbb r10, [r8+rbx*8+24]
mov [rcx+rbx*8], rsi
mov [rcx+rbx*8+8], rdi
mov [rcx+rbx*8+16], rbp
mov [rcx+rbx*8+24], r10
sbb r11, r11
add rbx, 4
jnz .3
.4: add rax, r11
neg rax
END_PROC reg_save_list
end