mpir/mpn/x86_64w/nehalem/addadd_n.asm
2009-12-03 17:32:55 +00:00

90 lines
2.5 KiB
NASM

; Copyright 2009 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.
;
; mp_limb_t mpn_addadd_n(mp_ptr, mp_ptr, mp_ptr, mp_ptr, mp_size_t)
; rax rdi rsi rdx rcx r8
; rax rcx rdx r8 r9 [rsp+40]
%include "..\yasm_mac.inc"
%define reg_save_list rbx, rbp, rsi, rdi
CPU Core2
BITS 64
FRAME_PROC mpn_addadd_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, [r8+rbx*8]
add rax, 1
adc rsi, [r9+rbx*8]
sbb rax, rax
add r11, 1
adc rsi, [rdx+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, [r8+rbx*8]
mov rdi, [r8+rbx*8+8]
mov rbp, [r8+rbx*8+16]
mov r10, [r8+rbx*8+24]
adc rsi, [r9+rbx*8]
adc rdi, [r9+rbx*8+8]
adc rbp, [r9+rbx*8+16]
adc r10, [r9+rbx*8+24]
sbb rax, rax
add r11, 1
adc rsi, [rdx+rbx*8]
adc rdi, [rdx+rbx*8+8]
adc rbp, [rdx+rbx*8+16]
adc r10, [rdx+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
.5:
END_PROC reg_save_list
end