xref: /freebsd/usr.sbin/pmcstat/pmcstat.8 (revision 5ac01ce026aa871e24065f931b5b5c36024c96f9)
1.\" Copyright (c) 2003-2008 Joseph Koshy
2.\" Copyright (c) 2007 The FreeBSD Foundation
3.\" All rights reserved.
4.\"
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright
9.\"    notice, this list of conditions and the following disclaimer.
10.\" 2. Redistributions in binary form must reproduce the above copyright
11.\"    notice, this list of conditions and the following disclaimer in the
12.\"    documentation and/or other materials provided with the distribution.
13.\"
14.\" This software is provided by Joseph Koshy ``as is'' and
15.\" any express or implied warranties, including, but not limited to, the
16.\" implied warranties of merchantability and fitness for a particular purpose
17.\" are disclaimed.  in no event shall Joseph Koshy be liable
18.\" for any direct, indirect, incidental, special, exemplary, or consequential
19.\" damages (including, but not limited to, procurement of substitute goods
20.\" or services; loss of use, data, or profits; or business interruption)
21.\" however caused and on any theory of liability, whether in contract, strict
22.\" liability, or tort (including negligence or otherwise) arising in any way
23.\" out of the use of this software, even if advised of the possibility of
24.\" such damage.
25.\"
26.\" $FreeBSD$
27.\"
28.Dd August 5, 2020
29.Dt PMCSTAT 8
30.Os
31.Sh NAME
32.Nm pmcstat
33.Nd "performance measurement with performance monitoring hardware"
34.Sh SYNOPSIS
35.Nm
36.Op Fl A
37.Op Fl C
38.Op Fl D Ar pathname
39.Op Fl E
40.Op Fl F Ar pathname
41.Op Fl G Ar pathname
42.Op Fl I
43.Op Fl L
44.Op Fl M Ar mapfilename
45.Op Fl N
46.Op Fl O Ar logfilename
47.Op Fl P Ar event-spec
48.Op Fl R Ar logfilename
49.Op Fl S Ar event-spec
50.Op Fl T
51.Op Fl U
52.Op Fl W
53.Op Fl a Ar pathname
54.Op Fl c Ar cpu-spec
55.Op Fl d
56.Op Fl e
57.Op Fl f Ar pluginopt
58.Op Fl g
59.Op Fl i Ar lwp
60.Op Fl k Ar kerneldir
61.Op Fl l Ar secs
62.Op Fl m Ar pathname
63.Op Fl n Ar rate
64.Op Fl o Ar outputfile
65.Op Fl p Ar event-spec
66.Op Fl q
67.Op Fl r Ar fsroot
68.Op Fl s Ar event-spec
69.Op Fl t Ar process-spec
70.Op Fl u Ar event-spec
71.Op Fl v
72.Op Fl w Ar secs
73.Op Fl z Ar graphdepth
74.Op Ar command Op Ar args
75.Sh DESCRIPTION
76The
77.Nm
78utility measures system performance using the facilities provided by
79.Xr hwpmc 4 .
80.Pp
81The
82.Nm
83utility can measure both hardware events seen by the system as a
84whole, and those seen when a specified set of processes are executing
85on the system's CPUs.
86If a specific set of processes is being targeted (for example,
87if the
88.Fl t Ar process-spec
89option is specified, or if a command line is specified using
90.Ar command ) ,
91then measurement occurs till
92.Ar command
93exits, or till all target processes specified by the
94.Fl t Ar process-spec
95options exit, or till the
96.Nm
97utility is interrupted by the user.
98If a specific set of processes is not targeted for measurement, then
99.Nm
100will perform system-wide measurements till interrupted by the
101user.
102.Pp
103A given invocation of
104.Nm
105can mix allocations of system-mode and process-mode PMCs, of both
106counting and sampling flavors.
107The values of all counting PMCs are printed in human readable form
108at regular intervals by
109.Nm .
110The output of sampling PMCs may be configured to go to a log file for
111subsequent offline analysis, or, at the expense of greater
112overhead, may be configured to be printed in text form on the fly.
113.Pp
114Hardware events to measure are specified to
115.Nm
116using event specifier strings
117.Ar event-spec .
118The syntax of these event specifiers is machine dependent and is
119documented in
120.Xr pmc 3 .
121.Pp
122A process-mode PMC may be configured to be inheritable by the target
123process' current and future children.
124.Sh OPTIONS
125The following options are available:
126.Bl -tag -width indent
127.It Fl A
128Skip symbol lookup and display address instead.
129.It Fl C
130Toggle between showing cumulative or incremental counts for
131subsequent counting mode PMCs specified on the command line.
132The default is to show incremental counts.
133.It Fl D Ar pathname
134Create files with per-program samples in the directory named
135by
136.Ar pathname .
137The default is to create these files in the current directory.
138.It Fl E
139Toggle showing per-process counts at the time a tracked process
140exits for subsequent process-mode PMCs specified on the command line.
141This option is useful for mapping the performance characteristics of a
142complex pipeline of processes when used in conjunction with the
143.Fl d
144option.
145The default is to not to enable per-process tracking.
146.It Fl F Ar pathname
147Print calltree (Kcachegrind) information to file
148.Ar pathname .
149If argument
150.Ar pathname
151is a
152.Dq Li -
153this information is sent to the output file specified by the
154.Fl o
155option.
156.It Fl G Ar pathname
157Print callchain information to file
158.Ar pathname .
159If argument
160.Ar pathname
161is a
162.Dq Li -
163this information is sent to the output file specified by the
164.Fl o
165option.
166.It Fl I
167Show the offset of the instruction pointer into the symbol.
168.It Fl L
169List all event names.
170.It Fl M Ar mapfilename
171Write the mapping between executable objects encountered in the event
172log and the abbreviated pathnames used for
173.Xr gprof 1
174profiles to file
175.Ar mapfilename .
176If this option is not specified, mapping information is not written.
177Argument
178.Ar mapfilename
179may be a
180.Dq Li -
181in which case this mapping information is sent to the output
182file configured by the
183.Fl o
184option.
185.It Fl N
186Toggle capturing callchain information for subsequent sampling PMCs.
187The default is for sampling PMCs to capture callchain information.
188.It Fl O Ar logfilename
189Send logging output to file
190.Ar logfilename .
191If
192.Ar logfilename
193is of the form
194.Ar hostname Ns : Ns Ar port ,
195where
196.Ar hostname
197does not start with a
198.Ql \&.
199or a
200.Ql / ,
201then
202.Nm
203will open a network socket to host
204.Ar hostname
205on port
206.Ar port .
207.Pp
208If the
209.Fl O
210option is not specified and one of the logging options is requested,
211then
212.Nm
213will print a textual form of the logged events to the configured
214output file.
215.It Fl P Ar event-spec
216Allocate a process mode sampling PMC measuring hardware events
217specified in
218.Ar event-spec .
219.It Fl R Ar logfilename
220Perform offline analysis using sampling data in file
221.Ar logfilename .
222.It Fl S Ar event-spec
223Allocate a system mode sampling PMC measuring hardware events
224specified in
225.Ar event-spec .
226.It Fl T
227Use a top like mode for sampling PMCs. The following hotkeys
228can be used: 'A' toggle symbol resolution, 'c+a' switch to accumulative mode, 'c+d'
229switch to delta mode, 'I' toggle showing offsets into symbols, 'm' merge PMCs, 'n'
230change view, 'p' show next PMC, ' ' pause, 'q' quit. calltree only: 'f' cost under
231threshold is seen as a dot.
232.It Fl U
233Toggle capturing user-space call traces while in kernel mode.
234The default is for sampling PMCs to capture user-space callchain information
235while in user-space mode, and kernel callchain information while in kernel mode.
236.It Fl W
237Toggle logging the incremental counts seen by the threads of a
238tracked process each time they are scheduled on a CPU.
239This is an experimental feature intended to help analyse the
240dynamic behaviour of processes in the system.
241It may incur substantial overhead if enabled.
242The default is for this feature to be disabled.
243.It Fl a Ar pathname
244Perform a symbol and file:line lookup for each address in each
245callgraph and save the output to
246.Ar pathname .
247Unlike
248.Fl m
249that only resolves the first symbol in the graph, this resolves
250every node in the callgraph, or prints out addresses if no
251lookup information is available.
252This option requires the
253.Fl R
254option to read in samples that were previously collected and
255saved with the
256.Fl O
257option.
258.It Fl c Ar cpu-spec
259Set the cpus for subsequent system mode PMCs specified on the
260command line to
261.Ar cpu-spec .
262Argument
263.Ar cpu-spec
264is a comma separated list of CPU numbers, or the literal
265.Sq *
266denoting all available CPUs.
267The default is to allocate system mode PMCs on all available
268CPUs.
269.It Fl d
270Toggle between process mode PMCs measuring events for the target
271process' current and future children or only measuring events for
272the target process.
273The default is to measure events for the target process alone.
274(it has to be passed in the command line prior to
275.Fl p ,
276.Fl s ,
277.Fl P ,
278or
279.Fl S ) .
280.It Fl e
281Specify that the gprof profile files will use a wide history counter.
282These files are produced in a format compatible with
283.Xr gprof 1 .
284However, other tools that cannot fully parse a BSD-style
285gmon header might be unable to correctly parse these files.
286.It Fl f Ar pluginopt
287Pass option string to the active plugin.
288.br
289threshold=<float> do not display cost under specified value (Top).
290.br
291skiplink=0|1 replace node with cost under threshold by a dot (Top).
292.It Fl g
293Produce profiles in a format compatible with
294.Xr gprof 1 .
295A separate profile file is generated for each executable object
296encountered.
297Profile files are placed in sub-directories named by their PMC
298event name.
299.It Fl i Ar lwp
300Filter on thread ID
301.Ar lwp ,
302which you can get from
303.Xr ps 1
304.Fl o
305.Li lwp .
306.It Fl k Ar kerneldir
307Set the pathname of the kernel directory to argument
308.Ar kerneldir .
309This directory specifies where
310.Nm
311should look for the kernel and its modules.
312The default is to use the path of the running kernel obtained from the
313.Va kern.bootfile
314sysctl.
315Modules will also be searched for in /boot/modules if not found in
316.Ar kerneldir .
317.It Fl l Ar secs
318Set system-wide performance measurement duration for
319.Ar secs
320seconds.
321The argument
322.Ar secs
323may be a fractional value.
324.It Fl m Ar pathname
325Print the sampled PCs with the name, the start and ending addresses
326of the function within they live.
327The
328.Ar pathname
329argument is mandatory and indicates where the information will be stored.
330If argument
331.Ar pathname
332is a
333.Dq Li -
334this information is sent to the output file specified by the
335.Fl o
336option.
337This option requires the
338.Fl R
339option to read in samples that were previously collected and
340saved with the
341.Fl O
342option.
343.It Fl n Ar rate
344Set the default sampling rate for subsequent sampling mode
345PMCs specified on the command line.
346The default is to configure PMCs to sample the CPU's instruction
347pointer every 65536 events.
348.It Fl o Ar outputfile
349Send counter readings and textual representations of logged data
350to file
351.Ar outputfile .
352The default is to send output to
353.Pa stderr
354when collecting live data and to
355.Pa stdout
356when processing a pre-existing logfile.
357.It Fl p Ar event-spec
358Allocate a process mode counting PMC measuring hardware events
359specified in
360.Ar event-spec .
361.It Fl q
362Decrease verbosity.
363.It Fl r Ar fsroot
364Set the top of the filesystem hierarchy under which executables
365are located to argument
366.Ar fsroot .
367The default is
368.Pa / .
369.It Fl s Ar event-spec
370Allocate a system mode counting PMC measuring hardware events
371specified in
372.Ar event-spec .
373.It Fl t Ar process-spec
374Attach process mode PMCs to the processes named by argument
375.Ar process-spec .
376Argument
377.Ar process-spec
378may be a non-negative integer denoting a specific process id, or a
379regular expression for selecting processes based on their command names.
380.It Fl u Ar event-spec
381Provide short description of event.
382.It Fl v
383Increase verbosity.
384.It Fl w Ar secs
385Print the values of all counting mode PMCs or sampling mode PMCs
386for top mode every
387.Ar secs
388seconds.
389The argument
390.Ar secs
391may be a fractional value.
392The default interval is 5 seconds.
393.It Fl z Ar graphdepth
394When printing system-wide callgraphs, limit callgraphs to the depth
395specified by argument
396.Ar graphdepth .
397.El
398.Pp
399If
400.Ar command
401is specified, it is executed using
402.Xr execvp 3 .
403.Sh EXAMPLES
404To perform system-wide statistical sampling on an AMD Athlon CPU with
405samples taken every 32768 instruction retirals and data being sampled
406to file
407.Pa sample.stat ,
408use:
409.Dl "pmcstat -O sample.stat -n 32768 -S k7-retired-instructions"
410.Pp
411To execute
412.Nm firefox
413and measure the number of data cache misses suffered
414by it and its children every 12 seconds on an AMD Athlon, use:
415.Dl "pmcstat -d -w 12 -p k7-dc-misses firefox"
416.Pp
417To measure instructions retired for all processes named
418.Dq emacs
419use:
420.Dl "pmcstat -t '^emacs$' -p instructions"
421.Pp
422To measure instructions retired for processes named
423.Dq emacs
424for a period of 10 seconds use:
425.Dl "pmcstat -t '^emacs$' -p instructions sleep 10"
426.Pp
427To count instruction tlb-misses on CPUs 0 and 2 on a Intel
428Pentium Pro/Pentium III SMP system use:
429.Dl "pmcstat -c 0,2 -s p6-itlb-miss"
430.Pp
431To collect profiling information for a specific process with pid 1234
432based on instruction cache misses seen by it use:
433.Dl "pmcstat -P ic-misses -t 1234 -O /tmp/sample.out"
434.Pp
435To perform system-wide sampling on all configured processors
436based on processor instructions retired use:
437.Dl "pmcstat -S instructions -O /tmp/sample.out"
438If callgraph capture is not desired use:
439.Dl "pmcstat -N -S instructions -O /tmp/sample.out"
440.Pp
441To send the generated event log to a remote machine use:
442.Dl "pmcstat -S instructions -O remotehost:port"
443On the remote machine, the sample log can be collected using
444.Xr nc 1 :
445.Dl "nc -l remotehost port > /tmp/sample.out"
446.Pp
447To generate
448.Xr gprof 1
449compatible profiles from a sample file use:
450.Dl "pmcstat -R /tmp/sample.out -g"
451.Pp
452To print a system-wide profile with callgraphs to file
453.Pa "foo.graph"
454use:
455.Dl "pmcstat -R /tmp/sample.out -G foo.graph"
456.Sh DIAGNOSTICS
457If option
458.Fl v
459is specified,
460.Nm
461may issue the following diagnostic messages:
462.Bl -diag
463.It "#callchain/dubious-frames"
464The number of callchain records that had an
465.Dq impossible
466value for a return address.
467.It "#exec handling errors"
468The number of
469.Xr exec 2
470events in the log file that named executables that could not be
471analyzed.
472.It "#exec/elf"
473The number of
474.Xr exec 2
475events that named ELF executables.
476.It "#exec/unknown"
477The number of
478.Xr exec 2
479events that named executables with unrecognized formats.
480.It "#samples/total"
481The total number of samples in the log file.
482.It "#samples/unclaimed"
483The number of samples that could not be correlated to a known
484executable object (i.e., to an executable, shared library, the
485kernel or the runtime loader).
486.It "#samples/unknown-object"
487The number of samples that were associated with an executable
488with an unrecognized object format.
489.El
490.Pp
491.Ex -std
492.Sh COMPATIBILITY
493Due to the limitations of the
494.Pa gmon.out
495file format,
496.Xr gprof 1
497compatible profiles generated by the
498.Fl g
499option do not contain information about calls that cross executable
500boundaries.
501The generated
502.Pa gmon.out
503files are also only meaningful for native executables.
504.Sh SEE ALSO
505.Xr gprof 1 ,
506.Xr nc 1 ,
507.Xr execvp 3 ,
508.Xr pmc 3 ,
509.Xr pmclog 3 ,
510.Xr hwpmc 4 ,
511.Xr pmccontrol 8 ,
512.Xr sysctl 8
513.Sh HISTORY
514The
515.Nm
516utility first appeared in
517.Fx 6.0 .
518It is
519.Ud
520.Sh AUTHORS
521.An Joseph Koshy Aq Mt jkoshy@FreeBSD.org
522.Sh BUGS
523The
524.Nm
525utility cannot yet analyse
526.Xr hwpmc 4
527logs generated by non-native architectures.
528