popcnt.asm 498 B

1234567891011121314151617181920212223242526272829303132
  1. ;Testname=test; Arguments=-fbin -opopcnt.bin; Files=stdout stderr popcnt.bin
  2. bits 16
  3. popcnt ax,cx
  4. popcnt ax,[si]
  5. popcnt ax,word [si]
  6. popcnt eax,ecx
  7. popcnt eax,[si]
  8. popcnt eax,dword [si]
  9. bits 32
  10. popcnt ax,cx
  11. popcnt ax,[esi]
  12. popcnt ax,word [esi]
  13. popcnt eax,ecx
  14. popcnt eax,[esi]
  15. popcnt eax,dword [esi]
  16. bits 64
  17. popcnt ax,cx
  18. popcnt ax,[rsi]
  19. popcnt ax,word [rsi]
  20. popcnt eax,ecx
  21. popcnt eax,[rsi]
  22. popcnt eax,dword [rsi]
  23. popcnt rax,rcx
  24. popcnt rax,[rsi]
  25. popcnt rax,qword [rsi]