Skip to content

Commit

Permalink
Merge pull request #7563 from BradleyWood/port_cpu_feature_names
Browse files Browse the repository at this point in the history
x86: complete cpu feature name table
  • Loading branch information
hzongaro authored Nov 28, 2024
2 parents 8ff3b35 + 62d9bdf commit d2c8425
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion port/common/omrsysinfo_helpers.c
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,39 @@ static const char* const OMR_FEATURE_X86_NAME[] = {
"avx512cd", /* 3 * 32 + 28 */
"sha", /* 3 * 32 + 29 */
"avx512bw", /* 3 * 32 + 30 */
"avx512vl" /* 3 * 32 + 31 */
"avx512vl", /* 3 * 32 + 31 */
"prefetchwt1", /* 4 * 32 + 0 */
"avx512_vbmi", /* 4 * 32 + 1 */
"umip", /* 4 * 32 + 2 */
"pku", /* 4 * 32 + 3 */
"ospke", /* 4 * 32 + 4 */
"waitpkg", /* 4 * 32 + 5 */
"avx512_vbmi2", /* 4 * 32 + 6 */
"cet_ss", /* 4 * 32 + 7 */
"gfni", /* 4 * 32 + 8 */
"vaes", /* 4 * 32 + 9 */
"vpclmulqdq", /* 4 * 32 + 10 */
"avx512_vnni", /* 4 * 32 + 11 */
"avx512_bitalg", /* 4 * 32 + 12 */
"tme_en", /* 4 * 32 + 13 */
"avx512_vpopcntdq", /* 4 * 32 + 14 */
"null", /* 4 * 32 + 15 */
"la57", /* 4 * 32 + 16 */
"mawau_0", /* 4 * 32 + 17 */
"mawau_1", /* 4 * 32 + 18 */
"mawau_2", /* 4 * 32 + 19 */
"mawau_3", /* 4 * 32 + 20 */
"mawau_4", /* 4 * 32 + 21 */
"rdpid", /* 4 * 32 + 22 */
"kl", /* 4 * 32 + 23 */
"bus_lock_detect", /* 4 * 32 + 24 */
"cldemote", /* 4 * 32 + 25 */
"null", /* 4 * 32 + 26 */
"movdiri", /* 4 * 32 + 27 */
"movdir64b", /* 4 * 32 + 28 */
"enqcmd", /* 4 * 32 + 29 */
"sgx_lc", /* 4 * 32 + 30 */
"pks" /* 4 * 32 + 31 */
};

const char *
Expand Down

0 comments on commit d2c8425

Please sign in to comment.