use crate::*;
const ALIGNED_ADDR: u64 = 0x3000;
#[test]
fn test_vfmaddsub132ps_xmm0_xmm1_xmm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0x71, 0x96, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub132ps_xmm1_xmm2_xmm3() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0x69, 0x96, 0xcb, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub132ps_xmm2_xmm3_xmm4() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0x61, 0x96, 0xd4, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub132ps_xmm5_xmm6_xmm7() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0x49, 0x96, 0xef, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub132ps_xmm8_xmm9_xmm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0x31, 0x96, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub132ps_xmm13_xmm14_xmm15() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0x09, 0x96, 0xef, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub132ps_ymm0_ymm1_ymm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0x75, 0x96, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub132ps_ymm1_ymm2_ymm3() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0x6d, 0x96, 0xcb, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub132ps_ymm5_ymm6_ymm7() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0x4d, 0x96, 0xef, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub132ps_ymm8_ymm9_ymm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0x35, 0x96, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub132ps_ymm13_ymm14_ymm15() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0x0d, 0x96, 0xef, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub132pd_xmm0_xmm1_xmm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0xf1, 0x96, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub132pd_ymm0_ymm1_ymm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0xf5, 0x96, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub132pd_xmm8_xmm9_xmm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0xb1, 0x96, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub132pd_ymm8_ymm9_ymm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0xb5, 0x96, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub213ps_xmm0_xmm1_xmm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0x71, 0xa6, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub213ps_ymm0_ymm1_ymm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0x75, 0xa6, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub213ps_xmm8_xmm9_xmm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0x31, 0xa6, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub213ps_ymm8_ymm9_ymm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0x35, 0xa6, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub213pd_xmm0_xmm1_xmm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0xf1, 0xa6, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub213pd_ymm0_ymm1_ymm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0xf5, 0xa6, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub213pd_xmm8_xmm9_xmm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0xb1, 0xa6, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub213pd_ymm8_ymm9_ymm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0xb5, 0xa6, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub231ps_xmm0_xmm1_xmm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0x71, 0xb6, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub231ps_ymm0_ymm1_ymm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0x75, 0xb6, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub231ps_xmm8_xmm9_xmm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0x31, 0xb6, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub231ps_ymm8_ymm9_ymm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0x35, 0xb6, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub231pd_xmm0_xmm1_xmm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0xf1, 0xb6, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub231pd_ymm0_ymm1_ymm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0xf5, 0xb6, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub231pd_xmm8_xmm9_xmm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0xb1, 0xb6, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub231pd_ymm8_ymm9_ymm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0xb5, 0xb6, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd132ps_xmm0_xmm1_xmm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0x71, 0x97, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd132ps_ymm0_ymm1_ymm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0x75, 0x97, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd132ps_xmm8_xmm9_xmm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0x31, 0x97, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd132ps_ymm8_ymm9_ymm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0x35, 0x97, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd132pd_xmm0_xmm1_xmm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0xf1, 0x97, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd132pd_ymm0_ymm1_ymm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0xf5, 0x97, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd132pd_xmm8_xmm9_xmm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0xb1, 0x97, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd132pd_ymm8_ymm9_ymm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0xb5, 0x97, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd213ps_xmm0_xmm1_xmm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0x71, 0xa7, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd213ps_ymm0_ymm1_ymm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0x75, 0xa7, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd213ps_xmm8_xmm9_xmm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0x31, 0xa7, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd213ps_ymm8_ymm9_ymm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0x35, 0xa7, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd213pd_xmm0_xmm1_xmm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0xf1, 0xa7, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd213pd_ymm0_ymm1_ymm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0xf5, 0xa7, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd213pd_xmm8_xmm9_xmm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0xb1, 0xa7, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd213pd_ymm8_ymm9_ymm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0xb5, 0xa7, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd231ps_xmm0_xmm1_xmm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0x71, 0xb7, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd231ps_ymm0_ymm1_ymm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0x75, 0xb7, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd231ps_xmm8_xmm9_xmm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0x31, 0xb7, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd231ps_ymm8_ymm9_ymm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0x35, 0xb7, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd231pd_xmm0_xmm1_xmm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0xf1, 0xb7, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd231pd_ymm0_ymm1_ymm2() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0xf5, 0xb7, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd231pd_xmm8_xmm9_xmm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0xb1, 0xb7, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd231pd_ymm8_ymm9_ymm10() {
let mut emu = emu64();
let code = [
0xc4, 0x42, 0xb5, 0xb7, 0xc2, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub132ps_xmm0_xmm1_mem() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0x71, 0x96, 0x04, 0x25, 0x00, 0x30, 0x00, 0x00, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmaddsub213pd_ymm0_ymm1_mem() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0xf5, 0xa6, 0x04, 0x25, 0x00, 0x30, 0x00, 0x00, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd132ps_xmm0_xmm1_mem() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0x71, 0x97, 0x04, 0x25, 0x00, 0x30, 0x00, 0x00, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}
#[test]
fn test_vfmsubadd231pd_ymm0_ymm1_mem() {
let mut emu = emu64();
let code = [
0xc4, 0xe2, 0xf5, 0xb7, 0x04, 0x25, 0x00, 0x30, 0x00, 0x00, 0xf4, ];
emu.load_code_bytes(&code);
emu.run(None).unwrap();
}