Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / gcc / gcov-dump.c
blob859fdb7331048f957b313c29bfa8aff41c736a41
1 /* Dump a gcov file, for debugging use.
2 Copyright (C) 2002, 2003, 2004 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 2, 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 COPYING. If not, write to
17 the Free Software Foundation, 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "version.h"
25 #include <getopt.h>
26 #define IN_GCOV (-1)
27 #include "gcov-io.h"
28 #include "gcov-io.c"
30 static void dump_file (const char *);
31 static void print_prefix (const char *, unsigned, gcov_position_t);
32 static void print_usage (void);
33 static void print_version (void);
34 static void tag_function (const char *, unsigned, unsigned);
35 static void tag_blocks (const char *, unsigned, unsigned);
36 static void tag_arcs (const char *, unsigned, unsigned);
37 static void tag_lines (const char *, unsigned, unsigned);
38 static void tag_counters (const char *, unsigned, unsigned);
39 static void tag_summary (const char *, unsigned, unsigned);
40 extern int main (int, char **);
42 typedef struct tag_format
44 unsigned tag;
45 char const *name;
46 void (*proc) (const char *, unsigned, unsigned);
47 } tag_format_t;
49 static int flag_dump_contents = 0;
50 static int flag_dump_positions = 0;
52 static const struct option options[] =
54 { "help", no_argument, NULL, 'h' },
55 { "version", no_argument, NULL, 'v' },
56 { "long", no_argument, NULL, 'l' },
57 { "positions", no_argument, NULL, 'o' },
58 { 0, 0, 0, 0 }
61 static const tag_format_t tag_table[] =
63 {0, "NOP", NULL},
64 {0, "UNKNOWN", NULL},
65 {0, "COUNTERS", tag_counters},
66 {GCOV_TAG_FUNCTION, "FUNCTION", tag_function},
67 {GCOV_TAG_BLOCKS, "BLOCKS", tag_blocks},
68 {GCOV_TAG_ARCS, "ARCS", tag_arcs},
69 {GCOV_TAG_LINES, "LINES", tag_lines},
70 {GCOV_TAG_OBJECT_SUMMARY, "OBJECT_SUMMARY", tag_summary},
71 {GCOV_TAG_PROGRAM_SUMMARY, "PROGRAM_SUMMARY", tag_summary},
72 {0, NULL, NULL}
75 int
76 main (int argc ATTRIBUTE_UNUSED, char **argv)
78 int opt;
80 while ((opt = getopt_long (argc, argv, "hlpv", options, NULL)) != -1)
82 switch (opt)
84 case 'h':
85 print_usage ();
86 break;
87 case 'v':
88 print_version ();
89 break;
90 case 'l':
91 flag_dump_contents = 1;
92 break;
93 case 'p':
94 flag_dump_positions = 1;
95 break;
96 default:
97 fprintf (stderr, "unknown flag `%c'\n", opt);
101 while (argv[optind])
102 dump_file (argv[optind++]);
103 return 0;
106 static void
107 print_usage (void)
109 printf ("Usage: gcov-dump [OPTION] ... gcovfiles\n");
110 printf ("Print coverage file contents\n");
111 printf (" -h, --help Print this help\n");
112 printf (" -v, --version Print version number\n");
113 printf (" -l, --long Dump record contents too\n");
114 printf (" -p, --positions Dump record positions\n");
117 static void
118 print_version (void)
120 printf ("gcov-dump (GCC) %s\n", version_string);
121 printf ("Copyright (C) 2003 Free Software Foundation, Inc.\n");
122 printf ("This is free software; see the source for copying conditions.\n"
123 "There is NO warranty; not even for MERCHANTABILITY or \n"
124 "FITNESS FOR A PARTICULAR PURPOSE.\n\n");
127 static void
128 print_prefix (const char *filename, unsigned depth, gcov_position_t position)
130 static const char prefix[] = " ";
132 printf ("%s:", filename);
133 if (flag_dump_positions)
134 printf ("%lu:", (unsigned long) position);
135 printf ("%.*s", (int) depth, prefix);
138 static void
139 dump_file (const char *filename)
141 unsigned tags[4];
142 unsigned depth = 0;
144 if (!gcov_open (filename, 1))
146 fprintf (stderr, "%s:cannot open\n", filename);
147 return;
150 /* magic */
152 unsigned magic = gcov_read_unsigned ();
153 unsigned version;
154 const char *type = NULL;
155 int endianness = 0;
156 char m[4], v[4];
158 if ((endianness = gcov_magic (magic, GCOV_DATA_MAGIC)))
159 type = "data";
160 else if ((endianness = gcov_magic (magic, GCOV_NOTE_MAGIC)))
161 type = "note";
162 else
164 printf ("%s:not a gcov file\n", filename);
165 gcov_close ();
166 return;
168 version = gcov_read_unsigned ();
169 GCOV_UNSIGNED2STRING (v, version);
170 GCOV_UNSIGNED2STRING (m, magic);
172 printf ("%s:%s:magic `%.4s':version `%.4s'%s\n", filename, type,
173 m, v, endianness < 0 ? " (swapped endianness)" : "");
174 if (version != GCOV_VERSION)
176 char e[4];
178 GCOV_UNSIGNED2STRING (e, GCOV_VERSION);
179 printf ("%s:warning:current version is `%.4s'\n", filename, e);
183 /* stamp */
185 unsigned stamp = gcov_read_unsigned ();
187 printf ("%s:stamp %lu\n", filename, (unsigned long)stamp);
190 while (1)
192 gcov_position_t base, position = gcov_position ();
193 unsigned tag, length;
194 tag_format_t const *format;
195 unsigned tag_depth;
196 int error;
197 unsigned mask;
199 tag = gcov_read_unsigned ();
200 if (!tag)
201 break;
202 length = gcov_read_unsigned ();
203 base = gcov_position ();
204 mask = GCOV_TAG_MASK (tag) >> 1;
205 for (tag_depth = 4; mask; mask >>= 8)
207 if ((mask & 0xff) != 0xff)
209 printf ("%s:tag `%08x' is invalid\n", filename, tag);
210 break;
212 tag_depth--;
214 for (format = tag_table; format->name; format++)
215 if (format->tag == tag)
216 goto found;
217 format = &tag_table[GCOV_TAG_IS_COUNTER (tag) ? 2 : 1];
218 found:;
219 if (tag)
221 if (depth && depth < tag_depth)
223 if (!GCOV_TAG_IS_SUBTAG (tags[depth - 1], tag))
224 printf ("%s:tag `%08x' is incorrectly nested\n",
225 filename, tag);
227 depth = tag_depth;
228 tags[depth - 1] = tag;
231 print_prefix (filename, tag_depth, position);
232 printf ("%08x:%4u:%s", tag, length, format->name);
233 if (format->proc)
234 (*format->proc) (filename, tag, length);
236 printf ("\n");
237 if (flag_dump_contents && format->proc)
239 unsigned long actual_length = gcov_position () - base;
241 if (actual_length > length)
242 printf ("%s:record size mismatch %lu bytes overread\n",
243 filename, actual_length - length);
244 else if (length > actual_length)
245 printf ("%s:record size mismatch %lu bytes unread\n",
246 filename, length - actual_length);
248 gcov_sync (base, length);
249 if ((error = gcov_is_error ()))
251 printf (error < 0 ? "%s:counter overflow at %lu\n" :
252 "%s:read error at %lu\n", filename,
253 (long unsigned) gcov_position ());
254 break;
257 gcov_close ();
260 static void
261 tag_function (const char *filename ATTRIBUTE_UNUSED,
262 unsigned tag ATTRIBUTE_UNUSED, unsigned length ATTRIBUTE_UNUSED)
264 unsigned long pos = gcov_position ();
266 printf (" ident=%u", gcov_read_unsigned ());
267 printf (", checksum=0x%08x", gcov_read_unsigned ());
269 if (gcov_position () - pos < length)
271 const char *name;
273 name = gcov_read_string ();
274 printf (", `%s'", name ? name : "NULL");
275 name = gcov_read_string ();
276 printf (" %s", name ? name : "NULL");
277 printf (":%u", gcov_read_unsigned ());
281 static void
282 tag_blocks (const char *filename ATTRIBUTE_UNUSED,
283 unsigned tag ATTRIBUTE_UNUSED, unsigned length ATTRIBUTE_UNUSED)
285 unsigned n_blocks = GCOV_TAG_BLOCKS_NUM (length);
287 printf (" %u blocks", n_blocks);
289 if (flag_dump_contents)
291 unsigned ix;
293 for (ix = 0; ix != n_blocks; ix++)
295 if (!(ix & 7))
297 printf ("\n");
298 print_prefix (filename, 0, gcov_position ());
299 printf ("\t\t%u", ix);
301 printf (" %04x", gcov_read_unsigned ());
306 static void
307 tag_arcs (const char *filename ATTRIBUTE_UNUSED,
308 unsigned tag ATTRIBUTE_UNUSED, unsigned length ATTRIBUTE_UNUSED)
310 unsigned n_arcs = GCOV_TAG_ARCS_NUM (length);
312 printf (" %u arcs", n_arcs);
313 if (flag_dump_contents)
315 unsigned ix;
316 unsigned blockno = gcov_read_unsigned ();
318 for (ix = 0; ix != n_arcs; ix++)
320 unsigned dst, flags;
322 if (!(ix & 3))
324 printf ("\n");
325 print_prefix (filename, 0, gcov_position ());
326 printf ("\tblock %u:", blockno);
328 dst = gcov_read_unsigned ();
329 flags = gcov_read_unsigned ();
330 printf (" %u:%04x", dst, flags);
335 static void
336 tag_lines (const char *filename ATTRIBUTE_UNUSED,
337 unsigned tag ATTRIBUTE_UNUSED, unsigned length ATTRIBUTE_UNUSED)
339 if (flag_dump_contents)
341 unsigned blockno = gcov_read_unsigned ();
342 char const *sep = NULL;
344 while (1)
346 gcov_position_t position = gcov_position ();
347 const char *source = NULL;
348 unsigned lineno = gcov_read_unsigned ();
350 if (!lineno)
352 source = gcov_read_string ();
353 if (!source)
354 break;
355 sep = NULL;
358 if (!sep)
360 printf ("\n");
361 print_prefix (filename, 0, position);
362 printf ("\tblock %u:", blockno);
363 sep = "";
365 if (lineno)
367 printf ("%s%u", sep, lineno);
368 sep = ", ";
370 else
372 printf ("%s`%s'", sep, source);
373 sep = ":";
379 static void
380 tag_counters (const char *filename ATTRIBUTE_UNUSED,
381 unsigned tag ATTRIBUTE_UNUSED, unsigned length ATTRIBUTE_UNUSED)
383 static const char *const counter_names[] = GCOV_COUNTER_NAMES;
384 unsigned n_counts = GCOV_TAG_COUNTER_NUM (length);
386 printf (" %s %u counts",
387 counter_names[GCOV_COUNTER_FOR_TAG (tag)], n_counts);
388 if (flag_dump_contents)
390 unsigned ix;
392 for (ix = 0; ix != n_counts; ix++)
394 gcov_type count;
396 if (!(ix & 7))
398 printf ("\n");
399 print_prefix (filename, 0, gcov_position ());
400 printf ("\t\t%u", ix);
403 count = gcov_read_counter ();
404 printf (" ");
405 printf (HOST_WIDEST_INT_PRINT_DEC, count);
410 static void
411 tag_summary (const char *filename ATTRIBUTE_UNUSED,
412 unsigned tag ATTRIBUTE_UNUSED, unsigned length ATTRIBUTE_UNUSED)
414 struct gcov_summary summary;
415 unsigned ix;
417 gcov_read_summary (&summary);
418 printf (" checksum=0x%08x", summary.checksum);
420 for (ix = 0; ix != GCOV_COUNTERS; ix++)
422 printf ("\n");
423 print_prefix (filename, 0, 0);
424 printf ("\t\tcounts=%u, runs=%u",
425 summary.ctrs[ix].num, summary.ctrs[ix].runs);
427 printf (", sum_all=" HOST_WIDEST_INT_PRINT_DEC,
428 (HOST_WIDEST_INT)summary.ctrs[ix].sum_all);
429 printf (", run_max=" HOST_WIDEST_INT_PRINT_DEC,
430 (HOST_WIDEST_INT)summary.ctrs[ix].run_max);
431 printf (", sum_max=" HOST_WIDEST_INT_PRINT_DEC,
432 (HOST_WIDEST_INT)summary.ctrs[ix].sum_max);