2 * Copyright (c) 1983 Regents of the University of California.
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.
19 * @(#)gprof.h 5.9 (Berkeley) 6/1/90
26 /* Include the BFD sysdep.h file. */
29 /* Undefine the BFD PACKAGE and VERSION macros before including the
30 gprof config.h file. */
37 #define MIN(a,b) ((a) < (b) ? (a) : (b))
40 #define MAX(a,b) ((a) > (b) ? (a) : (b))
43 /* AIX defines hz as a macro. */
71 #define A_OUTNAME "a.out" /* default core filename */
72 #define GMONNAME "gmon.out" /* default profile filename */
73 #define GMONSUM "gmon.sum" /* profile summary filename */
76 * These may already be defined on some systems. We could probably
77 * just use the BFD versions of these, since BFD has already dealt
85 #define STYLE_FLAT_PROFILE (1<<0)
86 #define STYLE_CALL_GRAPH (1<<1)
87 #define STYLE_SUMMARY_FILE (1<<2)
88 #define STYLE_EXEC_COUNTS (1<<3)
89 #define STYLE_ANNOTATED_SOURCE (1<<4)
90 #define STYLE_GMON_INFO (1<<5)
91 #define STYLE_FUNCTION_ORDER (1<<6)
92 #define STYLE_FILE_ORDER (1<<7)
94 #define ANYDEBUG (1<<0) /* 1 */
95 #define DFNDEBUG (1<<1) /* 2 */
96 #define CYCLEDEBUG (1<<2) /* 4 */
97 #define ARCDEBUG (1<<3) /* 8 */
98 #define TALLYDEBUG (1<<4) /* 16 */
99 #define TIMEDEBUG (1<<5) /* 32 */
100 #define SAMPLEDEBUG (1<<6) /* 64 */
101 #define AOUTDEBUG (1<<7) /* 128 */
102 #define CALLDEBUG (1<<8) /* 256 */
103 #define LOOKUPDEBUG (1<<9) /* 512 */
104 #define PROPDEBUG (1<<10) /* 1024 */
105 #define BBDEBUG (1<<11) /* 2048 */
106 #define IDDEBUG (1<<12) /* 4096 */
107 #define SRCDEBUG (1<<13) /* 8192 */
110 #define DBG(l,s) if (debug_level & (l)) {s;}
117 FF_AUTO
= 0, FF_MAGIC
, FF_BSD
, FF_PROF
122 typedef unsigned char UNIT
[2]; /* unit of profiling */
124 extern const char *whoami
; /* command-name, for error messages */
125 extern const char *function_mapping_file
; /* file mapping functions to files */
126 extern const char *a_out_name
; /* core filename */
127 extern long hz
; /* ticks per second */
130 * Command-line options:
132 extern int debug_level
; /* debug level */
133 extern int output_style
;
134 extern int output_width
; /* controls column width in index */
135 extern bool bsd_style_output
; /* as opposed to FSF style output */
136 extern bool discard_underscores
; /* discard leading underscores? */
137 extern bool ignore_direct_calls
; /* don't count direct calls */
138 extern bool ignore_static_funcs
; /* suppress static functions */
139 extern bool ignore_zeros
; /* ignore unused symbols/files */
140 extern bool line_granularity
; /* function or line granularity? */
141 extern bool print_descriptions
; /* output profile description */
142 extern bool print_path
; /* print path or just filename? */
143 extern bool ignore_non_functions
;/* Ignore non-function symbols. */
145 extern File_Format file_format
; /* requested file format */
147 extern bool first_output
; /* no output so far? */
149 extern void done
PARAMS ((int status
));
This page took 0.033402 seconds and 4 git commands to generate.