ArchFeature

enum ArchFeature : ProtocolMessageEnum
Enumerates extended instruction set features which may be detected or known to be supported on a given architecture.
Protobuf enum elide.machine.ArchFeature

Entries

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard
val AVX2_VALUE: Int = 7
The architecture supports the AVX2 instruction set.
AVX2 = 7;
Link copied to clipboard
val AVX512_VALUE: Int = 8
The architecture supports the AVX512 instruction set.
AVX512 = 8;
Link copied to clipboard
val AVX_VALUE: Int = 6
The architecture supports the AVX instruction set.
AVX = 6;
Link copied to clipboard
The architecture feature is unknown, unrecognized, or backwards-incompatible.
FEATURE_UNKNOWN = 0;
Link copied to clipboard
val NEON_VALUE: Int = 9
The architecture supports the NEON instruction set.
NEON = 9;
Link copied to clipboard
val SSE2_VALUE: Int = 2
The architecture supports the SSE2 instruction set.
SSE2 = 2;
Link copied to clipboard
val SSE3_VALUE: Int = 3
The architecture supports the SSE3 instruction set.
SSE3 = 3;
Link copied to clipboard
val SSE4_1_VALUE: Int = 4
The architecture supports the SSE4.1 instruction set.
SSE4_1 = 4;
Link copied to clipboard
val SSE4_2_VALUE: Int = 5
The architecture supports the SSE4.2 instruction set.
SSE4_2 = 5;
Link copied to clipboard
val SSE_VALUE: Int = 1
The architecture supports the SSE instruction set.
SSE = 1;

Functions

Link copied to clipboard
open fun forNumber(value: Int): ArchFeature
Link copied to clipboard
fun getDescriptor(): Descriptors.EnumDescriptor
Link copied to clipboard
fun getDescriptorForType(): Descriptors.EnumDescriptor
Link copied to clipboard
fun getNumber(): Int
Link copied to clipboard
fun getValueDescriptor(): Descriptors.EnumValueDescriptor
Link copied to clipboard
open fun internalGetValueMap(): Internal.EnumLiteMap<ArchFeature>
Link copied to clipboard
open fun valueOf(desc: Descriptors.EnumValueDescriptor): ArchFeature
open fun valueOf(value: Int): ArchFeature

open fun valueOf(name: String): ArchFeature

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
open fun values(): Array<ArchFeature>

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.