pub enum Feature {
Show 21 variants
_64b,
compat,
sse,
sse2,
sse3,
ssse3,
sse41,
sse42,
bmi1,
bmi2,
lzcnt,
popcnt,
avx,
avx2,
avx512f,
avx512vl,
avx512dq,
avx512bitalg,
avx512vbmi,
cmpxchg16b,
fma,
}
Expand description
A CPU feature.
This is generated from the dsl::Feature
enumeration defined in the meta
crate (i.e., an exact replica). It describes the CPUID features required by
an instruction; see Inst::features
.