[RS6000] dg-do !compile and scan-assembler
[official-gcc.git] / gcc / gcov.c
blob36938bd0fcea12d87de5d315b3bc19fa6ef4cf6f
1 /* Gcov.c: prepend line execution counts and branch probabilities to a
2 source file.
3 Copyright (C) 1990-2020 Free Software Foundation, Inc.
4 Contributed by James E. Wilson of Cygnus Support.
5 Mangled by Bob Manson of Cygnus Support.
6 Mangled further by Nathan Sidwell <nathan@codesourcery.com>
8 Gcov is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 Gcov is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with Gcov; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* ??? Print a list of the ten blocks with the highest execution counts,
23 and list the line numbers corresponding to those blocks. Also, perhaps
24 list the line numbers with the highest execution counts, only printing
25 the first if there are several which are all listed in the same block. */
27 /* ??? Should have an option to print the number of basic blocks, and the
28 percent of them that are covered. */
30 /* Need an option to show individual block counts, and show
31 probabilities of fall through arcs. */
33 #include "config.h"
34 #define INCLUDE_ALGORITHM
35 #define INCLUDE_VECTOR
36 #define INCLUDE_STRING
37 #define INCLUDE_MAP
38 #define INCLUDE_SET
39 #include "system.h"
40 #include "coretypes.h"
41 #include "tm.h"
42 #include "intl.h"
43 #include "diagnostic.h"
44 #include "version.h"
45 #include "demangle.h"
46 #include "color-macros.h"
47 #include "pretty-print.h"
48 #include "json.h"
50 #include <zlib.h>
51 #include <getopt.h>
53 #include "md5.h"
55 using namespace std;
57 #define IN_GCOV 1
58 #include "gcov-io.h"
59 #include "gcov-io.c"
61 /* The gcno file is generated by -ftest-coverage option. The gcda file is
62 generated by a program compiled with -fprofile-arcs. Their formats
63 are documented in gcov-io.h. */
65 /* The functions in this file for creating and solution program flow graphs
66 are very similar to functions in the gcc source file profile.c. In
67 some places we make use of the knowledge of how profile.c works to
68 select particular algorithms here. */
70 /* The code validates that the profile information read in corresponds
71 to the code currently being compiled. Rather than checking for
72 identical files, the code below compares a checksum on the CFG
73 (based on the order of basic blocks and the arcs in the CFG). If
74 the CFG checksum in the gcda file match the CFG checksum in the
75 gcno file, the profile data will be used. */
77 /* This is the size of the buffer used to read in source file lines. */
79 class function_info;
80 class block_info;
81 class source_info;
83 /* Describes an arc between two basic blocks. */
85 struct arc_info
87 /* source and destination blocks. */
88 class block_info *src;
89 class block_info *dst;
91 /* transition counts. */
92 gcov_type count;
93 /* used in cycle search, so that we do not clobber original counts. */
94 gcov_type cs_count;
96 unsigned int count_valid : 1;
97 unsigned int on_tree : 1;
98 unsigned int fake : 1;
99 unsigned int fall_through : 1;
101 /* Arc to a catch handler. */
102 unsigned int is_throw : 1;
104 /* Arc is for a function that abnormally returns. */
105 unsigned int is_call_non_return : 1;
107 /* Arc is for catch/setjmp. */
108 unsigned int is_nonlocal_return : 1;
110 /* Is an unconditional branch. */
111 unsigned int is_unconditional : 1;
113 /* Loop making arc. */
114 unsigned int cycle : 1;
116 /* Links to next arc on src and dst lists. */
117 struct arc_info *succ_next;
118 struct arc_info *pred_next;
121 /* Describes which locations (lines and files) are associated with
122 a basic block. */
124 class block_location_info
126 public:
127 block_location_info (unsigned _source_file_idx):
128 source_file_idx (_source_file_idx)
131 unsigned source_file_idx;
132 vector<unsigned> lines;
135 /* Describes a basic block. Contains lists of arcs to successor and
136 predecessor blocks. */
138 class block_info
140 public:
141 /* Constructor. */
142 block_info ();
144 /* Chain of exit and entry arcs. */
145 arc_info *succ;
146 arc_info *pred;
148 /* Number of unprocessed exit and entry arcs. */
149 gcov_type num_succ;
150 gcov_type num_pred;
152 unsigned id;
154 /* Block execution count. */
155 gcov_type count;
156 unsigned count_valid : 1;
157 unsigned valid_chain : 1;
158 unsigned invalid_chain : 1;
159 unsigned exceptional : 1;
161 /* Block is a call instrumenting site. */
162 unsigned is_call_site : 1; /* Does the call. */
163 unsigned is_call_return : 1; /* Is the return. */
165 /* Block is a landing pad for longjmp or throw. */
166 unsigned is_nonlocal_return : 1;
168 vector<block_location_info> locations;
170 struct
172 /* Single line graph cycle workspace. Used for all-blocks
173 mode. */
174 arc_info *arc;
175 unsigned ident;
176 } cycle; /* Used in all-blocks mode, after blocks are linked onto
177 lines. */
179 /* Temporary chain for solving graph, and for chaining blocks on one
180 line. */
181 class block_info *chain;
185 block_info::block_info (): succ (NULL), pred (NULL), num_succ (0), num_pred (0),
186 id (0), count (0), count_valid (0), valid_chain (0), invalid_chain (0),
187 exceptional (0), is_call_site (0), is_call_return (0), is_nonlocal_return (0),
188 locations (), chain (NULL)
190 cycle.arc = NULL;
193 /* Describes a single line of source. Contains a chain of basic blocks
194 with code on it. */
196 class line_info
198 public:
199 /* Default constructor. */
200 line_info ();
202 /* Return true when NEEDLE is one of basic blocks the line belongs to. */
203 bool has_block (block_info *needle);
205 /* Execution count. */
206 gcov_type count;
208 /* Branches from blocks that end on this line. */
209 vector<arc_info *> branches;
211 /* blocks which start on this line. Used in all-blocks mode. */
212 vector<block_info *> blocks;
214 unsigned exists : 1;
215 unsigned unexceptional : 1;
216 unsigned has_unexecuted_block : 1;
219 line_info::line_info (): count (0), branches (), blocks (), exists (false),
220 unexceptional (0), has_unexecuted_block (0)
224 bool
225 line_info::has_block (block_info *needle)
227 return std::find (blocks.begin (), blocks.end (), needle) != blocks.end ();
230 /* Output demangled function names. */
232 static int flag_demangled_names = 0;
234 /* Describes a single function. Contains an array of basic blocks. */
236 class function_info
238 public:
239 function_info ();
240 ~function_info ();
242 /* Return true when line N belongs to the function in source file SRC_IDX.
243 The line must be defined in body of the function, can't be inlined. */
244 bool group_line_p (unsigned n, unsigned src_idx);
246 /* Function filter based on function_info::artificial variable. */
248 static inline bool
249 is_artificial (function_info *fn)
251 return fn->artificial;
254 /* Name of function. */
255 char *m_name;
256 char *m_demangled_name;
257 unsigned ident;
258 unsigned lineno_checksum;
259 unsigned cfg_checksum;
261 /* The graph contains at least one fake incoming edge. */
262 unsigned has_catch : 1;
264 /* True when the function is artificial and does not exist
265 in a source file. */
266 unsigned artificial : 1;
268 /* True when multiple functions start at a line in a source file. */
269 unsigned is_group : 1;
271 /* Array of basic blocks. Like in GCC, the entry block is
272 at blocks[0] and the exit block is at blocks[1]. */
273 #define ENTRY_BLOCK (0)
274 #define EXIT_BLOCK (1)
275 vector<block_info> blocks;
276 unsigned blocks_executed;
278 /* Raw arc coverage counts. */
279 vector<gcov_type> counts;
281 /* First line number. */
282 unsigned start_line;
284 /* First line column. */
285 unsigned start_column;
287 /* Last line number. */
288 unsigned end_line;
290 /* Last line column. */
291 unsigned end_column;
293 /* Index of source file where the function is defined. */
294 unsigned src;
296 /* Vector of line information. */
297 vector<line_info> lines;
299 /* Next function. */
300 class function_info *next;
302 /* Get demangled name of a function. The demangled name
303 is converted when it is used for the first time. */
304 char *get_demangled_name ()
306 if (m_demangled_name == NULL)
308 m_demangled_name = cplus_demangle (m_name, DMGL_PARAMS);
309 if (!m_demangled_name)
310 m_demangled_name = m_name;
313 return m_demangled_name;
316 /* Get name of the function based on flag_demangled_names. */
317 char *get_name ()
319 return flag_demangled_names ? get_demangled_name () : m_name;
322 /* Return number of basic blocks (without entry and exit block). */
323 unsigned get_block_count ()
325 return blocks.size () - 2;
329 /* Function info comparer that will sort functions according to starting
330 line. */
332 struct function_line_start_cmp
334 inline bool operator() (const function_info *lhs,
335 const function_info *rhs)
337 return (lhs->start_line == rhs->start_line
338 ? lhs->start_column < rhs->start_column
339 : lhs->start_line < rhs->start_line);
343 /* Describes coverage of a file or function. */
345 struct coverage_info
347 int lines;
348 int lines_executed;
350 int branches;
351 int branches_executed;
352 int branches_taken;
354 int calls;
355 int calls_executed;
357 char *name;
360 /* Describes a file mentioned in the block graph. Contains an array
361 of line info. */
363 class source_info
365 public:
366 /* Default constructor. */
367 source_info ();
369 vector<function_info *> *get_functions_at_location (unsigned line_num) const;
371 /* Register a new function. */
372 void add_function (function_info *fn);
374 /* Index of the source_info in sources vector. */
375 unsigned index;
377 /* Canonical name of source file. */
378 char *name;
379 time_t file_time;
381 /* Vector of line information. */
382 vector<line_info> lines;
384 coverage_info coverage;
386 /* Maximum line count in the source file. */
387 unsigned int maximum_count;
389 /* Functions in this source file. These are in ascending line
390 number order. */
391 vector<function_info *> functions;
393 /* Line number to functions map. */
394 vector<vector<function_info *> *> line_to_function_map;
397 source_info::source_info (): index (0), name (NULL), file_time (),
398 lines (), coverage (), maximum_count (0), functions ()
402 /* Register a new function. */
403 void
404 source_info::add_function (function_info *fn)
406 functions.push_back (fn);
408 if (fn->start_line >= line_to_function_map.size ())
409 line_to_function_map.resize (fn->start_line + 1);
411 vector<function_info *> **slot = &line_to_function_map[fn->start_line];
412 if (*slot == NULL)
413 *slot = new vector<function_info *> ();
415 (*slot)->push_back (fn);
418 vector<function_info *> *
419 source_info::get_functions_at_location (unsigned line_num) const
421 if (line_num >= line_to_function_map.size ())
422 return NULL;
424 vector<function_info *> *slot = line_to_function_map[line_num];
425 if (slot != NULL)
426 std::sort (slot->begin (), slot->end (), function_line_start_cmp ());
428 return slot;
431 class name_map
433 public:
434 name_map ()
438 name_map (char *_name, unsigned _src): name (_name), src (_src)
442 bool operator== (const name_map &rhs) const
444 #if HAVE_DOS_BASED_FILE_SYSTEM
445 return strcasecmp (this->name, rhs.name) == 0;
446 #else
447 return strcmp (this->name, rhs.name) == 0;
448 #endif
451 bool operator< (const name_map &rhs) const
453 #if HAVE_DOS_BASED_FILE_SYSTEM
454 return strcasecmp (this->name, rhs.name) < 0;
455 #else
456 return strcmp (this->name, rhs.name) < 0;
457 #endif
460 const char *name; /* Source file name */
461 unsigned src; /* Source file */
464 /* Vector of all functions. */
465 static vector<function_info *> functions;
467 /* Function ident to function_info * map. */
468 static map<unsigned, function_info *> ident_to_fn;
470 /* Vector of source files. */
471 static vector<source_info> sources;
473 /* Mapping of file names to sources */
474 static vector<name_map> names;
476 /* Record all processed files in order to warn about
477 a file being read multiple times. */
478 static vector<char *> processed_files;
480 /* This holds data summary information. */
482 static unsigned object_runs;
484 static unsigned total_lines;
485 static unsigned total_executed;
487 /* Modification time of graph file. */
489 static time_t bbg_file_time;
491 /* Name of the notes (gcno) output file. The "bbg" prefix is for
492 historical reasons, when the notes file contained only the
493 basic block graph notes. */
495 static char *bbg_file_name;
497 /* Stamp of the bbg file */
498 static unsigned bbg_stamp;
500 /* Supports has_unexecuted_blocks functionality. */
501 static unsigned bbg_supports_has_unexecuted_blocks;
503 /* Working directory in which a TU was compiled. */
504 static const char *bbg_cwd;
506 /* Name and file pointer of the input file for the count data (gcda). */
508 static char *da_file_name;
510 /* Data file is missing. */
512 static int no_data_file;
514 /* If there is several input files, compute and display results after
515 reading all data files. This way if two or more gcda file refer to
516 the same source file (eg inline subprograms in a .h file), the
517 counts are added. */
519 static int multiple_files = 0;
521 /* Output branch probabilities. */
523 static int flag_branches = 0;
525 /* Show unconditional branches too. */
526 static int flag_unconditional = 0;
528 /* Output a gcov file if this is true. This is on by default, and can
529 be turned off by the -n option. */
531 static int flag_gcov_file = 1;
533 /* Output to stdout instead to a gcov file. */
535 static int flag_use_stdout = 0;
537 /* Output progress indication if this is true. This is off by default
538 and can be turned on by the -d option. */
540 static int flag_display_progress = 0;
542 /* Output *.gcov file in JSON intermediate format used by consumers. */
544 static int flag_json_format = 0;
546 /* For included files, make the gcov output file name include the name
547 of the input source file. For example, if x.h is included in a.c,
548 then the output file name is a.c##x.h.gcov instead of x.h.gcov. */
550 static int flag_long_names = 0;
552 /* For situations when a long name can potentially hit filesystem path limit,
553 let's calculate md5sum of the path and append it to a file name. */
555 static int flag_hash_filenames = 0;
557 /* Print verbose informations. */
559 static int flag_verbose = 0;
561 /* Print colored output. */
563 static int flag_use_colors = 0;
565 /* Use perf-like colors to indicate hot lines. */
567 static int flag_use_hotness_colors = 0;
569 /* Output count information for every basic block, not merely those
570 that contain line number information. */
572 static int flag_all_blocks = 0;
574 /* Output human readable numbers. */
576 static int flag_human_readable_numbers = 0;
578 /* Output summary info for each function. */
580 static int flag_function_summary = 0;
582 /* Object directory file prefix. This is the directory/file where the
583 graph and data files are looked for, if nonzero. */
585 static char *object_directory = 0;
587 /* Source directory prefix. This is removed from source pathnames
588 that match, when generating the output file name. */
590 static char *source_prefix = 0;
591 static size_t source_length = 0;
593 /* Only show data for sources with relative pathnames. Absolute ones
594 usually indicate a system header file, which although it may
595 contain inline functions, is usually uninteresting. */
596 static int flag_relative_only = 0;
598 /* Preserve all pathname components. Needed when object files and
599 source files are in subdirectories. '/' is mangled as '#', '.' is
600 elided and '..' mangled to '^'. */
602 static int flag_preserve_paths = 0;
604 /* Output the number of times a branch was taken as opposed to the percentage
605 of times it was taken. */
607 static int flag_counts = 0;
609 /* Forward declarations. */
610 static int process_args (int, char **);
611 static void print_usage (int) ATTRIBUTE_NORETURN;
612 static void print_version (void) ATTRIBUTE_NORETURN;
613 static void process_file (const char *);
614 static void process_all_functions (void);
615 static void generate_results (const char *);
616 static void create_file_names (const char *);
617 static char *canonicalize_name (const char *);
618 static unsigned find_source (const char *);
619 static void read_graph_file (void);
620 static int read_count_file (void);
621 static void solve_flow_graph (function_info *);
622 static void find_exception_blocks (function_info *);
623 static void add_branch_counts (coverage_info *, const arc_info *);
624 static void add_line_counts (coverage_info *, function_info *);
625 static void executed_summary (unsigned, unsigned);
626 static void function_summary (const coverage_info *);
627 static void file_summary (const coverage_info *);
628 static const char *format_gcov (gcov_type, gcov_type, int);
629 static void accumulate_line_counts (source_info *);
630 static void output_gcov_file (const char *, source_info *);
631 static int output_branch_count (FILE *, int, const arc_info *);
632 static void output_lines (FILE *, const source_info *);
633 static char *make_gcov_file_name (const char *, const char *);
634 static char *mangle_name (const char *, char *);
635 static void release_structures (void);
636 extern int main (int, char **);
638 function_info::function_info (): m_name (NULL), m_demangled_name (NULL),
639 ident (0), lineno_checksum (0), cfg_checksum (0), has_catch (0),
640 artificial (0), is_group (0),
641 blocks (), blocks_executed (0), counts (),
642 start_line (0), start_column (0), end_line (0), end_column (0),
643 src (0), lines (), next (NULL)
647 function_info::~function_info ()
649 for (int i = blocks.size () - 1; i >= 0; i--)
651 arc_info *arc, *arc_n;
653 for (arc = blocks[i].succ; arc; arc = arc_n)
655 arc_n = arc->succ_next;
656 free (arc);
659 if (m_demangled_name != m_name)
660 free (m_demangled_name);
661 free (m_name);
664 bool function_info::group_line_p (unsigned n, unsigned src_idx)
666 return is_group && src == src_idx && start_line <= n && n <= end_line;
669 /* Cycle detection!
670 There are a bajillion algorithms that do this. Boost's function is named
671 hawick_cycles, so I used the algorithm by K. A. Hawick and H. A. James in
672 "Enumerating Circuits and Loops in Graphs with Self-Arcs and Multiple-Arcs"
673 (url at <http://complexity.massey.ac.nz/cstn/013/cstn-013.pdf>).
675 The basic algorithm is simple: effectively, we're finding all simple paths
676 in a subgraph (that shrinks every iteration). Duplicates are filtered by
677 "blocking" a path when a node is added to the path (this also prevents non-
678 simple paths)--the node is unblocked only when it participates in a cycle.
681 typedef vector<arc_info *> arc_vector_t;
682 typedef vector<const block_info *> block_vector_t;
684 /* Handle cycle identified by EDGES, where the function finds minimum cs_count
685 and subtract the value from all counts. The subtracted value is added
686 to COUNT. Returns type of loop. */
688 static void
689 handle_cycle (const arc_vector_t &edges, int64_t &count)
691 /* Find the minimum edge of the cycle, and reduce all nodes in the cycle by
692 that amount. */
693 int64_t cycle_count = INTTYPE_MAXIMUM (int64_t);
694 for (unsigned i = 0; i < edges.size (); i++)
696 int64_t ecount = edges[i]->cs_count;
697 if (cycle_count > ecount)
698 cycle_count = ecount;
700 count += cycle_count;
701 for (unsigned i = 0; i < edges.size (); i++)
702 edges[i]->cs_count -= cycle_count;
704 gcc_assert (cycle_count > 0);
707 /* Unblock a block U from BLOCKED. Apart from that, iterate all blocks
708 blocked by U in BLOCK_LISTS. */
710 static void
711 unblock (const block_info *u, block_vector_t &blocked,
712 vector<block_vector_t > &block_lists)
714 block_vector_t::iterator it = find (blocked.begin (), blocked.end (), u);
715 if (it == blocked.end ())
716 return;
718 unsigned index = it - blocked.begin ();
719 blocked.erase (it);
721 block_vector_t to_unblock (block_lists[index]);
723 block_lists.erase (block_lists.begin () + index);
725 for (block_vector_t::iterator it = to_unblock.begin ();
726 it != to_unblock.end (); it++)
727 unblock (*it, blocked, block_lists);
730 /* Return true when PATH contains a zero cycle arc count. */
732 static bool
733 path_contains_zero_or_negative_cycle_arc (arc_vector_t &path)
735 for (unsigned i = 0; i < path.size (); i++)
736 if (path[i]->cs_count <= 0)
737 return true;
738 return false;
741 /* Find circuit going to block V, PATH is provisional seen cycle.
742 BLOCKED is vector of blocked vertices, BLOCK_LISTS contains vertices
743 blocked by a block. COUNT is accumulated count of the current LINE.
744 Returns what type of loop it contains. */
746 static bool
747 circuit (block_info *v, arc_vector_t &path, block_info *start,
748 block_vector_t &blocked, vector<block_vector_t> &block_lists,
749 line_info &linfo, int64_t &count)
751 bool loop_found = false;
753 /* Add v to the block list. */
754 gcc_assert (find (blocked.begin (), blocked.end (), v) == blocked.end ());
755 blocked.push_back (v);
756 block_lists.push_back (block_vector_t ());
758 for (arc_info *arc = v->succ; arc; arc = arc->succ_next)
760 block_info *w = arc->dst;
761 if (w < start
762 || arc->cs_count <= 0
763 || !linfo.has_block (w))
764 continue;
766 path.push_back (arc);
767 if (w == start)
769 /* Cycle has been found. */
770 handle_cycle (path, count);
771 loop_found = true;
773 else if (!path_contains_zero_or_negative_cycle_arc (path)
774 && find (blocked.begin (), blocked.end (), w) == blocked.end ())
775 loop_found |= circuit (w, path, start, blocked, block_lists, linfo,
776 count);
778 path.pop_back ();
781 if (loop_found)
782 unblock (v, blocked, block_lists);
783 else
784 for (arc_info *arc = v->succ; arc; arc = arc->succ_next)
786 block_info *w = arc->dst;
787 if (w < start
788 || arc->cs_count <= 0
789 || !linfo.has_block (w))
790 continue;
792 size_t index
793 = find (blocked.begin (), blocked.end (), w) - blocked.begin ();
794 gcc_assert (index < blocked.size ());
795 block_vector_t &list = block_lists[index];
796 if (find (list.begin (), list.end (), v) == list.end ())
797 list.push_back (v);
800 return loop_found;
803 /* Find cycles for a LINFO. */
805 static gcov_type
806 get_cycles_count (line_info &linfo)
808 /* Note that this algorithm works even if blocks aren't in sorted order.
809 Each iteration of the circuit detection is completely independent
810 (except for reducing counts, but that shouldn't matter anyways).
811 Therefore, operating on a permuted order (i.e., non-sorted) only
812 has the effect of permuting the output cycles. */
814 bool loop_found = false;
815 gcov_type count = 0;
816 for (vector<block_info *>::iterator it = linfo.blocks.begin ();
817 it != linfo.blocks.end (); it++)
819 arc_vector_t path;
820 block_vector_t blocked;
821 vector<block_vector_t > block_lists;
822 loop_found |= circuit (*it, path, *it, blocked, block_lists, linfo,
823 count);
826 return count;
830 main (int argc, char **argv)
832 int argno;
833 int first_arg;
834 const char *p;
836 p = argv[0] + strlen (argv[0]);
837 while (p != argv[0] && !IS_DIR_SEPARATOR (p[-1]))
838 --p;
839 progname = p;
841 xmalloc_set_program_name (progname);
843 /* Unlock the stdio streams. */
844 unlock_std_streams ();
846 gcc_init_libintl ();
848 diagnostic_initialize (global_dc, 0);
850 /* Handle response files. */
851 expandargv (&argc, &argv);
853 argno = process_args (argc, argv);
854 if (optind == argc)
855 print_usage (true);
857 if (argc - argno > 1)
858 multiple_files = 1;
860 first_arg = argno;
862 for (; argno != argc; argno++)
864 if (flag_display_progress)
865 printf ("Processing file %d out of %d\n", argno - first_arg + 1,
866 argc - first_arg);
867 process_file (argv[argno]);
869 if (flag_json_format || argno == argc - 1)
871 process_all_functions ();
872 generate_results (argv[argno]);
873 release_structures ();
877 if (!flag_use_stdout)
878 executed_summary (total_lines, total_executed);
880 return 0;
883 /* Print a usage message and exit. If ERROR_P is nonzero, this is an error,
884 otherwise the output of --help. */
886 static void
887 print_usage (int error_p)
889 FILE *file = error_p ? stderr : stdout;
890 int status = error_p ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE;
892 fnotice (file, "Usage: gcov [OPTION...] SOURCE|OBJ...\n\n");
893 fnotice (file, "Print code coverage information.\n\n");
894 fnotice (file, " -a, --all-blocks Show information for every basic block\n");
895 fnotice (file, " -b, --branch-probabilities Include branch probabilities in output\n");
896 fnotice (file, " -c, --branch-counts Output counts of branches taken\n\
897 rather than percentages\n");
898 fnotice (file, " -d, --display-progress Display progress information\n");
899 fnotice (file, " -f, --function-summaries Output summaries for each function\n");
900 fnotice (file, " -h, --help Print this help, then exit\n");
901 fnotice (file, " -j, --json-format Output JSON intermediate format\n\
902 into .gcov.json.gz file\n");
903 fnotice (file, " -H, --human-readable Output human readable numbers\n");
904 fnotice (file, " -k, --use-colors Emit colored output\n");
905 fnotice (file, " -l, --long-file-names Use long output file names for included\n\
906 source files\n");
907 fnotice (file, " -m, --demangled-names Output demangled function names\n");
908 fnotice (file, " -n, --no-output Do not create an output file\n");
909 fnotice (file, " -o, --object-directory DIR|FILE Search for object files in DIR or called FILE\n");
910 fnotice (file, " -p, --preserve-paths Preserve all pathname components\n");
911 fnotice (file, " -q, --use-hotness-colors Emit perf-like colored output for hot lines\n");
912 fnotice (file, " -r, --relative-only Only show data for relative sources\n");
913 fnotice (file, " -s, --source-prefix DIR Source prefix to elide\n");
914 fnotice (file, " -t, --stdout Output to stdout instead of a file\n");
915 fnotice (file, " -u, --unconditional-branches Show unconditional branch counts too\n");
916 fnotice (file, " -v, --version Print version number, then exit\n");
917 fnotice (file, " -w, --verbose Print verbose informations\n");
918 fnotice (file, " -x, --hash-filenames Hash long pathnames\n");
919 fnotice (file, "\nObsolete options:\n");
920 fnotice (file, " -i, --json-format Replaced with -j, --json-format\n");
921 fnotice (file, " -j, --human-readable Replaced with -H, --human-readable\n");
922 fnotice (file, "\nFor bug reporting instructions, please see:\n%s.\n",
923 bug_report_url);
924 exit (status);
927 /* Print version information and exit. */
929 static void
930 print_version (void)
932 fnotice (stdout, "gcov %s%s\n", pkgversion_string, version_string);
933 fprintf (stdout, "Copyright %s 2020 Free Software Foundation, Inc.\n",
934 _("(C)"));
935 fnotice (stdout,
936 _("This is free software; see the source for copying conditions. There is NO\n\
937 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"));
938 exit (SUCCESS_EXIT_CODE);
941 static const struct option options[] =
943 { "help", no_argument, NULL, 'h' },
944 { "version", no_argument, NULL, 'v' },
945 { "verbose", no_argument, NULL, 'w' },
946 { "all-blocks", no_argument, NULL, 'a' },
947 { "branch-probabilities", no_argument, NULL, 'b' },
948 { "branch-counts", no_argument, NULL, 'c' },
949 { "json-format", no_argument, NULL, 'j' },
950 { "human-readable", no_argument, NULL, 'H' },
951 { "no-output", no_argument, NULL, 'n' },
952 { "long-file-names", no_argument, NULL, 'l' },
953 { "function-summaries", no_argument, NULL, 'f' },
954 { "demangled-names", no_argument, NULL, 'm' },
955 { "preserve-paths", no_argument, NULL, 'p' },
956 { "relative-only", no_argument, NULL, 'r' },
957 { "object-directory", required_argument, NULL, 'o' },
958 { "object-file", required_argument, NULL, 'o' },
959 { "source-prefix", required_argument, NULL, 's' },
960 { "stdout", no_argument, NULL, 't' },
961 { "unconditional-branches", no_argument, NULL, 'u' },
962 { "display-progress", no_argument, NULL, 'd' },
963 { "hash-filenames", no_argument, NULL, 'x' },
964 { "use-colors", no_argument, NULL, 'k' },
965 { "use-hotness-colors", no_argument, NULL, 'q' },
966 { 0, 0, 0, 0 }
969 /* Process args, return index to first non-arg. */
971 static int
972 process_args (int argc, char **argv)
974 int opt;
976 const char *opts = "abcdfhHijklmno:pqrs:tuvwx";
977 while ((opt = getopt_long (argc, argv, opts, options, NULL)) != -1)
979 switch (opt)
981 case 'a':
982 flag_all_blocks = 1;
983 break;
984 case 'b':
985 flag_branches = 1;
986 break;
987 case 'c':
988 flag_counts = 1;
989 break;
990 case 'f':
991 flag_function_summary = 1;
992 break;
993 case 'h':
994 print_usage (false);
995 /* print_usage will exit. */
996 case 'l':
997 flag_long_names = 1;
998 break;
999 case 'H':
1000 flag_human_readable_numbers = 1;
1001 break;
1002 case 'k':
1003 flag_use_colors = 1;
1004 break;
1005 case 'q':
1006 flag_use_hotness_colors = 1;
1007 break;
1008 case 'm':
1009 flag_demangled_names = 1;
1010 break;
1011 case 'n':
1012 flag_gcov_file = 0;
1013 break;
1014 case 'o':
1015 object_directory = optarg;
1016 break;
1017 case 's':
1018 source_prefix = optarg;
1019 source_length = strlen (source_prefix);
1020 break;
1021 case 'r':
1022 flag_relative_only = 1;
1023 break;
1024 case 'p':
1025 flag_preserve_paths = 1;
1026 break;
1027 case 'u':
1028 flag_unconditional = 1;
1029 break;
1030 case 'i':
1031 case 'j':
1032 flag_json_format = 1;
1033 flag_gcov_file = 1;
1034 break;
1035 case 'd':
1036 flag_display_progress = 1;
1037 break;
1038 case 'x':
1039 flag_hash_filenames = 1;
1040 break;
1041 case 'w':
1042 flag_verbose = 1;
1043 break;
1044 case 't':
1045 flag_use_stdout = 1;
1046 break;
1047 case 'v':
1048 print_version ();
1049 /* print_version will exit. */
1050 default:
1051 print_usage (true);
1052 /* print_usage will exit. */
1056 return optind;
1059 /* Output intermediate LINE sitting on LINE_NUM to JSON OBJECT.
1060 Add FUNCTION_NAME to the LINE. */
1062 static void
1063 output_intermediate_json_line (json::array *object,
1064 line_info *line, unsigned line_num,
1065 const char *function_name)
1067 if (!line->exists)
1068 return;
1070 json::object *lineo = new json::object ();
1071 lineo->set ("line_number", new json::integer_number (line_num));
1072 if (function_name != NULL)
1073 lineo->set ("function_name", new json::string (function_name));
1074 lineo->set ("count", new json::integer_number (line->count));
1075 lineo->set ("unexecuted_block",
1076 new json::literal (line->has_unexecuted_block));
1078 json::array *branches = new json::array ();
1079 lineo->set ("branches", branches);
1081 vector<arc_info *>::const_iterator it;
1082 if (flag_branches)
1083 for (it = line->branches.begin (); it != line->branches.end ();
1084 it++)
1086 if (!(*it)->is_unconditional && !(*it)->is_call_non_return)
1088 json::object *branch = new json::object ();
1089 branch->set ("count", new json::integer_number ((*it)->count));
1090 branch->set ("throw", new json::literal ((*it)->is_throw));
1091 branch->set ("fallthrough",
1092 new json::literal ((*it)->fall_through));
1093 branches->append (branch);
1097 object->append (lineo);
1100 /* Get the name of the gcov file. The return value must be free'd.
1102 It appends the '.gcov' extension to the *basename* of the file.
1103 The resulting file name will be in PWD.
1105 e.g.,
1106 input: foo.da, output: foo.da.gcov
1107 input: a/b/foo.cc, output: foo.cc.gcov */
1109 static char *
1110 get_gcov_intermediate_filename (const char *file_name)
1112 const char *gcov = ".gcov.json.gz";
1113 char *result;
1114 const char *cptr;
1116 /* Find the 'basename'. */
1117 cptr = lbasename (file_name);
1119 result = XNEWVEC (char, strlen (cptr) + strlen (gcov) + 1);
1120 sprintf (result, "%s%s", cptr, gcov);
1122 return result;
1125 /* Output the result in JSON intermediate format.
1126 Source info SRC is dumped into JSON_FILES which is JSON array. */
1128 static void
1129 output_json_intermediate_file (json::array *json_files, source_info *src)
1131 json::object *root = new json::object ();
1132 json_files->append (root);
1134 root->set ("file", new json::string (src->name));
1136 json::array *functions = new json::array ();
1137 root->set ("functions", functions);
1139 std::sort (src->functions.begin (), src->functions.end (),
1140 function_line_start_cmp ());
1141 for (vector<function_info *>::iterator it = src->functions.begin ();
1142 it != src->functions.end (); it++)
1144 json::object *function = new json::object ();
1145 function->set ("name", new json::string ((*it)->m_name));
1146 function->set ("demangled_name",
1147 new json::string ((*it)->get_demangled_name ()));
1148 function->set ("start_line",
1149 new json::integer_number ((*it)->start_line));
1150 function->set ("start_column",
1151 new json::integer_number ((*it)->start_column));
1152 function->set ("end_line", new json::integer_number ((*it)->end_line));
1153 function->set ("end_column",
1154 new json::integer_number ((*it)->end_column));
1155 function->set ("blocks",
1156 new json::integer_number ((*it)->get_block_count ()));
1157 function->set ("blocks_executed",
1158 new json::integer_number ((*it)->blocks_executed));
1159 function->set ("execution_count",
1160 new json::integer_number ((*it)->blocks[0].count));
1162 functions->append (function);
1165 json::array *lineso = new json::array ();
1166 root->set ("lines", lineso);
1168 function_info *last_non_group_fn = NULL;
1170 for (unsigned line_num = 1; line_num <= src->lines.size (); line_num++)
1172 vector<function_info *> *fns = src->get_functions_at_location (line_num);
1174 if (fns != NULL)
1175 /* Print first group functions that begin on the line. */
1176 for (vector<function_info *>::iterator it2 = fns->begin ();
1177 it2 != fns->end (); it2++)
1179 if (!(*it2)->is_group)
1180 last_non_group_fn = *it2;
1182 vector<line_info> &lines = (*it2)->lines;
1183 for (unsigned i = 0; i < lines.size (); i++)
1185 line_info *line = &lines[i];
1186 output_intermediate_json_line (lineso, line, line_num + i,
1187 (*it2)->m_name);
1191 /* Follow with lines associated with the source file. */
1192 if (line_num < src->lines.size ())
1193 output_intermediate_json_line (lineso, &src->lines[line_num], line_num,
1194 (last_non_group_fn != NULL
1195 ? last_non_group_fn->m_name : NULL));
1199 /* Function start pair. */
1200 struct function_start
1202 unsigned source_file_idx;
1203 unsigned start_line;
1206 /* Traits class for function start hash maps below. */
1208 struct function_start_pair_hash : typed_noop_remove <function_start>
1210 typedef function_start value_type;
1211 typedef function_start compare_type;
1213 static hashval_t
1214 hash (const function_start &ref)
1216 inchash::hash hstate (0);
1217 hstate.add_int (ref.source_file_idx);
1218 hstate.add_int (ref.start_line);
1219 return hstate.end ();
1222 static bool
1223 equal (const function_start &ref1, const function_start &ref2)
1225 return (ref1.source_file_idx == ref2.source_file_idx
1226 && ref1.start_line == ref2.start_line);
1229 static void
1230 mark_deleted (function_start &ref)
1232 ref.start_line = ~1U;
1235 static const bool empty_zero_p = false;
1237 static void
1238 mark_empty (function_start &ref)
1240 ref.start_line = ~2U;
1243 static bool
1244 is_deleted (const function_start &ref)
1246 return ref.start_line == ~1U;
1249 static bool
1250 is_empty (const function_start &ref)
1252 return ref.start_line == ~2U;
1256 /* Process a single input file. */
1258 static void
1259 process_file (const char *file_name)
1261 create_file_names (file_name);
1263 for (unsigned i = 0; i < processed_files.size (); i++)
1264 if (strcmp (da_file_name, processed_files[i]) == 0)
1266 fnotice (stderr, "'%s' file is already processed\n",
1267 file_name);
1268 return;
1271 processed_files.push_back (xstrdup (da_file_name));
1273 read_graph_file ();
1274 read_count_file ();
1277 /* Process all functions in all files. */
1279 static void
1280 process_all_functions (void)
1282 hash_map<function_start_pair_hash, function_info *> fn_map;
1284 /* Identify group functions. */
1285 for (vector<function_info *>::iterator it = functions.begin ();
1286 it != functions.end (); it++)
1287 if (!(*it)->artificial)
1289 function_start needle;
1290 needle.source_file_idx = (*it)->src;
1291 needle.start_line = (*it)->start_line;
1293 function_info **slot = fn_map.get (needle);
1294 if (slot)
1296 (*slot)->is_group = 1;
1297 (*it)->is_group = 1;
1299 else
1300 fn_map.put (needle, *it);
1303 /* Remove all artificial function. */
1304 functions.erase (remove_if (functions.begin (), functions.end (),
1305 function_info::is_artificial), functions.end ());
1307 for (vector<function_info *>::iterator it = functions.begin ();
1308 it != functions.end (); it++)
1310 function_info *fn = *it;
1311 unsigned src = fn->src;
1313 if (!fn->counts.empty () || no_data_file)
1315 source_info *s = &sources[src];
1316 s->add_function (fn);
1318 /* Mark last line in files touched by function. */
1319 for (unsigned block_no = 0; block_no != fn->blocks.size ();
1320 block_no++)
1322 block_info *block = &fn->blocks[block_no];
1323 for (unsigned i = 0; i < block->locations.size (); i++)
1325 /* Sort lines of locations. */
1326 sort (block->locations[i].lines.begin (),
1327 block->locations[i].lines.end ());
1329 if (!block->locations[i].lines.empty ())
1331 s = &sources[block->locations[i].source_file_idx];
1332 unsigned last_line
1333 = block->locations[i].lines.back ();
1335 /* Record new lines for the function. */
1336 if (last_line >= s->lines.size ())
1338 s = &sources[block->locations[i].source_file_idx];
1339 unsigned last_line
1340 = block->locations[i].lines.back ();
1342 /* Record new lines for the function. */
1343 if (last_line >= s->lines.size ())
1345 /* Record new lines for a source file. */
1346 s->lines.resize (last_line + 1);
1353 /* Allocate lines for group function, following start_line
1354 and end_line information of the function. */
1355 if (fn->is_group)
1356 fn->lines.resize (fn->end_line - fn->start_line + 1);
1358 solve_flow_graph (fn);
1359 if (fn->has_catch)
1360 find_exception_blocks (fn);
1362 else
1364 /* The function was not in the executable -- some other
1365 instance must have been selected. */
1370 static void
1371 output_gcov_file (const char *file_name, source_info *src)
1373 char *gcov_file_name = make_gcov_file_name (file_name, src->coverage.name);
1375 if (src->coverage.lines)
1377 FILE *gcov_file = fopen (gcov_file_name, "w");
1378 if (gcov_file)
1380 fnotice (stdout, "Creating '%s'\n", gcov_file_name);
1381 output_lines (gcov_file, src);
1382 if (ferror (gcov_file))
1383 fnotice (stderr, "Error writing output file '%s'\n",
1384 gcov_file_name);
1385 fclose (gcov_file);
1387 else
1388 fnotice (stderr, "Could not open output file '%s'\n", gcov_file_name);
1390 else
1392 unlink (gcov_file_name);
1393 fnotice (stdout, "Removing '%s'\n", gcov_file_name);
1395 free (gcov_file_name);
1398 static void
1399 generate_results (const char *file_name)
1401 char *gcov_intermediate_filename;
1403 for (vector<function_info *>::iterator it = functions.begin ();
1404 it != functions.end (); it++)
1406 function_info *fn = *it;
1407 coverage_info coverage;
1409 memset (&coverage, 0, sizeof (coverage));
1410 coverage.name = fn->get_name ();
1411 add_line_counts (flag_function_summary ? &coverage : NULL, fn);
1412 if (flag_function_summary)
1414 function_summary (&coverage);
1415 fnotice (stdout, "\n");
1419 name_map needle;
1420 needle.name = file_name;
1421 vector<name_map>::iterator it
1422 = std::find (names.begin (), names.end (), needle);
1423 if (it != names.end ())
1424 file_name = sources[it->src].coverage.name;
1425 else
1426 file_name = canonicalize_name (file_name);
1428 gcov_intermediate_filename = get_gcov_intermediate_filename (file_name);
1430 json::object *root = new json::object ();
1431 root->set ("format_version", new json::string ("1"));
1432 root->set ("gcc_version", new json::string (version_string));
1434 if (bbg_cwd != NULL)
1435 root->set ("current_working_directory", new json::string (bbg_cwd));
1436 root->set ("data_file", new json::string (file_name));
1438 json::array *json_files = new json::array ();
1439 root->set ("files", json_files);
1441 for (vector<source_info>::iterator it = sources.begin ();
1442 it != sources.end (); it++)
1444 source_info *src = &(*it);
1445 if (flag_relative_only)
1447 /* Ignore this source, if it is an absolute path (after
1448 source prefix removal). */
1449 char first = src->coverage.name[0];
1451 #if HAVE_DOS_BASED_FILE_SYSTEM
1452 if (first && src->coverage.name[1] == ':')
1453 first = src->coverage.name[2];
1454 #endif
1455 if (IS_DIR_SEPARATOR (first))
1456 continue;
1459 accumulate_line_counts (src);
1461 if (!flag_use_stdout)
1462 file_summary (&src->coverage);
1463 total_lines += src->coverage.lines;
1464 total_executed += src->coverage.lines_executed;
1465 if (flag_gcov_file)
1467 if (flag_json_format)
1469 output_json_intermediate_file (json_files, src);
1470 if (!flag_use_stdout)
1471 fnotice (stdout, "\n");
1473 else
1475 if (flag_use_stdout)
1477 if (src->coverage.lines)
1478 output_lines (stdout, src);
1480 else
1482 output_gcov_file (file_name, src);
1483 fnotice (stdout, "\n");
1489 if (flag_gcov_file && flag_json_format)
1491 if (flag_use_stdout)
1493 root->dump (stdout);
1494 printf ("\n");
1496 else
1498 pretty_printer pp;
1499 root->print (&pp);
1500 pp_formatted_text (&pp);
1502 gzFile output = gzopen (gcov_intermediate_filename, "w");
1503 if (output == NULL)
1505 fnotice (stderr, "Cannot open JSON output file %s\n",
1506 gcov_intermediate_filename);
1507 return;
1510 if (gzputs (output, pp_formatted_text (&pp)) == EOF
1511 || gzclose (output))
1513 fnotice (stderr, "Error writing JSON output file %s\n",
1514 gcov_intermediate_filename);
1515 return;
1521 /* Release all memory used. */
1523 static void
1524 release_structures (void)
1526 for (vector<function_info *>::iterator it = functions.begin ();
1527 it != functions.end (); it++)
1528 delete (*it);
1530 sources.resize (0);
1531 names.resize (0);
1532 functions.resize (0);
1533 ident_to_fn.clear ();
1536 /* Generate the names of the graph and data files. If OBJECT_DIRECTORY
1537 is not specified, these are named from FILE_NAME sans extension. If
1538 OBJECT_DIRECTORY is specified and is a directory, the files are in that
1539 directory, but named from the basename of the FILE_NAME, sans extension.
1540 Otherwise OBJECT_DIRECTORY is taken to be the name of the object *file*
1541 and the data files are named from that. */
1543 static void
1544 create_file_names (const char *file_name)
1546 char *cptr;
1547 char *name;
1548 int length = strlen (file_name);
1549 int base;
1551 /* Free previous file names. */
1552 free (bbg_file_name);
1553 free (da_file_name);
1554 da_file_name = bbg_file_name = NULL;
1555 bbg_file_time = 0;
1556 bbg_stamp = 0;
1558 if (object_directory && object_directory[0])
1560 struct stat status;
1562 length += strlen (object_directory) + 2;
1563 name = XNEWVEC (char, length);
1564 name[0] = 0;
1566 base = !stat (object_directory, &status) && S_ISDIR (status.st_mode);
1567 strcat (name, object_directory);
1568 if (base && (!IS_DIR_SEPARATOR (name[strlen (name) - 1])))
1569 strcat (name, "/");
1571 else
1573 name = XNEWVEC (char, length + 1);
1574 strcpy (name, file_name);
1575 base = 0;
1578 if (base)
1580 /* Append source file name. */
1581 const char *cptr = lbasename (file_name);
1582 strcat (name, cptr ? cptr : file_name);
1585 /* Remove the extension. */
1586 cptr = strrchr (CONST_CAST (char *, lbasename (name)), '.');
1587 if (cptr)
1588 *cptr = 0;
1590 length = strlen (name);
1592 bbg_file_name = XNEWVEC (char, length + strlen (GCOV_NOTE_SUFFIX) + 1);
1593 strcpy (bbg_file_name, name);
1594 strcpy (bbg_file_name + length, GCOV_NOTE_SUFFIX);
1596 da_file_name = XNEWVEC (char, length + strlen (GCOV_DATA_SUFFIX) + 1);
1597 strcpy (da_file_name, name);
1598 strcpy (da_file_name + length, GCOV_DATA_SUFFIX);
1600 free (name);
1601 return;
1604 /* Find or create a source file structure for FILE_NAME. Copies
1605 FILE_NAME on creation */
1607 static unsigned
1608 find_source (const char *file_name)
1610 char *canon;
1611 unsigned idx;
1612 struct stat status;
1614 if (!file_name)
1615 file_name = "<unknown>";
1617 name_map needle;
1618 needle.name = file_name;
1620 vector<name_map>::iterator it = std::find (names.begin (), names.end (),
1621 needle);
1622 if (it != names.end ())
1624 idx = it->src;
1625 goto check_date;
1628 /* Not found, try the canonical name. */
1629 canon = canonicalize_name (file_name);
1630 needle.name = canon;
1631 it = std::find (names.begin (), names.end (), needle);
1632 if (it == names.end ())
1634 /* Not found with canonical name, create a new source. */
1635 source_info *src;
1637 idx = sources.size ();
1638 needle = name_map (canon, idx);
1639 names.push_back (needle);
1641 sources.push_back (source_info ());
1642 src = &sources.back ();
1643 src->name = canon;
1644 src->coverage.name = src->name;
1645 src->index = idx;
1646 if (source_length
1647 #if HAVE_DOS_BASED_FILE_SYSTEM
1648 /* You lose if separators don't match exactly in the
1649 prefix. */
1650 && !strncasecmp (source_prefix, src->coverage.name, source_length)
1651 #else
1652 && !strncmp (source_prefix, src->coverage.name, source_length)
1653 #endif
1654 && IS_DIR_SEPARATOR (src->coverage.name[source_length]))
1655 src->coverage.name += source_length + 1;
1656 if (!stat (src->name, &status))
1657 src->file_time = status.st_mtime;
1659 else
1660 idx = it->src;
1662 needle.name = file_name;
1663 if (std::find (names.begin (), names.end (), needle) == names.end ())
1665 /* Append the non-canonical name. */
1666 names.push_back (name_map (xstrdup (file_name), idx));
1669 /* Resort the name map. */
1670 std::sort (names.begin (), names.end ());
1672 check_date:
1673 if (sources[idx].file_time > bbg_file_time)
1675 static int info_emitted;
1677 fnotice (stderr, "%s:source file is newer than notes file '%s'\n",
1678 file_name, bbg_file_name);
1679 if (!info_emitted)
1681 fnotice (stderr,
1682 "(the message is displayed only once per source file)\n");
1683 info_emitted = 1;
1685 sources[idx].file_time = 0;
1688 return idx;
1691 /* Read the notes file. Save functions to FUNCTIONS global vector. */
1693 static void
1694 read_graph_file (void)
1696 unsigned version;
1697 unsigned current_tag = 0;
1698 unsigned tag;
1700 if (!gcov_open (bbg_file_name, 1))
1702 fnotice (stderr, "%s:cannot open notes file\n", bbg_file_name);
1703 return;
1705 bbg_file_time = gcov_time ();
1706 if (!gcov_magic (gcov_read_unsigned (), GCOV_NOTE_MAGIC))
1708 fnotice (stderr, "%s:not a gcov notes file\n", bbg_file_name);
1709 gcov_close ();
1710 return;
1713 version = gcov_read_unsigned ();
1714 if (version != GCOV_VERSION)
1716 char v[4], e[4];
1718 GCOV_UNSIGNED2STRING (v, version);
1719 GCOV_UNSIGNED2STRING (e, GCOV_VERSION);
1721 fnotice (stderr, "%s:version '%.4s', prefer '%.4s'\n",
1722 bbg_file_name, v, e);
1724 bbg_stamp = gcov_read_unsigned ();
1725 bbg_cwd = xstrdup (gcov_read_string ());
1726 bbg_supports_has_unexecuted_blocks = gcov_read_unsigned ();
1728 function_info *fn = NULL;
1729 while ((tag = gcov_read_unsigned ()))
1731 unsigned length = gcov_read_unsigned ();
1732 gcov_position_t base = gcov_position ();
1734 if (tag == GCOV_TAG_FUNCTION)
1736 char *function_name;
1737 unsigned ident;
1738 unsigned lineno_checksum, cfg_checksum;
1740 ident = gcov_read_unsigned ();
1741 lineno_checksum = gcov_read_unsigned ();
1742 cfg_checksum = gcov_read_unsigned ();
1743 function_name = xstrdup (gcov_read_string ());
1744 unsigned artificial = gcov_read_unsigned ();
1745 unsigned src_idx = find_source (gcov_read_string ());
1746 unsigned start_line = gcov_read_unsigned ();
1747 unsigned start_column = gcov_read_unsigned ();
1748 unsigned end_line = gcov_read_unsigned ();
1749 unsigned end_column = gcov_read_unsigned ();
1751 fn = new function_info ();
1752 functions.push_back (fn);
1753 ident_to_fn[ident] = fn;
1755 fn->m_name = function_name;
1756 fn->ident = ident;
1757 fn->lineno_checksum = lineno_checksum;
1758 fn->cfg_checksum = cfg_checksum;
1759 fn->src = src_idx;
1760 fn->start_line = start_line;
1761 fn->start_column = start_column;
1762 fn->end_line = end_line;
1763 fn->end_column = end_column;
1764 fn->artificial = artificial;
1766 current_tag = tag;
1768 else if (fn && tag == GCOV_TAG_BLOCKS)
1770 if (!fn->blocks.empty ())
1771 fnotice (stderr, "%s:already seen blocks for '%s'\n",
1772 bbg_file_name, fn->get_name ());
1773 else
1774 fn->blocks.resize (gcov_read_unsigned ());
1776 else if (fn && tag == GCOV_TAG_ARCS)
1778 unsigned src = gcov_read_unsigned ();
1779 fn->blocks[src].id = src;
1780 unsigned num_dests = GCOV_TAG_ARCS_NUM (length);
1781 block_info *src_blk = &fn->blocks[src];
1782 unsigned mark_catches = 0;
1783 struct arc_info *arc;
1785 if (src >= fn->blocks.size () || fn->blocks[src].succ)
1786 goto corrupt;
1788 while (num_dests--)
1790 unsigned dest = gcov_read_unsigned ();
1791 unsigned flags = gcov_read_unsigned ();
1793 if (dest >= fn->blocks.size ())
1794 goto corrupt;
1795 arc = XCNEW (arc_info);
1797 arc->dst = &fn->blocks[dest];
1798 arc->src = src_blk;
1800 arc->count = 0;
1801 arc->count_valid = 0;
1802 arc->on_tree = !!(flags & GCOV_ARC_ON_TREE);
1803 arc->fake = !!(flags & GCOV_ARC_FAKE);
1804 arc->fall_through = !!(flags & GCOV_ARC_FALLTHROUGH);
1806 arc->succ_next = src_blk->succ;
1807 src_blk->succ = arc;
1808 src_blk->num_succ++;
1810 arc->pred_next = fn->blocks[dest].pred;
1811 fn->blocks[dest].pred = arc;
1812 fn->blocks[dest].num_pred++;
1814 if (arc->fake)
1816 if (src)
1818 /* Exceptional exit from this function, the
1819 source block must be a call. */
1820 fn->blocks[src].is_call_site = 1;
1821 arc->is_call_non_return = 1;
1822 mark_catches = 1;
1824 else
1826 /* Non-local return from a callee of this
1827 function. The destination block is a setjmp. */
1828 arc->is_nonlocal_return = 1;
1829 fn->blocks[dest].is_nonlocal_return = 1;
1833 if (!arc->on_tree)
1834 fn->counts.push_back (0);
1837 if (mark_catches)
1839 /* We have a fake exit from this block. The other
1840 non-fall through exits must be to catch handlers.
1841 Mark them as catch arcs. */
1843 for (arc = src_blk->succ; arc; arc = arc->succ_next)
1844 if (!arc->fake && !arc->fall_through)
1846 arc->is_throw = 1;
1847 fn->has_catch = 1;
1851 else if (fn && tag == GCOV_TAG_LINES)
1853 unsigned blockno = gcov_read_unsigned ();
1854 block_info *block = &fn->blocks[blockno];
1856 if (blockno >= fn->blocks.size ())
1857 goto corrupt;
1859 while (true)
1861 unsigned lineno = gcov_read_unsigned ();
1863 if (lineno)
1864 block->locations.back ().lines.push_back (lineno);
1865 else
1867 const char *file_name = gcov_read_string ();
1869 if (!file_name)
1870 break;
1871 block->locations.push_back (block_location_info
1872 (find_source (file_name)));
1876 else if (current_tag && !GCOV_TAG_IS_SUBTAG (current_tag, tag))
1878 fn = NULL;
1879 current_tag = 0;
1881 gcov_sync (base, length);
1882 if (gcov_is_error ())
1884 corrupt:;
1885 fnotice (stderr, "%s:corrupted\n", bbg_file_name);
1886 break;
1889 gcov_close ();
1891 if (functions.empty ())
1892 fnotice (stderr, "%s:no functions found\n", bbg_file_name);
1895 /* Reads profiles from the count file and attach to each
1896 function. Return nonzero if fatal error. */
1898 static int
1899 read_count_file (void)
1901 unsigned ix;
1902 unsigned version;
1903 unsigned tag;
1904 function_info *fn = NULL;
1905 int error = 0;
1906 map<unsigned, function_info *>::iterator it;
1908 if (!gcov_open (da_file_name, 1))
1910 fnotice (stderr, "%s:cannot open data file, assuming not executed\n",
1911 da_file_name);
1912 no_data_file = 1;
1913 return 0;
1915 if (!gcov_magic (gcov_read_unsigned (), GCOV_DATA_MAGIC))
1917 fnotice (stderr, "%s:not a gcov data file\n", da_file_name);
1918 cleanup:;
1919 gcov_close ();
1920 return 1;
1922 version = gcov_read_unsigned ();
1923 if (version != GCOV_VERSION)
1925 char v[4], e[4];
1927 GCOV_UNSIGNED2STRING (v, version);
1928 GCOV_UNSIGNED2STRING (e, GCOV_VERSION);
1930 fnotice (stderr, "%s:version '%.4s', prefer version '%.4s'\n",
1931 da_file_name, v, e);
1933 tag = gcov_read_unsigned ();
1934 if (tag != bbg_stamp)
1936 fnotice (stderr, "%s:stamp mismatch with notes file\n", da_file_name);
1937 goto cleanup;
1940 while ((tag = gcov_read_unsigned ()))
1942 unsigned length = gcov_read_unsigned ();
1943 int read_length = (int)length;
1944 unsigned long base = gcov_position ();
1946 if (tag == GCOV_TAG_OBJECT_SUMMARY)
1948 struct gcov_summary summary;
1949 gcov_read_summary (&summary);
1950 object_runs = summary.runs;
1952 else if (tag == GCOV_TAG_FUNCTION && !length)
1953 ; /* placeholder */
1954 else if (tag == GCOV_TAG_FUNCTION && length == GCOV_TAG_FUNCTION_LENGTH)
1956 unsigned ident;
1957 ident = gcov_read_unsigned ();
1958 fn = NULL;
1959 it = ident_to_fn.find (ident);
1960 if (it != ident_to_fn.end ())
1961 fn = it->second;
1963 if (!fn)
1965 else if (gcov_read_unsigned () != fn->lineno_checksum
1966 || gcov_read_unsigned () != fn->cfg_checksum)
1968 mismatch:;
1969 fnotice (stderr, "%s:profile mismatch for '%s'\n",
1970 da_file_name, fn->get_name ());
1971 goto cleanup;
1974 else if (tag == GCOV_TAG_FOR_COUNTER (GCOV_COUNTER_ARCS) && fn)
1976 length = abs (read_length);
1977 if (length != GCOV_TAG_COUNTER_LENGTH (fn->counts.size ()))
1978 goto mismatch;
1980 if (read_length > 0)
1981 for (ix = 0; ix != fn->counts.size (); ix++)
1982 fn->counts[ix] += gcov_read_counter ();
1984 if (read_length < 0)
1985 read_length = 0;
1986 gcov_sync (base, read_length);
1987 if ((error = gcov_is_error ()))
1989 fnotice (stderr,
1990 error < 0
1991 ? N_("%s:overflowed\n")
1992 : N_("%s:corrupted\n"),
1993 da_file_name);
1994 goto cleanup;
1998 gcov_close ();
1999 return 0;
2002 /* Solve the flow graph. Propagate counts from the instrumented arcs
2003 to the blocks and the uninstrumented arcs. */
2005 static void
2006 solve_flow_graph (function_info *fn)
2008 unsigned ix;
2009 arc_info *arc;
2010 gcov_type *count_ptr = &fn->counts.front ();
2011 block_info *blk;
2012 block_info *valid_blocks = NULL; /* valid, but unpropagated blocks. */
2013 block_info *invalid_blocks = NULL; /* invalid, but inferable blocks. */
2015 /* The arcs were built in reverse order. Fix that now. */
2016 for (ix = fn->blocks.size (); ix--;)
2018 arc_info *arc_p, *arc_n;
2020 for (arc_p = NULL, arc = fn->blocks[ix].succ; arc;
2021 arc_p = arc, arc = arc_n)
2023 arc_n = arc->succ_next;
2024 arc->succ_next = arc_p;
2026 fn->blocks[ix].succ = arc_p;
2028 for (arc_p = NULL, arc = fn->blocks[ix].pred; arc;
2029 arc_p = arc, arc = arc_n)
2031 arc_n = arc->pred_next;
2032 arc->pred_next = arc_p;
2034 fn->blocks[ix].pred = arc_p;
2037 if (fn->blocks.size () < 2)
2038 fnotice (stderr, "%s:'%s' lacks entry and/or exit blocks\n",
2039 bbg_file_name, fn->get_name ());
2040 else
2042 if (fn->blocks[ENTRY_BLOCK].num_pred)
2043 fnotice (stderr, "%s:'%s' has arcs to entry block\n",
2044 bbg_file_name, fn->get_name ());
2045 else
2046 /* We can't deduce the entry block counts from the lack of
2047 predecessors. */
2048 fn->blocks[ENTRY_BLOCK].num_pred = ~(unsigned)0;
2050 if (fn->blocks[EXIT_BLOCK].num_succ)
2051 fnotice (stderr, "%s:'%s' has arcs from exit block\n",
2052 bbg_file_name, fn->get_name ());
2053 else
2054 /* Likewise, we can't deduce exit block counts from the lack
2055 of its successors. */
2056 fn->blocks[EXIT_BLOCK].num_succ = ~(unsigned)0;
2059 /* Propagate the measured counts, this must be done in the same
2060 order as the code in profile.c */
2061 for (unsigned i = 0; i < fn->blocks.size (); i++)
2063 blk = &fn->blocks[i];
2064 block_info const *prev_dst = NULL;
2065 int out_of_order = 0;
2066 int non_fake_succ = 0;
2068 for (arc = blk->succ; arc; arc = arc->succ_next)
2070 if (!arc->fake)
2071 non_fake_succ++;
2073 if (!arc->on_tree)
2075 if (count_ptr)
2076 arc->count = *count_ptr++;
2077 arc->count_valid = 1;
2078 blk->num_succ--;
2079 arc->dst->num_pred--;
2081 if (prev_dst && prev_dst > arc->dst)
2082 out_of_order = 1;
2083 prev_dst = arc->dst;
2085 if (non_fake_succ == 1)
2087 /* If there is only one non-fake exit, it is an
2088 unconditional branch. */
2089 for (arc = blk->succ; arc; arc = arc->succ_next)
2090 if (!arc->fake)
2092 arc->is_unconditional = 1;
2093 /* If this block is instrumenting a call, it might be
2094 an artificial block. It is not artificial if it has
2095 a non-fallthrough exit, or the destination of this
2096 arc has more than one entry. Mark the destination
2097 block as a return site, if none of those conditions
2098 hold. */
2099 if (blk->is_call_site && arc->fall_through
2100 && arc->dst->pred == arc && !arc->pred_next)
2101 arc->dst->is_call_return = 1;
2105 /* Sort the successor arcs into ascending dst order. profile.c
2106 normally produces arcs in the right order, but sometimes with
2107 one or two out of order. We're not using a particularly
2108 smart sort. */
2109 if (out_of_order)
2111 arc_info *start = blk->succ;
2112 unsigned changes = 1;
2114 while (changes)
2116 arc_info *arc, *arc_p, *arc_n;
2118 changes = 0;
2119 for (arc_p = NULL, arc = start; (arc_n = arc->succ_next);)
2121 if (arc->dst > arc_n->dst)
2123 changes = 1;
2124 if (arc_p)
2125 arc_p->succ_next = arc_n;
2126 else
2127 start = arc_n;
2128 arc->succ_next = arc_n->succ_next;
2129 arc_n->succ_next = arc;
2130 arc_p = arc_n;
2132 else
2134 arc_p = arc;
2135 arc = arc_n;
2139 blk->succ = start;
2142 /* Place it on the invalid chain, it will be ignored if that's
2143 wrong. */
2144 blk->invalid_chain = 1;
2145 blk->chain = invalid_blocks;
2146 invalid_blocks = blk;
2149 while (invalid_blocks || valid_blocks)
2151 while ((blk = invalid_blocks))
2153 gcov_type total = 0;
2154 const arc_info *arc;
2156 invalid_blocks = blk->chain;
2157 blk->invalid_chain = 0;
2158 if (!blk->num_succ)
2159 for (arc = blk->succ; arc; arc = arc->succ_next)
2160 total += arc->count;
2161 else if (!blk->num_pred)
2162 for (arc = blk->pred; arc; arc = arc->pred_next)
2163 total += arc->count;
2164 else
2165 continue;
2167 blk->count = total;
2168 blk->count_valid = 1;
2169 blk->chain = valid_blocks;
2170 blk->valid_chain = 1;
2171 valid_blocks = blk;
2173 while ((blk = valid_blocks))
2175 gcov_type total;
2176 arc_info *arc, *inv_arc;
2178 valid_blocks = blk->chain;
2179 blk->valid_chain = 0;
2180 if (blk->num_succ == 1)
2182 block_info *dst;
2184 total = blk->count;
2185 inv_arc = NULL;
2186 for (arc = blk->succ; arc; arc = arc->succ_next)
2188 total -= arc->count;
2189 if (!arc->count_valid)
2190 inv_arc = arc;
2192 dst = inv_arc->dst;
2193 inv_arc->count_valid = 1;
2194 inv_arc->count = total;
2195 blk->num_succ--;
2196 dst->num_pred--;
2197 if (dst->count_valid)
2199 if (dst->num_pred == 1 && !dst->valid_chain)
2201 dst->chain = valid_blocks;
2202 dst->valid_chain = 1;
2203 valid_blocks = dst;
2206 else
2208 if (!dst->num_pred && !dst->invalid_chain)
2210 dst->chain = invalid_blocks;
2211 dst->invalid_chain = 1;
2212 invalid_blocks = dst;
2216 if (blk->num_pred == 1)
2218 block_info *src;
2220 total = blk->count;
2221 inv_arc = NULL;
2222 for (arc = blk->pred; arc; arc = arc->pred_next)
2224 total -= arc->count;
2225 if (!arc->count_valid)
2226 inv_arc = arc;
2228 src = inv_arc->src;
2229 inv_arc->count_valid = 1;
2230 inv_arc->count = total;
2231 blk->num_pred--;
2232 src->num_succ--;
2233 if (src->count_valid)
2235 if (src->num_succ == 1 && !src->valid_chain)
2237 src->chain = valid_blocks;
2238 src->valid_chain = 1;
2239 valid_blocks = src;
2242 else
2244 if (!src->num_succ && !src->invalid_chain)
2246 src->chain = invalid_blocks;
2247 src->invalid_chain = 1;
2248 invalid_blocks = src;
2255 /* If the graph has been correctly solved, every block will have a
2256 valid count. */
2257 for (unsigned i = 0; ix < fn->blocks.size (); i++)
2258 if (!fn->blocks[i].count_valid)
2260 fnotice (stderr, "%s:graph is unsolvable for '%s'\n",
2261 bbg_file_name, fn->get_name ());
2262 break;
2266 /* Mark all the blocks only reachable via an incoming catch. */
2268 static void
2269 find_exception_blocks (function_info *fn)
2271 unsigned ix;
2272 block_info **queue = XALLOCAVEC (block_info *, fn->blocks.size ());
2274 /* First mark all blocks as exceptional. */
2275 for (ix = fn->blocks.size (); ix--;)
2276 fn->blocks[ix].exceptional = 1;
2278 /* Now mark all the blocks reachable via non-fake edges */
2279 queue[0] = &fn->blocks[0];
2280 queue[0]->exceptional = 0;
2281 for (ix = 1; ix;)
2283 block_info *block = queue[--ix];
2284 const arc_info *arc;
2286 for (arc = block->succ; arc; arc = arc->succ_next)
2287 if (!arc->fake && !arc->is_throw && arc->dst->exceptional)
2289 arc->dst->exceptional = 0;
2290 queue[ix++] = arc->dst;
2296 /* Increment totals in COVERAGE according to arc ARC. */
2298 static void
2299 add_branch_counts (coverage_info *coverage, const arc_info *arc)
2301 if (arc->is_call_non_return)
2303 coverage->calls++;
2304 if (arc->src->count)
2305 coverage->calls_executed++;
2307 else if (!arc->is_unconditional)
2309 coverage->branches++;
2310 if (arc->src->count)
2311 coverage->branches_executed++;
2312 if (arc->count)
2313 coverage->branches_taken++;
2317 /* Format COUNT, if flag_human_readable_numbers is set, return it human
2318 readable format. */
2320 static char const *
2321 format_count (gcov_type count)
2323 static char buffer[64];
2324 const char *units = " kMGTPEZY";
2326 if (count < 1000 || !flag_human_readable_numbers)
2328 sprintf (buffer, "%" PRId64, count);
2329 return buffer;
2332 unsigned i;
2333 gcov_type divisor = 1;
2334 for (i = 0; units[i+1]; i++, divisor *= 1000)
2336 if (count + divisor / 2 < 1000 * divisor)
2337 break;
2339 float r = 1.0f * count / divisor;
2340 sprintf (buffer, "%.1f%c", r, units[i]);
2341 return buffer;
2344 /* Format a GCOV_TYPE integer as either a percent ratio, or absolute
2345 count. If DECIMAL_PLACES >= 0, format TOP/BOTTOM * 100 to DECIMAL_PLACES.
2346 If DECIMAL_PLACES is zero, no decimal point is printed. Only print 100% when
2347 TOP==BOTTOM and only print 0% when TOP=0. If DECIMAL_PLACES < 0, then simply
2348 format TOP. Return pointer to a static string. */
2350 static char const *
2351 format_gcov (gcov_type top, gcov_type bottom, int decimal_places)
2353 static char buffer[20];
2355 if (decimal_places >= 0)
2357 float ratio = bottom ? 100.0f * top / bottom: 0;
2359 /* Round up to 1% if there's a small non-zero value. */
2360 if (ratio > 0.0f && ratio < 0.5f && decimal_places == 0)
2361 ratio = 1.0f;
2362 sprintf (buffer, "%.*f%%", decimal_places, ratio);
2364 else
2365 return format_count (top);
2367 return buffer;
2370 /* Summary of execution */
2372 static void
2373 executed_summary (unsigned lines, unsigned executed)
2375 if (lines)
2376 fnotice (stdout, "Lines executed:%s of %d\n",
2377 format_gcov (executed, lines, 2), lines);
2378 else
2379 fnotice (stdout, "No executable lines\n");
2382 /* Output summary info for a function. */
2384 static void
2385 function_summary (const coverage_info *coverage)
2387 fnotice (stdout, "%s '%s'\n", "Function", coverage->name);
2388 executed_summary (coverage->lines, coverage->lines_executed);
2391 /* Output summary info for a file. */
2393 static void
2394 file_summary (const coverage_info *coverage)
2396 fnotice (stdout, "%s '%s'\n", "File", coverage->name);
2397 executed_summary (coverage->lines, coverage->lines_executed);
2399 if (flag_branches)
2401 if (coverage->branches)
2403 fnotice (stdout, "Branches executed:%s of %d\n",
2404 format_gcov (coverage->branches_executed,
2405 coverage->branches, 2),
2406 coverage->branches);
2407 fnotice (stdout, "Taken at least once:%s of %d\n",
2408 format_gcov (coverage->branches_taken,
2409 coverage->branches, 2),
2410 coverage->branches);
2412 else
2413 fnotice (stdout, "No branches\n");
2414 if (coverage->calls)
2415 fnotice (stdout, "Calls executed:%s of %d\n",
2416 format_gcov (coverage->calls_executed, coverage->calls, 2),
2417 coverage->calls);
2418 else
2419 fnotice (stdout, "No calls\n");
2423 /* Canonicalize the filename NAME by canonicalizing directory
2424 separators, eliding . components and resolving .. components
2425 appropriately. Always returns a unique string. */
2427 static char *
2428 canonicalize_name (const char *name)
2430 /* The canonical name cannot be longer than the incoming name. */
2431 char *result = XNEWVEC (char, strlen (name) + 1);
2432 const char *base = name, *probe;
2433 char *ptr = result;
2434 char *dd_base;
2435 int slash = 0;
2437 #if HAVE_DOS_BASED_FILE_SYSTEM
2438 if (base[0] && base[1] == ':')
2440 result[0] = base[0];
2441 result[1] = ':';
2442 base += 2;
2443 ptr += 2;
2445 #endif
2446 for (dd_base = ptr; *base; base = probe)
2448 size_t len;
2450 for (probe = base; *probe; probe++)
2451 if (IS_DIR_SEPARATOR (*probe))
2452 break;
2454 len = probe - base;
2455 if (len == 1 && base[0] == '.')
2456 /* Elide a '.' directory */
2458 else if (len == 2 && base[0] == '.' && base[1] == '.')
2460 /* '..', we can only elide it and the previous directory, if
2461 we're not a symlink. */
2462 struct stat ATTRIBUTE_UNUSED buf;
2464 *ptr = 0;
2465 if (dd_base == ptr
2466 #if defined (S_ISLNK)
2467 /* S_ISLNK is not POSIX.1-1996. */
2468 || stat (result, &buf) || S_ISLNK (buf.st_mode)
2469 #endif
2472 /* Cannot elide, or unreadable or a symlink. */
2473 dd_base = ptr + 2 + slash;
2474 goto regular;
2476 while (ptr != dd_base && *ptr != '/')
2477 ptr--;
2478 slash = ptr != result;
2480 else
2482 regular:
2483 /* Regular pathname component. */
2484 if (slash)
2485 *ptr++ = '/';
2486 memcpy (ptr, base, len);
2487 ptr += len;
2488 slash = 1;
2491 for (; IS_DIR_SEPARATOR (*probe); probe++)
2492 continue;
2494 *ptr = 0;
2496 return result;
2499 /* Print hex representation of 16 bytes from SUM and write it to BUFFER. */
2501 static void
2502 md5sum_to_hex (const char *sum, char *buffer)
2504 for (unsigned i = 0; i < 16; i++)
2505 sprintf (buffer + (2 * i), "%02x", (unsigned char)sum[i]);
2508 /* Generate an output file name. INPUT_NAME is the canonicalized main
2509 input file and SRC_NAME is the canonicalized file name.
2510 LONG_OUTPUT_NAMES and PRESERVE_PATHS affect name generation. With
2511 long_output_names we prepend the processed name of the input file
2512 to each output name (except when the current source file is the
2513 input file, so you don't get a double concatenation). The two
2514 components are separated by '##'. With preserve_paths we create a
2515 filename from all path components of the source file, replacing '/'
2516 with '#', and .. with '^', without it we simply take the basename
2517 component. (Remember, the canonicalized name will already have
2518 elided '.' components and converted \\ separators.) */
2520 static char *
2521 make_gcov_file_name (const char *input_name, const char *src_name)
2523 char *ptr;
2524 char *result;
2526 if (flag_long_names && input_name && strcmp (src_name, input_name))
2528 /* Generate the input filename part. */
2529 result = XNEWVEC (char, strlen (input_name) + strlen (src_name) + 10);
2531 ptr = result;
2532 ptr = mangle_name (input_name, ptr);
2533 ptr[0] = ptr[1] = '#';
2534 ptr += 2;
2536 else
2538 result = XNEWVEC (char, strlen (src_name) + 10);
2539 ptr = result;
2542 ptr = mangle_name (src_name, ptr);
2543 strcpy (ptr, ".gcov");
2545 /* When hashing filenames, we shorten them by only using the filename
2546 component and appending a hash of the full (mangled) pathname. */
2547 if (flag_hash_filenames)
2549 md5_ctx ctx;
2550 char md5sum[16];
2551 char md5sum_hex[33];
2553 md5_init_ctx (&ctx);
2554 md5_process_bytes (src_name, strlen (src_name), &ctx);
2555 md5_finish_ctx (&ctx, md5sum);
2556 md5sum_to_hex (md5sum, md5sum_hex);
2557 free (result);
2559 result = XNEWVEC (char, strlen (src_name) + 50);
2560 ptr = result;
2561 ptr = mangle_name (src_name, ptr);
2562 ptr[0] = ptr[1] = '#';
2563 ptr += 2;
2564 memcpy (ptr, md5sum_hex, 32);
2565 ptr += 32;
2566 strcpy (ptr, ".gcov");
2569 return result;
2572 /* Mangle BASE name, copy it at the beginning of PTR buffer and
2573 return address of the \0 character of the buffer. */
2575 static char *
2576 mangle_name (char const *base, char *ptr)
2578 size_t len;
2580 /* Generate the source filename part. */
2581 if (!flag_preserve_paths)
2582 base = lbasename (base);
2583 else
2584 base = mangle_path (base);
2586 len = strlen (base);
2587 memcpy (ptr, base, len);
2588 ptr += len;
2590 return ptr;
2593 /* Scan through the bb_data for each line in the block, increment
2594 the line number execution count indicated by the execution count of
2595 the appropriate basic block. */
2597 static void
2598 add_line_counts (coverage_info *coverage, function_info *fn)
2600 bool has_any_line = false;
2601 /* Scan each basic block. */
2602 for (unsigned ix = 0; ix != fn->blocks.size (); ix++)
2604 line_info *line = NULL;
2605 block_info *block = &fn->blocks[ix];
2606 if (block->count && ix && ix + 1 != fn->blocks.size ())
2607 fn->blocks_executed++;
2608 for (unsigned i = 0; i < block->locations.size (); i++)
2610 unsigned src_idx = block->locations[i].source_file_idx;
2611 vector<unsigned> &lines = block->locations[i].lines;
2613 block->cycle.arc = NULL;
2614 block->cycle.ident = ~0U;
2616 for (unsigned j = 0; j < lines.size (); j++)
2618 unsigned ln = lines[j];
2620 /* Line belongs to a function that is in a group. */
2621 if (fn->group_line_p (ln, src_idx))
2623 gcc_assert (lines[j] - fn->start_line < fn->lines.size ());
2624 line = &(fn->lines[lines[j] - fn->start_line]);
2625 line->exists = 1;
2626 if (!block->exceptional)
2628 line->unexceptional = 1;
2629 if (block->count == 0)
2630 line->has_unexecuted_block = 1;
2632 line->count += block->count;
2634 else
2636 gcc_assert (ln < sources[src_idx].lines.size ());
2637 line = &(sources[src_idx].lines[ln]);
2638 if (coverage)
2640 if (!line->exists)
2641 coverage->lines++;
2642 if (!line->count && block->count)
2643 coverage->lines_executed++;
2645 line->exists = 1;
2646 if (!block->exceptional)
2648 line->unexceptional = 1;
2649 if (block->count == 0)
2650 line->has_unexecuted_block = 1;
2652 line->count += block->count;
2656 has_any_line = true;
2658 if (!ix || ix + 1 == fn->blocks.size ())
2659 /* Entry or exit block. */;
2660 else if (line != NULL)
2662 line->blocks.push_back (block);
2664 if (flag_branches)
2666 arc_info *arc;
2668 for (arc = block->succ; arc; arc = arc->succ_next)
2669 line->branches.push_back (arc);
2675 if (!has_any_line)
2676 fnotice (stderr, "%s:no lines for '%s'\n", bbg_file_name,
2677 fn->get_name ());
2680 /* Accumulate info for LINE that belongs to SRC source file. If ADD_COVERAGE
2681 is set to true, update source file summary. */
2683 static void accumulate_line_info (line_info *line, source_info *src,
2684 bool add_coverage)
2686 if (add_coverage)
2687 for (vector<arc_info *>::iterator it = line->branches.begin ();
2688 it != line->branches.end (); it++)
2689 add_branch_counts (&src->coverage, *it);
2691 if (!line->blocks.empty ())
2693 /* The user expects the line count to be the number of times
2694 a line has been executed. Simply summing the block count
2695 will give an artificially high number. The Right Thing
2696 is to sum the entry counts to the graph of blocks on this
2697 line, then find the elementary cycles of the local graph
2698 and add the transition counts of those cycles. */
2699 gcov_type count = 0;
2701 /* Cycle detection. */
2702 for (vector<block_info *>::iterator it = line->blocks.begin ();
2703 it != line->blocks.end (); it++)
2705 for (arc_info *arc = (*it)->pred; arc; arc = arc->pred_next)
2706 if (!line->has_block (arc->src))
2707 count += arc->count;
2708 for (arc_info *arc = (*it)->succ; arc; arc = arc->succ_next)
2709 arc->cs_count = arc->count;
2712 /* Now, add the count of loops entirely on this line. */
2713 count += get_cycles_count (*line);
2714 line->count = count;
2716 if (line->count > src->maximum_count)
2717 src->maximum_count = line->count;
2720 if (line->exists && add_coverage)
2722 src->coverage.lines++;
2723 if (line->count)
2724 src->coverage.lines_executed++;
2728 /* Accumulate the line counts of a file. */
2730 static void
2731 accumulate_line_counts (source_info *src)
2733 /* First work on group functions. */
2734 for (vector<function_info *>::iterator it = src->functions.begin ();
2735 it != src->functions.end (); it++)
2737 function_info *fn = *it;
2739 if (fn->src != src->index || !fn->is_group)
2740 continue;
2742 for (vector<line_info>::iterator it2 = fn->lines.begin ();
2743 it2 != fn->lines.end (); it2++)
2745 line_info *line = &(*it2);
2746 accumulate_line_info (line, src, false);
2750 /* Work on global lines that line in source file SRC. */
2751 for (vector<line_info>::iterator it = src->lines.begin ();
2752 it != src->lines.end (); it++)
2753 accumulate_line_info (&(*it), src, true);
2755 /* If not using intermediate mode, sum lines of group functions and
2756 add them to lines that live in a source file. */
2757 if (!flag_json_format)
2758 for (vector<function_info *>::iterator it = src->functions.begin ();
2759 it != src->functions.end (); it++)
2761 function_info *fn = *it;
2763 if (fn->src != src->index || !fn->is_group)
2764 continue;
2766 for (unsigned i = 0; i < fn->lines.size (); i++)
2768 line_info *fn_line = &fn->lines[i];
2769 if (fn_line->exists)
2771 unsigned ln = fn->start_line + i;
2772 line_info *src_line = &src->lines[ln];
2774 if (!src_line->exists)
2775 src->coverage.lines++;
2776 if (!src_line->count && fn_line->count)
2777 src->coverage.lines_executed++;
2779 src_line->count += fn_line->count;
2780 src_line->exists = 1;
2782 if (fn_line->has_unexecuted_block)
2783 src_line->has_unexecuted_block = 1;
2785 if (fn_line->unexceptional)
2786 src_line->unexceptional = 1;
2792 /* Output information about ARC number IX. Returns nonzero if
2793 anything is output. */
2795 static int
2796 output_branch_count (FILE *gcov_file, int ix, const arc_info *arc)
2798 if (arc->is_call_non_return)
2800 if (arc->src->count)
2802 fnotice (gcov_file, "call %2d returned %s\n", ix,
2803 format_gcov (arc->src->count - arc->count,
2804 arc->src->count, -flag_counts));
2806 else
2807 fnotice (gcov_file, "call %2d never executed\n", ix);
2809 else if (!arc->is_unconditional)
2811 if (arc->src->count)
2812 fnotice (gcov_file, "branch %2d taken %s%s", ix,
2813 format_gcov (arc->count, arc->src->count, -flag_counts),
2814 arc->fall_through ? " (fallthrough)"
2815 : arc->is_throw ? " (throw)" : "");
2816 else
2817 fnotice (gcov_file, "branch %2d never executed", ix);
2819 if (flag_verbose)
2820 fnotice (gcov_file, " (BB %d)", arc->dst->id);
2822 fnotice (gcov_file, "\n");
2824 else if (flag_unconditional && !arc->dst->is_call_return)
2826 if (arc->src->count)
2827 fnotice (gcov_file, "unconditional %2d taken %s\n", ix,
2828 format_gcov (arc->count, arc->src->count, -flag_counts));
2829 else
2830 fnotice (gcov_file, "unconditional %2d never executed\n", ix);
2832 else
2833 return 0;
2834 return 1;
2837 static const char *
2838 read_line (FILE *file)
2840 static char *string;
2841 static size_t string_len;
2842 size_t pos = 0;
2843 char *ptr;
2845 if (!string_len)
2847 string_len = 200;
2848 string = XNEWVEC (char, string_len);
2851 while ((ptr = fgets (string + pos, string_len - pos, file)))
2853 size_t len = strlen (string + pos);
2855 if (len && string[pos + len - 1] == '\n')
2857 string[pos + len - 1] = 0;
2858 return string;
2860 pos += len;
2861 /* If the file contains NUL characters or an incomplete
2862 last line, which can happen more than once in one run,
2863 we have to avoid doubling the STRING_LEN unnecessarily. */
2864 if (pos > string_len / 2)
2866 string_len *= 2;
2867 string = XRESIZEVEC (char, string, string_len);
2871 return pos ? string : NULL;
2874 /* Pad string S with spaces from left to have total width equal to 9. */
2876 static void
2877 pad_count_string (string &s)
2879 if (s.size () < 9)
2880 s.insert (0, 9 - s.size (), ' ');
2883 /* Print GCOV line beginning to F stream. If EXISTS is set to true, the
2884 line exists in source file. UNEXCEPTIONAL indicated that it's not in
2885 an exceptional statement. The output is printed for LINE_NUM of given
2886 COUNT of executions. EXCEPTIONAL_STRING and UNEXCEPTIONAL_STRING are
2887 used to indicate non-executed blocks. */
2889 static void
2890 output_line_beginning (FILE *f, bool exists, bool unexceptional,
2891 bool has_unexecuted_block,
2892 gcov_type count, unsigned line_num,
2893 const char *exceptional_string,
2894 const char *unexceptional_string,
2895 unsigned int maximum_count)
2897 string s;
2898 if (exists)
2900 if (count > 0)
2902 s = format_gcov (count, 0, -1);
2903 if (has_unexecuted_block
2904 && bbg_supports_has_unexecuted_blocks)
2906 if (flag_use_colors)
2908 pad_count_string (s);
2909 s.insert (0, SGR_SEQ (COLOR_BG_MAGENTA
2910 COLOR_SEPARATOR COLOR_FG_WHITE));
2911 s += SGR_RESET;
2913 else
2914 s += "*";
2916 pad_count_string (s);
2918 else
2920 if (flag_use_colors)
2922 s = "0";
2923 pad_count_string (s);
2924 if (unexceptional)
2925 s.insert (0, SGR_SEQ (COLOR_BG_RED
2926 COLOR_SEPARATOR COLOR_FG_WHITE));
2927 else
2928 s.insert (0, SGR_SEQ (COLOR_BG_CYAN
2929 COLOR_SEPARATOR COLOR_FG_WHITE));
2930 s += SGR_RESET;
2932 else
2934 s = unexceptional ? unexceptional_string : exceptional_string;
2935 pad_count_string (s);
2939 else
2941 s = "-";
2942 pad_count_string (s);
2945 /* Format line number in output. */
2946 char buffer[16];
2947 sprintf (buffer, "%5u", line_num);
2948 string linestr (buffer);
2950 if (flag_use_hotness_colors && maximum_count)
2952 if (count * 2 > maximum_count) /* > 50%. */
2953 linestr.insert (0, SGR_SEQ (COLOR_BG_RED));
2954 else if (count * 5 > maximum_count) /* > 20%. */
2955 linestr.insert (0, SGR_SEQ (COLOR_BG_YELLOW));
2956 else if (count * 10 > maximum_count) /* > 10%. */
2957 linestr.insert (0, SGR_SEQ (COLOR_BG_GREEN));
2958 linestr += SGR_RESET;
2961 fprintf (f, "%s:%s", s.c_str (), linestr.c_str ());
2964 static void
2965 print_source_line (FILE *f, const vector<const char *> &source_lines,
2966 unsigned line)
2968 gcc_assert (line >= 1);
2969 gcc_assert (line <= source_lines.size ());
2971 fprintf (f, ":%s\n", source_lines[line - 1]);
2974 /* Output line details for LINE and print it to F file. LINE lives on
2975 LINE_NUM. */
2977 static void
2978 output_line_details (FILE *f, const line_info *line, unsigned line_num)
2980 if (flag_all_blocks)
2982 arc_info *arc;
2983 int ix, jx;
2985 ix = jx = 0;
2986 for (vector<block_info *>::const_iterator it = line->blocks.begin ();
2987 it != line->blocks.end (); it++)
2989 if (!(*it)->is_call_return)
2991 output_line_beginning (f, line->exists,
2992 (*it)->exceptional, false,
2993 (*it)->count, line_num,
2994 "%%%%%", "$$$$$", 0);
2995 fprintf (f, "-block %2d", ix++);
2996 if (flag_verbose)
2997 fprintf (f, " (BB %u)", (*it)->id);
2998 fprintf (f, "\n");
3000 if (flag_branches)
3001 for (arc = (*it)->succ; arc; arc = arc->succ_next)
3002 jx += output_branch_count (f, jx, arc);
3005 else if (flag_branches)
3007 int ix;
3009 ix = 0;
3010 for (vector<arc_info *>::const_iterator it = line->branches.begin ();
3011 it != line->branches.end (); it++)
3012 ix += output_branch_count (f, ix, (*it));
3016 /* Output detail statistics about function FN to file F. */
3018 static void
3019 output_function_details (FILE *f, function_info *fn)
3021 if (!flag_branches)
3022 return;
3024 arc_info *arc = fn->blocks[EXIT_BLOCK].pred;
3025 gcov_type return_count = fn->blocks[EXIT_BLOCK].count;
3026 gcov_type called_count = fn->blocks[ENTRY_BLOCK].count;
3028 for (; arc; arc = arc->pred_next)
3029 if (arc->fake)
3030 return_count -= arc->count;
3032 fprintf (f, "function %s", fn->get_name ());
3033 fprintf (f, " called %s",
3034 format_gcov (called_count, 0, -1));
3035 fprintf (f, " returned %s",
3036 format_gcov (return_count, called_count, 0));
3037 fprintf (f, " blocks executed %s",
3038 format_gcov (fn->blocks_executed, fn->get_block_count (), 0));
3039 fprintf (f, "\n");
3042 /* Read in the source file one line at a time, and output that line to
3043 the gcov file preceded by its execution count and other
3044 information. */
3046 static void
3047 output_lines (FILE *gcov_file, const source_info *src)
3049 #define DEFAULT_LINE_START " -: 0:"
3050 #define FN_SEPARATOR "------------------\n"
3052 FILE *source_file;
3053 const char *retval;
3055 /* Print colorization legend. */
3056 if (flag_use_colors)
3057 fprintf (gcov_file, "%s",
3058 DEFAULT_LINE_START "Colorization: profile count: " \
3059 SGR_SEQ (COLOR_BG_CYAN) "zero coverage (exceptional)" SGR_RESET \
3060 " " \
3061 SGR_SEQ (COLOR_BG_RED) "zero coverage (unexceptional)" SGR_RESET \
3062 " " \
3063 SGR_SEQ (COLOR_BG_MAGENTA) "unexecuted block" SGR_RESET "\n");
3065 if (flag_use_hotness_colors)
3066 fprintf (gcov_file, "%s",
3067 DEFAULT_LINE_START "Colorization: line numbers: hotness: " \
3068 SGR_SEQ (COLOR_BG_RED) "> 50%" SGR_RESET " " \
3069 SGR_SEQ (COLOR_BG_YELLOW) "> 20%" SGR_RESET " " \
3070 SGR_SEQ (COLOR_BG_GREEN) "> 10%" SGR_RESET "\n");
3072 fprintf (gcov_file, DEFAULT_LINE_START "Source:%s\n", src->coverage.name);
3073 if (!multiple_files)
3075 fprintf (gcov_file, DEFAULT_LINE_START "Graph:%s\n", bbg_file_name);
3076 fprintf (gcov_file, DEFAULT_LINE_START "Data:%s\n",
3077 no_data_file ? "-" : da_file_name);
3078 fprintf (gcov_file, DEFAULT_LINE_START "Runs:%u\n", object_runs);
3081 source_file = fopen (src->name, "r");
3082 if (!source_file)
3083 fnotice (stderr, "Cannot open source file %s\n", src->name);
3084 else if (src->file_time == 0)
3085 fprintf (gcov_file, DEFAULT_LINE_START "Source is newer than graph\n");
3087 vector<const char *> source_lines;
3088 if (source_file)
3089 while ((retval = read_line (source_file)) != NULL)
3090 source_lines.push_back (xstrdup (retval));
3092 unsigned line_start_group = 0;
3093 vector<function_info *> *fns;
3095 for (unsigned line_num = 1; line_num <= source_lines.size (); line_num++)
3097 if (line_num >= src->lines.size ())
3099 fprintf (gcov_file, "%9s:%5u", "-", line_num);
3100 print_source_line (gcov_file, source_lines, line_num);
3101 continue;
3104 const line_info *line = &src->lines[line_num];
3106 if (line_start_group == 0)
3108 fns = src->get_functions_at_location (line_num);
3109 if (fns != NULL && fns->size () > 1)
3111 /* It's possible to have functions that partially overlap,
3112 thus take the maximum end_line of functions starting
3113 at LINE_NUM. */
3114 for (unsigned i = 0; i < fns->size (); i++)
3115 if ((*fns)[i]->end_line > line_start_group)
3116 line_start_group = (*fns)[i]->end_line;
3118 else if (fns != NULL && fns->size () == 1)
3120 function_info *fn = (*fns)[0];
3121 output_function_details (gcov_file, fn);
3125 /* For lines which don't exist in the .bb file, print '-' before
3126 the source line. For lines which exist but were never
3127 executed, print '#####' or '=====' before the source line.
3128 Otherwise, print the execution count before the source line.
3129 There are 16 spaces of indentation added before the source
3130 line so that tabs won't be messed up. */
3131 output_line_beginning (gcov_file, line->exists, line->unexceptional,
3132 line->has_unexecuted_block, line->count,
3133 line_num, "=====", "#####", src->maximum_count);
3135 print_source_line (gcov_file, source_lines, line_num);
3136 output_line_details (gcov_file, line, line_num);
3138 if (line_start_group == line_num)
3140 for (vector<function_info *>::iterator it = fns->begin ();
3141 it != fns->end (); it++)
3143 function_info *fn = *it;
3144 vector<line_info> &lines = fn->lines;
3146 fprintf (gcov_file, FN_SEPARATOR);
3148 string fn_name = fn->get_name ();
3149 if (flag_use_colors)
3151 fn_name.insert (0, SGR_SEQ (COLOR_FG_CYAN));
3152 fn_name += SGR_RESET;
3155 fprintf (gcov_file, "%s:\n", fn_name.c_str ());
3157 output_function_details (gcov_file, fn);
3159 /* Print all lines covered by the function. */
3160 for (unsigned i = 0; i < lines.size (); i++)
3162 line_info *line = &lines[i];
3163 unsigned l = fn->start_line + i;
3165 /* For lines which don't exist in the .bb file, print '-'
3166 before the source line. For lines which exist but
3167 were never executed, print '#####' or '=====' before
3168 the source line. Otherwise, print the execution count
3169 before the source line.
3170 There are 16 spaces of indentation added before the source
3171 line so that tabs won't be messed up. */
3172 output_line_beginning (gcov_file, line->exists,
3173 line->unexceptional,
3174 line->has_unexecuted_block,
3175 line->count,
3176 l, "=====", "#####",
3177 src->maximum_count);
3179 print_source_line (gcov_file, source_lines, l);
3180 output_line_details (gcov_file, line, l);
3184 fprintf (gcov_file, FN_SEPARATOR);
3185 line_start_group = 0;
3189 if (source_file)
3190 fclose (source_file);