summaryrefslogtreecommitdiff
path: root/travis/test/popcnt.asm
blob: 54e32f3320e8c6e52bb089d437c558d9a2d67668 (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
	bits 16

	popcnt ax,cx
	popcnt ax,[si]
	popcnt ax,word [si]
	popcnt eax,ecx
	popcnt eax,[si]
	popcnt eax,dword [si]

	bits 32

	popcnt ax,cx
	popcnt ax,[esi]
	popcnt ax,word [esi]
	popcnt eax,ecx
	popcnt eax,[esi]
	popcnt eax,dword [esi]

	bits 64

	popcnt ax,cx
	popcnt ax,[rsi]
	popcnt ax,word [rsi]
	popcnt eax,ecx
	popcnt eax,[rsi]
	popcnt eax,dword [rsi]
	popcnt rax,rcx
	popcnt rax,[rsi]
	popcnt rax,qword [rsi]