gmon.c revision 1.32 1 1.32 christos /* $NetBSD: gmon.c,v 1.32 2010/03/01 19:52:38 christos Exp $ */
2 1.22 thorpej
3 1.22 thorpej /*
4 1.22 thorpej * Copyright (c) 2003, 2004 Wasabi Systems, Inc.
5 1.22 thorpej * All rights reserved.
6 1.22 thorpej *
7 1.22 thorpej * Written by Nathan J. Williams for Wasabi Systems, Inc.
8 1.22 thorpej *
9 1.22 thorpej * Redistribution and use in source and binary forms, with or without
10 1.22 thorpej * modification, are permitted provided that the following conditions
11 1.22 thorpej * are met:
12 1.22 thorpej * 1. Redistributions of source code must retain the above copyright
13 1.22 thorpej * notice, this list of conditions and the following disclaimer.
14 1.22 thorpej * 2. Redistributions in binary form must reproduce the above copyright
15 1.22 thorpej * notice, this list of conditions and the following disclaimer in the
16 1.22 thorpej * documentation and/or other materials provided with the distribution.
17 1.22 thorpej * 3. All advertising materials mentioning features or use of this software
18 1.22 thorpej * must display the following acknowledgement:
19 1.22 thorpej * This product includes software developed for the NetBSD Project by
20 1.22 thorpej * Wasabi Systems, Inc.
21 1.22 thorpej * 4. The name of Wasabi Systems, Inc. may not be used to endorse
22 1.22 thorpej * or promote products derived from this software without specific prior
23 1.22 thorpej * written permission.
24 1.22 thorpej *
25 1.22 thorpej * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
26 1.22 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 1.22 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 1.22 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
29 1.22 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 1.22 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 1.22 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 1.22 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 1.22 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 1.22 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 1.22 thorpej * POSSIBILITY OF SUCH DAMAGE.
36 1.22 thorpej */
37 1.3 cgd
38 1.1 cgd /*-
39 1.1 cgd * Copyright (c) 1983, 1992, 1993
40 1.1 cgd * The Regents of the University of California. All rights reserved.
41 1.1 cgd *
42 1.1 cgd * Redistribution and use in source and binary forms, with or without
43 1.1 cgd * modification, are permitted provided that the following conditions
44 1.1 cgd * are met:
45 1.1 cgd * 1. Redistributions of source code must retain the above copyright
46 1.1 cgd * notice, this list of conditions and the following disclaimer.
47 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
48 1.1 cgd * notice, this list of conditions and the following disclaimer in the
49 1.1 cgd * documentation and/or other materials provided with the distribution.
50 1.21 agc * 3. Neither the name of the University nor the names of its contributors
51 1.1 cgd * may be used to endorse or promote products derived from this software
52 1.1 cgd * without specific prior written permission.
53 1.1 cgd *
54 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64 1.1 cgd * SUCH DAMAGE.
65 1.1 cgd */
66 1.1 cgd
67 1.10 christos #include <sys/cdefs.h>
68 1.1 cgd #if !defined(lint) && defined(LIBC_SCCS)
69 1.3 cgd #if 0
70 1.3 cgd static char sccsid[] = "@(#)gmon.c 8.1 (Berkeley) 6/4/93";
71 1.3 cgd #else
72 1.32 christos __RCSID("$NetBSD: gmon.c,v 1.32 2010/03/01 19:52:38 christos Exp $");
73 1.3 cgd #endif
74 1.1 cgd #endif
75 1.1 cgd
76 1.10 christos #include "namespace.h"
77 1.1 cgd #include <sys/param.h>
78 1.1 cgd #include <sys/time.h>
79 1.1 cgd #include <sys/gmon.h>
80 1.22 thorpej #include <sys/mman.h>
81 1.1 cgd #include <sys/sysctl.h>
82 1.1 cgd
83 1.1 cgd #include <stdio.h>
84 1.5 jtc #include <stdlib.h>
85 1.22 thorpej #include <string.h>
86 1.1 cgd #include <fcntl.h>
87 1.5 jtc #include <limits.h>
88 1.1 cgd #include <unistd.h>
89 1.10 christos #include <err.h>
90 1.15 kleink #include "extern.h"
91 1.22 thorpej #include "reentrant.h"
92 1.1 cgd
93 1.29 christos struct gmonparam _gmonparam = { .state = GMON_PROF_OFF };
94 1.1 cgd
95 1.22 thorpej #ifdef _REENTRANT
96 1.22 thorpej struct gmonparam *_gmonfree;
97 1.22 thorpej struct gmonparam *_gmoninuse;
98 1.22 thorpej mutex_t _gmonlock = MUTEX_INITIALIZER;
99 1.22 thorpej thread_key_t _gmonkey;
100 1.22 thorpej struct gmonparam _gmondummy;
101 1.22 thorpej #endif
102 1.22 thorpej
103 1.14 christos static u_int s_scale;
104 1.1 cgd /* see profil(2) where this is describe (incorrectly) */
105 1.1 cgd #define SCALE_1_TO_1 0x10000L
106 1.1 cgd
107 1.32 christos void moncontrol(int);
108 1.32 christos void monstartup(u_long, u_long);
109 1.32 christos void _mcleanup(void);
110 1.32 christos static int hertz(void);
111 1.1 cgd
112 1.22 thorpej #ifdef _REENTRANT
113 1.22 thorpej static void _m_gmon_destructor(void *);
114 1.32 christos struct gmonparam *_m_gmon_alloc(void)
115 1.32 christos __attribute__((__no_instrument_function__));
116 1.22 thorpej static void _m_gmon_merge(void);
117 1.22 thorpej static void _m_gmon_merge_two(struct gmonparam *, struct gmonparam *);
118 1.22 thorpej #endif
119 1.16 christos
120 1.1 cgd void
121 1.32 christos monstartup(u_long lowpc, u_long highpc)
122 1.1 cgd {
123 1.19 thorpej u_long o;
124 1.1 cgd char *cp;
125 1.1 cgd struct gmonparam *p = &_gmonparam;
126 1.1 cgd
127 1.1 cgd /*
128 1.1 cgd * round lowpc and highpc to multiples of the density we're using
129 1.1 cgd * so the rest of the scaling (here and in gprof) stays in ints.
130 1.1 cgd */
131 1.27 dogcow p->lowpc = rounddown(lowpc, HISTFRACTION * sizeof(HISTCOUNTER));
132 1.27 dogcow p->highpc = roundup(highpc, HISTFRACTION * sizeof(HISTCOUNTER));
133 1.1 cgd p->textsize = p->highpc - p->lowpc;
134 1.1 cgd p->kcountsize = p->textsize / HISTFRACTION;
135 1.1 cgd p->hashfraction = HASHFRACTION;
136 1.6 cgd p->fromssize = p->textsize / p->hashfraction;
137 1.1 cgd p->tolimit = p->textsize * ARCDENSITY / 100;
138 1.1 cgd if (p->tolimit < MINARCS)
139 1.1 cgd p->tolimit = MINARCS;
140 1.1 cgd else if (p->tolimit > MAXARCS)
141 1.1 cgd p->tolimit = MAXARCS;
142 1.1 cgd p->tossize = p->tolimit * sizeof(struct tostruct);
143 1.1 cgd
144 1.16 christos cp = sbrk((intptr_t)(p->kcountsize + p->fromssize + p->tossize));
145 1.1 cgd if (cp == (char *)-1) {
146 1.32 christos warnx("%s: out of memory", __func__);
147 1.1 cgd return;
148 1.1 cgd }
149 1.1 cgd #ifdef notdef
150 1.32 christos (void)memset(cp, 0, p->kcountsize + p->fromssize + p->tossize);
151 1.1 cgd #endif
152 1.14 christos p->tos = (struct tostruct *)(void *)cp;
153 1.14 christos cp += (size_t)p->tossize;
154 1.14 christos p->kcount = (u_short *)(void *)cp;
155 1.14 christos cp += (size_t)p->kcountsize;
156 1.14 christos p->froms = (u_short *)(void *)cp;
157 1.1 cgd
158 1.16 christos __minbrk = sbrk((intptr_t)0);
159 1.1 cgd p->tos[0].link = 0;
160 1.1 cgd
161 1.1 cgd o = p->highpc - p->lowpc;
162 1.1 cgd if (p->kcountsize < o) {
163 1.2 cgd #ifndef notdef
164 1.1 cgd s_scale = ((float)p->kcountsize / o ) * SCALE_1_TO_1;
165 1.1 cgd #else /* avoid floating point */
166 1.19 thorpej u_long quot = o / p->kcountsize;
167 1.1 cgd
168 1.1 cgd if (quot >= 0x10000)
169 1.1 cgd s_scale = 1;
170 1.1 cgd else if (quot >= 0x100)
171 1.1 cgd s_scale = 0x10000 / quot;
172 1.1 cgd else if (o >= 0x800000)
173 1.1 cgd s_scale = 0x1000000 / (o / (p->kcountsize >> 8));
174 1.1 cgd else
175 1.1 cgd s_scale = 0x1000000 / ((o << 8) / p->kcountsize);
176 1.1 cgd #endif
177 1.1 cgd } else
178 1.1 cgd s_scale = SCALE_1_TO_1;
179 1.1 cgd
180 1.22 thorpej #ifdef _REENTRANT
181 1.22 thorpej _gmondummy.state = GMON_PROF_BUSY;
182 1.22 thorpej thr_keycreate(&_gmonkey, _m_gmon_destructor);
183 1.22 thorpej #endif
184 1.1 cgd moncontrol(1);
185 1.1 cgd }
186 1.1 cgd
187 1.22 thorpej #ifdef _REENTRANT
188 1.22 thorpej static void
189 1.22 thorpej _m_gmon_destructor(void *arg)
190 1.22 thorpej {
191 1.22 thorpej struct gmonparam *p = arg, *q, **prev;
192 1.22 thorpej
193 1.22 thorpej if (p == &_gmondummy)
194 1.22 thorpej return;
195 1.22 thorpej
196 1.22 thorpej thr_setspecific(_gmonkey, &_gmondummy);
197 1.22 thorpej
198 1.22 thorpej mutex_lock(&_gmonlock);
199 1.22 thorpej /* XXX eww, linear list traversal. */
200 1.22 thorpej for (q = _gmoninuse, prev = &_gmoninuse;
201 1.22 thorpej q != NULL;
202 1.26 mrg prev = (struct gmonparam **)(void *)&q->kcount, /* XXX */
203 1.22 thorpej q = (struct gmonparam *)(void *)q->kcount) {
204 1.22 thorpej if (q == p)
205 1.22 thorpej *prev = (struct gmonparam *)(void *)q->kcount;
206 1.22 thorpej }
207 1.22 thorpej p->kcount = (u_short *)(void *)_gmonfree;
208 1.22 thorpej _gmonfree = p;
209 1.22 thorpej mutex_unlock(&_gmonlock);
210 1.22 thorpej
211 1.22 thorpej thr_setspecific(_gmonkey, NULL);
212 1.22 thorpej }
213 1.22 thorpej
214 1.22 thorpej struct gmonparam *
215 1.22 thorpej _m_gmon_alloc(void)
216 1.22 thorpej {
217 1.22 thorpej struct gmonparam *p;
218 1.22 thorpej char *cp;
219 1.22 thorpej
220 1.22 thorpej mutex_lock(&_gmonlock);
221 1.22 thorpej if (_gmonfree != NULL) {
222 1.22 thorpej p = _gmonfree;
223 1.22 thorpej _gmonfree = (struct gmonparam *)(void *)p->kcount;
224 1.22 thorpej p->kcount = (u_short *)(void *)_gmoninuse;
225 1.22 thorpej _gmoninuse = p;
226 1.22 thorpej } else {
227 1.22 thorpej mutex_unlock(&_gmonlock);
228 1.22 thorpej cp = mmap(NULL,
229 1.22 thorpej (size_t)(sizeof (struct gmonparam) +
230 1.22 thorpej _gmonparam.fromssize + _gmonparam.tossize),
231 1.22 thorpej PROT_READ|PROT_WRITE, MAP_ANON|MAP_PRIVATE, -1, 0LL);
232 1.22 thorpej p = (void *)cp;
233 1.22 thorpej *p = _gmonparam;
234 1.22 thorpej p->kcount = NULL;
235 1.22 thorpej cp += sizeof (struct gmonparam);
236 1.22 thorpej memset(cp, 0, (size_t)(p->fromssize + p->tossize));
237 1.22 thorpej p->froms = (u_short *)(void *)cp;
238 1.22 thorpej p->tos = (struct tostruct *)(void *)(cp + p->fromssize);
239 1.22 thorpej mutex_lock(&_gmonlock);
240 1.22 thorpej p->kcount = (u_short *)(void *)_gmoninuse;
241 1.22 thorpej _gmoninuse = p;
242 1.22 thorpej }
243 1.22 thorpej mutex_unlock(&_gmonlock);
244 1.22 thorpej thr_setspecific(_gmonkey, p);
245 1.22 thorpej
246 1.22 thorpej return p;
247 1.22 thorpej }
248 1.22 thorpej
249 1.22 thorpej static void
250 1.22 thorpej _m_gmon_merge_two(struct gmonparam *p, struct gmonparam *q)
251 1.22 thorpej {
252 1.22 thorpej u_long fromindex;
253 1.22 thorpej u_short *frompcindex, qtoindex, toindex;
254 1.22 thorpej u_long selfpc;
255 1.30 lukem u_long endfrom;
256 1.22 thorpej long count;
257 1.22 thorpej struct tostruct *top;
258 1.22 thorpej
259 1.30 lukem endfrom = (q->fromssize / sizeof(*q->froms));
260 1.22 thorpej for (fromindex = 0; fromindex < endfrom; fromindex++) {
261 1.22 thorpej if (q->froms[fromindex] == 0)
262 1.22 thorpej continue;
263 1.22 thorpej for (qtoindex = q->froms[fromindex]; qtoindex != 0;
264 1.22 thorpej qtoindex = q->tos[qtoindex].link) {
265 1.22 thorpej selfpc = q->tos[qtoindex].selfpc;
266 1.22 thorpej count = q->tos[qtoindex].count;
267 1.22 thorpej /* cribbed from mcount */
268 1.22 thorpej frompcindex = &p->froms[fromindex];
269 1.22 thorpej toindex = *frompcindex;
270 1.22 thorpej if (toindex == 0) {
271 1.22 thorpej /*
272 1.22 thorpej * first time traversing this arc
273 1.22 thorpej */
274 1.22 thorpej toindex = ++p->tos[0].link;
275 1.22 thorpej if (toindex >= p->tolimit)
276 1.22 thorpej /* halt further profiling */
277 1.22 thorpej goto overflow;
278 1.22 thorpej
279 1.22 thorpej *frompcindex = (u_short)toindex;
280 1.22 thorpej top = &p->tos[(size_t)toindex];
281 1.22 thorpej top->selfpc = selfpc;
282 1.22 thorpej top->count = count;
283 1.22 thorpej top->link = 0;
284 1.22 thorpej goto done;
285 1.22 thorpej }
286 1.22 thorpej top = &p->tos[(size_t)toindex];
287 1.22 thorpej if (top->selfpc == selfpc) {
288 1.22 thorpej /*
289 1.22 thorpej * arc at front of chain; usual case.
290 1.22 thorpej */
291 1.22 thorpej top->count+= count;
292 1.22 thorpej goto done;
293 1.22 thorpej }
294 1.22 thorpej /*
295 1.22 thorpej * have to go looking down chain for it.
296 1.22 thorpej * top points to what we are looking at,
297 1.22 thorpej * we know it is not at the head of the chain.
298 1.22 thorpej */
299 1.22 thorpej for (; /* goto done */; ) {
300 1.22 thorpej if (top->link == 0) {
301 1.22 thorpej /*
302 1.22 thorpej * top is end of the chain and
303 1.22 thorpej * none of the chain had
304 1.22 thorpej * top->selfpc == selfpc. so
305 1.22 thorpej * we allocate a new tostruct
306 1.22 thorpej * and link it to the head of
307 1.22 thorpej * the chain.
308 1.22 thorpej */
309 1.22 thorpej toindex = ++p->tos[0].link;
310 1.22 thorpej if (toindex >= p->tolimit)
311 1.22 thorpej goto overflow;
312 1.22 thorpej
313 1.22 thorpej top = &p->tos[(size_t)toindex];
314 1.22 thorpej top->selfpc = selfpc;
315 1.22 thorpej top->count = count;
316 1.22 thorpej top->link = *frompcindex;
317 1.22 thorpej *frompcindex = (u_short)toindex;
318 1.22 thorpej goto done;
319 1.22 thorpej }
320 1.22 thorpej /*
321 1.22 thorpej * otherwise, check the next arc on the chain.
322 1.22 thorpej */
323 1.22 thorpej top = &p->tos[top->link];
324 1.22 thorpej if (top->selfpc == selfpc) {
325 1.22 thorpej /*
326 1.22 thorpej * there it is.
327 1.22 thorpej * add to its count.
328 1.22 thorpej */
329 1.22 thorpej top->count += count;
330 1.22 thorpej goto done;
331 1.22 thorpej }
332 1.22 thorpej
333 1.22 thorpej }
334 1.22 thorpej
335 1.22 thorpej done: ;
336 1.22 thorpej }
337 1.22 thorpej
338 1.22 thorpej }
339 1.22 thorpej overflow: ;
340 1.22 thorpej
341 1.22 thorpej }
342 1.22 thorpej
343 1.22 thorpej static void
344 1.22 thorpej _m_gmon_merge(void)
345 1.22 thorpej {
346 1.22 thorpej struct gmonparam *q;
347 1.22 thorpej
348 1.22 thorpej mutex_lock(&_gmonlock);
349 1.22 thorpej
350 1.32 christos for (q = _gmonfree; q != NULL;
351 1.32 christos q = (struct gmonparam *)(void *)q->kcount)
352 1.22 thorpej _m_gmon_merge_two(&_gmonparam, q);
353 1.22 thorpej
354 1.32 christos for (q = _gmoninuse; q != NULL;
355 1.32 christos q = (struct gmonparam *)(void *)q->kcount) {
356 1.22 thorpej q->state = GMON_PROF_OFF;
357 1.22 thorpej _m_gmon_merge_two(&_gmonparam, q);
358 1.22 thorpej }
359 1.22 thorpej
360 1.22 thorpej mutex_unlock(&_gmonlock);
361 1.22 thorpej }
362 1.22 thorpej #endif
363 1.22 thorpej
364 1.1 cgd void
365 1.32 christos _mcleanup(void)
366 1.1 cgd {
367 1.1 cgd int fd;
368 1.1 cgd int fromindex;
369 1.1 cgd int endfrom;
370 1.1 cgd u_long frompc;
371 1.1 cgd int toindex;
372 1.1 cgd struct rawarc rawarc;
373 1.1 cgd struct gmonparam *p = &_gmonparam;
374 1.1 cgd struct gmonhdr gmonhdr, *hdr;
375 1.1 cgd struct clockinfo clockinfo;
376 1.1 cgd int mib[2];
377 1.1 cgd size_t size;
378 1.5 jtc char *profdir;
379 1.23 christos const char *proffile;
380 1.5 jtc char buf[PATH_MAX];
381 1.1 cgd #ifdef DEBUG
382 1.25 christos int logfd, len;
383 1.9 mrg char buf2[200];
384 1.1 cgd #endif
385 1.18 christos
386 1.18 christos /*
387 1.18 christos * We disallow writing to the profiling file, if we are a
388 1.18 christos * set{u,g}id program and our effective {u,g}id does not match
389 1.18 christos * our real one.
390 1.18 christos */
391 1.18 christos if (issetugid() && (geteuid() != getuid() || getegid() != getgid())) {
392 1.32 christos warnx("%s: Profiling of set{u,g}id binaries is not"
393 1.32 christos " allowed", __func__);
394 1.18 christos return;
395 1.18 christos }
396 1.1 cgd
397 1.1 cgd if (p->state == GMON_PROF_ERROR)
398 1.32 christos warnx("%s: tos overflow", __func__);
399 1.1 cgd
400 1.1 cgd size = sizeof(clockinfo);
401 1.1 cgd mib[0] = CTL_KERN;
402 1.1 cgd mib[1] = KERN_CLOCKRATE;
403 1.1 cgd if (sysctl(mib, 2, &clockinfo, &size, NULL, 0) < 0) {
404 1.1 cgd /*
405 1.1 cgd * Best guess
406 1.1 cgd */
407 1.1 cgd clockinfo.profhz = hertz();
408 1.1 cgd } else if (clockinfo.profhz == 0) {
409 1.1 cgd if (clockinfo.hz != 0)
410 1.1 cgd clockinfo.profhz = clockinfo.hz;
411 1.1 cgd else
412 1.1 cgd clockinfo.profhz = hertz();
413 1.1 cgd }
414 1.1 cgd
415 1.1 cgd moncontrol(0);
416 1.5 jtc
417 1.5 jtc if ((profdir = getenv("PROFDIR")) != NULL) {
418 1.5 jtc /* If PROFDIR contains a null value, no profiling
419 1.5 jtc output is produced */
420 1.20 dsl if (*profdir == '\0')
421 1.20 dsl return;
422 1.20 dsl
423 1.20 dsl if (snprintf(buf, sizeof buf, "%s/%d.%s",
424 1.32 christos profdir, getpid(), getprogname()) >= (int)(sizeof buf)) {
425 1.32 christos warnx("%s: internal buffer overflow, PROFDIR too long",
426 1.32 christos __func__);
427 1.5 jtc return;
428 1.5 jtc }
429 1.5 jtc
430 1.5 jtc proffile = buf;
431 1.5 jtc } else {
432 1.5 jtc proffile = "gmon.out";
433 1.5 jtc }
434 1.5 jtc
435 1.5 jtc fd = open(proffile , O_CREAT|O_TRUNC|O_WRONLY, 0666);
436 1.1 cgd if (fd < 0) {
437 1.32 christos warn("%s: Cannot open `%s'", __func__, proffile);
438 1.1 cgd return;
439 1.1 cgd }
440 1.1 cgd #ifdef DEBUG
441 1.25 christos logfd = open("gmon.log", O_CREAT|O_TRUNC|O_WRONLY, 0664);
442 1.25 christos if (logfd < 0) {
443 1.32 christos warn("%s: Cannot open `%s'", __func__, "gmon.log");
444 1.1 cgd return;
445 1.1 cgd }
446 1.25 christos len = snprintf(buf2, sizeof buf2, "[mcleanup1] kcount %p ssiz %lu\n",
447 1.1 cgd p->kcount, p->kcountsize);
448 1.25 christos (void)write(logfd, buf2, (size_t)len);
449 1.1 cgd #endif
450 1.22 thorpej #ifdef _REENTRANT
451 1.22 thorpej _m_gmon_merge();
452 1.22 thorpej #endif
453 1.1 cgd hdr = (struct gmonhdr *)&gmonhdr;
454 1.1 cgd hdr->lpc = p->lowpc;
455 1.1 cgd hdr->hpc = p->highpc;
456 1.14 christos hdr->ncnt = (int)(p->kcountsize + sizeof(gmonhdr));
457 1.1 cgd hdr->version = GMONVERSION;
458 1.1 cgd hdr->profrate = clockinfo.profhz;
459 1.14 christos (void)write(fd, hdr, sizeof *hdr);
460 1.14 christos (void)write(fd, p->kcount, (size_t)p->kcountsize);
461 1.14 christos endfrom = (int)(p->fromssize / sizeof(*p->froms));
462 1.1 cgd for (fromindex = 0; fromindex < endfrom; fromindex++) {
463 1.1 cgd if (p->froms[fromindex] == 0)
464 1.1 cgd continue;
465 1.1 cgd
466 1.1 cgd frompc = p->lowpc;
467 1.1 cgd frompc += fromindex * p->hashfraction * sizeof(*p->froms);
468 1.1 cgd for (toindex = p->froms[fromindex]; toindex != 0;
469 1.1 cgd toindex = p->tos[toindex].link) {
470 1.1 cgd #ifdef DEBUG
471 1.9 mrg len = snprintf(buf2, sizeof buf2,
472 1.25 christos "[mcleanup2] frompc 0x%lx selfpc 0x%lx count %lu\n" ,
473 1.25 christos (u_long)frompc, (u_long)p->tos[toindex].selfpc,
474 1.25 christos (u_long)p->tos[toindex].count);
475 1.25 christos (void)write(logfd, buf2, (size_t)len);
476 1.1 cgd #endif
477 1.1 cgd rawarc.raw_frompc = frompc;
478 1.1 cgd rawarc.raw_selfpc = p->tos[toindex].selfpc;
479 1.1 cgd rawarc.raw_count = p->tos[toindex].count;
480 1.32 christos (void)write(fd, &rawarc, sizeof rawarc);
481 1.1 cgd }
482 1.1 cgd }
483 1.32 christos (void)close(fd);
484 1.31 wiz #ifdef DEBUG
485 1.32 christos (void)close(logfd);
486 1.31 wiz #endif
487 1.1 cgd }
488 1.1 cgd
489 1.1 cgd /*
490 1.1 cgd * Control profiling
491 1.1 cgd * profiling is what mcount checks to see if
492 1.1 cgd * all the data structures are ready.
493 1.1 cgd */
494 1.1 cgd void
495 1.32 christos moncontrol(int mode)
496 1.1 cgd {
497 1.1 cgd struct gmonparam *p = &_gmonparam;
498 1.1 cgd
499 1.1 cgd if (mode) {
500 1.1 cgd /* start */
501 1.14 christos profil((char *)(void *)p->kcount, (size_t)p->kcountsize,
502 1.14 christos p->lowpc, s_scale);
503 1.1 cgd p->state = GMON_PROF_ON;
504 1.1 cgd } else {
505 1.1 cgd /* stop */
506 1.14 christos profil(NULL, 0, (u_long)0, 0);
507 1.1 cgd p->state = GMON_PROF_OFF;
508 1.1 cgd }
509 1.1 cgd }
510 1.1 cgd
511 1.1 cgd /*
512 1.1 cgd * discover the tick frequency of the machine
513 1.1 cgd * if something goes wrong, we return 0, an impossible hertz.
514 1.1 cgd */
515 1.1 cgd static int
516 1.32 christos hertz(void)
517 1.1 cgd {
518 1.32 christos struct itimerspec tim;
519 1.32 christos timer_t t;
520 1.32 christos int rv = 0;
521 1.32 christos
522 1.32 christos tim.it_interval.tv_sec = 0;
523 1.32 christos tim.it_interval.tv_nsec = 1;
524 1.32 christos tim.it_value.tv_sec = 0;
525 1.32 christos tim.it_value.tv_nsec = 0;
526 1.32 christos
527 1.32 christos if (timer_create(CLOCK_REALTIME, NULL, &t) == -1)
528 1.32 christos return 0;
529 1.32 christos
530 1.32 christos if (timer_settime(t, 0, &tim, NULL) == -1)
531 1.32 christos goto out;
532 1.32 christos
533 1.32 christos if (timer_gettime(t, &tim) == -1)
534 1.32 christos goto out;
535 1.32 christos
536 1.32 christos if (tim.it_interval.tv_nsec < 2)
537 1.32 christos goto out;
538 1.32 christos
539 1.32 christos rv = (int)(1000000000LL / tim.it_interval.tv_nsec);
540 1.32 christos out:
541 1.32 christos (void)timer_delete(t);
542 1.32 christos return rv;
543 1.1 cgd }
544