Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

   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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
[
  {,
    "EventCode": "0x1f05e",
    "EventName": "PM_1LPAR_CYC",
    "BriefDescription": "Number of cycles in single lpar mode. All threads in the core are assigned to the same lpar",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2006e",
    "EventName": "PM_2LPAR_CYC",
    "BriefDescription": "Cycles in 2-lpar mode. Threads 0-3 belong to Lpar0 and threads 4-7 belong to Lpar1",
    "PublicDescription": "Number of cycles in 2 lpar mode"
  },
  {,
    "EventCode": "0x4e05e",
    "EventName": "PM_4LPAR_CYC",
    "BriefDescription": "Number of cycles in 4 LPAR mode. Threads 0-1 belong to lpar0, threads 2-3 belong to lpar1, threads 4-5 belong to lpar2, and threads 6-7 belong to lpar3",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x610050",
    "EventName": "PM_ALL_CHIP_PUMP_CPRED",
    "BriefDescription": "Initial and Final Pump Scope was chip pump (prediction=correct) for all data types (demand load,data prefetch,inst prefetch,inst fetch,xlate)",
    "PublicDescription": "Initial and Final Pump Scope and data sourced across this scope was chip pump (prediction=correct) for all data types ( demand load,data,inst prefetch,inst fetch,xlate (I or d)"
  },
  {,
    "EventCode": "0x520050",
    "EventName": "PM_ALL_GRP_PUMP_CPRED",
    "BriefDescription": "Initial and Final Pump Scope and data sourced across this scope was group pump for all data types (demand load,data prefetch,inst prefetch,inst fetch,xlate)",
    "PublicDescription": "Initial and Final Pump Scope and data sourced across this scope was group pump for all data types excluding data prefetch (demand load,inst prefetch,inst fetch,xlate)"
  },
  {,
    "EventCode": "0x620052",
    "EventName": "PM_ALL_GRP_PUMP_MPRED",
    "BriefDescription": "Final Pump Scope (Group) ended up either larger or smaller than Initial Pump Scope for all data types (demand load,data prefetch,inst prefetch,inst fetch,xlate)",
    "PublicDescription": "Final Pump Scope(Group) to get data sourced, ended up larger than Initial Pump Scope OR Final Pump Scope(Group) got data from source that was at smaller scope(Chip) Final pump was group pump and initial pump was chip or final and initial pump was gro"
  },
  {,
    "EventCode": "0x610052",
    "EventName": "PM_ALL_GRP_PUMP_MPRED_RTY",
    "BriefDescription": "Final Pump Scope (Group) ended up larger than Initial Pump Scope (Chip) for all data types (demand load,data prefetch,inst prefetch,inst fetch,xlate)",
    "PublicDescription": "Final Pump Scope(Group) to get data sourced, ended up larger than Initial Pump Scope (Chip) Final pump was group pump and initial pump was chip pumpfor all data types excluding data prefetch (demand load,inst prefetch,inst fetch,xlate)"
  },
  {,
    "EventCode": "0x610054",
    "EventName": "PM_ALL_PUMP_CPRED",
    "BriefDescription": "Pump prediction correct. Counts across all types of pumps for all data types (demand load,data prefetch,inst prefetch,inst fetch,xlate)",
    "PublicDescription": "Pump prediction correct. Counts across all types of pumpsfor all data types excluding data prefetch (demand load,inst prefetch,inst fetch,xlate)"
  },
  {,
    "EventCode": "0x640052",
    "EventName": "PM_ALL_PUMP_MPRED",
    "BriefDescription": "Pump misprediction. Counts across all types of pumps for all data types (demand load,data prefetch,inst prefetch,inst fetch,xlate)",
    "PublicDescription": "Pump Mis prediction Counts across all types of pumpsfor all data types excluding data prefetch (demand load,inst prefetch,inst fetch,xlate)"
  },
  {,
    "EventCode": "0x630050",
    "EventName": "PM_ALL_SYS_PUMP_CPRED",
    "BriefDescription": "Initial and Final Pump Scope was system pump for all data types (demand load,data prefetch,inst prefetch,inst fetch,xlate)",
    "PublicDescription": "Initial and Final Pump Scope and data sourced across this scope was system pump for all data types excluding data prefetch (demand load,inst prefetch,inst fetch,xlate)"
  },
  {,
    "EventCode": "0x630052",
    "EventName": "PM_ALL_SYS_PUMP_MPRED",
    "BriefDescription": "Final Pump Scope (system) mispredicted. Either the original scope was too small (Chip/Group) or the original scope was System and it should have been smaller. Counts for all data types (demand load,data prefetch,inst prefetch,inst fetch,xlate)",
    "PublicDescription": "Final Pump Scope(system) to get data sourced, ended up larger than Initial Pump Scope(Chip/Group) OR Final Pump Scope(system) got data from source that was at smaller scope(Chip/group) Final pump was system pump and initial pump was chip or group or"
  },
  {,
    "EventCode": "0x640050",
    "EventName": "PM_ALL_SYS_PUMP_MPRED_RTY",
    "BriefDescription": "Final Pump Scope (system) ended up larger than Initial Pump Scope (Chip/Group) for all data types (demand load,data prefetch,inst prefetch,inst fetch,xlate)",
    "PublicDescription": "Final Pump Scope(system) to get data sourced, ended up larger than Initial Pump Scope (Chip or Group) for all data types excluding data prefetch (demand load,inst prefetch,inst fetch,xlate)"
  },
  {,
    "EventCode": "0x4082",
    "EventName": "PM_BANK_CONFLICT",
    "BriefDescription": "Read blocked due to interleave conflict. The ifar logic will detect an interleave conflict and kill the data that was read that cycle",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x5086",
    "EventName": "PM_BR_BC_8",
    "BriefDescription": "Pairable BC+8 branch that has not been converted to a Resolve Finished in the BRU pipeline",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x5084",
    "EventName": "PM_BR_BC_8_CONV",
    "BriefDescription": "Pairable BC+8 branch that was converted to a Resolve Finished in the BRU pipeline",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x40ac",
    "EventName": "PM_BR_MPRED_CCACHE",
    "BriefDescription": "Conditional Branch Completed that was Mispredicted due to the Count Cache Target Prediction",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x40b8",
    "EventName": "PM_BR_MPRED_CR",
    "BriefDescription": "Conditional Branch Completed that was Mispredicted due to the BHT Direction Prediction (taken/not taken)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x40ae",
    "EventName": "PM_BR_MPRED_LSTACK",
    "BriefDescription": "Conditional Branch Completed that was Mispredicted due to the Link Stack Target Prediction",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x40ba",
    "EventName": "PM_BR_MPRED_TA",
    "BriefDescription": "Conditional Branch Completed that was Mispredicted due to the Target Address Prediction from the Count Cache or Link Stack. Only XL-form branches that resolved Taken set this event",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x10138",
    "EventName": "PM_BR_MRK_2PATH",
    "BriefDescription": "marked two path branch",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x409c",
    "EventName": "PM_BR_PRED_BR0",
    "BriefDescription": "Conditional Branch Completed on BR0 (1st branch in group) in which the HW predicted the Direction or Target",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x409e",
    "EventName": "PM_BR_PRED_BR1",
    "BriefDescription": "Conditional Branch Completed on BR1 (2nd branch in group) in which the HW predicted the Direction or Target. Note: BR1 can only be used in Single Thread Mode. In all of the SMT modes, only one branch can complete, thus BR1 is unused",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x489c",
    "EventName": "PM_BR_PRED_BR_CMPL",
    "BriefDescription": "Completion Time Event. This event can also be calculated from the direct bus as follows: if_pc_br0_br_pred(0) OR if_pc_br0_br_pred(1)",
    "PublicDescription": "IFU"
  },
  {,
    "EventCode": "0x40a4",
    "EventName": "PM_BR_PRED_CCACHE_BR0",
    "BriefDescription": "Conditional Branch Completed on BR0 that used the Count Cache for Target Prediction",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x40a6",
    "EventName": "PM_BR_PRED_CCACHE_BR1",
    "BriefDescription": "Conditional Branch Completed on BR1 that used the Count Cache for Target Prediction",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x48a4",
    "EventName": "PM_BR_PRED_CCACHE_CMPL",
    "BriefDescription": "Completion Time Event. This event can also be calculated from the direct bus as follows: if_pc_br0_br_pred(0) AND if_pc_br0_pred_type",
    "PublicDescription": "IFU"
  },
  {,
    "EventCode": "0x40b0",
    "EventName": "PM_BR_PRED_CR_BR0",
    "BriefDescription": "Conditional Branch Completed on BR0 that had its direction predicted. I-form branches do not set this event. In addition, B-form branches which do not use the BHT do not set this event - these are branches with BO-field set to 'always taken' and branches",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x40b2",
    "EventName": "PM_BR_PRED_CR_BR1",
    "BriefDescription": "Conditional Branch Completed on BR1 that had its direction predicted. I-form branches do not set this event. In addition, B-form branches which do not use the BHT do not set this event - these are branches with BO-field set to 'always taken' and branches",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x48b0",
    "EventName": "PM_BR_PRED_CR_CMPL",
    "BriefDescription": "Completion Time Event. This event can also be calculated from the direct bus as follows: if_pc_br0_br_pred(1)='1'",
    "PublicDescription": "IFU"
  },
  {,
    "EventCode": "0x40a8",
    "EventName": "PM_BR_PRED_LSTACK_BR0",
    "BriefDescription": "Conditional Branch Completed on BR0 that used the Link Stack for Target Prediction",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x40aa",
    "EventName": "PM_BR_PRED_LSTACK_BR1",
    "BriefDescription": "Conditional Branch Completed on BR1 that used the Link Stack for Target Prediction",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x48a8",
    "EventName": "PM_BR_PRED_LSTACK_CMPL",
    "BriefDescription": "Completion Time Event. This event can also be calculated from the direct bus as follows: if_pc_br0_br_pred(0) AND (not if_pc_br0_pred_type)",
    "PublicDescription": "IFU"
  },
  {,
    "EventCode": "0x40b4",
    "EventName": "PM_BR_PRED_TA_BR0",
    "BriefDescription": "Conditional Branch Completed on BR0 that had its target address predicted. Only XL-form branches set this event",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x40b6",
    "EventName": "PM_BR_PRED_TA_BR1",
    "BriefDescription": "Conditional Branch Completed on BR1 that had its target address predicted. Only XL-form branches set this event",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x48b4",
    "EventName": "PM_BR_PRED_TA_CMPL",
    "BriefDescription": "Completion Time Event. This event can also be calculated from the direct bus as follows: if_pc_br0_br_pred(0)='1'",
    "PublicDescription": "IFU"
  },
  {,
    "EventCode": "0x40a0",
    "EventName": "PM_BR_UNCOND_BR0",
    "BriefDescription": "Unconditional Branch Completed on BR0. HW branch prediction was not used for this branch. This can be an I-form branch, a B-form branch with BO-field set to branch always, or a B-form branch which was coverted to a Resolve",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x40a2",
    "EventName": "PM_BR_UNCOND_BR1",
    "BriefDescription": "Unconditional Branch Completed on BR1. HW branch prediction was not used for this branch. This can be an I-form branch, a B-form branch with BO-field set to branch always, or a B-form branch which was coverted to a Resolve",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x48a0",
    "EventName": "PM_BR_UNCOND_CMPL",
    "BriefDescription": "Completion Time Event. This event can also be calculated from the direct bus as follows: if_pc_br0_br_pred=00 AND if_pc_br0_completed",
    "PublicDescription": "IFU"
  },
  {,
    "EventCode": "0x3094",
    "EventName": "PM_CASTOUT_ISSUED",
    "BriefDescription": "Castouts issued",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3096",
    "EventName": "PM_CASTOUT_ISSUED_GPR",
    "BriefDescription": "Castouts issued GPR",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2090",
    "EventName": "PM_CLB_HELD",
    "BriefDescription": "CLB Hold: Any Reason",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2d018",
    "EventName": "PM_CMPLU_STALL_BRU_CRU",
    "BriefDescription": "Completion stall due to IFU",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x30026",
    "EventName": "PM_CMPLU_STALL_COQ_FULL",
    "BriefDescription": "Completion stall due to CO q full",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x30038",
    "EventName": "PM_CMPLU_STALL_FLUSH",
    "BriefDescription": "completion stall due to flush by own thread",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x30028",
    "EventName": "PM_CMPLU_STALL_MEM_ECC_DELAY",
    "BriefDescription": "Completion stall due to mem ECC delay",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2e01c",
    "EventName": "PM_CMPLU_STALL_NO_NTF",
    "BriefDescription": "Completion stall due to nop",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2e01e",
    "EventName": "PM_CMPLU_STALL_NTCG_FLUSH",
    "BriefDescription": "Completion stall due to ntcg flush",
    "PublicDescription": "Completion stall due to reject (load hit store)"
  },
  {,
    "EventCode": "0x4c010",
    "EventName": "PM_CMPLU_STALL_REJECT",
    "BriefDescription": "Completion stall due to LSU reject",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2c01a",
    "EventName": "PM_CMPLU_STALL_REJECT_LHS",
    "BriefDescription": "Completion stall due to reject (load hit store)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4c014",
    "EventName": "PM_CMPLU_STALL_REJ_LMQ_FULL",
    "BriefDescription": "Completion stall due to LSU reject LMQ full",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4d010",
    "EventName": "PM_CMPLU_STALL_SCALAR",
    "BriefDescription": "Completion stall due to VSU scalar instruction",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2d010",
    "EventName": "PM_CMPLU_STALL_SCALAR_LONG",
    "BriefDescription": "Completion stall due to VSU scalar long latency instruction",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2c014",
    "EventName": "PM_CMPLU_STALL_STORE",
    "BriefDescription": "Completion stall by stores this includes store agen finishes in pipe LS0/LS1 and store data finishes in LS2/LS3",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2d014",
    "EventName": "PM_CMPLU_STALL_VECTOR",
    "BriefDescription": "Completion stall due to VSU vector instruction",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4d012",
    "EventName": "PM_CMPLU_STALL_VECTOR_LONG",
    "BriefDescription": "Completion stall due to VSU vector long instruction",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2d012",
    "EventName": "PM_CMPLU_STALL_VSU",
    "BriefDescription": "Completion stall due to VSU instruction",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x16083",
    "EventName": "PM_CO0_ALLOC",
    "BriefDescription": "CO mach 0 Busy. Used by PMU to sample ave RC livetime(mach0 used as sample point)",
    "PublicDescription": "0.0"
  },
  {,
    "EventCode": "0x16082",
    "EventName": "PM_CO0_BUSY",
    "BriefDescription": "CO mach 0 Busy. Used by PMU to sample ave RC livetime(mach0 used as sample point)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x517082",
    "EventName": "PM_CO_DISP_FAIL",
    "BriefDescription": "CO dispatch failed due to all CO machines being busy",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x527084",
    "EventName": "PM_CO_TM_SC_FOOTPRINT",
    "BriefDescription": "L2 did a cleanifdirty CO to the L3 (ie created an SC line in the L3)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3608a",
    "EventName": "PM_CO_USAGE",
    "BriefDescription": "Continuous 16 cycle(2to1) window where this signals rotates thru sampling each L2 CO machine busy. PMU uses this wave to then do 16 cyc count to sample total number of machs running",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x40066",
    "EventName": "PM_CRU_FIN",
    "BriefDescription": "IFU Finished a (non-branch) instruction",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x61c050",
    "EventName": "PM_DATA_ALL_CHIP_PUMP_CPRED",
    "BriefDescription": "Initial and Final Pump Scope was chip pump (prediction=correct) for either demand loads or data prefetch",
    "PublicDescription": "Initial and Final Pump Scope and data sourced across this scope was chip pump (prediction=correct) for a demand load"
  },
  {,
    "EventCode": "0x64c048",
    "EventName": "PM_DATA_ALL_FROM_DL2L3_MOD",
    "BriefDescription": "The processor's data cache was reloaded with Modified (M) data from another chip's L2 or L3 on a different Node or Group (Distant), as this chip due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded with Modified (M) data from another chip's L2 or L3 on a different Node or Group (Distant), as this chip due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x63c048",
    "EventName": "PM_DATA_ALL_FROM_DL2L3_SHR",
    "BriefDescription": "The processor's data cache was reloaded with Shared (S) data from another chip's L2 or L3 on a different Node or Group (Distant), as this chip due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded with Shared (S) data from another chip's L2 or L3 on a different Node or Group (Distant), as this chip due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x63c04c",
    "EventName": "PM_DATA_ALL_FROM_DL4",
    "BriefDescription": "The processor's data cache was reloaded from another chip's L4 on a different Node or Group (Distant) due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded from another chip's L4 on a different Node or Group (Distant) due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x64c04c",
    "EventName": "PM_DATA_ALL_FROM_DMEM",
    "BriefDescription": "The processor's data cache was reloaded from another chip's memory on the same Node or Group (Distant) due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded from another chip's memory on the same Node or Group (Distant) due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x61c042",
    "EventName": "PM_DATA_ALL_FROM_L2",
    "BriefDescription": "The processor's data cache was reloaded from local core's L2 due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded from local core's L2 due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x64c046",
    "EventName": "PM_DATA_ALL_FROM_L21_MOD",
    "BriefDescription": "The processor's data cache was reloaded with Modified (M) data from another core's L2 on the same chip due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded with Modified (M) data from another core's L2 on the same chip due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x63c046",
    "EventName": "PM_DATA_ALL_FROM_L21_SHR",
    "BriefDescription": "The processor's data cache was reloaded with Shared (S) data from another core's L2 on the same chip due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded with Shared (S) data from another core's L2 on the same chip due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x61c04e",
    "EventName": "PM_DATA_ALL_FROM_L2MISS_MOD",
    "BriefDescription": "The processor's data cache was reloaded from a localtion other than the local core's L2 due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded from a localtion other than the local core's L2 due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x63c040",
    "EventName": "PM_DATA_ALL_FROM_L2_DISP_CONFLICT_LDHITST",
    "BriefDescription": "The processor's data cache was reloaded from local core's L2 with load hit store conflict due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded from local core's L2 with load hit store conflict due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x64c040",
    "EventName": "PM_DATA_ALL_FROM_L2_DISP_CONFLICT_OTHER",
    "BriefDescription": "The processor's data cache was reloaded from local core's L2 with dispatch conflict due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded from local core's L2 with dispatch conflict due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x62c040",
    "EventName": "PM_DATA_ALL_FROM_L2_MEPF",
    "BriefDescription": "The processor's data cache was reloaded from local core's L2 hit without dispatch conflicts on Mepf state due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded from local core's L2 hit without dispatch conflicts on Mepf state due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x61c040",
    "EventName": "PM_DATA_ALL_FROM_L2_NO_CONFLICT",
    "BriefDescription": "The processor's data cache was reloaded from local core's L2 without conflict due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded from local core's L2 without conflict due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x64c042",
    "EventName": "PM_DATA_ALL_FROM_L3",
    "BriefDescription": "The processor's data cache was reloaded from local core's L3 due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded from local core's L3 due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x64c044",
    "EventName": "PM_DATA_ALL_FROM_L31_ECO_MOD",
    "BriefDescription": "The processor's data cache was reloaded with Modified (M) data from another core's ECO L3 on the same chip due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded with Modified (M) data from another core's ECO L3 on the same chip due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x63c044",
    "EventName": "PM_DATA_ALL_FROM_L31_ECO_SHR",
    "BriefDescription": "The processor's data cache was reloaded with Shared (S) data from another core's ECO L3 on the same chip due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded with Shared (S) data from another core's ECO L3 on the same chip due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x62c044",
    "EventName": "PM_DATA_ALL_FROM_L31_MOD",
    "BriefDescription": "The processor's data cache was reloaded with Modified (M) data from another core's L3 on the same chip due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded with Modified (M) data from another core's L3 on the same chip due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x61c046",
    "EventName": "PM_DATA_ALL_FROM_L31_SHR",
    "BriefDescription": "The processor's data cache was reloaded with Shared (S) data from another core's L3 on the same chip due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded with Shared (S) data from another core's L3 on the same chip due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x64c04e",
    "EventName": "PM_DATA_ALL_FROM_L3MISS_MOD",
    "BriefDescription": "The processor's data cache was reloaded from a localtion other than the local core's L3 due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded from a localtion other than the local core's L3 due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x63c042",
    "EventName": "PM_DATA_ALL_FROM_L3_DISP_CONFLICT",
    "BriefDescription": "The processor's data cache was reloaded from local core's L3 with dispatch conflict due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded from local core's L3 with dispatch conflict due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x62c042",
    "EventName": "PM_DATA_ALL_FROM_L3_MEPF",
    "BriefDescription": "The processor's data cache was reloaded from local core's L3 without dispatch conflicts hit on Mepf state due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded from local core's L3 without dispatch conflicts hit on Mepf state due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x61c044",
    "EventName": "PM_DATA_ALL_FROM_L3_NO_CONFLICT",
    "BriefDescription": "The processor's data cache was reloaded from local core's L3 without conflict due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded from local core's L3 without conflict due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x61c04c",
    "EventName": "PM_DATA_ALL_FROM_LL4",
    "BriefDescription": "The processor's data cache was reloaded from the local chip's L4 cache due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded from the local chip's L4 cache due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x62c048",
    "EventName": "PM_DATA_ALL_FROM_LMEM",
    "BriefDescription": "The processor's data cache was reloaded from the local chip's Memory due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded from the local chip's Memory due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x62c04c",
    "EventName": "PM_DATA_ALL_FROM_MEMORY",
    "BriefDescription": "The processor's data cache was reloaded from a memory location including L4 from local remote or distant due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded from a memory location including L4 from local remote or distant due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x64c04a",
    "EventName": "PM_DATA_ALL_FROM_OFF_CHIP_CACHE",
    "BriefDescription": "The processor's data cache was reloaded either shared or modified data from another core's L2/L3 on a different chip (remote or distant) due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded either shared or modified data from another core's L2/L3 on a different chip (remote or distant) due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x61c048",
    "EventName": "PM_DATA_ALL_FROM_ON_CHIP_CACHE",
    "BriefDescription": "The processor's data cache was reloaded either shared or modified data from another core's L2/L3 on the same chip due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded either shared or modified data from another core's L2/L3 on the same chip due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x62c046",
    "EventName": "PM_DATA_ALL_FROM_RL2L3_MOD",
    "BriefDescription": "The processor's data cache was reloaded with Modified (M) data from another chip's L2 or L3 on the same Node or Group (Remote), as this chip due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded with Modified (M) data from another chip's L2 or L3 on the same Node or Group (Remote), as this chip due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x61c04a",
    "EventName": "PM_DATA_ALL_FROM_RL2L3_SHR",
    "BriefDescription": "The processor's data cache was reloaded with Shared (S) data from another chip's L2 or L3 on the same Node or Group (Remote), as this chip due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded with Shared (S) data from another chip's L2 or L3 on the same Node or Group (Remote), as this chip due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x62c04a",
    "EventName": "PM_DATA_ALL_FROM_RL4",
    "BriefDescription": "The processor's data cache was reloaded from another chip's L4 on the same Node or Group ( Remote) due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded from another chip's L4 on the same Node or Group ( Remote) due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x63c04a",
    "EventName": "PM_DATA_ALL_FROM_RMEM",
    "BriefDescription": "The processor's data cache was reloaded from another chip's memory on the same Node or Group ( Remote) due to either demand loads or data prefetch",
    "PublicDescription": "The processor's data cache was reloaded from another chip's memory on the same Node or Group ( Remote) due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x62c050",
    "EventName": "PM_DATA_ALL_GRP_PUMP_CPRED",
    "BriefDescription": "Initial and Final Pump Scope was group pump (prediction=correct) for either demand loads or data prefetch",
    "PublicDescription": "Initial and Final Pump Scope and data sourced across this scope was group pump for a demand load"
  },
  {,
    "EventCode": "0x62c052",
    "EventName": "PM_DATA_ALL_GRP_PUMP_MPRED",
    "BriefDescription": "Final Pump Scope (Group) ended up either larger or smaller than Initial Pump Scope for either demand loads or data prefetch",
    "PublicDescription": "Final Pump Scope(Group) to get data sourced, ended up larger than Initial Pump Scope OR Final Pump Scope(Group) got data from source that was at smaller scope(Chip) Final pump was group pump and initial pump was chip or final and initial pump was gro"
  },
  {,
    "EventCode": "0x61c052",
    "EventName": "PM_DATA_ALL_GRP_PUMP_MPRED_RTY",
    "BriefDescription": "Final Pump Scope (Group) ended up larger than Initial Pump Scope (Chip) for either demand loads or data prefetch",
    "PublicDescription": "Final Pump Scope(Group) to get data sourced, ended up larger than Initial Pump Scope (Chip) Final pump was group pump and initial pump was chip pumpfor a demand load"
  },
  {,
    "EventCode": "0x61c054",
    "EventName": "PM_DATA_ALL_PUMP_CPRED",
    "BriefDescription": "Pump prediction correct. Counts across all types of pumps for either demand loads or data prefetch",
    "PublicDescription": "Pump prediction correct. Counts across all types of pumps for a demand load"
  },
  {,
    "EventCode": "0x64c052",
    "EventName": "PM_DATA_ALL_PUMP_MPRED",
    "BriefDescription": "Pump misprediction. Counts across all types of pumps for either demand loads or data prefetch",
    "PublicDescription": "Pump Mis prediction Counts across all types of pumpsfor a demand load"
  },
  {,
    "EventCode": "0x63c050",
    "EventName": "PM_DATA_ALL_SYS_PUMP_CPRED",
    "BriefDescription": "Initial and Final Pump Scope was system pump (prediction=correct) for either demand loads or data prefetch",
    "PublicDescription": "Initial and Final Pump Scope and data sourced across this scope was system pump for a demand load"
  },
  {,
    "EventCode": "0x63c052",
    "EventName": "PM_DATA_ALL_SYS_PUMP_MPRED",
    "BriefDescription": "Final Pump Scope (system) mispredicted. Either the original scope was too small (Chip/Group) or the original scope was System and it should have been smaller. Counts for either demand loads or data prefetch",
    "PublicDescription": "Final Pump Scope(system) to get data sourced, ended up larger than Initial Pump Scope(Chip/Group) OR Final Pump Scope(system) got data from source that was at smaller scope(Chip/group) Final pump was system pump and initial pump was chip or group or"
  },
  {,
    "EventCode": "0x64c050",
    "EventName": "PM_DATA_ALL_SYS_PUMP_MPRED_RTY",
    "BriefDescription": "Final Pump Scope (system) ended up larger than Initial Pump Scope (Chip/Group) for either demand loads or data prefetch",
    "PublicDescription": "Final Pump Scope(system) to get data sourced, ended up larger than Initial Pump Scope (Chip or Group) for a demand load"
  },
  {,
    "EventCode": "0x4c046",
    "EventName": "PM_DATA_FROM_L21_MOD",
    "BriefDescription": "The processor's data cache was reloaded with Modified (M) data from another core's L2 on the same chip due to a demand load",
    "PublicDescription": "The processor's data cache was reloaded with Modified (M) data from another core's L2 on the same chip due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x3c046",
    "EventName": "PM_DATA_FROM_L21_SHR",
    "BriefDescription": "The processor's data cache was reloaded with Shared (S) data from another core's L2 on the same chip due to a demand load",
    "PublicDescription": "The processor's data cache was reloaded with Shared (S) data from another core's L2 on the same chip due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x4c044",
    "EventName": "PM_DATA_FROM_L31_ECO_MOD",
    "BriefDescription": "The processor's data cache was reloaded with Modified (M) data from another core's ECO L3 on the same chip due to a demand load",
    "PublicDescription": "The processor's data cache was reloaded with Modified (M) data from another core's ECO L3 on the same chip due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x3c044",
    "EventName": "PM_DATA_FROM_L31_ECO_SHR",
    "BriefDescription": "The processor's data cache was reloaded with Shared (S) data from another core's ECO L3 on the same chip due to a demand load",
    "PublicDescription": "The processor's data cache was reloaded with Shared (S) data from another core's ECO L3 on the same chip due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x2c044",
    "EventName": "PM_DATA_FROM_L31_MOD",
    "BriefDescription": "The processor's data cache was reloaded with Modified (M) data from another core's L3 on the same chip due to a demand load",
    "PublicDescription": "The processor's data cache was reloaded with Modified (M) data from another core's L3 on the same chip due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x1c046",
    "EventName": "PM_DATA_FROM_L31_SHR",
    "BriefDescription": "The processor's data cache was reloaded with Shared (S) data from another core's L3 on the same chip due to a demand load",
    "PublicDescription": "The processor's data cache was reloaded with Shared (S) data from another core's L3 on the same chip due to either only demand loads or demand loads plus prefetches if MMCR1[16] is 1"
  },
  {,
    "EventCode": "0x400fe",
    "EventName": "PM_DATA_FROM_MEM",
    "BriefDescription": "The processor's data cache was reloaded from a memory location including L4 from local remote or distant due to a demand load",
    "PublicDescription": "Data cache reload from memory (including L4)"
  },
  {,
    "EventCode": "0xe0bc",
    "EventName": "PM_DC_COLLISIONS",
    "BriefDescription": "DATA Cache collisions",
    "PublicDescription": "DATA Cache collisions42"
  },
  {,
    "EventCode": "0x1e050",
    "EventName": "PM_DC_PREF_STREAM_ALLOC",
    "BriefDescription": "Stream marked valid. The stream could have been allocated through the hardware prefetch mechanism or through software. This is combined ls0 and ls1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2e050",
    "EventName": "PM_DC_PREF_STREAM_CONF",
    "BriefDescription": "A demand load referenced a line in an active prefetch stream. The stream could have been allocated through the hardware prefetch mechanism or through software. Combine up + down",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4e050",
    "EventName": "PM_DC_PREF_STREAM_FUZZY_CONF",
    "BriefDescription": "A demand load referenced a line in an active fuzzy prefetch stream. The stream could have been allocated through the hardware prefetch mechanism or through software.Fuzzy stream confirm (out of order effects, or pf cant keep up)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3e050",
    "EventName": "PM_DC_PREF_STREAM_STRIDED_CONF",
    "BriefDescription": "A demand load referenced a line in an active strided prefetch stream. The stream could have been allocated through the hardware prefetch mechanism or through software",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb0ba",
    "EventName": "PM_DFU",
    "BriefDescription": "Finish DFU (all finish)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb0be",
    "EventName": "PM_DFU_DCFFIX",
    "BriefDescription": "Convert from fixed opcode finish (dcffix,dcffixq)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb0bc",
    "EventName": "PM_DFU_DENBCD",
    "BriefDescription": "BCD->DPD opcode finish (denbcd, denbcdq)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb0b8",
    "EventName": "PM_DFU_MC",
    "BriefDescription": "Finish DFU multicycle",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2092",
    "EventName": "PM_DISP_CLB_HELD_BAL",
    "BriefDescription": "Dispatch/CLB Hold: Balance",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2094",
    "EventName": "PM_DISP_CLB_HELD_RES",
    "BriefDescription": "Dispatch/CLB Hold: Resource",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x20a8",
    "EventName": "PM_DISP_CLB_HELD_SB",
    "BriefDescription": "Dispatch/CLB Hold: Scoreboard",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2098",
    "EventName": "PM_DISP_CLB_HELD_SYNC",
    "BriefDescription": "Dispatch/CLB Hold: Sync type instruction",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2096",
    "EventName": "PM_DISP_CLB_HELD_TLBIE",
    "BriefDescription": "Dispatch Hold: Due to TLBIE",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x20006",
    "EventName": "PM_DISP_HELD_IQ_FULL",
    "BriefDescription": "Dispatch held due to Issue q full",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x1002a",
    "EventName": "PM_DISP_HELD_MAP_FULL",
    "BriefDescription": "Dispatch for this thread was held because the Mappers were full",
    "PublicDescription": "Dispatch held due to Mapper full"
  },
  {,
    "EventCode": "0x30018",
    "EventName": "PM_DISP_HELD_SRQ_FULL",
    "BriefDescription": "Dispatch held due SRQ no room",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x30a6",
    "EventName": "PM_DISP_HOLD_GCT_FULL",
    "BriefDescription": "Dispatch Hold Due to no space in the GCT",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x30008",
    "EventName": "PM_DISP_WT",
    "BriefDescription": "Dispatched Starved",
    "PublicDescription": "Dispatched Starved (not held, nothing to dispatch)"
  },
  {,
    "EventCode": "0x4e046",
    "EventName": "PM_DPTEG_FROM_L21_MOD",
    "BriefDescription": "A Page Table Entry was loaded into the TLB with Modified (M) data from another core's L2 on the same chip due to a data side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3e046",
    "EventName": "PM_DPTEG_FROM_L21_SHR",
    "BriefDescription": "A Page Table Entry was loaded into the TLB with Shared (S) data from another core's L2 on the same chip due to a data side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3e040",
    "EventName": "PM_DPTEG_FROM_L2_DISP_CONFLICT_LDHITST",
    "BriefDescription": "A Page Table Entry was loaded into the TLB from local core's L2 with load hit store conflict due to a data side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4e040",
    "EventName": "PM_DPTEG_FROM_L2_DISP_CONFLICT_OTHER",
    "BriefDescription": "A Page Table Entry was loaded into the TLB from local core's L2 with dispatch conflict due to a data side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4e044",
    "EventName": "PM_DPTEG_FROM_L31_ECO_MOD",
    "BriefDescription": "A Page Table Entry was loaded into the TLB with Modified (M) data from another core's ECO L3 on the same chip due to a data side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3e044",
    "EventName": "PM_DPTEG_FROM_L31_ECO_SHR",
    "BriefDescription": "A Page Table Entry was loaded into the TLB with Shared (S) data from another core's ECO L3 on the same chip due to a data side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2e044",
    "EventName": "PM_DPTEG_FROM_L31_MOD",
    "BriefDescription": "A Page Table Entry was loaded into the TLB with Modified (M) data from another core's L3 on the same chip due to a data side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x1e046",
    "EventName": "PM_DPTEG_FROM_L31_SHR",
    "BriefDescription": "A Page Table Entry was loaded into the TLB with Shared (S) data from another core's L3 on the same chip due to a data side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x50a8",
    "EventName": "PM_EAT_FORCE_MISPRED",
    "BriefDescription": "XL-form branch was mispredicted due to the predicted target address missing from EAT. The EAT forces a mispredict in this case since there is no predicated target to validate. This is a rare case that may occur when the EAT is full and a branch is issue",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4084",
    "EventName": "PM_EAT_FULL_CYC",
    "BriefDescription": "Cycles No room in EAT",
    "PublicDescription": "Cycles No room in EATSet on bank conflict and case where no ibuffers available"
  },
  {,
    "EventCode": "0x2080",
    "EventName": "PM_EE_OFF_EXT_INT",
    "BriefDescription": "Ee off and external interrupt",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x20b4",
    "EventName": "PM_FAV_TBEGIN",
    "BriefDescription": "Dispatch time Favored tbegin",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x100f4",
    "EventName": "PM_FLOP",
    "BriefDescription": "Floating Point Operation Finished",
    "PublicDescription": "Floating Point Operations Finished"
  },
  {,
    "EventCode": "0xa0ae",
    "EventName": "PM_FLOP_SUM_SCALAR",
    "BriefDescription": "flops summary scalar instructions",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa0ac",
    "EventName": "PM_FLOP_SUM_VEC",
    "BriefDescription": "flops summary vector instructions",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2084",
    "EventName": "PM_FLUSH_BR_MPRED",
    "BriefDescription": "Flush caused by branch mispredict",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2082",
    "EventName": "PM_FLUSH_DISP",
    "BriefDescription": "Dispatch flush",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x208c",
    "EventName": "PM_FLUSH_DISP_SB",
    "BriefDescription": "Dispatch Flush: Scoreboard",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2088",
    "EventName": "PM_FLUSH_DISP_SYNC",
    "BriefDescription": "Dispatch Flush: Sync",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x208a",
    "EventName": "PM_FLUSH_DISP_TLBIE",
    "BriefDescription": "Dispatch Flush: TLBIE",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x208e",
    "EventName": "PM_FLUSH_LSU",
    "BriefDescription": "Flush initiated by LSU",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2086",
    "EventName": "PM_FLUSH_PARTIAL",
    "BriefDescription": "Partial flush",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa0b0",
    "EventName": "PM_FPU0_FCONV",
    "BriefDescription": "Convert instruction executed",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa0b8",
    "EventName": "PM_FPU0_FEST",
    "BriefDescription": "Estimate instruction executed",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa0b4",
    "EventName": "PM_FPU0_FRSP",
    "BriefDescription": "Round to single precision instruction executed",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa0b2",
    "EventName": "PM_FPU1_FCONV",
    "BriefDescription": "Convert instruction executed",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa0ba",
    "EventName": "PM_FPU1_FEST",
    "BriefDescription": "Estimate instruction executed",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa0b6",
    "EventName": "PM_FPU1_FRSP",
    "BriefDescription": "Round to single precision instruction executed",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x50b0",
    "EventName": "PM_FUSION_TOC_GRP0_1",
    "BriefDescription": "One pair of instructions fused with TOC in Group0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x50ae",
    "EventName": "PM_FUSION_TOC_GRP0_2",
    "BriefDescription": "Two pairs of instructions fused with TOCin Group0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x50ac",
    "EventName": "PM_FUSION_TOC_GRP0_3",
    "BriefDescription": "Three pairs of instructions fused with TOC in Group0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x50b2",
    "EventName": "PM_FUSION_TOC_GRP1_1",
    "BriefDescription": "One pair of instructions fused with TOX in Group1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x50b8",
    "EventName": "PM_FUSION_VSX_GRP0_1",
    "BriefDescription": "One pair of instructions fused with VSX in Group0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x50b6",
    "EventName": "PM_FUSION_VSX_GRP0_2",
    "BriefDescription": "Two pairs of instructions fused with VSX in Group0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x50b4",
    "EventName": "PM_FUSION_VSX_GRP0_3",
    "BriefDescription": "Three pairs of instructions fused with VSX in Group0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x50ba",
    "EventName": "PM_FUSION_VSX_GRP1_1",
    "BriefDescription": "One pair of instructions fused with VSX in Group1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3000e",
    "EventName": "PM_FXU0_BUSY_FXU1_IDLE",
    "BriefDescription": "fxu0 busy and fxu1 idle",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x10004",
    "EventName": "PM_FXU0_FIN",
    "BriefDescription": "The fixed point unit Unit 0 finished an instruction. Instructions that finish may not necessary complete",
    "PublicDescription": "FXU0 Finished"
  },
  {,
    "EventCode": "0x4000e",
    "EventName": "PM_FXU1_BUSY_FXU0_IDLE",
    "BriefDescription": "fxu0 idle and fxu1 busy",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x40004",
    "EventName": "PM_FXU1_FIN",
    "BriefDescription": "FXU1 Finished",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x20008",
    "EventName": "PM_GCT_EMPTY_CYC",
    "BriefDescription": "No itags assigned either thread (GCT Empty)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x30a4",
    "EventName": "PM_GCT_MERGE",
    "BriefDescription": "Group dispatched on a merged GCT empty. GCT entries can be merged only within the same thread",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4d01e",
    "EventName": "PM_GCT_NOSLOT_BR_MPRED",
    "BriefDescription": "Gct empty for this thread due to branch mispred",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4d01a",
    "EventName": "PM_GCT_NOSLOT_BR_MPRED_ICMISS",
    "BriefDescription": "Gct empty for this thread due to Icache Miss and branch mispred",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x100f8",
    "EventName": "PM_GCT_NOSLOT_CYC",
    "BriefDescription": "No itags assigned",
    "PublicDescription": "Pipeline empty (No itags assigned , no GCT slots used)"
  },
  {,
    "EventCode": "0x2d01e",
    "EventName": "PM_GCT_NOSLOT_DISP_HELD_ISSQ",
    "BriefDescription": "Gct empty for this thread due to dispatch hold on this thread due to Issue q full",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4d01c",
    "EventName": "PM_GCT_NOSLOT_DISP_HELD_MAP",
    "BriefDescription": "Gct empty for this thread due to dispatch hold on this thread due to Mapper full",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2e010",
    "EventName": "PM_GCT_NOSLOT_DISP_HELD_OTHER",
    "BriefDescription": "Gct empty for this thread due to dispatch hold on this thread due to sync",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2d01c",
    "EventName": "PM_GCT_NOSLOT_DISP_HELD_SRQ",
    "BriefDescription": "Gct empty for this thread due to dispatch hold on this thread due to SRQ full",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4e010",
    "EventName": "PM_GCT_NOSLOT_IC_L3MISS",
    "BriefDescription": "Gct empty for this thread due to icach l3 miss",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2d01a",
    "EventName": "PM_GCT_NOSLOT_IC_MISS",
    "BriefDescription": "Gct empty for this thread due to Icache Miss",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x20a2",
    "EventName": "PM_GCT_UTIL_11_14_ENTRIES",
    "BriefDescription": "GCT Utilization 11-14 entries",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x20a4",
    "EventName": "PM_GCT_UTIL_15_17_ENTRIES",
    "BriefDescription": "GCT Utilization 15-17 entries",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x20a6",
    "EventName": "PM_GCT_UTIL_18_ENTRIES",
    "BriefDescription": "GCT Utilization 18+ entries",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x209c",
    "EventName": "PM_GCT_UTIL_1_2_ENTRIES",
    "BriefDescription": "GCT Utilization 1-2 entries",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x209e",
    "EventName": "PM_GCT_UTIL_3_6_ENTRIES",
    "BriefDescription": "GCT Utilization 3-6 entries",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x20a0",
    "EventName": "PM_GCT_UTIL_7_10_ENTRIES",
    "BriefDescription": "GCT Utilization 7-10 entries",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x1000a",
    "EventName": "PM_GRP_BR_MPRED_NONSPEC",
    "BriefDescription": "Group experienced non-speculative branch redirect",
    "PublicDescription": "Group experienced Non-speculative br mispredicct"
  },
  {,
    "EventCode": "0x30004",
    "EventName": "PM_GRP_CMPL",
    "BriefDescription": "group completed",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3000a",
    "EventName": "PM_GRP_DISP",
    "BriefDescription": "group dispatch",
    "PublicDescription": "dispatch_success (Group Dispatched)"
  },
  {,
    "EventCode": "0x1000c",
    "EventName": "PM_GRP_IC_MISS_NONSPEC",
    "BriefDescription": "Group experienced non-speculative I cache miss",
    "PublicDescription": "Group experi enced Non-specu lative I cache miss"
  },
  {,
    "EventCode": "0x10130",
    "EventName": "PM_GRP_MRK",
    "BriefDescription": "Instruction Marked",
    "PublicDescription": "Instruction marked in idu"
  },
  {,
    "EventCode": "0x509c",
    "EventName": "PM_GRP_NON_FULL_GROUP",
    "BriefDescription": "GROUPs where we did not have 6 non branch instructions in the group(ST mode), in SMT mode 3 non branches",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x50a4",
    "EventName": "PM_GRP_TERM_2ND_BRANCH",
    "BriefDescription": "There were enough instructions in the Ibuffer, but 2nd branch ends group",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x50a6",
    "EventName": "PM_GRP_TERM_FPU_AFTER_BR",
    "BriefDescription": "There were enough instructions in the Ibuffer, but FPU OP IN same group after a branch terminates a group, cant do partial flushes",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x509e",
    "EventName": "PM_GRP_TERM_NOINST",
    "BriefDescription": "Do not fill every slot in the group, Not enough instructions in the Ibuffer. This includes cases where the group started with enough instructions, but some got knocked out by a cache miss or branch redirect (which would also empty the Ibuffer)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x50a0",
    "EventName": "PM_GRP_TERM_OTHER",
    "BriefDescription": "There were enough instructions in the Ibuffer, but the group terminated early for some other reason, most likely due to a First or Last",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x50a2",
    "EventName": "PM_GRP_TERM_SLOT_LIMIT",
    "BriefDescription": "There were enough instructions in the Ibuffer, but 3 src RA/RB/RC , 2 way crack caused a group termination",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4086",
    "EventName": "PM_IBUF_FULL_CYC",
    "BriefDescription": "Cycles No room in ibuff",
    "PublicDescription": "Cycles No room in ibufffully qualified transfer (if5 valid)"
  },
  {,
    "EventCode": "0x4098",
    "EventName": "PM_IC_DEMAND_L2_BHT_REDIRECT",
    "BriefDescription": "L2 I cache demand request due to BHT redirect, branch redirect ( 2 bubbles 3 cycles)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x409a",
    "EventName": "PM_IC_DEMAND_L2_BR_REDIRECT",
    "BriefDescription": "L2 I cache demand request due to branch Mispredict ( 15 cycle path)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4088",
    "EventName": "PM_IC_DEMAND_REQ",
    "BriefDescription": "Demand Instruction fetch request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x508a",
    "EventName": "PM_IC_INVALIDATE",
    "BriefDescription": "Ic line invalidated",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4092",
    "EventName": "PM_IC_PREF_CANCEL_HIT",
    "BriefDescription": "Prefetch Canceled due to icache hit",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4094",
    "EventName": "PM_IC_PREF_CANCEL_L2",
    "BriefDescription": "L2 Squashed request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4090",
    "EventName": "PM_IC_PREF_CANCEL_PAGE",
    "BriefDescription": "Prefetch Canceled due to page boundary",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x408a",
    "EventName": "PM_IC_PREF_REQ",
    "BriefDescription": "Instruction prefetch requests",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x408e",
    "EventName": "PM_IC_PREF_WRITE",
    "BriefDescription": "Instruction prefetch written into IL1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4096",
    "EventName": "PM_IC_RELOAD_PRIVATE",
    "BriefDescription": "Reloading line was brought in private for a specific thread. Most lines are brought in shared for all eight thrreads. If RA does not match then invalidates and then brings it shared to other thread. In P7 line brought in private , then line was invalidat",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x5088",
    "EventName": "PM_IFU_L2_TOUCH",
    "BriefDescription": "L2 touch to update MRU on a line",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x514050",
    "EventName": "PM_INST_ALL_CHIP_PUMP_CPRED",
    "BriefDescription": "Initial and Final Pump Scope was chip pump (prediction=correct) for instruction fetches and prefetches",
    "PublicDescription": "Initial and Final Pump Scope and data sourced across this scope was chip pump (prediction=correct) for an instruction fetch"
  },
  {,
    "EventCode": "0x544048",
    "EventName": "PM_INST_ALL_FROM_DL2L3_MOD",
    "BriefDescription": "The processor's Instruction cache was reloaded with Modified (M) data from another chip's L2 or L3 on a different Node or Group (Distant), as this chip due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded with Modified (M) data from another chip's L2 or L3 on a different Node or Group (Distant), as this chip due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x534048",
    "EventName": "PM_INST_ALL_FROM_DL2L3_SHR",
    "BriefDescription": "The processor's Instruction cache was reloaded with Shared (S) data from another chip's L2 or L3 on a different Node or Group (Distant), as this chip due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded with Shared (S) data from another chip's L2 or L3 on a different Node or Group (Distant), as this chip due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x53404c",
    "EventName": "PM_INST_ALL_FROM_DL4",
    "BriefDescription": "The processor's Instruction cache was reloaded from another chip's L4 on a different Node or Group (Distant) due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded from another chip's L4 on a different Node or Group (Distant) due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x54404c",
    "EventName": "PM_INST_ALL_FROM_DMEM",
    "BriefDescription": "The processor's Instruction cache was reloaded from another chip's memory on the same Node or Group (Distant) due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded from another chip's memory on the same Node or Group (Distant) due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x514042",
    "EventName": "PM_INST_ALL_FROM_L2",
    "BriefDescription": "The processor's Instruction cache was reloaded from local core's L2 due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded from local core's L2 due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x544046",
    "EventName": "PM_INST_ALL_FROM_L21_MOD",
    "BriefDescription": "The processor's Instruction cache was reloaded with Modified (M) data from another core's L2 on the same chip due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded with Modified (M) data from another core's L2 on the same chip due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x534046",
    "EventName": "PM_INST_ALL_FROM_L21_SHR",
    "BriefDescription": "The processor's Instruction cache was reloaded with Shared (S) data from another core's L2 on the same chip due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded with Shared (S) data from another core's L2 on the same chip due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x51404e",
    "EventName": "PM_INST_ALL_FROM_L2MISS",
    "BriefDescription": "The processor's Instruction cache was reloaded from a localtion other than the local core's L2 due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded from a localtion other than the local core's L2 due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x534040",
    "EventName": "PM_INST_ALL_FROM_L2_DISP_CONFLICT_LDHITST",
    "BriefDescription": "The processor's Instruction cache was reloaded from local core's L2 with load hit store conflict due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded from local core's L2 with load hit store conflict due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x544040",
    "EventName": "PM_INST_ALL_FROM_L2_DISP_CONFLICT_OTHER",
    "BriefDescription": "The processor's Instruction cache was reloaded from local core's L2 with dispatch conflict due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded from local core's L2 with dispatch conflict due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x524040",
    "EventName": "PM_INST_ALL_FROM_L2_MEPF",
    "BriefDescription": "The processor's Instruction cache was reloaded from local core's L2 hit without dispatch conflicts on Mepf state. due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded from local core's L2 hit without dispatch conflicts on Mepf state. due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x514040",
    "EventName": "PM_INST_ALL_FROM_L2_NO_CONFLICT",
    "BriefDescription": "The processor's Instruction cache was reloaded from local core's L2 without conflict due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded from local core's L2 without conflict due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x544042",
    "EventName": "PM_INST_ALL_FROM_L3",
    "BriefDescription": "The processor's Instruction cache was reloaded from local core's L3 due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded from local core's L3 due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x544044",
    "EventName": "PM_INST_ALL_FROM_L31_ECO_MOD",
    "BriefDescription": "The processor's Instruction cache was reloaded with Modified (M) data from another core's ECO L3 on the same chip due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded with Modified (M) data from another core's ECO L3 on the same chip due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x534044",
    "EventName": "PM_INST_ALL_FROM_L31_ECO_SHR",
    "BriefDescription": "The processor's Instruction cache was reloaded with Shared (S) data from another core's ECO L3 on the same chip due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded with Shared (S) data from another core's ECO L3 on the same chip due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x524044",
    "EventName": "PM_INST_ALL_FROM_L31_MOD",
    "BriefDescription": "The processor's Instruction cache was reloaded with Modified (M) data from another core's L3 on the same chip due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded with Modified (M) data from another core's L3 on the same chip due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x514046",
    "EventName": "PM_INST_ALL_FROM_L31_SHR",
    "BriefDescription": "The processor's Instruction cache was reloaded with Shared (S) data from another core's L3 on the same chip due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded with Shared (S) data from another core's L3 on the same chip due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x54404e",
    "EventName": "PM_INST_ALL_FROM_L3MISS_MOD",
    "BriefDescription": "The processor's Instruction cache was reloaded from a localtion other than the local core's L3 due to a instruction fetch",
    "PublicDescription": "The processor's Instruction cache was reloaded from a localtion other than the local core's L3 due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x534042",
    "EventName": "PM_INST_ALL_FROM_L3_DISP_CONFLICT",
    "BriefDescription": "The processor's Instruction cache was reloaded from local core's L3 with dispatch conflict due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded from local core's L3 with dispatch conflict due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x524042",
    "EventName": "PM_INST_ALL_FROM_L3_MEPF",
    "BriefDescription": "The processor's Instruction cache was reloaded from local core's L3 without dispatch conflicts hit on Mepf state. due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded from local core's L3 without dispatch conflicts hit on Mepf state. due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x514044",
    "EventName": "PM_INST_ALL_FROM_L3_NO_CONFLICT",
    "BriefDescription": "The processor's Instruction cache was reloaded from local core's L3 without conflict due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded from local core's L3 without conflict due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x51404c",
    "EventName": "PM_INST_ALL_FROM_LL4",
    "BriefDescription": "The processor's Instruction cache was reloaded from the local chip's L4 cache due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded from the local chip's L4 cache due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x524048",
    "EventName": "PM_INST_ALL_FROM_LMEM",
    "BriefDescription": "The processor's Instruction cache was reloaded from the local chip's Memory due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded from the local chip's Memory due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x52404c",
    "EventName": "PM_INST_ALL_FROM_MEMORY",
    "BriefDescription": "The processor's Instruction cache was reloaded from a memory location including L4 from local remote or distant due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded from a memory location including L4 from local remote or distant due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x54404a",
    "EventName": "PM_INST_ALL_FROM_OFF_CHIP_CACHE",
    "BriefDescription": "The processor's Instruction cache was reloaded either shared or modified data from another core's L2/L3 on a different chip (remote or distant) due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded either shared or modified data from another core's L2/L3 on a different chip (remote or distant) due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x514048",
    "EventName": "PM_INST_ALL_FROM_ON_CHIP_CACHE",
    "BriefDescription": "The processor's Instruction cache was reloaded either shared or modified data from another core's L2/L3 on the same chip due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded either shared or modified data from another core's L2/L3 on the same chip due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x524046",
    "EventName": "PM_INST_ALL_FROM_RL2L3_MOD",
    "BriefDescription": "The processor's Instruction cache was reloaded with Modified (M) data from another chip's L2 or L3 on the same Node or Group (Remote), as this chip due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded with Modified (M) data from another chip's L2 or L3 on the same Node or Group (Remote), as this chip due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x51404a",
    "EventName": "PM_INST_ALL_FROM_RL2L3_SHR",
    "BriefDescription": "The processor's Instruction cache was reloaded with Shared (S) data from another chip's L2 or L3 on the same Node or Group (Remote), as this chip due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded with Shared (S) data from another chip's L2 or L3 on the same Node or Group (Remote), as this chip due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x52404a",
    "EventName": "PM_INST_ALL_FROM_RL4",
    "BriefDescription": "The processor's Instruction cache was reloaded from another chip's L4 on the same Node or Group ( Remote) due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded from another chip's L4 on the same Node or Group ( Remote) due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x53404a",
    "EventName": "PM_INST_ALL_FROM_RMEM",
    "BriefDescription": "The processor's Instruction cache was reloaded from another chip's memory on the same Node or Group ( Remote) due to instruction fetches and prefetches",
    "PublicDescription": "The processor's Instruction cache was reloaded from another chip's memory on the same Node or Group ( Remote) due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x524050",
    "EventName": "PM_INST_ALL_GRP_PUMP_CPRED",
    "BriefDescription": "Initial and Final Pump Scope was group pump (prediction=correct) for instruction fetches and prefetches",
    "PublicDescription": "Initial and Final Pump Scope and data sourced across this scope was group pump for an instruction fetch"
  },
  {,
    "EventCode": "0x524052",
    "EventName": "PM_INST_ALL_GRP_PUMP_MPRED",
    "BriefDescription": "Final Pump Scope (Group) ended up either larger or smaller than Initial Pump Scope for instruction fetches and prefetches",
    "PublicDescription": "Final Pump Scope(Group) to get data sourced, ended up larger than Initial Pump Scope OR Final Pump Scope(Group) got data from source that was at smaller scope(Chip) Final pump was group pump and initial pump was chip or final and initial pump was gro"
  },
  {,
    "EventCode": "0x514052",
    "EventName": "PM_INST_ALL_GRP_PUMP_MPRED_RTY",
    "BriefDescription": "Final Pump Scope (Group) ended up larger than Initial Pump Scope (Chip) for instruction fetches and prefetches",
    "PublicDescription": "Final Pump Scope(Group) to get data sourced, ended up larger than Initial Pump Scope (Chip) Final pump was group pump and initial pump was chip pumpfor an instruction fetch"
  },
  {,
    "EventCode": "0x514054",
    "EventName": "PM_INST_ALL_PUMP_CPRED",
    "BriefDescription": "Pump prediction correct. Counts across all types of pumps for instruction fetches and prefetches",
    "PublicDescription": "Pump prediction correct. Counts across all types of pumpsfor an instruction fetch"
  },
  {,
    "EventCode": "0x544052",
    "EventName": "PM_INST_ALL_PUMP_MPRED",
    "BriefDescription": "Pump misprediction. Counts across all types of pumps for instruction fetches and prefetches",
    "PublicDescription": "Pump Mis prediction Counts across all types of pumpsfor an instruction fetch"
  },
  {,
    "EventCode": "0x534050",
    "EventName": "PM_INST_ALL_SYS_PUMP_CPRED",
    "BriefDescription": "Initial and Final Pump Scope was system pump (prediction=correct) for instruction fetches and prefetches",
    "PublicDescription": "Initial and Final Pump Scope and data sourced across this scope was system pump for an instruction fetch"
  },
  {,
    "EventCode": "0x534052",
    "EventName": "PM_INST_ALL_SYS_PUMP_MPRED",
    "BriefDescription": "Final Pump Scope (system) mispredicted. Either the original scope was too small (Chip/Group) or the original scope was System and it should have been smaller. Counts for instruction fetches and prefetches",
    "PublicDescription": "Final Pump Scope(system) to get data sourced, ended up larger than Initial Pump Scope(Chip/Group) OR Final Pump Scope(system) got data from source that was at smaller scope(Chip/group) Final pump was system pump and initial pump was chip or group or"
  },
  {,
    "EventCode": "0x544050",
    "EventName": "PM_INST_ALL_SYS_PUMP_MPRED_RTY",
    "BriefDescription": "Final Pump Scope (system) ended up larger than Initial Pump Scope (Chip/Group) for instruction fetches and prefetches",
    "PublicDescription": "Final Pump Scope(system) to get data sourced, ended up larger than Initial Pump Scope (Chip or Group) for an instruction fetch"
  },
  {,
    "EventCode": "0x4080",
    "EventName": "PM_INST_FROM_L1",
    "BriefDescription": "Instruction fetches from L1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x44046",
    "EventName": "PM_INST_FROM_L21_MOD",
    "BriefDescription": "The processor's Instruction cache was reloaded with Modified (M) data from another core's L2 on the same chip due to an instruction fetch (not prefetch)",
    "PublicDescription": "The processor's Instruction cache was reloaded with Modified (M) data from another core's L2 on the same chip due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x34046",
    "EventName": "PM_INST_FROM_L21_SHR",
    "BriefDescription": "The processor's Instruction cache was reloaded with Shared (S) data from another core's L2 on the same chip due to an instruction fetch (not prefetch)",
    "PublicDescription": "The processor's Instruction cache was reloaded with Shared (S) data from another core's L2 on the same chip due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x44044",
    "EventName": "PM_INST_FROM_L31_ECO_MOD",
    "BriefDescription": "The processor's Instruction cache was reloaded with Modified (M) data from another core's ECO L3 on the same chip due to an instruction fetch (not prefetch)",
    "PublicDescription": "The processor's Instruction cache was reloaded with Modified (M) data from another core's ECO L3 on the same chip due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x34044",
    "EventName": "PM_INST_FROM_L31_ECO_SHR",
    "BriefDescription": "The processor's Instruction cache was reloaded with Shared (S) data from another core's ECO L3 on the same chip due to an instruction fetch (not prefetch)",
    "PublicDescription": "The processor's Instruction cache was reloaded with Shared (S) data from another core's ECO L3 on the same chip due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x24044",
    "EventName": "PM_INST_FROM_L31_MOD",
    "BriefDescription": "The processor's Instruction cache was reloaded with Modified (M) data from another core's L3 on the same chip due to an instruction fetch (not prefetch)",
    "PublicDescription": "The processor's Instruction cache was reloaded with Modified (M) data from another core's L3 on the same chip due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x14046",
    "EventName": "PM_INST_FROM_L31_SHR",
    "BriefDescription": "The processor's Instruction cache was reloaded with Shared (S) data from another core's L3 on the same chip due to an instruction fetch (not prefetch)",
    "PublicDescription": "The processor's Instruction cache was reloaded with Shared (S) data from another core's L3 on the same chip due to either an instruction fetch or instruction fetch plus prefetch if MMCR1[17] is 1"
  },
  {,
    "EventCode": "0x30016",
    "EventName": "PM_INST_IMC_MATCH_DISP",
    "BriefDescription": "Matched Instructions Dispatched",
    "PublicDescription": "IMC Matches dispatched"
  },
  {,
    "EventCode": "0x30014",
    "EventName": "PM_IOPS_DISP",
    "BriefDescription": "Internal Operations dispatched",
    "PublicDescription": "IOPS dispatched"
  },
  {,
    "EventCode": "0x45046",
    "EventName": "PM_IPTEG_FROM_L21_MOD",
    "BriefDescription": "A Page Table Entry was loaded into the TLB with Modified (M) data from another core's L2 on the same chip due to a instruction side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x35046",
    "EventName": "PM_IPTEG_FROM_L21_SHR",
    "BriefDescription": "A Page Table Entry was loaded into the TLB with Shared (S) data from another core's L2 on the same chip due to a instruction side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x35040",
    "EventName": "PM_IPTEG_FROM_L2_DISP_CONFLICT_LDHITST",
    "BriefDescription": "A Page Table Entry was loaded into the TLB from local core's L2 with load hit store conflict due to a instruction side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x45040",
    "EventName": "PM_IPTEG_FROM_L2_DISP_CONFLICT_OTHER",
    "BriefDescription": "A Page Table Entry was loaded into the TLB from local core's L2 with dispatch conflict due to a instruction side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x45044",
    "EventName": "PM_IPTEG_FROM_L31_ECO_MOD",
    "BriefDescription": "A Page Table Entry was loaded into the TLB with Modified (M) data from another core's ECO L3 on the same chip due to a instruction side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x35044",
    "EventName": "PM_IPTEG_FROM_L31_ECO_SHR",
    "BriefDescription": "A Page Table Entry was loaded into the TLB with Shared (S) data from another core's ECO L3 on the same chip due to a instruction side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x25044",
    "EventName": "PM_IPTEG_FROM_L31_MOD",
    "BriefDescription": "A Page Table Entry was loaded into the TLB with Modified (M) data from another core's L3 on the same chip due to a instruction side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x15046",
    "EventName": "PM_IPTEG_FROM_L31_SHR",
    "BriefDescription": "A Page Table Entry was loaded into the TLB with Shared (S) data from another core's L3 on the same chip due to a instruction side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x617082",
    "EventName": "PM_ISIDE_DISP",
    "BriefDescription": "All i-side dispatch attempts",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x627084",
    "EventName": "PM_ISIDE_DISP_FAIL",
    "BriefDescription": "All i-side dispatch attempts that failed due to a addr collision with another machine",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x627086",
    "EventName": "PM_ISIDE_DISP_FAIL_OTHER",
    "BriefDescription": "All i-side dispatch attempts that failed due to a reason other than addrs collision",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4608e",
    "EventName": "PM_ISIDE_L2MEMACC",
    "BriefDescription": "valid when first beat of data comes in for an i-side fetch where data came from mem(or L4)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x44608e",
    "EventName": "PM_ISIDE_MRU_TOUCH",
    "BriefDescription": "Iside L2 MRU touch",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x30ac",
    "EventName": "PM_ISU_REF_FX0",
    "BriefDescription": "FX0 ISU reject",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x30ae",
    "EventName": "PM_ISU_REF_FX1",
    "BriefDescription": "FX1 ISU reject",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x38ac",
    "EventName": "PM_ISU_REF_FXU",
    "BriefDescription": "FXU ISU reject from either pipe",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x30b0",
    "EventName": "PM_ISU_REF_LS0",
    "BriefDescription": "LS0 ISU reject",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x30b2",
    "EventName": "PM_ISU_REF_LS1",
    "BriefDescription": "LS1 ISU reject",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x30b4",
    "EventName": "PM_ISU_REF_LS2",
    "BriefDescription": "LS2 ISU reject",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x30b6",
    "EventName": "PM_ISU_REF_LS3",
    "BriefDescription": "LS3 ISU reject",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x309c",
    "EventName": "PM_ISU_REJECTS_ALL",
    "BriefDescription": "All isu rejects could be more than 1 per cycle",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x30a2",
    "EventName": "PM_ISU_REJECT_RES_NA",
    "BriefDescription": "ISU reject due to resource not available",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x309e",
    "EventName": "PM_ISU_REJECT_SAR_BYPASS",
    "BriefDescription": "Reject because of SAR bypass",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x30a0",
    "EventName": "PM_ISU_REJECT_SRC_NA",
    "BriefDescription": "ISU reject due to source not available",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x30a8",
    "EventName": "PM_ISU_REJ_VS0",
    "BriefDescription": "VS0 ISU reject",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x30aa",
    "EventName": "PM_ISU_REJ_VS1",
    "BriefDescription": "VS1 ISU reject",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x38a8",
    "EventName": "PM_ISU_REJ_VSU",
    "BriefDescription": "VSU ISU reject from either pipe",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x30b8",
    "EventName": "PM_ISYNC",
    "BriefDescription": "Isync count per thread",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x200301ea",
    "EventName": "PM_L1MISS_LAT_EXC_1024",
    "BriefDescription": "L1 misses that took longer than 1024 cyles to resolve (miss to reload)",
    "PublicDescription": "Reload latency exceeded 1024 cyc"
  },
  {,
    "EventCode": "0x200401ec",
    "EventName": "PM_L1MISS_LAT_EXC_2048",
    "BriefDescription": "L1 misses that took longer than 2048 cyles to resolve (miss to reload)",
    "PublicDescription": "Reload latency exceeded 2048 cyc"
  },
  {,
    "EventCode": "0x200101e8",
    "EventName": "PM_L1MISS_LAT_EXC_256",
    "BriefDescription": "L1 misses that took longer than 256 cyles to resolve (miss to reload)",
    "PublicDescription": "Reload latency exceeded 256 cyc"
  },
  {,
    "EventCode": "0x200201e6",
    "EventName": "PM_L1MISS_LAT_EXC_32",
    "BriefDescription": "L1 misses that took longer than 32 cyles to resolve (miss to reload)",
    "PublicDescription": "Reload latency exceeded 32 cyc"
  },
  {,
    "EventCode": "0x26086",
    "EventName": "PM_L1PF_L2MEMACC",
    "BriefDescription": "valid when first beat of data comes in for an L1pref where data came from mem(or L4)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x408c",
    "EventName": "PM_L1_DEMAND_WRITE",
    "BriefDescription": "Instruction Demand sectors wriittent into IL1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x417080",
    "EventName": "PM_L2_CASTOUT_MOD",
    "BriefDescription": "L2 Castouts - Modified (M, Mu, Me)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x417082",
    "EventName": "PM_L2_CASTOUT_SHR",
    "BriefDescription": "L2 Castouts - Shared (T, Te, Si, S)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x27084",
    "EventName": "PM_L2_CHIP_PUMP",
    "BriefDescription": "RC requests that were local on chip pump attempts",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x427086",
    "EventName": "PM_L2_DC_INV",
    "BriefDescription": "Dcache invalidates from L2",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x44608c",
    "EventName": "PM_L2_DISP_ALL_L2MISS",
    "BriefDescription": "All successful Ld/St dispatches for this thread that were an L2miss",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x27086",
    "EventName": "PM_L2_GROUP_PUMP",
    "BriefDescription": "RC requests that were on Node Pump attempts",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x626084",
    "EventName": "PM_L2_GRP_GUESS_CORRECT",
    "BriefDescription": "L2 guess grp and guess was correct (data intra-6chip AND ^on-chip)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x626086",
    "EventName": "PM_L2_GRP_GUESS_WRONG",
    "BriefDescription": "L2 guess grp and guess was not correct (ie data on-chip OR beyond-6chip)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x427084",
    "EventName": "PM_L2_IC_INV",
    "BriefDescription": "Icache Invalidates from L2",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x436088",
    "EventName": "PM_L2_INST",
    "BriefDescription": "All successful I-side dispatches for this thread (excludes i_l2mru_tch reqs)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x43608a",
    "EventName": "PM_L2_INST_MISS",
    "BriefDescription": "All successful i-side dispatches that were an L2miss for this thread (excludes i_l2mru_tch reqs)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x416080",
    "EventName": "PM_L2_LD",
    "BriefDescription": "All successful D-side Load dispatches for this thread",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x437088",
    "EventName": "PM_L2_LD_DISP",
    "BriefDescription": "All successful load dispatches",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x43708a",
    "EventName": "PM_L2_LD_HIT",
    "BriefDescription": "All successful load dispatches that were L2 hits",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x426084",
    "EventName": "PM_L2_LD_MISS",
    "BriefDescription": "All successful D-Side Load dispatches that were an L2miss for this thread",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x616080",
    "EventName": "PM_L2_LOC_GUESS_CORRECT",
    "BriefDescription": "L2 guess loc and guess was correct (ie data local)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x616082",
    "EventName": "PM_L2_LOC_GUESS_WRONG",
    "BriefDescription": "L2 guess loc and guess was not correct (ie data not on chip)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x516080",
    "EventName": "PM_L2_RCLD_DISP",
    "BriefDescription": "L2 RC load dispatch attempt",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x516082",
    "EventName": "PM_L2_RCLD_DISP_FAIL_ADDR",
    "BriefDescription": "L2 RC load dispatch attempt failed due to address collision with RC/CO/SN/SQ",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x526084",
    "EventName": "PM_L2_RCLD_DISP_FAIL_OTHER",
    "BriefDescription": "L2 RC load dispatch attempt failed due to other reasons",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x536088",
    "EventName": "PM_L2_RCST_DISP",
    "BriefDescription": "L2 RC store dispatch attempt",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x53608a",
    "EventName": "PM_L2_RCST_DISP_FAIL_ADDR",
    "BriefDescription": "L2 RC store dispatch attempt failed due to address collision with RC/CO/SN/SQ",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x54608c",
    "EventName": "PM_L2_RCST_DISP_FAIL_OTHER",
    "BriefDescription": "L2 RC store dispatch attempt failed due to other reasons",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x537088",
    "EventName": "PM_L2_RC_ST_DONE",
    "BriefDescription": "RC did st to line that was Tx or Sx",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x63708a",
    "EventName": "PM_L2_RTY_LD",
    "BriefDescription": "RC retries on PB for any load from core",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3708a",
    "EventName": "PM_L2_RTY_ST",
    "BriefDescription": "RC retries on PB for any store from core",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x54708c",
    "EventName": "PM_L2_SN_M_RD_DONE",
    "BriefDescription": "SNP dispatched for a read and was M",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x54708e",
    "EventName": "PM_L2_SN_M_WR_DONE",
    "BriefDescription": "SNP dispatched for a write and was M",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x53708a",
    "EventName": "PM_L2_SN_SX_I_DONE",
    "BriefDescription": "SNP dispatched and went from Sx or Tx to Ix",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x17080",
    "EventName": "PM_L2_ST",
    "BriefDescription": "All successful D-side store dispatches for this thread",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x44708c",
    "EventName": "PM_L2_ST_DISP",
    "BriefDescription": "All successful store dispatches",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x44708e",
    "EventName": "PM_L2_ST_HIT",
    "BriefDescription": "All successful store dispatches that were L2Hits",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x17082",
    "EventName": "PM_L2_ST_MISS",
    "BriefDescription": "All successful D-side store dispatches for this thread that were L2 Miss",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x636088",
    "EventName": "PM_L2_SYS_GUESS_CORRECT",
    "BriefDescription": "L2 guess sys and guess was correct (ie data beyond-6chip)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x63608a",
    "EventName": "PM_L2_SYS_GUESS_WRONG",
    "BriefDescription": "L2 guess sys and guess was not correct (ie data ^beyond-6chip)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x617080",
    "EventName": "PM_L2_SYS_PUMP",
    "BriefDescription": "RC requests that were system pump attempts",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x1e05e",
    "EventName": "PM_L2_TM_REQ_ABORT",
    "BriefDescription": "TM abort",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3e05c",
    "EventName": "PM_L2_TM_ST_ABORT_SISTER",
    "BriefDescription": "TM marked store abort",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x23808a",
    "EventName": "PM_L3_CINJ",
    "BriefDescription": "l3 ci of cache inject",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x128084",
    "EventName": "PM_L3_CI_HIT",
    "BriefDescription": "L3 Castins Hit (total count",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x128086",
    "EventName": "PM_L3_CI_MISS",
    "BriefDescription": "L3 castins miss (total count",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x819082",
    "EventName": "PM_L3_CI_USAGE",
    "BriefDescription": "rotating sample of 16 CI or CO actives",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x438088",
    "EventName": "PM_L3_CO",
    "BriefDescription": "l3 castout occurring ( does not include casthrough or log writes (cinj/dmaw)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x83908b",
    "EventName": "PM_L3_CO0_ALLOC",
    "BriefDescription": "lifetime, sample of CO machine 0 valid",
    "PublicDescription": "0.0"
  },
  {,
    "EventCode": "0x83908a",
    "EventName": "PM_L3_CO0_BUSY",
    "BriefDescription": "lifetime, sample of CO machine 0 valid",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x28086",
    "EventName": "PM_L3_CO_L31",
    "BriefDescription": "L3 CO to L3.1 OR of port 0 and 1 ( lossy)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x238088",
    "EventName": "PM_L3_CO_LCO",
    "BriefDescription": "Total L3 castouts occurred on LCO",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x28084",
    "EventName": "PM_L3_CO_MEM",
    "BriefDescription": "L3 CO to memory OR of port 0 and 1 ( lossy)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb19082",
    "EventName": "PM_L3_GRP_GUESS_CORRECT",
    "BriefDescription": "Initial scope=group and data from same group (near) (pred successful)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb3908a",
    "EventName": "PM_L3_GRP_GUESS_WRONG_HIGH",
    "BriefDescription": "Initial scope=group but data from local node. Predition too high",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb39088",
    "EventName": "PM_L3_GRP_GUESS_WRONG_LOW",
    "BriefDescription": "Initial scope=group but data from outside group (far or rem). Prediction too Low",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x218080",
    "EventName": "PM_L3_HIT",
    "BriefDescription": "L3 Hits",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x138088",
    "EventName": "PM_L3_L2_CO_HIT",
    "BriefDescription": "L2 castout hits",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x13808a",
    "EventName": "PM_L3_L2_CO_MISS",
    "BriefDescription": "L2 castout miss",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x14808c",
    "EventName": "PM_L3_LAT_CI_HIT",
    "BriefDescription": "L3 Lateral Castins Hit",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x14808e",
    "EventName": "PM_L3_LAT_CI_MISS",
    "BriefDescription": "L3 Lateral Castins Miss",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x228084",
    "EventName": "PM_L3_LD_HIT",
    "BriefDescription": "L3 demand LD Hits",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x228086",
    "EventName": "PM_L3_LD_MISS",
    "BriefDescription": "L3 demand LD Miss",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x1e052",
    "EventName": "PM_L3_LD_PREF",
    "BriefDescription": "L3 Load Prefetches",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb19080",
    "EventName": "PM_L3_LOC_GUESS_CORRECT",
    "BriefDescription": "initial scope=node/chip and data from local node (local) (pred successful)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb29086",
    "EventName": "PM_L3_LOC_GUESS_WRONG",
    "BriefDescription": "Initial scope=node but data from out side local node (near or far or rem). Prediction too Low",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x218082",
    "EventName": "PM_L3_MISS",
    "BriefDescription": "L3 Misses",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x54808c",
    "EventName": "PM_L3_P0_CO_L31",
    "BriefDescription": "l3 CO to L3.1 (lco) port 0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x538088",
    "EventName": "PM_L3_P0_CO_MEM",
    "BriefDescription": "l3 CO to memory port 0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x929084",
    "EventName": "PM_L3_P0_CO_RTY",
    "BriefDescription": "L3 CO received retry port 0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa29084",
    "EventName": "PM_L3_P0_GRP_PUMP",
    "BriefDescription": "L3 pf sent with grp scope port 0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x528084",
    "EventName": "PM_L3_P0_LCO_DATA",
    "BriefDescription": "lco sent with data port 0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x518080",
    "EventName": "PM_L3_P0_LCO_NO_DATA",
    "BriefDescription": "dataless l3 lco sent port 0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa4908c",
    "EventName": "PM_L3_P0_LCO_RTY",
    "BriefDescription": "L3 LCO received retry port 0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa19080",
    "EventName": "PM_L3_P0_NODE_PUMP",
    "BriefDescription": "L3 pf sent with nodal scope port 0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x919080",
    "EventName": "PM_L3_P0_PF_RTY",
    "BriefDescription": "L3 PF received retry port 0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x939088",
    "EventName": "PM_L3_P0_SN_HIT",
    "BriefDescription": "L3 snoop hit port 0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x118080",
    "EventName": "PM_L3_P0_SN_INV",
    "BriefDescription": "Port0 snooper detects someone doing a store to a line thats Sx",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x94908c",
    "EventName": "PM_L3_P0_SN_MISS",
    "BriefDescription": "L3 snoop miss port 0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa39088",
    "EventName": "PM_L3_P0_SYS_PUMP",
    "BriefDescription": "L3 pf sent with sys scope port 0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x54808e",
    "EventName": "PM_L3_P1_CO_L31",
    "BriefDescription": "l3 CO to L3.1 (lco) port 1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x53808a",
    "EventName": "PM_L3_P1_CO_MEM",
    "BriefDescription": "l3 CO to memory port 1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x929086",
    "EventName": "PM_L3_P1_CO_RTY",
    "BriefDescription": "L3 CO received retry port 1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa29086",
    "EventName": "PM_L3_P1_GRP_PUMP",
    "BriefDescription": "L3 pf sent with grp scope port 1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x528086",
    "EventName": "PM_L3_P1_LCO_DATA",
    "BriefDescription": "lco sent with data port 1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x518082",
    "EventName": "PM_L3_P1_LCO_NO_DATA",
    "BriefDescription": "dataless l3 lco sent port 1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa4908e",
    "EventName": "PM_L3_P1_LCO_RTY",
    "BriefDescription": "L3 LCO received retry port 1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa19082",
    "EventName": "PM_L3_P1_NODE_PUMP",
    "BriefDescription": "L3 pf sent with nodal scope port 1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x919082",
    "EventName": "PM_L3_P1_PF_RTY",
    "BriefDescription": "L3 PF received retry port 1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x93908a",
    "EventName": "PM_L3_P1_SN_HIT",
    "BriefDescription": "L3 snoop hit port 1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x118082",
    "EventName": "PM_L3_P1_SN_INV",
    "BriefDescription": "Port1 snooper detects someone doing a store to a line thats Sx",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x94908e",
    "EventName": "PM_L3_P1_SN_MISS",
    "BriefDescription": "L3 snoop miss port 1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa3908a",
    "EventName": "PM_L3_P1_SYS_PUMP",
    "BriefDescription": "L3 pf sent with sys scope port 1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x84908d",
    "EventName": "PM_L3_PF0_ALLOC",
    "BriefDescription": "lifetime, sample of PF machine 0 valid",
    "PublicDescription": "0.0"
  },
  {,
    "EventCode": "0x84908c",
    "EventName": "PM_L3_PF0_BUSY",
    "BriefDescription": "lifetime, sample of PF machine 0 valid",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x428084",
    "EventName": "PM_L3_PF_HIT_L3",
    "BriefDescription": "l3 pf hit in l3",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x18080",
    "EventName": "PM_L3_PF_MISS_L3",
    "BriefDescription": "L3 Prefetch missed in L3",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3808a",
    "EventName": "PM_L3_PF_OFF_CHIP_CACHE",
    "BriefDescription": "L3 Prefetch from Off chip cache",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4808e",
    "EventName": "PM_L3_PF_OFF_CHIP_MEM",
    "BriefDescription": "L3 Prefetch from Off chip memory",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x38088",
    "EventName": "PM_L3_PF_ON_CHIP_CACHE",
    "BriefDescription": "L3 Prefetch from On chip cache",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4808c",
    "EventName": "PM_L3_PF_ON_CHIP_MEM",
    "BriefDescription": "L3 Prefetch from On chip memory",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x829084",
    "EventName": "PM_L3_PF_USAGE",
    "BriefDescription": "rotating sample of 32 PF actives",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4e052",
    "EventName": "PM_L3_PREF_ALL",
    "BriefDescription": "Total HW L3 prefetches(Load+store)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x84908f",
    "EventName": "PM_L3_RD0_ALLOC",
    "BriefDescription": "lifetime, sample of RD machine 0 valid",
    "PublicDescription": "0.0"
  },
  {,
    "EventCode": "0x84908e",
    "EventName": "PM_L3_RD0_BUSY",
    "BriefDescription": "lifetime, sample of RD machine 0 valid",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x829086",
    "EventName": "PM_L3_RD_USAGE",
    "BriefDescription": "rotating sample of 16 RD actives",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x839089",
    "EventName": "PM_L3_SN0_ALLOC",
    "BriefDescription": "lifetime, sample of snooper machine 0 valid",
    "PublicDescription": "0.0"
  },
  {,
    "EventCode": "0x839088",
    "EventName": "PM_L3_SN0_BUSY",
    "BriefDescription": "lifetime, sample of snooper machine 0 valid",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x819080",
    "EventName": "PM_L3_SN_USAGE",
    "BriefDescription": "rotating sample of 8 snoop valids",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2e052",
    "EventName": "PM_L3_ST_PREF",
    "BriefDescription": "L3 store Prefetches",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3e052",
    "EventName": "PM_L3_SW_PREF",
    "BriefDescription": "Data stream touchto L3",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb29084",
    "EventName": "PM_L3_SYS_GUESS_CORRECT",
    "BriefDescription": "Initial scope=system and data from outside group (far or rem)(pred successful)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb4908c",
    "EventName": "PM_L3_SYS_GUESS_WRONG",
    "BriefDescription": "Initial scope=system but data from local or near. Predction too high",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x24808e",
    "EventName": "PM_L3_TRANS_PF",
    "BriefDescription": "L3 Transient prefetch",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x18081",
    "EventName": "PM_L3_WI0_ALLOC",
    "BriefDescription": "lifetime, sample of Write Inject machine 0 valid",
    "PublicDescription": "0.0"
  },
  {,
    "EventCode": "0x418080",
    "EventName": "PM_L3_WI0_BUSY",
    "BriefDescription": "lifetime, sample of Write Inject machine 0 valid",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x418082",
    "EventName": "PM_L3_WI_USAGE",
    "BriefDescription": "rotating sample of 8 WI actives",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xc080",
    "EventName": "PM_LD_REF_L1_LSU0",
    "BriefDescription": "LS0 L1 D cache load references counted at finish, gated by reject",
    "PublicDescription": "LS0 L1 D cache load references counted at finish, gated by rejectLSU0 L1 D cache load references"
  },
  {,
    "EventCode": "0xc082",
    "EventName": "PM_LD_REF_L1_LSU1",
    "BriefDescription": "LS1 L1 D cache load references counted at finish, gated by reject",
    "PublicDescription": "LS1 L1 D cache load references counted at finish, gated by rejectLSU1 L1 D cache load references"
  },
  {,
    "EventCode": "0xc094",
    "EventName": "PM_LD_REF_L1_LSU2",
    "BriefDescription": "LS2 L1 D cache load references counted at finish, gated by reject",
    "PublicDescription": "LS2 L1 D cache load references counted at finish, gated by reject42"
  },
  {,
    "EventCode": "0xc096",
    "EventName": "PM_LD_REF_L1_LSU3",
    "BriefDescription": "LS3 L1 D cache load references counted at finish, gated by reject",
    "PublicDescription": "LS3 L1 D cache load references counted at finish, gated by reject42"
  },
  {,
    "EventCode": "0x509a",
    "EventName": "PM_LINK_STACK_INVALID_PTR",
    "BriefDescription": "A flush were LS ptr is invalid, results in a pop , A lot of interrupts between push and pops",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x5098",
    "EventName": "PM_LINK_STACK_WRONG_ADD_PRED",
    "BriefDescription": "Link stack predicts wrong address, because of link stack design limitation",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xe080",
    "EventName": "PM_LS0_ERAT_MISS_PREF",
    "BriefDescription": "LS0 Erat miss due to prefetch",
    "PublicDescription": "LS0 Erat miss due to prefetch42"
  },
  {,
    "EventCode": "0xd0b8",
    "EventName": "PM_LS0_L1_PREF",
    "BriefDescription": "LS0 L1 cache data prefetches",
    "PublicDescription": "LS0 L1 cache data prefetches42"
  },
  {,
    "EventCode": "0xc098",
    "EventName": "PM_LS0_L1_SW_PREF",
    "BriefDescription": "Software L1 Prefetches, including SW Transient Prefetches",
    "PublicDescription": "Software L1 Prefetches, including SW Transient Prefetches42"
  },
  {,
    "EventCode": "0xe082",
    "EventName": "PM_LS1_ERAT_MISS_PREF",
    "BriefDescription": "LS1 Erat miss due to prefetch",
    "PublicDescription": "LS1 Erat miss due to prefetch42"
  },
  {,
    "EventCode": "0xd0ba",
    "EventName": "PM_LS1_L1_PREF",
    "BriefDescription": "LS1 L1 cache data prefetches",
    "PublicDescription": "LS1 L1 cache data prefetches42"
  },
  {,
    "EventCode": "0xc09a",
    "EventName": "PM_LS1_L1_SW_PREF",
    "BriefDescription": "Software L1 Prefetches, including SW Transient Prefetches",
    "PublicDescription": "Software L1 Prefetches, including SW Transient Prefetches42"
  },
  {,
    "EventCode": "0xc0b0",
    "EventName": "PM_LSU0_FLUSH_LRQ",
    "BriefDescription": "LS0 Flush: LRQ",
    "PublicDescription": "LS0 Flush: LRQLSU0 LRQ flushes"
  },
  {,
    "EventCode": "0xc0b8",
    "EventName": "PM_LSU0_FLUSH_SRQ",
    "BriefDescription": "LS0 Flush: SRQ",
    "PublicDescription": "LS0 Flush: SRQLSU0 SRQ lhs flushes"
  },
  {,
    "EventCode": "0xc0a4",
    "EventName": "PM_LSU0_FLUSH_ULD",
    "BriefDescription": "LS0 Flush: Unaligned Load",
    "PublicDescription": "LS0 Flush: Unaligned LoadLSU0 unaligned load flushes"
  },
  {,
    "EventCode": "0xc0ac",
    "EventName": "PM_LSU0_FLUSH_UST",
    "BriefDescription": "LS0 Flush: Unaligned Store",
    "PublicDescription": "LS0 Flush: Unaligned StoreLSU0 unaligned store flushes"
  },
  {,
    "EventCode": "0xf088",
    "EventName": "PM_LSU0_L1_CAM_CANCEL",
    "BriefDescription": "ls0 l1 tm cam cancel",
    "PublicDescription": "ls0 l1 tm cam cancel42"
  },
  {,
    "EventCode": "0x1e056",
    "EventName": "PM_LSU0_LARX_FIN",
    "BriefDescription": "Larx finished in LSU pipe0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xd08c",
    "EventName": "PM_LSU0_LMQ_LHR_MERGE",
    "BriefDescription": "LS0 Load Merged with another cacheline request",
    "PublicDescription": "LS0 Load Merged with another cacheline request42"
  },
  {,
    "EventCode": "0xc08c",
    "EventName": "PM_LSU0_NCLD",
    "BriefDescription": "LS0 Non-cachable Loads counted at finish",
    "PublicDescription": "LS0 Non-cachable Loads counted at finishLSU0 non-cacheable loads"
  },
  {,
    "EventCode": "0xe090",
    "EventName": "PM_LSU0_PRIMARY_ERAT_HIT",
    "BriefDescription": "Primary ERAT hit",
    "PublicDescription": "Primary ERAT hit42"
  },
  {,
    "EventCode": "0x1e05a",
    "EventName": "PM_LSU0_REJECT",
    "BriefDescription": "LSU0 reject",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xc09c",
    "EventName": "PM_LSU0_SRQ_STFWD",
    "BriefDescription": "LS0 SRQ forwarded data to a load",
    "PublicDescription": "LS0 SRQ forwarded data to a loadLSU0 SRQ store forwarded"
  },
  {,
    "EventCode": "0xf084",
    "EventName": "PM_LSU0_STORE_REJECT",
    "BriefDescription": "ls0 store reject",
    "PublicDescription": "ls0 store reject42"
  },
  {,
    "EventCode": "0xe0a8",
    "EventName": "PM_LSU0_TMA_REQ_L2",
    "BriefDescription": "addrs only req to L2 only on the first one,Indication that Load footprint is not expanding",
    "PublicDescription": "addrs only req to L2 only on the first one,Indication that Load footprint is not expanding42"
  },
  {,
    "EventCode": "0xe098",
    "EventName": "PM_LSU0_TM_L1_HIT",
    "BriefDescription": "Load tm hit in L1",
    "PublicDescription": "Load tm hit in L142"
  },
  {,
    "EventCode": "0xe0a0",
    "EventName": "PM_LSU0_TM_L1_MISS",
    "BriefDescription": "Load tm L1 miss",
    "PublicDescription": "Load tm L1 miss42"
  },
  {,
    "EventCode": "0xc0b2",
    "EventName": "PM_LSU1_FLUSH_LRQ",
    "BriefDescription": "LS1 Flush: LRQ",
    "PublicDescription": "LS1 Flush: LRQLSU1 LRQ flushes"
  },
  {,
    "EventCode": "0xc0ba",
    "EventName": "PM_LSU1_FLUSH_SRQ",
    "BriefDescription": "LS1 Flush: SRQ",
    "PublicDescription": "LS1 Flush: SRQLSU1 SRQ lhs flushes"
  },
  {,
    "EventCode": "0xc0a6",
    "EventName": "PM_LSU1_FLUSH_ULD",
    "BriefDescription": "LS 1 Flush: Unaligned Load",
    "PublicDescription": "LS 1 Flush: Unaligned LoadLSU1 unaligned load flushes"
  },
  {,
    "EventCode": "0xc0ae",
    "EventName": "PM_LSU1_FLUSH_UST",
    "BriefDescription": "LS1 Flush: Unaligned Store",
    "PublicDescription": "LS1 Flush: Unaligned StoreLSU1 unaligned store flushes"
  },
  {,
    "EventCode": "0xf08a",
    "EventName": "PM_LSU1_L1_CAM_CANCEL",
    "BriefDescription": "ls1 l1 tm cam cancel",
    "PublicDescription": "ls1 l1 tm cam cancel42"
  },
  {,
    "EventCode": "0x2e056",
    "EventName": "PM_LSU1_LARX_FIN",
    "BriefDescription": "Larx finished in LSU pipe1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xd08e",
    "EventName": "PM_LSU1_LMQ_LHR_MERGE",
    "BriefDescription": "LS1 Load Merge with another cacheline request",
    "PublicDescription": "LS1 Load Merge with another cacheline request42"
  },
  {,
    "EventCode": "0xc08e",
    "EventName": "PM_LSU1_NCLD",
    "BriefDescription": "LS1 Non-cachable Loads counted at finish",
    "PublicDescription": "LS1 Non-cachable Loads counted at finishLSU1 non-cacheable loads"
  },
  {,
    "EventCode": "0xe092",
    "EventName": "PM_LSU1_PRIMARY_ERAT_HIT",
    "BriefDescription": "Primary ERAT hit",
    "PublicDescription": "Primary ERAT hit42"
  },
  {,
    "EventCode": "0x2e05a",
    "EventName": "PM_LSU1_REJECT",
    "BriefDescription": "LSU1 reject",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xc09e",
    "EventName": "PM_LSU1_SRQ_STFWD",
    "BriefDescription": "LS1 SRQ forwarded data to a load",
    "PublicDescription": "LS1 SRQ forwarded data to a loadLSU1 SRQ store forwarded"
  },
  {,
    "EventCode": "0xf086",
    "EventName": "PM_LSU1_STORE_REJECT",
    "BriefDescription": "ls1 store reject",
    "PublicDescription": "ls1 store reject42"
  },
  {,
    "EventCode": "0xe0aa",
    "EventName": "PM_LSU1_TMA_REQ_L2",
    "BriefDescription": "addrs only req to L2 only on the first one,Indication that Load footprint is not expanding",
    "PublicDescription": "addrs only req to L2 only on the first one,Indication that Load footprint is not expanding42"
  },
  {,
    "EventCode": "0xe09a",
    "EventName": "PM_LSU1_TM_L1_HIT",
    "BriefDescription": "Load tm hit in L1",
    "PublicDescription": "Load tm hit in L142"
  },
  {,
    "EventCode": "0xe0a2",
    "EventName": "PM_LSU1_TM_L1_MISS",
    "BriefDescription": "Load tm L1 miss",
    "PublicDescription": "Load tm L1 miss42"
  },
  {,
    "EventCode": "0xc0b4",
    "EventName": "PM_LSU2_FLUSH_LRQ",
    "BriefDescription": "LS02Flush: LRQ",
    "PublicDescription": "LS02Flush: LRQ42"
  },
  {,
    "EventCode": "0xc0bc",
    "EventName": "PM_LSU2_FLUSH_SRQ",
    "BriefDescription": "LS2 Flush: SRQ",
    "PublicDescription": "LS2 Flush: SRQ42"
  },
  {,
    "EventCode": "0xc0a8",
    "EventName": "PM_LSU2_FLUSH_ULD",
    "BriefDescription": "LS3 Flush: Unaligned Load",
    "PublicDescription": "LS3 Flush: Unaligned Load42"
  },
  {,
    "EventCode": "0xf08c",
    "EventName": "PM_LSU2_L1_CAM_CANCEL",
    "BriefDescription": "ls2 l1 tm cam cancel",
    "PublicDescription": "ls2 l1 tm cam cancel42"
  },
  {,
    "EventCode": "0x3e056",
    "EventName": "PM_LSU2_LARX_FIN",
    "BriefDescription": "Larx finished in LSU pipe2",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xc084",
    "EventName": "PM_LSU2_LDF",
    "BriefDescription": "LS2 Scalar Loads",
    "PublicDescription": "LS2 Scalar Loads42"
  },
  {,
    "EventCode": "0xc088",
    "EventName": "PM_LSU2_LDX",
    "BriefDescription": "LS0 Vector Loads",
    "PublicDescription": "LS0 Vector Loads42"
  },
  {,
    "EventCode": "0xd090",
    "EventName": "PM_LSU2_LMQ_LHR_MERGE",
    "BriefDescription": "LS0 Load Merged with another cacheline request",
    "PublicDescription": "LS0 Load Merged with another cacheline request42"
  },
  {,
    "EventCode": "0xe094",
    "EventName": "PM_LSU2_PRIMARY_ERAT_HIT",
    "BriefDescription": "Primary ERAT hit",
    "PublicDescription": "Primary ERAT hit42"
  },
  {,
    "EventCode": "0x3e05a",
    "EventName": "PM_LSU2_REJECT",
    "BriefDescription": "LSU2 reject",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xc0a0",
    "EventName": "PM_LSU2_SRQ_STFWD",
    "BriefDescription": "LS2 SRQ forwarded data to a load",
    "PublicDescription": "LS2 SRQ forwarded data to a load42"
  },
  {,
    "EventCode": "0xe0ac",
    "EventName": "PM_LSU2_TMA_REQ_L2",
    "BriefDescription": "addrs only req to L2 only on the first one,Indication that Load footprint is not expanding",
    "PublicDescription": "addrs only req to L2 only on the first one,Indication that Load footprint is not expanding42"
  },
  {,
    "EventCode": "0xe09c",
    "EventName": "PM_LSU2_TM_L1_HIT",
    "BriefDescription": "Load tm hit in L1",
    "PublicDescription": "Load tm hit in L142"
  },
  {,
    "EventCode": "0xe0a4",
    "EventName": "PM_LSU2_TM_L1_MISS",
    "BriefDescription": "Load tm L1 miss",
    "PublicDescription": "Load tm L1 miss42"
  },
  {,
    "EventCode": "0xc0b6",
    "EventName": "PM_LSU3_FLUSH_LRQ",
    "BriefDescription": "LS3 Flush: LRQ",
    "PublicDescription": "LS3 Flush: LRQ42"
  },
  {,
    "EventCode": "0xc0be",
    "EventName": "PM_LSU3_FLUSH_SRQ",
    "BriefDescription": "LS13 Flush: SRQ",
    "PublicDescription": "LS13 Flush: SRQ42"
  },
  {,
    "EventCode": "0xc0aa",
    "EventName": "PM_LSU3_FLUSH_ULD",
    "BriefDescription": "LS 14Flush: Unaligned Load",
    "PublicDescription": "LS 14Flush: Unaligned Load42"
  },
  {,
    "EventCode": "0xf08e",
    "EventName": "PM_LSU3_L1_CAM_CANCEL",
    "BriefDescription": "ls3 l1 tm cam cancel",
    "PublicDescription": "ls3 l1 tm cam cancel42"
  },
  {,
    "EventCode": "0x4e056",
    "EventName": "PM_LSU3_LARX_FIN",
    "BriefDescription": "Larx finished in LSU pipe3",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xc086",
    "EventName": "PM_LSU3_LDF",
    "BriefDescription": "LS3 Scalar Loads",
    "PublicDescription": "LS3 Scalar Loads 42"
  },
  {,
    "EventCode": "0xc08a",
    "EventName": "PM_LSU3_LDX",
    "BriefDescription": "LS1 Vector Loads",
    "PublicDescription": "LS1 Vector Loads42"
  },
  {,
    "EventCode": "0xd092",
    "EventName": "PM_LSU3_LMQ_LHR_MERGE",
    "BriefDescription": "LS1 Load Merge with another cacheline request",
    "PublicDescription": "LS1 Load Merge with another cacheline request42"
  },
  {,
    "EventCode": "0xe096",
    "EventName": "PM_LSU3_PRIMARY_ERAT_HIT",
    "BriefDescription": "Primary ERAT hit",
    "PublicDescription": "Primary ERAT hit42"
  },
  {,
    "EventCode": "0x4e05a",
    "EventName": "PM_LSU3_REJECT",
    "BriefDescription": "LSU3 reject",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xc0a2",
    "EventName": "PM_LSU3_SRQ_STFWD",
    "BriefDescription": "LS3 SRQ forwarded data to a load",
    "PublicDescription": "LS3 SRQ forwarded data to a load42"
  },
  {,
    "EventCode": "0xe0ae",
    "EventName": "PM_LSU3_TMA_REQ_L2",
    "BriefDescription": "addrs only req to L2 only on the first one,Indication that Load footprint is not expanding",
    "PublicDescription": "addrs only req to L2 only on the first one,Indication that Load footprint is not expanding42"
  },
  {,
    "EventCode": "0xe09e",
    "EventName": "PM_LSU3_TM_L1_HIT",
    "BriefDescription": "Load tm hit in L1",
    "PublicDescription": "Load tm hit in L142"
  },
  {,
    "EventCode": "0xe0a6",
    "EventName": "PM_LSU3_TM_L1_MISS",
    "BriefDescription": "Load tm L1 miss",
    "PublicDescription": "Load tm L1 miss42"
  },
  {,
    "EventCode": "0xe880",
    "EventName": "PM_LSU_ERAT_MISS_PREF",
    "BriefDescription": "Erat miss due to prefetch, on either pipe",
    "PublicDescription": "LSU"
  },
  {,
    "EventCode": "0xc8ac",
    "EventName": "PM_LSU_FLUSH_UST",
    "BriefDescription": "Unaligned Store Flush on either pipe",
    "PublicDescription": "LSU"
  },
  {,
    "EventCode": "0xd0a4",
    "EventName": "PM_LSU_FOUR_TABLEWALK_CYC",
    "BriefDescription": "Cycles when four tablewalks pending on this thread",
    "PublicDescription": "Cycles when four tablewalks pending on this thread42"
  },
  {,
    "EventCode": "0x10066",
    "EventName": "PM_LSU_FX_FIN",
    "BriefDescription": "LSU Finished a FX operation (up to 2 per cycle",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xd8b8",
    "EventName": "PM_LSU_L1_PREF",
    "BriefDescription": "hw initiated , include sw streaming forms as well , include sw streams as a separate event",
    "PublicDescription": "LSU"
  },
  {,
    "EventCode": "0xc898",
    "EventName": "PM_LSU_L1_SW_PREF",
    "BriefDescription": "Software L1 Prefetches, including SW Transient Prefetches, on both pipes",
    "PublicDescription": "LSU"
  },
  {,
    "EventCode": "0xc884",
    "EventName": "PM_LSU_LDF",
    "BriefDescription": "FPU loads only on LS2/LS3 ie LU0/LU1",
    "PublicDescription": "LSU"
  },
  {,
    "EventCode": "0xc888",
    "EventName": "PM_LSU_LDX",
    "BriefDescription": "Vector loads can issue only on LS2/LS3",
    "PublicDescription": "LSU"
  },
  {,
    "EventCode": "0xd0a2",
    "EventName": "PM_LSU_LMQ_FULL_CYC",
    "BriefDescription": "LMQ full",
    "PublicDescription": "LMQ fullCycles LMQ full"
  },
  {,
    "EventCode": "0xd0a1",
    "EventName": "PM_LSU_LMQ_S0_ALLOC",
    "BriefDescription": "Per thread - use edge detect to count allocates On a per thread basis, level signal indicating Slot 0 is valid. By instrumenting a single slot we can calculate service time for that slot. Previous machines required a separate signal indicating the slot was allocated. Because any signal can be routed to any counter in P8, we can count level in one PMC and edge detect in another PMC using the same signal",
    "PublicDescription": "0.0"
  },
  {,
    "EventCode": "0xd0a0",
    "EventName": "PM_LSU_LMQ_S0_VALID",
    "BriefDescription": "Slot 0 of LMQ valid",
    "PublicDescription": "Slot 0 of LMQ validLMQ slot 0 valid"
  },
  {,
    "EventCode": "0x3001c",
    "EventName": "PM_LSU_LMQ_SRQ_EMPTY_ALL_CYC",
    "BriefDescription": "ALL threads lsu empty (lmq and srq empty)",
    "PublicDescription": "ALL threads lsu empty (lmq and srq empty). Issue HW016541"
  },
  {,
    "EventCode": "0xd09f",
    "EventName": "PM_LSU_LRQ_S0_ALLOC",
    "BriefDescription": "Per thread - use edge detect to count allocates On a per thread basis, level signal indicating Slot 0 is valid. By instrumenting a single slot we can calculate service time for that slot. Previous machines required a separate signal indicating the slot was allocated. Because any signal can be routed to any counter in P8, we can count level in one PMC and edge detect in another PMC using the same signal",
    "PublicDescription": "0.0"
  },
  {,
    "EventCode": "0xd09e",
    "EventName": "PM_LSU_LRQ_S0_VALID",
    "BriefDescription": "Slot 0 of LRQ valid",
    "PublicDescription": "Slot 0 of LRQ validLRQ slot 0 valid"
  },
  {,
    "EventCode": "0xf091",
    "EventName": "PM_LSU_LRQ_S43_ALLOC",
    "BriefDescription": "LRQ slot 43 was released",
    "PublicDescription": "0.0"
  },
  {,
    "EventCode": "0xf090",
    "EventName": "PM_LSU_LRQ_S43_VALID",
    "BriefDescription": "LRQ slot 43 was busy",
    "PublicDescription": "LRQ slot 43 was busy42"
  },
  {,
    "EventCode": "0x30162",
    "EventName": "PM_LSU_MRK_DERAT_MISS",
    "BriefDescription": "DERAT Reloaded (Miss)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xc88c",
    "EventName": "PM_LSU_NCLD",
    "BriefDescription": "count at finish so can return only on ls0 or ls1",
    "PublicDescription": "LSU"
  },
  {,
    "EventCode": "0xc092",
    "EventName": "PM_LSU_NCST",
    "BriefDescription": "Non-cachable Stores sent to nest",
    "PublicDescription": "Non-cachable Stores sent to nest42"
  },
  {,
    "EventCode": "0x10064",
    "EventName": "PM_LSU_REJECT",
    "BriefDescription": "LSU Reject (up to 4 per cycle)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xd082",
    "EventName": "PM_LSU_SET_MPRED",
    "BriefDescription": "Line already in cache at reload time",
    "PublicDescription": "Line already in cache at reload time42"
  },
  {,
    "EventCode": "0x40008",
    "EventName": "PM_LSU_SRQ_EMPTY_CYC",
    "BriefDescription": "ALL threads srq empty",
    "PublicDescription": "All threads srq empty"
  },
  {,
    "EventCode": "0xd09d",
    "EventName": "PM_LSU_SRQ_S0_ALLOC",
    "BriefDescription": "Per thread - use edge detect to count allocates On a per thread basis, level signal indicating Slot 0 is valid. By instrumenting a single slot we can calculate service time for that slot. Previous machines required a separate signal indicating the slot was allocated. Because any signal can be routed to any counter in P8, we can count level in one PMC and edge detect in another PMC using the same signal",
    "PublicDescription": "0.0"
  },
  {,
    "EventCode": "0xd09c",
    "EventName": "PM_LSU_SRQ_S0_VALID",
    "BriefDescription": "Slot 0 of SRQ valid",
    "PublicDescription": "Slot 0 of SRQ validSRQ slot 0 valid"
  },
  {,
    "EventCode": "0xf093",
    "EventName": "PM_LSU_SRQ_S39_ALLOC",
    "BriefDescription": "SRQ slot 39 was released",
    "PublicDescription": "0.0"
  },
  {,
    "EventCode": "0xf092",
    "EventName": "PM_LSU_SRQ_S39_VALID",
    "BriefDescription": "SRQ slot 39 was busy",
    "PublicDescription": "SRQ slot 39 was busy42"
  },
  {,
    "EventCode": "0xd09b",
    "EventName": "PM_LSU_SRQ_SYNC",
    "BriefDescription": "A sync in the SRQ ended",
    "PublicDescription": "0.0"
  },
  {,
    "EventCode": "0xd09a",
    "EventName": "PM_LSU_SRQ_SYNC_CYC",
    "BriefDescription": "A sync is in the SRQ (edge detect to count)",
    "PublicDescription": "A sync is in the SRQ (edge detect to count)SRQ sync duration"
  },
  {,
    "EventCode": "0xf084",
    "EventName": "PM_LSU_STORE_REJECT",
    "BriefDescription": "Store reject on either pipe",
    "PublicDescription": "LSU"
  },
  {,
    "EventCode": "0xd0a6",
    "EventName": "PM_LSU_TWO_TABLEWALK_CYC",
    "BriefDescription": "Cycles when two tablewalks pending on this thread",
    "PublicDescription": "Cycles when two tablewalks pending on this thread42"
  },
  {,
    "EventCode": "0x5094",
    "EventName": "PM_LWSYNC",
    "BriefDescription": "threaded version, IC Misses where we got EA dir hit but no sector valids were on. ICBI took line out",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x209a",
    "EventName": "PM_LWSYNC_HELD",
    "BriefDescription": "LWSYNC held at dispatch",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3013a",
    "EventName": "PM_MRK_CRU_FIN",
    "BriefDescription": "IFU non-branch finished",
    "PublicDescription": "IFU non-branch marked instruction finished"
  },
  {,
    "EventCode": "0x4d146",
    "EventName": "PM_MRK_DATA_FROM_L21_MOD",
    "BriefDescription": "The processor's data cache was reloaded with Modified (M) data from another core's L2 on the same chip due to a marked load",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2d126",
    "EventName": "PM_MRK_DATA_FROM_L21_MOD_CYC",
    "BriefDescription": "Duration in cycles to reload with Modified (M) data from another core's L2 on the same chip due to a marked load",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3d146",
    "EventName": "PM_MRK_DATA_FROM_L21_SHR",
    "BriefDescription": "The processor's data cache was reloaded with Shared (S) data from another core's L2 on the same chip due to a marked load",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2c126",
    "EventName": "PM_MRK_DATA_FROM_L21_SHR_CYC",
    "BriefDescription": "Duration in cycles to reload with Shared (S) data from another core's L2 on the same chip due to a marked load",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4d144",
    "EventName": "PM_MRK_DATA_FROM_L31_ECO_MOD",
    "BriefDescription": "The processor's data cache was reloaded with Modified (M) data from another core's ECO L3 on the same chip due to a marked load",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2d124",
    "EventName": "PM_MRK_DATA_FROM_L31_ECO_MOD_CYC",
    "BriefDescription": "Duration in cycles to reload with Modified (M) data from another core's ECO L3 on the same chip due to a marked load",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3d144",
    "EventName": "PM_MRK_DATA_FROM_L31_ECO_SHR",
    "BriefDescription": "The processor's data cache was reloaded with Shared (S) data from another core's ECO L3 on the same chip due to a marked load",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2c124",
    "EventName": "PM_MRK_DATA_FROM_L31_ECO_SHR_CYC",
    "BriefDescription": "Duration in cycles to reload with Shared (S) data from another core's ECO L3 on the same chip due to a marked load",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2d144",
    "EventName": "PM_MRK_DATA_FROM_L31_MOD",
    "BriefDescription": "The processor's data cache was reloaded with Modified (M) data from another core's L3 on the same chip due to a marked load",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4d124",
    "EventName": "PM_MRK_DATA_FROM_L31_MOD_CYC",
    "BriefDescription": "Duration in cycles to reload with Modified (M) data from another core's L3 on the same chip due to a marked load",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x1d146",
    "EventName": "PM_MRK_DATA_FROM_L31_SHR",
    "BriefDescription": "The processor's data cache was reloaded with Shared (S) data from another core's L3 on the same chip due to a marked load",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4c126",
    "EventName": "PM_MRK_DATA_FROM_L31_SHR_CYC",
    "BriefDescription": "Duration in cycles to reload with Shared (S) data from another core's L3 on the same chip due to a marked load",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x201e0",
    "EventName": "PM_MRK_DATA_FROM_MEM",
    "BriefDescription": "The processor's data cache was reloaded from a memory location including L4 from local remote or distant due to a marked load",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4f146",
    "EventName": "PM_MRK_DPTEG_FROM_L21_MOD",
    "BriefDescription": "A Page Table Entry was loaded into the TLB with Modified (M) data from another core's L2 on the same chip due to a marked data side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3f146",
    "EventName": "PM_MRK_DPTEG_FROM_L21_SHR",
    "BriefDescription": "A Page Table Entry was loaded into the TLB with Shared (S) data from another core's L2 on the same chip due to a marked data side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3f140",
    "EventName": "PM_MRK_DPTEG_FROM_L2_DISP_CONFLICT_LDHITST",
    "BriefDescription": "A Page Table Entry was loaded into the TLB from local core's L2 with load hit store conflict due to a marked data side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4f140",
    "EventName": "PM_MRK_DPTEG_FROM_L2_DISP_CONFLICT_OTHER",
    "BriefDescription": "A Page Table Entry was loaded into the TLB from local core's L2 with dispatch conflict due to a marked data side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4f144",
    "EventName": "PM_MRK_DPTEG_FROM_L31_ECO_MOD",
    "BriefDescription": "A Page Table Entry was loaded into the TLB with Modified (M) data from another core's ECO L3 on the same chip due to a marked data side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3f144",
    "EventName": "PM_MRK_DPTEG_FROM_L31_ECO_SHR",
    "BriefDescription": "A Page Table Entry was loaded into the TLB with Shared (S) data from another core's ECO L3 on the same chip due to a marked data side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2f144",
    "EventName": "PM_MRK_DPTEG_FROM_L31_MOD",
    "BriefDescription": "A Page Table Entry was loaded into the TLB with Modified (M) data from another core's L3 on the same chip due to a marked data side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x1f146",
    "EventName": "PM_MRK_DPTEG_FROM_L31_SHR",
    "BriefDescription": "A Page Table Entry was loaded into the TLB with Shared (S) data from another core's L3 on the same chip due to a marked data side request",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x30156",
    "EventName": "PM_MRK_FAB_RSP_MATCH",
    "BriefDescription": "ttype and cresp matched as specified in MMCR1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4f152",
    "EventName": "PM_MRK_FAB_RSP_MATCH_CYC",
    "BriefDescription": "cresp/ttype match cycles",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2013c",
    "EventName": "PM_MRK_FILT_MATCH",
    "BriefDescription": "Marked filter Match",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x1013c",
    "EventName": "PM_MRK_FIN_STALL_CYC",
    "BriefDescription": "Marked instruction Finish Stall cycles (marked finish after NTC) (use edge detect to count )",
    "PublicDescription": "Marked instruction Finish Stall cycles (marked finish after NTC) (use edge detect to count #)"
  },
  {,
    "EventCode": "0x40130",
    "EventName": "PM_MRK_GRP_CMPL",
    "BriefDescription": "marked instruction finished (completed)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4013a",
    "EventName": "PM_MRK_GRP_IC_MISS",
    "BriefDescription": "Marked Group experienced I cache miss",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3013c",
    "EventName": "PM_MRK_GRP_NTC",
    "BriefDescription": "Marked group ntc cycles",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x1013f",
    "EventName": "PM_MRK_LD_MISS_EXPOSED",
    "BriefDescription": "Marked Load exposed Miss (exposed period ended)",
    "PublicDescription": "Marked Load exposed Miss (use edge detect to count #)"
  },
  {,
    "EventCode": "0xd180",
    "EventName": "PM_MRK_LSU_FLUSH",
    "BriefDescription": "Flush: (marked) : All Cases",
    "PublicDescription": "Flush: (marked) : All Cases42"
  },
  {,
    "EventCode": "0xd188",
    "EventName": "PM_MRK_LSU_FLUSH_LRQ",
    "BriefDescription": "Flush: (marked) LRQ",
    "PublicDescription": "Flush: (marked) LRQMarked LRQ flushes"
  },
  {,
    "EventCode": "0xd18a",
    "EventName": "PM_MRK_LSU_FLUSH_SRQ",
    "BriefDescription": "Flush: (marked) SRQ",
    "PublicDescription": "Flush: (marked) SRQMarked SRQ lhs flushes"
  },
  {,
    "EventCode": "0xd184",
    "EventName": "PM_MRK_LSU_FLUSH_ULD",
    "BriefDescription": "Flush: (marked) Unaligned Load",
    "PublicDescription": "Flush: (marked) Unaligned LoadMarked unaligned load flushes"
  },
  {,
    "EventCode": "0xd186",
    "EventName": "PM_MRK_LSU_FLUSH_UST",
    "BriefDescription": "Flush: (marked) Unaligned Store",
    "PublicDescription": "Flush: (marked) Unaligned StoreMarked unaligned store flushes"
  },
  {,
    "EventCode": "0x40164",
    "EventName": "PM_MRK_LSU_REJECT",
    "BriefDescription": "LSU marked reject (up to 2 per cycle)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x30164",
    "EventName": "PM_MRK_LSU_REJECT_ERAT_MISS",
    "BriefDescription": "LSU marked reject due to ERAT (up to 2 per cycle)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x1d15a",
    "EventName": "PM_MRK_SRC_PREF_TRACK_EFF",
    "BriefDescription": "Marked src pref track was effective",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3d15a",
    "EventName": "PM_MRK_SRC_PREF_TRACK_INEFF",
    "BriefDescription": "Prefetch tracked was ineffective for marked src",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4d15c",
    "EventName": "PM_MRK_SRC_PREF_TRACK_MOD",
    "BriefDescription": "Prefetch tracked was moderate for marked src",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x1d15c",
    "EventName": "PM_MRK_SRC_PREF_TRACK_MOD_L2",
    "BriefDescription": "Marked src Prefetch Tracked was moderate (source L2)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3d15c",
    "EventName": "PM_MRK_SRC_PREF_TRACK_MOD_L3",
    "BriefDescription": "Prefetch tracked was moderate (L3 hit) for marked src",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x1c15a",
    "EventName": "PM_MRK_TGT_PREF_TRACK_EFF",
    "BriefDescription": "Marked target pref track was effective",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3c15a",
    "EventName": "PM_MRK_TGT_PREF_TRACK_INEFF",
    "BriefDescription": "Prefetch tracked was ineffective for marked target",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4c15c",
    "EventName": "PM_MRK_TGT_PREF_TRACK_MOD",
    "BriefDescription": "Prefetch tracked was moderate for marked target",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x1c15c",
    "EventName": "PM_MRK_TGT_PREF_TRACK_MOD_L2",
    "BriefDescription": "Marked target Prefetch Tracked was moderate (source L2)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3c15c",
    "EventName": "PM_MRK_TGT_PREF_TRACK_MOD_L3",
    "BriefDescription": "Prefetch tracked was moderate (L3 hit) for marked target",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x20b0",
    "EventName": "PM_NESTED_TEND",
    "BriefDescription": "Completion time nested tend",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x20b6",
    "EventName": "PM_NON_FAV_TBEGIN",
    "BriefDescription": "Dispatch time non favored tbegin",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x328084",
    "EventName": "PM_NON_TM_RST_SC",
    "BriefDescription": "non tm snp rst tm sc",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2001a",
    "EventName": "PM_NTCG_ALL_FIN",
    "BriefDescription": "Cycles after all instructions have finished to group completed",
    "PublicDescription": "Ccycles after all instructions have finished to group completed"
  },
  {,
    "EventCode": "0x20ac",
    "EventName": "PM_OUTER_TBEGIN",
    "BriefDescription": "Completion time outer tbegin",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x20ae",
    "EventName": "PM_OUTER_TEND",
    "BriefDescription": "Completion time outer tend",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2005a",
    "EventName": "PM_PREF_TRACKED",
    "BriefDescription": "Total number of Prefetch Operations that were tracked",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x1005a",
    "EventName": "PM_PREF_TRACK_EFF",
    "BriefDescription": "Prefetch Tracked was effective",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3005a",
    "EventName": "PM_PREF_TRACK_INEFF",
    "BriefDescription": "Prefetch tracked was ineffective",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4005a",
    "EventName": "PM_PREF_TRACK_MOD",
    "BriefDescription": "Prefetch tracked was moderate",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x1005c",
    "EventName": "PM_PREF_TRACK_MOD_L2",
    "BriefDescription": "Prefetch Tracked was moderate (source L2)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3005c",
    "EventName": "PM_PREF_TRACK_MOD_L3",
    "BriefDescription": "Prefetch tracked was moderate (L3)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xe084",
    "EventName": "PM_PTE_PREFETCH",
    "BriefDescription": "PTE prefetches",
    "PublicDescription": "PTE prefetches42"
  },
  {,
    "EventCode": "0x16081",
    "EventName": "PM_RC0_ALLOC",
    "BriefDescription": "RC mach 0 Busy. Used by PMU to sample ave RC livetime(mach0 used as sample point)",
    "PublicDescription": "0.0"
  },
  {,
    "EventCode": "0x16080",
    "EventName": "PM_RC0_BUSY",
    "BriefDescription": "RC mach 0 Busy. Used by PMU to sample ave RC livetime(mach0 used as sample point)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x200301ea",
    "EventName": "PM_RC_LIFETIME_EXC_1024",
    "BriefDescription": "Number of times the RC machine for a sampled instruction was active for more than 1024 cycles",
    "PublicDescription": "Reload latency exceeded 1024 cyc"
  },
  {,
    "EventCode": "0x200401ec",
    "EventName": "PM_RC_LIFETIME_EXC_2048",
    "BriefDescription": "Number of times the RC machine for a sampled instruction was active for more than 2048 cycles",
    "PublicDescription": "Threshold counter exceeded a value of 2048"
  },
  {,
    "EventCode": "0x200101e8",
    "EventName": "PM_RC_LIFETIME_EXC_256",
    "BriefDescription": "Number of times the RC machine for a sampled instruction was active for more than 256 cycles",
    "PublicDescription": "Threshold counter exceed a count of 256"
  },
  {,
    "EventCode": "0x200201e6",
    "EventName": "PM_RC_LIFETIME_EXC_32",
    "BriefDescription": "Number of times the RC machine for a sampled instruction was active for more than 32 cycles",
    "PublicDescription": "Reload latency exceeded 32 cyc"
  },
  {,
    "EventCode": "0x36088",
    "EventName": "PM_RC_USAGE",
    "BriefDescription": "Continuous 16 cycle(2to1) window where this signals rotates thru sampling each L2 RC machine busy. PMU uses this wave to then do 16 cyc count to sample total number of machs running",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x34808e",
    "EventName": "PM_RD_CLEARING_SC",
    "BriefDescription": "rd clearing sc",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x34808c",
    "EventName": "PM_RD_FORMING_SC",
    "BriefDescription": "rd forming sc",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x428086",
    "EventName": "PM_RD_HIT_PF",
    "BriefDescription": "rd machine hit l3 pf machine",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x20004",
    "EventName": "PM_REAL_SRQ_FULL",
    "BriefDescription": "Out of real srq entries",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x2006a",
    "EventName": "PM_RUN_CYC_SMT2_SHRD_MODE",
    "BriefDescription": "cycles this threads run latch is set and the core is in SMT2 shared mode",
    "PublicDescription": "Cycles run latch is set and core is in SMT2-shared mode"
  },
  {,
    "EventCode": "0x1006a",
    "EventName": "PM_RUN_CYC_SMT2_SPLIT_MODE",
    "BriefDescription": "Cycles run latch is set and core is in SMT2-split mode",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4006c",
    "EventName": "PM_RUN_CYC_SMT8_MODE",
    "BriefDescription": "Cycles run latch is set and core is in SMT8 mode",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xf082",
    "EventName": "PM_SEC_ERAT_HIT",
    "BriefDescription": "secondary ERAT Hit",
    "PublicDescription": "secondary ERAT Hit42"
  },
  {,
    "EventCode": "0x508c",
    "EventName": "PM_SHL_CREATED",
    "BriefDescription": "Store-Hit-Load Table Entry Created",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x508e",
    "EventName": "PM_SHL_ST_CONVERT",
    "BriefDescription": "Store-Hit-Load Table Read Hit with entry Enabled",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x5090",
    "EventName": "PM_SHL_ST_DISABLE",
    "BriefDescription": "Store-Hit-Load Table Read Hit with entry Disabled (entry was disabled due to the entry shown to not prevent the flush)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x26085",
    "EventName": "PM_SN0_ALLOC",
    "BriefDescription": "SN mach 0 Busy. Used by PMU to sample ave RC livetime(mach0 used as sample point)",
    "PublicDescription": "0.0"
  },
  {,
    "EventCode": "0x26084",
    "EventName": "PM_SN0_BUSY",
    "BriefDescription": "SN mach 0 Busy. Used by PMU to sample ave RC livetime(mach0 used as sample point)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xd0b2",
    "EventName": "PM_SNOOP_TLBIE",
    "BriefDescription": "TLBIE snoop",
    "PublicDescription": "TLBIE snoopSnoop TLBIE"
  },
  {,
    "EventCode": "0x338088",
    "EventName": "PM_SNP_TM_HIT_M",
    "BriefDescription": "snp tm st hit m mu",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x33808a",
    "EventName": "PM_SNP_TM_HIT_T",
    "BriefDescription": "snp tm_st_hit t tn te",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x4608c",
    "EventName": "PM_SN_USAGE",
    "BriefDescription": "Continuous 16 cycle(2to1) window where this signals rotates thru sampling each L2 SN machine busy. PMU uses this wave to then do 16 cyc count to sample total number of machs running",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x10028",
    "EventName": "PM_STALL_END_GCT_EMPTY",
    "BriefDescription": "Count ended because GCT went empty",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xc090",
    "EventName": "PM_STCX_LSU",
    "BriefDescription": "STCX executed reported at sent to nest",
    "PublicDescription": "STCX executed reported at sent to nest42"
  },
  {,
    "EventCode": "0x717080",
    "EventName": "PM_ST_CAUSED_FAIL",
    "BriefDescription": "Non TM St caused any thread to fail",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3090",
    "EventName": "PM_SWAP_CANCEL",
    "BriefDescription": "SWAP cancel , rtag not available",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3092",
    "EventName": "PM_SWAP_CANCEL_GPR",
    "BriefDescription": "SWAP cancel , rtag not available for gpr",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x308c",
    "EventName": "PM_SWAP_COMPLETE",
    "BriefDescription": "swap cast in completed",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x308e",
    "EventName": "PM_SWAP_COMPLETE_GPR",
    "BriefDescription": "swap cast in completed fpr gpr",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xe086",
    "EventName": "PM_TABLEWALK_CYC_PREF",
    "BriefDescription": "tablewalk qualified for pte prefetches",
    "PublicDescription": "tablewalk qualified for pte prefetches42"
  },
  {,
    "EventCode": "0x20b2",
    "EventName": "PM_TABORT_TRECLAIM",
    "BriefDescription": "Completion time tabortnoncd, tabortcd, treclaim",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xe0ba",
    "EventName": "PM_TEND_PEND_CYC",
    "BriefDescription": "TEND latency per thread",
    "PublicDescription": "TEND latency per thread42"
  },
  {,
    "EventCode": "0x10012",
    "EventName": "PM_THRD_GRP_CMPL_BOTH_CYC",
    "BriefDescription": "Cycles group completed on both completion slots by any thread",
    "PublicDescription": "Two threads finished same cycle (gated by run latch)"
  },
  {,
    "EventCode": "0x40bc",
    "EventName": "PM_THRD_PRIO_0_1_CYC",
    "BriefDescription": "Cycles thread running at priority level 0 or 1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x40be",
    "EventName": "PM_THRD_PRIO_2_3_CYC",
    "BriefDescription": "Cycles thread running at priority level 2 or 3",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x5080",
    "EventName": "PM_THRD_PRIO_4_5_CYC",
    "BriefDescription": "Cycles thread running at priority level 4 or 5",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x5082",
    "EventName": "PM_THRD_PRIO_6_7_CYC",
    "BriefDescription": "Cycles thread running at priority level 6 or 7",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3098",
    "EventName": "PM_THRD_REBAL_CYC",
    "BriefDescription": "cycles rebalance was active",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x20b8",
    "EventName": "PM_TM_BEGIN_ALL",
    "BriefDescription": "Tm any tbegin",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x318082",
    "EventName": "PM_TM_CAM_OVERFLOW",
    "BriefDescription": "l3 tm cam overflow during L2 co of SC",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x74708c",
    "EventName": "PM_TM_CAP_OVERFLOW",
    "BriefDescription": "TM Footprint Capactiy Overflow",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x20ba",
    "EventName": "PM_TM_END_ALL",
    "BriefDescription": "Tm any tend",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3086",
    "EventName": "PM_TM_FAIL_CONF_NON_TM",
    "BriefDescription": "TEXAS fail reason @ completion",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3088",
    "EventName": "PM_TM_FAIL_CON_TM",
    "BriefDescription": "TEXAS fail reason @ completion",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xe0b2",
    "EventName": "PM_TM_FAIL_DISALLOW",
    "BriefDescription": "TM fail disallow",
    "PublicDescription": "TM fail disallow42"
  },
  {,
    "EventCode": "0x3084",
    "EventName": "PM_TM_FAIL_FOOTPRINT_OVERFLOW",
    "BriefDescription": "TEXAS fail reason @ completion",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xe0b8",
    "EventName": "PM_TM_FAIL_NON_TX_CONFLICT",
    "BriefDescription": "Non transactional conflict from LSU whtver gets repoted to texas",
    "PublicDescription": "Non transactional conflict from LSU whtver gets repoted to texas42"
  },
  {,
    "EventCode": "0x308a",
    "EventName": "PM_TM_FAIL_SELF",
    "BriefDescription": "TEXAS fail reason @ completion",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xe0b4",
    "EventName": "PM_TM_FAIL_TLBIE",
    "BriefDescription": "TLBIE hit bloom filter",
    "PublicDescription": "TLBIE hit bloom filter42"
  },
  {,
    "EventCode": "0xe0b6",
    "EventName": "PM_TM_FAIL_TX_CONFLICT",
    "BriefDescription": "Transactional conflict from LSU, whatever gets reported to texas",
    "PublicDescription": "Transactional conflict from LSU, whatever gets reported to texas 42"
  },
  {,
    "EventCode": "0x727086",
    "EventName": "PM_TM_FAV_CAUSED_FAIL",
    "BriefDescription": "TM Load (fav) caused another thread to fail",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x717082",
    "EventName": "PM_TM_LD_CAUSED_FAIL",
    "BriefDescription": "Non TM Ld caused any thread to fail",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x727084",
    "EventName": "PM_TM_LD_CONF",
    "BriefDescription": "TM Load (fav or non-fav) ran into conflict (failed)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x328086",
    "EventName": "PM_TM_RST_SC",
    "BriefDescription": "tm snp rst tm sc",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x318080",
    "EventName": "PM_TM_SC_CO",
    "BriefDescription": "l3 castout tm Sc line",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x73708a",
    "EventName": "PM_TM_ST_CAUSED_FAIL",
    "BriefDescription": "TM Store (fav or non-fav) caused another thread to fail",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x737088",
    "EventName": "PM_TM_ST_CONF",
    "BriefDescription": "TM Store (fav or non-fav) ran into conflict (failed)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x20bc",
    "EventName": "PM_TM_TBEGIN",
    "BriefDescription": "Tm nested tbegin",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x3080",
    "EventName": "PM_TM_TRESUME",
    "BriefDescription": "Tm resume",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0x20be",
    "EventName": "PM_TM_TSUSPEND",
    "BriefDescription": "Tm suspend",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xe08c",
    "EventName": "PM_UP_PREF_L3",
    "BriefDescription": "Micropartition prefetch",
    "PublicDescription": "Micropartition prefetch42"
  },
  {,
    "EventCode": "0xe08e",
    "EventName": "PM_UP_PREF_POINTER",
    "BriefDescription": "Micrpartition pointer prefetches",
    "PublicDescription": "Micrpartition pointer prefetches42"
  },
  {,
    "EventCode": "0xa0a4",
    "EventName": "PM_VSU0_16FLOP",
    "BriefDescription": "Sixteen flops operation (SP vector versions of fdiv,fsqrt)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa080",
    "EventName": "PM_VSU0_1FLOP",
    "BriefDescription": "one flop (fadd, fmul, fsub, fcmp, fsel, fabs, fnabs, fres, fsqrte, fneg) operation finished",
    "PublicDescription": "one flop (fadd, fmul, fsub, fcmp, fsel, fabs, fnabs, fres, fsqrte, fneg) operation finishedDecode into 1,2,4 FLOP according to instr IOP, multiplied by #vector elements according to route( eg x1, x2, x4) Only if instr sends finish to ISU"
  },
  {,
    "EventCode": "0xa098",
    "EventName": "PM_VSU0_2FLOP",
    "BriefDescription": "two flops operation (scalar fmadd, fnmadd, fmsub, fnmsub and DP vector versions of single flop instructions)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa09c",
    "EventName": "PM_VSU0_4FLOP",
    "BriefDescription": "four flops operation (scalar fdiv, fsqrt, DP vector version of fmadd, fnmadd, fmsub, fnmsub, SP vector versions of single flop instructions)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa0a0",
    "EventName": "PM_VSU0_8FLOP",
    "BriefDescription": "eight flops operation (DP vector versions of fdiv,fsqrt and SP vector versions of fmadd,fnmadd,fmsub,fnmsub)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb0a4",
    "EventName": "PM_VSU0_COMPLEX_ISSUED",
    "BriefDescription": "Complex VMX instruction issued",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb0b4",
    "EventName": "PM_VSU0_CY_ISSUED",
    "BriefDescription": "Cryptographic instruction RFC02196 Issued",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb0a8",
    "EventName": "PM_VSU0_DD_ISSUED",
    "BriefDescription": "64BIT Decimal Issued",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa08c",
    "EventName": "PM_VSU0_DP_2FLOP",
    "BriefDescription": "DP vector version of fmul, fsub, fcmp, fsel, fabs, fnabs, fres ,fsqrte, fneg",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa090",
    "EventName": "PM_VSU0_DP_FMA",
    "BriefDescription": "DP vector version of fmadd,fnmadd,fmsub,fnmsub",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa094",
    "EventName": "PM_VSU0_DP_FSQRT_FDIV",
    "BriefDescription": "DP vector versions of fdiv,fsqrt",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb0ac",
    "EventName": "PM_VSU0_DQ_ISSUED",
    "BriefDescription": "128BIT Decimal Issued",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb0b0",
    "EventName": "PM_VSU0_EX_ISSUED",
    "BriefDescription": "Direct move 32/64b VRFtoGPR RFC02206 Issued",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa0bc",
    "EventName": "PM_VSU0_FIN",
    "BriefDescription": "VSU0 Finished an instruction",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa084",
    "EventName": "PM_VSU0_FMA",
    "BriefDescription": "two flops operation (fmadd, fnmadd, fmsub, fnmsub) Scalar instructions only!",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb098",
    "EventName": "PM_VSU0_FPSCR",
    "BriefDescription": "Move to/from FPSCR type instruction issued on Pipe 0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa088",
    "EventName": "PM_VSU0_FSQRT_FDIV",
    "BriefDescription": "four flops operation (fdiv,fsqrt) Scalar Instructions only!",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb090",
    "EventName": "PM_VSU0_PERMUTE_ISSUED",
    "BriefDescription": "Permute VMX Instruction Issued",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb088",
    "EventName": "PM_VSU0_SCALAR_DP_ISSUED",
    "BriefDescription": "Double Precision scalar instruction issued on Pipe0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb094",
    "EventName": "PM_VSU0_SIMPLE_ISSUED",
    "BriefDescription": "Simple VMX instruction issued",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa0a8",
    "EventName": "PM_VSU0_SINGLE",
    "BriefDescription": "FPU single precision",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb09c",
    "EventName": "PM_VSU0_SQ",
    "BriefDescription": "Store Vector Issued",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb08c",
    "EventName": "PM_VSU0_STF",
    "BriefDescription": "FPU store (SP or DP) issued on Pipe0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb080",
    "EventName": "PM_VSU0_VECTOR_DP_ISSUED",
    "BriefDescription": "Double Precision vector instruction issued on Pipe0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb084",
    "EventName": "PM_VSU0_VECTOR_SP_ISSUED",
    "BriefDescription": "Single Precision vector instruction issued (executed)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa0a6",
    "EventName": "PM_VSU1_16FLOP",
    "BriefDescription": "Sixteen flops operation (SP vector versions of fdiv,fsqrt)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa082",
    "EventName": "PM_VSU1_1FLOP",
    "BriefDescription": "one flop (fadd, fmul, fsub, fcmp, fsel, fabs, fnabs, fres, fsqrte, fneg) operation finished",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa09a",
    "EventName": "PM_VSU1_2FLOP",
    "BriefDescription": "two flops operation (scalar fmadd, fnmadd, fmsub, fnmsub and DP vector versions of single flop instructions)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa09e",
    "EventName": "PM_VSU1_4FLOP",
    "BriefDescription": "four flops operation (scalar fdiv, fsqrt, DP vector version of fmadd, fnmadd, fmsub, fnmsub, SP vector versions of single flop instructions)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa0a2",
    "EventName": "PM_VSU1_8FLOP",
    "BriefDescription": "eight flops operation (DP vector versions of fdiv,fsqrt and SP vector versions of fmadd,fnmadd,fmsub,fnmsub)",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb0a6",
    "EventName": "PM_VSU1_COMPLEX_ISSUED",
    "BriefDescription": "Complex VMX instruction issued",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb0b6",
    "EventName": "PM_VSU1_CY_ISSUED",
    "BriefDescription": "Cryptographic instruction RFC02196 Issued",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb0aa",
    "EventName": "PM_VSU1_DD_ISSUED",
    "BriefDescription": "64BIT Decimal Issued",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa08e",
    "EventName": "PM_VSU1_DP_2FLOP",
    "BriefDescription": "DP vector version of fmul, fsub, fcmp, fsel, fabs, fnabs, fres ,fsqrte, fneg",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa092",
    "EventName": "PM_VSU1_DP_FMA",
    "BriefDescription": "DP vector version of fmadd,fnmadd,fmsub,fnmsub",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa096",
    "EventName": "PM_VSU1_DP_FSQRT_FDIV",
    "BriefDescription": "DP vector versions of fdiv,fsqrt",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb0ae",
    "EventName": "PM_VSU1_DQ_ISSUED",
    "BriefDescription": "128BIT Decimal Issued",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb0b2",
    "EventName": "PM_VSU1_EX_ISSUED",
    "BriefDescription": "Direct move 32/64b VRFtoGPR RFC02206 Issued",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa0be",
    "EventName": "PM_VSU1_FIN",
    "BriefDescription": "VSU1 Finished an instruction",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa086",
    "EventName": "PM_VSU1_FMA",
    "BriefDescription": "two flops operation (fmadd, fnmadd, fmsub, fnmsub) Scalar instructions only!",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb09a",
    "EventName": "PM_VSU1_FPSCR",
    "BriefDescription": "Move to/from FPSCR type instruction issued on Pipe 0",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa08a",
    "EventName": "PM_VSU1_FSQRT_FDIV",
    "BriefDescription": "four flops operation (fdiv,fsqrt) Scalar Instructions only!",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb092",
    "EventName": "PM_VSU1_PERMUTE_ISSUED",
    "BriefDescription": "Permute VMX Instruction Issued",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb08a",
    "EventName": "PM_VSU1_SCALAR_DP_ISSUED",
    "BriefDescription": "Double Precision scalar instruction issued on Pipe1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb096",
    "EventName": "PM_VSU1_SIMPLE_ISSUED",
    "BriefDescription": "Simple VMX instruction issued",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xa0aa",
    "EventName": "PM_VSU1_SINGLE",
    "BriefDescription": "FPU single precision",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb09e",
    "EventName": "PM_VSU1_SQ",
    "BriefDescription": "Store Vector Issued",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb08e",
    "EventName": "PM_VSU1_STF",
    "BriefDescription": "FPU store (SP or DP) issued on Pipe1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb082",
    "EventName": "PM_VSU1_VECTOR_DP_ISSUED",
    "BriefDescription": "Double Precision vector instruction issued on Pipe1",
    "PublicDescription": ""
  },
  {,
    "EventCode": "0xb086",
    "EventName": "PM_VSU1_VECTOR_SP_ISSUED",
    "BriefDescription": "Single Precision vector instruction issued (executed)",
    "PublicDescription": ""
  },
]