1// AT_SUN_HWCAP
2pub const AV_386_FPU: u32 = 0x00001;
3pub const AV_386_TSC: u32 = 0x00002;
4pub const AV_386_CX8: u32 = 0x00004;
5pub const AV_386_SEP: u32 = 0x00008;
6pub const AV_386_AMD_SYSC: u32 = 0x00010;
7pub const AV_386_CMOV: u32 = 0x00020;
8pub const AV_386_MMX: u32 = 0x00040;
9pub const AV_386_AMD_MMX: u32 = 0x00080;
10pub const AV_386_AMD_3DNow: u32 = 0x00100;
11pub const AV_386_AMD_3DNowx: u32 = 0x00200;
12pub const AV_386_FXSR: u32 = 0x00400;
13pub const AV_386_SSE: u32 = 0x00800;
14pub const AV_386_SSE2: u32 = 0x01000;
15pub const AV_386_CX16: u32 = 0x10000;
16pub const AV_386_AHF: u32 = 0x20000;
17pub const AV_386_TSCP: u32 = 0x40000;
18pub const AV_386_AMD_SSE4A: u32 = 0x80000;
19pub const AV_386_POPCNT: u32 = 0x100000;
20pub const AV_386_AMD_LZCNT: u32 = 0x200000;
21pub const AV_386_SSSE3: u32 = 0x400000;
22pub const AV_386_SSE4_1: u32 = 0x800000;
23pub const AV_386_SSE4_2: u32 = 0x1000000;
24pub const AV_386_MOVBE: u32 = 0x2000000;
25pub const AV_386_AES: u32 = 0x4000000;
26pub const AV_386_PCLMULQDQ: u32 = 0x8000000;
27pub const AV_386_XSAVE: u32 = 0x10000000;
28pub const AV_386_AVX: u32 = 0x20000000;
29pub const AV_386_VMX: u32 = 0x40000000;
30pub const AV_386_AMD_SVM: u32 = 0x80000000;
31// AT_SUN_HWCAP2
32pub const AV_386_2_F16C: u32 = 0x00000001;
33pub const AV_386_2_RDRAND: u32 = 0x00000002;
34pub const AV_386_2_BMI1: u32 = 0x00000004;
35pub const AV_386_2_BMI2: u32 = 0x00000008;
36pub const AV_386_2_FMA: u32 = 0x00000010;
37pub const AV_386_2_AVX2: u32 = 0x00000020;
38pub const AV_386_2_ADX: u32 = 0x00000040;
39pub const AV_386_2_RDSEED: u32 = 0x00000080;
40pub const AV_386_2_AVX512F: u32 = 0x00000100;
41pub const AV_386_2_AVX512DQ: u32 = 0x00000200;
42pub const AV_386_2_AVX512IFMA: u32 = 0x00000400;
43pub const AV_386_2_AVX512PF: u32 = 0x00000800;
44pub const AV_386_2_AVX512ER: u32 = 0x00001000;
45pub const AV_386_2_AVX512CD: u32 = 0x00002000;
46pub const AV_386_2_AVX512BW: u32 = 0x00004000;
47pub const AV_386_2_AVX512VL: u32 = 0x00008000;
48pub const AV_386_2_AVX512VBMI: u32 = 0x00010000;
49pub const AV_386_2_AVX512VPOPCDQ: u32 = 0x00020000;
50pub const AV_386_2_AVX512_4NNIW: u32 = 0x00040000;
51pub const AV_386_2_AVX512_4FMAPS: u32 = 0x00080000;
52pub const AV_386_2_SHA: u32 = 0x00100000;
53pub const AV_386_2_FSGSBASE: u32 = 0x00200000;
54pub const AV_386_2_CLFLUSHOPT: u32 = 0x00400000;
55pub const AV_386_2_CLWB: u32 = 0x00800000;
56pub const AV_386_2_MONITORX: u32 = 0x01000000;
57pub const AV_386_2_CLZERO: u32 = 0x02000000;
58pub const AV_386_2_AVX512_VNNI: u32 = 0x04000000;
59pub const AV_386_2_VPCLMULQDQ: u32 = 0x08000000;
60pub const AV_386_2_VAES: u32 = 0x10000000;
61// AT_SUN_FPTYPE
62pub const AT_386_FPINFO_NONE: u32 = 0;
63pub const AT_386_FPINFO_FXSAVE: u32 = 1;
64pub const AT_386_FPINFO_XSAVE: u32 = 2;
65pub const AT_386_FPINFO_XSAVE_AMD: u32 = 3;
66