Add x86 unpack instructions
This commit is contained in:
@@ -537,6 +537,30 @@ pub static PSUBUSW: [u8; 3] = [0x66, 0x0f, 0xd9];
|
||||
/// 0s (SSE4.1).
|
||||
pub static PTEST: [u8; 4] = [0x66, 0x0f, 0x38, 0x17];
|
||||
|
||||
/// Unpack and interleave high-order bytes from xmm1 and xmm2/m128 into xmm1 (SSE2).
|
||||
pub static PUNPCKHBW: [u8; 3] = [0x66, 0x0f, 0x68];
|
||||
|
||||
/// Unpack and interleave high-order words from xmm1 and xmm2/m128 into xmm1 (SSE2).
|
||||
pub static PUNPCKHWD: [u8; 3] = [0x66, 0x0f, 0x69];
|
||||
|
||||
/// Unpack and interleave high-order doublewords from xmm1 and xmm2/m128 into xmm1 (SSE2).
|
||||
pub static PUNPCKHDQ: [u8; 3] = [0x66, 0x0f, 0x6A];
|
||||
|
||||
/// Unpack and interleave high-order quadwords from xmm1 and xmm2/m128 into xmm1 (SSE2).
|
||||
pub static PUNPCKHQDQ: [u8; 3] = [0x66, 0x0f, 0x6D];
|
||||
|
||||
/// Unpack and interleave low-order bytes from xmm1 and xmm2/m128 into xmm1 (SSE2).
|
||||
pub static PUNPCKLBW: [u8; 3] = [0x66, 0x0f, 0x60];
|
||||
|
||||
/// Unpack and interleave low-order words from xmm1 and xmm2/m128 into xmm1 (SSE2).
|
||||
pub static PUNPCKLWD: [u8; 3] = [0x66, 0x0f, 0x61];
|
||||
|
||||
/// Unpack and interleave low-order doublewords from xmm1 and xmm2/m128 into xmm1 (SSE2).
|
||||
pub static PUNPCKLDQ: [u8; 3] = [0x66, 0x0f, 0x62];
|
||||
|
||||
/// Unpack and interleave low-order quadwords from xmm1 and xmm2/m128 into xmm1 (SSE2).
|
||||
pub static PUNPCKLQDQ: [u8; 3] = [0x66, 0x0f, 0x6C];
|
||||
|
||||
/// Push r{16,32,64}.
|
||||
pub static PUSH_REG: [u8; 1] = [0x50];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user