2 * Copyright (c) 1983, 1993, 1998, 2001, 2002
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
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 * 3. 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
31 #include "libiberty.h"
33 #include "search_list.h"
36 #include "basic_blocks.h"
37 #include "call_graph.h"
48 static void usage (FILE *, int) ATTRIBUTE_NORETURN
;
51 const char * function_mapping_file
;
52 static const char * external_symbol_table
;
53 const char * a_out_name
= A_OUTNAME
;
57 * Default options values:
61 int output_width
= 80;
62 bool bsd_style_output
= false;
64 bool ignore_direct_calls
= false;
65 bool ignore_static_funcs
= false;
66 bool ignore_zeros
= true;
67 bool line_granularity
= false;
68 bool print_descriptions
= true;
69 bool print_path
= false;
70 bool ignore_non_functions
= false;
71 bool inline_file_names
= false;
72 File_Format file_format
= FF_AUTO
;
74 bool first_output
= true;
77 "@(#) Copyright (c) 1983 Regents of the University of California.\n\
78 All rights reserved.\n";
80 static char *gmon_name
= GMONNAME
; /* profile filename */
83 * Functions that get excluded by default:
85 static char *default_excluded_list
[] =
87 "_gprof_mcount", "mcount", "_mcount", "__mcount", "__mcount_internal",
92 /* Codes used for the long options with no short synonyms. 150 isn't
93 special; it's just an arbitrary non-ASCII char value. */
95 #define OPTION_DEMANGLE (150)
96 #define OPTION_NO_DEMANGLE (OPTION_DEMANGLE + 1)
97 #define OPTION_INLINE_FILE_NAMES (OPTION_DEMANGLE + 2)
99 static struct option long_options
[] =
101 {"line", no_argument
, 0, 'l'},
102 {"no-static", no_argument
, 0, 'a'},
103 {"ignore-non-functions", no_argument
, 0, 'D'},
104 {"external-symbol-table", required_argument
, 0, 'S'},
108 {"annotated-source", optional_argument
, 0, 'A'},
109 {"no-annotated-source", optional_argument
, 0, 'J'},
110 {"flat-profile", optional_argument
, 0, 'p'},
111 {"no-flat-profile", optional_argument
, 0, 'P'},
112 {"graph", optional_argument
, 0, 'q'},
113 {"no-graph", optional_argument
, 0, 'Q'},
114 {"exec-counts", optional_argument
, 0, 'C'},
115 {"no-exec-counts", optional_argument
, 0, 'Z'},
116 {"function-ordering", no_argument
, 0, 'r'},
117 {"file-ordering", required_argument
, 0, 'R'},
118 {"file-info", no_argument
, 0, 'i'},
119 {"sum", no_argument
, 0, 's'},
121 /* various options to affect output: */
123 {"all-lines", no_argument
, 0, 'x'},
124 {"demangle", optional_argument
, 0, OPTION_DEMANGLE
},
125 {"no-demangle", no_argument
, 0, OPTION_NO_DEMANGLE
},
126 {"directory-path", required_argument
, 0, 'I'},
127 {"display-unused-functions", no_argument
, 0, 'z'},
128 {"inline-file-names", no_argument
, 0, OPTION_INLINE_FILE_NAMES
},
129 {"min-count", required_argument
, 0, 'm'},
130 {"print-path", no_argument
, 0, 'L'},
131 {"separate-files", no_argument
, 0, 'y'},
132 {"static-call-graph", no_argument
, 0, 'c'},
133 {"table-length", required_argument
, 0, 't'},
134 {"time", required_argument
, 0, 'n'},
135 {"no-time", required_argument
, 0, 'N'},
136 {"width", required_argument
, 0, 'w'},
138 * These are for backwards-compatibility only. Their functionality
139 * is provided by the output style options already:
141 {"", required_argument
, 0, 'e'},
142 {"", required_argument
, 0, 'E'},
143 {"", required_argument
, 0, 'f'},
144 {"", required_argument
, 0, 'F'},
145 {"", required_argument
, 0, 'k'},
149 {"brief", no_argument
, 0, 'b'},
150 {"debug", optional_argument
, 0, 'd'},
151 {"help", no_argument
, 0, 'h'},
152 {"file-format", required_argument
, 0, 'O'},
153 {"traditional", no_argument
, 0, 'T'},
154 {"version", no_argument
, 0, 'v'},
155 {0, no_argument
, 0, 0}
160 usage (FILE *stream
, int status
)
162 fprintf (stream
, _("\
163 Usage: %s [-[abcDhilLrsTvwxyz]] [-[ABCeEfFJnNOpPqQRStZ][name]] [-I dirs]\n\
164 [-d[num]] [-k from/to] [-m min-count] [-t table-length]\n\
165 [--[no-]annotated-source[=name]] [--[no-]exec-counts[=name]]\n\
166 [--[no-]flat-profile[=name]] [--[no-]graph[=name]]\n\
167 [--[no-]time=name] [--all-lines] [--brief] [--debug[=level]]\n\
168 [--function-ordering] [--file-ordering] [--inline-file-names]\n\
169 [--directory-path=dirs] [--display-unused-functions]\n\
170 [--file-format=name] [--file-info] [--help] [--line] [--min-count=n]\n\
171 [--no-static] [--print-path] [--separate-files]\n\
172 [--static-call-graph] [--sum] [--table-length=len] [--traditional]\n\
173 [--version] [--width=n] [--ignore-non-functions]\n\
174 [--demangle[=STYLE]] [--no-demangle] [--external-symbol-table=name] [@FILE]\n\
175 [image-file] [profile-file...]\n"),
177 if (REPORT_BUGS_TO
[0] && status
== 0)
178 fprintf (stream
, _("Report bugs to %s\n"), REPORT_BUGS_TO
);
184 main (int argc
, char **argv
)
188 int ch
, user_specified
= 0;
190 #ifdef HAVE_LC_MESSAGES
191 setlocale (LC_MESSAGES
, "");
193 setlocale (LC_CTYPE
, "");
195 bindtextdomain (PACKAGE
, LOCALEDIR
);
196 textdomain (PACKAGE
);
200 xmalloc_set_program_name (whoami
);
202 expandargv (&argc
, &argv
);
204 while ((ch
= getopt_long (argc
, argv
,
205 "aA::bBcC::d::De:E:f:F:hiI:J::k:lLm:n:N:O:p::P::q::Q::rR:sS:t:Tvw:xyzZ::",
212 ignore_static_funcs
= true;
217 sym_id_add (optarg
, INCL_ANNO
);
219 output_style
|= STYLE_ANNOTATED_SOURCE
;
220 user_specified
|= STYLE_ANNOTATED_SOURCE
;
223 print_descriptions
= false;
226 output_style
|= STYLE_CALL_GRAPH
;
227 user_specified
|= STYLE_CALL_GRAPH
;
230 ignore_direct_calls
= true;
235 sym_id_add (optarg
, INCL_EXEC
);
237 output_style
|= STYLE_EXEC_COUNTS
;
238 user_specified
|= STYLE_EXEC_COUNTS
;
243 debug_level
|= atoi (optarg
);
244 debug_level
|= ANYDEBUG
;
250 DBG (ANYDEBUG
, printf ("[main] debug-level=0x%x\n", debug_level
));
252 printf (_("%s: debugging not supported; -d ignored\n"), whoami
);
256 ignore_non_functions
= true;
259 sym_id_add (optarg
, EXCL_TIME
);
262 sym_id_add (optarg
, EXCL_GRAPH
);
265 sym_id_add (optarg
, INCL_TIME
);
268 sym_id_add (optarg
, INCL_GRAPH
);
270 /* FIXME: The -g and -G options are not present in the getopt_long
271 invocation above, and they are not documented in gprof.texi.
272 Therefore they appear to be deprecated. Test this theory and
273 delete them if true. */
275 sym_id_add (optarg
, EXCL_FLAT
);
278 sym_id_add (optarg
, INCL_FLAT
);
283 output_style
|= STYLE_GMON_INFO
;
284 user_specified
|= STYLE_GMON_INFO
;
287 search_list_append (&src_search_list
, optarg
);
292 sym_id_add (optarg
, EXCL_ANNO
);
293 output_style
|= STYLE_ANNOTATED_SOURCE
;
297 output_style
&= ~STYLE_ANNOTATED_SOURCE
;
299 user_specified
|= STYLE_ANNOTATED_SOURCE
;
302 sym_id_add (optarg
, EXCL_ARCS
);
305 line_granularity
= true;
311 bb_min_calls
= (unsigned long) strtoul (optarg
, (char **) NULL
, 10);
314 sym_id_add (optarg
, INCL_TIME
);
317 sym_id_add (optarg
, EXCL_TIME
);
323 file_format
= FF_AUTO
;
326 file_format
= FF_MAGIC
;
329 file_format
= FF_BSD
;
332 file_format
= FF_BSD44
;
335 file_format
= FF_PROF
;
338 fprintf (stderr
, _("%s: unknown file format %s\n"),
346 sym_id_add (optarg
, INCL_FLAT
);
348 output_style
|= STYLE_FLAT_PROFILE
;
349 user_specified
|= STYLE_FLAT_PROFILE
;
354 sym_id_add (optarg
, EXCL_FLAT
);
355 output_style
|= STYLE_FLAT_PROFILE
;
359 output_style
&= ~STYLE_FLAT_PROFILE
;
361 user_specified
|= STYLE_FLAT_PROFILE
;
366 if (strchr (optarg
, '/'))
368 sym_id_add (optarg
, INCL_ARCS
);
372 sym_id_add (optarg
, INCL_GRAPH
);
375 output_style
|= STYLE_CALL_GRAPH
;
376 user_specified
|= STYLE_CALL_GRAPH
;
379 output_style
|= STYLE_FUNCTION_ORDER
;
380 user_specified
|= STYLE_FUNCTION_ORDER
;
383 output_style
|= STYLE_FILE_ORDER
;
384 user_specified
|= STYLE_FILE_ORDER
;
385 function_mapping_file
= optarg
;
390 if (strchr (optarg
, '/'))
392 sym_id_add (optarg
, EXCL_ARCS
);
396 sym_id_add (optarg
, EXCL_GRAPH
);
398 output_style
|= STYLE_CALL_GRAPH
;
402 output_style
&= ~STYLE_CALL_GRAPH
;
404 user_specified
|= STYLE_CALL_GRAPH
;
407 output_style
|= STYLE_SUMMARY_FILE
;
408 user_specified
|= STYLE_SUMMARY_FILE
;
411 external_symbol_table
= optarg
;
412 DBG (AOUTDEBUG
, printf ("external-symbol-table: %s\n", optarg
));
415 bb_table_length
= atoi (optarg
);
416 if (bb_table_length
< 0)
422 bsd_style_output
= true;
425 /* This output is intended to follow the GNU standards document. */
426 printf (_("GNU gprof %s\n"), BFD_VERSION_STRING
);
427 printf (_("Based on BSD gprof, copyright 1983 Regents of the University of California.\n"));
429 This program is free software. This program has absolutely no warranty.\n"));
432 output_width
= atoi (optarg
);
433 if (output_width
< 1)
439 bb_annotate_all_lines
= true;
442 create_annotation_files
= true;
445 ignore_zeros
= false;
450 sym_id_add (optarg
, EXCL_EXEC
);
451 output_style
|= STYLE_EXEC_COUNTS
;
455 output_style
&= ~STYLE_EXEC_COUNTS
;
457 user_specified
|= STYLE_EXEC_COUNTS
;
459 case OPTION_DEMANGLE
:
463 enum demangling_styles style
;
465 style
= cplus_demangle_name_to_style (optarg
);
466 if (style
== unknown_demangling
)
469 _("%s: unknown demangling style `%s'\n"),
474 cplus_demangle_set_style (style
);
477 case OPTION_NO_DEMANGLE
:
480 case OPTION_INLINE_FILE_NAMES
:
481 inline_file_names
= true;
488 /* Don't allow both ordering options, they modify the arc data in-place. */
489 if ((user_specified
& STYLE_FUNCTION_ORDER
)
490 && (user_specified
& STYLE_FILE_ORDER
))
493 %s: Only one of --function-ordering and --file-ordering may be specified.\n"),
498 /* --sum implies --line, otherwise we'd lose basic block counts in
500 if (output_style
& STYLE_SUMMARY_FILE
)
501 line_granularity
= 1;
503 /* append value of GPROF_PATH to source search list if set: */
504 str
= (char *) getenv ("GPROF_PATH");
506 search_list_append (&src_search_list
, str
);
509 a_out_name
= argv
[optind
++];
512 gmon_name
= argv
[optind
++];
514 /* Turn off default functions. */
515 for (sp
= &default_excluded_list
[0]; *sp
; sp
++)
517 sym_id_add (*sp
, EXCL_TIME
);
518 sym_id_add (*sp
, EXCL_GRAPH
);
519 sym_id_add (*sp
, EXCL_FLAT
);
522 /* Read symbol table from core file. */
523 core_init (a_out_name
);
525 /* If we should ignore direct function calls, we need to load to
526 core's text-space. */
527 if (ignore_direct_calls
)
528 core_get_text_space (core_bfd
);
530 /* Create symbols from core image. */
531 if (external_symbol_table
)
532 core_create_syms_from (external_symbol_table
);
533 else if (line_granularity
)
534 core_create_line_syms ();
536 core_create_function_syms ();
538 /* Translate sym specs into syms. */
541 if (file_format
== FF_PROF
)
544 _("%s: sorry, file format `prof' is not yet supported\n"),
550 /* Get information about gmon.out file(s). */
553 gmon_out_read (gmon_name
);
555 gmon_name
= argv
[optind
];
557 while (optind
++ < argc
);
560 /* If user did not specify output style, try to guess something
562 if (output_style
== 0)
564 if (gmon_input
& (INPUT_HISTOGRAM
| INPUT_CALL_GRAPH
))
566 if (gmon_input
& INPUT_HISTOGRAM
)
567 output_style
|= STYLE_FLAT_PROFILE
;
568 if (gmon_input
& INPUT_CALL_GRAPH
)
569 output_style
|= STYLE_CALL_GRAPH
;
572 output_style
= STYLE_EXEC_COUNTS
;
574 output_style
&= ~user_specified
;
577 /* Dump a gmon.sum file if requested (before any other
579 if (output_style
& STYLE_SUMMARY_FILE
)
581 gmon_out_write (GMONSUM
);
584 if (gmon_input
& INPUT_HISTOGRAM
)
586 hist_assign_samples ();
589 if (gmon_input
& INPUT_CALL_GRAPH
)
594 /* Do some simple sanity checks. */
595 if ((output_style
& STYLE_FLAT_PROFILE
)
596 && !(gmon_input
& INPUT_HISTOGRAM
))
598 fprintf (stderr
, _("%s: gmon.out file is missing histogram\n"), whoami
);
602 if ((output_style
& STYLE_CALL_GRAPH
) && !(gmon_input
& INPUT_CALL_GRAPH
))
605 _("%s: gmon.out file is missing call-graph data\n"), whoami
);
609 /* Output whatever user whishes to see. */
610 if (cg
&& (output_style
& STYLE_CALL_GRAPH
) && bsd_style_output
)
612 /* Print the dynamic profile. */
616 if (output_style
& STYLE_FLAT_PROFILE
)
618 /* Print the flat profile. */
622 if (cg
&& (output_style
& STYLE_CALL_GRAPH
))
624 if (!bsd_style_output
)
626 /* Print the dynamic profile. */
632 if (output_style
& STYLE_EXEC_COUNTS
)
633 print_exec_counts ();
635 if (output_style
& STYLE_ANNOTATED_SOURCE
)
636 print_annotated_source ();
638 if (output_style
& STYLE_FUNCTION_ORDER
)
639 cg_print_function_ordering ();
641 if (output_style
& STYLE_FILE_ORDER
)
642 cg_print_file_ordering ();