Add support for i32x4_trunc_sat_f64x2_u for x64

This commit is contained in:
Johnnie Birch
2021-07-22 08:07:38 -07:00
parent 5deda27977
commit 23290f0450
4 changed files with 94 additions and 4 deletions

View File

@@ -1699,6 +1699,7 @@ pub(crate) fn emit(
SseOpcode::Roundss => (LegacyPrefixes::_66, 0x0F3A0A, 3),
SseOpcode::Roundpd => (LegacyPrefixes::_66, 0x0F3A09, 3),
SseOpcode::Roundsd => (LegacyPrefixes::_66, 0x0F3A0B, 3),
SseOpcode::Shufps => (LegacyPrefixes::None, 0x0FC6, 2),
_ => unimplemented!("Opcode {:?} not implemented", op),
};
let rex = RexFlags::from(*size);