LibXenon
Bare-metal Xbox 360 homebrew library
Loading...
Searching...
No Matches
gmon.h
Go to the documentation of this file.
1/*-
2 * Copyright (c) 1982, 1986, 1992, 1993
3 * The Regents of the University of California. 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 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)gmon.h 8.2 (Berkeley) 1/4/94
34 * $FreeBSD: src/sys/sys/gmon.h,v 1.15 1999/08/28 00:51:45 peter Exp $
35 */
36
37#ifndef _SYS_GMON_H_
38#define _SYS_GMON_H_
39
40//#include <machine/profile.h>
41typedef u_int fptrint_t;
42typedef int fptrdiff_t;
43typedef u_int uintfptr_t;
44
45/*
46 * Getkerninfo clock information structure
47 */
48struct clockinfo {
49 int hz; /* clock frequency */
50 int tick; /* micro-seconds per hz tick */
51 int tickadj; /* clock skew rate for adjtime() */
52 int stathz; /* statistics clock frequency */
53 int profhz; /* profiling clock frequency */
54};
55
56/*
57 * Config generates something to tell the compiler to align functions on 16
58 * byte boundaries. A strict alignment is good for keeping the tables small.
59 */
60#define FUNCTION_ALIGNMENT 16
61
62/*
63 * Structure prepended to gmon.out profiling data file.
64 */
65struct gmonhdr {
66 u_long lpc; /* base pc address of sample buffer */
67 u_long hpc; /* max pc address of sampled buffer */
68 int ncnt; /* size of sample buffer (plus this header) */
69 int version; /* version number */
70 int profrate; /* profiling clock rate */
71 int spare[3]; /* reserved */
72 /* XXX should record counter size and density */
73};
74#define GMONVERSION 0x00051879
75
76/*
77 * Type of histogram counters used in the kernel.
78 */
79#ifdef GPROF4
80#define HISTCOUNTER int64_t
81#else
82#define HISTCOUNTER unsigned short
83#endif
84
85/*
86 * Fraction of text space to allocate for histogram counters.
87 * We allocate counters at the same or higher density as function
88 * addresses, so that each counter belongs to a unique function.
89 * A lower density of counters would give less resolution but a
90 * higher density would be wasted.
91 */
92#define HISTFRACTION (FUNCTION_ALIGNMENT / sizeof(HISTCOUNTER) == 0 \
93 ? 1 : FUNCTION_ALIGNMENT / sizeof(HISTCOUNTER))
94
95/*
96 * Fraction of text space to allocate for from hash buckets.
97 * The value of HASHFRACTION is based on the minimum number of bytes
98 * of separation between two subroutine call points in the object code.
99 * Given MIN_SUBR_SEPARATION bytes of separation the value of
100 * HASHFRACTION is calculated as:
101 *
102 * HASHFRACTION = MIN_SUBR_SEPARATION / (2 * sizeof(short) - 1);
103 *
104 * For example, on the VAX, the shortest two call sequence is:
105 *
106 * calls $0,(r0)
107 * calls $0,(r0)
108 *
109 * which is separated by only three bytes, thus HASHFRACTION is
110 * calculated as:
111 *
112 * HASHFRACTION = 3 / (2 * 2 - 1) = 1
113 *
114 * Note that the division above rounds down, thus if MIN_SUBR_FRACTION
115 * is less than three, this algorithm will not work!
116 *
117 * In practice, however, call instructions are rarely at a minimal
118 * distance. Hence, we will define HASHFRACTION to be 2 across all
119 * architectures. This saves a reasonable amount of space for
120 * profiling data structures without (in practice) sacrificing
121 * any granularity.
122 */
123/*
124 * XXX I think the above analysis completely misses the point. I think
125 * the point is that addresses in different functions must hash to
126 * different values. Since the hash is essentially division by
127 * sizeof(unsigned short), the correct formula is:
128 *
129 * HASHFRACTION = MIN_FUNCTION_ALIGNMENT / sizeof(unsigned short)
130 *
131 * Note that he unsigned short here has nothing to do with the one for
132 * HISTFRACTION.
133 *
134 * Hash collisions from a two call sequence don't matter. They get
135 * handled like collisions for calls to different addresses from the
136 * same address through a function pointer.
137 */
138#define HASHFRACTION (FUNCTION_ALIGNMENT / sizeof(unsigned short) == 0 \
139 ? 1 : FUNCTION_ALIGNMENT / sizeof(unsigned short))
140
141/*
142 * percent of text space to allocate for tostructs with a minimum.
143 */
144#define ARCDENSITY 2
145#define MINARCS 50
146
147/*
148 * Limit on the number of arcs to so that arc numbers can be stored in
149 * `*froms' and stored and incremented without overflow in links.
150 */
151#define MAXARCS (((u_long)1 << (8 * sizeof(u_short))) - 2)
152
153struct tostruct {
154 u_long selfpc;
155 long count;
156 u_short link;
157 u_short pad;
158};
159
160/*
161 * a raw arc, with pointers to the calling site and
162 * the called site and a count.
163 */
164struct rawarc {
168};
169
170/*
171 * general rounding functions.
172 */
173#define ROUNDDOWN(x,y) (((x)/(y))*(y))
174#define ROUNDUP(x,y) ((((x)+(y)-1)/(y))*(y))
175
176/*
177 * The profiling data structures are housed in this structure.
178 */
179struct gmonparam {
180 int state;
183 u_short *froms;
184 u_long fromssize;
185 struct tostruct *tos;
186 u_long tossize;
190 u_long textsize;
192 int profrate; /* XXX wrong type to match gmonhdr */
203};
204extern struct gmonparam _gmonparam;
205
206/*
207 * Possible states of profiling.
208 */
209#define GMON_PROF_ON 0
210#define GMON_PROF_BUSY 1
211#define GMON_PROF_ERROR 2
212#define GMON_PROF_OFF 3
213#define GMON_PROF_HIRES 4
214
215/*
216 * Sysctl definitions for extracting profiling information from the kernel.
217 */
218#define GPROF_STATE 0 /* int: profiling enabling variable */
219#define GPROF_COUNT 1 /* struct: profile tick count buffer */
220#define GPROF_FROMS 2 /* struct: from location hash bucket */
221#define GPROF_TOS 3 /* struct: destination/count structure */
222#define GPROF_GMONPARAM 4 /* struct: profiling parameters (see above) */
223
224#define CALIB_SCALE 1000
225#define KCOUNT(p,index) ((p)->kcount[(index) \
226 / (HISTFRACTION * sizeof(HISTCOUNTER))])
227
228#endif /* !_SYS_GMON_H_ */
229
230
231
232
233
234
235
236
237
int fptrdiff_t
Definition: gmon.h:42
struct gmonparam _gmonparam
Definition: gmon.c:53
u_int uintfptr_t
Definition: gmon.h:43
#define HISTCOUNTER
Definition: gmon.h:82
u_int fptrint_t
Definition: gmon.h:41
Definition: gmon.h:48
int tick
Definition: gmon.h:50
int stathz
Definition: gmon.h:52
int profhz
Definition: gmon.h:53
int hz
Definition: gmon.h:49
int tickadj
Definition: gmon.h:51
Definition: gmon.h:65
int version
Definition: gmon.h:69
u_long lpc
Definition: gmon.h:66
int ncnt
Definition: gmon.h:68
u_long hpc
Definition: gmon.h:67
int spare[3]
Definition: gmon.h:71
int profrate
Definition: gmon.h:70
int profrate
Definition: gmon.h:192
u_long hashfraction
Definition: gmon.h:191
int mcount_overhead
Definition: gmon.h:196
long tolimit
Definition: gmon.h:187
int mexitcount_pre_overhead
Definition: gmon.h:202
u_short * froms
Definition: gmon.h:183
struct tostruct * tos
Definition: gmon.h:185
u_long textsize
Definition: gmon.h:190
uintfptr_t highpc
Definition: gmon.h:189
HISTCOUNTER * mcount_count
Definition: gmon.h:195
int mexitcount_post_overhead
Definition: gmon.h:201
u_long kcountsize
Definition: gmon.h:182
int mcount_pre_overhead
Definition: gmon.h:198
u_long tossize
Definition: gmon.h:186
int mcount_post_overhead
Definition: gmon.h:197
HISTCOUNTER * mexitcount_count
Definition: gmon.h:199
uintfptr_t lowpc
Definition: gmon.h:188
HISTCOUNTER * cputime_count
Definition: gmon.h:193
int state
Definition: gmon.h:180
HISTCOUNTER * kcount
Definition: gmon.h:181
int mexitcount_overhead
Definition: gmon.h:200
int cputime_overhead
Definition: gmon.h:194
u_long fromssize
Definition: gmon.h:184
Definition: gmon.h:164
u_long raw_selfpc
Definition: gmon.h:166
u_long raw_frompc
Definition: gmon.h:165
long raw_count
Definition: gmon.h:167
Definition: gmon.h:153
u_short pad
Definition: gmon.h:157
long count
Definition: gmon.h:155
u_long selfpc
Definition: gmon.h:154
u_short link
Definition: gmon.h:156