use crate::*;
const DATA_ADDR: u64 = 0x3000;
#[test]
fn test_pextrw_eax_xmm0_pos0() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xc0, 0x00, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_eax_xmm0_pos1() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xc0, 0x01, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_eax_xmm0_pos2() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xc0, 0x02, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_eax_xmm0_pos3() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xc0, 0x03, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_eax_xmm0_pos4() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xc0, 0x04, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_eax_xmm0_pos5() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xc0, 0x05, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_eax_xmm0_pos6() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xc0, 0x06, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_eax_xmm0_pos7() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xc0, 0x07, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_eax_xmm1_pos0() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xc1, 0x00, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_eax_xmm1_pos3() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xc1, 0x03, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_eax_xmm2_pos5() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xc2, 0x05, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_eax_xmm3_pos7() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xc3, 0x07, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_eax_xmm4_pos2() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xc4, 0x02, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_eax_xmm5_pos4() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xc5, 0x04, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_eax_xmm6_pos6() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xc6, 0x06, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_eax_xmm7_pos1() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xc7, 0x01, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_ebx_xmm0_pos3() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xd8, 0x03, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_ecx_xmm1_pos5() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xc9, 0x05, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_edx_xmm2_pos2() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xd2, 0x02, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_esi_xmm3_pos7() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xf3, 0x07, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_edi_xmm4_pos4() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xfc, 0x04, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_eax_xmm8_pos0() {
let mut emu = emu64();
let code = [0x66, 0x44, 0x0f, 0xc5, 0xc0, 0x00, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_eax_xmm9_pos3() {
let mut emu = emu64();
let code = [0x66, 0x44, 0x0f, 0xc5, 0xc8, 0x03, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_eax_xmm10_pos5() {
let mut emu = emu64();
let code = [0x66, 0x44, 0x0f, 0xc5, 0xd0, 0x05, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_eax_xmm15_pos7() {
let mut emu = emu64();
let code = [0x66, 0x44, 0x0f, 0xc5, 0xf8, 0x07, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_r8d_xmm0_pos1() {
let mut emu = emu64();
let code = [0x66, 0x41, 0x0f, 0xc5, 0xc0, 0x01, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_r15d_xmm7_pos6() {
let mut emu = emu64();
let code = [0x66, 0x41, 0x0f, 0xc5, 0xff, 0x06, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_mem_xmm0_pos0() {
let mut emu = emu64();
let code = [
0x66, 0x0f, 0x3a, 0x15, 0x04, 0x25, 0x00, 0x30, 0x00, 0x00, 0x00, 0xf4
]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_mem_xmm0_pos1() {
let mut emu = emu64();
let code = [
0x66, 0x0f, 0x3a, 0x15, 0x04, 0x25, 0x00, 0x30, 0x00, 0x00, 0x01, 0xf4
]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_mem_xmm0_pos2() {
let mut emu = emu64();
let code = [
0x66, 0x0f, 0x3a, 0x15, 0x04, 0x25, 0x00, 0x30, 0x00, 0x00, 0x02, 0xf4
]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_mem_xmm0_pos3() {
let mut emu = emu64();
let code = [
0x66, 0x0f, 0x3a, 0x15, 0x04, 0x25, 0x00, 0x30, 0x00, 0x00, 0x03, 0xf4
]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_mem_xmm0_pos4() {
let mut emu = emu64();
let code = [
0x66, 0x0f, 0x3a, 0x15, 0x04, 0x25, 0x00, 0x30, 0x00, 0x00, 0x04, 0xf4
]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_mem_xmm0_pos5() {
let mut emu = emu64();
let code = [
0x66, 0x0f, 0x3a, 0x15, 0x04, 0x25, 0x00, 0x30, 0x00, 0x00, 0x05, 0xf4
]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_mem_xmm0_pos6() {
let mut emu = emu64();
let code = [
0x66, 0x0f, 0x3a, 0x15, 0x04, 0x25, 0x00, 0x30, 0x00, 0x00, 0x06, 0xf4
]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_mem_xmm0_pos7() {
let mut emu = emu64();
let code = [
0x66, 0x0f, 0x3a, 0x15, 0x04, 0x25, 0x00, 0x30, 0x00, 0x00, 0x07, 0xf4
]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_mem_xmm1_pos3() {
let mut emu = emu64();
let code = [
0x66, 0x0f, 0x3a, 0x15, 0x0c, 0x25, 0x00, 0x30, 0x00, 0x00, 0x03, 0xf4
]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_mem_xmm7_pos5() {
let mut emu = emu64();
let code = [
0x66, 0x0f, 0x3a, 0x15, 0x3c, 0x25, 0x00, 0x30, 0x00, 0x00, 0x05, 0xf4
]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_mem_xmm15_pos7() {
let mut emu = emu64();
let code = [
0x66, 0x44, 0x0f, 0x3a, 0x15, 0x3c, 0x25, 0x00, 0x30, 0x00, 0x00, 0x07, 0xf4
]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_ebx_xmm7_pos6() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xdf, 0x06, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_ecx_xmm6_pos4() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xce, 0x04, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_pextrw_edx_xmm5_pos2() {
let mut emu = emu64();
let code = [0x66, 0x0f, 0xc5, 0xd5, 0x02, 0xf4]; emu.load_code_bytes(&code);
emu.run(None).unwrap();
}