diff options
Diffstat (limited to 'compiler/utils/x86/assembler_x86.h')
-rw-r--r-- | compiler/utils/x86/assembler_x86.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/utils/x86/assembler_x86.h b/compiler/utils/x86/assembler_x86.h index 8578340ea7..511eeb9973 100644 --- a/compiler/utils/x86/assembler_x86.h +++ b/compiler/utils/x86/assembler_x86.h @@ -546,6 +546,11 @@ class X86Assembler FINAL : public Assembler { void punpckldq(XmmRegister dst, XmmRegister src); void punpcklqdq(XmmRegister dst, XmmRegister src); + void punpckhbw(XmmRegister dst, XmmRegister src); + void punpckhwd(XmmRegister dst, XmmRegister src); + void punpckhdq(XmmRegister dst, XmmRegister src); + void punpckhqdq(XmmRegister dst, XmmRegister src); + void psllw(XmmRegister reg, const Immediate& shift_count); void pslld(XmmRegister reg, const Immediate& shift_count); void psllq(XmmRegister reg, const Immediate& shift_count); |