PR rtl-optimization/88018
[official-gcc.git] / gcc / gcov-dump.c
blob7762e4e819088ffd2950b4e3d0d139d6ec42e591
1 /* Dump a gcov file, for debugging use.
2 Copyright (C) 2002-2018 Free Software Foundation, Inc.
3 Contributed by Nathan Sidwell <nathan@codesourcery.com>
5 Gcov is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3, or (at your option)
8 any later version.
10 Gcov is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with Gcov; see the file COPYING3. If not see
17 <http://www.gnu.org/licenses/>. */
19 #include "config.h"
20 #include "system.h"
21 #include "coretypes.h"
22 #include "tm.h"
23 #include "version.h"
24 #include "intl.h"
25 #include "diagnostic.h"
26 #include <getopt.h>
27 #define IN_GCOV (-1)
28 #include "gcov-io.h"
29 #include "gcov-io.c"
31 static void dump_gcov_file (const char *);
32 static void print_prefix (const char *, unsigned, gcov_position_t);
33 static void print_usage (void);
34 static void print_version (void);
35 static void tag_function (const char *, unsigned, unsigned, unsigned);
36 static void tag_blocks (const char *, unsigned, unsigned, unsigned);
37 static void tag_arcs (const char *, unsigned, unsigned, unsigned);
38 static void tag_lines (const char *, unsigned, unsigned, unsigned);
39 static void tag_counters (const char *, unsigned, unsigned, unsigned);
40 static void tag_summary (const char *, unsigned, unsigned, unsigned);
41 extern int main (int, char **);
43 typedef struct tag_format
45 unsigned tag;
46 char const *name;
47 void (*proc) (const char *, unsigned, unsigned, unsigned);
48 } tag_format_t;
50 static int flag_dump_contents = 0;
51 static int flag_dump_positions = 0;
53 static const struct option options[] =
55 { "help", no_argument, NULL, 'h' },
56 { "version", no_argument, NULL, 'v' },
57 { "long", no_argument, NULL, 'l' },
58 { "positions", no_argument, NULL, 'o' },
59 { 0, 0, 0, 0 }
62 #define VALUE_PADDING_PREFIX " "
63 #define VALUE_PREFIX "%2d: "
65 static const tag_format_t tag_table[] =
67 {0, "NOP", NULL},
68 {0, "UNKNOWN", NULL},
69 {0, "COUNTERS", tag_counters},
70 {GCOV_TAG_FUNCTION, "FUNCTION", tag_function},
71 {GCOV_TAG_BLOCKS, "BLOCKS", tag_blocks},
72 {GCOV_TAG_ARCS, "ARCS", tag_arcs},
73 {GCOV_TAG_LINES, "LINES", tag_lines},
74 {GCOV_TAG_OBJECT_SUMMARY, "OBJECT_SUMMARY", tag_summary},
75 {0, NULL, NULL}
78 int
79 main (int argc ATTRIBUTE_UNUSED, char **argv)
81 int opt;
82 const char *p;
84 p = argv[0] + strlen (argv[0]);
85 while (p != argv[0] && !IS_DIR_SEPARATOR (p[-1]))
86 --p;
87 progname = p;
89 xmalloc_set_program_name (progname);
91 /* Unlock the stdio streams. */
92 unlock_std_streams ();
94 gcc_init_libintl ();
96 diagnostic_initialize (global_dc, 0);
98 while ((opt = getopt_long (argc, argv, "hlpvw", options, NULL)) != -1)
100 switch (opt)
102 case 'h':
103 print_usage ();
104 break;
105 case 'v':
106 print_version ();
107 break;
108 case 'l':
109 flag_dump_contents = 1;
110 break;
111 case 'p':
112 flag_dump_positions = 1;
113 break;
114 default:
115 fprintf (stderr, "unknown flag `%c'\n", opt);
119 while (argv[optind])
120 dump_gcov_file (argv[optind++]);
121 return 0;
124 static void
125 print_usage (void)
127 printf ("Usage: gcov-dump [OPTION] ... gcovfiles\n");
128 printf ("Print coverage file contents\n");
129 printf (" -h, --help Print this help\n");
130 printf (" -l, --long Dump record contents too\n");
131 printf (" -p, --positions Dump record positions\n");
132 printf (" -v, --version Print version number\n");
133 printf ("\nFor bug reporting instructions, please see:\n%s.\n",
134 bug_report_url);
137 static void
138 print_version (void)
140 printf ("gcov-dump %s%s\n", pkgversion_string, version_string);
141 printf ("Copyright (C) 2018 Free Software Foundation, Inc.\n");
142 printf ("This is free software; see the source for copying conditions.\n"
143 "There is NO warranty; not even for MERCHANTABILITY or \n"
144 "FITNESS FOR A PARTICULAR PURPOSE.\n\n");
147 static void
148 print_prefix (const char *filename, unsigned depth, gcov_position_t position)
150 static const char prefix[] = " ";
152 printf ("%s:", filename);
153 if (flag_dump_positions)
154 printf ("%5lu:", (unsigned long) position);
155 printf ("%.*s", (int) 2 * depth, prefix);
158 static void
159 dump_gcov_file (const char *filename)
161 unsigned tags[4];
162 unsigned depth = 0;
163 bool is_data_type;
165 if (!gcov_open (filename, 1))
167 fprintf (stderr, "%s:cannot open\n", filename);
168 return;
171 /* magic */
173 unsigned magic = gcov_read_unsigned ();
174 unsigned version;
175 int endianness = 0;
176 char m[4], v[4];
178 if ((endianness = gcov_magic (magic, GCOV_DATA_MAGIC)))
179 is_data_type = true;
180 else if ((endianness = gcov_magic (magic, GCOV_NOTE_MAGIC)))
181 is_data_type = false;
182 else
184 printf ("%s:not a gcov file\n", filename);
185 gcov_close ();
186 return;
188 version = gcov_read_unsigned ();
189 GCOV_UNSIGNED2STRING (v, version);
190 GCOV_UNSIGNED2STRING (m, magic);
192 printf ("%s:%s:magic `%.4s':version `%.4s'%s\n", filename,
193 is_data_type ? "data" : "note",
194 m, v, endianness < 0 ? " (swapped endianness)" : "");
195 if (version != GCOV_VERSION)
197 char e[4];
199 GCOV_UNSIGNED2STRING (e, GCOV_VERSION);
200 printf ("%s:warning:current version is `%.4s'\n", filename, e);
204 /* stamp */
206 unsigned stamp = gcov_read_unsigned ();
208 printf ("%s:stamp %lu\n", filename, (unsigned long)stamp);
211 if (!is_data_type)
213 printf ("%s:cwd: %s\n", filename, gcov_read_string ());
215 /* Support for unexecuted basic blocks. */
216 unsigned support_unexecuted_blocks = gcov_read_unsigned ();
217 if (!support_unexecuted_blocks)
218 printf ("%s: has_unexecuted_block is not supported\n", filename);
221 while (1)
223 gcov_position_t base, position = gcov_position ();
224 unsigned tag, length;
225 tag_format_t const *format;
226 unsigned tag_depth;
227 int error;
228 unsigned mask;
230 tag = gcov_read_unsigned ();
231 if (!tag)
232 break;
233 length = gcov_read_unsigned ();
234 base = gcov_position ();
235 mask = GCOV_TAG_MASK (tag) >> 1;
236 for (tag_depth = 4; mask; mask >>= 8)
238 if ((mask & 0xff) != 0xff)
240 printf ("%s:tag `%08x' is invalid\n", filename, tag);
241 break;
243 tag_depth--;
245 for (format = tag_table; format->name; format++)
246 if (format->tag == tag)
247 goto found;
248 format = &tag_table[GCOV_TAG_IS_COUNTER (tag) ? 2 : 1];
249 found:;
250 if (tag)
252 if (depth && depth < tag_depth)
254 if (!GCOV_TAG_IS_SUBTAG (tags[depth - 1], tag))
255 printf ("%s:tag `%08x' is incorrectly nested\n",
256 filename, tag);
258 depth = tag_depth;
259 tags[depth - 1] = tag;
262 print_prefix (filename, tag_depth, position);
263 printf ("%08x:%4u:%s", tag, length, format->name);
264 if (format->proc)
265 (*format->proc) (filename, tag, length, depth);
267 printf ("\n");
268 if (flag_dump_contents && format->proc)
270 unsigned long actual_length = gcov_position () - base;
272 if (actual_length > length)
273 printf ("%s:record size mismatch %lu bytes overread\n",
274 filename, actual_length - length);
275 else if (length > actual_length)
276 printf ("%s:record size mismatch %lu bytes unread\n",
277 filename, length - actual_length);
279 gcov_sync (base, length);
280 if ((error = gcov_is_error ()))
282 printf (error < 0 ? "%s:counter overflow at %lu\n" :
283 "%s:read error at %lu\n", filename,
284 (long unsigned) gcov_position ());
285 break;
288 gcov_close ();
291 static void
292 tag_function (const char *filename ATTRIBUTE_UNUSED,
293 unsigned tag ATTRIBUTE_UNUSED, unsigned length,
294 unsigned depth ATTRIBUTE_UNUSED)
296 unsigned long pos = gcov_position ();
298 if (!length)
299 printf (" placeholder");
300 else
302 printf (" ident=%u", gcov_read_unsigned ());
303 printf (", lineno_checksum=0x%08x", gcov_read_unsigned ());
304 printf (", cfg_checksum=0x%08x", gcov_read_unsigned ());
306 if (gcov_position () - pos < length)
308 const char *name;
310 name = gcov_read_string ();
311 printf (", `%s'", name ? name : "NULL");
312 unsigned artificial = gcov_read_unsigned ();
313 name = gcov_read_string ();
314 printf (" %s", name ? name : "NULL");
315 unsigned line_start = gcov_read_unsigned ();
316 unsigned column_start = gcov_read_unsigned ();
317 unsigned line_end = gcov_read_unsigned ();
318 printf (":%u:%u:%u", line_start, column_start, line_end);
319 if (artificial)
320 printf (", artificial");
325 static void
326 tag_blocks (const char *filename ATTRIBUTE_UNUSED,
327 unsigned tag ATTRIBUTE_UNUSED, unsigned length ATTRIBUTE_UNUSED,
328 unsigned depth ATTRIBUTE_UNUSED)
330 printf (" %u blocks", gcov_read_unsigned ());
333 static void
334 tag_arcs (const char *filename ATTRIBUTE_UNUSED,
335 unsigned tag ATTRIBUTE_UNUSED, unsigned length ATTRIBUTE_UNUSED,
336 unsigned depth)
338 unsigned n_arcs = GCOV_TAG_ARCS_NUM (length);
340 printf (" %u arcs", n_arcs);
341 if (flag_dump_contents)
343 unsigned ix;
344 unsigned blockno = gcov_read_unsigned ();
346 for (ix = 0; ix != n_arcs; ix++)
348 unsigned dst, flags;
350 if (!(ix & 3))
352 printf ("\n");
353 print_prefix (filename, depth, gcov_position ());
354 printf (VALUE_PADDING_PREFIX "block %u:", blockno);
356 dst = gcov_read_unsigned ();
357 flags = gcov_read_unsigned ();
358 printf (" %u:%04x", dst, flags);
359 if (flags)
361 char c = '(';
363 if (flags & GCOV_ARC_ON_TREE)
364 printf ("%ctree", c), c = ',';
365 if (flags & GCOV_ARC_FAKE)
366 printf ("%cfake", c), c = ',';
367 if (flags & GCOV_ARC_FALLTHROUGH)
368 printf ("%cfall", c), c = ',';
369 printf (")");
375 static void
376 tag_lines (const char *filename ATTRIBUTE_UNUSED,
377 unsigned tag ATTRIBUTE_UNUSED, unsigned length ATTRIBUTE_UNUSED,
378 unsigned depth)
380 if (flag_dump_contents)
382 unsigned blockno = gcov_read_unsigned ();
383 char const *sep = NULL;
385 while (1)
387 gcov_position_t position = gcov_position ();
388 const char *source = NULL;
389 unsigned lineno = gcov_read_unsigned ();
391 if (!lineno)
393 source = gcov_read_string ();
394 if (!source)
395 break;
396 sep = NULL;
399 if (!sep)
401 printf ("\n");
402 print_prefix (filename, depth, position);
403 printf (VALUE_PADDING_PREFIX "block %u:", blockno);
404 sep = "";
406 if (lineno)
408 printf ("%s%u", sep, lineno);
409 sep = ", ";
411 else
413 printf ("%s`%s'", sep, source);
414 sep = ":";
420 static void
421 tag_counters (const char *filename ATTRIBUTE_UNUSED,
422 unsigned tag ATTRIBUTE_UNUSED, unsigned length ATTRIBUTE_UNUSED,
423 unsigned depth)
425 #define DEF_GCOV_COUNTER(COUNTER, NAME, MERGE_FN) NAME,
426 static const char *const counter_names[] = {
427 #include "gcov-counter.def"
429 #undef DEF_GCOV_COUNTER
430 unsigned n_counts = GCOV_TAG_COUNTER_NUM (length);
432 printf (" %s %u counts",
433 counter_names[GCOV_COUNTER_FOR_TAG (tag)], n_counts);
434 if (flag_dump_contents)
436 unsigned ix;
438 for (ix = 0; ix != n_counts; ix++)
440 gcov_type count;
442 if (!(ix & 7))
444 printf ("\n");
445 print_prefix (filename, depth, gcov_position ());
446 printf (VALUE_PADDING_PREFIX VALUE_PREFIX, ix);
449 count = gcov_read_counter ();
450 printf ("%" PRId64 " ", count);
455 static void
456 tag_summary (const char *filename ATTRIBUTE_UNUSED,
457 unsigned tag ATTRIBUTE_UNUSED, unsigned length ATTRIBUTE_UNUSED,
458 unsigned depth ATTRIBUTE_UNUSED)
460 gcov_summary summary;
461 gcov_read_summary (&summary);
462 printf (" runs=%d, sum_max=%" PRId64,
463 summary.runs, summary.sum_max);