* configure.tgt: Add arm, mips, sh wince targets.
[deliverable/binutils-gdb.git] / gprof / gprof.h
CommitLineData
252b5132
RH
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#ifndef gprof_h
22#define gprof_h
23
24#include <ansidecl.h>
25
26/* Include the BFD sysdep.h file. */
27#include "sysdep.h"
28
29/* Undefine the BFD PACKAGE and VERSION macros before including the
30 gprof config.h file. */
31#undef PACKAGE
32#undef VERSION
33/* Also undefine BFD's `_' macro; we have our own definition. */
34#undef _
35
36#include "gconfig.h"
37
38#ifndef MIN
39#define MIN(a,b) ((a) < (b) ? (a) : (b))
40#endif
41#ifndef MAX
42#define MAX(a,b) ((a) > (b) ? (a) : (b))
43#endif
44
45/* AIX defines hz as a macro. */
46#undef hz
47
48#ifndef PATH_MAX
49#define PATH_MAX 1024
50#endif
51
52#define A_OUTNAME "a.out" /* default core filename */
53#define GMONNAME "gmon.out" /* default profile filename */
54#define GMONSUM "gmon.sum" /* profile summary filename */
55
56#ifdef HAVE_LOCALE_H
57# include <locale.h>
58#endif
59
60#ifdef ENABLE_NLS
61# include <libintl.h>
62# define _(String) gettext (String)
63# ifdef gettext_noop
64# define N_(String) gettext_noop (String)
65# else
66# define N_(String) (String)
67# endif
68#else
69/* Stubs that do something close enough. */
70# define textdomain(String) (String)
71# define gettext(String) (String)
72# define dgettext(Domain,Message) (Message)
73# define dcgettext(Domain,Message,Type) (Message)
74# define bindtextdomain(Domain,Directory) (Domain)
75# define _(String) (String)
76# define N_(String) (String)
77#endif
78
79
80/*
81 * These may already be defined on some systems. We could probably
82 * just use the BFD versions of these, since BFD has already dealt
83 * with this problem.
84 */
85#undef FALSE
86#define FALSE 0
87#undef TRUE
88#define TRUE 1
89
90#define STYLE_FLAT_PROFILE (1<<0)
91#define STYLE_CALL_GRAPH (1<<1)
92#define STYLE_SUMMARY_FILE (1<<2)
93#define STYLE_EXEC_COUNTS (1<<3)
94#define STYLE_ANNOTATED_SOURCE (1<<4)
95#define STYLE_GMON_INFO (1<<5)
96#define STYLE_FUNCTION_ORDER (1<<6)
97#define STYLE_FILE_ORDER (1<<7)
98
99#define ANYDEBUG (1<<0) /* 1 */
100#define DFNDEBUG (1<<1) /* 2 */
101#define CYCLEDEBUG (1<<2) /* 4 */
102#define ARCDEBUG (1<<3) /* 8 */
103#define TALLYDEBUG (1<<4) /* 16 */
104#define TIMEDEBUG (1<<5) /* 32 */
105#define SAMPLEDEBUG (1<<6) /* 64 */
106#define AOUTDEBUG (1<<7) /* 128 */
107#define CALLDEBUG (1<<8) /* 256 */
108#define LOOKUPDEBUG (1<<9) /* 512 */
109#define PROPDEBUG (1<<10) /* 1024 */
110#define BBDEBUG (1<<11) /* 2048 */
111#define IDDEBUG (1<<12) /* 4096 */
112#define SRCDEBUG (1<<13) /* 8192 */
113
114#ifdef DEBUG
115#define DBG(l,s) if (debug_level & (l)) {s;}
116#else
117#define DBG(l,s)
118#endif
119
120typedef enum
121 {
122 FF_AUTO = 0, FF_MAGIC, FF_BSD, FF_BSD44, FF_PROF
123 }
124File_Format;
125
126typedef int bool;
127typedef unsigned char UNIT[2]; /* unit of profiling */
128
129extern const char *whoami; /* command-name, for error messages */
130extern const char *function_mapping_file; /* file mapping functions to files */
131extern const char *a_out_name; /* core filename */
132extern long hz; /* ticks per second */
133
134/*
135 * Command-line options:
136 */
137extern int debug_level; /* debug level */
138extern int output_style;
139extern int output_width; /* controls column width in index */
140extern bool bsd_style_output; /* as opposed to FSF style output */
141extern bool demangle; /* demangle symbol names? */
142extern bool discard_underscores; /* discard leading underscores? */
143extern bool ignore_direct_calls; /* don't count direct calls */
144extern bool ignore_static_funcs; /* suppress static functions */
145extern bool ignore_zeros; /* ignore unused symbols/files */
146extern bool line_granularity; /* function or line granularity? */
147extern bool print_descriptions; /* output profile description */
148extern bool print_path; /* print path or just filename? */
149extern bool ignore_non_functions;/* Ignore non-function symbols. */
150
151extern File_Format file_format; /* requested file format */
152
153extern bool first_output; /* no output so far? */
154
155extern void done PARAMS ((int status));
156
157#endif /* gprof_h */
This page took 0.038984 seconds and 4 git commands to generate.