diff options
author | Ray Kinsella <mdr@ashroe.eu> | 2022-02-18 04:17:56 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2022-02-18 14:50:07 +0000 |
commit | 489d89c1cb7c57edca215c4eb2e6d1af3b75b147 (patch) | |
tree | 9d29d37fac7ecb5bfb83497ab150a952f492853b /src/plugins/perfmon/intel/core.h | |
parent | 502714fc442cef7680f549ab7dfc735956b75058 (diff) |
perfmon: show distribution of uops delivered to frontend
Breakdown the distribution of uops delivered to the frontend.
Collerates directly with the source of the uops.
Type: improvement
Signed-off-by: Ray Kinsella <mdr@ashroe.eu>
Change-Id: I93a57dbe56dfa0f378527844aa4e63f45a548e55
Diffstat (limited to 'src/plugins/perfmon/intel/core.h')
-rw-r--r-- | src/plugins/perfmon/intel/core.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/plugins/perfmon/intel/core.h b/src/plugins/perfmon/intel/core.h index 108331674db..98ab9e539dd 100644 --- a/src/plugins/perfmon/intel/core.h +++ b/src/plugins/perfmon/intel/core.h @@ -152,6 +152,17 @@ _ (0x9C, 0x01, 0, 0, 0, 0x05, IDQ_UOPS_NOT_DELIVERED, CORE, \ "Uops not delivered to Resource Allocation Table (RAT) per thread when " \ "backend of the machine is not stalled") \ + _ (0x9C, 0x01, 0, 0, 1, 0x01, IDQ_UOPS_NOT_DELIVERED, CYCLES_FE_WAS_OK, \ + "Cycles with 4 uops delivered by the front end or Resource Allocation " \ + "Table (RAT) was stalling FE.x") \ + _ (0x9C, 0x01, 0, 0, 0, 0x01, IDQ_UOPS_NOT_DELIVERED_CYCLES_3_UOP_DELIV, \ + CORE, "Cycles with 3 uops delivered by the front end.") \ + _ (0x9C, 0x01, 0, 0, 0, 0x02, IDQ_UOPS_NOT_DELIVERED_CYCLES_2_UOP_DELIV, \ + CORE, "Cycles with 2 uops delivered by the front end.") \ + _ (0x9C, 0x01, 0, 0, 0, 0x03, IDQ_UOPS_NOT_DELIVERED_CYCLES_1_UOP_DELIV, \ + CORE, "Cycles with 1 uops delivered by the front end.") \ + _ (0x9C, 0x01, 0, 0, 0, 0x04, IDQ_UOPS_NOT_DELIVERED_CYCLES_0_UOP_DELIV, \ + CORE, "Cycles with 0 uops delivered by the front end.") \ _ (0xA1, 0x01, 0, 0, 0, 0x00, UOPS_DISPATCHED, PORT_0, \ "Number of uops executed on port 0") \ _ (0xA1, 0x02, 0, 0, 0, 0x00, UOPS_DISPATCHED, PORT_1, \ |