* catgets/open_catalog.c (__open_catalog): Don't use a value type
[glibc.git] / gmon / mcount.c
blob8e54812d75c3f1e021e1b80a9c83b0b2615aada6
1 /*-
2 * Copyright (c) 1983, 1992, 1993
3 * The Regents of the University of California. All rights reserved.
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 * 4. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
30 #if !defined(lint) && !defined(KERNEL) && defined(LIBC_SCCS)
31 static char sccsid[] = "@(#)mcount.c 8.1 (Berkeley) 6/4/93";
32 #endif
34 #include <unistd.h>
35 #include <sys/param.h>
36 #include <sys/gmon.h>
38 /* This file provides the machine-dependent definitions of the _MCOUNT_DECL
39 and MCOUNT macros. */
40 #include "machine-gmon.h"
42 #include <atomicity.h>
45 * mcount is called on entry to each function compiled with the profiling
46 * switch set. _mcount(), which is declared in a machine-dependent way
47 * with _MCOUNT_DECL, does the actual work and is either inlined into a
48 * C routine or called by an assembly stub. In any case, this magic is
49 * taken care of by the MCOUNT definition in <machine/profile.h>.
51 * _mcount updates data structures that represent traversals of the
52 * program's call graph edges. frompc and selfpc are the return
53 * address and function address that represents the given call graph edge.
55 * Note: the original BSD code used the same variable (frompcindex) for
56 * both frompcindex and frompc. Any reasonable, modern compiler will
57 * perform this optimization.
59 _MCOUNT_DECL(frompc, selfpc) /* _mcount; may be static, inline, etc */
61 register ARCINDEX *frompcindex;
62 register struct tostruct *top, *prevtop;
63 register struct gmonparam *p;
64 register ARCINDEX toindex;
65 int i;
67 p = &_gmonparam;
69 * check that we are profiling
70 * and that we aren't recursively invoked.
72 if (! compare_and_swap (&p->state, GMON_PROF_ON, GMON_PROF_BUSY))
73 return;
76 * check that frompcindex is a reasonable pc value.
77 * for example: signal catchers get called from the stack,
78 * not from text space. too bad.
80 frompc -= p->lowpc;
81 if (frompc > p->textsize)
82 goto done;
84 /* The following test used to be
85 if (p->log_hashfraction >= 0)
86 But we can simplify this if we assume the profiling data
87 is always initialized by the functions in gmon.c. But
88 then it is possible to avoid a runtime check and use the
89 smae `if' as in gmon.c. So keep these tests in sync. */
90 if ((HASHFRACTION & (HASHFRACTION - 1)) == 0) {
91 /* avoid integer divide if possible: */
92 i = frompc >> p->log_hashfraction;
93 } else {
94 i = frompc / (p->hashfraction * sizeof(*p->froms));
96 frompcindex = &p->froms[i];
97 toindex = *frompcindex;
98 if (toindex == 0) {
100 * first time traversing this arc
102 toindex = ++p->tos[0].link;
103 if (toindex >= p->tolimit)
104 /* halt further profiling */
105 goto overflow;
107 *frompcindex = toindex;
108 top = &p->tos[toindex];
109 top->selfpc = selfpc;
110 top->count = 1;
111 top->link = 0;
112 goto done;
114 top = &p->tos[toindex];
115 if (top->selfpc == selfpc) {
117 * arc at front of chain; usual case.
119 top->count++;
120 goto done;
123 * have to go looking down chain for it.
124 * top points to what we are looking at,
125 * prevtop points to previous top.
126 * we know it is not at the head of the chain.
128 for (; /* goto done */; ) {
129 if (top->link == 0) {
131 * top is end of the chain and none of the chain
132 * had top->selfpc == selfpc.
133 * so we allocate a new tostruct
134 * and link it to the head of the chain.
136 toindex = ++p->tos[0].link;
137 if (toindex >= p->tolimit)
138 goto overflow;
140 top = &p->tos[toindex];
141 top->selfpc = selfpc;
142 top->count = 1;
143 top->link = *frompcindex;
144 *frompcindex = toindex;
145 goto done;
148 * otherwise, check the next arc on the chain.
150 prevtop = top;
151 top = &p->tos[top->link];
152 if (top->selfpc == selfpc) {
154 * there it is.
155 * increment its count
156 * move it to the head of the chain.
158 top->count++;
159 toindex = prevtop->link;
160 prevtop->link = top->link;
161 top->link = *frompcindex;
162 *frompcindex = toindex;
163 goto done;
167 done:
168 p->state = GMON_PROF_ON;
169 return;
170 overflow:
171 p->state = GMON_PROF_ERROR;
172 return;
176 * Actual definition of mcount function. Defined in <machine/profile.h>,
177 * which is included by <sys/gmon.h>.
179 MCOUNT