ArchFeature
Enumerates extended instruction set features which may be detected or known to be supported on a given architecture.
Content copied to clipboard
elide.machine.ArchFeature
Properties
Link copied to clipboard
The architecture supports the AVX2 instruction set.
Content copied to clipboard
AVX2 = 7;
Link copied to clipboard
The architecture supports the AVX512 instruction set.
Content copied to clipboard
AVX512 = 8;
Link copied to clipboard
The architecture feature is unknown, unrecognized, or backwards-incompatible.
Content copied to clipboard
FEATURE_UNKNOWN = 0;
Link copied to clipboard
The architecture supports the NEON instruction set.
Content copied to clipboard
NEON = 9;
Link copied to clipboard
The architecture supports the SSE2 instruction set.
Content copied to clipboard
SSE2 = 2;
Link copied to clipboard
The architecture supports the SSE3 instruction set.
Content copied to clipboard
SSE3 = 3;
Link copied to clipboard
The architecture supports the SSE4.1 instruction set.
Content copied to clipboard
SSE4_1 = 4;
Link copied to clipboard
The architecture supports the SSE4.2 instruction set.
Content copied to clipboard
SSE4_2 = 5;
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
Link copied to clipboard
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.