Blame mpn/x86_64/coreisbr/popcount.asm

Packit 5c3484
dnl  AMD64 mpn_popcount -- population count.
Packit 5c3484
Packit 5c3484
dnl  Copyright 2008, 2010-2013 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
C		    cycles/limb
Packit 5c3484
C AMD K8,K9		 n/a
Packit 5c3484
C AMD K10		 1.5		slower than 8-way non-pipelined code
Packit 5c3484
C AMD bd1		 4.2
Packit 5c3484
C AMD bobcat		 6.28		slower than 8-way non-pipelined code
Packit 5c3484
C Intel P4		 n/a
Packit 5c3484
C Intel core2		 n/a
Packit 5c3484
C Intel NHM		 1.32
Packit 5c3484
C Intel SBR		 1.05		fluctuating
Packit 5c3484
C Intel IBR		 1.05		fluctuating
Packit 5c3484
C Intel HSW		 1
Packit 5c3484
C Intel atom		 n/a
Packit 5c3484
C VIA nano		 n/a
Packit 5c3484
Packit 5c3484
define(`up',		`%rdi')
Packit 5c3484
define(`n_param',	`%rsi')
Packit 5c3484
Packit 5c3484
define(`n',		`%rcx')
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_popcount)
Packit 5c3484
	FUNC_ENTRY(2)
Packit 5c3484
Packit 5c3484
	lea	(up,n_param,8), up
Packit 5c3484
	xor	R32(%rax), R32(%rax)
Packit 5c3484
Packit 5c3484
	test	$1, R8(n_param)
Packit 5c3484
	jnz	L(bx1)
Packit 5c3484
Packit 5c3484
L(bx0):	test	$2, R8(n_param)
Packit 5c3484
	jnz	L(b10)
Packit 5c3484
Packit 5c3484
L(b00):	mov	$0, R32(n)
Packit 5c3484
	sub	n_param, n
Packit 5c3484
	.byte	0xf3,0x4c,0x0f,0xb8,0x04,0xcf		C popcnt (up,n,8), %r8
Packit 5c3484
	.byte	0xf3,0x4c,0x0f,0xb8,0x4c,0xcf,0x08	C popcnt 8(up,n,8), %r9
Packit 5c3484
	jmp	L(lo0)
Packit 5c3484
Packit 5c3484
L(b10):	mov	$2, R32(n)
Packit 5c3484
	sub	n_param, n
Packit 5c3484
	.byte	0xf3,0x4c,0x0f,0xb8,0x54,0xcf,0xf0	C popcnt -16(up,n,8), %r10
Packit 5c3484
	.byte	0xf3,0x4c,0x0f,0xb8,0x5c,0xcf,0xf8	C popcnt -8(up,n,8), %r11
Packit 5c3484
	test	n, n
Packit 5c3484
	jz	L(cj2)
Packit 5c3484
	jmp	L(lo2)
Packit 5c3484
Packit 5c3484
L(bx1):	test	$2, R8(n_param)
Packit 5c3484
	jnz	L(b11)
Packit 5c3484
Packit 5c3484
L(b01):	mov	$1, R32(n)
Packit 5c3484
	sub	n_param, n
Packit 5c3484
	.byte	0xf3,0x4c,0x0f,0xb8,0x5c,0xcf,0xf8	C popcnt -8(up,n,8), %r11
Packit 5c3484
	test	n, n
Packit 5c3484
	jz	L(cj1)
Packit 5c3484
	.byte	0xf3,0x4c,0x0f,0xb8,0x04,0xcf		C popcnt 0(up,n,8), %r8
Packit 5c3484
	jmp	L(lo1)
Packit 5c3484
Packit 5c3484
L(b11):	mov	$-1, n
Packit 5c3484
	sub	n_param, n
Packit 5c3484
	.byte	0xf3,0x4c,0x0f,0xb8,0x4c,0xcf,0x08	C popcnt 8(up,n,8), %r9
Packit 5c3484
	.byte	0xf3,0x4c,0x0f,0xb8,0x54,0xcf,0x10	C popcnt 16(up,n,8), %r10
Packit 5c3484
	jmp	L(lo3)
Packit 5c3484
Packit 5c3484
	ALIGN(32)
Packit 5c3484
L(top):	add	%r9, %rax
Packit 5c3484
L(lo2):	.byte	0xf3,0x4c,0x0f,0xb8,0x04,0xcf		C popcnt 0(up,n,8), %r8
Packit 5c3484
	add	%r10, %rax
Packit 5c3484
L(lo1):	.byte	0xf3,0x4c,0x0f,0xb8,0x4c,0xcf,0x08	C popcnt 8(up,n,8), %r9
Packit 5c3484
	add	%r11, %rax
Packit 5c3484
L(lo0):	.byte	0xf3,0x4c,0x0f,0xb8,0x54,0xcf,0x10	C popcnt 16(up,n,8), %r10
Packit 5c3484
	add	%r8, %rax
Packit 5c3484
L(lo3):	.byte	0xf3,0x4c,0x0f,0xb8,0x5c,0xcf,0x18	C popcnt 24(up,n,8), %r11
Packit 5c3484
	add	$4, n
Packit 5c3484
	js	L(top)
Packit 5c3484
Packit 5c3484
L(end):	add	%r9, %rax
Packit 5c3484
L(cj2):	add	%r10, %rax
Packit 5c3484
L(cj1):	add	%r11, %rax
Packit 5c3484
	FUNC_EXIT()
Packit 5c3484
	ret
Packit 5c3484
EPILOGUE()
rpm-build 01f633
CF_PROT