mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-04 10:04:33 +00:00
Allow non-AVX form of pmovmskb to take a GR64 operand.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192341 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
369cc505e0
commit
15de63cfde
@ -4314,6 +4314,8 @@ def PMOVMSKBrr : PDI<0xD7, MRMSrcReg, (outs GR32:$dst), (ins VR128:$src),
|
||||
"pmovmskb\t{$src, $dst|$dst, $src}",
|
||||
[(set GR32:$dst, (int_x86_sse2_pmovmskb_128 VR128:$src))],
|
||||
IIC_SSE_MOVMSK>;
|
||||
def PMOVMSKBr64r : PDI<0xD7, MRMSrcReg, (outs GR64:$dst), (ins VR128:$src),
|
||||
"pmovmskb\t{$src, $dst|$dst, $src}", [], IIC_SSE_MOVMSK>;
|
||||
|
||||
} // ExeDomain = SSEPackedInt
|
||||
|
||||
|
@ -231,3 +231,7 @@ sha256msg2 (%rax), %xmm2
|
||||
// CHECK: filds (%rdi)
|
||||
// CHECK: encoding: [0xdf,0x07]
|
||||
filds (%rdi)
|
||||
|
||||
// CHECK: pmovmskb %xmm5, %rcx
|
||||
// CHECK: encoding: [0x66,0x0f,0xd7,0xcd]
|
||||
pmovmskb %xmm5,%rcx
|
||||
|
Loading…
Reference in New Issue
Block a user