]>
git.saurik.com Git - apple/xnu.git/blob - bsd/sys/gmon.h
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
25 /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
27 * Copyright (c) 1982, 1986, 1992, 1993
28 * The Regents of the University of California. All rights reserved.
30 * Redistribution and use in source and binary forms, with or without
31 * modification, are permitted provided that the following conditions
33 * 1. Redistributions of source code must retain the above copyright
34 * notice, this list of conditions and the following disclaimer.
35 * 2. Redistributions in binary form must reproduce the above copyright
36 * notice, this list of conditions and the following disclaimer in the
37 * documentation and/or other materials provided with the distribution.
38 * 3. All advertising materials mentioning features or use of this software
39 * must display the following acknowledgement:
40 * This product includes software developed by the University of
41 * California, Berkeley and its contributors.
42 * 4. Neither the name of the University nor the names of its contributors
43 * may be used to endorse or promote products derived from this software
44 * without specific prior written permission.
46 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
47 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
48 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
49 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
50 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
51 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
52 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
53 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
54 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
55 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 * @(#)gmon.h 8.2 (Berkeley) 1/4/94
65 * Structure prepended to gmon.out profiling data file.
68 u_long lpc
; /* base pc address of sample buffer */
69 u_long hpc
; /* max pc address of sampled buffer */
70 int ncnt
; /* size of sample buffer (plus this header) */
71 int version
; /* version number */
72 int profrate
; /* profiling clock rate */
73 int spare
[3]; /* reserved */
75 #define GMONVERSION 0x00051879
78 * histogram counters are unsigned shorts (according to the kernel).
80 #define HISTCOUNTER unsigned short
83 * fraction of text space to allocate for histogram counters here, 1/2
85 #define HISTFRACTION 2
88 * Fraction of text space to allocate for from hash buckets.
89 * The value of HASHFRACTION is based on the minimum number of bytes
90 * of separation between two subroutine call points in the object code.
91 * Given MIN_SUBR_SEPARATION bytes of separation the value of
92 * HASHFRACTION is calculated as:
94 * HASHFRACTION = MIN_SUBR_SEPARATION / (2 * sizeof(short) - 1);
96 * For example, on the VAX, the shortest two call sequence is:
101 * which is separated by only three bytes, thus HASHFRACTION is
104 * HASHFRACTION = 3 / (2 * 2 - 1) = 1
106 * Note that the division above rounds down, thus if MIN_SUBR_FRACTION
107 * is less than three, this algorithm will not work!
109 * In practice, however, call instructions are rarely at a minimal
110 * distance. Hence, we will define HASHFRACTION to be 2 across all
111 * architectures. This saves a reasonable amount of space for
112 * profiling data structures without (in practice) sacrificing
115 #define HASHFRACTION 2
118 * percent of text space to allocate for tostructs with a minimum.
122 #define MAXARCS ((1 << (8 * sizeof(HISTCOUNTER))) - 2)
132 * a raw arc, with pointers to the calling site and
133 * the called site and a count.
142 * general rounding functions.
144 #define ROUNDDOWN(x,y) (((x)/(y))*(y))
145 #define ROUNDUP(x,y) ((((x)+(y)-1)/(y))*(y))
148 * The profiling data structures are housed in this structure.
156 struct tostruct
*tos
;
164 extern struct gmonparam _gmonparam
;
167 * Possible states of profiling.
169 #define GMON_PROF_ON 0
170 #define GMON_PROF_BUSY 1
171 #define GMON_PROF_ERROR 2
172 #define GMON_PROF_OFF 3
175 * Sysctl definitions for extracting profiling information from the kernel.
177 #define GPROF_STATE 0 /* int: profiling enabling variable */
178 #define GPROF_COUNT 1 /* struct: profile tick count buffer */
179 #define GPROF_FROMS 2 /* struct: from location hash bucket */
180 #define GPROF_TOS 3 /* struct: destination/count structure */
181 #define GPROF_GMONPARAM 4 /* struct: profiling parameters (see above) */
184 * In order to support more information than in the original mon.out and
185 * gmon.out files there is an alternate gmon.out file format. The alternate
186 * gmon.out file format starts with a magic number then separates the
187 * information with gmon_data structs.
189 #define GMON_MAGIC 0xbeefbabe
191 unsigned long type
; /* constant for type of data following this struct */
192 unsigned long size
; /* size in bytes of the data following this struct */
196 * The GMONTYPE_SAMPLES gmon_data.type is for the histogram counters described
197 * above and has a struct gmonhdr followed by the counters.
199 #define GMONTYPE_SAMPLES 1
201 * The GMONTYPE_RAWARCS gmon_data.type is for the raw arcs described above.
203 #define GMONTYPE_RAWARCS 2
205 * The GMONTYPE_ARCS_ORDERS gmon_data.type is for the raw arcs with a call
206 * order field. The order is the order is a sequence number for the order each
207 * call site was executed. Raw_order values start at 1 not zero. Other than
208 * the raw_order field this is the same information as in the struct rawarc.
210 #define GMONTYPE_ARCS_ORDERS 3
211 struct rawarc_order
{
212 unsigned long raw_frompc
;
213 unsigned long raw_selfpc
;
214 unsigned long raw_count
;
215 unsigned long raw_order
;
218 * The GMONTYPE_DYLD_STATE gmon_data.type is for the dynamic link editor state
220 * The informations starts with an unsigned long with the count of states:
222 * Then each state follows in the file. The state is made up of
223 * image_header (the address where dyld loaded this image)
224 * vmaddr_slide (the amount dyld slid this image from it's vmaddress)
225 * name (the file name dyld loaded this image from)
227 #define GMONTYPE_DYLD_STATE 4
228 #endif /* !_SYS_GMON_H_ */