user_namespaces.7: Minor wording improvement
[man-pages.git] / man1 / sprof.1
blobc8e14c20f03d571f9e56a6019308368c1079d21a
1 .\" Copyright (C) 2014 Michael Kerrisk <mtk.manpages@gmail.com>
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .TH SPROF 1 2020-11-01 "Linux" "Linux User Manual"
26 .SH NAME
27 sprof \- read and display shared object profiling data
28 .SH SYNOPSIS
29 .nf
30 .BR sprof " [\fIoption\fP]... \fIshared-object-path\fP \
31 [\fIprofile-data-path\fP]"
32 .fi
33 .SH DESCRIPTION
34 The
35 .B sprof
36 command displays a profiling summary for the
37 shared object (shared library) specified as its first command-line argument.
38 The profiling summary is created using previously generated
39 profiling data in the (optional) second command-line argument.
40 If the profiling data pathname is omitted, then
41 .B sprof
42 will attempt to deduce it using the soname of the shared object,
43 looking for a file with the name
44 .I <soname>.profile
45 in the current directory.
46 .SH OPTIONS
47 The following command-line options specify the profile output
48 to be produced:
49 .TP
50 .BR \-c ", " \-\-call\-pairs
51 Print a list of pairs of call paths for the interfaces exported
52 by the shared object,
53 along with the number of times each path is used.
54 .TP
55 .BR \-p ", " \-\-flat\-profile
56 Generate a flat profile of all of the functions in the monitored object,
57 with counts and ticks.
58 .TP
59 .BR \-q ", " \-\-graph
60 Generate a call graph.
61 .PP
62 If none of the above options is specified,
63 then the default behavior is to display a flat profile and a call graph.
64 .PP
65 The following additional command-line options are available:
66 .TP
67 .BR \-? ", " \-\-help
68 Display a summary of command-line options and arguments and exit.
69 .TP
70 .B \-\-usage
71 Display a short usage message and exit.
72 .TP
73 .BR \-V ", " \-\-version
74 Display the program version and exit.
75 .SH CONFORMING TO
76 The
77 .B sprof
78 command is a GNU extension, not present in POSIX.1.
79 .SH EXAMPLES
80 The following example demonstrates the use of
81 .BR sprof .
82 The example consists of a main program that calls two functions
83 in a shared object.
84 First, the code of the main program:
85 .PP
86 .in +4n
87 .EX
88 $ \fBcat prog.c\fP
89 #include <stdlib.h>
91 void x1(void);
92 void x2(void);
94 int
95 main(int argc, char *argv[])
97     x1();
98     x2();
99     exit(EXIT_SUCCESS);
104 The functions
105 .IR x1 ()
107 .IR x2 ()
108 are defined in the following source file that is used to
109 construct the shared object:
111 .in +4n
113 $ \fBcat libdemo.c\fP
114 #include <unistd.h>
116 void
117 consumeCpu1(int lim)
119     for (int j = 0; j < lim; j++)
120         getppid();
123 void
124 x1(void) {
125     for (int j = 0; j < 100; j++)
126         consumeCpu1(200000);
129 void
130 consumeCpu2(int lim)
132     for (int j = 0; j < lim; j++)
133         getppid();
136 void
137 x2(void)
139     for (int j = 0; j < 1000; j++)
140         consumeCpu2(10000);
145 Now we construct the shared object with the real name
146 .IR libdemo.so.1.0.1 ,
147 and the soname
148 .IR libdemo.so.1 :
150 .in +4n
152 $ \fBcc \-g \-fPIC \-shared \-Wl,\-soname,libdemo.so.1 \e\fP
153         \fB\-o libdemo.so.1.0.1 libdemo.c\fP
157 Then we construct symbolic links for the library soname and
158 the library linker name:
160 .in +4n
162 $ \fBln \-sf libdemo.so.1.0.1 libdemo.so.1\fP
163 $ \fBln \-sf libdemo.so.1 libdemo.so\fP
167 Next, we compile the main program, linking it against the shared object,
168 and then list the dynamic dependencies of the program:
170 .in +4n
172 $ \fBcc \-g \-o prog prog.c \-L. \-ldemo\fP
173 $ \fBldd prog\fP
174         linux\-vdso.so.1 =>  (0x00007fff86d66000)
175         libdemo.so.1 => not found
176         libc.so.6 => /lib64/libc.so.6 (0x00007fd4dc138000)
177         /lib64/ld\-linux\-x86\-64.so.2 (0x00007fd4dc51f000)
181 In order to get profiling information for the shared object,
182 we define the environment variable
183 .B LD_PROFILE
184 with the soname of the library:
186 .in +4n
188 $ \fBexport LD_PROFILE=libdemo.so.1\fP
192 We then define the environment variable
193 .B LD_PROFILE_OUTPUT
194 with the pathname of the directory where profile output should be written,
195 and create that directory if it does not exist already:
197 .in +4n
199 $ \fBexport LD_PROFILE_OUTPUT=$(pwd)/prof_data\fP
200 $ \fBmkdir \-p $LD_PROFILE_OUTPUT\fP
204 .B LD_PROFILE
205 causes profiling output to be
206 .I appended
207 to the output file if it already exists,
208 so we ensure that there is no preexisting profiling data:
210 .in +4n
212 $ \fBrm \-f $LD_PROFILE_OUTPUT/$LD_PROFILE.profile\fP
216 We then run the program to produce the profiling output,
217 which is written to a file in the directory specified in
218 .BR LD_PROFILE_OUTPUT :
220 .in +4n
222 $ \fBLD_LIBRARY_PATH=. ./prog\fP
223 $ \fBls prof_data\fP
224 libdemo.so.1.profile
228 We then use the
229 .B sprof \-p
230 option to generate a flat profile with counts and ticks:
232 .in +4n
234 $ \fBsprof \-p libdemo.so.1 $LD_PROFILE_OUTPUT/libdemo.so.1.profile\fP
235 Flat profile:
237 Each sample counts as 0.01 seconds.
238   %   cumulative   self              self     total
239  time   seconds   seconds    calls  us/call  us/call  name
240  60.00      0.06     0.06      100   600.00           consumeCpu1
241  40.00      0.10     0.04     1000    40.00           consumeCpu2
242   0.00      0.10     0.00        1     0.00           x1
243   0.00      0.10     0.00        1     0.00           x2
248 .B sprof \-q
249 option generates a call graph:
251 .in +4n
253 $ \fBsprof \-q libdemo.so.1 $LD_PROFILE_OUTPUT/libdemo.so.1.profile\fP
255 index % time    self  children    called     name
257                 0.00    0.00      100/100         x1 [1]
258 [0]    100.0    0.00    0.00      100         consumeCpu1 [0]
259 \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
260                 0.00    0.00        1/1           <UNKNOWN>
261 [1]      0.0    0.00    0.00        1         x1 [1]
262                 0.00    0.00      100/100         consumeCpu1 [0]
263 \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
264                 0.00    0.00     1000/1000        x2 [3]
265 [2]      0.0    0.00    0.00     1000         consumeCpu2 [2]
266 \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
267                 0.00    0.00        1/1           <UNKNOWN>
268 [3]      0.0    0.00    0.00        1         x2 [3]
269                 0.00    0.00     1000/1000        consumeCpu2 [2]
270 \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
274 Above and below, the "<UNKNOWN>" strings represent identifiers that
275 are outside of the profiled object (in this example, these are instances of
276 .IR main() ).
279 .B sprof \-c
280 option generates a list of call pairs and the number of their occurrences:
282 .in +4n
284 $ \fBsprof \-c libdemo.so.1 $LD_PROFILE_OUTPUT/libdemo.so.1.profile\fP
285 <UNKNOWN>                  x1                                 1
286 x1                         consumeCpu1                      100
287 <UNKNOWN>                  x2                                 1
288 x2                         consumeCpu2                     1000
291 .SH SEE ALSO
292 .BR gprof (1),
293 .BR ldd (1),
294 .BR ld.so (8)