x86-64-asm: Add mov[sz]xq opcodes

This adds the zero/sign-extending opcodes with 64bit destinations.
This commit is contained in:
Michael Matz
2016-05-12 00:57:02 +02:00
parent b9f01dffc6
commit 6bd8c936e3
3 changed files with 14 additions and 1 deletions

View File

@ -86,6 +86,13 @@ movl %ebx, %fs
movzb 0x1000, %eax
movzb 0x1000, %ax
#ifdef __x86_64__
movzb 0x1000, %rax
movzbq 0x1000, %rbx
movsbq 0x1000, %rdx
movzwq 0x1000, %rdi
movswq 0x1000, %rdx
#endif
#ifdef __i386__
pushl %eax