-
Notifications
You must be signed in to change notification settings - Fork 1
/
perf
1312 lines (1303 loc) · 67.9 KB
/
perf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
branch-instructions OR branches [Hardware event]
branch-misses [Hardware event]
cache-misses [Hardware event]
cache-references [Hardware event]
cpu-cycles OR cycles [Hardware event]
instructions [Hardware event]
ref-cycles [Hardware event]
stalled-cycles-backend OR idle-cycles-backend [Hardware event]
stalled-cycles-frontend OR idle-cycles-frontend [Hardware event]
alignment-faults [Software event]
bpf-output [Software event]
context-switches OR cs [Software event]
cpu-clock [Software event]
cpu-migrations OR migrations [Software event]
dummy [Software event]
emulation-faults [Software event]
major-faults [Software event]
minor-faults [Software event]
page-faults OR faults [Software event]
task-clock [Software event]
L1-dcache-load-misses [Hardware cache event]
L1-dcache-loads [Hardware cache event]
L1-dcache-prefetch-misses [Hardware cache event]
L1-dcache-prefetches [Hardware cache event]
L1-dcache-store-misses [Hardware cache event]
L1-dcache-stores [Hardware cache event]
L1-icache-load-misses [Hardware cache event]
L1-icache-loads [Hardware cache event]
LLC-load-misses [Hardware cache event]
LLC-loads [Hardware cache event]
LLC-prefetch-misses [Hardware cache event]
LLC-prefetches [Hardware cache event]
LLC-store-misses [Hardware cache event]
LLC-stores [Hardware cache event]
branch-load-misses [Hardware cache event]
branch-loads [Hardware cache event]
dTLB-load-misses [Hardware cache event]
dTLB-loads [Hardware cache event]
dTLB-store-misses [Hardware cache event]
dTLB-stores [Hardware cache event]
iTLB-load-misses [Hardware cache event]
iTLB-loads [Hardware cache event]
node-load-misses [Hardware cache event]
node-loads [Hardware cache event]
node-prefetch-misses [Hardware cache event]
node-prefetches [Hardware cache event]
node-store-misses [Hardware cache event]
node-stores [Hardware cache event]
branch-instructions OR cpu/branch-instructions/ [Kernel PMU event]
branch-misses OR cpu/branch-misses/ [Kernel PMU event]
cache-misses OR cpu/cache-misses/ [Kernel PMU event]
cache-references OR cpu/cache-references/ [Kernel PMU event]
cpu-cycles OR cpu/cpu-cycles/ [Kernel PMU event]
cstate_core/c3-residency/ [Kernel PMU event]
cstate_core/c6-residency/ [Kernel PMU event]
cstate_pkg/c3-residency/ [Kernel PMU event]
cstate_pkg/c6-residency/ [Kernel PMU event]
cstate_pkg/c7-residency/ [Kernel PMU event]
instructions OR cpu/instructions/ [Kernel PMU event]
mem-loads OR cpu/mem-loads/ [Kernel PMU event]
msr/aperf/ [Kernel PMU event]
msr/mperf/ [Kernel PMU event]
msr/smi/ [Kernel PMU event]
msr/tsc/ [Kernel PMU event]
ref-cycles OR cpu/ref-cycles/ [Kernel PMU event]
stalled-cycles-backend OR cpu/stalled-cycles-backend/ [Kernel PMU event]
stalled-cycles-frontend OR cpu/stalled-cycles-frontend/ [Kernel PMU event]
uncore_mbox_0/bbox_cmds_read/ [Kernel PMU event]
uncore_mbox_0/bbox_cmds_write/ [Kernel PMU event]
uncore_mbox_1/bbox_cmds_read/ [Kernel PMU event]
uncore_mbox_1/bbox_cmds_write/ [Kernel PMU event]
uncore_rbox_0/qpi0_date_response/ [Kernel PMU event]
uncore_rbox_0/qpi0_flit_send/ [Kernel PMU event]
uncore_rbox_0/qpi0_idle_filt/ [Kernel PMU event]
uncore_rbox_0/qpi1_date_response/ [Kernel PMU event]
uncore_rbox_0/qpi1_filt_send/ [Kernel PMU event]
uncore_rbox_0/qpi1_idle_filt/ [Kernel PMU event]
uncore_rbox_1/qpi0_date_response/ [Kernel PMU event]
uncore_rbox_1/qpi0_flit_send/ [Kernel PMU event]
uncore_rbox_1/qpi0_idle_filt/ [Kernel PMU event]
uncore_rbox_1/qpi1_date_response/ [Kernel PMU event]
uncore_rbox_1/qpi1_filt_send/ [Kernel PMU event]
uncore_rbox_1/qpi1_idle_filt/ [Kernel PMU event]
uncore_wbox/clockticks/ [Kernel PMU event]
cache:
cache_lock_cycles.l1d
[Cycles L1D locked]
cache_lock_cycles.l1d_l2
[Cycles L1D and L2 locked]
l1d.m_evict
[L1D cache lines replaced in M state]
l1d.m_repl
[L1D cache lines allocated in the M state]
l1d.m_snoop_evict
[L1D snoop eviction of cache lines in M state]
l1d.repl
[L1 data cache lines allocated]
l1d_cache_prefetch_lock_fb_hit
[L1D prefetch load lock accepted in fill buffer]
l1d_prefetch.miss
[L1D hardware prefetch misses]
l1d_prefetch.requests
[L1D hardware prefetch requests]
l1d_prefetch.triggers
[L1D hardware prefetch requests triggered]
l1d_wb_l2.e_state
[L1 writebacks to L2 in E state]
l1d_wb_l2.i_state
[L1 writebacks to L2 in I state (misses)]
l1d_wb_l2.m_state
[L1 writebacks to L2 in M state]
l1d_wb_l2.mesi
[All L1 writebacks to L2]
l1d_wb_l2.s_state
[L1 writebacks to L2 in S state]
l2_data_rqsts.any
[All L2 data requests]
l2_data_rqsts.demand.e_state
[L2 data demand loads in E state]
l2_data_rqsts.demand.i_state
[L2 data demand loads in I state (misses)]
l2_data_rqsts.demand.m_state
[L2 data demand loads in M state]
l2_data_rqsts.demand.mesi
[L2 data demand requests]
l2_data_rqsts.demand.s_state
[L2 data demand loads in S state]
l2_data_rqsts.prefetch.e_state
[L2 data prefetches in E state]
l2_data_rqsts.prefetch.i_state
[L2 data prefetches in the I state (misses)]
l2_data_rqsts.prefetch.m_state
[L2 data prefetches in M state]
l2_data_rqsts.prefetch.mesi
[All L2 data prefetches]
l2_data_rqsts.prefetch.s_state
[L2 data prefetches in the S state]
l2_lines_in.any
[L2 lines alloacated]
l2_lines_in.e_state
[L2 lines allocated in the E state]
l2_lines_in.s_state
[L2 lines allocated in the S state]
l2_lines_out.any
[L2 lines evicted]
l2_lines_out.demand_clean
[L2 lines evicted by a demand request]
l2_lines_out.demand_dirty
[L2 modified lines evicted by a demand request]
l2_lines_out.prefetch_clean
[L2 lines evicted by a prefetch request]
l2_lines_out.prefetch_dirty
[L2 modified lines evicted by a prefetch request]
l2_rqsts.ifetch_hit
[L2 instruction fetch hits]
l2_rqsts.ifetch_miss
[L2 instruction fetch misses]
l2_rqsts.ifetches
[L2 instruction fetches]
l2_rqsts.ld_hit
[L2 load hits]
l2_rqsts.ld_miss
[L2 load misses]
l2_rqsts.loads
[L2 requests]
l2_rqsts.miss
[All L2 misses]
l2_rqsts.prefetch_hit
[L2 prefetch hits]
l2_rqsts.prefetch_miss
[L2 prefetch misses]
l2_rqsts.prefetches
[All L2 prefetches]
l2_rqsts.references
[All L2 requests]
l2_rqsts.rfo_hit
[L2 RFO hits]
l2_rqsts.rfo_miss
[L2 RFO misses]
l2_rqsts.rfos
[L2 RFO requests]
l2_transactions.any
[All L2 transactions]
l2_transactions.fill
[L2 fill transactions]
l2_transactions.ifetch
[L2 instruction fetch transactions]
l2_transactions.l1d_wb
[L1D writeback to L2 transactions]
l2_transactions.load
[L2 Load transactions]
l2_transactions.prefetch
[L2 prefetch transactions]
l2_transactions.rfo
[L2 RFO transactions]
l2_transactions.wb
[L2 writeback to LLC transactions]
l2_write.lock.e_state
[L2 demand lock RFOs in E state]
l2_write.lock.hit
[All demand L2 lock RFOs that hit the cache]
l2_write.lock.i_state
[L2 demand lock RFOs in I state (misses)]
l2_write.lock.m_state
[L2 demand lock RFOs in M state]
l2_write.lock.mesi
[All demand L2 lock RFOs]
l2_write.lock.s_state
[L2 demand lock RFOs in S state]
l2_write.rfo.hit
[All L2 demand store RFOs that hit the cache]
l2_write.rfo.i_state
[L2 demand store RFOs in I state (misses)]
l2_write.rfo.m_state
[L2 demand store RFOs in M state]
l2_write.rfo.mesi
[All L2 demand store RFOs]
l2_write.rfo.s_state
[L2 demand store RFOs in S state]
longest_lat_cache.miss
[Longest latency cache miss]
longest_lat_cache.reference
[Longest latency cache reference]
mem_inst_retired.latency_above_threshold_0
[Memory instructions retired above 0 clocks (Precise Event)]
mem_inst_retired.latency_above_threshold_1024
[Memory instructions retired above 1024 clocks (Precise Event)]
mem_inst_retired.latency_above_threshold_128
[Memory instructions retired above 128 clocks (Precise Event)]
mem_inst_retired.latency_above_threshold_16
[Memory instructions retired above 16 clocks (Precise Event)]
mem_inst_retired.latency_above_threshold_16384
[Memory instructions retired above 16384 clocks (Precise Event)]
mem_inst_retired.latency_above_threshold_2048
[Memory instructions retired above 2048 clocks (Precise Event)]
mem_inst_retired.latency_above_threshold_256
[Memory instructions retired above 256 clocks (Precise Event)]
mem_inst_retired.latency_above_threshold_32
[Memory instructions retired above 32 clocks (Precise Event)]
mem_inst_retired.latency_above_threshold_32768
[Memory instructions retired above 32768 clocks (Precise Event)]
mem_inst_retired.latency_above_threshold_4
[Memory instructions retired above 4 clocks (Precise Event)]
mem_inst_retired.latency_above_threshold_4096
[Memory instructions retired above 4096 clocks (Precise Event)]
mem_inst_retired.latency_above_threshold_512
[Memory instructions retired above 512 clocks (Precise Event)]
mem_inst_retired.latency_above_threshold_64
[Memory instructions retired above 64 clocks (Precise Event)]
mem_inst_retired.latency_above_threshold_8
[Memory instructions retired above 8 clocks (Precise Event)]
mem_inst_retired.latency_above_threshold_8192
[Memory instructions retired above 8192 clocks (Precise Event)]
mem_inst_retired.loads
[Instructions retired which contains a load (Precise Event)]
mem_inst_retired.stores
[Instructions retired which contains a store (Precise Event)]
mem_load_retired.hit_lfb
[Retired loads that miss L1D and hit an previously allocated LFB
(Precise Event)]
mem_load_retired.l1d_hit
[Retired loads that hit the L1 data cache (Precise Event)]
mem_load_retired.l2_hit
[Retired loads that hit the L2 cache (Precise Event)]
mem_load_retired.llc_miss
[Retired loads that miss the LLC cache (Precise Event)]
mem_load_retired.llc_unshared_hit
[Retired loads that hit valid versions in the LLC cache (Precise Event)]
mem_load_retired.other_core_l2_hit_hitm
[Retired loads that hit sibling core's L2 in modified or unmodified
states (Precise Event)]
mem_uncore_retired.local_dram_and_remote_cache_hit
[Load instructions retired local dram and remote cache HIT data sources
(Precise Event)]
mem_uncore_retired.local_hitm
[Load instructions retired that HIT modified data in sibling core
(Precise Event)]
mem_uncore_retired.remote_dram
[Load instructions retired remote DRAM and remote home-remote cache
HITM (Precise Event)]
mem_uncore_retired.remote_hitm
[Retired loads that hit remote socket in modified state (Precise Event)]
mem_uncore_retired.uncacheable
[Load instructions retired IO (Precise Event)]
offcore_requests.any
[All offcore requests]
offcore_requests.any.read
[Offcore read requests]
offcore_requests.any.rfo
[Offcore RFO requests]
offcore_requests.demand.read_code
[Offcore demand code read requests]
offcore_requests.demand.read_data
[Offcore demand data read requests]
offcore_requests.demand.rfo
[Offcore demand RFO requests]
offcore_requests.l1d_writeback
[Offcore L1 data cache writebacks]
offcore_requests_outstanding.any.read
[Outstanding offcore reads]
offcore_requests_outstanding.any.read_not_empty
[Cycles offcore reads busy]
offcore_requests_outstanding.demand.read_code
[Outstanding offcore demand code reads]
offcore_requests_outstanding.demand.read_code_not_empty
[Cycles offcore demand code read busy]
offcore_requests_outstanding.demand.read_data
[Outstanding offcore demand data reads]
offcore_requests_outstanding.demand.read_data_not_empty
[Cycles offcore demand data read busy]
offcore_requests_outstanding.demand.rfo
[Outstanding offcore demand RFOs]
offcore_requests_outstanding.demand.rfo_not_empty
[Cycles offcore demand RFOs busy]
offcore_requests_sq_full
[Offcore requests blocked due to Super Queue full]
offcore_response.any_data.any_cache_dram
[Offcore data reads satisfied by any cache or DRAM]
offcore_response.any_data.any_location
[All offcore data reads]
offcore_response.any_data.io_csr_mmio
[Offcore data reads satisfied by the IO, CSR, MMIO unit]
offcore_response.any_data.llc_hit_no_other_core
[Offcore data reads satisfied by the LLC and not found in a sibling
core]
offcore_response.any_data.llc_hit_other_core_hit
[Offcore data reads satisfied by the LLC and HIT in a sibling core]
offcore_response.any_data.llc_hit_other_core_hitm
[Offcore data reads satisfied by the LLC and HITM in a sibling core]
offcore_response.any_data.local_cache
[Offcore data reads satisfied by the LLC]
offcore_response.any_data.local_cache_dram
[Offcore data reads satisfied by the LLC or local DRAM]
offcore_response.any_data.remote_cache
[Offcore data reads satisfied by a remote cache]
offcore_response.any_data.remote_cache_dram
[Offcore data reads satisfied by a remote cache or remote DRAM]
offcore_response.any_data.remote_cache_hit
[Offcore data reads that HIT in a remote cache]
offcore_response.any_data.remote_cache_hitm
[Offcore data reads that HITM in a remote cache]
offcore_response.any_ifetch.any_cache_dram
[Offcore code reads satisfied by any cache or DRAM]
offcore_response.any_ifetch.any_location
[All offcore code reads]
offcore_response.any_ifetch.io_csr_mmio
[Offcore code reads satisfied by the IO, CSR, MMIO unit]
offcore_response.any_ifetch.llc_hit_no_other_core
[Offcore code reads satisfied by the LLC and not found in a sibling
core]
offcore_response.any_ifetch.llc_hit_other_core_hit
[Offcore code reads satisfied by the LLC and HIT in a sibling core]
offcore_response.any_ifetch.llc_hit_other_core_hitm
[Offcore code reads satisfied by the LLC and HITM in a sibling core]
offcore_response.any_ifetch.local_cache
[Offcore code reads satisfied by the LLC]
offcore_response.any_ifetch.local_cache_dram
[Offcore code reads satisfied by the LLC or local DRAM]
offcore_response.any_ifetch.remote_cache
[Offcore code reads satisfied by a remote cache]
offcore_response.any_ifetch.remote_cache_dram
[Offcore code reads satisfied by a remote cache or remote DRAM]
offcore_response.any_ifetch.remote_cache_hit
[Offcore code reads that HIT in a remote cache]
offcore_response.any_ifetch.remote_cache_hitm
[Offcore code reads that HITM in a remote cache]
offcore_response.any_request.any_cache_dram
[Offcore requests satisfied by any cache or DRAM]
offcore_response.any_request.any_location
[All offcore requests]
offcore_response.any_request.io_csr_mmio
[Offcore requests satisfied by the IO, CSR, MMIO unit]
offcore_response.any_request.llc_hit_no_other_core
[Offcore requests satisfied by the LLC and not found in a sibling core]
offcore_response.any_request.llc_hit_other_core_hit
[Offcore requests satisfied by the LLC and HIT in a sibling core]
offcore_response.any_request.llc_hit_other_core_hitm
[Offcore requests satisfied by the LLC and HITM in a sibling core]
offcore_response.any_request.local_cache
[Offcore requests satisfied by the LLC]
offcore_response.any_request.local_cache_dram
[Offcore requests satisfied by the LLC or local DRAM]
offcore_response.any_request.remote_cache
[Offcore requests satisfied by a remote cache]
offcore_response.any_request.remote_cache_dram
[Offcore requests satisfied by a remote cache or remote DRAM]
offcore_response.any_request.remote_cache_hit
[Offcore requests that HIT in a remote cache]
offcore_response.any_request.remote_cache_hitm
[Offcore requests that HITM in a remote cache]
offcore_response.any_rfo.any_cache_dram
[Offcore RFO requests satisfied by any cache or DRAM]
offcore_response.any_rfo.any_location
[All offcore RFO requests]
offcore_response.any_rfo.io_csr_mmio
[Offcore RFO requests satisfied by the IO, CSR, MMIO unit]
offcore_response.any_rfo.llc_hit_no_other_core
[Offcore RFO requests satisfied by the LLC and not found in a sibling
core]
offcore_response.any_rfo.llc_hit_other_core_hit
[Offcore RFO requests satisfied by the LLC and HIT in a sibling core]
offcore_response.any_rfo.llc_hit_other_core_hitm
[Offcore RFO requests satisfied by the LLC and HITM in a sibling core]
offcore_response.any_rfo.local_cache
[Offcore RFO requests satisfied by the LLC]
offcore_response.any_rfo.local_cache_dram
[Offcore RFO requests satisfied by the LLC or local DRAM]
offcore_response.any_rfo.remote_cache
[Offcore RFO requests satisfied by a remote cache]
offcore_response.any_rfo.remote_cache_dram
[Offcore RFO requests satisfied by a remote cache or remote DRAM]
offcore_response.any_rfo.remote_cache_hit
[Offcore RFO requests that HIT in a remote cache]
offcore_response.any_rfo.remote_cache_hitm
[Offcore RFO requests that HITM in a remote cache]
offcore_response.corewb.any_cache_dram
[Offcore writebacks to any cache or DRAM]
offcore_response.corewb.any_location
[All offcore writebacks]
offcore_response.corewb.io_csr_mmio
[Offcore writebacks to the IO, CSR, MMIO unit]
offcore_response.corewb.llc_hit_no_other_core
[Offcore writebacks to the LLC and not found in a sibling core]
offcore_response.corewb.llc_hit_other_core_hitm
[Offcore writebacks to the LLC and HITM in a sibling core]
offcore_response.corewb.local_cache
[Offcore writebacks to the LLC]
offcore_response.corewb.local_cache_dram
[Offcore writebacks to the LLC or local DRAM]
offcore_response.corewb.remote_cache
[Offcore writebacks to a remote cache]
offcore_response.corewb.remote_cache_dram
[Offcore writebacks to a remote cache or remote DRAM]
offcore_response.corewb.remote_cache_hit
[Offcore writebacks that HIT in a remote cache]
offcore_response.corewb.remote_cache_hitm
[Offcore writebacks that HITM in a remote cache]
offcore_response.data_ifetch.any_cache_dram
[Offcore code or data read requests satisfied by any cache or DRAM]
offcore_response.data_ifetch.any_location
[All offcore code or data read requests]
offcore_response.data_ifetch.io_csr_mmio
[Offcore code or data read requests satisfied by the IO, CSR, MMIO unit]
offcore_response.data_ifetch.llc_hit_no_other_core
[Offcore code or data read requests satisfied by the LLC and not found
in a sibling core]
offcore_response.data_ifetch.llc_hit_other_core_hit
[Offcore code or data read requests satisfied by the LLC and HIT in a
sibling core]
offcore_response.data_ifetch.llc_hit_other_core_hitm
[Offcore code or data read requests satisfied by the LLC and HITM in a
sibling core]
offcore_response.data_ifetch.local_cache
[Offcore code or data read requests satisfied by the LLC]
offcore_response.data_ifetch.local_cache_dram
[Offcore code or data read requests satisfied by the LLC or local DRAM]
offcore_response.data_ifetch.remote_cache
[Offcore code or data read requests satisfied by a remote cache]
offcore_response.data_ifetch.remote_cache_dram
[Offcore code or data read requests satisfied by a remote cache or
remote DRAM]
offcore_response.data_ifetch.remote_cache_hit
[Offcore code or data read requests that HIT in a remote cache]
offcore_response.data_ifetch.remote_cache_hitm
[Offcore code or data read requests that HITM in a remote cache]
offcore_response.data_in.any_cache_dram
[Offcore request = all data, response = any cache_dram]
offcore_response.data_in.any_location
[Offcore request = all data, response = any location]
offcore_response.data_in.io_csr_mmio
[Offcore data reads, RFO's and prefetches satisfied by the IO, CSR,
MMIO unit]
offcore_response.data_in.llc_hit_no_other_core
[Offcore data reads, RFO's and prefetches statisfied by the LLC and not
found in a sibling core]
offcore_response.data_in.llc_hit_other_core_hit
[Offcore data reads, RFO's and prefetches satisfied by the LLC and HIT
in a sibling core]
offcore_response.data_in.llc_hit_other_core_hitm
[Offcore data reads, RFO's and prefetches satisfied by the LLC and HITM
in a sibling core]
offcore_response.data_in.local_cache
[Offcore request = all data, response = local cache]
offcore_response.data_in.local_cache_dram
[Offcore request = all data, response = local cache or dram]
offcore_response.data_in.remote_cache
[Offcore request = all data, response = remote cache]
offcore_response.data_in.remote_cache_dram
[Offcore request = all data, response = remote cache or dram]
offcore_response.data_in.remote_cache_hit
[Offcore data reads, RFO's and prefetches that HIT in a remote cache]
offcore_response.data_in.remote_cache_hitm
[Offcore data reads, RFO's and prefetches that HITM in a remote cache]
offcore_response.demand_data.any_cache_dram
[Offcore demand data requests satisfied by any cache or DRAM]
offcore_response.demand_data.any_location
[All offcore demand data requests]
offcore_response.demand_data.io_csr_mmio
[Offcore demand data requests satisfied by the IO, CSR, MMIO unit]
offcore_response.demand_data.llc_hit_no_other_core
[Offcore demand data requests satisfied by the LLC and not found in a
sibling core]
offcore_response.demand_data.llc_hit_other_core_hit
[Offcore demand data requests satisfied by the LLC and HIT in a sibling
core]
offcore_response.demand_data.llc_hit_other_core_hitm
[Offcore demand data requests satisfied by the LLC and HITM in a
sibling core]
offcore_response.demand_data.local_cache
[Offcore demand data requests satisfied by the LLC]
offcore_response.demand_data.local_cache_dram
[Offcore demand data requests satisfied by the LLC or local DRAM]
offcore_response.demand_data.remote_cache
[Offcore demand data requests satisfied by a remote cache]
offcore_response.demand_data.remote_cache_dram
[Offcore demand data requests satisfied by a remote cache or remote
DRAM]
offcore_response.demand_data.remote_cache_hit
[Offcore demand data requests that HIT in a remote cache]
offcore_response.demand_data.remote_cache_hitm
[Offcore demand data requests that HITM in a remote cache]
offcore_response.demand_data_rd.any_cache_dram
[Offcore demand data reads satisfied by any cache or DRAM]
offcore_response.demand_data_rd.any_location
[All offcore demand data reads]
offcore_response.demand_data_rd.io_csr_mmio
[Offcore demand data reads satisfied by the IO, CSR, MMIO unit]
offcore_response.demand_data_rd.llc_hit_no_other_core
[Offcore demand data reads satisfied by the LLC and not found in a
sibling core]
offcore_response.demand_data_rd.llc_hit_other_core_hit
[Offcore demand data reads satisfied by the LLC and HIT in a sibling
core]
offcore_response.demand_data_rd.llc_hit_other_core_hitm
[Offcore demand data reads satisfied by the LLC and HITM in a sibling
core]
offcore_response.demand_data_rd.local_cache
[Offcore demand data reads satisfied by the LLC]
offcore_response.demand_data_rd.local_cache_dram
[Offcore demand data reads satisfied by the LLC or local DRAM]
offcore_response.demand_data_rd.remote_cache
[Offcore demand data reads satisfied by a remote cache]
offcore_response.demand_data_rd.remote_cache_dram
[Offcore demand data reads satisfied by a remote cache or remote DRAM]
offcore_response.demand_data_rd.remote_cache_hit
[Offcore demand data reads that HIT in a remote cache]
offcore_response.demand_data_rd.remote_cache_hitm
[Offcore demand data reads that HITM in a remote cache]
offcore_response.demand_ifetch.any_cache_dram
[Offcore demand code reads satisfied by any cache or DRAM]
offcore_response.demand_ifetch.any_location
[All offcore demand code reads]
offcore_response.demand_ifetch.io_csr_mmio
[Offcore demand code reads satisfied by the IO, CSR, MMIO unit]
offcore_response.demand_ifetch.llc_hit_no_other_core
[Offcore demand code reads satisfied by the LLC and not found in a
sibling core]
offcore_response.demand_ifetch.llc_hit_other_core_hit
[Offcore demand code reads satisfied by the LLC and HIT in a sibling
core]
offcore_response.demand_ifetch.llc_hit_other_core_hitm
[Offcore demand code reads satisfied by the LLC and HITM in a sibling
core]
offcore_response.demand_ifetch.local_cache
[Offcore demand code reads satisfied by the LLC]
offcore_response.demand_ifetch.local_cache_dram
[Offcore demand code reads satisfied by the LLC or local DRAM]
offcore_response.demand_ifetch.remote_cache
[Offcore demand code reads satisfied by a remote cache]
offcore_response.demand_ifetch.remote_cache_dram
[Offcore demand code reads satisfied by a remote cache or remote DRAM]
offcore_response.demand_ifetch.remote_cache_hit
[Offcore demand code reads that HIT in a remote cache]
offcore_response.demand_ifetch.remote_cache_hitm
[Offcore demand code reads that HITM in a remote cache]
offcore_response.demand_rfo.any_cache_dram
[Offcore demand RFO requests satisfied by any cache or DRAM]
offcore_response.demand_rfo.any_location
[All offcore demand RFO requests]
offcore_response.demand_rfo.io_csr_mmio
[Offcore demand RFO requests satisfied by the IO, CSR, MMIO unit]
offcore_response.demand_rfo.llc_hit_no_other_core
[Offcore demand RFO requests satisfied by the LLC and not found in a
sibling core]
offcore_response.demand_rfo.llc_hit_other_core_hit
[Offcore demand RFO requests satisfied by the LLC and HIT in a sibling
core]
offcore_response.demand_rfo.llc_hit_other_core_hitm
[Offcore demand RFO requests satisfied by the LLC and HITM in a sibling
core]
offcore_response.demand_rfo.local_cache
[Offcore demand RFO requests satisfied by the LLC]
offcore_response.demand_rfo.local_cache_dram
[Offcore demand RFO requests satisfied by the LLC or local DRAM]
offcore_response.demand_rfo.remote_cache
[Offcore demand RFO requests satisfied by a remote cache]
offcore_response.demand_rfo.remote_cache_dram
[Offcore demand RFO requests satisfied by a remote cache or remote DRAM]
offcore_response.demand_rfo.remote_cache_hit
[Offcore demand RFO requests that HIT in a remote cache]
offcore_response.demand_rfo.remote_cache_hitm
[Offcore demand RFO requests that HITM in a remote cache]
offcore_response.other.any_cache_dram
[Offcore other requests satisfied by any cache or DRAM]
offcore_response.other.any_location
[All offcore other requests]
offcore_response.other.io_csr_mmio
[Offcore other requests satisfied by the IO, CSR, MMIO unit]
offcore_response.other.llc_hit_no_other_core
[Offcore other requests satisfied by the LLC and not found in a sibling
core]
offcore_response.other.llc_hit_other_core_hit
[Offcore other requests satisfied by the LLC and HIT in a sibling core]
offcore_response.other.llc_hit_other_core_hitm
[Offcore other requests satisfied by the LLC and HITM in a sibling core]
offcore_response.other.local_cache
[Offcore other requests satisfied by the LLC]
offcore_response.other.local_cache_dram
[Offcore other requests satisfied by the LLC or local DRAM]
offcore_response.other.remote_cache
[Offcore other requests satisfied by a remote cache]
offcore_response.other.remote_cache_dram
[Offcore other requests satisfied by a remote cache or remote DRAM]
offcore_response.other.remote_cache_hit
[Offcore other requests that HIT in a remote cache]
offcore_response.other.remote_cache_hitm
[Offcore other requests that HITM in a remote cache]
offcore_response.pf_data.any_cache_dram
[Offcore prefetch data requests satisfied by any cache or DRAM]
offcore_response.pf_data.any_location
[All offcore prefetch data requests]
offcore_response.pf_data.io_csr_mmio
[Offcore prefetch data requests satisfied by the IO, CSR, MMIO unit]
offcore_response.pf_data.llc_hit_no_other_core
[Offcore prefetch data requests satisfied by the LLC and not found in a
sibling core]
offcore_response.pf_data.llc_hit_other_core_hit
[Offcore prefetch data requests satisfied by the LLC and HIT in a
sibling core]
offcore_response.pf_data.llc_hit_other_core_hitm
[Offcore prefetch data requests satisfied by the LLC and HITM in a
sibling core]
offcore_response.pf_data.local_cache
[Offcore prefetch data requests satisfied by the LLC]
offcore_response.pf_data.local_cache_dram
[Offcore prefetch data requests satisfied by the LLC or local DRAM]
offcore_response.pf_data.remote_cache
[Offcore prefetch data requests satisfied by a remote cache]
offcore_response.pf_data.remote_cache_dram
[Offcore prefetch data requests satisfied by a remote cache or remote
DRAM]
offcore_response.pf_data.remote_cache_hit
[Offcore prefetch data requests that HIT in a remote cache]
offcore_response.pf_data.remote_cache_hitm
[Offcore prefetch data requests that HITM in a remote cache]
offcore_response.pf_data_rd.any_cache_dram
[Offcore prefetch data reads satisfied by any cache or DRAM]
offcore_response.pf_data_rd.any_location
[All offcore prefetch data reads]
offcore_response.pf_data_rd.io_csr_mmio
[Offcore prefetch data reads satisfied by the IO, CSR, MMIO unit]
offcore_response.pf_data_rd.llc_hit_no_other_core
[Offcore prefetch data reads satisfied by the LLC and not found in a
sibling core]
offcore_response.pf_data_rd.llc_hit_other_core_hit
[Offcore prefetch data reads satisfied by the LLC and HIT in a sibling
core]
offcore_response.pf_data_rd.llc_hit_other_core_hitm
[Offcore prefetch data reads satisfied by the LLC and HITM in a sibling
core]
offcore_response.pf_data_rd.local_cache
[Offcore prefetch data reads satisfied by the LLC]
offcore_response.pf_data_rd.local_cache_dram
[Offcore prefetch data reads satisfied by the LLC or local DRAM]
offcore_response.pf_data_rd.remote_cache
[Offcore prefetch data reads satisfied by a remote cache]
offcore_response.pf_data_rd.remote_cache_dram
[Offcore prefetch data reads satisfied by a remote cache or remote DRAM]
offcore_response.pf_data_rd.remote_cache_hit
[Offcore prefetch data reads that HIT in a remote cache]
offcore_response.pf_data_rd.remote_cache_hitm
[Offcore prefetch data reads that HITM in a remote cache]
offcore_response.pf_ifetch.any_cache_dram
[Offcore prefetch code reads satisfied by any cache or DRAM]
offcore_response.pf_ifetch.any_location
[All offcore prefetch code reads]
offcore_response.pf_ifetch.io_csr_mmio
[Offcore prefetch code reads satisfied by the IO, CSR, MMIO unit]
offcore_response.pf_ifetch.llc_hit_no_other_core
[Offcore prefetch code reads satisfied by the LLC and not found in a
sibling core]
offcore_response.pf_ifetch.llc_hit_other_core_hit
[Offcore prefetch code reads satisfied by the LLC and HIT in a sibling
core]
offcore_response.pf_ifetch.llc_hit_other_core_hitm
[Offcore prefetch code reads satisfied by the LLC and HITM in a sibling
core]
offcore_response.pf_ifetch.local_cache
[Offcore prefetch code reads satisfied by the LLC]
offcore_response.pf_ifetch.local_cache_dram
[Offcore prefetch code reads satisfied by the LLC or local DRAM]
offcore_response.pf_ifetch.remote_cache
[Offcore prefetch code reads satisfied by a remote cache]
offcore_response.pf_ifetch.remote_cache_dram
[Offcore prefetch code reads satisfied by a remote cache or remote DRAM]
offcore_response.pf_ifetch.remote_cache_hit
[Offcore prefetch code reads that HIT in a remote cache]
offcore_response.pf_ifetch.remote_cache_hitm
[Offcore prefetch code reads that HITM in a remote cache]
offcore_response.pf_rfo.any_cache_dram
[Offcore prefetch RFO requests satisfied by any cache or DRAM]
offcore_response.pf_rfo.any_location
[All offcore prefetch RFO requests]
offcore_response.pf_rfo.io_csr_mmio
[Offcore prefetch RFO requests satisfied by the IO, CSR, MMIO unit]
offcore_response.pf_rfo.llc_hit_no_other_core
[Offcore prefetch RFO requests satisfied by the LLC and not found in a
sibling core]
offcore_response.pf_rfo.llc_hit_other_core_hit
[Offcore prefetch RFO requests satisfied by the LLC and HIT in a
sibling core]
offcore_response.pf_rfo.llc_hit_other_core_hitm
[Offcore prefetch RFO requests satisfied by the LLC and HITM in a
sibling core]
offcore_response.pf_rfo.local_cache
[Offcore prefetch RFO requests satisfied by the LLC]
offcore_response.pf_rfo.local_cache_dram
[Offcore prefetch RFO requests satisfied by the LLC or local DRAM]
offcore_response.pf_rfo.remote_cache
[Offcore prefetch RFO requests satisfied by a remote cache]
offcore_response.pf_rfo.remote_cache_dram
[Offcore prefetch RFO requests satisfied by a remote cache or remote
DRAM]
offcore_response.pf_rfo.remote_cache_hit
[Offcore prefetch RFO requests that HIT in a remote cache]
offcore_response.pf_rfo.remote_cache_hitm
[Offcore prefetch RFO requests that HITM in a remote cache]
offcore_response.prefetch.any_cache_dram
[Offcore prefetch requests satisfied by any cache or DRAM]
offcore_response.prefetch.any_location
[All offcore prefetch requests]
offcore_response.prefetch.io_csr_mmio
[Offcore prefetch requests satisfied by the IO, CSR, MMIO unit]
offcore_response.prefetch.llc_hit_no_other_core
[Offcore prefetch requests satisfied by the LLC and not found in a
sibling core]
offcore_response.prefetch.llc_hit_other_core_hit
[Offcore prefetch requests satisfied by the LLC and HIT in a sibling
core]
offcore_response.prefetch.llc_hit_other_core_hitm
[Offcore prefetch requests satisfied by the LLC and HITM in a sibling
core]
offcore_response.prefetch.local_cache
[Offcore prefetch requests satisfied by the LLC]
offcore_response.prefetch.local_cache_dram
[Offcore prefetch requests satisfied by the LLC or local DRAM]
offcore_response.prefetch.remote_cache
[Offcore prefetch requests satisfied by a remote cache]
offcore_response.prefetch.remote_cache_dram
[Offcore prefetch requests satisfied by a remote cache or remote DRAM]
offcore_response.prefetch.remote_cache_hit
[Offcore prefetch requests that HIT in a remote cache]
offcore_response.prefetch.remote_cache_hitm
[Offcore prefetch requests that HITM in a remote cache]
sq_misc.lru_hints
[Super Queue LRU hints sent to LLC]
sq_misc.split_lock
[Super Queue lock splits across a cache line]
store_blocks.at_ret
[Loads delayed with at-Retirement block code]
store_blocks.l1d_block
[Cacheable loads delayed with L1D block code]
floating point:
fp_assist.all
[X87 Floating point assists (Precise Event)]
fp_assist.input
[X87 Floating poiint assists for invalid input value (Precise Event)]
fp_assist.output
[X87 Floating point assists for invalid output value (Precise Event)]
fp_comp_ops_exe.mmx
[MMX Uops]
fp_comp_ops_exe.sse2_integer
[SSE2 integer Uops]
fp_comp_ops_exe.sse_double_precision
[SSE* FP double precision Uops]
fp_comp_ops_exe.sse_fp
[SSE and SSE2 FP Uops]
fp_comp_ops_exe.sse_fp_packed
[SSE FP packed Uops]
fp_comp_ops_exe.sse_fp_scalar
[SSE FP scalar Uops]
fp_comp_ops_exe.sse_single_precision
[SSE* FP single precision Uops]
fp_comp_ops_exe.x87
[Computational floating-point operations executed]
fp_mmx_trans.any
[All Floating Point to and from MMX transitions]
fp_mmx_trans.to_fp
[Transitions from MMX to Floating Point instructions]
fp_mmx_trans.to_mmx
[Transitions from Floating Point to MMX instructions]
simd_int_128.pack
[128 bit SIMD integer pack operations]
simd_int_128.packed_arith
[128 bit SIMD integer arithmetic operations]
simd_int_128.packed_logical
[128 bit SIMD integer logical operations]
simd_int_128.packed_mpy
[128 bit SIMD integer multiply operations]
simd_int_128.packed_shift
[128 bit SIMD integer shift operations]
simd_int_128.shuffle_move
[128 bit SIMD integer shuffle/move operations]
simd_int_128.unpack
[128 bit SIMD integer unpack operations]
simd_int_64.pack
[SIMD integer 64 bit pack operations]
simd_int_64.packed_arith
[SIMD integer 64 bit arithmetic operations]
simd_int_64.packed_logical
[SIMD integer 64 bit logical operations]
simd_int_64.packed_mpy
[SIMD integer 64 bit packed multiply operations]
simd_int_64.packed_shift
[SIMD integer 64 bit shift operations]
simd_int_64.shuffle_move
[SIMD integer 64 bit shuffle/move operations]
simd_int_64.unpack
[SIMD integer 64 bit unpack operations]
frontend:
macro_insts.decoded
[Instructions decoded]
macro_insts.fusions_decoded
[Macro-fused instructions decoded]
two_uop_insts_decoded
[Two Uop instructions decoded]
memory:
misalign_mem_ref.store
[Misaligned store references]
offcore_response.any_data.any_dram
[Offcore data reads satisfied by any DRAM]
offcore_response.any_data.any_llc_miss
[Offcore data reads that missed the LLC]
offcore_response.any_data.local_dram
[Offcore data reads satisfied by the local DRAM]
offcore_response.any_data.remote_dram
[Offcore data reads satisfied by a remote DRAM]
offcore_response.any_ifetch.any_dram
[Offcore code reads satisfied by any DRAM]
offcore_response.any_ifetch.any_llc_miss
[Offcore code reads that missed the LLC]
offcore_response.any_ifetch.local_dram
[Offcore code reads satisfied by the local DRAM]
offcore_response.any_ifetch.remote_dram
[Offcore code reads satisfied by a remote DRAM]
offcore_response.any_request.any_dram
[Offcore requests satisfied by any DRAM]
offcore_response.any_request.any_llc_miss
[Offcore requests that missed the LLC]
offcore_response.any_request.local_dram
[Offcore requests satisfied by the local DRAM]
offcore_response.any_request.remote_dram
[Offcore requests satisfied by a remote DRAM]
offcore_response.any_rfo.any_dram
[Offcore RFO requests satisfied by any DRAM]
offcore_response.any_rfo.any_llc_miss
[Offcore RFO requests that missed the LLC]
offcore_response.any_rfo.local_dram
[Offcore RFO requests satisfied by the local DRAM]
offcore_response.any_rfo.remote_dram
[Offcore RFO requests satisfied by a remote DRAM]
offcore_response.corewb.any_dram
[Offcore writebacks to any DRAM]
offcore_response.corewb.any_llc_miss
[Offcore writebacks that missed the LLC]
offcore_response.corewb.local_dram
[Offcore writebacks to the local DRAM]
offcore_response.corewb.remote_dram
[Offcore writebacks to a remote DRAM]
offcore_response.data_ifetch.any_dram
[Offcore code or data read requests satisfied by any DRAM]
offcore_response.data_ifetch.any_llc_miss
[Offcore code or data read requests that missed the LLC]
offcore_response.data_ifetch.local_dram
[Offcore code or data read requests satisfied by the local DRAM]
offcore_response.data_ifetch.remote_dram
[Offcore code or data read requests satisfied by a remote DRAM]
offcore_response.data_in.any_dram
[Offcore request = all data, response = any DRAM]
offcore_response.data_in.any_llc_miss
[Offcore request = all data, response = any LLC miss]
offcore_response.data_in.local_dram
[Offcore data reads, RFO's and prefetches statisfied by the local DRAM]
offcore_response.data_in.remote_dram
[Offcore data reads, RFO's and prefetches statisfied by the remote DRAM]
offcore_response.demand_data.any_dram
[Offcore demand data requests satisfied by any DRAM]
offcore_response.demand_data.any_llc_miss
[Offcore demand data requests that missed the LLC]
offcore_response.demand_data.local_dram
[Offcore demand data requests satisfied by the local DRAM]
offcore_response.demand_data.remote_dram
[Offcore demand data requests satisfied by a remote DRAM]
offcore_response.demand_data_rd.any_dram
[Offcore demand data reads satisfied by any DRAM]
offcore_response.demand_data_rd.any_llc_miss
[Offcore demand data reads that missed the LLC]
offcore_response.demand_data_rd.local_dram
[Offcore demand data reads satisfied by the local DRAM]
offcore_response.demand_data_rd.remote_dram
[Offcore demand data reads satisfied by a remote DRAM]
offcore_response.demand_ifetch.any_dram
[Offcore demand code reads satisfied by any DRAM]
offcore_response.demand_ifetch.any_llc_miss
[Offcore demand code reads that missed the LLC]
offcore_response.demand_ifetch.local_dram
[Offcore demand code reads satisfied by the local DRAM]
offcore_response.demand_ifetch.remote_dram
[Offcore demand code reads satisfied by a remote DRAM]
offcore_response.demand_rfo.any_dram
[Offcore demand RFO requests satisfied by any DRAM]
offcore_response.demand_rfo.any_llc_miss
[Offcore demand RFO requests that missed the LLC]
offcore_response.demand_rfo.local_dram
[Offcore demand RFO requests satisfied by the local DRAM]
offcore_response.demand_rfo.remote_dram
[Offcore demand RFO requests satisfied by a remote DRAM]
offcore_response.other.any_dram
[Offcore other requests satisfied by any DRAM]
offcore_response.other.any_llc_miss
[Offcore other requests that missed the LLC]
offcore_response.other.remote_dram
[Offcore other requests satisfied by a remote DRAM]
offcore_response.pf_data.any_dram
[Offcore prefetch data requests satisfied by any DRAM]
offcore_response.pf_data.any_llc_miss
[Offcore prefetch data requests that missed the LLC]
offcore_response.pf_data.local_dram
[Offcore prefetch data requests satisfied by the local DRAM]
offcore_response.pf_data.remote_dram
[Offcore prefetch data requests satisfied by a remote DRAM]
offcore_response.pf_data_rd.any_dram
[Offcore prefetch data reads satisfied by any DRAM]
offcore_response.pf_data_rd.any_llc_miss
[Offcore prefetch data reads that missed the LLC]
offcore_response.pf_data_rd.local_dram
[Offcore prefetch data reads satisfied by the local DRAM]
offcore_response.pf_data_rd.remote_dram
[Offcore prefetch data reads satisfied by a remote DRAM]
offcore_response.pf_ifetch.any_dram
[Offcore prefetch code reads satisfied by any DRAM]
offcore_response.pf_ifetch.any_llc_miss
[Offcore prefetch code reads that missed the LLC]
offcore_response.pf_ifetch.local_dram
[Offcore prefetch code reads satisfied by the local DRAM]
offcore_response.pf_ifetch.remote_dram
[Offcore prefetch code reads satisfied by a remote DRAM]
offcore_response.pf_rfo.any_dram
[Offcore prefetch RFO requests satisfied by any DRAM]
offcore_response.pf_rfo.any_llc_miss
[Offcore prefetch RFO requests that missed the LLC]
offcore_response.pf_rfo.local_dram
[Offcore prefetch RFO requests satisfied by the local DRAM]
offcore_response.pf_rfo.remote_dram
[Offcore prefetch RFO requests satisfied by a remote DRAM]
offcore_response.prefetch.any_dram
[Offcore prefetch requests satisfied by any DRAM]
offcore_response.prefetch.any_llc_miss
[Offcore prefetch requests that missed the LLC]
offcore_response.prefetch.local_dram
[Offcore prefetch requests satisfied by the local DRAM]
offcore_response.prefetch.remote_dram
[Offcore prefetch requests satisfied by a remote DRAM]
other:
bpu_clears.early
[Early Branch Prediciton Unit clears]
bpu_clears.late
[Late Branch Prediction Unit clears]
bpu_missed_call_ret
[Branch prediction unit missed call or return]
es_reg_renames
[ES segment renames]
io_transactions
[I/O transactions]
l1i.cycles_stalled
[L1I instruction fetch stall cycles]
l1i.hits
[L1I instruction fetch hits]
l1i.misses
[L1I instruction fetch misses]
l1i.reads
[L1I Instruction fetches]
large_itlb.hit
[Large ITLB hit]
load_block.overlap_store