x64: Migrate fabs and bnot vector operations to ISLE
This was my first attempt at transitioning code to ISLE to originally fix #3327 but that fix has since landed on `main`, so this is instead now just porting a few operations to ISLE. Closes #3336
This commit is contained in:
@@ -1391,7 +1391,8 @@ impl fmt::Display for CC {
|
||||
/// Encode the ways that floats can be compared. This is used in float comparisons such as `cmpps`,
|
||||
/// e.g.; it is distinguished from other float comparisons (e.g. `ucomiss`) in that those use EFLAGS
|
||||
/// whereas [FcmpImm] is used as an immediate.
|
||||
pub(crate) enum FcmpImm {
|
||||
#[derive(Clone, Copy)]
|
||||
pub enum FcmpImm {
|
||||
Equal = 0x00,
|
||||
LessThan = 0x01,
|
||||
LessThanOrEqual = 0x02,
|
||||
|
||||
Reference in New Issue
Block a user