Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.sbin/tprof/arch Use lowercase consistently for hexadecim...



details:   https://anonhg.NetBSD.org/src/rev/98ed8954e601
branches:  trunk
changeset: 372556:98ed8954e601
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Thu Dec 08 02:12:18 2022 +0000

description:
Use lowercase consistently for hexadecimal numbers. No functional change.

diffstat:

 usr.sbin/tprof/arch/tprof_x86.c |  526 ++++++++++++++++++++--------------------
 1 files changed, 263 insertions(+), 263 deletions(-)

diffs (truncated from 666 to 300 lines):

diff -r 139c36d81234 -r 98ed8954e601 usr.sbin/tprof/arch/tprof_x86.c
--- a/usr.sbin/tprof/arch/tprof_x86.c   Thu Dec 08 01:32:35 2022 +0000
+++ b/usr.sbin/tprof/arch/tprof_x86.c   Thu Dec 08 02:12:18 2022 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: tprof_x86.c,v 1.13 2022/12/07 08:11:49 msaitoh Exp $   */
+/*     $NetBSD: tprof_x86.c,v 1.14 2022/12/08 02:12:18 msaitoh Exp $   */
 
 /*
  * Copyright (c) 2018-2019 The NetBSD Foundation, Inc.
@@ -78,14 +78,14 @@
  */
 static struct name_to_event intel_arch1_names[] = {
        /* Event Name - Event Select - UMask */
-       { "unhalted-core-cycles",       0x3C, 0x00, true },
-       { "instruction-retired",        0xC0, 0x00, true },
-       { "unhalted-reference-cycles",  0x3C, 0x01, true },
-       { "llc-reference",              0x2E, 0x4F, true },
-       { "llc-misses",                 0x2E, 0x41, true },
-       { "branch-instruction-retired", 0xC4, 0x00, true },
-       { "branch-misses-retired",      0xC5, 0x00, true },
-       { "topdown-slots",              0xA4, 0x01, true },
+       { "unhalted-core-cycles",       0x3c, 0x00, true },
+       { "instruction-retired",        0xc0, 0x00, true },
+       { "unhalted-reference-cycles",  0x3c, 0x01, true },
+       { "llc-reference",              0x2e, 0x4f, true },
+       { "llc-misses",                 0x2e, 0x41, true },
+       { "branch-instruction-retired", 0xc4, 0x00, true },
+       { "branch-misses-retired",      0xc5, 0x00, true },
+       { "topdown-slots",              0xa4, 0x01, true },
 };
 
 static struct event_table intel_arch1 = {
@@ -103,7 +103,7 @@
        struct event_table *table;
        size_t i;
 
-       eax = 0x0A;
+       eax = 0x0a;
        ebx = 0;
        ecx = 0;
        edx = 0;
@@ -150,53 +150,53 @@
        { "PAGE_WALKS.D_SIDE_CYCLES",           0x05, 0x01, true },
        { "PAGE_WALKS.I_SIDE_CYCLES",           0x05, 0x02, true },
        { "PAGE_WALKS.WALKS",                   0x05, 0x03, true },
-       { "LONGEST_LAT_CACHE.MISS",             0x2E, 0x41, true },
-       { "LONGEST_LAT_CACHE.REFERENCE",        0x2E, 0x4F, true },
+       { "LONGEST_LAT_CACHE.MISS",             0x2e, 0x41, true },
+       { "LONGEST_LAT_CACHE.REFERENCE",        0x2e, 0x4f, true },
        { "L2_REJECT_XQ.ALL",                   0x30, 0x00, true },
        { "CORE_REJECT_L2Q.ALL",                0x31, 0x00, true },
-       { "CPU_CLK_UNHALTED.CORE_P",            0x3C, 0x00, true },
-       { "CPU_CLK_UNHALTED.REF_P",             0x3C, 0x01, true },
+       { "CPU_CLK_UNHALTED.CORE_P",            0x3c, 0x00, true },
+       { "CPU_CLK_UNHALTED.REF_P",             0x3c, 0x01, true },
        { "ICACHE.HIT",                         0x80, 0x01, true },
        { "ICACHE.MISSES",                      0x80, 0x02, true },
        { "ICACHE.ACCESSES",                    0x80, 0x03, true },
-       { "OFFCORE_RESPONSE_0",                 0xB7, 0x01, true },
-       { "OFFCORE_RESPONSE_1",                 0xB7, 0x02, true },
-       { "INST_RETIRED.ANY_P",                 0xC0, 0x00, true },
-       { "UOPS_RETIRED.MS",                    0xC2, 0x01, true },
-       { "UOPS_RETIRED.ALL",                   0xC2, 0x10, true },
-       { "MACHINE_CLEARS.SMC",                 0xC3, 0x01, true },
-       { "MACHINE_CLEARS.MEMORY_ORDERING",     0xC3, 0x02, true },
-       { "MACHINE_CLEARS.FP_ASSIST",           0xC3, 0x04, true },
-       { "MACHINE_CLEARS.ALL",                 0xC3, 0x08, true },
-       { "BR_INST_RETIRED.ALL_BRANCHES",       0xC4, 0x00, true },
-       { "BR_INST_RETIRED.JCC",                0xC4, 0x7E, true },
-       { "BR_INST_RETIRED.FAR_BRANCH",         0xC4, 0xBF, true },
-       { "BR_INST_RETIRED.NON_RETURN_IND",     0xC4, 0xEB, true },
-       { "BR_INST_RETIRED.RETURN",             0xC4, 0xF7, true },
-       { "BR_INST_RETIRED.CALL",               0xC4, 0xF9, true },
-       { "BR_INST_RETIRED.IND_CALL",           0xC4, 0xFB, true },
-       { "BR_INST_RETIRED.REL_CALL",           0xC4, 0xFD, true },
-       { "BR_INST_RETIRED.TAKEN_JCC",          0xC4, 0xFE, true },
-       { "BR_MISP_RETIRED.ALL_BRANCHES",       0xC5, 0x00, true },
-       { "BR_MISP_RETIRED.JCC",                0xC5, 0x7E, true },
-       { "BR_MISP_RETIRED.FAR",                0xC5, 0xBF, true },
-       { "BR_MISP_RETIRED.NON_RETURN_IND",     0xC5, 0xEB, true },
-       { "BR_MISP_RETIRED.RETURN",             0xC5, 0xF7, true },
-       { "BR_MISP_RETIRED.CALL",               0xC5, 0xF9, true },
-       { "BR_MISP_RETIRED.IND_CALL",           0xC5, 0xFB, true },
-       { "BR_MISP_RETIRED.REL_CALL",           0xC5, 0xFD, true },
-       { "BR_MISP_RETIRED.TAKEN_JCC",          0xC5, 0xFE, true },
-       { "NO_ALLOC_CYCLES.ROB_FULL",           0xCA, 0x01, true },
-       { "NO_ALLOC_CYCLES.RAT_STALL",          0xCA, 0x20, true },
-       { "NO_ALLOC_CYCLES.ALL",                0xCA, 0x3F, true },
-       { "NO_ALLOC_CYCLES.NOT_DELIVERED",      0xCA, 0x50, true },
-       { "RS_FULL_STALL.MEC",                  0xCB, 0x01, true },
-       { "RS_FULL_STALL.ALL",                  0xCB, 0x1F, true },
-       { "CYCLES_DIV_BUSY.ANY",                0xCD, 0x01, true },
-       { "BACLEARS.ALL",                       0xE6, 0x01, true },
-       { "BACLEARS.RETURN",                    0xE6, 0x08, true },
-       { "BACLEARS.COND",                      0xE6, 0x10, true },
-       { "MS_DECODED.MS_ENTRY",                0xE7, 0x01, true },
+       { "OFFCORE_RESPONSE_0",                 0xb7, 0x01, true },
+       { "OFFCORE_RESPONSE_1",                 0xb7, 0x02, true },
+       { "INST_RETIRED.ANY_P",                 0xc0, 0x00, true },
+       { "UOPS_RETIRED.MS",                    0xc2, 0x01, true },
+       { "UOPS_RETIRED.ALL",                   0xc2, 0x10, true },
+       { "MACHINE_CLEARS.SMC",                 0xc3, 0x01, true },
+       { "MACHINE_CLEARS.MEMORY_ORDERING",     0xc3, 0x02, true },
+       { "MACHINE_CLEARS.FP_ASSIST",           0xc3, 0x04, true },
+       { "MACHINE_CLEARS.ALL",                 0xc3, 0x08, true },
+       { "BR_INST_RETIRED.ALL_BRANCHES",       0xc4, 0x00, true },
+       { "BR_INST_RETIRED.JCC",                0xc4, 0x7e, true },
+       { "BR_INST_RETIRED.FAR_BRANCH",         0xc4, 0xbf, true },
+       { "BR_INST_RETIRED.NON_RETURN_IND",     0xc4, 0xeb, true },
+       { "BR_INST_RETIRED.RETURN",             0xc4, 0xf7, true },
+       { "BR_INST_RETIRED.CALL",               0xc4, 0xf9, true },
+       { "BR_INST_RETIRED.IND_CALL",           0xc4, 0xfb, true },
+       { "BR_INST_RETIRED.REL_CALL",           0xc4, 0xfd, true },
+       { "BR_INST_RETIRED.TAKEN_JCC",          0xc4, 0xfe, true },
+       { "BR_MISP_RETIRED.ALL_BRANCHES",       0xc5, 0x00, true },
+       { "BR_MISP_RETIRED.JCC",                0xc5, 0x7e, true },
+       { "BR_MISP_RETIRED.FAR",                0xc5, 0xbf, true },
+       { "BR_MISP_RETIRED.NON_RETURN_IND",     0xc5, 0xeb, true },
+       { "BR_MISP_RETIRED.RETURN",             0xc5, 0xf7, true },
+       { "BR_MISP_RETIRED.CALL",               0xc5, 0xf9, true },
+       { "BR_MISP_RETIRED.IND_CALL",           0xc5, 0xfb, true },
+       { "BR_MISP_RETIRED.REL_CALL",           0xc5, 0xfd, true },
+       { "BR_MISP_RETIRED.TAKEN_JCC",          0xc5, 0xfe, true },
+       { "NO_ALLOC_CYCLES.ROB_FULL",           0xca, 0x01, true },
+       { "NO_ALLOC_CYCLES.RAT_STALL",          0xca, 0x20, true },
+       { "NO_ALLOC_CYCLES.ALL",                0xca, 0x3f, true },
+       { "NO_ALLOC_CYCLES.NOT_DELIVERED",      0xca, 0x50, true },
+       { "RS_FULL_STALL.MEC",                  0xcb, 0x01, true },
+       { "RS_FULL_STALL.ALL",                  0xcb, 0x1f, true },
+       { "CYCLES_DIV_BUSY.ANY",                0xcd, 0x01, true },
+       { "BACLEARS.ALL",                       0xe6, 0x01, true },
+       { "BACLEARS.RETURN",                    0xe6, 0x08, true },
+       { "BACLEARS.COND",                      0xe6, 0x10, true },
+       { "MS_DECODED.MS_ENTRY",                0xe7, 0x01, true },
 };
 
 static struct event_table intel_silvermont_airmont = {
@@ -226,15 +226,15 @@
        { "PAGE_WALKS.D_SIDE_CYCLES",                   0x05,   0x01, true },
        { "PAGE_WALKS.I_SIDE_CYCLES",                   0x05,   0x02, true },
        { "PAGE_WALKS.CYCLES",                          0x05,   0x03, true },
-       { "UOPS_ISSUED.ANY",                            0x0E,   0x00, true },
+       { "UOPS_ISSUED.ANY",                            0x0e,   0x00, true },
        { "MISALIGN_MEM_REF.LOAD_PAGE_SPLIT",           0x13,   0x02, true },
        { "MISALIGN_MEM_REF.STORE_PAGE_SPLIT",          0x13,   0x04, true },
-       { "LONGEST_LAT_CACHE.REFERENCE",                0x2E,   0x4F, true },
-       { "LONGEST_LAT_CACHE.MISS",                     0x2E,   0x41, true },
+       { "LONGEST_LAT_CACHE.REFERENCE",                0x2e,   0x4f, true },
+       { "LONGEST_LAT_CACHE.MISS",                     0x2e,   0x41, true },
        { "L2_REJECT_XQ.ALL",                           0x30,   0x00, true },
        { "CORE_REJECT_L2Q.ALL",                        0x31,   0x00, true },
-       { "CPU_CLK_UNHALTED.CORE_P",                    0x3C,   0x00, true },
-       { "CPU_CLK_UNHALTED.REF",                       0x3C,   0x01, true },
+       { "CPU_CLK_UNHALTED.CORE_P",                    0x3c,   0x00, true },
+       { "CPU_CLK_UNHALTED.REF",                       0x3c,   0x01, true },
        { "DL1.DIRTY_EVICTION",                         0x51,   0x01, true },
        { "ICACHE.HIT",                                 0x80,   0x01, true },
        { "ICACHE.MISSES",                              0x80,   0x02, true },
@@ -243,66 +243,66 @@
        { "FETCH_STALL.ALL",                            0x86,   0x00, true },
        { "FETCH_STALL.ITLB_FILL_PENDING_CYCLES",       0x86,   0x01, true },
        { "FETCH_STALL.ICACHE_FILL_PENDING_CYCLES",     0x86,   0x02, true },
-       { "UOPS_NOT_DELIVERED.ANY",                     0x9C,   0x00, true },
-       { "OFFCORE_RESPONSE.0",                         0xB7,   0x01, true },
-       { "OFFCORE_RESPONSE.1",                         0xB7,   0x02, true },
-       { "INST_RETIRED.ANY_P",                         0xC0,   0x00, true },
-       { "UOPS_RETIRED.ANY",                           0xC2,   0x00, true },
-       { "UOPS_RETIRED.MS",                            0xC2,   0x01, true },
-       { "UOPS_RETIRED.FPDIV",                         0xC2,   0x08, true },
-       { "UOPS_RETIRED.IDIV",                          0xC2,   0x10, true },
-       { "MACHINE_CLEARS.SMC",                         0xC3,   0x01, true },
-       { "MACHINE_CLEARS.MEMORY_ORDERING",             0xC3,   0x02, true },
-       { "MACHINE_CLEARS.FP_ASSIST",                   0xC3,   0x04, true },
-       { "MACHINE_CLEARS.DISAMBIGUATION",              0xC3,   0x08, true },
-       { "MACHINE_CLEARS.ALL",                         0xC3,   0x00, true },
-       { "BR_INST_RETIRED.ALL_BRANCHES",               0xC4,   0x00, true },
-       { "BR_INST_RETIRED.JCC",                        0xC4,   0x7E, true },
-       { "BR_INST_RETIRED.ALL_TAKEN_BRANCHES",         0xC4,   0x80, true },
-       { "BR_INST_RETIRED.TAKEN_JCC",                  0xC4,   0xFE, true },
-       { "BR_INST_RETIRED.CALL",                       0xC4,   0xF9, true },
-       { "BR_INST_RETIRED.REL_CALL",                   0xC4,   0xFD, true },
-       { "BR_INST_RETIRED.IND_CALL",                   0xC4,   0xFB, true },
-       { "BR_INST_RETIRED.RETURN",                     0xC4,   0xF7, true },
-       { "BR_INST_RETIRED.NON_RETURN_IND",             0xC4,   0xEB, true },
-       { "BR_INST_RETIRED.FAR_BRANCH",                 0xC4,   0xBF, true },
-       { "BR_MISP_RETIRED.ALL_BRANCHES",               0xC5,   0x00, true },
-       { "BR_MISP_RETIRED.JCC",                        0xC5,   0x7E, true },
-       { "BR_MISP_RETIRED.TAKEN_JCC",                  0xC5,   0xFE, true },
-       { "BR_MISP_RETIRED.IND_CALL",                   0xC5,   0xFB, true },
-       { "BR_MISP_RETIRED.RETURN",                     0xC5,   0xF7, true },
-       { "BR_MISP_RETIRED.NON_RETURN_IND",             0xC5,   0xEB, true },
-       { "ISSUE_SLOTS_NOT_CONSUMED.RESOURCE_FULL",     0xCA,   0x01, true },
-       { "ISSUE_SLOTS_NOT_CONSUMED.RECOVERY",          0xCA,   0x02, true },
-       { "ISSUE_SLOTS_NOT_CONSUMED.ANY",               0xCA,   0x00, true },
-       { "HW_INTERRUPTS.RECEIVED",                     0xCB,   0x01, true },
-       { "HW_INTERRUPTS.MASKED",                       0xCB,   0x02, true },
-       { "HW_INTERRUPTS.PENDING_AND_MASKED",           0xCB,   0x04, true },
-       { "CYCLES_DIV_BUSY.ALL",                        0xCD,   0x00, true },
-       { "CYCLES_DIV_BUSY.IDIV",                       0xCD,   0x01, true },
-       { "CYCLES_DIV_BUSY.FPDIV",                      0xCD,   0x02, true },
-       { "MEM_UOPS_RETIRED.ALL_LOADS",                 0xD0,   0x81, true },
-       { "MEM_UOPS_RETIRED.ALL_STORES",                0xD0,   0x82, true },
-       { "MEM_UOPS_RETIRED.ALL",                       0xD0,   0x83, true },
-       { "MEM_UOPS_RETIRED.DTLB_MISS_LOADS",           0xD0,   0x11, true },
-       { "MEM_UOPS_RETIRED.DTLB_MISS_STORES",          0xD0,   0x12, true },
-       { "MEM_UOPS_RETIRED.DTLB_MISS",                 0xD0,   0x13, true },
-       { "MEM_UOPS_RETIRED.LOCK_LOADS",                0xD0,   0x21, true },
-       { "MEM_UOPS_RETIRED.SPLIT_LOADS",               0xD0,   0x41, true },
-       { "MEM_UOPS_RETIRED.SPLIT_STORES",              0xD0,   0x42, true },
-       { "MEM_UOPS_RETIRED.SPLIT",                     0xD0,   0x43, true },
-       { "MEM_LOAD_UOPS_RETIRED.L1_HIT",               0xD1,   0x01, true },
-       { "MEM_LOAD_UOPS_RETIRED.L1_MISS",              0xD1,   0x08, true },
-       { "MEM_LOAD_UOPS_RETIRED.L2_HIT",               0xD1,   0x02, true },
-       { "MEM_LOAD_UOPS_RETIRED.L2_MISS",              0xD1,   0x10, true },
-       { "MEM_LOAD_UOPS_RETIRED.HITM",                 0xD1,   0x20, true },
-       { "MEM_LOAD_UOPS_RETIRED.WCB_HIT",              0xD1,   0x40, true },
-       { "MEM_LOAD_UOPS_RETIRED.DRAM_HIT",             0xD1,   0x80, true },
-       { "BACLEARS.ALL",                               0xE6,   0x01, true },
-       { "BACLEARS.RETURN",                            0xE6,   0x08, true },
-       { "BACLEAR.CONDS",                              0xE6,   0x10, true },
-       { "MS_DECODED.MS_ENTRY",                        0xE7,   0x01, true },
-       { "DECODED_RESTRICTION.PREDECODE_WRONG",        0xE9,   0x01, true },
+       { "UOPS_NOT_DELIVERED.ANY",                     0x9c,   0x00, true },
+       { "OFFCORE_RESPONSE.0",                         0xb7,   0x01, true },
+       { "OFFCORE_RESPONSE.1",                         0xb7,   0x02, true },
+       { "INST_RETIRED.ANY_P",                         0xc0,   0x00, true },
+       { "UOPS_RETIRED.ANY",                           0xc2,   0x00, true },
+       { "UOPS_RETIRED.MS",                            0xc2,   0x01, true },
+       { "UOPS_RETIRED.FPDIV",                         0xc2,   0x08, true },
+       { "UOPS_RETIRED.IDIV",                          0xc2,   0x10, true },
+       { "MACHINE_CLEARS.SMC",                         0xc3,   0x01, true },
+       { "MACHINE_CLEARS.MEMORY_ORDERING",             0xc3,   0x02, true },
+       { "MACHINE_CLEARS.FP_ASSIST",                   0xc3,   0x04, true },
+       { "MACHINE_CLEARS.DISAMBIGUATION",              0xc3,   0x08, true },
+       { "MACHINE_CLEARS.ALL",                         0xc3,   0x00, true },
+       { "BR_INST_RETIRED.ALL_BRANCHES",               0xc4,   0x00, true },
+       { "BR_INST_RETIRED.JCC",                        0xc4,   0x7e, true },
+       { "BR_INST_RETIRED.ALL_TAKEN_BRANCHES",         0xc4,   0x80, true },
+       { "BR_INST_RETIRED.TAKEN_JCC",                  0xc4,   0xfe, true },
+       { "BR_INST_RETIRED.CALL",                       0xc4,   0xf9, true },
+       { "BR_INST_RETIRED.REL_CALL",                   0xc4,   0xfd, true },
+       { "BR_INST_RETIRED.IND_CALL",                   0xc4,   0xfb, true },
+       { "BR_INST_RETIRED.RETURN",                     0xc4,   0xf7, true },
+       { "BR_INST_RETIRED.NON_RETURN_IND",             0xc4,   0xeb, true },
+       { "BR_INST_RETIRED.FAR_BRANCH",                 0xc4,   0xbf, true },
+       { "BR_MISP_RETIRED.ALL_BRANCHES",               0xc5,   0x00, true },
+       { "BR_MISP_RETIRED.JCC",                        0xc5,   0x7e, true },
+       { "BR_MISP_RETIRED.TAKEN_JCC",                  0xc5,   0xfe, true },
+       { "BR_MISP_RETIRED.IND_CALL",                   0xc5,   0xfb, true },
+       { "BR_MISP_RETIRED.RETURN",                     0xc5,   0xf7, true },
+       { "BR_MISP_RETIRED.NON_RETURN_IND",             0xc5,   0xeb, true },
+       { "ISSUE_SLOTS_NOT_CONSUMED.RESOURCE_FULL",     0xca,   0x01, true },
+       { "ISSUE_SLOTS_NOT_CONSUMED.RECOVERY",          0xca,   0x02, true },
+       { "ISSUE_SLOTS_NOT_CONSUMED.ANY",               0xca,   0x00, true },
+       { "HW_INTERRUPTS.RECEIVED",                     0xcb,   0x01, true },
+       { "HW_INTERRUPTS.MASKED",                       0xcb,   0x02, true },
+       { "HW_INTERRUPTS.PENDING_AND_MASKED",           0xcb,   0x04, true },
+       { "CYCLES_DIV_BUSY.ALL",                        0xcd,   0x00, true },
+       { "CYCLES_DIV_BUSY.IDIV",                       0xcd,   0x01, true },
+       { "CYCLES_DIV_BUSY.FPDIV",                      0xcd,   0x02, true },
+       { "MEM_UOPS_RETIRED.ALL_LOADS",                 0xd0,   0x81, true },
+       { "MEM_UOPS_RETIRED.ALL_STORES",                0xd0,   0x82, true },
+       { "MEM_UOPS_RETIRED.ALL",                       0xd0,   0x83, true },
+       { "MEM_UOPS_RETIRED.DTLB_MISS_LOADS",           0xd0,   0x11, true },
+       { "MEM_UOPS_RETIRED.DTLB_MISS_STORES",          0xd0,   0x12, true },
+       { "MEM_UOPS_RETIRED.DTLB_MISS",                 0xd0,   0x13, true },
+       { "MEM_UOPS_RETIRED.LOCK_LOADS",                0xd0,   0x21, true },
+       { "MEM_UOPS_RETIRED.SPLIT_LOADS",               0xd0,   0x41, true },
+       { "MEM_UOPS_RETIRED.SPLIT_STORES",              0xd0,   0x42, true },
+       { "MEM_UOPS_RETIRED.SPLIT",                     0xd0,   0x43, true },
+       { "MEM_LOAD_UOPS_RETIRED.L1_HIT",               0xd1,   0x01, true },
+       { "MEM_LOAD_UOPS_RETIRED.L1_MISS",              0xd1,   0x08, true },
+       { "MEM_LOAD_UOPS_RETIRED.L2_HIT",               0xd1,   0x02, true },
+       { "MEM_LOAD_UOPS_RETIRED.L2_MISS",              0xd1,   0x10, true },
+       { "MEM_LOAD_UOPS_RETIRED.HITM",                 0xd1,   0x20, true },
+       { "MEM_LOAD_UOPS_RETIRED.WCB_HIT",              0xd1,   0x40, true },
+       { "MEM_LOAD_UOPS_RETIRED.DRAM_HIT",             0xd1,   0x80, true },
+       { "BACLEARS.ALL",                               0xe6,   0x01, true },
+       { "BACLEARS.RETURN",                            0xe6,   0x08, true },
+       { "BACLEAR.CONDS",                              0xe6,   0x10, true },
+       { "MS_DECODED.MS_ENTRY",                        0xe7,   0x01, true },
+       { "DECODED_RESTRICTION.PREDECODE_WRONG",        0xe9,   0x01, true },
 };
 
 static struct event_table intel_goldmont = {
@@ -333,13 +333,13 @@
        { "DTLB_STORE_MISSES.WALK_COMPLETED_2M_4M",     0x49,   0x04, true },
        { "DTLB_STORE_MISSES.WALK_COMPLETED_1GB",       0x49,   0x08, true },
        { "DTLB_STORE_MISSES.WALK_PENDING",             0x49,   0x10, true },
-       { "EPT.WALK_PENDING",                           0x4F,   0x10, true },
+       { "EPT.WALK_PENDING",                           0x4f,   0x10, true },
        { "ITLB_MISSES.WALK_COMPLETED_4K",              0x85,   0x08, true },
        { "ITLB_MISSES.WALK_COMPLETED_2M_4M",           0x85,   0x04, true },
        { "ITLB_MISSES.WALK_COMPLETED_1GB",             0x85,   0x08, true },
        { "ITLB_MISSES.WALK_PENDING",                   0x85,   0x10, true },
-       { "TLB_FLUSHES.STLB_ANY",                       0xBD,   0x20, true },
-       { "MACHINE_CLEARS.PAGE_FAULT",                  0xC3,   0x20, true },
+       { "TLB_FLUSHES.STLB_ANY",                       0xbd,   0x20, true },
+       { "MACHINE_CLEARS.PAGE_FAULT",                  0xc3,   0x20, true },
 };



Home | Main Index | Thread Index | Old Index