]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man1/sprof.1
localedef.1: wfix
[thirdparty/man-pages.git] / man1 / sprof.1
CommitLineData
2adccceb
MK
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.\"
460495ca 25.TH SPROF 1 2015-08-08 "Linux" "Linux User Manual"
2adccceb
MK
26.SH NAME
27sprof \- read and display shared object profiling data
28.SH SYNOPSIS
29.nf
4c9b3247
MK
30.BR sprof " [\fIoption\fP]... \fIshared-object-path\fP \
31[\fIprofile-data-path\fP]"
2adccceb
MK
32.fi
33.SH DESCRIPTION
34The
35.B sprof
36command displays a profiling summary for the
43151de3 37shared object (shared library) specified as its first command-line argument.
2adccceb
MK
38The profiling summary is created using previously generated
39profiling data in the (optional) second command-line argument.
40If the profiling data pathname is omitted, then
41.B sprof
42will attempt to deduce it using the soname of the shared object,
43looking for a file with the name
44.IR <soname>.profile
45in the current directory.
46.SH OPTIONS
47The following command-line options specify the profile output
48to be produced:
49.TP
50.BR \-c ", " \-\-call\-pairs
51Print a list of pairs of call paths for the interfaces exported
52by the shared object,
53along with the number of times each path is used.
54.TP
55.BR \-p ", " \-\-flat\-profile
56Generate a flat profile of all of the functions in the monitored object,
57with counts and ticks.
58.TP
59.BR \-q ", " \-\-graph
60Generate a call graph.
61.PP
62If none of the above options is specified,
63then the default behavior is to display a flat profile and a call graph.
64.PP
65The following additional command-line options are available:
66.TP
67.BR \-? ", " \-\-help
68Display a summary of command-line options and arguments and exit.
69.TP
70.BR \-\-usage
71Display a short usage message and exit.
72.TP
73.BR \-V ", " \-\-version
74Display the program version and exit.
75.SH CONFORMING TO
76The
77.B sprof
78command is a GNU extension, not present in POSIX.1.
79.SH EXAMPLE
80The following example demonstrates the use of
81.BR sprof .
82The example consists of a main program that calls two functions
43151de3 83in a shared object.
2adccceb
MK
84First, the code of the main program:
85
86.in +4n
87.nf
88$ \fBcat prog.c\fP
89#include <stdlib.h>
90
91void x1(void);
92void x2(void);
93
94int
95main(int argc, char *argv[])
96{
97 x1();
98 x2();
99 exit(EXIT_SUCCESS);
100}
101.fi
102.in
103.PP
104The functions
105.IR x1()
106and
107.IR x2()
108are defined in the following source file that is used to
43151de3 109construct the shared object:
2adccceb
MK
110
111.in +4n
112.nf
113$ \fBcat libdemo.c\fP
114#include <unistd.h>
115
116void
117consumeCpu1(int lim)
118{
119 int j;
120
121 for (j = 0; j < lim; j++)
122 getppid();
123}
124
125void
126x1(void) {
127 int j;
128
129 for (j = 0; j < 100; j++)
130 consumeCpu1(200000);
131}
132
133void
134consumeCpu2(int lim)
135{
136 int j;
137
138 for (j = 0; j < lim; j++)
139 getppid();
140}
141
142void
143x2(void)
144{
145 int j;
146
147 for (j = 0; j < 1000; j++)
148 consumeCpu2(10000);
149}
150.fi
151.in
152.PP
43151de3 153Now we construct the shared object with the real name
2adccceb
MK
154.IR libdemo.so.1.0.1 ,
155and the soname
156.IR libdemo.so.1 :
157
158.in +4n
159.nf
160$ \fBcc \-g \-fPIC \-shared \-Wl,\-soname,libdemo.so.1 \e\fP
161 \fB\-o libdemo.so.1.0.1 libdemo.c\fP
162.fi
163.in
164.PP
165Then we construct symbolic links for the library soname and
166the library linker name:
167
168.in +4n
169.nf
170$ \fBln \-sf libdemo.so.1.0.1 libdemo.so.1\fP
171$ \fBln \-sf libdemo.so.1 libdemo.so\fP
172.fi
173.in
174.PP
43151de3 175Next, we compile the main program, linking it against the shared object,
2adccceb
MK
176and then list the dynamic dependencies of the program:
177
178.in +4n
179.nf
180$ \fBcc \-g \-o prog prog.c \-L. \-ldemo\fP
181$ \fBldd prog\fP
182 linux\-vdso.so.1 => (0x00007fff86d66000)
183 libdemo.so.1 => not found
184 libc.so.6 => /lib64/libc.so.6 (0x00007fd4dc138000)
185 /lib64/ld\-linux\-x86\-64.so.2 (0x00007fd4dc51f000)
186.fi
187.in
188.PP
43151de3 189In order to get profiling information for the shared object,
2adccceb
MK
190we define the environment variable
191.BR LD_PROFILE
192with the soname of the library:
193
194.in +4n
195.nf
196$ \fBexport LD_PROFILE=libdemo.so.1\fP
197.fi
198.in
199.PP
200We then define the environment variable
201.BR LD_PROFILE_OUTPUT
202with the pathname of the directory where profile output should be written,
203and create that directory if it does not exist already:
204
205.in +4n
206.nf
207$ \fBexport LD_PROFILE_OUTPUT=$(pwd)/prof_data\fP
208$ \fBmkdir \-p $LD_PROFILE_OUTPUT\fP
209.fi
210.in
211.PP
212.B LD_PROFILE
213causes profiling output to be
214.I appended
215to the output file if it already exists,
216so we ensure that there is no preexisting profiling data:
217
218.in +4n
219.nf
220$ \fBrm \-f $LD_PROFILE_OUTPUT/$LD_PROFILE.profile\fP
221.fi
222.in
223.PP
224We then run the program to produce the profiling output,
225which is written to a file in the directory specified in
226.BR LD_PROFILE_OUTPUT :
227
228.in +4n
229.nf
230$ \fBLD_LIBRARY_PATH=. ./prog\fP
231$ \fBls prof_data\fP
232libdemo.so.1.profile
233.fi
234.in
235.PP
236We then use the
237.BR "sprof \-p"
238option to generate a flat profile with counts and ticks:
239
240.in +4n
241.nf
242$ \fBsprof \-p libdemo.so.1 $LD_PROFILE_OUTPUT/libdemo.so.1.profile\fP
243Flat profile:
244
245Each sample counts as 0.01 seconds.
246 % cumulative self self total
247 time seconds seconds calls us/call us/call name
248 60.00 0.06 0.06 100 600.00 consumeCpu1
249 40.00 0.10 0.04 1000 40.00 consumeCpu2
250 0.00 0.10 0.00 1 0.00 x1
251 0.00 0.10 0.00 1 0.00 x2
252.fi
253.in
254.PP
255The
256.BR "sprof \-q"
257option generates a call graph:
258
259.in +4n
260.nf
261$ \fBsprof \-q libdemo.so.1 $LD_PROFILE_OUTPUT/libdemo.so.1.profile\fP
262
263index % time self children called name
264
265 0.00 0.00 100/100 x1 [1]
266[0] 100.0 0.00 0.00 100 consumeCpu1 [0]
267\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
268 0.00 0.00 1/1 <UNKNOWN>
269[1] 0.0 0.00 0.00 1 x1 [1]
270 0.00 0.00 100/100 consumeCpu1 [0]
271\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
272 0.00 0.00 1000/1000 x2 [3]
273[2] 0.0 0.00 0.00 1000 consumeCpu2 [2]
274\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
275 0.00 0.00 1/1 <UNKNOWN>
276[3] 0.0 0.00 0.00 1 x2 [3]
277 0.00 0.00 1000/1000 consumeCpu2 [2]
278\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
279.fi
280.in
281.PP
282Above and below, the "<UNKNOWN>" strings represent identifiers that
283are outside of the profiled object (in this example, these are instances of
284.IR main() ).
285.PP
286The
287.BR "sprof \-c"
288option generates a list of call pairs and the number of their occurrences:
289
290.in +4n
291.nf
292$ \fBsprof \-c libdemo.so.1 $LD_PROFILE_OUTPUT/libdemo.so.1.profile\fP
293<UNKNOWN> x1 1
294x1 consumeCpu1 100
295<UNKNOWN> x2 1
296x2 consumeCpu2 1000
297.fi
298.in
299.SH SEE ALSO
300.BR gprof (1),
301.BR ldd (1),
302.BR ld.so (8)