Blame mpn/x86_64/com.asm

Packit 5c3484
dnl  AMD64 mpn_com.
Packit 5c3484
Packit 5c3484
dnl  Copyright 2004-2006, 2011, 2012 Free Software Foundation, Inc.
Packit 5c3484
Packit 5c3484
dnl  This file is part of the GNU MP Library.
Packit 5c3484
dnl
Packit 5c3484
dnl  The GNU MP Library is free software; you can redistribute it and/or modify
Packit 5c3484
dnl  it under the terms of either:
Packit 5c3484
dnl
Packit 5c3484
dnl    * the GNU Lesser General Public License as published by the Free
Packit 5c3484
dnl      Software Foundation; either version 3 of the License, or (at your
Packit 5c3484
dnl      option) any later version.
Packit 5c3484
dnl
Packit 5c3484
dnl  or
Packit 5c3484
dnl
Packit 5c3484
dnl    * the GNU General Public License as published by the Free Software
Packit 5c3484
dnl      Foundation; either version 2 of the License, or (at your option) any
Packit 5c3484
dnl      later version.
Packit 5c3484
dnl
Packit 5c3484
dnl  or both in parallel, as here.
Packit 5c3484
dnl
Packit 5c3484
dnl  The GNU MP Library is distributed in the hope that it will be useful, but
Packit 5c3484
dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
Packit 5c3484
dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
Packit 5c3484
dnl  for more details.
Packit 5c3484
dnl
Packit 5c3484
dnl  You should have received copies of the GNU General Public License and the
Packit 5c3484
dnl  GNU Lesser General Public License along with the GNU MP Library.  If not,
Packit 5c3484
dnl  see https://www.gnu.org/licenses/.
Packit 5c3484
Packit 5c3484
include(`../config.m4')
Packit 5c3484
Packit 5c3484
Packit 5c3484
C	    cycles/limb
Packit 5c3484
C AMD K8,K9	 1.25
Packit 5c3484
C AMD K10	 1.25
Packit 5c3484
C Intel P4	 2.78
Packit 5c3484
C Intel core2	 1.1
Packit 5c3484
C Intel corei	 1.5
Packit 5c3484
C Intel atom	 ?
Packit 5c3484
C VIA nano	 2
Packit 5c3484
Packit 5c3484
C INPUT PARAMETERS
Packit 5c3484
define(`rp',`%rdi')
Packit 5c3484
define(`up',`%rsi')
Packit 5c3484
define(`n',`%rdx')
Packit 5c3484
Packit 5c3484
ABI_SUPPORT(DOS64)
Packit 5c3484
ABI_SUPPORT(STD64)
Packit 5c3484
Packit 5c3484
ASM_START()
Packit 5c3484
	TEXT
Packit 5c3484
	ALIGN(32)
Packit 5c3484
PROLOGUE(mpn_com)
Packit 5c3484
	FUNC_ENTRY(3)
Packit 5c3484
	movq	(up), %r8
Packit 5c3484
	movl	R32(%rdx), R32(%rax)
Packit 5c3484
	leaq	(up,n,8), up
Packit 5c3484
	leaq	(rp,n,8), rp
Packit 5c3484
	negq	n
Packit 5c3484
	andl	$3, R32(%rax)
Packit 5c3484
	je	L(b00)
Packit 5c3484
	cmpl	$2, R32(%rax)
Packit 5c3484
	jc	L(b01)
Packit 5c3484
	je	L(b10)
Packit 5c3484
Packit 5c3484
L(b11):	notq	%r8
Packit 5c3484
	movq	%r8, (rp,n,8)
Packit 5c3484
	decq	n
Packit 5c3484
	jmp	L(e11)
Packit 5c3484
L(b10):	addq	$-2, n
Packit 5c3484
	jmp	L(e10)
Packit 5c3484
	.byte	0x90,0x90,0x90,0x90,0x90,0x90
Packit 5c3484
L(b01):	notq	%r8
Packit 5c3484
	movq	%r8, (rp,n,8)
Packit 5c3484
	incq	n
Packit 5c3484
	jz	L(ret)
Packit 5c3484
Packit 5c3484
L(oop):	movq	(up,n,8), %r8
Packit 5c3484
L(b00):	movq	8(up,n,8), %r9
Packit 5c3484
	notq	%r8
Packit 5c3484
	notq	%r9
Packit 5c3484
	movq	%r8, (rp,n,8)
Packit 5c3484
	movq	%r9, 8(rp,n,8)
Packit 5c3484
L(e11):	movq	16(up,n,8), %r8
Packit 5c3484
L(e10):	movq	24(up,n,8), %r9
Packit 5c3484
	notq	%r8
Packit 5c3484
	notq	%r9
Packit 5c3484
	movq	%r8, 16(rp,n,8)
Packit 5c3484
	movq	%r9, 24(rp,n,8)
Packit 5c3484
	addq	$4, n
Packit 5c3484
	jnc	L(oop)
Packit 5c3484
L(ret):	FUNC_EXIT()
Packit 5c3484
	ret
Packit 5c3484
EPILOGUE()