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
|
/*
* Copyright (c) 2011 Google, Inc
* Contributed by Stephane Eranian <eranian@gmail.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
* OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* This file is part of libpfm, a performance monitoring support library for
* applications on Linux.
*
* This file has been automatically generated.
*
* PMU: snb (Intel Sandy Bridge)
*/
static const intel_x86_umask_t snb_agu_bypass_cancel[]={
{ .uname = "COUNT",
.udesc = "This event counts executed load operations",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
};
static const intel_x86_umask_t snb_arith[]={
{ .uname = "FPU_DIV_ACTIVE",
.udesc = "Cycles that the divider is active, includes integer and floating point",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "FPU_DIV",
.udesc = "Number of cycles the divider is activated, includes integer and floating point",
.uequiv = "FPU_DIV_ACTIVE:c=1:e=1",
.ucode = 0x100 | INTEL_X86_MOD_EDGE | (0x1 << INTEL_X86_CMASK_BIT),
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_br_inst_exec[]={
{ .uname = "NONTAKEN_COND",
.udesc = "All macro conditional non-taken branch instructions",
.ucode = 0x4100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "TAKEN_COND",
.udesc = "All macro conditional taken branch instructions",
.ucode = 0x8100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "TAKEN_DIRECT_JUMP",
.udesc = "All macro unconditional taken branch instructions, excluding calls and indirects",
.ucode = 0x8200,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "TAKEN_INDIRECT_JUMP_NON_CALL_RET",
.udesc = "All taken indirect branches that are not calls nor returns",
.ucode = 0x8400,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "TAKEN_RETURN_NEAR",
.udesc = "All taken indirect branches that have a return mnemonic",
.ucode = 0x8800,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "TAKEN_DIRECT_NEAR_CALL",
.udesc = "All taken non-indirect calls",
.ucode = 0x9000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "TAKEN_INDIRECT_NEAR_CALL",
.udesc = "All taken indirect calls, including both register and memory indirect",
.ucode = 0xa000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ALL_BRANCHES",
.udesc = "All near executed branches instructions (not necessarily retired)",
.ucode = 0xff00,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
{ .uname = "ALL_CONDITIONAL",
.udesc = "All macro conditional branch instructions",
.ucode = 0xc100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ANY_COND",
.udesc = "All macro conditional branch instructions",
.ucode = 0xc100,
.uequiv = "ALL_CONDITIONAL",
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ANY_INDIRECT_JUMP_NON_CALL_RET",
.udesc = "All indirect branches that are not calls nor returns",
.ucode = 0xc400,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ANY_DIRECT_NEAR_CALL",
.udesc = "All non-indirect calls",
.ucode = 0xd000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ALL_DIRECT_JMP",
.udesc = "Speculative and retired macro-unconditional branches excluding calls and indirects",
.ucode = 0xc200,
.uflags = INTEL_X86_NCOMBO,
},
{ .uname = "ALL_INDIRECT_NEAR_RETURN",
.udesc = "Speculative and retired indirect return branches",
.ucode = 0xc800,
.uflags = INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_br_inst_retired[]={
{ .uname = "ALL_BRANCHES",
.udesc = "All taken and not taken macro branches including far branches (Precise Event)",
.ucode = 0x400,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS | INTEL_X86_DFL,
},
{ .uname = "CONDITIONAL",
.udesc = "All taken and not taken macro conditional branch instructions (Precise Event)",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "FAR_BRANCH",
.udesc = "Number of far branch instructions retired (Precise Event)",
.ucode = 0x4000,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "NEAR_CALL",
.udesc = "All macro direct and indirect near calls, does not count far calls (Precise Event)",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "NEAR_RETURN",
.udesc = "Number of near ret instructions retired (Precise Event)",
.ucode = 0x800,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "NEAR_TAKEN",
.udesc = "Number of near branch taken instructions retired (Precise Event)",
.ucode = 0x2000,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "NOT_TAKEN",
.udesc = "All not taken macro branch instructions retired (Precise Event)",
.ucode = 0x1000,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
};
static const intel_x86_umask_t snb_br_misp_exec[]={
{ .uname = "NONTAKEN_COND",
.udesc = "All non-taken mispredicted macro conditional branch instructions",
.ucode = 0x4100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "TAKEN_COND",
.udesc = "All taken mispredicted macro conditional branch instructions",
.ucode = 0x8100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "TAKEN_INDIRECT_JUMP_NON_CALL_RET",
.udesc = "All taken mispredicted indirect branches that are not calls nor returns",
.ucode = 0x8400,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "TAKEN_RETURN_NEAR",
.udesc = "All taken mispredicted indirect branches that have a return mnemonic",
.ucode = 0x8800,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "TAKEN_DIRECT_NEAR_CALL",
.udesc = "All taken mispredicted non-indirect calls",
.ucode = 0x9000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "TAKEN_INDIRECT_NEAR_CALL",
.udesc = "All taken mispredicted indirect calls, including both register and memory indirect",
.ucode = 0xa000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ANY_COND",
.udesc = "All mispredicted macro conditional branch instructions",
.ucode = 0xc100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ANY_DIRECT_NEAR_CALL",
.udesc = "All mispredicted non-indirect calls",
.ucode = 0xd000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ANY_INDIRECT_JUMP_NON_CALL_RET",
.udesc = "All mispredicted indirect branches that are not calls nor returns",
.ucode = 0xc400,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ALL_BRANCHES",
.udesc = "All mispredicted branch instructions",
.ucode = 0xff00,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
};
static const intel_x86_umask_t snb_br_misp_retired[]={
{ .uname = "ALL_BRANCHES",
.udesc = "All mispredicted macro branches (Precise Event)",
.ucode = 0x400,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS | INTEL_X86_DFL,
},
{ .uname = "CONDITIONAL",
.udesc = "All mispredicted macro conditional branch instructions (Precise Event)",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "NEAR_CALL",
.udesc = "All macro direct and indirect near calls (Precise Event)",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "NOT_TAKEN",
.udesc = "Number of branch instructions retired that were mispredicted and not-taken (Precise Event)",
.ucode = 0x1000,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "TAKEN",
.udesc = "Number of branch instructions retired that were mispredicted and taken (Precise Event)",
.ucode = 0x2000,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
};
static const intel_x86_umask_t snb_lock_cycles[]={
{ .uname = "SPLIT_LOCK_UC_LOCK_DURATION",
.udesc = "Cycles in which the L1D and L2 are locked, due to a UC lock or split lock",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "CACHE_LOCK_DURATION",
.udesc = "Cycles in which the L1D is locked",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_cpl_cycles[]={
{ .uname = "RING0",
.udesc = "Unhalted core cycles the thread was in ring 0",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "RING0_TRANS",
.udesc = "Transitions from rings 1, 2, or 3 to ring 0",
.uequiv = "RING0:c=1:e=1",
.ucode = 0x100 | INTEL_X86_MOD_EDGE | (0x1 << INTEL_X86_CMASK_BIT),
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "RING123",
.udesc = "Unhalted core cycles the thread was in rings 1, 2, or 3",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_cpu_clk_unhalted[]={
{ .uname = "REF_P",
.udesc = "Cycles when the core is unhalted (count at 100 Mhz)",
.ucode = 0x100,
.uequiv = "REF_XCLK",
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "REF_XCLK",
.udesc = "Count Xclk pulses (100Mhz) when the core is unhalted",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "REF_XCLK_ANY",
.udesc = "Count Xclk pulses (100Mhz) when the at least one thread on the physical core is unhalted",
.ucode = 0x100 | INTEL_X86_MOD_ANY, /* any=1 */
.uequiv = "REF_XCLK:t",
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_T,
},
{ .uname = "THREAD_P",
.udesc = "Cycles when thread is not halted",
.ucode = 0x0,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
{ .uname = "ONE_THREAD_ACTIVE",
.udesc = "Counts Xclk (100Mhz) pulses when this thread is unhalted and the other thread is halted",
.ucode = 0x200,
.uflags = INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_dsb2mite_switches[]={
{ .uname = "COUNT",
.udesc = "Number of DSB to MITE switches",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
{ .uname = "PENALTY_CYCLES",
.udesc = "Cycles SB to MITE switches caused delay",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_dsb_fill[]={
{ .uname = "ALL_CANCEL",
.udesc = "Number of times a valid DSB fill has been cancelled for any reason",
.ucode = 0xa00,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "EXCEED_DSB_LINES",
.udesc = "DSB Fill encountered > 3 DSB lines",
.ucode = 0x800,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "OTHER_CANCEL",
.udesc = "Number of times a valid DSB fill has been cancelled not because of exceeding way limit",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_dtlb_load_misses[]={
{ .uname = "MISS_CAUSES_A_WALK",
.udesc = "Demand load miss in all TLB levels which causes an page walk of any page size",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "CAUSES_A_WALK",
.udesc = "Demand load miss in all TLB levels which causes an page walk of any page size",
.ucode = 0x100,
.uequiv = "MISS_CAUSES_A_WALK",
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "STLB_HIT",
.udesc = "Number of DTLB lookups for loads which missed first level DTLB but hit second level DTLB (STLB); No page walk.",
.ucode = 0x1000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "WALK_COMPLETED",
.udesc = "Demand load miss in all TLB levels which causes a page walk that completes for any page size",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "WALK_DURATION",
.udesc = "Cycles PMH is busy with a walk",
.ucode = 0x400,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_dtlb_store_misses[]={
{ .uname = "MISS_CAUSES_A_WALK",
.udesc = "Miss in all TLB levels that causes a page walk of any page size (4K/2M/4M/1G)",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "CAUSES_A_WALK",
.udesc = "Miss in all TLB levels that causes a page walk of any page size (4K/2M/4M/1G)",
.ucode = 0x100,
.uequiv = "MISS_CAUSES_A_WALK",
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "STLB_HIT",
.udesc = "First level miss but second level hit; no page walk. Only relevant if multiple levels",
.ucode = 0x1000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "WALK_COMPLETED",
.udesc = "Miss in all TLB levels that causes a page walk that completes of any page size (4K/2M/4M/1G)",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "WALK_DURATION",
.udesc = "Cycles PMH is busy with this walk",
.ucode = 0x400,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_fp_assist[]={
{ .uname = "ANY",
.udesc = "Cycles with any input/output SSE or FP assists",
.ucode = 0x1e00 | (1 << INTEL_X86_CMASK_BIT), /* cnt=1 */
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
.modhw = _INTEL_X86_ATTR_C,
},
{ .uname = "SIMD_INPUT",
.udesc = "Number of SIMD FP assists due to input values",
.ucode = 0x1000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "SIMD_OUTPUT",
.udesc = "Number of SIMD FP assists due to output values",
.ucode = 0x800,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "X87_INPUT",
.udesc = "Number of X87 assists due to input value",
.ucode = 0x400,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "X87_OUTPUT",
.udesc = "Number of X87 assists due to output value",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ALL",
.udesc = "Cycles with any input and output SSE or FP assist",
.ucode = 0x1e00 | (1 << INTEL_X86_CMASK_BIT), /* cnt=1 */
.uequiv = "ANY",
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
},
};
static const intel_x86_umask_t snb_fp_comp_ops_exe[]={
{ .uname = "X87",
.udesc = "Number of X87 uops executed",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "SSE_FP_PACKED_DOUBLE",
.udesc = "Number of SSE double precision FP packed uops executed",
.ucode = 0x1000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "SSE_FP_SCALAR_SINGLE",
.udesc = "Number of SSE single precision FP scalar uops executed",
.ucode = 0x2000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "SSE_PACKED_SINGLE",
.udesc = "Number of SSE single precision FP packed uops executed",
.ucode = 0x4000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "SSE_SCALAR_DOUBLE",
.udesc = "Number of SSE double precision FP scalar uops executed",
.ucode = 0x8000,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_hw_pre_req[]={
{ .uname = "L1D_MISS",
.udesc = "Hardware prefetch requests that misses the L1D cache. A request is counted each time it accesses the cache and misses it, including if a block is applicable or if it hits the full buffer, for example. This accounts for both L1 streamer and IP-based Hw prefetchers",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
};
static const intel_x86_umask_t snb_icache[]={
{ .uname = "MISSES",
.udesc = "Number of Instruction Cache, Streaming Buffer and Victim Cache Misses. Includes UC accesses",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "HIT",
.udesc = "Number of Instruction Cache, Streaming Buffer and Victim Cache Reads. Includes cacheable and uncacheable accesses and uncacheable fetches",
.ucode = 0x100,
.uflags = INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_idq[]={
{ .uname = "EMPTY",
.udesc = "Cycles IDQ is empty",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "MITE_UOPS",
.udesc = "Number of uops delivered to IDQ from MITE path",
.ucode = 0x400,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "DSB_UOPS",
.udesc = "Number of uops delivered to IDQ from DSB path",
.ucode = 0x800,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "MS_DSB_UOPS",
.udesc = "Number of uops delivered to IDQ when MS busy by DSB",
.ucode = 0x1000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "MS_MITE_UOPS",
.udesc = "Number of uops delivered to IDQ when MS busy by MITE",
.ucode = 0x2000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "MS_UOPS",
.udesc = "Number of uops were delivered to IDQ from MS by either DSB or MITE",
.ucode = 0x3000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "MITE_UOPS_CYCLES",
.udesc = "Cycles where uops are delivered to IDQ from MITE (MITE active)",
.uequiv = "MITE_UOPS:c=1",
.ucode = 0x400 | (0x1 << INTEL_X86_CMASK_BIT),
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "MS_SWITCHES",
.udesc = "Number of cycles that Uops were delivered into Instruction Decode Queue (IDQ) when MS_Busy, initiated by Decode Stream Buffer (DSB) or MITE",
.ucode = 0x3000 | INTEL_X86_MOD_EDGE | (1 << INTEL_X86_CMASK_BIT), /* edge=1 cnt=1 */
.uequiv = "MS_UOPS:c=1:e",
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_E | _INTEL_X86_ATTR_C,
},
{ .uname = "DSB_UOPS_CYCLES",
.udesc = "Cycles where uops are delivered to IDQ from DSB (DSB active)",
.ucode = 0x800 | (0x1 << INTEL_X86_CMASK_BIT),
.modhw = _INTEL_X86_ATTR_C,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "MS_DSB_UOPS_CYCLES",
.udesc = "Cycles where uops delivered to IDQ when MS busy by DSB",
.uequiv = "MS_DSB_UOPS:c=1",
.ucode = 0x1000 | (0x1 << INTEL_X86_CMASK_BIT),
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "MS_MITE_UOPS_CYCLES",
.udesc = "Cycles where uops delivered to IDQ when MS busy by MITE",
.uequiv = "MS_MITE_UOPS:c=1",
.ucode = 0x2000 | (0x1 << INTEL_X86_CMASK_BIT),
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "MS_UOPS_CYCLES",
.udesc = "Cycles where uops delivered to IDQ from MS by either BSD or MITE",
.uequiv = "MS_UOPS:c=1",
.ucode = 0x3000 | (0x1 << INTEL_X86_CMASK_BIT),
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ALL_DSB_UOPS",
.udesc = "Number of uops deliver from either DSB paths",
.ucode = 0x1800,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ALL_DSB_CYCLES",
.udesc = "Cycles MITE/MS deliver anything",
.ucode = 0x1800 | (0x1 << INTEL_X86_CMASK_BIT),
.modhw = _INTEL_X86_ATTR_C,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ALL_DSB_CYCLES_4_UOPS",
.udesc = "Cycles Decode Stream Buffer (DSB) is delivering 4 Uops",
.ucode = 0x1800 | (4 << INTEL_X86_CMASK_BIT), /* cnt=4 */
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
},
{ .uname = "ALL_MITE_UOPS",
.udesc = "Number of uops delivered from either MITE paths",
.ucode = 0x2400,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ALL_MITE_CYCLES",
.udesc = "Cycles DSB/MS deliver anything",
.ucode = 0x2400 | (0x1 << INTEL_X86_CMASK_BIT),
.modhw = _INTEL_X86_ATTR_C,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ALL_MITE_CYCLES_4_UOPS",
.udesc = "Cycles MITE is delivering 4 Uops",
.ucode = 0x2400 | (4 << INTEL_X86_CMASK_BIT), /* cnt=4 */
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
},
{ .uname = "ANY_UOPS",
.udesc = "Number of uops delivered to IDQ from any path",
.ucode = 0x3c00,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "MS_DSB_UOPS_OCCUR",
.udesc = "Occurrences of DSB MS going active",
.uequiv = "MS_DSB_UOPS:c=1:e=1",
.ucode = 0x1000 | INTEL_X86_MOD_EDGE | (0x1 << INTEL_X86_CMASK_BIT),
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_idq_uops_not_delivered[]={
{ .uname = "CORE",
.udesc = "Number of non-delivered uops to RAT (use cmask to qualify further)",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
{ .uname = "CYCLES_0_UOPS_DELIV_CORE",
.udesc = "Cycles per thread when 4 or more uops are not delivered to the Resource Allocation Table (RAT) when backend is not stalled",
.ucode = 0x100 | (4 << INTEL_X86_CMASK_BIT), /* cnt=4 */
.uflags = INTEL_X86_NCOMBO,
.uequiv = "CORE:c=4",
.modhw = _INTEL_X86_ATTR_C,
},
{ .uname = "CYCLES_GE_1_UOP_DELIV_CORE",
.udesc = "Cycles per thread when 1 or more uops are delivered to the Resource Allocation Table (RAT) by the front end",
.ucode = 0x100 | (4 << INTEL_X86_CMASK_BIT) | INTEL_X86_MOD_INV, /* cnt=4 inv=1 */
.uequiv = "CORE:c=4:i",
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C | _INTEL_X86_ATTR_I,
},
{ .uname = "CYCLES_LE_1_UOP_DELIV_CORE",
.udesc = "Cycles per thread when 3 or more uops are not delivered to the Resource Allocation Table (RAT) when backend is not stalled",
.ucode = 0x100 | (3 << INTEL_X86_CMASK_BIT), /* cnt=3 */
.uequiv = "CORE:c=3",
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
},
{ .uname = "CYCLES_LE_2_UOP_DELIV_CORE",
.udesc = "Cycles with less than 2 uops delivered by the front end",
.ucode = 0x100 | (2 << INTEL_X86_CMASK_BIT), /* cnt=2 */
.uequiv = "CORE:c=2",
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
},
{ .uname = "CYCLES_LE_3_UOP_DELIV_CORE",
.udesc = "Cycles with less than 3 uops delivered by the front end",
.ucode = 0x100 | (1 << INTEL_X86_CMASK_BIT), /* cnt=1 */
.uequiv = "CORE:c=1",
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
},
{ .uname = "CYCLES_FE_WAS_OK",
.udesc = "Cycles Front-End (FE) delivered 4 uops or Resource Allocation Table (RAT) was stalling FE",
.ucode = 0x100 | INTEL_X86_MOD_INV | (1 << INTEL_X86_CMASK_BIT), /* cnt=1 inv=1 */
.uequiv = "CORE:c=1:i",
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C | _INTEL_X86_ATTR_I,
},
};
static const intel_x86_umask_t snb_ild_stall[]={
{ .uname = "LCP",
.udesc = "Stall caused by changing prefix length of the instruction",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "IQ_FULL",
.udesc = "Stall cycles due to IQ full",
.ucode = 0x400,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_insts_written_to_iq[]={
{ .uname = "INSTS",
.udesc = "Number of instructions written to IQ every cycle",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
};
static const intel_x86_umask_t snb_inst_retired[]={
{ .uname = "ANY_P",
.udesc = "Number of instructions retired",
.ucode = 0x0,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
{ .uname = "PREC_DIST",
.udesc = "Precise instruction retired event to reduce effect of PEBS shadow IP distribution (Precise Event)",
.ucntmsk = 0x2,
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
};
static const intel_x86_umask_t snb_int_misc[]={
{ .uname = "RAT_STALL_CYCLES",
.udesc = "Cycles RAT external stall is sent to IDQ for this thread",
.ucode = 0x4000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "RECOVERY_CYCLES",
.udesc = "Cycles waiting to be recovered after Machine Clears due to all other cases except JEClear",
.ucode = 0x300 | (0x1 << INTEL_X86_CMASK_BIT),
.modhw = _INTEL_X86_ATTR_C,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "RECOVERY_STALLS_COUNT",
.udesc = "Number of times need to wait after Machine Clears due to all other cases except JEClear",
.ucode = 0x300 | INTEL_X86_MOD_EDGE | (0x1 << INTEL_X86_CMASK_BIT),
.modhw = _INTEL_X86_ATTR_E | _INTEL_X86_ATTR_C,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "RECOVERY_CYCLES_ANY",
.udesc = "Cycles during which the allocator was stalled due to recovery from earlier clear event for any thread (e.g. misprediction or memory nuke)",
.ucode = 0x300 | (0x1 << INTEL_X86_CMASK_BIT) | INTEL_X86_MOD_ANY, /* cnt=1 any=1 */
.modhw = _INTEL_X86_ATTR_C | _INTEL_X86_ATTR_T,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_itlb[]={
{ .uname = "ITLB_FLUSH",
.udesc = "Number of ITLB flushes, includes 4k/2M/4M pages",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
{ .uname = "FLUSH",
.udesc = "Number of ITLB flushes, includes 4k/2M/4M pages",
.ucode = 0x100,
.uequiv = "ITLB_FLUSH",
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_l1d[]={
{ .uname = "ALLOCATED_IN_M",
.udesc = "Number of allocations of L1D cache lines in modified (M) state",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ALL_M_REPLACEMENT",
.udesc = "Number of cache lines in M-state evicted of L1D due to snoop HITM or dirty line replacement",
.ucode = 0x800,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "M_EVICT",
.udesc = "Number of modified lines evicted from L1D due to replacement",
.ucode = 0x400,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "REPLACEMENT",
.udesc = "Number of cache lines brought into the L1D cache",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_l1d_blocks[]={
{ .uname = "BANK_CONFLICT",
.udesc = "Number of dispatched loads cancelled due to L1D bank conflicts with other load ports",
.ucode = 0x500,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "BANK_CONFLICT_CYCLES",
.udesc = "Cycles when dispatched loads are cancelled due to L1D bank conflicts with other load ports",
.ucode = 0x500 | (0x1 << INTEL_X86_CMASK_BIT), /* cnt=1 */
.uequiv = "BANK_CONFLICT:c=1",
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
.modhw = _INTEL_X86_ATTR_C,
},
};
static const intel_x86_umask_t snb_l1d_pend_miss[]={
{ .uname = "OCCURRENCES",
.udesc = "Occurrences of L1D_PEND_MISS going active",
.uequiv = "PENDING:e=1:c=1",
.ucode = 0x100 | INTEL_X86_MOD_EDGE | (0x1 << INTEL_X86_CMASK_BIT),
.uflags= INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C | _INTEL_X86_ATTR_E,
},
{ .uname = "EDGE",
.udesc = "Occurrences of L1D_PEND_MISS going active",
.uequiv = "OCCURRENCES",
.ucode = 0x100 | INTEL_X86_MOD_EDGE | (0x1 << INTEL_X86_CMASK_BIT),
.uflags= INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C | _INTEL_X86_ATTR_E,
},
{ .uname = "PENDING",
.udesc = "Number of L1D load misses outstanding every cycle",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "PENDING_CYCLES",
.udesc = "Cycles with L1D load misses outstanding",
.uequiv = "PENDING:c=1",
.ucode = 0x100 | (0x1 << INTEL_X86_CMASK_BIT),
.uflags= INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
},
{ .uname = "PENDING_CYCLES_ANY",
.udesc = "Cycles with L1D load misses outstanding from any thread",
.uequiv = "PENDING:c=1:t",
.ucode = 0x100 | (0x1 << INTEL_X86_CMASK_BIT) | INTEL_X86_MOD_ANY,
.uflags= INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C | _INTEL_X86_ATTR_T,
},
{ .uname = "FB_FULL",
.udesc = "Number of cycles a demand request was blocked due to Fill Buffer (FB) unavailability",
.ucode = 0x200 | (1 << INTEL_X86_CMASK_BIT), /* cnt=1 */
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
},
};
static const intel_x86_umask_t snb_l2_l1d_wb_rqsts[]={
{ .uname = "ALL",
.udesc = "Non rejected writebacks from L1D to L2 cache lines in E state",
.ucode = 0xf00,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
{ .uname = "HIT_E",
.udesc = "Non rejected writebacks from L1D to L2 cache lines in E state",
.ucode = 0x400,
},
{ .uname = "HIT_M",
.udesc = "Non rejected writebacks from L1D to L2 cache lines in M state",
.ucode = 0x800,
},
{ .uname = "HIT_S",
.udesc = "Non rejected writebacks from L1D to L2 cache lines in S state",
.ucode = 0x200,
},
{ .uname = "MISS",
.udesc = "Number of modified lines evicted from L1 and missing L2 (non-rejected WB from DCU)",
.ucode = 0x100,
},
};
static const intel_x86_umask_t snb_l2_lines_in[]={
{ .uname = "ANY",
.udesc = "L2 cache lines filling (counting does not cover rejects)",
.ucode = 0x700,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "E",
.udesc = "L2 cache lines in E state (counting does not cover rejects)",
.ucode = 0x400,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "I",
.udesc = "L2 cache lines in I state (counting does not cover rejects)",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "S",
.udesc = "L2 cache lines in S state (counting does not cover rejects)",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_l2_lines_out[]={
{ .uname = "DEMAND_CLEAN",
.udesc = "L2 clean line evicted by a demand",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "DEMAND_DIRTY",
.udesc = "L2 dirty line evicted by a demand",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "PREFETCH_CLEAN",
.udesc = "L2 clean line evicted by a prefetch",
.ucode = 0x400,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "PREFETCH_DIRTY",
.udesc = "L2 dirty line evicted by an MLC Prefetch",
.ucode = 0x800,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "DIRTY_ANY",
.udesc = "Any L2 dirty line evicted (does not cover rejects)",
.ucode = 0xa00,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_l2_rqsts[]={
{ .uname = "ALL_CODE_RD",
.udesc = "Any ifetch request to L2 cache",
.ucode = 0x3000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "CODE_RD_HIT",
.udesc = "L2 cache hits when fetching instructions",
.ucode = 0x1000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "CODE_RD_MISS",
.udesc = "L2 cache misses when fetching instructions",
.ucode = 0x2000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ALL_DEMAND_DATA_RD",
.udesc = "Demand data read requests to L2 cache",
.ucode = 0x300,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ALL_DEMAND_RD_HIT",
.udesc = "Demand data read requests that hit L2",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ALL_PF",
.udesc = "Any L2 HW prefetch request to L2 cache",
.ucode = 0xc000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "PF_HIT",
.udesc = "Requests from the L2 hardware prefetchers that hit L2 cache",
.ucode = 0x4000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "PF_MISS",
.udesc = "Requests from the L2 hardware prefetchers that miss L2 cache",
.ucode = 0x8000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "RFO_ANY",
.udesc = "Any RFO requests to L2 cache",
.ucode = 0xc00,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "RFO_HITS",
.udesc = "RFO requests that hit L2 cache",
.ucode = 0x400,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "RFO_MISS",
.udesc = "RFO requests that miss L2 cache",
.ucode = 0x800,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_l2_store_lock_rqsts[]={
{ .uname = "HIT_E",
.udesc = "RFOs that hit cache lines in E state",
.ucode = 0x400,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "MISS",
.udesc = "RFOs that miss cache (I state)",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "HIT_M",
.udesc = "RFOs that hit cache lines in M state",
.ucode = 0x800,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ALL",
.udesc = "RFOs that access cache lines in any state",
.ucode = 0xf00,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
};
static const intel_x86_umask_t snb_l2_trans[]={
{ .uname = "ALL",
.udesc = "Transactions accessing MLC pipe",
.ucode = 0x8000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "CODE_RD",
.udesc = "L2 cache accesses when fetching instructions",
.ucode = 0x400,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "L1D_WB",
.udesc = "L1D writebacks that access L2 cache",
.ucode = 0x1000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "LOAD",
.udesc = "Demand Data Read* requests that access L2 cache",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "L2_FILL",
.udesc = "L2 fill requests that access L2 cache",
.ucode = 0x2000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "L2_WB",
.udesc = "L2 writebacks that access L2 cache",
.ucode = 0x4000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ALL_PREFETCH",
.udesc = "L2 or L3 HW prefetches that access L2 cache (including rejects)",
.ucode = 0x800,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "RFO",
.udesc = "RFO requests that access L2 cache",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_ld_blocks[]={
{ .uname = "DATA_UNKNOWN",
.udesc = "Blocked loads due to store buffer blocks with unknown data",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "STORE_FORWARD",
.udesc = "Loads blocked by overlapping with store buffer that cannot be forwarded",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "NO_SR",
.udesc = "Number of split loads blocked due to resource not available",
.ucode = 0x800,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ALL_BLOCK",
.udesc = "Number of cases where any load is blocked but has not DCU miss",
.ucode = 0x1000,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_ld_blocks_partial[]={
{ .uname = "ADDRESS_ALIAS",
.udesc = "False dependencies in MOB due to partial compare on address",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ALL_STA_BLOCK",
.udesc = "Number of times that load operations are temporarily blocked because of older stores, with addresses that are not yet known. A load operation may incur more than one block of this type",
.ucode = 0x800,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_load_hit_pre[]={
{ .uname = "HW_PF",
.udesc = "Non sw-prefetch load dispatches that hit the fill buffer allocated for HW prefetch",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "SW_PF",
.udesc = "Non sw-prefetch load dispatches that hit the fill buffer allocated for SW prefetch",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_l3_lat_cache[]={
{ .uname = "MISS",
.udesc = "Core-originated cacheable demand requests missed L3",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "REFERENCE",
.udesc = "Core-originated cacheable demand requests that refer to L3",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_machine_clears[]={
{ .uname = "MASKMOV",
.udesc = "The number of executed Intel AVX masked load operations that refer to an illegal address range with the mask bits set to 0",
.ucode = 0x2000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "MEMORY_ORDERING",
.udesc = "Number of Memory Ordering Machine Clears detected",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "SMC",
.udesc = "Self-Modifying Code detected",
.ucode = 0x400,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "COUNT",
.udesc = "Number of machine clears (nukes) of any type",
.ucode = 0x100 | INTEL_X86_MOD_EDGE | (1 << INTEL_X86_CMASK_BIT), /* edge=1 cnt=1 */
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_E | _INTEL_X86_ATTR_C,
},
};
static const intel_x86_umask_t snb_mem_load_uops_llc_hit_retired[]={
{ .uname = "XSNP_HIT",
.udesc = "Load LLC Hit and a cross-core Snoop hits in on-pkg core cache (Precise Event)",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "XSNP_HITM",
.udesc = "Load had HitM Response from a core on same socket (shared LLC) (Precise Event)",
.ucode = 0x400,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "XSNP_MISS",
.udesc = "Load LLC Hit and a cross-core Snoop missed in on-pkg core cache (Precise Event)",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "XSNP_NONE",
.udesc = "Load hit in last-level (L3) cache with no snoop needed (Precise Event)",
.ucode = 0x800,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
};
static const intel_x86_umask_t snb_mem_load_uops_misc_retired[]={
{ .uname = "LLC_MISS",
.udesc = "Counts load driven L3 misses and some non simd split loads (Precise Event)",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS | INTEL_X86_DFL,
},
};
static const intel_x86_umask_t snb_mem_load_uops_retired[]={
{ .uname = "HIT_LFB",
.udesc = "A load missed L1D but hit the Fill Buffer (Precise Event)",
.ucode = 0x4000,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "L1_HIT",
.udesc = "Load hit in nearest-level (L1D) cache (Precise Event)",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "L2_HIT",
.udesc = "Load hit in mid-level (L2) cache (Precise Event)",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "L3_HIT",
.udesc = "Load hit in last-level (L3) cache with no snoop needed (Precise Event)",
.ucode = 0x400,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "L3_MISS",
.udesc = "Retired load uops which data sources were data missed LLC (excluding unknown data source)",
.ucode = 0x2000,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
.umodel = PFM_PMU_INTEL_SNB_EP,
},
};
static const intel_x86_umask_t snb_mem_trans_retired[]={
{ .uname = "LATENCY_ABOVE_THRESHOLD",
.udesc = "Memory load instructions retired above programmed clocks, minimum threshold value is 3 (Precise Event and ldlat required)",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS | INTEL_X86_LDLAT,
},
{ .uname = "PRECISE_STORE",
.udesc = "Capture where stores occur, must use with PEBS (Precise Event required)",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
};
static const intel_x86_umask_t snb_mem_uops_retired[]={
{ .uname = "ALL_LOADS",
.udesc = "Any retired loads (Precise Event)",
.ucode = 0x8100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "ANY_LOADS",
.udesc = "Any retired loads (Precise Event)",
.ucode = 0x8100,
.uequiv = "ALL_LOADS",
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "ALL_STORES",
.udesc = "Any retired stores (Precise Event)",
.ucode = 0x8200,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "ANY_STORES",
.udesc = "Any retired stores (Precise Event)",
.ucode = 0x8200,
.uequiv = "ALL_STORES",
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "LOCK_LOADS",
.udesc = "Locked retired loads (Precise Event)",
.ucode = 0x2100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "LOCK_STORES",
.udesc = "Locked retired stores (Precise Event)",
.ucode = 0x2200,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "SPLIT_LOADS",
.udesc = "Retired loads causing cacheline splits (Precise Event)",
.ucode = 0x4100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "SPLIT_STORES",
.udesc = "Retired stores causing cacheline splits (Precise Event)",
.ucode = 0x4200,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "STLB_MISS_LOADS",
.udesc = "STLB misses dues to retired loads (Precise Event)",
.ucode = 0x1100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "STLB_MISS_STORES",
.udesc = "STLB misses dues to retired stores (Precise Event)",
.ucode = 0x1200,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
};
static const intel_x86_umask_t snb_misalign_mem_ref[]={
{ .uname = "LOADS",
.udesc = "Speculative cache-line split load uops dispatched to the L1D",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "STORES",
.udesc = "Speculative cache-line split Store-address uops dispatched to L1D",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_offcore_requests[]={
{ .uname = "ALL_DATA_RD",
.udesc = "Demand and prefetch read requests sent to uncore",
.ucode = 0x800,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ALL_DATA_READ",
.udesc = "Demand and prefetch read requests sent to uncore",
.uequiv = "ALL_DATA_RD",
.ucode = 0x800,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "DEMAND_CODE_RD",
.udesc = "Offcore code read requests, including cacheable and un-cacheables",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "DEMAND_DATA_RD",
.udesc = "Demand Data Read requests sent to uncore",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "DEMAND_RFO",
.udesc = "Offcore Demand RFOs, includes regular RFO, Locks, ItoM",
.ucode = 0x400,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_offcore_requests_buffer[]={
{ .uname = "SQ_FULL",
.udesc = "Offcore requests buffer cannot take more entries for this thread core",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
};
static const intel_x86_umask_t snb_offcore_requests_outstanding[]={
{ .uname = "ALL_DATA_RD_CYCLES",
.udesc = "Cycles with cacheable data read transactions in the superQ",
.uequiv = "ALL_DATA_RD:c=1",
.ucode = 0x800 | (0x1 << INTEL_X86_CMASK_BIT),
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "DEMAND_CODE_RD_CYCLES",
.udesc = "Cycles with demand code reads transactions in the superQ",
.uequiv = "DEMAND_CODE_RD:c=1",
.ucode = 0x200 | (0x1 << INTEL_X86_CMASK_BIT),
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "DEMAND_DATA_RD_CYCLES",
.udesc = "Cycles with demand data read transactions in the superQ",
.uequiv = "DEMAND_DATA_RD:c=1",
.ucode = 0x100 | (0x1 << INTEL_X86_CMASK_BIT),
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "ALL_DATA_RD",
.udesc = "Cacheable data read transactions in the superQ every cycle",
.ucode = 0x800,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "DEMAND_CODE_RD",
.udesc = "Code read transactions in the superQ every cycle",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "DEMAND_DATA_RD",
.udesc = "Demand data read transactions in the superQ every cycle",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "DEMAND_DATA_RD_GE_6",
.udesc = "Cycles with at lesat 6 offcore outstanding demand data read requests in the uncore queue",
.uequiv = "DEMAND_DATA_RD:c=6",
.ucode = 0x100 | (6 << INTEL_X86_CMASK_BIT),
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
},
{ .uname = "DEMAND_RFO",
.udesc = "Outstanding RFO (store) transactions in the superQ every cycle",
.ucode = 0x400,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "DEMAND_RFO_CYCLES",
.udesc = "Cycles with outstanding RFO (store) transactions in the superQ",
.uequiv = "DEMAND_RFO:c=1",
.ucode = 0x400 | (0x1 << INTEL_X86_CMASK_BIT),
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_other_assists[]={
{ .uname = "ITLB_MISS_RETIRED",
.udesc = "Number of instructions that experienced an ITLB miss",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "AVX_TO_SSE",
.udesc = "Number of transitions from AVX-256 to legacy SSE when penalty applicable",
.ucode = 0x1000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "SSE_TO_AVX",
.udesc = "Number of transitions from legacy SSE to AVX-256 when penalty applicable",
.ucode = 0x2000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "AVX_STORE",
.udesc = "Number of GSSE memory assist for stores. GSSE microcode assist is being invoked whenever the hardware is unable to properly handle GSSE-256b operations",
.ucode = 0x800,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_partial_rat_stalls[]={
{ .uname = "FLAGS_MERGE_UOP",
.udesc = "Number of flags-merge uops in flight in each cycle",
.ucode = 0x2000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "CYCLES_FLAGS_MERGE_UOP",
.udesc = "Cycles in which flags-merge uops in flight",
.uequiv = "FLAGS_MERGE_UOP:c=1",
.ucode = 0x2000 | (0x1 << INTEL_X86_CMASK_BIT),
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "MUL_SINGLE_UOP",
.udesc = "Number of Multiply packed/scalar single precision uops allocated",
.ucode = 0x8000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "SLOW_LEA_WINDOW",
.udesc = "Number of cycles with at least one slow LEA uop allocated",
.ucode = 0x4000,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_resource_stalls[]={
{ .uname = "ANY",
.udesc = "Cycles stalled due to Resource Related reason",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
{ .uname = "LB",
.udesc = "Cycles stalled due to lack of load buffers",
.ucode = 0x200,
},
{ .uname = "RS",
.udesc = "Cycles stalled due to no eligible RS entry available",
.ucode = 0x400,
},
{ .uname = "SB",
.udesc = "Cycles stalled due to no store buffers available (not including draining from sync)",
.ucode = 0x800,
},
{ .uname = "ROB",
.udesc = "Cycles stalled due to re-order buffer full",
.ucode = 0x1000,
},
{ .uname = "FCSW",
.udesc = "Cycles stalled due to writing the FPU control word",
.ucode = 0x2000,
},
{ .uname = "MXCSR",
.udesc = "Cycles stalled due to the MXCSR register ranme occurring too close to a previous MXCSR rename",
.ucode = 0x4000,
},
{ .uname = "MEM_RS",
.udesc = "Cycles stalled due to LB, SB or RS being completely in use",
.ucode = 0xe00,
.uequiv = "LB:SB:RS",
},
{ .uname = "LD_SB",
.udesc = "Resource stalls due to load or store buffers all being in use",
.ucode = 0xa00,
},
{ .uname = "OOO_SRC",
.udesc = "Resource stalls due to Rob being full, FCSW, MXCSR and OTHER",
.ucode = 0xf000,
},
};
static const intel_x86_umask_t snb_resource_stalls2[]={
{ .uname = "ALL_FL_EMPTY",
.udesc = "Cycles stalled due to free list empty",
.ucode = 0xc00,
},
{ .uname = "ALL_PRF_CONTROL",
.udesc = "Cycles stalls due to control structures full for physical registers",
.ucode = 0xf00,
},
{ .uname = "ANY_PRF_CONTROL",
.udesc = "Cycles stalls due to control structures full for physical registers",
.ucode = 0xf00,
.uequiv = "ALL_PRF_CONTROL",
},
{ .uname = "BOB_FULL",
.udesc = "Cycles Allocator is stalled due Branch Order Buffer",
.ucode = 0x4000,
},
{ .uname = "OOO_RSRC",
.udesc = "Cycles stalled due to out of order resources full",
.ucode = 0x4f00,
},
};
static const intel_x86_umask_t snb_rob_misc_events[]={
{ .uname = "LBR_INSERTS",
.udesc = "Count each time an new LBR record is saved by HW",
.ucode = 0x2000,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
};
static const intel_x86_umask_t snb_rs_events[]={
{ .uname = "EMPTY_CYCLES",
.udesc = "Cycles the RS is empty for this thread",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
{ .uname = "EMPTY_END",
.udesc = "Counts number of time the Reservation Station (RS) goes from empty to non-empty",
.ucode = 0x100 | INTEL_X86_MOD_INV | INTEL_X86_MOD_EDGE | (1 << INTEL_X86_CMASK_BIT), /* inv=1 edge=1 cnt=1 */
.uequiv = "EMPTY_CYCLES:c=1:e:i",
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_E | _INTEL_X86_ATTR_I | _INTEL_X86_ATTR_C,
},
};
static const intel_x86_umask_t snb_simd_fp_256[]={
{ .uname = "PACKED_SINGLE",
.udesc = "Counts 256-bit packed single-precision",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "PACKED_DOUBLE",
.udesc = "Counts 256-bit packed double-precision",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_sq_misc[]={
{ .uname = "SPLIT_LOCK",
.udesc = "Split locks in SQ",
.ucode = 0x1000,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
};
static const intel_x86_umask_t snb_tlb_flush[]={
{ .uname = "DTLB_THREAD",
.udesc = "Number of DTLB flushes of thread-specific entries",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "STLB_ANY",
.udesc = "Number of STLB flushes",
.ucode = 0x2000,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
};
static const intel_x86_umask_t snb_uops_dispatched_port[]={
{ .uname = "PORT_0",
.udesc = "Cycles which a Uop is dispatched on port 0",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "PORT_1",
.udesc = "Cycles which a Uop is dispatched on port 1",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "PORT_2_LD",
.udesc = "Cycles in which a load uop is dispatched on port 2",
.ucode = 0x400,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "PORT_2_STA",
.udesc = "Cycles in which a store uop is dispatched on port 2",
.ucode = 0x800,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "PORT_2",
.udesc = "Cycles in which a uop is dispatched on port 2",
.ucode = 0xc00,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "PORT_3",
.udesc = "Cycles in which a uop is dispatched on port 3",
.ucode = 0x3000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "PORT_4",
.udesc = "Cycles which a uop is dispatched on port 4",
.ucode = 0x4000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "PORT_5",
.udesc = "Cycles which a Uop is dispatched on port 5",
.ucode = 0x8000,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "PORT_0_CORE",
.udesc = "Cycles in which a uop is dispatched on port 0 for any thread",
.ucode = 0x100 | INTEL_X86_MOD_ANY, /* any=1 */
.uequiv = "PORT_0:t",
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_T,
},
{ .uname = "PORT_1_CORE",
.udesc = "Cycles in which a uop is dispatched on port 1 for any thread",
.ucode = 0x200 | INTEL_X86_MOD_ANY, /* any=1 */
.uequiv = "PORT_1:t",
.uflags= INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_T,
},
{ .uname = "PORT_2_CORE",
.udesc = "Cycles in which a uop is dispatched on port 2 for any thread",
.ucode = 0xc00 | INTEL_X86_MOD_ANY, /* any=1 */
.uequiv = "PORT_2:t",
.uflags= INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_T,
},
{ .uname = "PORT_3_CORE",
.udesc = "Cycles in which a uop is dispatched on port 3 for any thread",
.ucode = 0x3000 | INTEL_X86_MOD_ANY, /* any=1 */
.uequiv = "PORT_3:t",
.uflags= INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_T,
},
{ .uname = "PORT_4_CORE",
.udesc = "Cycles in which a uop is dispatched on port 4 for any thread",
.ucode = 0x4000 | INTEL_X86_MOD_ANY, /* any=1 */
.uequiv = "PORT_4:t",
.uflags= INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_T,
},
{ .uname = "PORT_5_CORE",
.udesc = "Cycles in which a uop is dispatched on port 5 for any thread",
.ucode = 0x8000 | INTEL_X86_MOD_ANY, /* any=1 */
.uequiv = "PORT_5:t",
.uflags= INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_T,
},
};
static const intel_x86_umask_t snb_uops_issued[]={
{ .uname = "ANY",
.udesc = "Number of uops issued by the RAT to the Reservation Station (RS)",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
{ .uname = "CORE_STALL_CYCLES",
.udesc = "Cycles no uops issued on this core (by any thread)",
.uequiv = "ANY:c=1:i=1:t=1",
.ucode = 0x100 | INTEL_X86_MOD_ANY | INTEL_X86_MOD_INV | (0x1 << INTEL_X86_CMASK_BIT),
.uflags= INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_I | _INTEL_X86_ATTR_C | _INTEL_X86_ATTR_T,
},
{ .uname = "STALL_CYCLES",
.udesc = "Cycles no uops issued by this thread",
.uequiv = "ANY:c=1:i=1",
.ucode = 0x100 | INTEL_X86_MOD_INV | (0x1 << INTEL_X86_CMASK_BIT),
.uflags= INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_I | _INTEL_X86_ATTR_C,
},
};
static const intel_x86_umask_t snb_uops_retired[]={
{ .uname = "ALL",
.udesc = "All uops that actually retired (Precise Event)",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS | INTEL_X86_DFL,
},
{ .uname = "ANY",
.udesc = "All uops that actually retired (Precise Event)",
.ucode = 0x100,
.uequiv= "ALL",
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "RETIRE_SLOTS",
.udesc = "Number of retirement slots used (Precise Event)",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "STALL_CYCLES",
.udesc = "Cycles no executable uop retired (Precise Event)",
.uequiv = "ALL:c=1:i",
.ucode = 0x100 | INTEL_X86_MOD_INV | (0x1 << INTEL_X86_CMASK_BIT),
.uflags = INTEL_X86_NCOMBO | INTEL_X86_PEBS,
.modhw = _INTEL_X86_ATTR_I | _INTEL_X86_ATTR_C,
},
{ .uname = "TOTAL_CYCLES",
.udesc = "Total cycles using precise uop retired event (Precise Event)",
.uequiv = "ALL:c=10:i",
.ucode = 0x100 | INTEL_X86_MOD_INV | (10 << INTEL_X86_CMASK_BIT),
.uflags = INTEL_X86_NCOMBO | INTEL_X86_PEBS,
.modhw = _INTEL_X86_ATTR_I | _INTEL_X86_ATTR_C,
},
};
static const intel_x86_umask_t snb_offcore_response[]={
{ .uname = "DMND_DATA_RD",
.udesc = "Request: number of demand and DCU prefetch data reads of full and partial cachelines as well as demand data page table entry cacheline reads. Does not count L2 data read prefetches or instruction fetches",
.ucode = 1ULL << (0 + 8),
.grpid = 0,
},
{ .uname = "DMND_RFO",
.udesc = "Request: number of demand and DCU prefetch reads for ownership (RFO) requests generated by a write to data cacheline. Does not count L2 RFO prefetches",
.ucode = 1ULL << (1 + 8),
.grpid = 0,
},
{ .uname = "DMND_IFETCH",
.udesc = "Request: number of demand and DCU prefetch instruction cacheline reads. Does not count L2 code read prefetches",
.ucode = 1ULL << (2 + 8),
.grpid = 0,
},
{ .uname = "WB",
.udesc = "Request: number of writebacks (modified to exclusive) transactions",
.ucode = 1ULL << (3 + 8),
.grpid = 0,
},
{ .uname = "PF_DATA_RD",
.udesc = "Request: number of data cacheline reads generated by L2 prefetchers",
.ucode = 1ULL << (4 + 8),
.grpid = 0,
},
{ .uname = "PF_RFO",
.udesc = "Request: number of RFO requests generated by L2 prefetchers",
.ucode = 1ULL << (5 + 8),
.grpid = 0,
},
{ .uname = "PF_IFETCH",
.udesc = "Request: number of code reads generated by L2 prefetchers",
.ucode = 1ULL << (6 + 8),
.grpid = 0,
},
{ .uname = "PF_LLC_DATA_RD",
.udesc = "Request: number of L3 prefetcher requests to L2 for loads",
.ucode = 1ULL << (7 + 8),
.grpid = 0,
},
{ .uname = "PF_LLC_RFO",
.udesc = "Request: number of RFO requests generated by L2 prefetcher",
.ucode = 1ULL << (8 + 8),
.grpid = 0,
},
{ .uname = "PF_LLC_IFETCH",
.udesc = "Request: number of L2 prefetcher requests to L3 for instruction fetches",
.ucode = 1ULL << (9 + 8),
.grpid = 0,
},
{ .uname = "BUS_LOCKS",
.udesc = "Request: number bus lock and split lock requests",
.ucode = 1ULL << (10 + 8),
.grpid = 0,
},
{ .uname = "STRM_ST",
.udesc = "Request: number of streaming store requests",
.ucode = 1ULL << (11 + 8),
.grpid = 0,
},
{ .uname = "OTHER",
.udesc = "Request: counts one of the following transaction types, including L3 invalidate, I/O, full or partial writes, WC or non-temporal stores, CLFLUSH, Fences, lock, unlock, split lock",
.ucode = 1ULL << (15+8),
.grpid = 0,
},
{ .uname = "ANY_IFETCH",
.udesc = "Request: combination of PF_IFETCH | DMND_IFETCH | PF_LLC_IFETCH",
.uequiv = "PF_IFETCH:DMND_IFETCH:PF_LLC_IFETCH",
.ucode = 0x24400,
.grpid = 0,
},
{ .uname = "ANY_REQUEST",
.udesc = "Request: combination of all request umasks",
.uequiv = "DMND_DATA_RD:DMND_RFO:DMND_IFETCH:WB:PF_DATA_RD:PF_RFO:PF_IFETCH:PF_LLC_DATA_RD:PF_LLC_RFO:PF_LLC_IFETCH:BUS_LOCKS:STRM_ST:OTHER",
.ucode = 0x8fff00,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
.grpid = 0,
},
{ .uname = "ANY_DATA",
.udesc = "Request: combination of DMND_DATA | PF_DATA_RD | PF_LLC_DATA_RD",
.uequiv = "DMND_DATA_RD:PF_DATA_RD:PF_LLC_DATA_RD",
.ucode = 0x9100,
.grpid = 0,
},
{ .uname = "ANY_RFO",
.udesc = "Request: combination of DMND_RFO | PF_RFO | PF_LLC_RFO",
.uequiv = "DMND_RFO:PF_RFO:PF_LLC_RFO",
.ucode = 0x12200,
.grpid = 0,
},
{ .uname = "ANY_RESPONSE",
.udesc = "Response: count any response type",
.ucode = 1ULL << (16+8),
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL | INTEL_X86_EXCL_GRP_GT,
.grpid = 1,
},
{ .uname = "NO_SUPP",
.udesc = "Supplier: counts number of times supplier information is not available",
.ucode = 1ULL << (17+8),
.grpid = 1,
},
{ .uname = "LLC_HITM",
.udesc = "Supplier: counts L3 hits in M-state (initial lookup)",
.ucode = 1ULL << (18+8),
.grpid = 1,
},
{ .uname = "LLC_HITE",
.udesc = "Supplier: counts L3 hits in E-state",
.ucode = 1ULL << (19+8),
.grpid = 1,
},
{ .uname = "LLC_HITS",
.udesc = "Supplier: counts L3 hits in S-state",
.ucode = 1ULL << (20+8),
.grpid = 1,
},
{ .uname = "LLC_HITF",
.udesc = "Supplier: counts L3 hits in F-state",
.ucode = 1ULL << (21+8),
.grpid = 1,
},
{ .uname = "LLC_MISS_LOCAL_DRAM",
.udesc = "Supplier: counts L3 misses to local DRAM",
.ucode = 1ULL << (22+8),
.grpid = 1,
},
{ .uname = "LLC_MISS_LOCAL",
.udesc = "Supplier: counts L3 misses to local DRAM",
.ucode = 1ULL << (22+8),
.uequiv = "LLC_MISS_LOCAL_DRAM",
.grpid = 1,
},
{ .uname = "L3_MISS",
.udesc = "Supplier: counts L3 misses to local DRAM",
.ucode = 0x1ULL << (22+8),
.grpid = 1,
.uequiv = "LLC_MISS_LOCAL",
.umodel = PFM_PMU_INTEL_SNB,
},
{ .uname = "LLC_MISS_REMOTE",
.udesc = "Supplier: counts L3 misses to remote DRAM",
.ucode = 0xffULL << (23+8),
.uequiv = "LLC_MISS_REMOTE_DRAM",
.grpid = 1,
.umodel = PFM_PMU_INTEL_SNB_EP,
},
{ .uname = "LLC_MISS_REMOTE_DRAM",
.udesc = "Supplier: counts L3 misses to remote DRAM",
.ucode = 0xffULL << (23+8),
.grpid = 1,
.umodel = PFM_PMU_INTEL_SNB_EP,
},
{ .uname = "L3_MISS",
.udesc = "Supplier: counts L3 misses to local or remote DRAM",
.ucode = 0x3ULL << (22+8),
.uequiv = "LLC_MISS_LOCAL:LLC_MISS_REMOTE",
.umodel = PFM_PMU_INTEL_SNB_EP,
.grpid = 1,
},
{ .uname = "LLC_HITMESF",
.udesc = "Supplier: counts L3 hits in any state (M, E, S, F)",
.ucode = 0xfULL << (18+8),
.uequiv = "LLC_HITM:LLC_HITE:LLC_HITS:LLC_HITF",
.grpid = 1,
},
{ .uname = "SNP_NONE",
.udesc = "Snoop: counts number of times no snoop-related information is available",
.ucode = 1ULL << (31+8),
.grpid = 2,
},
{ .uname = "SNP_NOT_NEEDED",
.udesc = "Snoop: counts the number of times no snoop was needed to satisfy the request",
.ucode = 1ULL << (32+8),
.grpid = 2,
},
{ .uname = "NO_SNP_NEEDED",
.udesc = "Snoop: counts the number of times no snoop was needed to satisfy the request",
.ucode = 1ULL << (32+8),
.uequiv = "SNP_NOT_NEEDED",
.grpid = 2,
},
{ .uname = "SNP_MISS",
.udesc = "Snoop: counts number of times a snoop was needed and it missed all snooped caches",
.ucode = 1ULL << (33+8),
.grpid = 2,
},
{ .uname = "SNP_NO_FWD",
.udesc = "Snoop: counts number of times a snoop was needed and it hit in at leas one snooped cache",
.ucode = 1ULL << (34+8),
.grpid = 2,
},
{ .uname = "SNP_FWD",
.udesc = "Snoop: counts number of times a snoop was needed and data was forwarded from a remote socket",
.ucode = 1ULL << (35+8),
.grpid = 2,
},
{ .uname = "HITM",
.udesc = "Snoop: counts number of times a snoop was needed and it hitM-ed in local or remote cache",
.ucode = 1ULL << (36+8),
.grpid = 2,
},
{ .uname = "NON_DRAM",
.udesc = "Snoop: counts number of times target was a non-DRAM system address. This includes MMIO transactions",
.ucode = 1ULL << (37+8),
.grpid = 2,
},
{ .uname = "SNP_ANY",
.udesc = "Snoop: any snoop reason",
.ucode = 0x7fULL << (31+8),
.uequiv = "SNP_NONE:SNP_NOT_NEEDED:SNP_MISS:SNP_NO_FWD:SNP_FWD:HITM:NON_DRAM",
.uflags= INTEL_X86_DFL,
.grpid = 2,
},
};
static const intel_x86_umask_t snb_baclears[]={
{ .uname = "ANY",
.udesc = "Counts the number of times the front end is re-steered, mainly when the BPU cannot provide a correct prediction and this is corrected by other branch handling mechanisms at the front end",
.ucode = 0x1f00,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
};
static const intel_x86_umask_t snb_cycle_activity[]={
{ .uname = "CYCLES_L2_PENDING",
.udesc = "Cycles with pending L2 miss loads",
.ucode = 0x0100 | (0x1 << INTEL_X86_CMASK_BIT),
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
.ucntmsk= 0xf,
},
{ .uname = "CYCLES_L1D_PENDING",
.udesc = "Cycles with pending L1D load cache misses",
.ucode = 0x0200 | (0x2 << INTEL_X86_CMASK_BIT),
.ucntmsk= 0x4,
.modhw = _INTEL_X86_ATTR_C,
.uflags = INTEL_X86_NCOMBO,
},
{ .uname = "CYCLES_NO_DISPATCH",
.udesc = "Cycles of dispatch stalls",
.ucode = 0x0400 | (0x4 << INTEL_X86_CMASK_BIT),
.ucntmsk= 0xf,
.modhw = _INTEL_X86_ATTR_C,
.uflags = INTEL_X86_NCOMBO,
},
{ .uname = "STALLS_L2_PENDING",
.udesc = "Execution stalls due to L2 pending loads",
.ucode = 0x0500 | (0x5 << INTEL_X86_CMASK_BIT),
.ucntmsk= 0xf,
.modhw = _INTEL_X86_ATTR_C,
.uflags = INTEL_X86_NCOMBO,
},
{ .uname = "STALLS_L1D_PENDING",
.udesc = "Execution stalls due to L1D pending loads",
.ucode = 0x0600 | (0x6 << INTEL_X86_CMASK_BIT),
.ucntmsk= 0x4,
.modhw = _INTEL_X86_ATTR_C,
.uflags = INTEL_X86_NCOMBO,
},
};
static const intel_x86_umask_t snb_ept[]={
{ .uname = "WALK_CYCLES",
.udesc = "Cycles for an extended page table walk",
.ucode = 0x1000,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_DFL,
},
};
static const intel_x86_umask_t snb_lsd[]={
{ .uname = "UOPS",
.udesc = "Number of uops delivered by the Loop Stream Detector (LSD)",
.ucode = 0x100,
.uflags= INTEL_X86_DFL,
},
{ .uname = "ACTIVE",
.udesc = "Cycles with uops delivered by the LSD but which did not come from decoder",
.ucode = 0x100 | (1 << INTEL_X86_CMASK_BIT), /* cnt=1 */
.uequiv = "UOPS:c=1",
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
},
{ .uname = "CYCLES_4_UOPS",
.udesc = "Cycles with 4 uops delivered by the LSD but which did not come from decoder",
.ucode = 0x100 | (4 << INTEL_X86_CMASK_BIT), /* cnt=4 */
.uequiv = "UOPS:c=4",
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
},
};
static const intel_x86_umask_t snb_page_walks[]={
{ .uname = "LLC_MISS",
.udesc = "Number of page walks with a LLC miss",
.ucode = 0x100,
.uflags= INTEL_X86_DFL,
},
};
static const intel_x86_umask_t snb_uops_executed[]={
{ .uname = "CORE",
.udesc = "Counts total number of uops executed from any thread per cycle",
.ucode = 0x200,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "THREAD",
.udesc = "Counts total number of uops executed per thread each cycle",
.ucode = 0x100,
.uflags= INTEL_X86_NCOMBO,
},
{ .uname = "STALL_CYCLES",
.udesc = "Number of cycles with no uops executed",
.ucode = 0x100 | INTEL_X86_MOD_INV | (1 << INTEL_X86_CMASK_BIT), /* inv=1 cnt=1 */
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_I | _INTEL_X86_ATTR_C,
},
{ .uname = "CYCLES_GE_1_UOP_EXEC",
.udesc = "Cycles where at least 1 uop was executed per thread",
.ucode = 0x100 | (1 << INTEL_X86_CMASK_BIT), /* cnt=1 */
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
},
{ .uname = "CYCLES_GE_2_UOPS_EXEC",
.udesc = "Cycles where at least 2 uops were executed per thread",
.ucode = 0x100 | (2 << INTEL_X86_CMASK_BIT), /* cnt=2 */
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
},
{ .uname = "CYCLES_GE_3_UOPS_EXEC",
.udesc = "Cycles where at least 3 uops were executed per thread",
.ucode = 0x100 | (3 << INTEL_X86_CMASK_BIT), /* cnt=3 */
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
},
{ .uname = "CYCLES_GE_4_UOPS_EXEC",
.udesc = "Cycles where at least 4 uops were executed per thread",
.ucode = 0x100 | (4 << INTEL_X86_CMASK_BIT), /* cnt=4 */
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
},
{ .uname = "CORE_CYCLES_GE_1",
.udesc = "Cycles where at least 1 uop was executed from any thread",
.ucode = 0x200 | (1 << INTEL_X86_CMASK_BIT), /* cnt=1 */
.uequiv = "CORE:c=1",
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
},
{ .uname = "CORE_CYCLES_GE_2",
.udesc = "Cycles where at least 2 uops were executed from any thread",
.ucode = 0x200 | (2 << INTEL_X86_CMASK_BIT), /* cnt=2 */
.uequiv = "CORE:c=2",
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
},
{ .uname = "CORE_CYCLES_GE_3",
.udesc = "Cycles where at least 3 uops were executed from any thread",
.ucode = 0x200 | (3 << INTEL_X86_CMASK_BIT), /* cnt=3 */
.uequiv = "CORE:c=3",
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
},
{ .uname = "CORE_CYCLES_GE_4",
.udesc = "Cycles where at least 4 uops were executed from any thread",
.ucode = 0x200 | (4 << INTEL_X86_CMASK_BIT), /* cnt=4 */
.uequiv = "CORE:c=4",
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_C,
},
{ .uname = "CORE_CYCLES_NONE",
.udesc = "Cycles where no uop is executed on any thread",
.ucode = 0x200 | INTEL_X86_MOD_INV, /* inv=1 */
.uequiv = "CORE:i",
.uflags = INTEL_X86_NCOMBO,
.modhw = _INTEL_X86_ATTR_I,
},
};
static const intel_x86_umask_t snb_mem_load_uops_llc_miss_retired[]={
{ .uname = "LOCAL_DRAM",
.udesc = "Load uops that miss in the L3 and hit local DRAM",
.ucode = 0x100,
.umodel = PFM_PMU_INTEL_SNB_EP,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
{ .uname = "REMOTE_DRAM",
.udesc = "Load uops that miss in the L3 and hit remote DRAM",
.ucode = 0x400,
.umodel = PFM_PMU_INTEL_SNB_EP,
.uflags= INTEL_X86_NCOMBO | INTEL_X86_PEBS,
},
};
static const intel_x86_entry_t intel_snb_pe[]={
{ .name = "AGU_BYPASS_CANCEL",
.desc = "Number of executed load operations with all the following traits: 1. addressing of the format [base + offset], 2. the offset is between 1 and 2047, 3. the address specified in the base register is in one page and the address [base+offset] is in another page",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xb6,
.numasks = LIBPFM_ARRAY_SIZE(snb_agu_bypass_cancel),
.ngrp = 1,
.umasks = snb_agu_bypass_cancel,
},
{ .name = "ARITH",
.desc = "Counts arithmetic multiply operations",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x14,
.numasks = LIBPFM_ARRAY_SIZE(snb_arith),
.ngrp = 1,
.umasks = snb_arith,
},
{ .name = "BACLEARS",
.desc = "Branch re-steered",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xe6,
.numasks = LIBPFM_ARRAY_SIZE(snb_baclears),
.ngrp = 1,
.umasks = snb_baclears,
},
{ .name = "BR_INST_EXEC",
.desc = "Branch instructions executed",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x88,
.numasks = LIBPFM_ARRAY_SIZE(snb_br_inst_exec),
.ngrp = 1,
.umasks = snb_br_inst_exec,
},
{ .name = "BR_INST_RETIRED",
.desc = "Retired branch instructions",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xc4,
.flags= INTEL_X86_PEBS,
.numasks = LIBPFM_ARRAY_SIZE(snb_br_inst_retired),
.ngrp = 1,
.umasks = snb_br_inst_retired,
},
{ .name = "BR_MISP_EXEC",
.desc = "Mispredicted branches executed",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x89,
.numasks = LIBPFM_ARRAY_SIZE(snb_br_misp_exec),
.ngrp = 1,
.umasks = snb_br_misp_exec,
},
{ .name = "BR_MISP_RETIRED",
.desc = "Mispredicted retired branches",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xc5,
.flags= INTEL_X86_PEBS,
.numasks = LIBPFM_ARRAY_SIZE(snb_br_misp_retired),
.ngrp = 1,
.umasks = snb_br_misp_retired,
},
{ .name = "BRANCH_INSTRUCTIONS_RETIRED",
.desc = "Count branch instructions at retirement. Specifically, this event counts the retirement of the last micro-op of a branch instruction",
.modmsk = INTEL_V3_ATTRS,
.equiv = "BR_INST_RETIRED:ALL_BRANCHES",
.cntmsk = 0xff,
.code = 0xc4,
},
{ .name = "MISPREDICTED_BRANCH_RETIRED",
.desc = "Count mispredicted branch instructions at retirement. Specifically, this event counts at retirement of the last micro-op of a branch instruction in the architectural path of the execution and experienced misprediction in the branch prediction hardware",
.modmsk = INTEL_V3_ATTRS,
.equiv = "BR_MISP_RETIRED:ALL_BRANCHES",
.cntmsk = 0xff,
.code = 0xc5,
},
{ .name = "LOCK_CYCLES",
.desc = "Locked cycles in L1D and L2",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x63,
.numasks = LIBPFM_ARRAY_SIZE(snb_lock_cycles),
.ngrp = 1,
.umasks = snb_lock_cycles,
},
{ .name = "CPL_CYCLES",
.desc = "Unhalted core cycles at a specific ring level",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x5c,
.numasks = LIBPFM_ARRAY_SIZE(snb_cpl_cycles),
.ngrp = 1,
.umasks = snb_cpl_cycles,
},
{ .name = "CPU_CLK_UNHALTED",
.desc = "Cycles when processor is not in halted state",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x3c,
.numasks = LIBPFM_ARRAY_SIZE(snb_cpu_clk_unhalted),
.ngrp = 1,
.umasks = snb_cpu_clk_unhalted,
},
{ .name = "DSB2MITE_SWITCHES",
.desc = "Number of DSB to MITE switches",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xab,
.numasks = LIBPFM_ARRAY_SIZE(snb_dsb2mite_switches),
.ngrp = 1,
.umasks = snb_dsb2mite_switches,
},
{ .name = "DSB_FILL",
.desc = "DSB fills",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xac,
.numasks = LIBPFM_ARRAY_SIZE(snb_dsb_fill),
.ngrp = 1,
.umasks = snb_dsb_fill,
},
{ .name = "DTLB_LOAD_MISSES",
.desc = "Data TLB load misses",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x8,
.numasks = LIBPFM_ARRAY_SIZE(snb_dtlb_load_misses),
.ngrp = 1,
.umasks = snb_dtlb_load_misses,
},
{ .name = "DTLB_STORE_MISSES",
.desc = "Data TLB store misses",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x49,
.numasks = LIBPFM_ARRAY_SIZE(snb_dtlb_store_misses),
.ngrp = 1,
.umasks = snb_dtlb_store_misses,
},
{ .name = "FP_ASSIST",
.desc = "X87 Floating point assists",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xca,
.numasks = LIBPFM_ARRAY_SIZE(snb_fp_assist),
.ngrp = 1,
.umasks = snb_fp_assist,
},
{ .name = "FP_COMP_OPS_EXE",
.desc = "Counts number of floating point events",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x10,
.numasks = LIBPFM_ARRAY_SIZE(snb_fp_comp_ops_exe),
.ngrp = 1,
.umasks = snb_fp_comp_ops_exe,
},
{ .name = "HW_PRE_REQ",
.desc = "Hardware prefetch requests",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x4e,
.numasks = LIBPFM_ARRAY_SIZE(snb_hw_pre_req),
.ngrp = 1,
.umasks = snb_hw_pre_req,
},
{ .name = "ICACHE",
.desc = "Instruction Cache accesses",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x80,
.numasks = LIBPFM_ARRAY_SIZE(snb_icache),
.ngrp = 1,
.umasks = snb_icache,
},
{ .name = "IDQ",
.desc = "IDQ operations",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x79,
.numasks = LIBPFM_ARRAY_SIZE(snb_idq),
.ngrp = 1,
.umasks = snb_idq,
},
{ .name = "IDQ_UOPS_NOT_DELIVERED",
.desc = "Uops not delivered",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x9c,
.numasks = LIBPFM_ARRAY_SIZE(snb_idq_uops_not_delivered),
.ngrp = 1,
.umasks = snb_idq_uops_not_delivered,
},
{ .name = "ILD_STALL",
.desc = "Instruction Length Decoder stalls",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x87,
.numasks = LIBPFM_ARRAY_SIZE(snb_ild_stall),
.ngrp = 1,
.umasks = snb_ild_stall,
},
{ .name = "INSTS_WRITTEN_TO_IQ",
.desc = "Instructions written to IQ",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x17,
.numasks = LIBPFM_ARRAY_SIZE(snb_insts_written_to_iq),
.ngrp = 1,
.umasks = snb_insts_written_to_iq,
},
{ .name = "INST_RETIRED",
.desc = "Instructions retired",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xc0,
.flags= INTEL_X86_PEBS,
.numasks = LIBPFM_ARRAY_SIZE(snb_inst_retired),
.ngrp = 1,
.umasks = snb_inst_retired,
},
{ .name = "INSTRUCTION_RETIRED",
.desc = "Number of instructions at retirement",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0x10000000full,
.code = 0xc0,
},
{ .name = "INSTRUCTIONS_RETIRED",
.desc = "This is an alias for INSTRUCTION_RETIRED",
.modmsk = INTEL_V3_ATTRS,
.equiv = "INSTRUCTION_RETIRED",
.cntmsk = 0x10000000full,
.code = 0xc0,
},
{ .name = "INT_MISC",
.desc = "Miscellaneous internals",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xd,
.numasks = LIBPFM_ARRAY_SIZE(snb_int_misc),
.ngrp = 1,
.umasks = snb_int_misc,
},
{ .name = "ITLB",
.desc = "Instruction TLB",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xae,
.numasks = LIBPFM_ARRAY_SIZE(snb_itlb),
.ngrp = 1,
.umasks = snb_itlb,
},
{ .name = "ITLB_MISSES",
.desc = "Instruction TLB misses",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x85,
.numasks = LIBPFM_ARRAY_SIZE(snb_dtlb_store_misses),
.ngrp = 1,
.umasks = snb_dtlb_store_misses, /* identical to actual umasks list for this event */
},
{ .name = "L1D",
.desc = "L1D cache",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x51,
.numasks = LIBPFM_ARRAY_SIZE(snb_l1d),
.ngrp = 1,
.umasks = snb_l1d,
},
{ .name = "L1D_BLOCKS",
.desc = "L1D is blocking",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xbf,
.numasks = LIBPFM_ARRAY_SIZE(snb_l1d_blocks),
.ngrp = 1,
.umasks = snb_l1d_blocks,
},
{ .name = "L1D_PEND_MISS",
.desc = "L1D pending misses",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0x4,
.code = 0x48,
.numasks = LIBPFM_ARRAY_SIZE(snb_l1d_pend_miss),
.ngrp = 1,
.umasks = snb_l1d_pend_miss,
},
{ .name = "L2_L1D_WB_RQSTS",
.desc = "Writeback requests from L1D to L2",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x28,
.numasks = LIBPFM_ARRAY_SIZE(snb_l2_l1d_wb_rqsts),
.ngrp = 1,
.umasks = snb_l2_l1d_wb_rqsts,
},
{ .name = "L2_LINES_IN",
.desc = "L2 lines allocated",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xf1,
.numasks = LIBPFM_ARRAY_SIZE(snb_l2_lines_in),
.ngrp = 1,
.umasks = snb_l2_lines_in,
},
{ .name = "L2_LINES_OUT",
.desc = "L2 lines evicted",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xf2,
.numasks = LIBPFM_ARRAY_SIZE(snb_l2_lines_out),
.ngrp = 1,
.umasks = snb_l2_lines_out,
},
{ .name = "L2_RQSTS",
.desc = "L2 requests",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x24,
.numasks = LIBPFM_ARRAY_SIZE(snb_l2_rqsts),
.ngrp = 1,
.umasks = snb_l2_rqsts,
},
{ .name = "L2_STORE_LOCK_RQSTS",
.desc = "L2 store lock requests",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x27,
.numasks = LIBPFM_ARRAY_SIZE(snb_l2_store_lock_rqsts),
.ngrp = 1,
.umasks = snb_l2_store_lock_rqsts,
},
{ .name = "L2_TRANS",
.desc = "L2 transactions",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xf0,
.numasks = LIBPFM_ARRAY_SIZE(snb_l2_trans),
.ngrp = 1,
.umasks = snb_l2_trans,
},
{ .name = "LAST_LEVEL_CACHE_MISSES",
.desc = "This is an alias for L3_LAT_CACHE:MISS",
.modmsk = INTEL_V3_ATTRS,
.equiv = "L3_LAT_CACHE:MISS",
.cntmsk = 0xff,
.code = 0x412e,
},
{ .name = "LLC_MISSES",
.desc = "Alias for LAST_LEVEL_CACHE_MISSES",
.modmsk = INTEL_V3_ATTRS,
.equiv = "LAST_LEVEL_CACHE_MISSES",
.cntmsk = 0xff,
.code = 0x412e,
},
{ .name = "LAST_LEVEL_CACHE_REFERENCES",
.desc = "This is an alias for L3_LAT_CACHE:REFERENCE",
.modmsk = INTEL_V3_ATTRS,
.equiv = "L3_LAT_CACHE:REFERENCE",
.cntmsk = 0xff,
.code = 0x4f2e,
},
{ .name = "LLC_REFERENCES",
.desc = "Alias for LAST_LEVEL_CACHE_REFERENCES",
.modmsk = INTEL_V3_ATTRS,
.equiv = "LAST_LEVEL_CACHE_REFERENCES",
.cntmsk = 0xff,
.code = 0x4f2e,
},
{ .name = "LD_BLOCKS",
.desc = "Blocking loads",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x3,
.numasks = LIBPFM_ARRAY_SIZE(snb_ld_blocks),
.ngrp = 1,
.umasks = snb_ld_blocks,
},
{ .name = "LD_BLOCKS_PARTIAL",
.desc = "Partial load blocks",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x7,
.numasks = LIBPFM_ARRAY_SIZE(snb_ld_blocks_partial),
.ngrp = 1,
.umasks = snb_ld_blocks_partial,
},
{ .name = "LOAD_HIT_PRE",
.desc = "Load dispatches that hit fill buffer",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x4c,
.numasks = LIBPFM_ARRAY_SIZE(snb_load_hit_pre),
.ngrp = 1,
.umasks = snb_load_hit_pre,
},
{ .name = "L3_LAT_CACHE",
.desc = "Core-originated cacheable demand requests to L3",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x2e,
.numasks = LIBPFM_ARRAY_SIZE(snb_l3_lat_cache),
.ngrp = 1,
.umasks = snb_l3_lat_cache,
},
{ .name = "MACHINE_CLEARS",
.desc = "Machine clear asserted",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xc3,
.numasks = LIBPFM_ARRAY_SIZE(snb_machine_clears),
.ngrp = 1,
.umasks = snb_machine_clears,
},
{ .name = "MEM_LOAD_UOPS_LLC_HIT_RETIRED",
.desc = "L3 hit loads uops retired",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xd2,
.flags= INTEL_X86_PEBS,
.numasks = LIBPFM_ARRAY_SIZE(snb_mem_load_uops_llc_hit_retired),
.ngrp = 1,
.umasks = snb_mem_load_uops_llc_hit_retired,
},
{ .name = "MEM_LOAD_LLC_HIT_RETIRED",
.desc = "L3 hit loads uops retired (deprecated use MEM_LOAD_UOPS_LLC_HIT_RETIRED)",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xd2,
.equiv = "MEM_LOAD_UOPS_LLC_HIT_RETIRED",
.flags= INTEL_X86_PEBS,
.numasks = LIBPFM_ARRAY_SIZE(snb_mem_load_uops_llc_hit_retired),
.ngrp = 1,
.umasks = snb_mem_load_uops_llc_hit_retired,
},
{ .name = "MEM_LOAD_UOPS_MISC_RETIRED",
.desc = "Loads and some non simd split loads uops retired",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xd4,
.flags= INTEL_X86_PEBS,
.numasks = LIBPFM_ARRAY_SIZE(snb_mem_load_uops_misc_retired),
.ngrp = 1,
.umasks = snb_mem_load_uops_misc_retired,
},
{ .name = "MEM_LOAD_MISC_RETIRED",
.desc = "Loads and some non simd split loads uops retired (deprecated use MEM_LOAD_UOPS_MISC_RETIRED)",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xd4,
.equiv = "MEM_LOAD_UOPS_MISC_RETIRED",
.flags= INTEL_X86_PEBS,
.numasks = LIBPFM_ARRAY_SIZE(snb_mem_load_uops_misc_retired),
.ngrp = 1,
.umasks = snb_mem_load_uops_misc_retired,
},
{ .name = "MEM_LOAD_UOPS_RETIRED",
.desc = "Memory loads uops retired",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xd1,
.flags= INTEL_X86_PEBS,
.numasks = LIBPFM_ARRAY_SIZE(snb_mem_load_uops_retired),
.ngrp = 1,
.umasks = snb_mem_load_uops_retired,
},
{ .name = "MEM_LOAD_RETIRED",
.desc = "Memory loads uops retired (deprecated use MEM_LOAD_UOPS_RETIRED)",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xd1,
.equiv = "MEM_LOAD_UOPS_RETIRED",
.flags= INTEL_X86_PEBS,
.numasks = LIBPFM_ARRAY_SIZE(snb_mem_load_uops_retired),
.ngrp = 1,
.umasks = snb_mem_load_uops_retired,
},
{ .name = "MEM_TRANS_RETIRED",
.desc = "Memory transactions retired",
.modmsk = INTEL_V3_ATTRS | _INTEL_X86_ATTR_LDLAT,
.cntmsk = 0x8,
.code = 0xcd,
.flags= INTEL_X86_PEBS,
.numasks = LIBPFM_ARRAY_SIZE(snb_mem_trans_retired),
.ngrp = 1,
.umasks = snb_mem_trans_retired,
},
{ .name = "MEM_UOPS_RETIRED",
.desc = "Memory uops retired",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xd0,
.flags= INTEL_X86_PEBS,
.numasks = LIBPFM_ARRAY_SIZE(snb_mem_uops_retired),
.ngrp = 1,
.umasks = snb_mem_uops_retired,
},
{ .name = "MEM_UOP_RETIRED",
.desc = "Memory uops retired (deprecated use MEM_UOPS_RETIRED)",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xd0,
.equiv = "MEM_UOPS_RETIRED",
.flags= INTEL_X86_PEBS,
.numasks = LIBPFM_ARRAY_SIZE(snb_mem_uops_retired),
.ngrp = 1,
.umasks = snb_mem_uops_retired,
},
{ .name = "MISALIGN_MEM_REF",
.desc = "Misaligned memory references",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x5,
.numasks = LIBPFM_ARRAY_SIZE(snb_misalign_mem_ref),
.ngrp = 1,
.umasks = snb_misalign_mem_ref,
},
{ .name = "OFFCORE_REQUESTS",
.desc = "Offcore requests",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xb0,
.numasks = LIBPFM_ARRAY_SIZE(snb_offcore_requests),
.ngrp = 1,
.umasks = snb_offcore_requests,
},
{ .name = "OFFCORE_REQUESTS_BUFFER",
.desc = "Offcore requests buffer",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xb2,
.numasks = LIBPFM_ARRAY_SIZE(snb_offcore_requests_buffer),
.ngrp = 1,
.umasks = snb_offcore_requests_buffer,
},
{ .name = "OFFCORE_REQUESTS_OUTSTANDING",
.desc = "Outstanding offcore requests",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x60,
.numasks = LIBPFM_ARRAY_SIZE(snb_offcore_requests_outstanding),
.ngrp = 1,
.umasks = snb_offcore_requests_outstanding,
},
{ .name = "OTHER_ASSISTS",
.desc = "Count hardware assists",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xc1,
.numasks = LIBPFM_ARRAY_SIZE(snb_other_assists),
.ngrp = 1,
.umasks = snb_other_assists,
},
{ .name = "PARTIAL_RAT_STALLS",
.desc = "Partial Register Allocation Table stalls",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x59,
.numasks = LIBPFM_ARRAY_SIZE(snb_partial_rat_stalls),
.ngrp = 1,
.umasks = snb_partial_rat_stalls,
},
{ .name = "RESOURCE_STALLS",
.desc = "Resource related stall cycles",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xa2,
.numasks = LIBPFM_ARRAY_SIZE(snb_resource_stalls),
.ngrp = 1,
.umasks = snb_resource_stalls,
},
{ .name = "RESOURCE_STALLS2",
.desc = "Resource related stall cycles",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x5b,
.numasks = LIBPFM_ARRAY_SIZE(snb_resource_stalls2),
.ngrp = 1,
.umasks = snb_resource_stalls2,
},
{ .name = "ROB_MISC_EVENTS",
.desc = "Reorder buffer events",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xcc,
.numasks = LIBPFM_ARRAY_SIZE(snb_rob_misc_events),
.ngrp = 1,
.umasks = snb_rob_misc_events,
},
{ .name = "RS_EVENTS",
.desc = "Reservation station events",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x5e,
.numasks = LIBPFM_ARRAY_SIZE(snb_rs_events),
.ngrp = 1,
.umasks = snb_rs_events,
},
{ .name = "SIMD_FP_256",
.desc = "Counts 256-bit packed floating point instructions",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0x11,
.numasks = LIBPFM_ARRAY_SIZE(snb_simd_fp_256),
.ngrp = 1,
.umasks = snb_simd_fp_256,
},
{ .name = "SQ_MISC",
.desc = "SuperQ events",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xf4,
.numasks = LIBPFM_ARRAY_SIZE(snb_sq_misc),
.ngrp = 1,
.umasks = snb_sq_misc,
},
{ .name = "TLB_FLUSH",
.desc = "TLB flushes",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xbd,
.numasks = LIBPFM_ARRAY_SIZE(snb_tlb_flush),
.ngrp = 1,
.umasks = snb_tlb_flush,
},
{ .name = "UNHALTED_CORE_CYCLES",
.desc = "Count core clock cycles whenever the clock signal on the specific core is running (not halted)",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0x20000000full,
.code = 0x3c,
},
{ .name = "UNHALTED_REFERENCE_CYCLES",
.desc = "Unhalted reference cycles",
.modmsk = INTEL_FIXED3_ATTRS,
.cntmsk = 0x400000000ull,
.code = 0x0300, /* pseudo encoding */
.flags = INTEL_X86_FIXED,
},
{ .name = "UOPS_EXECUTED",
.desc = "Uops executed",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xb1,
.numasks = LIBPFM_ARRAY_SIZE(snb_uops_executed),
.ngrp = 1,
.umasks = snb_uops_executed,
},
{ .name = "UOPS_DISPATCHED_PORT",
.desc = "Uops dispatch to specific ports",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xa1,
.numasks = LIBPFM_ARRAY_SIZE(snb_uops_dispatched_port),
.ngrp = 1,
.umasks = snb_uops_dispatched_port,
},
{ .name = "UOPS_ISSUED",
.desc = "Uops issued",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xe,
.numasks = LIBPFM_ARRAY_SIZE(snb_uops_issued),
.ngrp = 1,
.umasks = snb_uops_issued,
},
{ .name = "UOPS_RETIRED",
.desc = "Uops retired",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xc2,
.flags= INTEL_X86_PEBS,
.numasks = LIBPFM_ARRAY_SIZE(snb_uops_retired),
.ngrp = 1,
.umasks = snb_uops_retired,
},
{ .name = "CYCLE_ACTIVITY",
.desc = "Stalled cycles",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xa3,
.numasks = LIBPFM_ARRAY_SIZE(snb_cycle_activity),
.ngrp = 1,
.umasks = snb_cycle_activity,
},
{ .name = "EPT",
.desc = "Extended page table",
.modmsk = INTEL_V4_ATTRS,
.cntmsk = 0xff,
.code = 0x4f,
.numasks = LIBPFM_ARRAY_SIZE(snb_ept),
.ngrp = 1,
.umasks = snb_ept,
},
{ .name = "LSD",
.desc = "Loop stream detector",
.code = 0xa8,
.cntmsk = 0xff,
.ngrp = 1,
.modmsk = INTEL_V4_ATTRS,
.numasks = LIBPFM_ARRAY_SIZE(snb_lsd),
.umasks = snb_lsd,
},
{ .name = "PAGE_WALKS",
.desc = "page walker",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xbe,
.numasks = LIBPFM_ARRAY_SIZE(snb_page_walks),
.ngrp = 1,
.umasks = snb_page_walks,
},
{ .name = "MEM_LOAD_UOPS_LLC_MISS_RETIRED",
.desc = "Load uops retired which miss the L3 cache",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xff,
.code = 0xd3,
.flags= INTEL_X86_PEBS,
.numasks = LIBPFM_ARRAY_SIZE(snb_mem_load_uops_llc_miss_retired),
.ngrp = 1,
.umasks = snb_mem_load_uops_llc_miss_retired,
},
{ .name = "OFFCORE_RESPONSE_0",
.desc = "Offcore response event (must provide at least one request type and either any_response or any combination of supplier + snoop)",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xf,
.code = 0x1b7,
.flags= INTEL_X86_NHM_OFFCORE,
.numasks = LIBPFM_ARRAY_SIZE(snb_offcore_response),
.ngrp = 3,
.umasks = snb_offcore_response,
},
{ .name = "OFFCORE_RESPONSE_1",
.desc = "Offcore response event (must provide at least one request type and either any_response or any combination of supplier + snoop)",
.modmsk = INTEL_V3_ATTRS,
.cntmsk = 0xf,
.code = 0x1bb,
.flags= INTEL_X86_NHM_OFFCORE,
.numasks = LIBPFM_ARRAY_SIZE(snb_offcore_response),
.ngrp = 3,
.umasks = snb_offcore_response, /* identical to actual umasks list for this event */
},
};
|