1.\" Copyright (c) 2003-2006 Joseph Koshy. All rights reserved. 2.\" 3.\" Redistribution and use in source and binary forms, with or without 4.\" modification, are permitted provided that the following conditions 5.\" are met: 6.\" 1. Redistributions of source code must retain the above copyright 7.\" notice, this list of conditions and the following disclaimer. 8.\" 2. Redistributions in binary form must reproduce the above copyright 9.\" notice, this list of conditions and the following disclaimer in the 10.\" documentation and/or other materials provided with the distribution. 11.\" 12.\" This software is provided by Joseph Koshy ``as is'' and 13.\" any express or implied warranties, including, but not limited to, the 14.\" implied warranties of merchantability and fitness for a particular purpose 15.\" are disclaimed. in no event shall Joseph Koshy be liable 16.\" for any direct, indirect, incidental, special, exemplary, or consequential 17.\" damages (including, but not limited to, procurement of substitute goods 18.\" or services; loss of use, data, or profits; or business interruption) 19.\" however caused and on any theory of liability, whether in contract, strict 20.\" liability, or tort (including negligence or otherwise) arising in any way 21.\" out of the use of this software, even if advised of the possibility of 22.\" such damage. 23.\" 24.\" $FreeBSD$ 25.\" 26.Dd February 25, 2006 27.Os 28.Dt PMC 3 29.Sh NAME 30.Nm pmc_allocate , 31.Nm pmc_attach , 32.Nm pmc_capabilities , 33.Nm pmc_configure_logfile , 34.Nm pmc_cpuinfo , 35.Nm pmc_detach , 36.Nm pmc_disable , 37.Nm pmc_enable , 38.Nm pmc_event_names_of_class , 39.Nm pmc_flush_logfile , 40.Nm pmc_get_driver_stats , 41.Nm pmc_get_msr , 42.Nm pmc_init , 43.Nm pmc_name_of_capability , 44.Nm pmc_name_of_class , 45.Nm pmc_name_of_cputype , 46.Nm pmc_name_of_event , 47.Nm pmc_name_of_mode , 48.Nm pmc_name_of_state , 49.Nm pmc_ncpu , 50.Nm pmc_npmc , 51.Nm pmc_pmcinfo , 52.Nm pmc_read , 53.Nm pmc_release , 54.Nm pmc_rw , 55.Nm pmc_set , 56.Nm pmc_start , 57.Nm pmc_stop , 58.Nm pmc_width , 59.Nm pmc_write , 60.Nm pmc_writelog 61.Nd programming API for using hardware performance monitoring counters 62.Sh LIBRARY 63.Lb libpmc 64.Sh SYNOPSIS 65.In pmc.h 66.Ft int 67.Fo pmc_allocate 68.Fa "const char *eventspecifier" 69.Fa "enum pmc_mode mode" 70.Fa "uint32_t flags" 71.Fa "int cpu" 72.Fa "pmc_id_t *pmcid" 73.Fc 74.Ft int 75.Fn pmc_attach "pmc_id_t pmcid" "pid_t pid" 76.Ft int 77.Fn pmc_capabilities "pmc_id_t pmc" "uint32_t *caps" 78.Ft int 79.Fn pmc_configure_logfile "int fd" 80.Ft int 81.Fn pmc_cpuinfo "const struct pmc_cpuinfo **cpu_info" 82.Ft int 83.Fn pmc_detach "pmc_id_t pmcid" "pid_t pid" 84.Ft int 85.Fn pmc_disable "int cpu" "int pmc" 86.Ft int 87.Fn pmc_enable "int cpu" "int pmc" 88.Ft int 89.Fo pmc_event_names_of_class 90.Fa "enum pmc_class cl" 91.Fa "const char ***eventnames" 92.Fa "int *nevents" 93.Fc 94.Ft int 95.Fn pmc_flush_logfile void 96.Ft int 97.Fn pmc_get_driver_stats "struct pmc_driverstats *gms" 98.Ft int 99.Fn pmc_get_msr "pmc_id_t pmc" "uint32_t *msr" 100.Ft int 101.Fn pmc_init void 102.Ft "const char *" 103.Fn pmc_name_of_capability "enum pmc_caps pc" 104.Ft "const char *" 105.Fn pmc_name_of_class "enum pmc_class pc" 106.Ft "const char *" 107.Fn pmc_name_of_cputype "enum pmc_cputype ct" 108.Ft "const char *" 109.Fn pmc_name_of_disposition "enum pmc_disp pd" 110.Ft "const char *" 111.Fn pmc_name_of_event "enum pmc_event pe" 112.Ft "const char *" 113.Fn pmc_name_of_mode "enum pmc_mode pm" 114.Ft "const char *" 115.Fn pmc_name_of_state "enum pmc_state ps" 116.Ft int 117.Fn pmc_ncpu void 118.Ft int 119.Fn pmc_npmc "int cpu" 120.Ft int 121.Fn pmc_pmcinfo "int cpu" "struct pmc_pmcinfo **pmc_info" 122.Ft int 123.Fn pmc_read "pmc_id_t pmc" "pmc_value_t *value" 124.Ft int 125.Fn pmc_release "pmc_id_t pmc" 126.Ft int 127.Fn pmc_rw "pmc_id_t pmc" "pmc_value_t newvalue" "pmc_value_t *oldvaluep" 128.Ft int 129.Fn pmc_set "pmc_id_t pmc" "pmc_value_t value" 130.Ft int 131.Fn pmc_start "pmc_id_t pmc" 132.Ft int 133.Fn pmc_stop "pmc_id_t pmc" 134.Ft int 135.Fn pmc_write "pmc_id_t pmc" "pmc_value_t value" 136.Ft int 137.Fn pmc_writelog "uint32_t userdata" 138.Ft int 139.Fn pmc_width "pmc_id_t pmc" "uint32_t *width" 140.Sh DESCRIPTION 141These functions implement a high-level library for using the 142system's hardware performance counters. 143.Pp 144PMCs are allocated using 145.Fn pmc_allocate , 146released using 147.Fn pmc_release 148and read using 149.Fn pmc_read . 150Allocated PMCs may be started or stopped at any time using 151.Fn pmc_start 152and 153.Fn pmc_stop 154respectively. 155An allocated PMC may be of 156.Dq global 157scope, meaning that the PMC measures system-wide events, or 158.Dq process-private 159scope, meaning that the PMC only counts hardware events when 160the allocating process (or, optionally, its children) 161are active. 162.Pp 163PMCs may further be in 164.Dq "counting mode" , 165or in 166.Dq "sampling mode" . 167Sampling mode PMCs deliver an interrupt to the CPU after 168a configured number of hardware events have been seen. 169A process-private sampling mode PMC will cause its owner 170process to get periodic 171.Dv SIGPROF 172interrupts, while a global sampling mode PMC is used to 173do system-wide statistical sampling (see 174.Xr hwpmc 4 ) . 175The sampling rate desired of a sampling-mode PMC is set using 176.Fn pmc_set . 177Counting mode PMCs do not interrupt the CPU; their values 178can be read using 179.Fn pmc_read . 180.Pp 181System-wide statistical sampling is configured by allocating 182at least one sampling mode PMC with 183global scope, and when a log file is configured using 184.Fn pmc_configure_logfile . 185The 186.Xr hwpmc 4 187driver manages system-wide statistical sampling; for more 188information please see 189.Xr hwpmc 4 . 190.Ss Application Programming Interface 191The function 192.Fn pmc_init 193initializes the 194.Nm pmc 195library. 196This function must be called first, before any of the other 197functions in the library. 198.Pp 199The function 200.Fn pmc_allocate 201allocates a counter that counts the events named by 202.Fa eventspecifier , 203and writes the allocated counter ID to 204.Fa *pmcid . 205Argument 206.Fa eventspecifier 207comprises an PMC event name followed by an optional comma separated 208list of keywords and qualifiers. 209The allowed syntax for 210.Fa eventspecifier 211is processor architecture specific and is listed in section 212.Sx "EVENT SPECIFIERS" 213below. 214The desired PMC mode is specified by 215.Fa mode , 216and any mode specific modifiers are specified using 217.Fa flags . 218The 219.Fa cpu 220argument is the value 221.Dv PMC_CPU_ANY , 222or names the CPU the allocation is to be on. 223Requesting a specific CPU only makes sense for global PMCs; 224process-private PMC allocations should always specify 225.Dv PMC_CPU_ANY . 226.Pp 227By default, a PMC configured in process-virtual counting mode is set up 228to profile its owner process. 229The function 230.Fn pmc_attach 231may be used to attach the PMC to a different process. 232It 233needs to be called before the counter is first started 234with 235.Fn pmc_start . 236The function 237.Fn pmc_detach 238may be used to detach a PMC from a process it was attached to 239using a prior call to 240.Fn pmc_attach . 241.Pp 242The function 243.Fn pmc_release 244releases a PMC previously allocated with 245.Fn pmc_allocate . 246This function call implicitly detaches the PMC from all its target 247processes. 248.Pp 249An allocated PMC may be started and stopped using 250.Fn pmc_start 251and 252.Fn pmc_stop 253respectively. 254.Pp 255The current value of a PMC may be read with 256.Fn pmc_read 257and written using 258.Fn pmc_write , 259provided the underlying hardware supports these operations on 260the allocated PMC. 261The read and write operation may be combined using 262.Fn pmc_rw . 263.Pp 264The function 265.Fn pmc_capabilities 266sets argument 267.Fa caps 268to a bitmask of capabilities supported by the PMC denoted by 269argument 270.Fa pmc . 271The function 272.Fn pmc_width 273sets argument 274.Fa width 275to the width of the PMC denoted by argument 276.Fa pmc . 277.Pp 278The 279.Fn pmc_configure_logfile 280function causes the 281.Xr hwpmc 4 282driver to log performance data to file corresponding 283to the process' file handle 284.Fa fd . 285If argument 286.Fa fd 287is \-1, then any previously configured logging is reset 288and all data queued to be written are discarded. 289.Pp 290The 291.Fn pmc_flush_logfile 292function will send all data queued inside the 293.Xr hwpmc 4 294driver to the configured log file before returning. 295The 296.Fn pmc_writelog 297function will append a log entry containing the argument 298.Fa userdata 299to the log file. 300.Pp 301The function 302.Fn pmc_set 303configures a sampling PMC 304.Fa pmc 305to interrupt every 306.Fa value 307events. 308For counting PMCs, 309.Fn pmc_set 310sets the initial value of the PMC to 311.Fa value . 312.Pp 313The function 314.Fn pmc_get_driver_statistics 315copies a snapshot of the usage statistics maintained by 316.Xr hwpmc 4 317into the memory area pointed to by argument 318.Fa gms . 319.Ss Signal Handling Requirements 320Applications using PMCs are required to handle the following signals: 321.Bl -tag -width indent 322.It Dv SIGBUS 323When the 324.Xr hwpmc 4 325module is unloaded using 326.Xr kldunload 8 , 327processes that have PMCs allocated to them will be sent a 328.Dv SIGBUS 329signal. 330.It Dv SIGIO 331The 332.Xr hwpmc 4 333driver will send a PMC owning process a 334.Dv SIGIO 335signal if: 336.Bl -bullet 337.It 338If any process-mode PMC allocated by it loses all its 339target processes. 340.It 341If the driver encounters an error when writing log data to a 342configured log file. 343This error may be retrieved by a subsequent call to 344.Fn pmc_flush_logfile . 345.El 346.El 347.Ss Convenience Functions 348The function 349.Fn pmc_ncpu 350returns the number of CPUs present in the system. 351.Pp 352The function 353.Fn pmc_npmc 354returns the number of PMCs supported on CPU 355.Fa cpu . 356The function 357.Fn pmc_cpuinfo 358sets argument 359.Fa cpu_info 360to point to an internal structure with information about the system's CPUs. 361The caller should not 362.Fn free 363this pointer value. 364Function 365.Fn pmc_pmcinfo 366returns information about the current state of CPU 367.Fa cpu Ns 's 368PMCs. 369This function sets argument 370.Fa *pmc_info 371to point to a memory area allocated with 372.Xr calloc 3 . 373The caller is expected to 374.Fn free 375the area when done. 376.Pp 377The functions 378.Fn pmc_name_of_capability , 379.Fn pmc_name_of_class , 380.Fn pmc_name_of_cputype , 381.Fn pmc_name_of_disposition , 382.Fn pmc_name_of_event , 383.Fn pmc_name_of_mode 384and 385.Fn pmc_name_of_state 386are useful for code wanting to print error messages. 387They return 388.Vt "const char *" 389pointers to human-readable representations of their arguments. 390These return values should not be freed using 391.Xr free 3 . 392.Pp 393The function 394.Fn pmc_event_names_of_class 395returns a list of event names supported by a given PMC class 396.Fa cl . 397On successful return, an array of 398.Vt "const char *" 399pointers to the names of valid events supported by class 400.Fa cl 401is allocated by the library using 402.Xr malloc 3 , 403and a pointer to this array is returned in the location pointed to by 404.Fa eventnames . 405The number of pointers allocated is returned in the location pointed 406to by 407.Fa nevents . 408.Ss Administration 409Individual PMCs may be enabled or disabled on a given CPU using 410.Fn pmc_enable 411and 412.Fn pmc_disable 413respectively. 414For these functions, 415.Fa cpu 416is the CPU number, and 417.Fa pmc 418is the index of the PMC to be operated on. 419Only the super-user is allowed to enable and disable PMCs. 420.Ss x86 Architecture Specific API 421The 422.Fn pmc_get_msr 423function returns the processor model specific register number 424associated with 425.Fa pmc . 426Applications may use the x86 427.Ic RDPMC 428instruction to directly read the contents of the PMC. 429.Sh EVENT SPECIFIERS 430Event specifiers are strings comprising of an event name, followed by 431optional parameters modifying the semantics of the hardware event 432being probed. 433Event names are PMC architecture dependent, but the 434.Xr hwpmc 4 435library defines machine independent aliases for commonly used 436events. 437.Ss Event Name Aliases 438Event name aliases are CPU architecture independent names for commonly 439used events. 440The following aliases are known to this version of the 441.Nm pmc 442library: 443.Bl -tag -width indent 444.It Li branches 445Measure the number of branches retired. 446.It Li branch-mispredicts 447Measure the number of retired branches that were mispredicted. 448.It Li cycles 449Measure processor cycles. 450This event is implemented using the processor's Time Stamp Counter 451register. 452.It Li dc-misses 453Measure the number of data cache misses. 454.It Li ic-misses 455Measure the number of instruction cache misses. 456.It Li instructions 457Measure the number of instructions retired. 458.It Li interrupts 459Measure the number of interrupts seen. 460.It Li unhalted-cycles 461Measure the number of cycles the processor is not in a halted 462or sleep state. 463.El 464.Ss Time Stamp Counter (TSC) 465The timestamp counter is a monotonically non-decreasing counter that 466counts processor cycles. 467.Pp 468In the i386 architecture, this counter may 469be selected by requesting an event with event specifier 470.Dq Li tsc . 471The 472.Dq Li tsc 473event does not support any further qualifiers. 474It can only be allocated in system-wide counting mode, 475and is a read-only counter. 476Multiple processes are allowed to allocate the TSC. 477Once allocated, it may be read using the 478.Fn pmc_read 479function, or by using the RDTSC instruction. 480.Ss AMD (K7) PMCs 481These PMCs are present in the 482.Tn "AMD Athlon" 483series of CPUs and are documented in: 484.Rs 485.%B "AMD Athlon Processor x86 Code Optimization Guide" 486.%N "Publication No. 22007" 487.%D "February 2002" 488.%Q "Advanced Micro Devices, Inc." 489.Re 490.Pp 491Event specifiers for AMD K7 PMCs can have the following optional 492qualifiers: 493.Bl -tag -width indent 494.It Li count= Ns Ar value 495Configure the counter to increment only if the number of configured 496events measured in a cycle is greater than or equal to 497.Ar value . 498.It Li edge 499Configure the counter to only count negated-to-asserted transitions 500of the conditions expressed by the other qualifiers. 501In other words, the counter will increment only once whenever a given 502condition becomes true, irrespective of the number of clocks during 503which the condition remains true. 504.It Li inv 505Invert the sense of comparision when the 506.Dq Li count 507qualifier is present, making the counter to increment when the 508number of events per cycle is less than the value specified by 509the 510.Dq Li count 511qualifier. 512.It Li os 513Configure the PMC to count events happening at privilege level 0. 514.It Li unitmask= Ns Ar mask 515This qualifier is used to further qualify a select few events, 516.Dq Li k7-dc-refills-from-l2 , 517.Dq Li k7-dc-refills-from-system 518and 519.Dq Li k7-dc-writebacks . 520Here 521.Ar mask 522is a string of the following characters optionally separated by 523.Ql + 524characters: 525.Pp 526.Bl -tag -width indent -compact 527.It Li m 528Count operations for lines in the 529.Dq Modified 530state. 531.It Li o 532Count operations for lines in the 533.Dq Owner 534state. 535.It Li e 536Count operations for lines in the 537.Dq Exclusive 538state. 539.It Li s 540Count operations for lines in the 541.Dq Shared 542state. 543.It Li i 544Count operations for lines in the 545.Dq Invalid 546state. 547.El 548.Pp 549If no 550.Dq Li unitmask 551qualifier is specified, the default is to count events for caches 552lines in any of the above states. 553.It Li usr 554Configure the PMC to count events occurring at privilege levels 1, 2 555or 3. 556.El 557.Pp 558If neither of the 559.Dq Li os 560or 561.Dq Li usr 562qualifiers were specified, the default is to enable both. 563.Pp 564The event specifiers supported on AMD K7 PMCs are: 565.Bl -tag -width indent 566.It Li k7-dc-accesses 567Count data cache accesses. 568.It Li k7-dc-misses 569Count data cache misses. 570.It Li k7-dc-refills-from-l2 Op Li ,unitmask= Ns Ar mask 571Count data cache refills from L2 cache. 572This event may be further qualified using the 573.Dq Li unitmask 574qualifier. 575.It Li k7-dc-refills-from-system Op Li ,unitmask= Ns Ar mask 576Count data cache refills from system memory. 577This event may be further qualified using the 578.Dq Li unitmask 579qualifier. 580.It Li k7-dc-writebacks Op Li ,unitmask= Ns Ar mask 581Count data cache writebacks. 582This event may be further qualified using the 583.Dq Li unitmask 584qualifier. 585.It Li k7-l1-dtlb-miss-and-l2-dtlb-hits 586Count L1 DTLB misses and L2 DTLB hits. 587.It Li k7-l1-and-l2-dtlb-misses 588Count L1 and L2 DTLB misses. 589.It Li k7-misaligned-references 590Count misaligned data references. 591.It Li k7-ic-fetches 592Count instruction cache fetches. 593.It Li k7-ic-misses 594Count instruction cache misses. 595.It Li k7-l1-itlb-misses 596Count L1 ITLB misses that are L2 ITLB hits. 597.It Li k7-l1-l2-itlb-misses 598Count L1 (and L2) ITLB misses. 599.It Li k7-retired-instructions 600Count all retired instructions. 601.It Li k7-retired-ops 602Count retired ops. 603.It Li k7-retired-branches 604Count all retired branches (conditional, unconditional, exceptions 605and interrupts). 606.It Li k7-retired-branches-mispredicted 607Count all misprediced retired branches. 608.It Li k7-retired-taken-branches 609Count retired taken branches. 610.It Li k7-retired-taken-branches-mispredicted 611Count mispredicted taken branches that were retired. 612.It Li k7-retired-far-control-transfers 613Count retired far control transfers. 614.It Li k7-retired-resync-branches 615Count retired resync branches (non control transfer branches). 616.It Li k7-interrupts-masked-cycles 617Count the number of cycles when the processor's 618.Va IF 619flag was zero. 620.It Li k7-interrupts-masked-while-pending-cycles 621Count the number of cycles interrupts were masked while pending due 622to the processor's 623.Va IF 624flag being zero. 625.It Li k7-hardware-interrupts 626Count the number of taken hardware interrupts. 627.El 628.Ss AMD (K8) PMCs 629These PMCs are present in the 630.Tn "AMD Athlon64" 631and 632.Tn "AMD Opteron" 633series of CPUs. 634They are documented in: 635.Rs 636.%B "BIOS and Kernel Developer's Guide for the AMD Athlon(tm) 64 and AMD Opteron Processors" 637.%N "Publication No. 26094" 638.%D "April 2004" 639.%Q "Advanced Micro Devices, Inc." 640.Re 641.Pp 642Event specifiers for AMD K8 PMCs can have the following optional 643qualifiers: 644.Bl -tag -width indent 645.It Li count= Ns Ar value 646Configure the counter to increment only if the number of configured 647events measured in a cycle is greater than or equal to 648.Ar value . 649.It Li edge 650Configure the counter to only count negated-to-asserted transitions 651of the conditions expressed by the other fields. 652In other words, the counter will increment only once whenever a given 653condition becomes true, irrespective of the number of clocks during 654which the condition remains true. 655.It Li inv 656Invert the sense of comparision when the 657.Dq Li count 658qualifier is present, making the counter to increment when the 659number of events per cycle is less than the value specified by 660the 661.Dq Li count 662qualifier. 663.It Li mask= Ns Ar qualifier 664Many event specifiers for AMD K8 PMCs need to be additionally 665qualified using a mask qualifier. 666These additional qualifiers are event-specific and are documented 667along with their associated event specifiers below. 668.It Li os 669Configure the PMC to count events happening at privilege level 0. 670.It Li usr 671Configure the PMC to count events occurring at privilege levels 1, 2 672or 3. 673.El 674.Pp 675If neither of the 676.Dq Li os 677or 678.Dq Li usr 679qualifiers were specified, the default is to enable both. 680.Pp 681The event specifiers supported on AMD K8 PMCs are: 682.Bl -tag -width indent 683.It Li k8-bu-cpu-clk-unhalted 684Count the number of clock cycles when the CPU is not in the HLT or 685STPCLK states. 686.It Li k8-bu-fill-request-l2-miss Op Li ,mask= Ns Ar qualifier 687Count fill requests that missed in the L2 cache. 688This event may be further qualified using 689.Ar qualifier , 690which is a 691.Ql + 692separated set of the following keywords: 693.Pp 694.Bl -tag -width indent -compact 695.It Li dc-fill 696Count data cache fill requests. 697.It Li ic-fill 698Count instruction cache fill requests. 699.It Li tlb-reload 700Count TLB reloads. 701.El 702.Pp 703The default is to count all types of requests. 704.It Li k8-bu-internal-l2-request Op Li ,mask= Ns Ar qualifier 705Count internally generated requests to the L2 cache. 706This event may be further qualified using 707.Ar qualifier , 708which is a 709.Ql + 710separated set of the following keywords: 711.Pp 712.Bl -tag -width indent -compact 713.It Li cancelled 714Count cancelled requests. 715.It Li dc-fill 716Count data cache fill requests. 717.It Li ic-fill 718Count instruction cache fill requests. 719.It Li tag-snoop 720Count tag snoop requests. 721.It Li tlb-reload 722Count TLB reloads. 723.El 724.Pp 725The default is to count all types of requests. 726.It Li k8-dc-access 727Count data cache accesses including microcode scratchpad accesses. 728.It Li k8-dc-copyback Op Li ,mask= Ns Ar qualifier 729Count data cache copyback operations. 730This event may be further qualified using 731.Ar qualifier , 732which is a 733.Ql + 734separated set of the following keywords: 735.Pp 736.Bl -tag -width indent -compact 737.It Li exclusive 738Count operations for lines in the 739.Dq exclusive 740state. 741.It Li invalid 742Count operations for lines in the 743.Dq invalid 744state. 745.It Li modified 746Count operations for lines in the 747.Dq modified 748state. 749.It Li owner 750Count operations for lines in the 751.Dq owner 752state. 753.It Li shared 754Count operations for lines in the 755.Dq shared 756state. 757.El 758.Pp 759The default is to count operations for lines in all the 760above states. 761.It Li k8-dc-dcache-accesses-by-locks Op Li ,mask= Ns Ar qualifier 762Count data cache accesses by lock instructions. 763This event is only available on processors of revision C or later 764vintage. 765This event may be further qualified using 766.Ar qualifier , 767which is a 768.Ql + 769separated set of the following keywords: 770.Pp 771.Bl -tag -width indent -compact 772.It Li accesses 773Count data cache accesses by lock instructions. 774.It Li misses 775Count data cache misses by lock instructions. 776.El 777.Pp 778The default is to count all accesses. 779.It Li k8-dc-dispatched-prefetch-instructions Op Li ,mask= Ns Ar qualifier 780Count the number of dispatched prefetch instructions. 781This event may be further qualified using 782.Ar qualifier , 783which is a 784.Ql + 785separated set of the following keywords: 786.Pp 787.Bl -tag -width indent -compact 788.It Li load 789Count load operations. 790.It Li nta 791Count non-temporal operations. 792.It Li store 793Count store operations. 794.El 795.Pp 796The default is to count all operations. 797.It Li k8-dc-l1-dtlb-miss-and-l2-dtlb-hit 798Count L1 DTLB misses that are L2 DTLB hits. 799.It Li k8-dc-l1-dtlb-miss-and-l2-dtlb-miss 800Count L1 DTLB misses that are also misses in the L2 DTLB. 801.It Li k8-dc-microarchitectural-early-cancel-of-an-access 802Count microarchitectural early cancels of data cache accesses. 803.It Li k8-dc-microarchitectural-late-cancel-of-an-access 804Count microarchitectural late cancels of data cache accesses. 805.It Li k8-dc-misaligned-data-reference 806Count misaligned data references. 807.It Li k8-dc-miss 808Count data cache misses. 809.It Li k8-dc-one-bit-ecc-error Op Li ,mask= Ns Ar qualifier 810Count one bit ECC errors found by the scrubber. 811This event may be further qualified using 812.Ar qualifier , 813which is a 814.Ql + 815separated set of the following keywords: 816.Pp 817.Bl -tag -width indent -compact 818.It Li scrubber 819Count scrubber detected errors. 820.It Li piggyback 821Count piggyback scrubber errors. 822.El 823.Pp 824The default is to count both kinds of errors. 825.It Li k8-dc-refill-from-l2 Op Li ,mask= Ns Ar qualifier 826Count data cache refills from L2 cache. 827This event may be further qualified using 828.Ar qualifier , 829which is a 830.Ql + 831separated set of the following keywords: 832.Pp 833.Bl -tag -width indent -compact 834.It Li exclusive 835Count operations for lines in the 836.Dq exclusive 837state. 838.It Li invalid 839Count operations for lines in the 840.Dq invalid 841state. 842.It Li modified 843Count operations for lines in the 844.Dq modified 845state. 846.It Li owner 847Count operations for lines in the 848.Dq owner 849state. 850.It Li shared 851Count operations for lines in the 852.Dq shared 853state. 854.El 855.Pp 856The default is to count operations for lines in all the 857above states. 858.It Li k8-dc-refill-from-system Op Li ,mask= Ns Ar qualifier 859Count data cache refills from system memory. 860This event may be further qualified using 861.Ar qualifier , 862which is a 863.Ql + 864separated set of the following keywords: 865.Pp 866.Bl -tag -width indent -compact 867.It Li exclusive 868Count operations for lines in the 869.Dq exclusive 870state. 871.It Li invalid 872Count operations for lines in the 873.Dq invalid 874state. 875.It Li modified 876Count operations for lines in the 877.Dq modified 878state. 879.It Li owner 880Count operations for lines in the 881.Dq owner 882state. 883.It Li shared 884Count operations for lines in the 885.Dq shared 886state. 887.El 888.Pp 889The default is to count operations for lines in all the 890above states. 891.It Li k8-fp-dispatched-fpu-ops Op Li ,mask= Ns Ar qualifier 892Count the number of dispatched FPU ops. 893This event is supported in revision B and later CPUs. 894This event may be further qualified using 895.Ar qualifier , 896which is a 897.Ql + 898separated set of the following keywords: 899.Pp 900.Bl -tag -width indent -compact 901.It Li add-pipe-excluding-junk-ops 902Count add pipe ops excluding junk ops. 903.It Li add-pipe-junk-ops 904Count junk ops in the add pipe. 905.It Li multiply-pipe-excluding-junk-ops 906Count multiply pipe ops excluding junk ops. 907.It Li multiply-pipe-junk-ops 908Count junk ops in the multiply pipe. 909.It Li store-pipe-excluding-junk-ops 910Count store pipe ops excluding junk ops 911.It Li store-pipe-junk-ops 912Count junk ops in the store pipe. 913.El 914.Pp 915The default is to count all types of ops. 916.It Li k8-fp-cycles-with-no-fpu-ops-retired 917Count cycles when no FPU ops were retired. 918This event is supported in revision B and later CPUs. 919.It Li k8-fp-dispatched-fpu-fast-flag-ops 920Count dispatched FPU ops that use the fast flag interface. 921This event is supported in revision B and later CPUs. 922.It Li k8-fr-decoder-empty 923Count cycles when there was nothing to dispatch (i.e., the decoder 924was empty). 925.It Li k8-fr-dispatch-stalls 926Count all dispatch stalls. 927.It Li k8-fr-dispatch-stall-for-segment-load 928Count dispatch stalls for segment loads. 929.It Li k8-fr-dispatch-stall-for-serialization 930Count dispatch stalls for serialization. 931.It Li k8-fr-dispatch-stall-from-branch-abort-to-retire 932Count dispatch stalls from branch abort to retiral. 933.It Li k8-fr-dispatch-stall-when-fpu-is-full 934Count dispatch stalls when the FPU is full. 935.It Li k8-fr-dispatch-stall-when-ls-is-full 936Count dispatch stalls when the load/store unit is full. 937.It Li k8-fr-dispatch-stall-when-reorder-buffer-is-full 938Count dispatch stalls when the reorder buffer is full. 939.It Li k8-fr-dispatch-stall-when-reservation-stations-are-full 940Count dispatch stalls when reservation stations are full. 941.It Li k8-fr-dispatch-stall-when-waiting-for-all-to-be-quiet 942Count dispatch stalls when waiting for all to be quiet. 943.\" XXX What does "waiting for all to be quiet" mean? 944.It Li k8-fr-dispatch-stall-when-waiting-far-xfer-or-resync-branch-pending 945Count dispatch stalls when a far control transfer or a resync branch 946is pending. 947.It Li k8-fr-fpu-exceptions Op Li ,mask= Ns Ar qualifier 948Count FPU exceptions. 949This event is supported in revision B and later CPUs. 950This event may be further qualified using 951.Ar qualifier , 952which is a 953.Ql + 954separated set of the following keywords: 955.Pp 956.Bl -tag -width indent -compact 957.It Li sse-and-x87-microtraps 958Count SSE and x87 microtraps. 959.It Li sse-reclass-microfaults 960Count SSE reclass microfaults 961.It Li sse-retype-microfaults 962Count SSE retype microfaults 963.It Li x87-reclass-microfaults 964Count x87 reclass microfaults. 965.El 966.Pp 967The default is to count all types of exceptions. 968.It Li k8-fr-interrupts-masked-cycles 969Count cycles when interrupts were masked (by CPU RFLAGS field IF was zero). 970.It Li k8-fr-interrupts-masked-while-pending-cycles 971Count cycles while interrupts were masked while pending (i.e., cycles 972when INTR was asserted while CPU RFLAGS field IF was zero). 973.It Li k8-fr-number-of-breakpoints-for-dr0 974Count the number of breakpoints for DR0. 975.It Li k8-fr-number-of-breakpoints-for-dr1 976Count the number of breakpoints for DR1. 977.It Li k8-fr-number-of-breakpoints-for-dr2 978Count the number of breakpoints for DR2. 979.It Li k8-fr-number-of-breakpoints-for-dr3 980Count the number of breakpoints for DR3. 981.It Li k8-fr-retired-branches 982Count retired branches including exceptions and interrupts. 983.It Li k8-fr-retired-branches-mispredicted 984Count mispredicted retired branches. 985.It Li k8-fr-retired-far-control-transfers 986Count retired far control transfers (which are always mispredicted). 987.It Li k8-fr-retired-fastpath-double-op-instructions Op Li ,mask= Ns Ar qualifier 988Count retired fastpath double op instructions. 989This event is supported in revision B and later CPUs. 990This event may be further qualified using 991.Ar qualifier , 992which is a 993.Ql + 994separated set of the following keywords: 995.Pp 996.Bl -tag -width indent -compact 997.It Li low-op-pos-0 998Count instructions with the low op in position 0. 999.It Li low-op-pos-1 1000Count instructions with the low op in position 1. 1001.It Li low-op-pos-2 1002Count instructions with the low op in position 2. 1003.El 1004.Pp 1005The default is to count all types of instructions. 1006.It Li k8-fr-retired-fpu-instructions Op Li ,mask= Ns Ar qualifier 1007Count retired FPU instructions. 1008This event is supported in revision B and later CPUs. 1009This event may be further qualified using 1010.Ar qualifier , 1011which is a 1012.Ql + 1013separated set of the following keywords: 1014.Pp 1015.Bl -tag -width indent -compact 1016.It Li mmx-3dnow 1017Count MMX and 3DNow!\& instructions. 1018.It Li packed-sse-sse2 1019Count packed SSE and SSE2 instructions. 1020.It Li scalar-sse-sse2 1021Count scalar SSE and SSE2 instructions 1022.It Li x87 1023Count x87 instructions. 1024.El 1025.Pp 1026The default is to count all types of instructions. 1027.It Li k8-fr-retired-near-returns 1028Count retired near returns. 1029.It Li k8-fr-retired-near-returns-mispredicted 1030Count mispredicted near returns. 1031.It Li k8-fr-retired-resyncs 1032Count retired resyncs (non-control transfer branches). 1033.It Li k8-fr-retired-taken-hardware-interrupts 1034Count retired taken hardware interrupts. 1035.It Li k8-fr-retired-taken-branches 1036Count retired taken branches. 1037.It Li k8-fr-retired-taken-branches-mispredicted 1038Count retired taken branches that were mispredicted. 1039.It Li k8-fr-retired-taken-branches-mispredicted-by-addr-miscompare 1040Count retired taken branches that were mispredicted only due to an 1041address miscompare. 1042.It Li k8-fr-retired-uops 1043Count retired uops. 1044.It Li k8-fr-retired-x86-instructions 1045Count retired x86 instructions including exceptions and interrupts. 1046.It Li k8-ic-fetch 1047Count instruction cache fetches. 1048.It Li k8-ic-instruction-fetch-stall 1049Count cycles in stalls due to instruction fetch. 1050.It Li k8-ic-l1-itlb-miss-and-l2-itlb-hit 1051Count L1 ITLB misses that are L2 ITLB hits. 1052.It Li k8-ic-l1-itlb-miss-and-l2-itlb-miss 1053Count ITLB misses that miss in both L1 and L2 ITLBs. 1054.It Li k8-ic-microarchitectural-resync-by-snoop 1055Count microarchitectural resyncs caused by snoops. 1056.It Li k8-ic-miss 1057Count instruction cache misses. 1058.It Li k8-ic-refill-from-l2 1059Count instruction cache refills from L2 cache. 1060.It Li k8-ic-refill-from-system 1061Count instruction cache refills from system memory. 1062.It Li k8-ic-return-stack-hits 1063Count hits to the return stack. 1064.It Li k8-ic-return-stack-overflow 1065Count overflows of the return stack. 1066.It Li k8-ls-buffer2-full 1067Count load/store buffer2 full events. 1068.It Li k8-ls-locked-operation Op Li ,mask= Ns Ar qualifier 1069Count locked operations. 1070For revision C and later CPUs, the following qualifiers are supported: 1071.Pp 1072.Bl -tag -width indent -compact 1073.It Li cycles-in-request 1074Count the number of cycles in the lock request/grant stage. 1075.It Li cycles-to-complete 1076Count the number of cycles a lock takes to complete once it is 1077non-speculative and is the older load/store operation. 1078.It Li locked-instructions 1079Count the number of lock instructions executed. 1080.El 1081.Pp 1082The default is to count the number of lock instructions executed. 1083.It Li k8-ls-microarchitectural-late-cancel 1084Count microarchitectural late cancels of operations in the load/store 1085unit. 1086.It Li k8-ls-microarchitectural-resync-by-self-modifying-code 1087Count microarchitectural resyncs caused by self-modifying code. 1088.It Li k8-ls-microarchitectural-resync-by-snoop 1089Count microarchitectural resyncs caused by snoops. 1090.It Li k8-ls-retired-cflush-instructions 1091Count retired CFLUSH instructions. 1092.It Li k8-ls-retired-cpuid-instructions 1093Count retired CPUID instructions. 1094.It Li k8-ls-segment-register-load Op Li ,mask= Ns Ar qualifier 1095Count segment register loads. 1096This event may be further qualified using 1097.Ar qualifier , 1098which is a 1099.Ql + 1100separated set of the following keywords: 1101.Bl -tag -width indent -compact 1102.It Li cs 1103Count CS register loads. 1104.It Li ds 1105Count DS register loads. 1106.It Li es 1107Count ES register loads. 1108.It Li fs 1109Count FS register loads. 1110.It Li gs 1111Count GS register loads. 1112.\" .It Li hs 1113.\" Count HS register loads. 1114.\" XXX "HS" register? 1115.It Li ss 1116Count SS register loads. 1117.El 1118.Pp 1119The default is to count all types of loads. 1120.It Li k8-nb-memory-controller-bypass-saturation Op Li ,mask= Ns Ar qualifier 1121Count memory controller bypass counter saturation events. 1122This event may be further qualified using 1123.Ar qualifier , 1124which is a 1125.Ql + 1126separated set of the following keywords: 1127.Pp 1128.Bl -tag -width indent -compact 1129.It Li dram-controller-interface-bypass 1130Count DRAM controller interface bypass. 1131.It Li dram-controller-queue-bypass 1132Count DRAM controller queue bypass. 1133.It Li memory-controller-hi-pri-bypass 1134Count memory controller high priority bypasses. 1135.It Li memory-controller-lo-pri-bypass 1136Count memory controller low priority bypasses. 1137.El 1138.Pp 1139.It Li k8-nb-memory-controller-dram-slots-missed 1140Count memory controller DRAM command slots missed (in MemClks). 1141.It Li k8-nb-memory-controller-page-access-event Op Li ,mask= Ns Ar qualifier 1142Count memory controller page access events. 1143This event may be further qualified using 1144.Ar qualifier , 1145which is a 1146.Ql + 1147separated set of the following keywords: 1148.Pp 1149.Bl -tag -width indent -compact 1150.It Li page-conflict 1151Count page conflicts. 1152.It Li page-hit 1153Count page hits. 1154.It Li page-miss 1155Count page misses. 1156.El 1157.Pp 1158The default is to count all types of events. 1159.It Li k8-nb-memory-controller-page-table-overflow 1160Count memory control page table overflow events. 1161.It Li k8-nb-probe-result Op Li ,mask= Ns Ar qualifier 1162Count probe events. 1163This event may be further qualified using 1164.Ar qualifier , 1165which is a 1166.Ql + 1167separated set of the following keywords: 1168.Pp 1169.Bl -tag -width indent -compact 1170.It Li probe-hit 1171Count all probe hits. 1172.It Li probe-hit-dirty-no-memory-cancel 1173Count probe hits without memory cancels. 1174.It Li probe-hit-dirty-with-memory-cancel 1175Count probe hits with memory cancels. 1176.It Li probe-miss 1177Count probe misses. 1178.El 1179.It Li k8-nb-sized-commands Op Li ,mask= Ns Ar qualifier 1180Count sized commands issued. 1181This event may be further qualified using 1182.Ar qualifier , 1183which is a 1184.Ql + 1185separated set of the following keywords: 1186.Pp 1187.Bl -tag -width indent -compact 1188.It Li nonpostwrszbyte 1189.It Li nonpostwrszdword 1190.It Li postwrszbyte 1191.It Li postwrszdword 1192.It Li rdszbyte 1193.It Li rdszdword 1194.It Li rdmodwr 1195.El 1196.Pp 1197The default is to count all types of commands. 1198.It Li k8-nb-memory-controller-turnaround Op Li ,mask= Ns Ar qualifier 1199Count memory control turnaround events. 1200This event may be further qualified using 1201.Ar qualifier , 1202which is a 1203.Ql + 1204separated set of the following keywords: 1205.Pp 1206.Bl -tag -width indent -compact 1207.\" XXX doc is unclear whether these are cycle counts or event counts 1208.It Li dimm-turnaround 1209Count DIMM turnarounds. 1210.It Li read-to-write-turnaround 1211Count read to write turnarounds. 1212.It Li write-to-read-turnaround 1213Count write to read turnarounds. 1214.El 1215.Pp 1216The default is to count all types of events. 1217.It Li k8-nb-ht-bus0-bandwidth Op Li ,mask= Ns Ar qualifier 1218.It Li k8-nb-ht-bus1-bandwidth Op Li ,mask= Ns Ar qualifier 1219.It Li k8-nb-ht-bus2-bandwidth Op Li ,mask= Ns Ar qualifier 1220Count events on the HyperTransport(tm) buses. 1221These events may be further qualified using 1222.Ar qualifier , 1223which is a 1224.Ql + 1225separated set of the following keywords: 1226.Pp 1227.Bl -tag -width indent -compact 1228.It Li buffer-release 1229Count buffer release messages sent. 1230.It Li command 1231Count command messages sent. 1232.It Li data 1233Count data messages sent. 1234.It Li nop 1235Count nop messages sent. 1236.El 1237.Pp 1238The default is to count all types of messages. 1239.El 1240.Ss Intel P6 PMCS 1241Intel P6 PMCs are present in Intel 1242.Tn "Pentium Pro" , 1243.Tn "Pentium II" , 1244.Tn Celeron , 1245.Tn "Pentium III" 1246and 1247.Tn "Pentium M" 1248processors. 1249.Pp 1250These CPUs have two counters. 1251Some events may only be used on specific counters and some events are 1252defined only on specific processor models. 1253.Pp 1254These PMCs are documented in 1255.Rs 1256.%B "IA-32 Intel(R) Architecture Software Developer's Manual" 1257.%T "Volume 3: System Programming Guide" 1258.%N "Order Number 245472-012" 1259.%D 2003 1260.%Q "Intel Corporation" 1261.Re 1262.Pp 1263Some of these events are affected by processor errata described in 1264.Rs 1265.%B "Intel(R) Pentium(R) III Processor Specification Update" 1266.%N "Document Number: 244453-054" 1267.%D "April 2005" 1268.%Q "Intel Corporation" 1269.Re 1270.Pp 1271Event specifiers for Intel P6 PMCs can have the following common 1272qualifiers: 1273.Bl -tag -width indent 1274.It Li cmask= Ns Ar value 1275Configure the PMC to increment only if the number of configured 1276events measured in a cycle is greater than or equal to 1277.Ar value . 1278.It Li edge 1279Configure the PMC to count the number of deasserted to asserted 1280transitions of the conditions expressed by the other qualifiers. 1281If specified, the counter will increment only once whenever a 1282condition becomes true, irrespective of the number of clocks during 1283which the condition remains true. 1284.It Li inv 1285Invert the sense of comparision when the 1286.Dq Li cmask 1287qualifier is present, making the counter increment when the number of 1288events per cycle is less than the value specified by the 1289.Dq Li cmask 1290qualifier. 1291.It Li os 1292Configure the PMC to count events happening at processor privilege 1293level 0. 1294.It Li umask= Ns Ar value 1295This qualifier is used to further qualify the event selected (see 1296below). 1297.It Li usr 1298Configure the PMC to count events occurring at privilege levels 1, 2 1299or 3. 1300.El 1301.Pp 1302If neither of the 1303.Dq Li os 1304or 1305.Dq Li usr 1306qualifiers are specified, the default is to enable both. 1307.Pp 1308The event specifiers supported by Intel P6 PMCs are: 1309.Bl -tag -width indent 1310.It Li p6-baclears 1311Count the number of times a static branch prediction was made by the 1312branch decoder because the BTB did not have a prediction. 1313.It Li p6-br-bac-missp-exec 1314.Pq Tn "Pentium M" 1315Count the number of branch instructions executed that where 1316mispredicted at the Front End (BAC). 1317.It Li p6-br-bogus 1318Count the number of bogus branches. 1319.It Li p6-br-call-exec 1320.Pq Tn "Pentium M" 1321Count the number of call instructions executed. 1322.It Li p6-br-call-missp-exec 1323.Pq Tn "Pentium M" 1324Count the number of call instructions executed that were mispredicted. 1325.It Li p6-br-cnd-exec 1326.Pq Tn "Pentium M" 1327Count the number of conditional branch instructions executed. 1328.It Li p6-br-cnd-missp-exec 1329.Pq Tn "Pentium M" 1330Count the number of conditional branch instructions executed that were 1331mispredicted. 1332.It Li p6-br-ind-call-exec 1333.Pq Tn "Pentium M" 1334Count the number of indirect call instructions executed. 1335.It Li p6-br-ind-exec 1336.Pq Tn "Pentium M" 1337Count the number of indirect branch instructions executed. 1338.It Li p6-br-ind-missp-exec 1339.Pq Tn "Pentium M" 1340Count the number of indirect branch instructions executed that were 1341mispredicted. 1342.It Li p6-br-inst-decoded 1343Count the number of branch instructions decoded. 1344.It Li p6-br-inst-exec 1345.Pq Tn "Pentium M" 1346Count the number of branch instructions executed but necessarily retired. 1347.It Li p6-br-inst-retired 1348Count the number of branch instructions retired. 1349.It Li p6-br-miss-pred-retired 1350Count the number of mispredicted branch instructions retired. 1351.It Li p6-br-miss-pred-taken-ret 1352Count the number of taken mispredicted branches retired. 1353.It Li p6-br-missp-exec 1354.Pq Tn "Pentium M" 1355Count the number of branch instructions executed that were 1356mispredicted at execution. 1357.It Li p6-br-ret-bac-missp-exec 1358.Pq Tn "Pentium M" 1359Count the number of return instructions executed that were 1360mispredicted at the Front End (BAC). 1361.It Li p6-br-ret-exec 1362.Pq Tn "Pentium M" 1363Count the number of return instructions executed. 1364.It Li p6-br-ret-missp-exec 1365.Pq Tn "Pentium M" 1366Count the number of return instructions executed that were 1367mispredicted at execution. 1368.It Li p6-br-taken-retired 1369Count the number of taken branches retired. 1370.It Li p6-btb-misses 1371Count the number of branches for which the BTB did not produce a 1372prediction. 1373.It Li p6-bus-bnr-drv 1374Count the number of bus clock cycles during which this processor is 1375driving the BNR# pin. 1376.It Li p6-bus-data-rcv 1377Count the number of bus clock cycles during which this processor is 1378receiving data. 1379.It Li p6-bus-drdy-clocks Op Li ,umask= Ns Ar qualifier 1380Count the number of clocks during which DRDY# is asserted. 1381An additional qualifier may be specified, and comprises one of the 1382following keywords: 1383.Pp 1384.Bl -tag -width indent -compact 1385.It Li any 1386Count transactions generated by any agent on the bus. 1387.It Li self 1388Count transactions generated by this processor. 1389.El 1390.Pp 1391The default is to count operations generated by this processor. 1392.It Li p6-bus-hit-drv 1393Count the number of bus clock cycles during which this processor is 1394driving the HIT# pin. 1395.It Li p6-bus-hitm-drv 1396Count the number of bus clock cycles during which this processor is 1397driving the HITM# pin. 1398.It Li p6-bus-lock-clocks Op Li ,umask= Ns Ar qualifier 1399Count the number of clocks during with LOCK# is asserted on the 1400external system bus. 1401An additional qualifier may be specified and comprises one of the following 1402keywords: 1403.Pp 1404.Bl -tag -width indent -compact 1405.It Li any 1406Count transactions generated by any agent on the bus. 1407.It Li self 1408Count transactions generated by this processor. 1409.El 1410.Pp 1411The default is to count operations generated by this processor. 1412.It Li p6-bus-req-outstanding 1413Count the number of bus requests outstanding in any given cycle. 1414.It Li p6-bus-snoop-stall 1415Count the number of clock cycles during which the bus is snoop stalled. 1416.It Li p6-bus-tran-any Op Li ,umask= Ns Ar qualifier 1417Count the number of completed bus transactions of any kind. 1418An additional qualifier may be specified and comprises one of the following 1419keywords: 1420.Pp 1421.Bl -tag -width indent -compact 1422.It Li any 1423Count transactions generated by any agent on the bus. 1424.It Li self 1425Count transactions generated by this processor. 1426.El 1427.Pp 1428The default is to count operations generated by this processor. 1429.It Li p6-bus-tran-brd Op Li ,umask= Ns Ar qualifier 1430Count the number of burst read transactions. 1431An additional qualifier may be specified and comprises one of the following 1432keywords: 1433.Pp 1434.Bl -tag -width indent -compact 1435.It Li any 1436Count transactions generated by any agent on the bus. 1437.It Li self 1438Count transactions generated by this processor. 1439.El 1440.Pp 1441The default is to count operations generated by this processor. 1442.It Li p6-bus-tran-burst Op Li ,umask= Ns Ar qualifier 1443Count the number of completed burst transactions. 1444An additional qualifier may be specified and comprises one of the following 1445keywords: 1446.Pp 1447.Bl -tag -width indent -compact 1448.It Li any 1449Count transactions generated by any agent on the bus. 1450.It Li self 1451Count transactions generated by this processor. 1452.El 1453.Pp 1454The default is to count operations generated by this processor. 1455.It Li p6-bus-tran-def Op Li ,umask= Ns Ar qualifier 1456Count the number of completed deferred transactions. 1457An additional qualifier may be specified and comprises one of the following 1458keywords: 1459.Pp 1460.Bl -tag -width indent -compact 1461.It Li any 1462Count transactions generated by any agent on the bus. 1463.It Li self 1464Count transactions generated by this processor. 1465.El 1466.Pp 1467The default is to count operations generated by this processor. 1468.It Li p6-bus-tran-ifetch Op Li ,umask= Ns Ar qualifier 1469Count the number of completed instruction fetch transactions. 1470An additional qualifier may be specified and comprises one of the following 1471keywords: 1472.Pp 1473.Bl -tag -width indent -compact 1474.It Li any 1475Count transactions generated by any agent on the bus. 1476.It Li self 1477Count transactions generated by this processor. 1478.El 1479.Pp 1480The default is to count operations generated by this processor. 1481.It Li p6-bus-tran-inval Op Li ,umask= Ns Ar qualifier 1482Count the number of completed invalidate transactions. 1483An additional qualifier may be specified and comprises one of the following 1484keywords: 1485.Pp 1486.Bl -tag -width indent -compact 1487.It Li any 1488Count transactions generated by any agent on the bus. 1489.It Li self 1490Count transactions generated by this processor. 1491.El 1492.Pp 1493The default is to count operations generated by this processor. 1494.It Li p6-bus-tran-mem Op Li ,umask= Ns Ar qualifier 1495Count the number of completed memory transactions. 1496An additional qualifier may be specified and comprises one of the following 1497keywords: 1498.Pp 1499.Bl -tag -width indent -compact 1500.It Li any 1501Count transactions generated by any agent on the bus. 1502.It Li self 1503Count transactions generated by this processor. 1504.El 1505.Pp 1506The default is to count operations generated by this processor. 1507.It Li p6-bus-tran-pwr Op Li ,umask= Ns Ar qualifier 1508Count the number of completed partial write transactions. 1509An additional qualifier may be specified and comprises one of the following 1510keywords: 1511.Pp 1512.Bl -tag -width indent -compact 1513.It Li any 1514Count transactions generated by any agent on the bus. 1515.It Li self 1516Count transactions generated by this processor. 1517.El 1518.Pp 1519The default is to count operations generated by this processor. 1520.It Li p6-bus-tran-rfo Op Li ,umask= Ns Ar qualifier 1521Count the number of completed read-for-ownership transactions. 1522An additional qualifier may be specified and comprises one of the following 1523keywords: 1524.Pp 1525.Bl -tag -width indent -compact 1526.It Li any 1527Count transactions generated by any agent on the bus. 1528.It Li self 1529Count transactions generated by this processor. 1530.El 1531.Pp 1532The default is to count operations generated by this processor. 1533.It Li p6-bus-trans-io Op Li ,umask= Ns Ar qualifier 1534Count the number of completed I/O transactions. 1535An additional qualifier may be specified and comprises one of the following 1536keywords: 1537.Pp 1538.Bl -tag -width indent -compact 1539.It Li any 1540Count transactions generated by any agent on the bus. 1541.It Li self 1542Count transactions generated by this processor. 1543.El 1544.Pp 1545The default is to count operations generated by this processor. 1546.It Li p6-bus-trans-p Op Li ,umask= Ns Ar qualifier 1547Count the number of completed partial transactions. 1548An additional qualifier may be specified and comprises one of the following 1549keywords: 1550.Pp 1551.Bl -tag -width indent -compact 1552.It Li any 1553Count transactions generated by any agent on the bus. 1554.It Li self 1555Count transactions generated by this processor. 1556.El 1557.Pp 1558The default is to count operations generated by this processor. 1559.It Li p6-bus-trans-wb Op Li ,umask= Ns Ar qualifier 1560Count the number of completed write-back transactions. 1561An additional qualifier may be specified and comprises one of the following 1562keywords: 1563.Pp 1564.Bl -tag -width indent -compact 1565.It Li any 1566Count transactions generated by any agent on the bus. 1567.It Li self 1568Count transactions generated by this processor. 1569.El 1570.Pp 1571The default is to count operations generated by this processor. 1572.It Li p6-cpu-clk-unhalted 1573Count the number of cycles during with the processor was not halted. 1574.Pp 1575.Pq Tn "Pentium M" 1576Count the number of cycles during with the processor was not halted 1577and not in a thermal trip. 1578.It Li p6-cycles-div-busy 1579Count the number of cycles during which the divider is busy and cannot 1580accept new divides. 1581This event is only allocated on counter 0. 1582.It Li p6-cycles-in-pending-and-masked 1583Count the number of processor cycles for which interrupts were 1584disabled and interrupts were pending. 1585.It Li p6-cycles-int-masked 1586Count the number of processor cycles for which interrupts were 1587disabled. 1588.It Li p6-data-mem-refs 1589Count all loads and all stores using any memory type, including 1590internal retries. 1591Each part of a split store is counted separately. 1592.It Li p6-dcu-lines-in 1593Count the total lines allocated in the data cache unit. 1594.It Li p6-dcu-m-lines-in 1595Count the number of M state lines allocated in the data cache unit. 1596.It Li p6-dcu-m-lines-out 1597Count the number of M state lines evicted from the data cache unit. 1598.It Li p6-dcu-miss-outstanding 1599Count the weighted number of cycles while a data cache unit miss is 1600outstanding, incremented by the number of outstanding cache misses at 1601any time. 1602.It Li p6-div 1603Count the number of integer and floating-point divides including 1604speculative divides. 1605This event is only allocated on counter 1. 1606.It Li p6-emon-esp-uops 1607.Pq Tn "Pentium M" 1608Count the total number of micro-ops. 1609.It Li p6-emon-est-trans Op Li ,umask= Ns Ar qualifier 1610.Pq Tn "Pentium M" 1611Count the number of 1612.Tn "Enhanced Intel SpeedStep" 1613transitions. 1614An additional qualifier may be specified, and can be one of the 1615following keywords: 1616.Pp 1617.Bl -tag -width indent -compact 1618.It Li all 1619Count all transitions. 1620.It Li freq 1621Count only frequency transitions. 1622.El 1623.Pp 1624The default is to count all transitions. 1625.It Li p6-emon-fused-uops-ret Op Li ,umask= Ns Ar qualifier 1626.Pq Tn "Pentium M" 1627Count the number of retired fused micro-ops. 1628An additional qualifier may be specified, and may be one of the 1629following keywords: 1630.Pp 1631.Bl -tag -width indent -compact 1632.It Li all 1633Count all fused micro-ops. 1634.It Li loadop 1635Count only load and op micro-ops. 1636.It Li stdsta 1637Count only STD/STA micro-ops. 1638.El 1639.Pp 1640The default is to count all fused micro-ops. 1641.It Li p6-emon-kni-comp-inst-ret 1642.Pq Tn "Pentium III" 1643Count the number of SSE computational instructions retired. 1644An additional qualifier may be specified, and comprises one of the 1645following keywords: 1646.Pp 1647.Bl -tag -width indent -compact 1648.It Li packed-and-scalar 1649Count packed and scalar operations. 1650.It Li scalar 1651Count scalar operations only. 1652.El 1653.Pp 1654The default is to count packed and scalar operations. 1655.It Li p6-emon-kni-inst-retired Op Li ,umask= Ns Ar qualifier 1656.Pq Tn "Pentium III" 1657Count the number of SSE instructions retired. 1658An additional qualifier may be specified, and comprises one of the 1659following keywords: 1660.Pp 1661.Bl -tag -width indent -compact 1662.It Li packed-and-scalar 1663Count packed and scalar operations. 1664.It Li scalar 1665Count scalar operations only. 1666.El 1667.Pp 1668The default is to count packed and scalar operations. 1669.It Li p6-emon-kni-pref-dispatched Op Li ,umask= Ns Ar qualifier 1670.Pq Tn "Pentium III" 1671Count the number of SSE prefetch or weakly ordered instructions 1672dispatched (including speculative prefetches). 1673An additional qualifier may be specified, and comprises one of the 1674following keywords: 1675.Pp 1676.Bl -tag -width indent -compact 1677.It Li nta 1678Count non-temporal prefetches. 1679.It Li t1 1680Count prefetches to L1. 1681.It Li t2 1682Count prefetches to L2. 1683.It Li wos 1684Count weakly ordered stores. 1685.El 1686.Pp 1687The default is to count non-temporal prefetches. 1688.It Li p6-emon-kni-pref-miss Op Li ,umask= Ns Ar qualifier 1689.Pq Tn "Pentium III" 1690Count the number of prefetch or weakly ordered instructions that miss 1691all caches. 1692An additional qualifier may be specified, and comprises one of the 1693following keywords: 1694.Pp 1695.Bl -tag -width indent -compact 1696.It Li nta 1697Count non-temporal prefetches. 1698.It Li t1 1699Count prefetches to L1. 1700.It Li t2 1701Count prefetches to L2. 1702.It Li wos 1703Count weakly ordered stores. 1704.El 1705.Pp 1706The default is to count non-temporal prefetches. 1707.It Li p6-emon-pref-rqsts-dn 1708.Pq Tn "Pentium M" 1709Count the number of downward prefetches issued. 1710.It Li p6-emon-pref-rqsts-up 1711.Pq Tn "Pentium M" 1712Count the number of upward prefetches issued. 1713.It Li p6-emon-simd-instr-retired 1714.Pq Tn "Pentium M" 1715Count the number of retired 1716.Tn MMX 1717instructions. 1718.It Li p6-emon-sse-sse2-comp-inst-retired Op Li ,umask= Ns Ar qualifier 1719.Pq Tn "Pentium M" 1720Count the number of computational SSE instructions retired. 1721An additional qualifier may be specified and can be one of the 1722following keywords: 1723.Pp 1724.Bl -tag -width indent -compact 1725.It Li sse-packed-single 1726Count SSE packed-single instructions. 1727.It Li sse-scalar-single 1728Count SSE scalar-single instructions. 1729.It Li sse2-packed-double 1730Count SSE2 packed-double instructions. 1731.It Li sse2-scalar-double 1732Count SSE2 scalar-double instructions. 1733.El 1734.Pp 1735The default is to count SSE packed-single instructions. 1736.It Li p6-emon-sse-sse2-inst-retired Op Li ,umask= Ns Ar qualifer 1737.Pp 1738.Pq Tn "Pentium M" 1739Count the number of SSE instructions retired. 1740An additional qualifier can be specified, and can be one of the 1741following keywords: 1742.Pp 1743.Bl -tag -width indent -compact 1744.It Li sse-packed-single 1745Count SSE packed-single instructions. 1746.It Li sse-packed-single-scalar-single 1747Count SSE packed-single and scalar-single instructions. 1748.It Li sse2-packed-double 1749Count SSE2 packed-double instructions. 1750.It Li sse2-scalar-double 1751Count SSE2 scalar-double instructions. 1752.El 1753.Pp 1754The default is to count SSE packed-single instructions. 1755.It Li p6-emon-synch-uops 1756.Pq Tn "Pentium M" 1757Count the number of sync micro-ops. 1758.It Li p6-emon-thermal-trip 1759.Pq Tn "Pentium M" 1760Count the duration or occurrences of thermal trips. 1761Use the 1762.Dq Li edge 1763qualifier to count occurrences of thermal trips. 1764.It Li p6-emon-unfusion 1765.Pq Tn "Pentium M" 1766Count the number of unfusion events in the reorder buffer. 1767.It Li p6-flops 1768Count the number of computational floating point operations retired. 1769This event is only allocated on counter 0. 1770.It Li p6-fp-assist 1771Count the number of floating point exceptions handled by microcode. 1772This event is only allocated on counter 1. 1773.It Li p6-fp-comps-ops-exe 1774Count the number of computation floating point operations executed. 1775This event is only allocated on counter 0. 1776.It Li p6-fp-mmx-trans Op Li ,umask= Ns Ar qualifier 1777.Pq Tn "Pentium II" , Tn "Pentium III" 1778Count the number of transitions between MMX and floating-point 1779instructions. 1780An additional qualifier may be specified, and comprises one of the 1781following keywords: 1782.Pp 1783.Bl -tag -width indent -compact 1784.It Li mmxtofp 1785Count transitions from MMX instructions to floating-point instructions. 1786.It Li fptommx 1787Count transitions from floating-point instructions to MMX instructions. 1788.El 1789.Pp 1790The default is to count MMX to floating-point transitions. 1791.It Li p6-hw-int-rx 1792Count the number of hardware interrupts received. 1793.It Li p6-ifu-fetch 1794Count the number of instruction fetches, both cacheable and non-cacheable. 1795.It Li p6-ifu-fetch-miss 1796Count the number of instruction fetch misses (i.e., those that produce 1797memory accesses). 1798.It Li p6-ifu-mem-stall 1799Count the number of cycles instruction fetch is stalled for any reason. 1800.It Li p6-ild-stall 1801Count the number of cycles the instruction length decoder is stalled. 1802.It Li p6-inst-decoded 1803Count the number of instructions decoded. 1804.It Li p6-inst-retired 1805Count the number of instructions retired. 1806.It Li p6-itlb-miss 1807Count the number of instruction TLB misses. 1808.It Li p6-l2-ads 1809Count the number of L2 address strobes. 1810.It Li p6-l2-dbus-busy 1811Count the number of cycles during which the L2 cache data bus was busy. 1812.It Li p6-l2-dbus-busy-rd 1813Count the number of cycles during which the L2 cache data bus was busy 1814transferring read data from L2 to the processor. 1815.It Li p6-l2-ifetch Op Li ,umask= Ns Ar qualifier 1816Count the number of L2 instruction fetches. 1817An additional qualifier may be specified and comprises a list of the following 1818keywords separated by 1819.Ql + 1820characters: 1821.Pp 1822.Bl -tag -width indent -compact 1823.It Li e 1824Count operations affecting E (exclusive) state lines. 1825.It Li i 1826Count operations affecting I (invalid) state lines. 1827.It Li m 1828Count operations affecting M (modified) state lines. 1829.It Li s 1830Count operations affecting S (shared) state lines. 1831.El 1832.Pp 1833The default is to count operations affecting all (MESI) state lines. 1834.It Li p6-l2-ld Op Li ,umask= Ns Ar qualifier 1835Count the number of L2 data loads. 1836An additional qualifier may be specified and comprises a list of the following 1837keywords separated by 1838.Ql + 1839characters: 1840.Pp 1841.Bl -tag -width indent -compact 1842.It Li both 1843.Pq Tn "Pentium M" 1844Count both hardware-prefetched lines and non-hardware-prefetched lines. 1845.It Li e 1846Count operations affecting E (exclusive) state lines. 1847.It Li hw 1848.Pq Tn "Pentium M" 1849Count hardware-prefetched lines only. 1850.It Li i 1851Count operations affecting I (invalid) state lines. 1852.It Li m 1853Count operations affecting M (modified) state lines. 1854.It Li nonhw 1855.Pq Tn "Pentium M" 1856Exclude hardware-prefetched lines. 1857.It Li s 1858Count operations affecting S (shared) state lines. 1859.El 1860.Pp 1861The default on processors other than 1862.Tn "Pentium M" 1863processors is to count operations affecting all (MESI) state lines. 1864The default on 1865.Tn "Pentium M" 1866processors is to count both hardware-prefetched and 1867non-hardware-prefetch operations on all (MESI) state lines. 1868.Pq Errata 1869This event is affected by processor errata E53. 1870.It Li p6-l2-lines-in Op Li ,umask= Ns Ar qualifier 1871Count the number of L2 lines allocated. 1872An additional qualifier may be specified and comprises a list of the following 1873keywords separated by 1874.Ql + 1875characters: 1876.Pp 1877.Bl -tag -width indent -compact 1878.It Li both 1879.Pq Tn "Pentium M" 1880Count both hardware-prefetched lines and non-hardware-prefetched lines. 1881.It Li e 1882Count operations affecting E (exclusive) state lines. 1883.It Li hw 1884.Pq Tn "Pentium M" 1885Count hardware-prefetched lines only. 1886.It Li i 1887Count operations affecting I (invalid) state lines. 1888.It Li m 1889Count operations affecting M (modified) state lines. 1890.It Li nonhw 1891.Pq Tn "Pentium M" 1892Exclude hardware-prefetched lines. 1893.It Li s 1894Count operations affecting S (shared) state lines. 1895.El 1896.Pp 1897The default on processors other than 1898.Tn "Pentium M" 1899processors is to count operations affecting all (MESI) state lines. 1900The default on 1901.Tn "Pentium M" 1902processors is to count both hardware-prefetched and 1903non-hardware-prefetch operations on all (MESI) state lines. 1904.Pq Errata 1905This event is affected by processor errata E45. 1906.It Li p6-l2-lines-out Op Li ,umask= Ns Ar qualifier 1907Count the number of L2 lines evicted. 1908An additional qualifier may be specified and comprises a list of the following 1909keywords separated by 1910.Ql + 1911characters: 1912.Pp 1913.Bl -tag -width indent -compact 1914.It Li both 1915.Pq Tn "Pentium M" 1916Count both hardware-prefetched lines and non-hardware-prefetched lines. 1917.It Li e 1918Count operations affecting E (exclusive) state lines. 1919.It Li hw 1920.Pq Tn "Pentium M" 1921Count hardware-prefetched lines only. 1922.It Li i 1923Count operations affecting I (invalid) state lines. 1924.It Li m 1925Count operations affecting M (modified) state lines. 1926.It Li nonhw 1927.Pq Tn "Pentium M" only 1928Exclude hardware-prefetched lines. 1929.It Li s 1930Count operations affecting S (shared) state lines. 1931.El 1932.Pp 1933The default on processors other than 1934.Tn "Pentium M" 1935processors is to count operations affecting all (MESI) state lines. 1936The default on 1937.Tn "Pentium M" 1938processors is to count both hardware-prefetched and 1939non-hardware-prefetch operations on all (MESI) state lines. 1940.Pq Errata 1941This event is affected by processor errata E45. 1942.It Li p6-l2-m-lines-inm 1943Count the number of modified lines allocated in L2 cache. 1944.It Li p6-l2-m-lines-outm Op Li ,umask= Ns Ar qualifier 1945Count the number of L2 M-state lines evicted. 1946.Pp 1947.Pq Tn "Pentium M" 1948On these processors an additional qualifier may be specified and 1949comprises a list of the following keywords separated by 1950.Ql + 1951characters: 1952.Pp 1953.Bl -tag -width indent -compact 1954.It Li both 1955Count both hardware-prefetched lines and non-hardware-prefetched lines. 1956.It Li hw 1957Count hardware-prefetched lines only. 1958.It Li nonhw 1959Exclude hardware-prefetched lines. 1960.El 1961.Pp 1962The default is to count both hardware-prefetched and 1963non-hardware-prefetch operations. 1964.Pq Errata 1965This event is affected by processor errata E53. 1966.It Li p6-l2-rqsts Op Li ,umask= Ns Ar qualifier 1967Count the total number of L2 requests. 1968An additional qualifier may be specified and comprises a list of the following 1969keywords separated by 1970.Ql + 1971characters: 1972.Pp 1973.Bl -tag -width indent -compact 1974.It Li e 1975Count operations affecting E (exclusive) state lines. 1976.It Li i 1977Count operations affecting I (invalid) state lines. 1978.It Li m 1979Count operations affecting M (modified) state lines. 1980.It Li s 1981Count operations affecting S (shared) state lines. 1982.El 1983.Pp 1984The default is to count operations affecting all (MESI) state lines. 1985.It Li p6-l2-st 1986Count the number of L2 data stores. 1987An additional qualifier may be specified and comprises a list of the following 1988keywords separated by 1989.Ql + 1990characters: 1991.Pp 1992.Bl -tag -width indent -compact 1993.It Li e 1994Count operations affecting E (exclusive) state lines. 1995.It Li i 1996Count operations affecting I (invalid) state lines. 1997.It Li m 1998Count operations affecting M (modified) state lines. 1999.It Li s 2000Count operations affecting S (shared) state lines. 2001.El 2002.Pp 2003The default is to count operations affecting all (MESI) state lines. 2004.It Li p6-ld-blocks 2005Count the number of load operations delayed due to store buffer blocks. 2006.It Li p6-misalign-mem-ref 2007Count the number of misaligned data memory references (crossing a 64 2008bit boundary). 2009.It Li p6-mmx-assist 2010.Pq Tn "Pentium II" , Tn "Pentium III" 2011Count the number of MMX assists executed. 2012.It Li p6-mmx-instr-exec 2013.Pq Tn Celeron , Tn "Pentium II" 2014Count the number of MMX instructions executed, except MOVQ and MOVD 2015stores from register to memory. 2016.It Li p6-mmx-instr-ret 2017.Pq Tn "Pentium II" 2018Count the number of MMX instructions retired. 2019.It Li p6-mmx-instr-type-exec Op Li ,umask= Ns Ar qualifier 2020.Pq Tn "Pentium II" , Tn "Pentium III" 2021Count the number of MMX instructions executed. 2022An additional qualifier may be specified and comprises a list of 2023the following keywords separated by 2024.Ql + 2025characters: 2026.Pp 2027.Bl -tag -width indent -compact 2028.It Li pack 2029Count MMX pack operation instructions. 2030.It Li packed-arithmetic 2031Count MMX packed arithmetic instructions. 2032.It Li packed-logical 2033Count MMX packed logical instructions. 2034.It Li packed-multiply 2035Count MMX packed multiply instructions. 2036.It Li packed-shift 2037Count MMX packed shift instructions. 2038.It Li unpack 2039Count MMX unpack operation instructions. 2040.El 2041.Pp 2042The default is to count all operations. 2043.It Li p6-mmx-sat-instr-exec 2044.Pq Tn "Pentium II" , Tn "Pentium III" 2045Count the number of MMX saturating instructions executed. 2046.It Li p6-mmx-uops-exec 2047.Pq Tn "Pentium II" , Tn "Pentium III" 2048Count the number of MMX micro-ops executed. 2049.It Li p6-mul 2050Count the number of integer and floating-point multiplies, including 2051speculative multiplies. 2052This event is only allocated on counter 1. 2053.It Li p6-partial-rat-stalls 2054Count the number of cycles or events for partial stalls. 2055.It Li p6-resource-stalls 2056Count the number of cycles there was a resource related stall of any kind. 2057.It Li p6-ret-seg-renames 2058.Pq Tn "Pentium II" , Tn "Pentium III" 2059Count the number of segment register rename events retired. 2060.It Li p6-sb-drains 2061Count the number of cycles the store buffer is draining. 2062.It Li p6-seg-reg-renames Op Li ,umask= Ns Ar qualifier 2063.Pq Tn "Pentium II" , Tn "Pentium III" 2064Count the number of segment register renames. 2065An additional qualifier may be specified, and comprises a list of the 2066following keywords separated by 2067.Ql + 2068characters: 2069.Pp 2070.Bl -tag -width indent -compact 2071.It Li ds 2072Count renames for segment register DS. 2073.It Li es 2074Count renames for segment register ES. 2075.It Li fs 2076Count renames for segment register FS. 2077.It Li gs 2078Count renames for segment register GS. 2079.El 2080.Pp 2081The default is to count operations affecting all segment registers. 2082.It Li p6-seg-rename-stalls 2083.Pq Tn "Pentium II" , Tn "Pentium III" 2084Count the number of segment register renaming stalls. 2085An additional qualifier may be specified, and comprises a list of the 2086following keywords separated by 2087.Ql + 2088characters: 2089.Pp 2090.Bl -tag -width indent -compact 2091.It Li ds 2092Count stalls for segment register DS. 2093.It Li es 2094Count stalls for segment register ES. 2095.It Li fs 2096Count stalls for segment register FS. 2097.It Li gs 2098Count stalls for segment register GS. 2099.El 2100.Pp 2101The default is to count operations affecting all the segment registers. 2102.It Li p6-segment-reg-loads 2103Count the number of segment register loads. 2104.It Li p6-uops-retired 2105Count the number of micro-ops retired. 2106.El 2107.Ss Intel P4 PMCS 2108Intel P4 PMCs are present in Intel 2109.Tn "Pentium 4" 2110and 2111.Tn Xeon 2112processors. 2113These PMCs are documented in 2114.Rs 2115.%B "IA-32 Intel(R) Architecture Software Developer's Manual" 2116.%T "Volume 3: System Programming Guide" 2117.%N "Order Number 245472-012" 2118.%D 2003 2119.%Q "Intel Corporation" 2120.Re 2121Further information about using these PMCs may be found in 2122.Rs 2123.%B "IA-32 Intel(R) Architecture Optimization Guide" 2124.%D 2003 2125.%N "Order Number 248966-009" 2126.%Q "Intel Corporation" 2127.Re 2128Some of these events are affected by processor errata described in 2129.Rs 2130.%B "Intel(R) Pentium(R) 4 Processor Specification Update" 2131.%N "Document Number: 249199-059" 2132.%D "April 2005" 2133.%Q "Intel Corporation" 2134.Re 2135.Pp 2136Event specifiers for Intel P4 PMCs can have the following common 2137qualifiers: 2138.Bl -tag -width indent 2139.It Li active= Ns Ar choice 2140(On P4 HTT CPUs) Filter event counting based on which logical 2141processors are active. 2142The allowed values of 2143.Ar choice 2144are: 2145.Pp 2146.Bl -tag -width indent -compact 2147.It Li any 2148Count when either logical processor is active. 2149.It Li both 2150Count when both logical processors are active. 2151.It Li none 2152Count only when neither logical processor is active. 2153.It Li single 2154Count only when one logical processor is active. 2155.El 2156.Pp 2157The default is 2158.Dq Li both . 2159.It Li cascade 2160Configure the PMC to cascade onto its partner. 2161See 2162.Sx "Cascading P4 PMCs" 2163below for more information. 2164.It Li edge 2165Configure the counter to count false to true transitions of the threshold 2166comparision output. 2167This qualifier only takes effect if a threshold qualifier has also been 2168specified. 2169.It Li complement 2170Configure the counter to increment only when the event count seen is 2171less than the threshold qualifier value specified. 2172.It Li mask= Ns Ar qualifier 2173Many event specifiers for Intel P4 PMCs need to be additionally 2174qualified using a mask qualifier. 2175The allowed syntax for these qualifiers is event specific and is 2176described along with the events. 2177.It Li os 2178Configure the PMC to count when the CPL of the processor is 0. 2179.It Li precise 2180Select precise event based sampling. 2181Precise sampling is supported by the hardware for a limited set of 2182events. 2183.It Li tag= Ns Ar value 2184Configure the PMC to tag the internal uop selected by the other 2185fields in this event specifier with value 2186.Ar value . 2187This feature is used when cascading PMCs. 2188.It Li threshold= Ns Ar value 2189Configure the PMC to increment only when the event counts seen are 2190greater than the specified threshold value 2191.Ar value . 2192.It Li usr 2193Configure the PMC to count when the CPL of the processor is 1, 2 or 3. 2194.El 2195.Pp 2196If neither of the 2197.Dq Li os 2198or 2199.Dq Li usr 2200qualifiers are specified, the default is to enable both. 2201.Pp 2202On Intel Pentium 4 processors with HTT, events are 2203divided into two classes: 2204.Pp 2205.Bl -tag -width indent -compact 2206.It "TS Events" 2207are those where hardware can differentiate between events 2208generated on one logical processor from those generated on the 2209other. 2210.It "TI Events" 2211are those where hardware cannot differentiate between events 2212generated by multiple logical processors in a package. 2213.El 2214.Pp 2215Only TS events are allowed for use with process-mode PMCs on 2216Pentium-4/HTT CPUs. 2217.Pp 2218The event specifiers supported by Intel P4 PMCs are: 2219.Pp 2220.Bl -tag -width indent 2221.It Li p4-128bit-mmx-uop Op Li ,mask= Ns Ar flags 2222.Pq "TI event" 2223Count integer SIMD SSE2 instructions that operate on 128 bit SIMD 2224operands. 2225Qualifier 2226.Ar flags 2227can take the following value (which is also the default): 2228.Pp 2229.Bl -tag -width indent -compact 2230.It Li all 2231Count all uops operating on 128 bit SIMD integer operands in memory or 2232XMM register. 2233.El 2234.Pp 2235If an instruction contains more than one 128 bit MMX uop, then each 2236uop will be counted. 2237.It Li p4-64bit-mmx-uop Op Li ,mask= Ns Ar flags 2238.Pq "TI event" 2239Count MMX instructions that operate on 64 bit SIMD operands. 2240Qualifier 2241.Ar flags 2242can take the following value (which is also the default): 2243.Pp 2244.Bl -tag -width indent -compact 2245.It Li all 2246Count all uops operating on 64 bit SIMD integer operands in memory or 2247in MMX registers. 2248.El 2249.Pp 2250If an instruction contains more than one 64 bit MMX uop, then each 2251uop will be counted. 2252.It Li p4-b2b-cycles 2253.Pq "TI event" 2254Count back-to-back bys cycles. 2255Further documentation for this event is unavailable. 2256.It Li p4-bnr 2257.Pq "TI event" 2258Count bus-not-ready conditions. 2259Further documentation for this event is unavailable. 2260.It Li p4-bpu-fetch-request Op Li ,mask= Ns Ar qualifier 2261.Pq "TS event" 2262Count instruction fetch requests qualified by additional 2263flags specified in 2264.Ar qualifier . 2265At this point only one flag is supported: 2266.Pp 2267.Bl -tag -width indent -compact 2268.It Li tcmiss 2269Count trace cache lookup misses. 2270.El 2271.Pp 2272The default qualifier is also 2273.Dq Li mask=tcmiss . 2274.It Li p4-branch-retired Op Li ,mask= Ns Ar flags 2275.Pq "TS event" 2276Counts retired branches. 2277Qualifier 2278.Ar flags 2279is a list of the following 2280.Ql + 2281separated strings: 2282.Pp 2283.Bl -tag -width indent -compact 2284.It Li mmnp 2285Count branches not-taken and predicted. 2286.It Li mmnm 2287Count branches not-taken and mis-predicted. 2288.It Li mmtp 2289Count branches taken and predicted. 2290.It Li mmtm 2291Count branches taken and mis-predicted. 2292.El 2293.Pp 2294The default qualifier counts all four kinds of branches. 2295.It Li p4-bsq-active-entries Op Li ,mask= Ns Ar qualifier 2296.Pq "TS event" 2297Count the number of entries (clipped at 15) currently active in the 2298BSQ. 2299Qualifier 2300.Ar qualifier 2301is a 2302.Ql + 2303separated set of the following flags: 2304.Pp 2305.Bl -tag -width indent -compact 2306.It Li req-type0 , Li req-type1 2307Forms a 2-bit number used to select the request type encoding: 2308.Pp 2309.Bl -tag -width indent -compact 2310.It Li 0 2311reads excluding read invalidate 2312.It Li 1 2313read invalidates 2314.It Li 2 2315writes other than writebacks 2316.It Li 3 2317writebacks 2318.El 2319.Pp 2320Bit 2321.Dq Li req-type1 2322is the MSB for this two bit number. 2323.It Li req-len0 , Li req-len1 2324Forms a two-bit number that specifies the request length encoding: 2325.Pp 2326.Bl -tag -width indent -compact 2327.It Li 0 23280 chunks 2329.It Li 1 23301 chunk 2331.It Li 3 23328 chunks 2333.El 2334.Pp 2335Bit 2336.Dq Li req-len1 2337is the MSB for this two bit number. 2338.It Li req-io-type 2339Count requests that are input or output requests. 2340.It Li req-lock-type 2341Count requests that lock the bus. 2342.It Li req-lock-cache 2343Count requests that lock the cache. 2344.It Li req-split-type 2345Count requests that is a bus 8-byte chunk that is split across an 23468-byte boundary. 2347.It Li req-dem-type 2348Count requests that are demand (not prefetches) if set. 2349Count requests that are prefetches if not set. 2350.It Li req-ord-type 2351Count requests that are ordered. 2352.It Li mem-type0 , Li mem-type1 , Li mem-type2 2353Forms a 3-bit number that specifies a memory type encoding: 2354.Pp 2355.Bl -tag -width indent -compact 2356.It Li 0 2357UC 2358.It Li 1 2359USWC 2360.It Li 4 2361WT 2362.It Li 5 2363WP 2364.It Li 6 2365WB 2366.El 2367.Pp 2368Bit 2369.Dq Li mem-type2 2370is the MSB of this 3-bit number. 2371.El 2372.Pp 2373The default qualifier has all the above bits set. 2374.Pp 2375Edge triggering using the 2376.Dq Li edge 2377qualifier should not be used with this event when counting cycles. 2378.It Li p4-bsq-allocation Op Li ,mask= Ns Ar qualifier 2379.Pq "TS event" 2380Count allocations in the bus sequence unit according to the flags 2381specified in 2382.Ar qualifier , 2383which is a 2384.Ql + 2385separated set of the following flags: 2386.Pp 2387.Bl -tag -width indent -compact 2388.It Li req-type0 , Li req-type1 2389Forms a 2-bit number used to select the request type encoding: 2390.Pp 2391.Bl -tag -width indent -compact 2392.It Li 0 2393reads excluding read invalidate 2394.It Li 1 2395read invalidates 2396.It Li 2 2397writes other than writebacks 2398.It Li 3 2399writebacks 2400.El 2401.Pp 2402Bit 2403.Dq Li req-type1 2404is the MSB for this two bit number. 2405.It Li req-len0 , Li req-len1 2406Forms a two-bit number that specifies the request length encoding: 2407.Pp 2408.Bl -tag -width indent -compact 2409.It Li 0 24100 chunks 2411.It Li 1 24121 chunk 2413.It Li 3 24148 chunks 2415.El 2416.Pp 2417Bit 2418.Dq Li req-len1 2419is the MSB for this two bit number. 2420.It Li req-io-type 2421Count requests that are input or output requests. 2422.It Li req-lock-type 2423Count requests that lock the bus. 2424.It Li req-lock-cache 2425Count requests that lock the cache. 2426.It Li req-split-type 2427Count requests that is a bus 8-byte chunk that is split across an 24288-byte boundary. 2429.It Li req-dem-type 2430Count requests that are demand (not prefetches) if set. 2431Count requests that are prefetches if not set. 2432.It Li req-ord-type 2433Count requests that are ordered. 2434.It Li mem-type0 , Li mem-type1 , Li mem-type2 2435Forms a 3-bit number that specifies a memory type encoding: 2436.Pp 2437.Bl -tag -width indent -compact 2438.It Li 0 2439UC 2440.It Li 1 2441USWC 2442.It Li 4 2443WT 2444.It Li 5 2445WP 2446.It Li 6 2447WB 2448.El 2449.Pp 2450Bit 2451.Dq Li mem-type2 2452is the MSB of this 3-bit number. 2453.El 2454.Pp 2455The default qualifier has all the above bits set. 2456.Pp 2457This event is usually used along with the 2458.Dq Li edge 2459qualifier to avoid multiple counting. 2460.It Li p4-bsq-cache-reference Op Li ,mask= Ns Ar qualifier 2461.Pq "TS event" 2462Count cache references as seen by the bus unit (2nd or 3rd level 2463cache references). 2464Qualifier 2465.Ar qualifier 2466is a 2467.Ql + 2468separated list of the following keywords: 2469.Pp 2470.Bl -tag -width indent -compact 2471.It Li rd-2ndl-hits 2472Count 2nd level cache hits in the shared state. 2473.It Li rd-2ndl-hite 2474Count 2nd level cache hits in the exclusive state. 2475.It Li rd-2ndl-hitm 2476Count 2nd level cache hits in the modified state. 2477.It Li rd-3rdl-hits 2478Count 3rd level cache hits in the shared state. 2479.It Li rd-3rdl-hite 2480Count 3rd level cache hits in the exclusive state. 2481.It Li rd-3rdl-hitm 2482Count 3rd level cache hits in the modified state. 2483.It Li rd-2ndl-miss 2484Count 2nd level cache misses. 2485.It Li rd-3rdl-miss 2486Count 3rd level cache misses. 2487.It Li wr-2ndl-miss 2488Count write-back lookups from the data access cache that miss the 2nd 2489level cache. 2490.El 2491.Pp 2492The default is to count all the above events. 2493.It Li p4-execution-event Op Li ,mask= Ns Ar flags 2494.Pq "TS event" 2495Count the retirement of tagged uops selected through the execution 2496tagging mechanism. 2497Qualifier 2498.Ar flags 2499can contain the following strings separated by 2500.Ql + 2501characters: 2502.Pp 2503.Bl -tag -width indent -compact 2504.It Li nbogus0 , Li nbogus1 , Li nbogus2 , Li nbogus3 2505The marked uops are not bogus. 2506.It Li bogus0 , Li bogus1 , Li bogus2 , Li bogus3 2507The marked uops are bogus. 2508.El 2509.Pp 2510This event requires additional (upstream) events to be allocated to 2511perform the desired uop tagging. 2512The default is to set all the above flags. 2513This event can be used for precise event based sampling. 2514.It Li p4-front-end-event Op Li ,mask= Ns Ar flags 2515.Pq "TS event" 2516Count the retirement of tagged uops selected through the front-end 2517tagging mechanism. 2518Qualifier 2519.Ar flags 2520can contain the following strings separated by 2521.Ql + 2522characters: 2523.Pp 2524.Bl -tag -width indent -compact 2525.It Li nbogus 2526The marked uops are not bogus. 2527.It Li bogus 2528The marked uops are bogus. 2529.El 2530.Pp 2531This event requires additional (upstream) events to be allocated to 2532perform the desired uop tagging. 2533The default is to select both kinds of events. 2534This event can be used for precise event based sampling. 2535.It Li p4-fsb-data-activity Op Li ,mask= Ns Ar flags 2536.Pq "TI event" 2537Count each DBSY or DRDY event selected by qualifier 2538.Ar flags . 2539Qualifier 2540.Ar flags 2541is a 2542.Ql + 2543separated set of the following flags: 2544.Pp 2545.Bl -tag -width indent -compact 2546.It Li drdy-drv 2547Count when this processor is driving data onto the bus. 2548.It Li drdy-own 2549Count when this processor is reading data from the bus. 2550.It Li drdy-other 2551Count when data is on the bus but not being sampled by this processor. 2552.It Li dbsy-drv 2553Count when this processor reserves the bus for use in the next cycle 2554in order to drive data. 2555.It Li dbsy-own 2556Count when some agent reserves the bus for use in the next bus cycle 2557to drive data that this processor will sample. 2558.It Li dbsy-other 2559Count when some agent reserves the bus for use in the next bus cycle 2560to drive data that this processor will not sample. 2561.El 2562.Pp 2563Flags 2564.Dq Li drdy-own 2565and 2566.Dq Li drdy-other 2567are mutually exclusive. 2568Flags 2569.Dq Li dbsy-own 2570and 2571.Dq Li dbsy-other 2572are mutually exclusive. 2573The default value for 2574.Ar qualifier 2575is 2576.Dq Li drdy-drv+drdy-own+dbsy-drv+dbsy-own . 2577.It Li p4-global-power-events Op Li ,mask= Ns Ar flags 2578.Pq "TS event" 2579Count cycles during which the processor is not stopped. 2580Qualifier 2581.Ar flags 2582can take the following value (which is also the default): 2583.Pp 2584.Bl -tag -width indent -compact 2585.It Li running 2586Count cycles when the processor is active. 2587.El 2588.Pp 2589.It Li p4-instr-retired Op Li ,mask= Ns Ar flags 2590.Pq "TS event" 2591Count instructions retired during a clock cycle. 2592Qualifer 2593.Ar flags 2594comprises of the following strings separated by 2595.Ql + 2596characters: 2597.Pp 2598.Bl -tag -width indent -compact 2599.It Li nbogusntag 2600Count non-bogus instructions that are not tagged. 2601.It Li nbogustag 2602Count non-bogus instructions that are tagged. 2603.It Li bogusntag 2604Count bogus instructions that are not tagged. 2605.It Li bogustag 2606Count bogus instructions that are tagged. 2607.El 2608.Pp 2609The default qualifier counts all the above kinds of instructions. 2610.It Li p4-ioq-active-entries Xo 2611.Op Li ,mask= Ns Ar qualifier 2612.Op Li ,busreqtype= Ns Ar req-type 2613.Xc 2614.Pq "TS event" 2615Count the number of entries (clipped at 15) in the IOQ that are 2616active. 2617The event masks are specified by qualifier 2618.Ar qualifier 2619and 2620.Ar req-type . 2621.Pp 2622Qualifier 2623.Ar qualifier 2624is a 2625.Ql + 2626separated set of the following flags: 2627.Pp 2628.Bl -tag -width indent -compact 2629.It Li all-read 2630Count read entries. 2631.It Li all-write 2632Count write entries. 2633.It Li mem-uc 2634Count entries accessing uncacheable memory. 2635.It Li mem-wc 2636Count entries accessing write-combining memory. 2637.It Li mem-wt 2638Count entries accessing write-through memory. 2639.It Li mem-wp 2640Count entries accessing write-protected memory 2641.It Li mem-wb 2642Count entries accessing write-back memory. 2643.It Li own 2644Count store requests driven by the processor (i.e., not by other 2645processors or by DMA). 2646.It Li other 2647Count store requests driven by other processors or by DMA. 2648.It Li prefetch 2649Include hardware and software prefetch requests in the count. 2650.El 2651.Pp 2652The default value for 2653.Ar qualifier 2654is to enable all the above flags. 2655.Pp 2656The 2657.Ar req-type 2658qualifier is a 5-bit number can be additionally used to select a 2659specific bus request type. 2660The default is 0. 2661.Pp 2662The 2663.Dq Li edge 2664qualifier should not be used when counting cycles with this event. 2665The exact behaviour of this event depends on the processor revision. 2666.It Li p4-ioq-allocation Xo 2667.Op Li ,mask= Ns Ar qualifier 2668.Op Li ,busreqtype= Ns Ar req-type 2669.Xc 2670.Pq "TS event" 2671Count various types of transactions on the bus matching the flags set 2672in 2673.Ar qualifier 2674and 2675.Ar req-type . 2676.Pp 2677Qualifier 2678.Ar qualifier 2679is a 2680.Ql + 2681separated set of the following flags: 2682.Pp 2683.Bl -tag -width indent -compact 2684.It Li all-read 2685Count read entries. 2686.It Li all-write 2687Count write entries. 2688.It Li mem-uc 2689Count entries accessing uncacheable memory. 2690.It Li mem-wc 2691Count entries accessing write-combining memory. 2692.It Li mem-wt 2693Count entries accessing write-through memory. 2694.It Li mem-wp 2695Count entries accessing write-protected memory 2696.It Li mem-wb 2697Count entries accessing write-back memory. 2698.It Li own 2699Count store requests driven by the processor (i.e., not by other 2700processors or by DMA). 2701.It Li other 2702Count store requests driven by other processors or by DMA. 2703.It Li prefetch 2704Include hardware and software prefetch requests in the count. 2705.El 2706.Pp 2707The default value for 2708.Ar qualifier 2709is to enable all the above flags. 2710.Pp 2711The 2712.Ar req-type 2713qualifier is a 5-bit number can be additionally used to select a 2714specific bus request type. 2715The default is 0. 2716.Pp 2717The 2718.Dq Li edge 2719qualifier is normally used with this event to prevent multiple 2720counting. 2721The exact behaviour of this event depends on the processor revision. 2722.It Li p4-itlb-reference Op mask= Ns Ar qualifier 2723.Pq "TS event" 2724Count translations using the intruction translation look-aside 2725buffer. 2726The 2727.Ar qualifier 2728argument is a list of the following strings separated by 2729.Ql + 2730characters. 2731.Pp 2732.Bl -tag -width indent -compact 2733.It Li hit 2734Count ITLB hits. 2735.It Li miss 2736Count ITLB misses. 2737.It Li hit-uc 2738Count uncacheable ITLB hits. 2739.El 2740.Pp 2741If no 2742.Ar qualifier 2743is specified the default is to count all the three kinds of ITLB 2744translations. 2745.It Li p4-load-port-replay Op Li ,mask= Ns Ar qualifier 2746.Pq "TS event" 2747Count replayed events at the load port. 2748Qualifier 2749.Ar qualifier 2750can take on one value: 2751.Pp 2752.Bl -tag -width indent -compact 2753.It Li split-ld 2754Count split loads. 2755.El 2756.Pp 2757The default value for 2758.Ar qualifier 2759is 2760.Dq Li split-ld . 2761.It Li p4-mispred-branch-retired Op Li ,mask= Ns Ar flags 2762.Pq "TS event" 2763Count mispredicted IA-32 branch instructions. 2764Qualifier 2765.Ar flags 2766can take the following value (which is also the default): 2767.Pp 2768.Bl -tag -width indent -compact 2769.It Li nbogus 2770Count non-bogus retired branch instructions. 2771.El 2772.It Li p4-machine-clear Op Li ,mask= Ns Ar flags 2773.Pq "TS event" 2774Count the number of pipeline clears seen by the processor. 2775Qualifer 2776.Ar flags 2777is a list of the following strings separated by 2778.Ql + 2779characters: 2780.Pp 2781.Bl -tag -width indent -compact 2782.It Li clear 2783Count for a portion of the many cycles when the machine is being 2784cleared for any reason. 2785.It Li moclear 2786Count machine clears due to memory ordering issues. 2787.It Li smclear 2788Count machine clears due to self-modifying code. 2789.El 2790.Pp 2791Use qualifier 2792.Dq Li edge 2793to get a count of occurrences of machine clears. 2794The default qualifier is 2795.Dq Li clear . 2796.It Li p4-memory-cancel Op Li ,mask= Ns Ar event-list 2797.Pq "TS event" 2798Count the cancelling of various kinds of requests in the data cache 2799address control unit of the CPU. 2800The qualifier 2801.Ar event-list 2802is a list of the following strings separated by 2803.Ql + 2804characters: 2805.Pp 2806.Bl -tag -width indent -compact 2807.It Li st-rb-full 2808Requests cancelled because no store request buffer was available. 2809.It Li 64k-conf 2810Requests that conflict due to 64K aliasing. 2811.El 2812.Pp 2813If 2814.Ar event-list 2815is not specified, then the default is to count both kinds of events. 2816.It Li p4-memory-complete Op Li ,mask= Ns Ar event-list 2817.Pq "TS event" 2818Count the completion of load split, store split, uncacheable split and 2819uncacheable load operations selected by qualifier 2820.Ar event-list . 2821The qualifier 2822.Ar event-list 2823is a 2824.Ql + 2825separated list of the following flags: 2826.Pp 2827.Bl -tag -width indent -compact 2828.It Li lsc 2829Count load splits completed, excluding loads from uncacheable or 2830write-combining areas. 2831.It Li ssc 2832Count any split stores completed. 2833.El 2834.Pp 2835The default is to count both kinds of operations. 2836.It Li p4-mob-load-replay Op Li ,mask= Ns Ar qualifier 2837.Pq "TS event" 2838Count load replays triggered by the memory order buffer. 2839Qualifier 2840.Ar qualifier 2841can be a 2842.Ql + 2843separated list of the following flags: 2844.Pp 2845.Bl -tag -width indent -compact 2846.It Li no-sta 2847Count replays because of unknown store addresses. 2848.It Li no-std 2849Count replays because of unknown store data. 2850.It Li partial-data 2851Count replays because of partially overlapped data accesses between 2852load and store operations. 2853.It Li unalgn-addr 2854Count replays because of mismatches in the lower 4 bits of load and 2855store operations. 2856.El 2857.Pp 2858The default qualifier is 2859.Ar no-sta+no-std+partial-data+unalgn-addr . 2860.It Li p4-packed-dp-uop Op Li ,mask= Ns Ar flags 2861.Pq "TI event" 2862Count packed double-precision uops. 2863Qualifier 2864.Ar flags 2865can take the following value (which is also the default): 2866.Pp 2867.Bl -tag -width indent -compact 2868.It Li all 2869Count all uops operating on packed double-precision operands. 2870.El 2871.It Li p4-packed-sp-uop Op Li ,mask= Ns Ar flags 2872.Pq "TI event" 2873Count packed single-precision uops. 2874Qualifier 2875.Ar flags 2876can take the following value (which is also the default): 2877.Pp 2878.Bl -tag -width indent -compact 2879.It Li all 2880Count all uops operating on packed single-precision operands. 2881.El 2882.It Li p4-page-walk-type Op Li ,mask= Ns Ar qualifier 2883.Pq "TI event" 2884Count page walks performed by the page miss handler. 2885Qualifier 2886.Ar qualifier 2887can be a 2888.Ql + 2889separated list of the following keywords: 2890.Pp 2891.Bl -tag -width indent -compact 2892.It Li dtmiss 2893Count page walks for data TLB misses. 2894.It Li itmiss 2895Count page walks for instruction TLB misses. 2896.El 2897.Pp 2898The default value for 2899.Ar qualifier 2900is 2901.Dq Li dtmiss+itmiss . 2902.It Li p4-replay-event Op Li ,mask= Ns Ar flags 2903.Pq "TS event" 2904Count the retirement of tagged uops selected through the replay 2905tagging mechanism. 2906Qualifier 2907.Ar flags 2908contains a 2909.Ql + 2910separated set of the following strings: 2911.Pp 2912.Bl -tag -width indent -compact 2913.It Li nbogus 2914The marked uops are not bogus. 2915.It Li bogus 2916The marked uops are bogus. 2917.El 2918.Pp 2919This event requires additional (upstream) events to be allocated to 2920perform the desired uop tagging. 2921The default qualifier counts both kinds of uops. 2922This event can be used for precise event based sampling. 2923.It Li p4-resource-stall Op Li ,mask= Ns Ar flags 2924.Pq "TS event" 2925Count the occurrence or latency of stalls in the allocator. 2926Qualifier 2927.Ar flags 2928can take the following value (which is also the default): 2929.Pp 2930.Bl -tag -width indent -compact 2931.It Li sbfull 2932A stall due to the lack of store buffers. 2933.El 2934.It Li p4-response 2935.Pq "TI event" 2936Count different types of responses. 2937Further documentation on this event is not available. 2938.It Li p4-retired-branch-type Op Li ,mask= Ns Ar flags 2939.Pq "TS event" 2940Count branches retired. 2941Qualifier 2942.Ar flags 2943contains a 2944.Ql + 2945separated list of strings: 2946.Pp 2947.Bl -tag -width indent -compact 2948.It Li conditional 2949Count conditional jumps. 2950.It Li call 2951Count direct and indirect call branches. 2952.It Li return 2953Count return branches. 2954.It Li indirect 2955Count returns, indirect calls or indirect jumps. 2956.El 2957.Pp 2958The default qualifier counts all the above branch types. 2959.It Li p4-retired-mispred-branch-type Op Li ,mask= Ns Ar flags 2960.Pq "TS event" 2961Count mispredicted branches retired. 2962Qualifier 2963.Ar flags 2964contains a 2965.Ql + 2966separated list of strings: 2967.Pp 2968.Bl -tag -width indent -compact 2969.It Li conditional 2970Count conditional jumps. 2971.It Li call 2972Count indirect call branches. 2973.It Li return 2974Count return branches. 2975.It Li indirect 2976Count returns, indirect calls or indirect jumps. 2977.El 2978.Pp 2979The default qualifier counts all the above branch types. 2980.It Li p4-scalar-dp-uop Op Li ,mask= Ns Ar flags 2981.Pq "TI event" 2982Count the number of scalar double-precision uops. 2983Qualifier 2984.Ar flags 2985can take the following value (which is also the default): 2986.Pp 2987.Bl -tag -width indent -compact 2988.It Li all 2989Count the number of scalar double-precision uops. 2990.El 2991.It Li p4-scalar-sp-uop Op Li ,mask= Ns Ar flags 2992.Pq "TI event" 2993Count the number of scalar single-precision uops. 2994Qualifier 2995.Ar flags 2996can take the following value (which is also the default): 2997.Pp 2998.Bl -tag -width indent -compact 2999.It Li all 3000Count all uops operating on scalar single-precision operands. 3001.El 3002.It Li p4-snoop 3003.Pq "TI event" 3004Count snoop traffic. 3005Further documentation on this event is not available. 3006.It Li p4-sse-input-assist Op Li ,mask= Ns Ar flags 3007.Pq "TI event" 3008Count the number of times an assist is required to handle problems 3009with the operands for SSE and SSE2 operations. 3010Qualifier 3011.Ar flags 3012can take the following value (which is also the default): 3013.Pp 3014.Bl -tag -width indent -compact 3015.It Li all 3016Count assists for all SSE and SSE2 uops. 3017.El 3018.It Li p4-store-port-replay Op Li ,mask= Ns Ar qualifier 3019.Pq "TS event" 3020Count events replayed at the store port. 3021Qualifier 3022.Ar qualifier 3023can take on one value: 3024.Pp 3025.Bl -tag -width indent -compact 3026.It Li split-st 3027Count split stores. 3028.El 3029.Pp 3030The default value for 3031.Ar qualifier 3032is 3033.Dq Li split-st . 3034.It Li p4-tc-deliver-mode Op Li ,mask= Ns Ar qualifier 3035.Pq "TI event" 3036Count the duration in cycles of operating modes of the trace cache and 3037decode engine. 3038The desired operating mode is selected by 3039.Ar qualifier , 3040which is a list of the following strings separated by 3041.Ql + 3042characters: 3043.Pp 3044.Bl -tag -width indent -compact 3045.It Li DD 3046Both logical processors are in deliver mode. 3047.It Li DB 3048Logical processor 0 is in deliver mode while logical processor 1 is in 3049build mode. 3050.It Li DI 3051Logical processor 0 is in deliver mode while logical processor 1 is 3052halted, or in machine clear, or transitioning to a long microcode 3053flow. 3054.It Li BD 3055Logical processor 0 is in build mode while logical processor 1 is in 3056deliver mode. 3057.It Li BB 3058Both logical processors are in build mode. 3059.It Li BI 3060Logical processor 0 is in build mode while logical processor 1 is 3061halted, or in machine clear or transitioning to a long microcode 3062flow. 3063.It Li ID 3064Logical processor 0 is halted, or in machine clear or transitioning to 3065a long microcode flow while logical processor 1 is in deliver mode. 3066.It Li IB 3067Logical processor 0 is halted, or in machine clear or transitioning to 3068a long microcode flow while logical processor 1 is in build mode. 3069.El 3070.Pp 3071If there is only one logical processor in the processor package then 3072the qualifier for logical processor 1 is ignored. 3073If no qualifier is specified, the default qualifier is 3074.Dq Li DD+DB+DI+BD+BB+BI+ID+IB . 3075.It Li p4-tc-ms-xfer Op Li ,mask= Ns Ar flags 3076.Pq "TI event" 3077Count the number of times uop delivery changed from the trace cache to 3078MS ROM. 3079Qualifier 3080.Ar flags 3081can take the following value (which is also the default): 3082.Pp 3083.Bl -tag -width indent -compact 3084.It Li cisc 3085Count TC to MS transfers. 3086.El 3087.It Li p4-uop-queue-writes Op Li ,mask= Ns Ar flags 3088.Pq "TS event" 3089Count the number of valid uops written to the uop queue. 3090Qualifier 3091.Ar flags 3092is a list of the following strings, separated by 3093.Ql + 3094characters: 3095.Pp 3096.Bl -tag -width indent -compact 3097.It Li from-tc-build 3098Count uops being written from the trace cache in build mode. 3099.It Li from-tc-deliver 3100Count uops being written from the trace cache in deliver mode. 3101.It Li from-rom 3102Count uops being written from microcode ROM. 3103.El 3104.Pp 3105The default qualifier counts all the above kinds of uops. 3106.It Li p4-uop-type Op Li ,mask= Ns Ar flags 3107.Pq "TS event" 3108This event is used in conjunction with the front-end at-retirement 3109mechanism to tag load and store uops. 3110Qualifer 3111.Ar flags 3112comprises the following strings separated by 3113.Ql + 3114characters: 3115.Pp 3116.Bl -tag -width indent -compact 3117.It Li tagloads 3118Mark uops that are load operations. 3119.It Li tagstores 3120Mark uops that are store operations. 3121.El 3122.Pp 3123The default qualifier counts both kinds of uops. 3124.It Li p4-uops-retired Op Li ,mask= Ns Ar flags 3125.Pq "TS event" 3126Count uops retired during a clock cycle. 3127Qualifier 3128.Ar flags 3129comprises the following strings separated by 3130.Ql + 3131characters: 3132.Pp 3133.Bl -tag -width indent -compact 3134.It Li nbogus 3135Count marked uops that are not bogus. 3136.It Li bogus 3137Count marked uops that are bogus. 3138.El 3139.Pp 3140The default qualifier counts both kinds of uops. 3141.It Li p4-wc-buffer Op Li ,mask= Ns Ar flags 3142.Pq "TI event" 3143Count write-combining buffer operations. 3144Qualifier 3145.Ar flags 3146contains the following strings separated by 3147.Ql + 3148characters: 3149.Pp 3150.Bl -tag -width indent -compact 3151.It Li wcb-evicts 3152WC buffer evictions due to any cause. 3153.It Li wcb-full-evict 3154WC buffer evictions due to no WC buffer being available. 3155.El 3156.Pp 3157The default qualifer counts both kinds of evictions. 3158.It Li p4-x87-assist Op Li ,mask= Ns Ar flags 3159.Pq "TS event" 3160Count the retirement of x87 instructions that required special 3161handling. 3162Qualifier 3163.Ar flags 3164contains the following strings separated by 3165.Ql + 3166characters: 3167.Pp 3168.Bl -tag -width indent -compact 3169.It Li fpsu 3170Count instructions that saw an FP stack underflow. 3171.It Li fpso 3172Count instructions that saw an FP stack overflow. 3173.It Li poao 3174Count instructions that saw an x87 output overflow. 3175.It Li poau 3176Count instructions that saw an x87 output underflow. 3177.It Li prea 3178Count instructions that needed an x87 input assist. 3179.El 3180.Pp 3181The default qualifier counts all the above types of instruction 3182retirements. 3183.It Li p4-x87-fp-uop Op Li ,mask= Ns Ar flags 3184.Pq "TI event" 3185Count x87 floating-point uops. 3186Qualifier 3187.Ar flags 3188can take the following value (which is also the default): 3189.Pp 3190.Bl -tag -width indent -compact 3191.It Li all 3192Count all x87 floating-point uops. 3193.El 3194.Pp 3195If an instruction contains more than one x87 floating-point uops, then 3196all x87 floating-point uops will be counted. 3197This event does not count x87 floating-point data movement operations. 3198.It Li p4-x87-simd-moves-uop Op Li ,mask= Ns Ar flags 3199.Pq "TI event" 3200Count each x87 FPU, MMX, SSE, or SSE2 uops that load data or store 3201data or perform register-to-register moves. 3202This event does not count integer move uops. 3203Qualifier 3204.Ar flags 3205may contain the following keywords separated by 3206.Ql + 3207characters: 3208.Pp 3209.Bl -tag -width indent -compact 3210.It Li allp0 3211Count all x87 and SIMD store and move uops. 3212.It Li allp2 3213Count all x87 and SIMD load uops. 3214.El 3215.Pp 3216The default is to count all uops. 3217.Pq Errata 3218This event may be affected by processor errata N43. 3219.El 3220.Ss "Cascading P4 PMCs" 3221PMC cascading support is currently poorly implemented. 3222While individual event counters may be allocated with a 3223.Dq Li cascade 3224qualifier, the current API does not offer the ability 3225to name and allocate all the resources needed for a 3226cascaded event counter pair in a single operation. 3227.Ss "Precise Event Based Sampling" 3228Support for precise event based sampling is currently 3229unimplemented in 3230.Xr hwpmc 4 . 3231.Sh IMPLEMENTATION NOTES 3232On the i386 architecture, 3233.Fx 3234has historically allowed the use of the RDTSC instruction from 3235user-mode (i.e., at a processor CPL of 3) by any process. 3236This behaviour is preserved by 3237.Xr hwpmc 4 . 3238.Sh RETURN VALUES 3239The 3240.Fn pmc_name_of_capability , 3241.Fn pmc_name_of_class , 3242.Fn pmc_name_of_cputype , 3243.Fn pmc_name_of_disposition , 3244.Fn pmc_name_of_event , 3245.Fn pmc_name_of_mode , 3246and 3247.Fn pmc_name_of_state 3248functions return a pointer to the human readable form of their argument. 3249These pointers may point to statically allocated storage and must 3250not be passed to 3251.Fn free . 3252In case of an error, these functions return 3253.Dv NULL 3254and set the global variable 3255.Va errno . 3256.Pp 3257The functions 3258.Fn pmc_ncpu 3259and 3260.Fn pmc_npmc 3261return the number of CPUs and number of PMCs configured respectively; 3262in case of an error they return the value 3263\-1 3264and set the global variable 3265.Va errno . 3266.Pp 3267All other functions return the value 32680 3269if successful; otherwise the value 3270\-1 3271is returned and the global variable 3272.Va errno 3273is set to indicate the error. 3274.Sh COMPATIBILITY 3275The interface between the 3276.Nm pmc 3277library and the 3278.Xr hwpmc 4 3279driver is intended to be private to the implementation and may 3280change. 3281In order to ease forward compatibility with future versions of the 3282.Xr hwpmc 4 3283driver, applications are urged to dynamically link with the 3284.Nm pmc 3285library. 3286.Pp 3287The 3288.Nm pmc 3289API is 3290.Ud 3291.Sh ERRORS 3292A call to 3293.Fn pmc_init 3294may fail with the following errors in addition to those returned by 3295.Xr modfind 2 , 3296.Xr modstat 2 3297and 3298.Xr hwpmc 4 : 3299.Bl -tag -width Er 3300.It Bq Er ENXIO 3301An unknown CPU type was encountered during initialization. 3302.It Bq Er EPROGMISMATCH 3303The version number of the 3304.Xr hwpmc 4 3305kernel module did not match that compiled into the 3306.Nm pmc 3307library. 3308.El 3309.Pp 3310A call to 3311.Fn pmc_capabilities , 3312.Fn pmc_name_of_capability , 3313.Fn pmc_name_of_disposition , 3314.Fn pmc_name_of_state , 3315.Fn pmc_name_of_event , 3316.Fn pmc_name_of_mode 3317.Fn pmc_name_of_class 3318and 3319.Fn pmc_width 3320may fail with the following error: 3321.Bl -tag -width Er 3322.It Bq Er EINVAL 3323An invalid argument was passed to the function. 3324.El 3325.Pp 3326A call to 3327.Fn pmc_cpuinfo 3328or 3329.Fn pmc_ncpu 3330may fail with the following error: 3331.Bl -tag -width Er 3332.It Bq Er ENXIO 3333The 3334.Nm pmc 3335has not been initialized. 3336.El 3337.Pp 3338A call to 3339.Fn pmc_npmc 3340may fail with the following errors: 3341.Bl -tag -width Er 3342.It Bq Er EINVAL 3343The argument passed in was out of range. 3344.It Bq Er ENXIO 3345The 3346.Nm pmc 3347library has not been initialized. 3348.El 3349.Pp 3350A call to 3351.Fn pmc_pmcinfo 3352may fail with the following errors, in addition to those returned by 3353.Xr hwpmc 4 : 3354.Bl -tag -width Er 3355.It Bq Er ENXIO 3356The 3357.Nm pmc 3358library is not yet initialized. 3359.El 3360.Pp 3361A call to 3362.Fn pmc_allocate 3363may fail with the following errors, in addition to those returned by 3364.Xr hwpmc 4 : 3365.Bl -tag -width Er 3366.It Bq Er EINVAL 3367The 3368.Fa mode 3369argument passed in had an illegal value, or the event specification 3370.Fa ctrspec 3371was unrecognized for this CPU type. 3372.El 3373.Pp 3374Calls to 3375.Fn pmc_attach , 3376.Fn pmc_configure_logfile , 3377.Fn pmc_detach , 3378.Fn pmc_disable , 3379.Fn pmc_enable , 3380.Fn pmc_get_driver_stats , 3381.Fn pmc_get_msr , 3382.Fn pmc_read , 3383.Fn pmc_release , 3384.Fn pmc_rw , 3385.Fn pmc_set , 3386.Fn pmc_start , 3387.Fn pmc_stop , 3388.Fn pmc_write , 3389and 3390.Fn pmc_writelog 3391may fail with the errors described in 3392.Xr hwpmc 4 . 3393.Pp 3394If a log file was configured using 3395.Fn pmc_configure_logfile 3396and the 3397.Xr hwpmc 4 3398driver encountered an error while logging data to it, then 3399logging will be stopped and a subsequent call to 3400.Fn pmc_flush_logfile 3401will fail with the error code seen by the 3402.Xr hwpmc 4 3403driver. 3404.Sh SEE ALSO 3405.Xr modfind 2 , 3406.Xr modstat 2 , 3407.Xr calloc 3 , 3408.Xr pmclog 3 , 3409.Xr hwpmc 4 , 3410.Xr pmccontrol 8 , 3411.Xr pmcstat 8 3412.Sh HISTORY 3413The 3414.Nm pmc 3415library first appeared in 3416.Fx 6.0 . 3417.Sh BUGS 3418The information returned by 3419.Fn pmc_cpuinfo , 3420.Fn pmc_ncpu 3421and possibly 3422.Fn pmc_npmc 3423should really be available all the time, through a better designed 3424interface and not just when 3425.Xr hwpmc 4 3426is present in the kernel. 3427