mpir/mpn/x86_64w/mul_2.asm
gladman 1485e3dc1b 1. Add Jason's new assembler code to the Windows builds
2. Tidy up assembler to prepare for Windows nehalem build
2009-12-02 16:24:00 +00:00

147 lines
3.3 KiB
NASM

; X86_64 mpn_mul_2
;
; 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.
;
; mp_limb_t mpn_mul_2(mp_ptr, mp_ptr, mp_size_t, mp_limb_t)
; rax rdi rsi rdx rcx
; rax rcx rdx r8d r9
%include "yasm_mac.inc"
%define reg_save_list rsi, rdi, rbx
BITS 64
FRAME_PROC mpn_mul_2, 0, reg_save_list
movsxd rax, r8d
mov r8, [r9]
lea rsi, [rdx+rax*8-24]
lea rdi, [rcx+rax*8-24]
mov rcx, [r9+8]
mov rbx, 3
sub rbx, rax
mov r10, 0
mov rax, [rsi+rbx*8]
mul r8
mov r11, rax
mov r9, rdx
cmp rbx, 0
jge .2
xalign 16
.1:
mov rax, [rsi+rbx*8]
mov [rdi+rbx*8], r11
mul rcx
add r9, rax
adc r10, rdx
mov r11, 0
mov rax, [rsi+rbx*8+8]
mul r8
add r9, rax
mov rax, [rsi+rbx*8+8]
adc r10, rdx
adc r11, 0
mul rcx
add r10, rax
mov [rdi+rbx*8+8], r9
adc r11, rdx
mov rax, [rsi+rbx*8+16]
mul r8
mov r9, 0
add r10, rax
mov rax, [rsi+rbx*8+16]
adc r11, rdx
mov [rdi+rbx*8+16], r10
mov r10, 0
adc r9, 0
mul rcx
add r11, rax
mov rax, [rsi+rbx*8+24]
adc r9, rdx
mul r8
add r11, rax
adc r9, rdx
adc r10, 0
add rbx, 3
jnc .1
.2:
mov rax, [rsi+rbx*8]
mov [rdi+rbx*8], r11
mul rcx
add r9, rax
adc r10, rdx
cmp rbx, 1
ja .5
je .4
.3:
mov r11, 0
mov rax, [rsi+rbx*8+8]
mul r8
add r9, rax
mov rax, [rsi+rbx*8+8]
adc r10, rdx
adc r11, 0
mul rcx
add r10, rax
mov [rdi+rbx*8+8], r9
adc r11, rdx
mov rax, [rsi+rbx*8+16]
mul r8
mov r9, 0
add r10, rax
mov rax, [rsi+rbx*8+16]
adc r11, rdx
mov [rdi+rbx*8+16], r10
adc r9, 0
mul rcx
add r11, rax
adc r9, rdx
mov [rdi+rbx*8+24], r11
mov rax, r9
jmp .6
xalign 16
.4:
mov r11, 0
mov rax, [rsi+rbx*8+8]
mul r8
add r9, rax
mov rax, [rsi+rbx*8+8]
adc r10, rdx
adc r11, 0
mul rcx
add r10, rax
mov [rdi+rbx*8+8], r9
adc r11, rdx
mov [rdi+rbx*8+16], r10
mov rax, r11
jmp .6
xalign 16
.5:
mov [rdi+rbx*8+8], r9
mov rax, r10
.6:
END_PROC reg_save_list
end