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 bfd_boolean bsd_style_output
= FALSE
;
63 bfd_boolean demangle
= TRUE
;
64 bfd_boolean ignore_direct_calls
= FALSE
;
65 bfd_boolean ignore_static_funcs
= FALSE
;
66 bfd_boolean ignore_zeros
= TRUE
;
67 bfd_boolean line_granularity
= FALSE
;
68 bfd_boolean print_descriptions
= TRUE
;
69 bfd_boolean print_path
= FALSE
;
70 bfd_boolean ignore_non_functions
= FALSE
;
71 File_Format file_format
= FF_AUTO
;
73 bfd_boolean first_output
= TRUE
;
76 "@(#) Copyright (c) 1983 Regents of the University of California.\n\
77 All rights reserved.\n";
79 static char *gmon_name
= GMONNAME
; /* profile filename */
82 * Functions that get excluded by default:
84 static char *default_excluded_list
[] =
86 "_gprof_mcount", "mcount", "_mcount", "__mcount", "__mcount_internal",
91 /* Codes used for the long options with no short synonyms. 150 isn't
92 special; it's just an arbitrary non-ASCII char value. */
94 #define OPTION_DEMANGLE (150)
95 #define OPTION_NO_DEMANGLE (OPTION_DEMANGLE + 1)
97 static struct option long_options
[] =
99 {"line", no_argument
, 0, 'l'},
100 {"no-static", no_argument
, 0, 'a'},
101 {"ignore-non-functions", no_argument
, 0, 'D'},
102 {"external-symbol-table", required_argument
, 0, 'S'},
106 {"annotated-source", optional_argument
, 0, 'A'},
107 {"no-annotated-source", optional_argument
, 0, 'J'},
108 {"flat-profile", optional_argument
, 0, 'p'},
109 {"no-flat-profile", optional_argument
, 0, 'P'},
110 {"graph", optional_argument
, 0, 'q'},
111 {"no-graph", optional_argument
, 0, 'Q'},
112 {"exec-counts", optional_argument
, 0, 'C'},
113 {"no-exec-counts", optional_argument
, 0, 'Z'},
114 {"function-ordering", no_argument
, 0, 'r'},
115 {"file-ordering", required_argument
, 0, 'R'},
116 {"file-info", no_argument
, 0, 'i'},
117 {"sum", no_argument
, 0, 's'},
119 /* various options to affect output: */
121 {"all-lines", no_argument
, 0, 'x'},
122 {"demangle", optional_argument
, 0, OPTION_DEMANGLE
},
123 {"no-demangle", no_argument
, 0, OPTION_NO_DEMANGLE
},
124 {"directory-path", required_argument
, 0, 'I'},
125 {"display-unused-functions", no_argument
, 0, 'z'},
126 {"min-count", required_argument
, 0, 'm'},
127 {"print-path", no_argument
, 0, 'L'},
128 {"separate-files", no_argument
, 0, 'y'},
129 {"static-call-graph", no_argument
, 0, 'c'},
130 {"table-length", required_argument
, 0, 't'},
131 {"time", required_argument
, 0, 'n'},
132 {"no-time", required_argument
, 0, 'N'},
133 {"width", required_argument
, 0, 'w'},
135 * These are for backwards-compatibility only. Their functionality
136 * is provided by the output style options already:
138 {"", required_argument
, 0, 'e'},
139 {"", required_argument
, 0, 'E'},
140 {"", required_argument
, 0, 'f'},
141 {"", required_argument
, 0, 'F'},
142 {"", required_argument
, 0, 'k'},
146 {"brief", no_argument
, 0, 'b'},
147 {"debug", optional_argument
, 0, 'd'},
148 {"help", no_argument
, 0, 'h'},
149 {"file-format", required_argument
, 0, 'O'},
150 {"traditional", no_argument
, 0, 'T'},
151 {"version", no_argument
, 0, 'v'},
152 {0, no_argument
, 0, 0}
157 usage (FILE *stream
, int status
)
159 fprintf (stream
, _("\
160 Usage: %s [-[abcDhilLsTvwxyz]] [-[ACeEfFJnNOpPqSQZ][name]] [-I dirs]\n\
161 [-d[num]] [-k from/to] [-m min-count] [-t table-length]\n\
162 [--[no-]annotated-source[=name]] [--[no-]exec-counts[=name]]\n\
163 [--[no-]flat-profile[=name]] [--[no-]graph[=name]]\n\
164 [--[no-]time=name] [--all-lines] [--brief] [--debug[=level]]\n\
165 [--function-ordering] [--file-ordering]\n\
166 [--directory-path=dirs] [--display-unused-functions]\n\
167 [--file-format=name] [--file-info] [--help] [--line] [--min-count=n]\n\
168 [--no-static] [--print-path] [--separate-files]\n\
169 [--static-call-graph] [--sum] [--table-length=len] [--traditional]\n\
170 [--version] [--width=n] [--ignore-non-functions]\n\
171 [--demangle[=STYLE]] [--no-demangle] [--external-symbol-table=name] [@FILE]\n\
172 [image-file] [profile-file...]\n"),
174 if (REPORT_BUGS_TO
[0] && status
== 0)
175 fprintf (stream
, _("Report bugs to %s\n"), REPORT_BUGS_TO
);
181 main (int argc
, char **argv
)
185 int ch
, user_specified
= 0;
187 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
188 setlocale (LC_MESSAGES
, "");
190 #if defined (HAVE_SETLOCALE)
191 setlocale (LC_CTYPE
, "");
194 bindtextdomain (PACKAGE
, LOCALEDIR
);
195 textdomain (PACKAGE
);
199 xmalloc_set_program_name (whoami
);
201 expandargv (&argc
, &argv
);
203 while ((ch
= getopt_long (argc
, argv
,
204 "aA::bBcC::d::De:E:f:F:hiI:J::k:lLm:n:N:O:p::P::q::Q::rR:sS:t:Tvw:xyzZ::",
211 ignore_static_funcs
= TRUE
;
216 sym_id_add (optarg
, INCL_ANNO
);
218 output_style
|= STYLE_ANNOTATED_SOURCE
;
219 user_specified
|= STYLE_ANNOTATED_SOURCE
;
222 print_descriptions
= FALSE
;
225 output_style
|= STYLE_CALL_GRAPH
;
226 user_specified
|= STYLE_CALL_GRAPH
;
229 ignore_direct_calls
= TRUE
;
234 sym_id_add (optarg
, INCL_EXEC
);
236 output_style
|= STYLE_EXEC_COUNTS
;
237 user_specified
|= STYLE_EXEC_COUNTS
;
242 debug_level
|= atoi (optarg
);
243 debug_level
|= ANYDEBUG
;
249 DBG (ANYDEBUG
, printf ("[main] debug-level=0x%x\n", debug_level
));
251 printf (_("%s: debugging not supported; -d ignored\n"), whoami
);
255 ignore_non_functions
= TRUE
;
258 sym_id_add (optarg
, EXCL_TIME
);
260 sym_id_add (optarg
, EXCL_GRAPH
);
263 sym_id_add (optarg
, INCL_TIME
);
265 sym_id_add (optarg
, INCL_GRAPH
);
268 sym_id_add (optarg
, EXCL_FLAT
);
271 sym_id_add (optarg
, INCL_FLAT
);
276 output_style
|= STYLE_GMON_INFO
;
277 user_specified
|= STYLE_GMON_INFO
;
280 search_list_append (&src_search_list
, optarg
);
285 sym_id_add (optarg
, EXCL_ANNO
);
286 output_style
|= STYLE_ANNOTATED_SOURCE
;
290 output_style
&= ~STYLE_ANNOTATED_SOURCE
;
292 user_specified
|= STYLE_ANNOTATED_SOURCE
;
295 sym_id_add (optarg
, EXCL_ARCS
);
298 line_granularity
= TRUE
;
304 bb_min_calls
= (unsigned long) strtoul (optarg
, (char **) NULL
, 10);
307 sym_id_add (optarg
, INCL_TIME
);
310 sym_id_add (optarg
, EXCL_TIME
);
316 file_format
= FF_AUTO
;
319 file_format
= FF_MAGIC
;
322 file_format
= FF_BSD
;
325 file_format
= FF_BSD44
;
328 file_format
= FF_PROF
;
331 fprintf (stderr
, _("%s: unknown file format %s\n"),
339 sym_id_add (optarg
, INCL_FLAT
);
341 output_style
|= STYLE_FLAT_PROFILE
;
342 user_specified
|= STYLE_FLAT_PROFILE
;
347 sym_id_add (optarg
, EXCL_FLAT
);
348 output_style
|= STYLE_FLAT_PROFILE
;
352 output_style
&= ~STYLE_FLAT_PROFILE
;
354 user_specified
|= STYLE_FLAT_PROFILE
;
359 if (strchr (optarg
, '/'))
361 sym_id_add (optarg
, INCL_ARCS
);
365 sym_id_add (optarg
, INCL_GRAPH
);
368 output_style
|= STYLE_CALL_GRAPH
;
369 user_specified
|= STYLE_CALL_GRAPH
;
372 output_style
|= STYLE_FUNCTION_ORDER
;
373 user_specified
|= STYLE_FUNCTION_ORDER
;
376 output_style
|= STYLE_FILE_ORDER
;
377 user_specified
|= STYLE_FILE_ORDER
;
378 function_mapping_file
= optarg
;
383 if (strchr (optarg
, '/'))
385 sym_id_add (optarg
, EXCL_ARCS
);
389 sym_id_add (optarg
, EXCL_GRAPH
);
391 output_style
|= STYLE_CALL_GRAPH
;
395 output_style
&= ~STYLE_CALL_GRAPH
;
397 user_specified
|= STYLE_CALL_GRAPH
;
400 output_style
|= STYLE_SUMMARY_FILE
;
401 user_specified
|= STYLE_SUMMARY_FILE
;
404 external_symbol_table
= optarg
;
405 DBG (AOUTDEBUG
, printf ("external-symbol-table: %s\n", optarg
));
408 bb_table_length
= atoi (optarg
);
409 if (bb_table_length
< 0)
415 bsd_style_output
= TRUE
;
418 /* This output is intended to follow the GNU standards document. */
419 printf (_("GNU gprof %s\n"), BFD_VERSION_STRING
);
420 printf (_("Based on BSD gprof, copyright 1983 Regents of the University of California.\n"));
422 This program is free software. This program has absolutely no warranty.\n"));
425 output_width
= atoi (optarg
);
426 if (output_width
< 1)
432 bb_annotate_all_lines
= TRUE
;
435 create_annotation_files
= TRUE
;
438 ignore_zeros
= FALSE
;
443 sym_id_add (optarg
, EXCL_EXEC
);
444 output_style
|= STYLE_EXEC_COUNTS
;
448 output_style
&= ~STYLE_EXEC_COUNTS
;
450 user_specified
|= STYLE_ANNOTATED_SOURCE
;
452 case OPTION_DEMANGLE
:
456 enum demangling_styles style
;
458 style
= cplus_demangle_name_to_style (optarg
);
459 if (style
== unknown_demangling
)
462 _("%s: unknown demangling style `%s'\n"),
467 cplus_demangle_set_style (style
);
470 case OPTION_NO_DEMANGLE
:
478 /* Don't allow both ordering options, they modify the arc data in-place. */
479 if ((user_specified
& STYLE_FUNCTION_ORDER
)
480 && (user_specified
& STYLE_FILE_ORDER
))
483 %s: Only one of --function-ordering and --file-ordering may be specified.\n"),
488 /* --sum implies --line, otherwise we'd lose basic block counts in
490 if (output_style
& STYLE_SUMMARY_FILE
)
491 line_granularity
= 1;
493 /* append value of GPROF_PATH to source search list if set: */
494 str
= (char *) getenv ("GPROF_PATH");
496 search_list_append (&src_search_list
, str
);
499 a_out_name
= argv
[optind
++];
502 gmon_name
= argv
[optind
++];
504 /* Turn off default functions. */
505 for (sp
= &default_excluded_list
[0]; *sp
; sp
++)
507 sym_id_add (*sp
, EXCL_TIME
);
508 sym_id_add (*sp
, EXCL_GRAPH
);
509 sym_id_add (*sp
, EXCL_FLAT
);
512 /* Read symbol table from core file. */
513 core_init (a_out_name
);
515 /* If we should ignore direct function calls, we need to load to
516 core's text-space. */
517 if (ignore_direct_calls
)
518 core_get_text_space (core_bfd
);
520 /* Create symbols from core image. */
521 if (external_symbol_table
)
522 core_create_syms_from (external_symbol_table
);
523 else if (line_granularity
)
524 core_create_line_syms ();
526 core_create_function_syms ();
528 /* Translate sym specs into syms. */
531 if (file_format
== FF_PROF
)
534 _("%s: sorry, file format `prof' is not yet supported\n"),
540 /* Get information about gmon.out file(s). */
543 gmon_out_read (gmon_name
);
545 gmon_name
= argv
[optind
];
547 while (optind
++ < argc
);
550 /* If user did not specify output style, try to guess something
552 if (output_style
== 0)
554 if (gmon_input
& (INPUT_HISTOGRAM
| INPUT_CALL_GRAPH
))
556 if (gmon_input
& INPUT_HISTOGRAM
)
557 output_style
|= STYLE_FLAT_PROFILE
;
558 if (gmon_input
& INPUT_CALL_GRAPH
)
559 output_style
|= STYLE_CALL_GRAPH
;
562 output_style
= STYLE_EXEC_COUNTS
;
564 output_style
&= ~user_specified
;
567 /* Dump a gmon.sum file if requested (before any other
569 if (output_style
& STYLE_SUMMARY_FILE
)
571 gmon_out_write (GMONSUM
);
574 if (gmon_input
& INPUT_HISTOGRAM
)
576 hist_assign_samples ();
579 if (gmon_input
& INPUT_CALL_GRAPH
)
584 /* Do some simple sanity checks. */
585 if ((output_style
& STYLE_FLAT_PROFILE
)
586 && !(gmon_input
& INPUT_HISTOGRAM
))
588 fprintf (stderr
, _("%s: gmon.out file is missing histogram\n"), whoami
);
592 if ((output_style
& STYLE_CALL_GRAPH
) && !(gmon_input
& INPUT_CALL_GRAPH
))
595 _("%s: gmon.out file is missing call-graph data\n"), whoami
);
599 /* Output whatever user whishes to see. */
600 if (cg
&& (output_style
& STYLE_CALL_GRAPH
) && bsd_style_output
)
602 /* Print the dynamic profile. */
606 if (output_style
& STYLE_FLAT_PROFILE
)
608 /* Print the flat profile. */
612 if (cg
&& (output_style
& STYLE_CALL_GRAPH
))
614 if (!bsd_style_output
)
616 /* Print the dynamic profile. */
622 if (output_style
& STYLE_EXEC_COUNTS
)
623 print_exec_counts ();
625 if (output_style
& STYLE_ANNOTATED_SOURCE
)
626 print_annotated_source ();
628 if (output_style
& STYLE_FUNCTION_ORDER
)
629 cg_print_function_ordering ();
631 if (output_style
& STYLE_FILE_ORDER
)
632 cg_print_file_ordering ();