summaryrefslogtreecommitdiff
path: root/mpn/x86_64/core2/popcount.asm
blob: 39d8c5ded1b00e7973fd782b8b1dadba29a347dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
dnl  AMD64 SSSE3 mpn_popcount -- population count.

dnl  Copyright 2010-2017 Free Software Foundation, Inc.

dnl  This file is part of the GNU MP Library.
dnl
dnl  The GNU MP Library is free software; you can redistribute it and/or modify
dnl  it under the terms of either:
dnl
dnl    * the GNU Lesser General Public License as published by the Free
dnl      Software Foundation; either version 3 of the License, or (at your
dnl      option) any later version.
dnl
dnl  or
dnl
dnl    * the GNU General Public License as published by the Free Software
dnl      Foundation; either version 2 of the License, or (at your option) any
dnl      later version.
dnl
dnl  or both in parallel, as here.
dnl
dnl  The GNU MP Library is distributed in the hope that it will be useful, but
dnl  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
dnl  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
dnl  for more details.
dnl
dnl  You should have received copies of the GNU General Public License and the
dnl  GNU Lesser General Public License along with the GNU MP Library.  If not,
dnl  see https://www.gnu.org/licenses/.


include(`../config.m4')

C		    cycles/limb	  good for cpu?
C AMD K8,K9		n/a
C AMD K10		n/a
C AMD bd1	     1.79-1.91		n
C AMD bd2	     1.73-1.85		n
C AMD bd3		 ?
C AMD bd4	     1.73-1.85		n
C AMD zen		 1.47		n
C AMD bobcat		 8.0		n
C AMD jaguar		 4.78		n
C Intel P4		n/a
C Intel CNR		 3.75
C Intel PNR		 2.61		y
C Intel NHM		 2.03		n
C Intel SBR		 1.87		n
C Intel IBR	     1.52-1.58		n
C Intel HWL	     1.52-1.58		n
C Intel BWL	     1.52-1.58		n
C Intel SKL		 1.51		n
C Intel atom		12.3		n
C Intel SLM		 9.1		n
C VIA nano		 ?

C TODO
C  * This was hand-written without too much thought about optimal insn
C    selection; check to see of it can be improved.
C  * Consider doing some instruction scheduling.

define(`up',		`%rdi')
define(`n',		`%rsi')

ASM_START()
	TEXT
	ALIGN(32)
PROLOGUE(mpn_popcount)
	lea	L(cnsts)(%rip), %r9

ifdef(`PIC', `define(`OFF1',32) define(`OFF2',48)',
	     `define(`OFF1',64) define(`OFF2',80)')
	movdqa	OFF1`'(%r9), %xmm7
	movdqa	OFF2`'(%r9), %xmm6
	pxor	%xmm4, %xmm4
	pxor	%xmm5, %xmm5
	pxor	%xmm8, %xmm8

	mov	R32(n), R32(%rax)
	and	$7, R32(%rax)
ifdef(`PIC',`
	movslq	(%r9,%rax,4), %rax
	add	%r9, %rax
	jmp	*%rax
',`
	jmp	*(%r9,%rax,8)
')

L(1):	movq	(up), %xmm1
	add	$8, up
	jmp	L(e1)

L(2):	add	$-48, up
	jmp	L(e2)

L(3):	movq	(up), %xmm1
	add	$-40, up
	jmp	L(e3)

L(4):	add	$-32, up
	jmp	L(e4)

L(5):	movq	(up), %xmm1
	add	$-24, up
	jmp	L(e5)

L(6):	add	$-16, up
	jmp	L(e6)

L(7):	movq	(up), %xmm1
	add	$-8, up
	jmp	L(e7)

	ALIGN(32)
L(top):	lddqu	(up), %xmm1
L(e7):	movdqa	%xmm6, %xmm0		C copy mask register
	movdqa	%xmm7, %xmm2		C copy count register
	movdqa	%xmm7, %xmm3		C copy count register
	pand	%xmm1, %xmm0
	psrlw	$4, %xmm1
	pand	%xmm6, %xmm1
	pshufb	%xmm0, %xmm2
	pshufb	%xmm1, %xmm3
	paddb	%xmm2, %xmm3
	paddb	%xmm3, %xmm4
L(e6):	lddqu	16(up), %xmm1
L(e5):	movdqa	%xmm6, %xmm0
	movdqa	%xmm7, %xmm2
	movdqa	%xmm7, %xmm3
	pand	%xmm1, %xmm0
	psrlw	$4, %xmm1
	pand	%xmm6, %xmm1
	pshufb	%xmm0, %xmm2
	pshufb	%xmm1, %xmm3
	paddb	%xmm2, %xmm3
	paddb	%xmm3, %xmm4
L(e4):	lddqu	32(up), %xmm1
L(e3):	movdqa	%xmm6, %xmm0
	movdqa	%xmm7, %xmm2
	movdqa	%xmm7, %xmm3
	pand	%xmm1, %xmm0
	psrlw	$4, %xmm1
	pand	%xmm6, %xmm1
	pshufb	%xmm0, %xmm2
	pshufb	%xmm1, %xmm3
	paddb	%xmm2, %xmm3
	paddb	%xmm3, %xmm4
L(e2):	lddqu	48(up), %xmm1
	add	$64, up
L(e1):	movdqa	%xmm6, %xmm0
	movdqa	%xmm7, %xmm2
	movdqa	%xmm7, %xmm3
	pand	%xmm1, %xmm0
	psrlw	$4, %xmm1
	pand	%xmm6, %xmm1
	pshufb	%xmm0, %xmm2
	pshufb	%xmm1, %xmm3
	psadbw	%xmm5, %xmm4		C sum to 8 x 16-bit counts
	paddb	%xmm2, %xmm3
	paddq	%xmm4, %xmm8		C sum to 2 x 64-bit counts
	movdqa	%xmm3, %xmm4
	sub	$8, n
	jg	L(top)

	psadbw	%xmm5, %xmm4
	paddq	%xmm4, %xmm8
	pshufd	$14, %xmm8, %xmm0
	paddq	%xmm8, %xmm0
	movq	%xmm0, %rax
	ret
EPILOGUE()
DEF_OBJECT(L(cnsts),16,`JUMPTABSECT')
	JMPENT(	L(top), L(cnsts))
	JMPENT(	L(1), L(cnsts))
	JMPENT(	L(2), L(cnsts))
	JMPENT(	L(3), L(cnsts))
	JMPENT(	L(4), L(cnsts))
	JMPENT(	L(5), L(cnsts))
	JMPENT(	L(6), L(cnsts))
	JMPENT(	L(7), L(cnsts))
	.byte	0x00,0x01,0x01,0x02,0x01,0x02,0x02,0x03
	.byte	0x01,0x02,0x02,0x03,0x02,0x03,0x03,0x04
	.byte	0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f
	.byte	0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f,0x0f
END_OBJECT(L(cnsts))