158f0484fSRodney W. Grimes.\" Copyright (c) 1980, 1991, 1992, 1993 258f0484fSRodney W. Grimes.\" The Regents of the University of California. All rights reserved. 358f0484fSRodney W. Grimes.\" 458f0484fSRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without 558f0484fSRodney W. Grimes.\" modification, are permitted provided that the following conditions 658f0484fSRodney W. Grimes.\" are met: 758f0484fSRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright 858f0484fSRodney W. Grimes.\" notice, this list of conditions and the following disclaimer. 958f0484fSRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright 1058f0484fSRodney W. Grimes.\" notice, this list of conditions and the following disclaimer in the 1158f0484fSRodney W. Grimes.\" documentation and/or other materials provided with the distribution. 12*fbbd9655SWarner Losh.\" 3. Neither the name of the University nor the names of its contributors 1358f0484fSRodney W. Grimes.\" may be used to endorse or promote products derived from this software 1458f0484fSRodney W. Grimes.\" without specific prior written permission. 1558f0484fSRodney W. Grimes.\" 1658f0484fSRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 1758f0484fSRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 1858f0484fSRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 1958f0484fSRodney W. Grimes.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 2058f0484fSRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 2158f0484fSRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 2258f0484fSRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2358f0484fSRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2458f0484fSRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2558f0484fSRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 2658f0484fSRodney W. Grimes.\" SUCH DAMAGE. 2758f0484fSRodney W. Grimes.\" 2892b5c26fSBruce M Simpson.Dd June 14, 2004 2958f0484fSRodney W. Grimes.Dt MONCONTROL 3 30a307d598SRuslan Ermilov.Os 3158f0484fSRodney W. Grimes.Sh NAME 3258f0484fSRodney W. Grimes.Nm moncontrol , 3358f0484fSRodney W. Grimes.Nm monstartup 3458f0484fSRodney W. Grimes.Nd control execution profile 3525bb73e0SAlexey Zelkin.Sh LIBRARY 3625bb73e0SAlexey Zelkin.Lb libc 3758f0484fSRodney W. Grimes.Sh SYNOPSIS 3832eef9aeSRuslan Ermilov.In sys/types.h 3992b5c26fSBruce M Simpson.In sys/gmon.h 405306fb2dSRuslan Ermilov.Ft void 4158f0484fSRodney W. Grimes.Fn moncontrol "int mode" 425306fb2dSRuslan Ermilov.Ft void 435306fb2dSRuslan Ermilov.Fn monstartup "u_long lowpc" "u_long highpc" 4458f0484fSRodney W. Grimes.Sh DESCRIPTION 4558f0484fSRodney W. GrimesAn executable program compiled using the 4658f0484fSRodney W. Grimes.Fl pg 4758f0484fSRodney W. Grimesoption to 4858f0484fSRodney W. Grimes.Xr cc 1 4958f0484fSRodney W. Grimesautomatically includes calls to collect statistics for the 5058f0484fSRodney W. Grimes.Xr gprof 1 5158f0484fSRodney W. Grimescall-graph execution profiler. 5258f0484fSRodney W. GrimesIn typical operation, profiling begins at program startup 5358f0484fSRodney W. Grimesand ends when the program calls exit. 5458f0484fSRodney W. GrimesWhen the program exits, the profiling data are written to the file 555c564baeSRuslan Ermilov.Ar progname Ns Pa .gmon , 56683728f1SJohn Birrellwhere progname is the name of the program, then 5758f0484fSRodney W. Grimes.Xr gprof 1 5858f0484fSRodney W. Grimescan be used to examine the results. 5958f0484fSRodney W. Grimes.Pp 601fae73b1SRuslan ErmilovThe 6158f0484fSRodney W. Grimes.Fn moncontrol 621fae73b1SRuslan Ermilovfunction 6358f0484fSRodney W. Grimesselectively controls profiling within a program. 6458f0484fSRodney W. GrimesWhen the program starts, profiling begins. 6558f0484fSRodney W. GrimesTo stop the collection of histogram ticks and call counts use 6658f0484fSRodney W. Grimes.Fn moncontrol 0 ; 6758f0484fSRodney W. Grimesto resume the collection of histogram ticks and call counts use 6858f0484fSRodney W. Grimes.Fn moncontrol 1 . 6958f0484fSRodney W. GrimesThis feature allows the cost of particular operations to be measured. 7058f0484fSRodney W. GrimesNote that an output file will be produced on program exit 7158f0484fSRodney W. Grimesregardless of the state of 7258f0484fSRodney W. Grimes.Fn moncontrol . 7358f0484fSRodney W. Grimes.Pp 7458f0484fSRodney W. GrimesPrograms that are not loaded with 7558f0484fSRodney W. Grimes.Fl pg 7658f0484fSRodney W. Grimesmay selectively collect profiling statistics by calling 7758f0484fSRodney W. Grimes.Fn monstartup 7858f0484fSRodney W. Grimeswith the range of addresses to be profiled. 792efeeba5SRuslan ErmilovThe 8058f0484fSRodney W. Grimes.Fa lowpc 8158f0484fSRodney W. Grimesand 8258f0484fSRodney W. Grimes.Fa highpc 832efeeba5SRuslan Ermilovarguments 8458f0484fSRodney W. Grimesspecify the address range that is to be sampled; 8558f0484fSRodney W. Grimesthe lowest address sampled is that of 8658f0484fSRodney W. Grimes.Fa lowpc 8758f0484fSRodney W. Grimesand the highest is just below 8858f0484fSRodney W. Grimes.Fa highpc . 8958f0484fSRodney W. GrimesOnly functions in that range that have been compiled with the 9058f0484fSRodney W. Grimes.Fl pg 9158f0484fSRodney W. Grimesoption to 9258f0484fSRodney W. Grimes.Xr cc 1 9358f0484fSRodney W. Grimeswill appear in the call graph part of the output; 9458f0484fSRodney W. Grimeshowever, all functions in that address range will 9558f0484fSRodney W. Grimeshave their execution time measured. 9658f0484fSRodney W. GrimesProfiling begins on return from 9758f0484fSRodney W. Grimes.Fn monstartup . 98be849092SEitan Adler.Sh ENVIRONMENT 99be849092SEitan AdlerThe following environment variables affect the execution of 100be849092SEitan Adler.Nm : 101be849092SEitan Adler.Bl -tag -width ".Ev PROFIL_USE_PID" 102be849092SEitan Adler.It PROFIL_USE_PID 103be849092SEitan AdlerIf set, the pid of the process is inserted into the filename. 1048521fde5SJoel Dahl.El 10558f0484fSRodney W. Grimes.Sh FILES 10642635956SRuslan Ermilov.Bl -tag -width progname.gmon -compact 10742635956SRuslan Ermilov.It Pa progname.gmon 10842635956SRuslan Ermilovexecution data file 10958f0484fSRodney W. Grimes.El 11058f0484fSRodney W. Grimes.Sh SEE ALSO 11158f0484fSRodney W. Grimes.Xr cc 1 , 11258f0484fSRodney W. Grimes.Xr gprof 1 , 1139cb8a105SJoerg Wunsch.Xr profil 2 , 1149cb8a105SJoerg Wunsch.Xr clocks 7 115