mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-10-10 00:25:06 -04:00
test/popcnt.asm: simple test for the POPCNT instruction
Very simple test of POPCNT instructions. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
32
test/popcnt.asm
Normal file
32
test/popcnt.asm
Normal file
@@ -0,0 +1,32 @@
|
||||
;Testname=test; Arguments=-fbin -opopcnt.bin; Files=stdout stderr popcnt.bin
|
||||
|
||||
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]
|
||||
|
Reference in New Issue
Block a user