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
|
/*
* Copyright (c) 2006 IBM Corp.
* Contributed by Kevin Corry <kevcorry@us.ibm.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 header contains arrays to describe the Event-Selection-Control
* Registers (ESCRs), Counter-Configuration-Control Registers (CCCRs),
* and countable events on Pentium4/Xeon/EM64T systems.
*
* For more details, see:
* - IA-32 Intel Architecture Software Developer's Manual,
* Volume 3B: System Programming Guide, Part 2
* (available at: http://www.intel.com/design/Pentium4/manuals/253669.htm)
* - Chapter 18.10: Performance Monitoring Overview
* - Chapter 18.13: Performance Monitoring - Pentium4 and Xeon Processors
* - Chapter 18.14: Performance Monitoring and Hyper-Threading Technology
* - Appendix A.1: Pentium4 and Xeon Processor Performance-Monitoring Events
*
* This header also contains an array to describe how the Perfmon PMCs map to
* the ESCRs and CCCRs.
*/
#ifndef _NETBURST_EVENTS_H_
#define _NETBURST_EVENTS_H_
/**
* netburst_events
*
* Array of events that can be counted on Pentium4.
**/
static const netburst_entry_t netburst_events[] = {
/* 0 */
{.name = "TC_deliver_mode",
.desc = "The duration (in clock cycles) of the operating modes of "
"the trace cache and decode engine in the processor package",
.event_select = 0x1,
.escr_select = 0x1,
.allowed_escrs = { 9, 32 },
.perf_code = P4_EVENT_TC_DELIVER_MODE,
.event_masks = {
{.name = "DD",
.desc = "Both logical CPUs in deliver mode",
.bit = 0,
},
{.name = "DB",
.desc = "Logical CPU 0 in deliver mode and "
"logical CPU 1 in build mode",
.bit = 1,
},
{.name = "DI",
.desc = "Logical CPU 0 in deliver mode and logical CPU 1 "
"either halted, under machine clear condition, or "
"transitioning to a long microcode flow",
.bit = 2,
},
{.name = "BD",
.desc = "Logical CPU 0 in build mode and "
"logical CPU 1 is in deliver mode",
.bit = 3,
},
{.name = "BB",
.desc = "Both logical CPUs in build mode",
.bit = 4,
},
{.name = "BI",
.desc = "Logical CPU 0 in build mode and logical CPU 1 "
"either halted, under machine clear condition, or "
"transitioning to a long microcode flow",
.bit = 5,
},
{.name = "ID",
.desc = "Logical CPU 0 either halted, under machine clear "
"condition, or transitioning to a long microcode "
"flow, and logical CPU 1 in deliver mode",
.bit = 6,
},
{.name = "IB",
.desc = "Logical CPU 0 either halted, under machine clear "
"condition, or transitioning to a long microcode "
"flow, and logical CPU 1 in build mode",
.bit = 7,
},
},
},
/* 1 */
{.name = "BPU_fetch_request",
.desc = "Instruction fetch requests by the Branch Prediction Unit",
.event_select = 0x3,
.escr_select = 0x0,
.allowed_escrs = { 0, 23 },
.perf_code = P4_EVENT_BPU_FETCH_REQUEST,
.event_masks = {
{.name = "TCMISS",
.desc = "Trace cache lookup miss",
.bit = 0,
.flags = NETBURST_FL_DFL,
},
},
},
/* 2 */
{.name = "ITLB_reference",
.desc = "Translations using the Instruction "
"Translation Look-Aside Buffer",
.event_select = 0x18,
.escr_select = 0x3,
.allowed_escrs = { 3, 26 },
.perf_code = P4_EVENT_ITLB_REFERENCE,
.event_masks = {
{.name = "HIT",
.desc = "ITLB hit",
.bit = 0,
},
{.name = "MISS",
.desc = "ITLB miss",
.bit = 1,
},
{.name = "HIT_UC",
.desc = "Uncacheable ITLB hit",
.bit = 2,
},
},
},
/* 3 */
{.name = "memory_cancel",
.desc = "Canceling of various types of requests in the "
"Data cache Address Control unit (DAC)",
.event_select = 0x2,
.escr_select = 0x5,
.allowed_escrs = { 15, 38 },
.perf_code = P4_EVENT_MEMORY_CANCEL,
.event_masks = {
{.name = "ST_RB_FULL",
.desc = "Replayed because no store request "
"buffer is available",
.bit = 2,
},
{.name = "64K_CONF",
.desc = "Conflicts due to 64K aliasing",
.bit = 3,
},
},
},
/* 4 */
{.name = "memory_complete",
.desc = "Completions of a load split, store split, "
"uncacheable (UC) split, or UC load",
.event_select = 0x8,
.escr_select = 0x2,
.allowed_escrs = { 13, 36 },
.perf_code = P4_EVENT_MEMORY_COMPLETE,
.event_masks = {
{.name = "LSC",
.desc = "Load split completed, excluding UC/WC loads",
.bit = 0,
},
{.name = "SSC",
.desc = "Any split stores completed",
.bit = 1,
},
},
},
/* 5 */
{.name = "load_port_replay",
.desc = "Replayed events at the load port",
.event_select = 0x4,
.escr_select = 0x2,
.allowed_escrs = { 13, 36 },
.perf_code = P4_EVENT_LOAD_PORT_REPLAY,
.event_masks = {
{.name = "SPLIT_LD",
.desc = "Split load",
.bit = 1,
.flags = NETBURST_FL_DFL,
},
},
},
/* 6 */
{.name = "store_port_replay",
.desc = "Replayed events at the store port",
.event_select = 0x5,
.escr_select = 0x2,
.allowed_escrs = { 13, 36 },
.perf_code = P4_EVENT_STORE_PORT_REPLAY,
.event_masks = {
{.name = "SPLIT_ST",
.desc = "Split store",
.bit = 1,
.flags = NETBURST_FL_DFL,
},
},
},
/* 7 */
{.name = "MOB_load_replay",
.desc = "Count of times the memory order buffer (MOB) "
"caused a load operation to be replayed",
.event_select = 0x3,
.escr_select = 0x2,
.allowed_escrs = { 2, 25 },
.perf_code = P4_EVENT_MOB_LOAD_REPLAY,
.event_masks = {
{.name = "NO_STA",
.desc = "Replayed because of unknown store address",
.bit = 1,
},
{.name = "NO_STD",
.desc = "Replayed because of unknown store data",
.bit = 3,
},
{.name = "PARTIAL_DATA",
.desc = "Replayed because of partially overlapped data "
"access between the load and store operations",
.bit = 4,
},
{.name = "UNALGN_ADDR",
.desc = "Replayed because the lower 4 bits of the "
"linear address do not match between the "
"load and store operations",
.bit = 5,
},
},
},
/* 8 */
{.name = "page_walk_type",
.desc = "Page walks that the page miss handler (PMH) performs",
.event_select = 0x1,
.escr_select = 0x4,
.allowed_escrs = { 4, 27 },
.perf_code = P4_EVENT_PAGE_WALK_TYPE,
.event_masks = {
{.name = "DTMISS",
.desc = "Page walk for a data TLB miss (load or store)",
.bit = 0,
},
{.name = "ITMISS",
.desc = "Page walk for an instruction TLB miss",
.bit = 1,
},
},
},
/* 9 */
{.name = "BSQ_cache_reference",
.desc = "Cache references (2nd or 3rd level caches) as seen by the "
"bus unit. Read types include both load and RFO, and write "
"types include writebacks and evictions",
.event_select = 0xC,
.escr_select = 0x7,
.allowed_escrs = { 7, 30 },
.perf_code = P4_EVENT_BSQ_CACHE_REFERENCE,
.event_masks = {
{.name = "RD_2ndL_HITS",
.desc = "Read 2nd level cache hit Shared",
.bit = 0,
},
{.name = "RD_2ndL_HITE",
.desc = "Read 2nd level cache hit Exclusive",
.bit = 1,
},
{.name = "RD_2ndL_HITM",
.desc = "Read 2nd level cache hit Modified",
.bit = 2,
},
{.name = "RD_3rdL_HITS",
.desc = "Read 3rd level cache hit Shared",
.bit = 3,
},
{.name = "RD_3rdL_HITE",
.desc = "Read 3rd level cache hit Exclusive",
.bit = 4,
},
{.name = "RD_3rdL_HITM",
.desc = "Read 3rd level cache hit Modified",
.bit = 5,
},
{.name = "RD_2ndL_MISS",
.desc = "Read 2nd level cache miss",
.bit = 8,
},
{.name = "RD_3rdL_MISS",
.desc = "Read 3rd level cache miss",
.bit = 9,
},
{.name = "WR_2ndL_MISS",
.desc = "A writeback lookup from DAC misses the 2nd "
"level cache (unlikely to happen)",
.bit = 10,
},
},
},
/* 10 */
{.name = "IOQ_allocation",
.desc = "Count of various types of transactions on the bus. A count "
"is generated each time a transaction is allocated into the "
"IOQ that matches the specified mask bits. An allocated entry "
"can be a sector (64 bytes) or a chunk of 8 bytes. Requests "
"are counted once per retry. All 'TYPE_BIT*' event-masks "
"together are treated as a single 5-bit value",
.event_select = 0x3,
.escr_select = 0x6,
.allowed_escrs = { 6, 29 },
.perf_code = P4_EVENT_IOQ_ALLOCATION,
.event_masks = {
{.name = "TYPE_BIT0",
.desc = "Bus request type (bit 0)",
.bit = 0,
},
{.name = "TYPE_BIT1",
.desc = "Bus request type (bit 1)",
.bit = 1,
},
{.name = "TYPE_BIT2",
.desc = "Bus request type (bit 2)",
.bit = 2,
},
{.name = "TYPE_BIT3",
.desc = "Bus request type (bit 3)",
.bit = 3,
},
{.name = "TYPE_BIT4",
.desc = "Bus request type (bit 4)",
.bit = 4,
},
{.name = "ALL_READ",
.desc = "Count read entries",
.bit = 5,
},
{.name = "ALL_WRITE",
.desc = "Count write entries",
.bit = 6,
},
{.name = "MEM_UC",
.desc = "Count UC memory access entries",
.bit = 7,
},
{.name = "MEM_WC",
.desc = "Count WC memory access entries",
.bit = 8,
},
{.name = "MEM_WT",
.desc = "Count write-through (WT) memory access entries",
.bit = 9,
},
{.name = "MEM_WP",
.desc = "Count write-protected (WP) memory access entries",
.bit = 10,
},
{.name = "MEM_WB",
.desc = "Count WB memory access entries",
.bit = 11,
},
{.name = "OWN",
.desc = "Count all store requests driven by processor, as "
"opposed to other processor or DMA",
.bit = 13,
},
{.name = "OTHER",
.desc = "Count all requests driven by other "
"processors or DMA",
.bit = 14,
},
{.name = "PREFETCH",
.desc = "Include HW and SW prefetch requests in the count",
.bit = 15,
},
},
},
/* 11 */
{.name = "IOQ_active_entries",
.desc = "Number of entries (clipped at 15) in the IOQ that are "
"active. An allocated entry can be a sector (64 bytes) "
"or a chunk of 8 bytes. This event must be programmed in "
"conjunction with IOQ_allocation. All 'TYPE_BIT*' event-masks "
"together are treated as a single 5-bit value",
.event_select = 0x1A,
.escr_select = 0x6,
.allowed_escrs = { 29, -1 },
.perf_code = P4_EVENT_IOQ_ACTIVE_ENTRIES,
.event_masks = {
{.name = "TYPE_BIT0",
.desc = "Bus request type (bit 0)",
.bit = 0,
},
{.name = "TYPE_BIT1",
.desc = "Bus request type (bit 1)",
.bit = 1,
},
{.name = "TYPE_BIT2",
.desc = "Bus request type (bit 2)",
.bit = 2,
},
{.name = "TYPE_BIT3",
.desc = "Bus request type (bit 3)",
.bit = 3,
},
{.name = "TYPE_BIT4",
.desc = "Bus request type (bit 4)",
.bit = 4,
},
{.name = "ALL_READ",
.desc = "Count read entries",
.bit = 5,
},
{.name = "ALL_WRITE",
.desc = "Count write entries",
.bit = 6,
},
{.name = "MEM_UC",
.desc = "Count UC memory access entries",
.bit = 7,
},
{.name = "MEM_WC",
.desc = "Count WC memory access entries",
.bit = 8,
},
{.name = "MEM_WT",
.desc = "Count write-through (WT) memory access entries",
.bit = 9,
},
{.name = "MEM_WP",
.desc = "Count write-protected (WP) memory access entries",
.bit = 10,
},
{.name = "MEM_WB",
.desc = "Count WB memory access entries",
.bit = 11,
},
{.name = "OWN",
.desc = "Count all store requests driven by processor, as "
"opposed to other processor or DMA",
.bit = 13,
},
{.name = "OTHER",
.desc = "Count all requests driven by other "
"processors or DMA",
.bit = 14,
},
{.name = "PREFETCH",
.desc = "Include HW and SW prefetch requests in the count",
.bit = 15,
},
},
},
/* 12 */
{.name = "FSB_data_activity",
.desc = "Count of DRDY or DBSY events that "
"occur on the front side bus",
.event_select = 0x17,
.escr_select = 0x6,
.allowed_escrs = { 6, 29 },
.perf_code = P4_EVENT_FSB_DATA_ACTIVITY,
.event_masks = {
{.name = "DRDY_DRV",
.desc = "Count when this processor drives data onto the bus. "
"Includes writes and implicit writebacks",
.bit = 0,
},
{.name = "DRDY_OWN",
.desc = "Count when this processor reads data from the bus. "
"Includes loads and some PIC transactions. Count "
"DRDY events that we drive. Count DRDY events sampled "
"that we own",
.bit = 1,
},
{.name = "DRDY_OTHER",
.desc = "Count when data is on the bus but not being sampled "
"by the processor. It may or may not be driven by "
"this processor",
.bit = 2,
},
{.name = "DBSY_DRV",
.desc = "Count when this processor reserves the bus for use "
"in the next bus cycle in order to drive data",
.bit = 3,
},
{.name = "DBSY_OWN",
.desc = "Count when some agent reserves the bus for use in "
"the next bus cycle to drive data that this processor "
"will sample",
.bit = 4,
},
{.name = "DBSY_OTHER",
.desc = "Count when some agent reserves the bus for use in "
"the next bus cycle to drive data that this processor "
"will NOT sample. It may or may not be being driven "
"by this processor",
.bit = 5,
},
},
},
/* 13 */
{.name = "BSQ_allocation",
.desc = "Allocations in the Bus Sequence Unit (BSQ). The event mask "
"bits consist of four sub-groups: request type, request "
"length, memory type, and a sub-group consisting mostly of "
"independent bits (5 through 10). Must specify a mask for "
"each sub-group",
.event_select = 0x5,
.escr_select = 0x7,
.allowed_escrs = { 7, -1 },
.perf_code = P4_EVENT_BSQ_ALLOCATION,
.event_masks = {
{.name = "REQ_TYPE0",
.desc = "Along with REQ_TYPE1, request type encodings are: "
"0 - Read (excludes read invalidate), 1 - Read "
"invalidate, 2 - Write (other than writebacks), 3 - "
"Writeback (evicted from cache)",
.bit = 0,
},
{.name = "REQ_TYPE1",
.desc = "Along with REQ_TYPE0, request type encodings are: "
"0 - Read (excludes read invalidate), 1 - Read "
"invalidate, 2 - Write (other than writebacks), 3 - "
"Writeback (evicted from cache)",
.bit = 1,
},
{.name = "REQ_LEN0",
.desc = "Along with REQ_LEN1, request length encodings are: "
"0 - zero chunks, 1 - one chunk, 3 - eight chunks",
.bit = 2,
},
{.name = "REQ_LEN1",
.desc = "Along with REQ_LEN0, request length encodings are: "
"0 - zero chunks, 1 - one chunk, 3 - eight chunks",
.bit = 3,
},
{.name = "REQ_IO_TYPE",
.desc = "Request type is input or output",
.bit = 5,
},
{.name = "REQ_LOCK_TYPE",
.desc = "Request type is bus lock",
.bit = 6,
},
{.name = "REQ_CACHE_TYPE",
.desc = "Request type is cacheable",
.bit = 7,
},
{.name = "REQ_SPLIT_TYPE",
.desc = "Request type is a bus 8-byte chunk split across "
"an 8-byte boundary",
.bit = 8,
},
{.name = "REQ_DEM_TYPE",
.desc = "0: Request type is HW.SW prefetch. "
"1: Request type is a demand",
.bit = 9,
},
{.name = "REQ_ORD_TYPE",
.desc = "Request is an ordered type",
.bit = 10,
},
{.name = "MEM_TYPE0",
.desc = "Along with MEM_TYPE1 and MEM_TYPE2, "
"memory type encodings are: 0 - UC, "
"1 - USWC, 4- WT, 5 - WP, 6 - WB",
.bit = 11,
},
{.name = "MEM_TYPE1",
.desc = "Along with MEM_TYPE0 and MEM_TYPE2, "
"memory type encodings are: 0 - UC, "
"1 - USWC, 4- WT, 5 - WP, 6 - WB",
.bit = 12,
},
{.name = "MEM_TYPE2",
.desc = "Along with MEM_TYPE0 and MEM_TYPE1, "
"memory type encodings are: 0 - UC, "
"1 - USWC, 4- WT, 5 - WP, 6 - WB",
.bit = 13,
},
},
},
/* 14 */
{.name = "BSQ_active_entries",
.desc = "Number of BSQ entries (clipped at 15) currently active "
"(valid) which meet the subevent mask criteria during "
"allocation in the BSQ. Active request entries are allocated "
"on the BSQ until de-allocated. De-allocation of an entry "
"does not necessarily imply the request is filled. This "
"event must be programmed in conjunction with BSQ_allocation",
.event_select = 0x6,
.escr_select = 0x7,
.allowed_escrs = { 30, -1 },
.perf_code = P4_EVENT_BSQ_ACTIVE_ENTRIES,
.event_masks = {
{.name = "REQ_TYPE0",
.desc = "Along with REQ_TYPE1, request type encodings are: "
"0 - Read (excludes read invalidate), 1 - Read "
"invalidate, 2 - Write (other than writebacks), 3 - "
"Writeback (evicted from cache)",
.bit = 0,
},
{.name = "REQ_TYPE1",
.desc = "Along with REQ_TYPE0, request type encodings are: "
"0 - Read (excludes read invalidate), 1 - Read "
"invalidate, 2 - Write (other than writebacks), 3 - "
"Writeback (evicted from cache)",
.bit = 1,
},
{.name = "REQ_LEN0",
.desc = "Along with REQ_LEN1, request length encodings are: "
"0 - zero chunks, 1 - one chunk, 3 - eight chunks",
.bit = 2,
},
{.name = "REQ_LEN1",
.desc = "Along with REQ_LEN0, request length encodings are: "
"0 - zero chunks, 1 - one chunk, 3 - eight chunks",
.bit = 3,
},
{.name = "REQ_IO_TYPE",
.desc = "Request type is input or output",
.bit = 5,
},
{.name = "REQ_LOCK_TYPE",
.desc = "Request type is bus lock",
.bit = 6,
},
{.name = "REQ_CACHE_TYPE",
.desc = "Request type is cacheable",
.bit = 7,
},
{.name = "REQ_SPLIT_TYPE",
.desc = "Request type is a bus 8-byte chunk split across "
"an 8-byte boundary",
.bit = 8,
},
{.name = "REQ_DEM_TYPE",
.desc = "0: Request type is HW.SW prefetch. "
"1: Request type is a demand",
.bit = 9,
},
{.name = "REQ_ORD_TYPE",
.desc = "Request is an ordered type",
.bit = 10,
},
{.name = "MEM_TYPE0",
.desc = "Along with MEM_TYPE1 and MEM_TYPE2, "
"memory type encodings are: 0 - UC, "
"1 - USWC, 4- WT, 5 - WP, 6 - WB",
.bit = 11,
},
{.name = "MEM_TYPE1",
.desc = "Along with MEM_TYPE0 and MEM_TYPE2, "
"memory type encodings are: 0 - UC, "
"1 - USWC, 4- WT, 5 - WP, 6 - WB",
.bit = 12,
},
{.name = "MEM_TYPE2",
.desc = "Along with MEM_TYPE0 and MEM_TYPE1, "
"memory type encodings are: 0 - UC, "
"1 - USWC, 4- WT, 5 - WP, 6 - WB",
.bit = 13,
},
},
},
/* 15 */
{.name = "SSE_input_assist",
.desc = "Number of times an assist is requested to handle problems "
"with input operands for SSE/SSE2/SSE3 operations; most "
"notably denormal source operands when the DAZ bit isn't set",
.event_select = 0x34,
.escr_select = 0x1,
.allowed_escrs = { 12, 35 },
.perf_code = P4_EVENT_SSE_INPUT_ASSIST,
.event_masks = {
{.name = "ALL",
.desc = "Count assists for SSE/SSE2/SSE3 uops",
.bit = 15,
.flags = NETBURST_FL_DFL,
},
},
},
/* 16 */
{.name = "packed_SP_uop",
.desc = "Number of packed single-precision uops",
.event_select = 0x8,
.escr_select = 0x1,
.perf_code = P4_EVENT_PACKED_SP_UOP,
.allowed_escrs = { 12, 35 },
.event_masks = {
{.name = "ALL",
.desc = "Count all uops operating on packed "
"single-precisions operands",
.bit = 15,
.flags = NETBURST_FL_DFL,
},
{.name = "TAG0",
.desc = "Tag this event with tag bit 0 "
"for retirement counting with execution_event",
.bit = 16,
},
{.name = "TAG1",
.desc = "Tag this event with tag bit 1 "
"for retirement counting with execution_event",
.bit = 17,
},
{.name = "TAG2",
.desc = "Tag this event with tag bit 2 "
"for retirement counting with execution_event",
.bit = 18,
},
{.name = "TAG3",
.desc = "Tag this event with tag bit 3 "
"for retirement counting with execution_event",
.bit = 19,
},
},
},
/* 17 */
{.name = "packed_DP_uop",
.desc = "Number of packed double-precision uops",
.event_select = 0xC,
.escr_select = 0x1,
.allowed_escrs = { 12, 35 },
.perf_code = P4_EVENT_PACKED_DP_UOP,
.event_masks = {
{.name = "ALL",
.desc = "Count all uops operating on packed "
"double-precisions operands",
.bit = 15,
.flags = NETBURST_FL_DFL,
},
{.name = "TAG0",
.desc = "Tag this event with tag bit 0 "
"for retirement counting with execution_event",
.bit = 16,
},
{.name = "TAG1",
.desc = "Tag this event with tag bit 1 "
"for retirement counting with execution_event",
.bit = 17,
},
{.name = "TAG2",
.desc = "Tag this event with tag bit 2 "
"for retirement counting with execution_event",
.bit = 18,
},
{.name = "TAG3",
.desc = "Tag this event with tag bit 3 "
"for retirement counting with execution_event",
.bit = 19,
},
},
},
/* 18 */
{.name = "scalar_SP_uop",
.desc = "Number of scalar single-precision uops",
.event_select = 0xA,
.escr_select = 0x1,
.allowed_escrs = { 12, 35 },
.perf_code = P4_EVENT_SCALAR_SP_UOP,
.event_masks = {
{.name = "ALL",
.desc = "Count all uops operating on scalar "
"single-precisions operands",
.bit = 15,
.flags = NETBURST_FL_DFL,
},
{.name = "TAG0",
.desc = "Tag this event with tag bit 0 "
"for retirement counting with execution_event",
.bit = 16,
},
{.name = "TAG1",
.desc = "Tag this event with tag bit 1 "
"for retirement counting with execution_event",
.bit = 17,
},
{.name = "TAG2",
.desc = "Tag this event with tag bit 2 "
"for retirement counting with execution_event",
.bit = 18,
},
{.name = "TAG3",
.desc = "Tag this event with tag bit 3 "
"for retirement counting with execution_event",
.bit = 19,
},
},
},
/* 19 */
{.name = "scalar_DP_uop",
.desc = "Number of scalar double-precision uops",
.event_select = 0xE,
.escr_select = 0x1,
.allowed_escrs = { 12, 35 },
.perf_code = P4_EVENT_SCALAR_DP_UOP,
.event_masks = {
{.name = "ALL",
.desc = "Count all uops operating on scalar "
"double-precisions operands",
.bit = 15,
.flags = NETBURST_FL_DFL,
},
{.name = "TAG0",
.desc = "Tag this event with tag bit 0 "
"for retirement counting with execution_event",
.bit = 16,
},
{.name = "TAG1",
.desc = "Tag this event with tag bit 1 "
"for retirement counting with execution_event",
.bit = 17,
},
{.name = "TAG2",
.desc = "Tag this event with tag bit 2 "
"for retirement counting with execution_event",
.bit = 18,
},
{.name = "TAG3",
.desc = "Tag this event with tag bit 3 "
"for retirement counting with execution_event",
.bit = 19,
},
},
},
/* 20 */
{.name = "64bit_MMX_uop",
.desc = "Number of MMX instructions which "
"operate on 64-bit SIMD operands",
.event_select = 0x2,
.escr_select = 0x1,
.allowed_escrs = { 12, 35 },
.perf_code = P4_EVENT_64BIT_MMX_UOP,
.event_masks = {
{.name = "ALL",
.desc = "Count all uops operating on 64-bit SIMD integer "
"operands in memory or MMX registers",
.bit = 15,
.flags = NETBURST_FL_DFL,
},
{.name = "TAG0",
.desc = "Tag this event with tag bit 0 "
"for retirement counting with execution_event",
.bit = 16,
},
{.name = "TAG1",
.desc = "Tag this event with tag bit 1 "
"for retirement counting with execution_event",
.bit = 17,
},
{.name = "TAG2",
.desc = "Tag this event with tag bit 2 "
"for retirement counting with execution_event",
.bit = 18,
},
{.name = "TAG3",
.desc = "Tag this event with tag bit 3 "
"for retirement counting with execution_event",
.bit = 19,
},
},
},
/* 21 */
{.name = "128bit_MMX_uop",
.desc = "Number of MMX instructions which "
"operate on 128-bit SIMD operands",
.event_select = 0x1A,
.escr_select = 0x1,
.allowed_escrs = { 12, 35 },
.perf_code = P4_EVENT_128BIT_MMX_UOP,
.event_masks = {
{.name = "ALL",
.desc = "Count all uops operating on 128-bit SIMD integer "
"operands in memory or MMX registers",
.bit = 15,
.flags = NETBURST_FL_DFL,
},
{.name = "TAG0",
.desc = "Tag this event with tag bit 0 "
"for retirement counting with execution_event",
.bit = 16,
},
{.name = "TAG1",
.desc = "Tag this event with tag bit 1 "
"for retirement counting with execution_event",
.bit = 17,
},
{.name = "TAG2",
.desc = "Tag this event with tag bit 2 "
"for retirement counting with execution_event",
.bit = 18,
},
{.name = "TAG3",
.desc = "Tag this event with tag bit 3 "
"for retirement counting with execution_event",
.bit = 19,
},
},
},
/* 22 */
{.name = "x87_FP_uop",
.desc = "Number of x87 floating-point uops",
.event_select = 0x4,
.escr_select = 0x1,
.allowed_escrs = { 12, 35 },
.perf_code = P4_EVENT_X87_FP_UOP,
.event_masks = {
{.name = "ALL",
.desc = "Count all x87 FP uops",
.bit = 15,
.flags = NETBURST_FL_DFL,
},
{.name = "TAG0",
.desc = "Tag this event with tag bit 0 "
"for retirement counting with execution_event",
.bit = 16,
},
{.name = "TAG1",
.desc = "Tag this event with tag bit 1 "
"for retirement counting with execution_event",
.bit = 17,
},
{.name = "TAG2",
.desc = "Tag this event with tag bit 2 "
"for retirement counting with execution_event",
.bit = 18,
},
{.name = "TAG3",
.desc = "Tag this event with tag bit 3 "
"for retirement counting with execution_event",
.bit = 19,
},
},
},
/* 23 */
{.name = "TC_misc",
.desc = "Miscellaneous events detected by the TC. The counter will "
"count twice for each occurrence",
.event_select = 0x6,
.escr_select = 0x1,
.allowed_escrs = { 9, 32 },
.perf_code = P4_EVENT_TC_MISC,
.event_masks = {
{.name = "FLUSH",
.desc = "Number of flushes",
.bit = 4,
.flags = NETBURST_FL_DFL,
},
},
},
/* 24 */
{.name = "global_power_events",
.desc = "Counts the time during which a processor is not stopped",
.event_select = 0x13,
.escr_select = 0x6,
.allowed_escrs = { 6, 29 },
.perf_code = P4_EVENT_GLOBAL_POWER_EVENTS,
.event_masks = {
{.name = "RUNNING",
.desc = "The processor is active (includes the "
"handling of HLT STPCLK and throttling",
.bit = 0,
.flags = NETBURST_FL_DFL,
},
},
},
/* 25 */
{.name = "tc_ms_xfer",
.desc = "Number of times that uop delivery changed from TC to MS ROM",
.event_select = 0x5,
.escr_select = 0x0,
.allowed_escrs = { 8, 31 },
.perf_code = P4_EVENT_TC_MS_XFER,
.event_masks = {
{.name = "CISC",
.desc = "A TC to MS transfer occurred",
.bit = 0,
.flags = NETBURST_FL_DFL,
},
},
},
/* 26 */
{.name = "uop_queue_writes",
.desc = "Number of valid uops written to the uop queue",
.event_select = 0x9,
.escr_select = 0x0,
.allowed_escrs = { 8, 31 },
.perf_code = P4_EVENT_UOP_QUEUE_WRITES,
.event_masks = {
{.name = "FROM_TC_BUILD",
.desc = "The uops being written are from TC build mode",
.bit = 0,
},
{.name = "FROM_TC_DELIVER",
.desc = "The uops being written are from TC deliver mode",
.bit = 1,
},
{.name = "FROM_ROM",
.desc = "The uops being written are from microcode ROM",
.bit = 2,
},
},
},
/* 27 */
{.name = "retired_mispred_branch_type",
.desc = "Number of retiring mispredicted branches by type",
.event_select = 0x5,
.escr_select = 0x2,
.allowed_escrs = { 10, 33 },
.perf_code = P4_EVENT_RETIRED_MISPRED_BRANCH_TYPE,
.event_masks = {
{.name = "CONDITIONAL",
.desc = "Conditional jumps",
.bit = 1,
},
{.name = "CALL",
.desc = "Indirect call branches",
.bit = 2,
},
{.name = "RETURN",
.desc = "Return branches",
.bit = 3,
},
{.name = "INDIRECT",
.desc = "Returns, indirect calls, or indirect jumps",
.bit = 4,
},
},
},
/* 28 */
{.name = "retired_branch_type",
.desc = "Number of retiring branches by type",
.event_select = 0x4,
.escr_select = 0x2,
.allowed_escrs = { 10, 33 },
.perf_code = P4_EVENT_RETIRED_BRANCH_TYPE,
.event_masks = {
{.name = "CONDITIONAL",
.desc = "Conditional jumps",
.bit = 1,
},
{.name = "CALL",
.desc = "Indirect call branches",
.bit = 2,
},
{.name = "RETURN",
.desc = "Return branches",
.bit = 3,
},
{.name = "INDIRECT",
.desc = "Returns, indirect calls, or indirect jumps",
.bit = 4,
},
},
},
/* 29 */
{.name = "resource_stall",
.desc = "Occurrences of latency or stalls in the Allocator",
.event_select = 0x1,
.escr_select = 0x1,
.allowed_escrs = { 17, 40 },
.perf_code = P4_EVENT_RESOURCE_STALL,
.event_masks = {
{.name = "SBFULL",
.desc = "A stall due to lack of store buffers",
.bit = 5,
.flags = NETBURST_FL_DFL,
},
},
},
/* 30 */
{.name = "WC_Buffer",
.desc = "Number of Write Combining Buffer operations",
.event_select = 0x5,
.escr_select = 0x5,
.allowed_escrs = { 15, 38 },
.perf_code = P4_EVENT_WC_BUFFER,
.event_masks = {
{.name = "WCB_EVICTS",
.desc = "WC Buffer evictions of all causes",
.bit = 0,
},
{.name = "WCB_FULL_EVICT",
.desc = "WC Buffer eviction; no WC buffer is available",
.bit = 1,
},
},
},
/* 31 */
{.name = "b2b_cycles",
.desc = "Number of back-to-back bus cycles",
.event_select = 0x16,
.escr_select = 0x3,
.allowed_escrs = { 6, 29 },
.perf_code = P4_EVENT_B2B_CYCLES,
.event_masks = {
{.name = "BIT1",
.desc = "bit 1",
.bit = 1,
},
{.name = "BIT2",
.desc = "bit 2",
.bit = 2,
},
{.name = "BIT3",
.desc = "bit 3",
.bit = 3,
},
{.name = "BIT4",
.desc = "bit 4",
.bit = 4,
},
{.name = "BIT5",
.desc = "bit 5",
.bit = 4,
},
{.name = "BIT6",
.desc = "bit 6",
.bit = 4,
},
},
},
/* 32 */
{.name = "bnr",
.desc = "Number of bus-not-ready conditions",
.event_select = 0x8,
.escr_select = 0x3,
.allowed_escrs = { 6, 29 },
.perf_code = P4_EVENT_BNR,
.event_masks = {
{.name = "BIT0",
.desc = "bit 0",
.bit = 0,
},
{.name = "BIT1",
.desc = "bit 1",
.bit = 1,
},
{.name = "BIT2",
.desc = "bit 2",
.bit = 2,
},
},
},
/* 33 */
{.name = "snoop",
.desc = "Number of snoop hit modified bus traffic",
.event_select = 0x6,
.escr_select = 0x3,
.allowed_escrs = { 6, 29 },
.perf_code = P4_EVENT_SNOOP,
.event_masks = {
{.name = "BIT2",
.desc = "bit 2",
.bit = 2,
},
{.name = "BIT6",
.desc = "bit 6",
.bit = 6,
},
{.name = "BIT7",
.desc = "bit 7",
.bit = 7,
},
},
},
/* 34 */
{.name = "response",
.desc = "Count of different types of responses",
.event_select = 0x4,
.escr_select = 0x3,
.allowed_escrs = { 6, 29 },
.perf_code = P4_EVENT_RESPONSE,
.event_masks = {
{.name = "BIT1",
.desc = "bit 1",
.bit = 1,
},
{.name = "BIT2",
.desc = "bit 2",
.bit = 2,
},
{.name = "BIT8",
.desc = "bit 8",
.bit = 8,
},
{.name = "BIT9",
.desc = "bit 9",
.bit = 9,
},
},
},
/* 35 */
{.name = "front_end_event",
.desc = "Number of retirements of tagged uops which are specified "
"through the front-end tagging mechanism",
.event_select = 0x8,
.escr_select = 0x5,
.allowed_escrs = { 21, 43 },
.perf_code = P4_EVENT_FRONT_END_EVENT,
.event_masks = {
{.name = "NBOGUS",
.desc = "The marked uops are not bogus",
.bit = 0,
},
{.name = "BOGUS",
.desc = "The marked uops are bogus",
.bit = 1,
},
},
},
/* 36 */
{.name = "execution_event",
.desc = "Number of retirements of tagged uops which are specified "
"through the execution tagging mechanism. The event-mask "
"allows from one to four types of uops to be tagged",
.event_select = 0xC,
.escr_select = 0x5,
.allowed_escrs = { 21, 43 },
.perf_code = P4_EVENT_EXECUTION_EVENT,
.event_masks = {
{.name = "NBOGUS0",
.desc = "The marked uops are not bogus",
.bit = 0,
},
{.name = "NBOGUS1",
.desc = "The marked uops are not bogus",
.bit = 1,
},
{.name = "NBOGUS2",
.desc = "The marked uops are not bogus",
.bit = 2,
},
{.name = "NBOGUS3",
.desc = "The marked uops are not bogus",
.bit = 3,
},
{.name = "BOGUS0",
.desc = "The marked uops are bogus",
.bit = 4,
},
{.name = "BOGUS1",
.desc = "The marked uops are bogus",
.bit = 5,
},
{.name = "BOGUS2",
.desc = "The marked uops are bogus",
.bit = 6,
},
{.name = "BOGUS3",
.desc = "The marked uops are bogus",
.bit = 7,
},
},
},
/* 37 */
{.name = "replay_event",
.desc = "Number of retirements of tagged uops which are specified "
"through the replay tagging mechanism",
.event_select = 0x9,
.escr_select = 0x5,
.allowed_escrs = { 21, 43 },
.perf_code = P4_EVENT_REPLAY_EVENT,
.event_masks = {
{.name = "NBOGUS",
.desc = "The marked uops are not bogus",
.bit = 0,
},
{.name = "BOGUS",
.desc = "The marked uops are bogus",
.bit = 1,
},
{.name = "L1_LD_MISS",
.desc = "Virtual mask for L1 cache load miss replays",
.bit = 2,
},
{.name = "L2_LD_MISS",
.desc = "Virtual mask for L2 cache load miss replays",
.bit = 3,
},
{.name = "DTLB_LD_MISS",
.desc = "Virtual mask for DTLB load miss replays",
.bit = 4,
},
{.name = "DTLB_ST_MISS",
.desc = "Virtual mask for DTLB store miss replays",
.bit = 5,
},
{.name = "DTLB_ALL_MISS",
.desc = "Virtual mask for all DTLB miss replays",
.bit = 6,
},
{.name = "BR_MSP",
.desc = "Virtual mask for tagged mispredicted branch replays",
.bit = 7,
},
{.name = "MOB_LD_REPLAY",
.desc = "Virtual mask for MOB load replays",
.bit = 8,
},
{.name = "SP_LD_RET",
.desc = "Virtual mask for split load replays. Use with load_port_replay event",
.bit = 9,
},
{.name = "SP_ST_RET",
.desc = "Virtual mask for split store replays. Use with store_port_replay event",
.bit = 10,
},
},
},
/* 38 */
{.name = "instr_retired",
.desc = "Number of instructions retired during a clock cycle",
.event_select = 0x2,
.escr_select = 0x4,
.allowed_escrs = { 20, 42 },
.perf_code = P4_EVENT_INSTR_RETIRED,
.event_masks = {
{.name = "NBOGUSNTAG",
.desc = "Non-bogus instructions that are not tagged",
.bit = 0,
},
{.name = "NBOGUSTAG",
.desc = "Non-bogus instructions that are tagged",
.bit = 1,
},
{.name = "BOGUSNTAG",
.desc = "Bogus instructions that are not tagged",
.bit = 2,
},
{.name = "BOGUSTAG",
.desc = "Bogus instructions that are tagged",
.bit = 3,
},
},
},
/* 39 */
{.name = "uops_retired",
.desc = "Number of uops retired during a clock cycle",
.event_select = 0x1,
.escr_select = 0x4,
.allowed_escrs = { 20, 42 },
.perf_code = P4_EVENT_UOPS_RETIRED,
.event_masks = {
{.name = "NBOGUS",
.desc = "The marked uops are not bogus",
.bit = 0,
},
{.name = "BOGUS",
.desc = "The marked uops are bogus",
.bit = 1,
},
},
},
/* 40 */
{.name = "uops_type",
.desc = "This event is used in conjunction with with the front-end "
"mechanism to tag load and store uops",
.event_select = 0x2,
.escr_select = 0x2,
.allowed_escrs = { 18, 41 },
.perf_code = P4_EVENT_UOP_TYPE,
.event_masks = {
{.name = "TAGLOADS",
.desc = "The uop is a load operation",
.bit = 1,
},
{.name = "TAGSTORES",
.desc = "The uop is a store operation",
.bit = 2,
},
},
},
/* 41 */
{.name = "branch_retired",
.desc = "Number of retirements of a branch",
.event_select = 0x6,
.escr_select = 0x5,
.allowed_escrs = { 21, 43 },
.perf_code = P4_EVENT_BRANCH_RETIRED,
.event_masks = {
{.name = "MMNP",
.desc = "Branch not-taken predicted",
.bit = 0,
},
{.name = "MMNM",
.desc = "Branch not-taken mispredicted",
.bit = 1,
},
{.name = "MMTP",
.desc = "Branch taken predicted",
.bit = 2,
},
{.name = "MMTM",
.desc = "Branch taken mispredicted",
.bit = 3,
},
},
},
/* 42 */
{.name = "mispred_branch_retired",
.desc = "Number of retirements of mispredicted "
"IA-32 branch instructions",
.event_select = 0x3,
.escr_select = 0x4,
.allowed_escrs = { 20, 42 },
.perf_code = P4_EVENT_MISPRED_BRANCH_RETIRED,
.event_masks = {
{.name = "BOGUS",
.desc = "The retired instruction is not bogus",
.bit = 0,
.flags = NETBURST_FL_DFL,
},
},
},
/* 43 */
{.name = "x87_assist",
.desc = "Number of retirements of x87 instructions that required "
"special handling",
.event_select = 0x3,
.escr_select = 0x5,
.allowed_escrs = { 21, 43 },
.perf_code = P4_EVENT_X87_ASSIST,
.event_masks = {
{.name = "FPSU",
.desc = "Handle FP stack underflow",
.bit = 0,
},
{.name = "FPSO",
.desc = "Handle FP stack overflow",
.bit = 1,
},
{.name = "POAO",
.desc = "Handle x87 output overflow",
.bit = 2,
},
{.name = "POAU",
.desc = "Handle x87 output underflow",
.bit = 3,
},
{.name = "PREA",
.desc = "Handle x87 input assist",
.bit = 4,
},
},
},
/* 44 */
{.name = "machine_clear",
.desc = "Number of occurrences when the entire "
"pipeline of the machine is cleared",
.event_select = 0x2,
.escr_select = 0x5,
.allowed_escrs = { 21, 43 },
.perf_code = P4_EVENT_MACHINE_CLEAR,
.event_masks = {
{.name = "CLEAR",
.desc = "Counts for a portion of the many cycles while the "
"machine is cleared for any cause. Use edge-"
"triggering for this bit only to get a count of "
"occurrences versus a duration",
.bit = 0,
},
{.name = "MOCLEAR",
.desc = "Increments each time the machine is cleared due to "
"memory ordering issues",
.bit = 2,
},
{.name = "SMCLEAR",
.desc = "Increments each time the machine is cleared due to "
"self-modifying code issues",
.bit = 6,
},
},
},
/* 45 */
{.name = "instr_completed",
.desc = "Instructions that have completed and "
"retired during a clock cycle (models 3, 4, 6 only)",
.event_select = 0x7,
.escr_select = 0x4,
.allowed_escrs = { 21, 42 },
.perf_code = P4_EVENT_INSTR_COMPLETED,
.event_masks = {
{.name = "NBOGUS",
.desc = "Non-bogus instructions",
.bit = 0,
},
{.name = "BOGUS",
.desc = "Bogus instructions",
.bit = 1,
},
},
},
};
#define PME_REPLAY_EVENT 37
#define NETBURST_EVENT_COUNT (sizeof(netburst_events)/sizeof(netburst_entry_t))
#endif
|