* dbxread.c (process_one_symbol): Make a first cut at handling
[deliverable/binutils-gdb.git] / gprof / gprof.h
CommitLineData
3d6c6501
SEF
1/*
2 * Copyright (c) 1983 Regents of the University of California.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms are permitted
6 * provided that: (1) source distributions retain this entire copyright
7 * notice and comment, and (2) distributions including binaries display
8 * the following acknowledgement: ``This product includes software
9 * developed by the University of California, Berkeley and its contributors''
10 * in the documentation or other materials provided with the distribution
11 * and in all advertising materials mentioning features or use of this
12 * software. Neither the name of the University nor the names of its
13 * contributors may be used to endorse or promote products derived
14 * from this software without specific prior written permission.
15 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
17 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
18 *
19 * @(#)gprof.h 5.9 (Berkeley) 6/1/90
20 */
21
811e3c6a
SEF
22#include <stdio.h>
23#include <stdlib.h>
3d6c6501
SEF
24#include <sys/types.h>
25#include <sys/stat.h>
811e3c6a 26#include "bfd.h"
3d6c6501
SEF
27#include "gmon.h"
28
29#ifdef MACHINE_H
30# include MACHINE_H
31#else
32# if vax
33# include "vax.h"
34# endif
35# if sun
36# include "sun.h"
37# endif
38# if tahoe
39# include "tahoe.h"
40# endif
41#endif
42
43
44 /*
45 * who am i, for error messages.
46 */
47char *whoami;
48
49 /*
50 * booleans
51 */
52typedef int bool;
53#define FALSE 0
54#define TRUE 1
55
56 /*
57 * ticks per second
58 */
59long hz;
60
61typedef u_short UNIT; /* unit of profiling */
62char *a_outname;
63#define A_OUTNAME "a.out"
64
65char *gmonname;
66#define GMONNAME "gmon.out"
67#define GMONSUM "gmon.sum"
68
69 /*
70 * a constructed arc,
71 * with pointers to the namelist entry of the parent and the child,
72 * a count of how many times this arc was traversed,
73 * and pointers to the next parent of this child and
74 * the next child of this parent.
75 */
76struct arcstruct {
77 struct nl *arc_parentp; /* pointer to parent's nl entry */
78 struct nl *arc_childp; /* pointer to child's nl entry */
79 long arc_count; /* how calls from parent to child */
80 double arc_time; /* time inherited along arc */
81 double arc_childtime; /* childtime inherited along arc */
82 struct arcstruct *arc_parentlist; /* parents-of-this-child list */
83 struct arcstruct *arc_childlist; /* children-of-this-parent list */
84};
85typedef struct arcstruct arctype;
86
87 /*
88 * The symbol table;
89 * for each external in the specified file we gather
90 * its address, the number of calls and compute its share of cpu time.
91 */
92struct nl {
93 char *name; /* the name */
94 unsigned long value; /* the pc entry point */
95 unsigned long svalue; /* entry point aligned to histograms */
96 double time; /* ticks in this routine */
97 double childtime; /* cumulative ticks in children */
98 long ncall; /* how many times called */
99 long selfcalls; /* how many calls to self */
100 double propfraction; /* what % of time propagates */
101 double propself; /* how much self time propagates */
102 double propchild; /* how much child time propagates */
103 bool printflag; /* should this be printed? */
104 int index; /* index in the graph list */
105 int toporder; /* graph call chain top-sort order */
106 int cycleno; /* internal number of cycle on */
107 struct nl *cyclehead; /* pointer to head of cycle */
108 struct nl *cnext; /* pointer to next member of cycle */
109 arctype *parents; /* list of caller arcs */
110 arctype *children; /* list of callee arcs */
111};
112typedef struct nl nltype;
113
114nltype *nl; /* the whole namelist */
115nltype *npe; /* the virtual end of the namelist */
116int nname; /* the number of function names */
117
118 /*
119 * flag which marks a nl entry as topologically ``busy''
120 * flag which marks a nl entry as topologically ``not_numbered''
121 */
122#define DFN_BUSY -1
123#define DFN_NAN 0
124
125 /*
126 * namelist entries for cycle headers.
127 * the number of discovered cycles.
128 */
129nltype *cyclenl; /* cycle header namelist */
130int ncycle; /* number of cycles discovered */
131
132 /*
133 * The header on the gmon.out file.
134 * gmon.out consists of one of these headers,
135 * and then an array of ncnt samples
136 * representing the discretized program counter values.
137 * this should be a struct phdr, but since everything is done
138 * as UNITs, this is in UNITs too.
139 */
140struct hdr {
141 UNIT *lowpc;
142 UNIT *highpc;
143 int ncnt;
144};
145
146struct hdr h;
147
148int debug;
149
150 /*
151 * Each discretized pc sample has
152 * a count of the number of samples in its range
153 */
154UNIT *samples;
155
156unsigned long s_lowpc; /* lowpc from the profile file */
157unsigned long s_highpc; /* highpc from the profile file */
158unsigned lowpc, highpc; /* range profiled, in UNIT's */
159unsigned sampbytes; /* number of bytes of samples */
160int nsamples; /* number of samples */
161double actime; /* accumulated time thus far for putprofline */
162double totime; /* total time for all routines */
163double printtime; /* total of time being printed */
164double scale; /* scale factor converting samples to pc
165 values: each sample covers scale bytes */
166char *strtab; /* string table in core */
167off_t ssiz; /* size of the string table */
3d6c6501
SEF
168unsigned char *textspace; /* text space of a.out in core */
169
170 /*
171 * option flags, from a to z.
172 */
173bool aflag; /* suppress static functions */
174bool bflag; /* blurbs, too */
175bool cflag; /* discovered call graph, too */
176bool dflag; /* debugging options */
177bool eflag; /* specific functions excluded */
178bool Eflag; /* functions excluded with time */
179bool fflag; /* specific functions requested */
180bool Fflag; /* functions requested with time */
181bool kflag; /* arcs to be deleted */
182bool sflag; /* sum multiple gmon.out files */
183bool zflag; /* zero time/called functions, too */
184
185 /*
186 * structure for various string lists
187 */
188struct stringlist {
189 struct stringlist *next;
190 char *string;
191};
192struct stringlist *elist;
193struct stringlist *Elist;
194struct stringlist *flist;
195struct stringlist *Flist;
196struct stringlist *kfromlist;
197struct stringlist *ktolist;
198
199 /*
200 * function declarations
201 */
202/*
203 addarc();
204*/
205int arccmp();
206arctype *arclookup();
207/*
208 asgnsamples();
209 printblurb();
210 cyclelink();
211 dfn();
212*/
213bool dfn_busy();
214/*
215 dfn_findcycle();
216*/
217bool dfn_numbered();
218/*
219 dfn_post_visit();
220 dfn_pre_visit();
221 dfn_self_cycle();
222*/
223nltype **doarcs();
224/*
225 done();
226 findcalls();
227 flatprofheader();
228 flatprofline();
229*/
230bool funcsymbol();
231/*
232 getnfile();
233 getpfile();
234 getstrtab();
235 getsymtab();
236 gettextspace();
237 gprofheader();
238 gprofline();
239 main();
240*/
241unsigned long max();
242int membercmp();
243unsigned long min();
244nltype *nllookup();
245FILE *openpfile();
246/*
247 printchildren();
248 printcycle();
249 printgprof();
250 printmembers();
251 printname();
252 printparents();
253 printprof();
254 readsamples();
255*/
256unsigned long reladdr();
257/*
258 sortchildren();
259 sortmembers();
260 sortparents();
261 tally();
262 timecmp();
263 topcmp();
264*/
265int totalcmp();
266/*
267 valcmp();
268*/
269
270#define LESSTHAN -1
271#define EQUALTO 0
272#define GREATERTHAN 1
273
274#define DFNDEBUG 1
275#define CYCLEDEBUG 2
276#define ARCDEBUG 4
277#define TALLYDEBUG 8
278#define TIMEDEBUG 16
279#define SAMPLEDEBUG 32
280#define AOUTDEBUG 64
281#define CALLDEBUG 128
282#define LOOKUPDEBUG 256
283#define PROPDEBUG 512
284#define ANYDEBUG 1024
This page took 0.043975 seconds and 4 git commands to generate.