1 /* Dump a gcov file, for debugging use.
2 Copyright (C) 2002-2013 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)
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/>. */
21 #include "coretypes.h"
25 #include "diagnostic.h"
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);
36 static void tag_blocks (const char *, unsigned, unsigned);
37 static void tag_arcs (const char *, unsigned, unsigned);
38 static void tag_lines (const char *, unsigned, unsigned);
39 static void tag_counters (const char *, unsigned, unsigned);
40 static void tag_summary (const char *, unsigned, unsigned);
41 static void dump_working_sets (const char *filename ATTRIBUTE_UNUSED
,
42 const struct gcov_ctr_summary
*summary
);
43 extern int main (int, char **);
45 typedef struct tag_format
49 void (*proc
) (const char *, unsigned, unsigned);
52 static int flag_dump_contents
= 0;
53 static int flag_dump_positions
= 0;
54 static int flag_dump_working_sets
= 0;
56 static const struct option options
[] =
58 { "help", no_argument
, NULL
, 'h' },
59 { "version", no_argument
, NULL
, 'v' },
60 { "long", no_argument
, NULL
, 'l' },
61 { "positions", no_argument
, NULL
, 'o' },
62 { "working-sets", no_argument
, NULL
, 'w' },
66 static const tag_format_t tag_table
[] =
70 {0, "COUNTERS", tag_counters
},
71 {GCOV_TAG_FUNCTION
, "FUNCTION", tag_function
},
72 {GCOV_TAG_BLOCKS
, "BLOCKS", tag_blocks
},
73 {GCOV_TAG_ARCS
, "ARCS", tag_arcs
},
74 {GCOV_TAG_LINES
, "LINES", tag_lines
},
75 {GCOV_TAG_OBJECT_SUMMARY
, "OBJECT_SUMMARY", tag_summary
},
76 {GCOV_TAG_PROGRAM_SUMMARY
, "PROGRAM_SUMMARY", tag_summary
},
81 main (int argc ATTRIBUTE_UNUSED
, char **argv
)
86 p
= argv
[0] + strlen (argv
[0]);
87 while (p
!= argv
[0] && !IS_DIR_SEPARATOR (p
[-1]))
91 xmalloc_set_program_name (progname
);
93 /* Unlock the stdio streams. */
94 unlock_std_streams ();
98 diagnostic_initialize (global_dc
, 0);
100 while ((opt
= getopt_long (argc
, argv
, "hlpvw", options
, NULL
)) != -1)
111 flag_dump_contents
= 1;
114 flag_dump_positions
= 1;
117 flag_dump_working_sets
= 1;
120 fprintf (stderr
, "unknown flag `%c'\n", opt
);
125 dump_gcov_file (argv
[optind
++]);
132 printf ("Usage: gcov-dump [OPTION] ... gcovfiles\n");
133 printf ("Print coverage file contents\n");
134 printf (" -h, --help Print this help\n");
135 printf (" -v, --version Print version number\n");
136 printf (" -l, --long Dump record contents too\n");
137 printf (" -p, --positions Dump record positions\n");
138 printf (" -w, --working-sets Dump working set computed from summary\n");
144 printf ("gcov-dump %s%s\n", pkgversion_string
, version_string
);
145 printf ("Copyright (C) 2013 Free Software Foundation, Inc.\n");
146 printf ("This is free software; see the source for copying conditions.\n"
147 "There is NO warranty; not even for MERCHANTABILITY or \n"
148 "FITNESS FOR A PARTICULAR PURPOSE.\n\n");
152 print_prefix (const char *filename
, unsigned depth
, gcov_position_t position
)
154 static const char prefix
[] = " ";
156 printf ("%s:", filename
);
157 if (flag_dump_positions
)
158 printf ("%lu:", (unsigned long) position
);
159 printf ("%.*s", (int) depth
, prefix
);
163 dump_gcov_file (const char *filename
)
168 if (!gcov_open (filename
, 1))
170 fprintf (stderr
, "%s:cannot open\n", filename
);
176 unsigned magic
= gcov_read_unsigned ();
178 const char *type
= NULL
;
182 if ((endianness
= gcov_magic (magic
, GCOV_DATA_MAGIC
)))
184 else if ((endianness
= gcov_magic (magic
, GCOV_NOTE_MAGIC
)))
188 printf ("%s:not a gcov file\n", filename
);
192 version
= gcov_read_unsigned ();
193 GCOV_UNSIGNED2STRING (v
, version
);
194 GCOV_UNSIGNED2STRING (m
, magic
);
196 printf ("%s:%s:magic `%.4s':version `%.4s'%s\n", filename
, type
,
197 m
, v
, endianness
< 0 ? " (swapped endianness)" : "");
198 if (version
!= GCOV_VERSION
)
202 GCOV_UNSIGNED2STRING (e
, GCOV_VERSION
);
203 printf ("%s:warning:current version is `%.4s'\n", filename
, e
);
209 unsigned stamp
= gcov_read_unsigned ();
211 printf ("%s:stamp %lu\n", filename
, (unsigned long)stamp
);
216 gcov_position_t base
, position
= gcov_position ();
217 unsigned tag
, length
;
218 tag_format_t
const *format
;
223 tag
= gcov_read_unsigned ();
226 length
= gcov_read_unsigned ();
227 base
= gcov_position ();
228 mask
= GCOV_TAG_MASK (tag
) >> 1;
229 for (tag_depth
= 4; mask
; mask
>>= 8)
231 if ((mask
& 0xff) != 0xff)
233 printf ("%s:tag `%08x' is invalid\n", filename
, tag
);
238 for (format
= tag_table
; format
->name
; format
++)
239 if (format
->tag
== tag
)
241 format
= &tag_table
[GCOV_TAG_IS_COUNTER (tag
) ? 2 : 1];
245 if (depth
&& depth
< tag_depth
)
247 if (!GCOV_TAG_IS_SUBTAG (tags
[depth
- 1], tag
))
248 printf ("%s:tag `%08x' is incorrectly nested\n",
252 tags
[depth
- 1] = tag
;
255 print_prefix (filename
, tag_depth
, position
);
256 printf ("%08x:%4u:%s", tag
, length
, format
->name
);
258 (*format
->proc
) (filename
, tag
, length
);
261 if (flag_dump_contents
&& format
->proc
)
263 unsigned long actual_length
= gcov_position () - base
;
265 if (actual_length
> length
)
266 printf ("%s:record size mismatch %lu bytes overread\n",
267 filename
, actual_length
- length
);
268 else if (length
> actual_length
)
269 printf ("%s:record size mismatch %lu bytes unread\n",
270 filename
, length
- actual_length
);
272 gcov_sync (base
, length
);
273 if ((error
= gcov_is_error ()))
275 printf (error
< 0 ? "%s:counter overflow at %lu\n" :
276 "%s:read error at %lu\n", filename
,
277 (long unsigned) gcov_position ());
285 tag_function (const char *filename ATTRIBUTE_UNUSED
,
286 unsigned tag ATTRIBUTE_UNUSED
, unsigned length
)
288 unsigned long pos
= gcov_position ();
291 printf (" placeholder");
294 printf (" ident=%u", gcov_read_unsigned ());
295 printf (", lineno_checksum=0x%08x", gcov_read_unsigned ());
296 printf (", cfg_checksum=0x%08x", gcov_read_unsigned ());
298 if (gcov_position () - pos
< length
)
302 name
= gcov_read_string ();
303 printf (", `%s'", name
? name
: "NULL");
304 name
= gcov_read_string ();
305 printf (" %s", name
? name
: "NULL");
306 printf (":%u", gcov_read_unsigned ());
312 tag_blocks (const char *filename ATTRIBUTE_UNUSED
,
313 unsigned tag ATTRIBUTE_UNUSED
, unsigned length ATTRIBUTE_UNUSED
)
315 unsigned n_blocks
= GCOV_TAG_BLOCKS_NUM (length
);
317 printf (" %u blocks", n_blocks
);
319 if (flag_dump_contents
)
323 for (ix
= 0; ix
!= n_blocks
; ix
++)
328 print_prefix (filename
, 0, gcov_position ());
329 printf ("\t\t%u", ix
);
331 printf (" %04x", gcov_read_unsigned ());
337 tag_arcs (const char *filename ATTRIBUTE_UNUSED
,
338 unsigned tag ATTRIBUTE_UNUSED
, unsigned length ATTRIBUTE_UNUSED
)
340 unsigned n_arcs
= GCOV_TAG_ARCS_NUM (length
);
342 printf (" %u arcs", n_arcs
);
343 if (flag_dump_contents
)
346 unsigned blockno
= gcov_read_unsigned ();
348 for (ix
= 0; ix
!= n_arcs
; ix
++)
355 print_prefix (filename
, 0, gcov_position ());
356 printf ("\tblock %u:", blockno
);
358 dst
= gcov_read_unsigned ();
359 flags
= gcov_read_unsigned ();
360 printf (" %u:%04x", dst
, flags
);
365 if (flags
& GCOV_ARC_ON_TREE
)
366 printf ("%ctree", c
), c
= ',';
367 if (flags
& GCOV_ARC_FAKE
)
368 printf ("%cfake", c
), c
= ',';
369 if (flags
& GCOV_ARC_FALLTHROUGH
)
370 printf ("%cfall", c
), c
= ',';
378 tag_lines (const char *filename ATTRIBUTE_UNUSED
,
379 unsigned tag ATTRIBUTE_UNUSED
, unsigned length ATTRIBUTE_UNUSED
)
381 if (flag_dump_contents
)
383 unsigned blockno
= gcov_read_unsigned ();
384 char const *sep
= NULL
;
388 gcov_position_t position
= gcov_position ();
389 const char *source
= NULL
;
390 unsigned lineno
= gcov_read_unsigned ();
394 source
= gcov_read_string ();
403 print_prefix (filename
, 0, position
);
404 printf ("\tblock %u:", blockno
);
409 printf ("%s%u", sep
, lineno
);
414 printf ("%s`%s'", sep
, source
);
422 tag_counters (const char *filename ATTRIBUTE_UNUSED
,
423 unsigned tag ATTRIBUTE_UNUSED
, unsigned length ATTRIBUTE_UNUSED
)
425 static const char *const counter_names
[] = GCOV_COUNTER_NAMES
;
426 unsigned n_counts
= GCOV_TAG_COUNTER_NUM (length
);
428 printf (" %s %u counts",
429 counter_names
[GCOV_COUNTER_FOR_TAG (tag
)], n_counts
);
430 if (flag_dump_contents
)
434 for (ix
= 0; ix
!= n_counts
; ix
++)
441 print_prefix (filename
, 0, gcov_position ());
442 printf ("\t\t%u", ix
);
445 count
= gcov_read_counter ();
447 printf (HOST_WIDEST_INT_PRINT_DEC
, count
);
453 tag_summary (const char *filename ATTRIBUTE_UNUSED
,
454 unsigned tag ATTRIBUTE_UNUSED
, unsigned length ATTRIBUTE_UNUSED
)
456 struct gcov_summary summary
;
458 gcov_bucket_type
*histo_bucket
;
460 gcov_read_summary (&summary
);
461 printf (" checksum=0x%08x", summary
.checksum
);
463 for (ix
= 0; ix
!= GCOV_COUNTERS_SUMMABLE
; ix
++)
466 print_prefix (filename
, 0, 0);
467 printf ("\t\tcounts=%u, runs=%u",
468 summary
.ctrs
[ix
].num
, summary
.ctrs
[ix
].runs
);
470 printf (", sum_all=" HOST_WIDEST_INT_PRINT_DEC
,
471 (HOST_WIDEST_INT
)summary
.ctrs
[ix
].sum_all
);
472 printf (", run_max=" HOST_WIDEST_INT_PRINT_DEC
,
473 (HOST_WIDEST_INT
)summary
.ctrs
[ix
].run_max
);
474 printf (", sum_max=" HOST_WIDEST_INT_PRINT_DEC
,
475 (HOST_WIDEST_INT
)summary
.ctrs
[ix
].sum_max
);
476 if (ix
!= GCOV_COUNTER_ARCS
)
479 print_prefix (filename
, 0, 0);
480 printf ("\t\tcounter histogram:");
481 for (h_ix
= 0; h_ix
< GCOV_HISTOGRAM_SIZE
; h_ix
++)
483 histo_bucket
= &summary
.ctrs
[ix
].histogram
[h_ix
];
484 if (!histo_bucket
->num_counters
)
487 print_prefix (filename
, 0, 0);
488 printf ("\t\t%d: num counts=%u, min counter="
489 HOST_WIDEST_INT_PRINT_DEC
", cum_counter="
490 HOST_WIDEST_INT_PRINT_DEC
,
491 h_ix
, histo_bucket
->num_counters
,
492 (HOST_WIDEST_INT
)histo_bucket
->min_value
,
493 (HOST_WIDEST_INT
)histo_bucket
->cum_value
);
495 if (flag_dump_working_sets
)
496 dump_working_sets (filename
, &summary
.ctrs
[ix
]);
501 dump_working_sets (const char *filename ATTRIBUTE_UNUSED
,
502 const struct gcov_ctr_summary
*summary
)
504 gcov_working_set_t gcov_working_sets
[NUM_GCOV_WORKING_SETS
];
505 unsigned ws_ix
, pctinc
, pct
;
506 gcov_working_set_t
*ws_info
;
508 compute_working_sets (summary
, gcov_working_sets
);
511 print_prefix (filename
, 0, 0);
512 printf ("\t\tcounter working sets:");
513 /* Multiply the percentage by 100 to avoid float. */
514 pctinc
= 100 * 100 / NUM_GCOV_WORKING_SETS
;
515 for (ws_ix
= 0, pct
= pctinc
; ws_ix
< NUM_GCOV_WORKING_SETS
;
516 ws_ix
++, pct
+= pctinc
)
518 if (ws_ix
== NUM_GCOV_WORKING_SETS
- 1)
520 ws_info
= &gcov_working_sets
[ws_ix
];
521 /* Print out the percentage using int arithmatic to avoid float. */
523 print_prefix (filename
, 0, 0);
524 printf ("\t\t%u.%02u%%: num counts=%u, min counter="
525 HOST_WIDEST_INT_PRINT_DEC
,
526 pct
/ 100, pct
- (pct
/ 100 * 100),
527 ws_info
->num_counters
,
528 (HOST_WIDEST_INT
)ws_info
->min_counter
);