2014-07-29 Ed Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / gcc / coverage.c
blobdd7655d80adea58157e23425d856f894c79e7ba6
1 /* Read and write coverage files, and associated functionality.
2 Copyright (C) 1990-2014 Free Software Foundation, Inc.
3 Contributed by James E. Wilson, UC Berkeley/Cygnus Support;
4 based on some ideas from Dain Samples of UC Berkeley.
5 Further mangling by Bob Manson, Cygnus Support.
6 Further mangled by Nathan Sidwell, CodeSourcery
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 3, or (at your option) any later
13 version.
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 for more details.
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
25 #define GCOV_LINKAGE
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "rtl.h"
32 #include "tree.h"
33 #include "stringpool.h"
34 #include "stor-layout.h"
35 #include "flags.h"
36 #include "output.h"
37 #include "regs.h"
38 #include "expr.h"
39 #include "function.h"
40 #include "basic-block.h"
41 #include "toplev.h"
42 #include "tm_p.h"
43 #include "ggc.h"
44 #include "coverage.h"
45 #include "langhooks.h"
46 #include "hash-table.h"
47 #include "tree-iterator.h"
48 #include "context.h"
49 #include "pass_manager.h"
50 #include "tree-pass.h"
51 #include "cgraph.h"
52 #include "dumpfile.h"
53 #include "diagnostic-core.h"
54 #include "intl.h"
55 #include "filenames.h"
56 #include "target.h"
57 #include "params.h"
59 #include "gcov-io.h"
60 #include "gcov-io.c"
62 struct GTY((chain_next ("%h.next"))) coverage_data
64 struct coverage_data *next; /* next function */
65 unsigned ident; /* function ident */
66 unsigned lineno_checksum; /* function lineno checksum */
67 unsigned cfg_checksum; /* function cfg checksum */
68 tree fn_decl; /* the function decl */
69 tree ctr_vars[GCOV_COUNTERS]; /* counter variables. */
72 /* Counts information for a function. */
73 typedef struct counts_entry
75 /* We hash by */
76 unsigned ident;
77 unsigned ctr;
79 /* Store */
80 unsigned lineno_checksum;
81 unsigned cfg_checksum;
82 gcov_type *counts;
83 struct gcov_ctr_summary summary;
85 /* hash_table support. */
86 typedef counts_entry value_type;
87 typedef counts_entry compare_type;
88 static inline hashval_t hash (const value_type *);
89 static int equal (const value_type *, const compare_type *);
90 static void remove (value_type *);
91 } counts_entry_t;
93 static GTY(()) struct coverage_data *functions_head = 0;
94 static struct coverage_data **functions_tail = &functions_head;
95 static unsigned no_coverage = 0;
97 /* Cumulative counter information for whole program. */
98 static unsigned prg_ctr_mask; /* Mask of counter types generated. */
100 /* Counter information for current function. */
101 static unsigned fn_ctr_mask; /* Mask of counters used. */
102 static GTY(()) tree fn_v_ctrs[GCOV_COUNTERS]; /* counter variables. */
103 static unsigned fn_n_ctrs[GCOV_COUNTERS]; /* Counters allocated. */
104 static unsigned fn_b_ctrs[GCOV_COUNTERS]; /* Allocation base. */
106 /* Coverage info VAR_DECL and function info type nodes. */
107 static GTY(()) tree gcov_info_var;
108 static GTY(()) tree gcov_fn_info_type;
109 static GTY(()) tree gcov_fn_info_ptr_type;
111 /* Name of the notes (gcno) output file. The "bbg" prefix is for
112 historical reasons, when the notes file contained only the
113 basic block graph notes.
114 If this is NULL we're not writing to the notes file. */
115 static char *bbg_file_name;
117 /* File stamp for notes file. */
118 static unsigned bbg_file_stamp;
120 /* Name of the count data (gcda) file. */
121 static char *da_file_name;
123 /* The names of merge functions for counters. */
124 #define STR(str) #str
125 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) STR(__gcov_merge ## FN_TYPE),
126 static const char *const ctr_merge_functions[GCOV_COUNTERS] = {
127 #include "gcov-counter.def"
129 #undef DEF_GCOV_COUNTER
130 #undef STR
132 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) NAME,
133 static const char *const ctr_names[GCOV_COUNTERS] = {
134 #include "gcov-counter.def"
136 #undef DEF_GCOV_COUNTER
138 /* Forward declarations. */
139 static void read_counts_file (void);
140 static tree build_var (tree, tree, int);
141 static void build_fn_info_type (tree, unsigned, tree);
142 static void build_info_type (tree, tree);
143 static tree build_fn_info (const struct coverage_data *, tree, tree);
144 static tree build_info (tree, tree);
145 static bool coverage_obj_init (void);
146 static vec<constructor_elt, va_gc> *coverage_obj_fn
147 (vec<constructor_elt, va_gc> *, tree, struct coverage_data const *);
148 static void coverage_obj_finish (vec<constructor_elt, va_gc> *);
150 /* Return the type node for gcov_type. */
152 tree
153 get_gcov_type (void)
155 enum machine_mode mode = smallest_mode_for_size (GCOV_TYPE_SIZE, MODE_INT);
156 return lang_hooks.types.type_for_mode (mode, false);
159 /* Return the type node for gcov_unsigned_t. */
161 static tree
162 get_gcov_unsigned_t (void)
164 enum machine_mode mode = smallest_mode_for_size (32, MODE_INT);
165 return lang_hooks.types.type_for_mode (mode, true);
168 inline hashval_t
169 counts_entry::hash (const value_type *entry)
171 return entry->ident * GCOV_COUNTERS + entry->ctr;
174 inline int
175 counts_entry::equal (const value_type *entry1,
176 const compare_type *entry2)
178 return entry1->ident == entry2->ident && entry1->ctr == entry2->ctr;
181 inline void
182 counts_entry::remove (value_type *entry)
184 free (entry->counts);
185 free (entry);
188 /* Hash table of count data. */
189 static hash_table<counts_entry> *counts_hash;
191 /* Read in the counts file, if available. */
193 static void
194 read_counts_file (void)
196 gcov_unsigned_t fn_ident = 0;
197 struct gcov_summary summary;
198 unsigned new_summary = 1;
199 gcov_unsigned_t tag;
200 int is_error = 0;
201 unsigned lineno_checksum = 0;
202 unsigned cfg_checksum = 0;
204 if (!gcov_open (da_file_name, 1))
205 return;
207 if (!gcov_magic (gcov_read_unsigned (), GCOV_DATA_MAGIC))
209 warning (0, "%qs is not a gcov data file", da_file_name);
210 gcov_close ();
211 return;
213 else if ((tag = gcov_read_unsigned ()) != GCOV_VERSION)
215 char v[4], e[4];
217 GCOV_UNSIGNED2STRING (v, tag);
218 GCOV_UNSIGNED2STRING (e, GCOV_VERSION);
220 warning (0, "%qs is version %q.*s, expected version %q.*s",
221 da_file_name, 4, v, 4, e);
222 gcov_close ();
223 return;
226 /* Read the stamp, used for creating a generation count. */
227 tag = gcov_read_unsigned ();
228 bbg_file_stamp = crc32_unsigned (bbg_file_stamp, tag);
230 counts_hash = new hash_table<counts_entry> (10);
231 while ((tag = gcov_read_unsigned ()))
233 gcov_unsigned_t length;
234 gcov_position_t offset;
236 length = gcov_read_unsigned ();
237 offset = gcov_position ();
238 if (tag == GCOV_TAG_FUNCTION)
240 if (length)
242 fn_ident = gcov_read_unsigned ();
243 lineno_checksum = gcov_read_unsigned ();
244 cfg_checksum = gcov_read_unsigned ();
246 else
247 fn_ident = lineno_checksum = cfg_checksum = 0;
248 new_summary = 1;
250 else if (tag == GCOV_TAG_PROGRAM_SUMMARY)
252 struct gcov_summary sum;
253 unsigned ix;
255 if (new_summary)
256 memset (&summary, 0, sizeof (summary));
258 gcov_read_summary (&sum);
259 for (ix = 0; ix != GCOV_COUNTERS_SUMMABLE; ix++)
261 summary.ctrs[ix].runs += sum.ctrs[ix].runs;
262 summary.ctrs[ix].sum_all += sum.ctrs[ix].sum_all;
263 if (summary.ctrs[ix].run_max < sum.ctrs[ix].run_max)
264 summary.ctrs[ix].run_max = sum.ctrs[ix].run_max;
265 summary.ctrs[ix].sum_max += sum.ctrs[ix].sum_max;
267 if (new_summary)
268 memcpy (summary.ctrs[GCOV_COUNTER_ARCS].histogram,
269 sum.ctrs[GCOV_COUNTER_ARCS].histogram,
270 sizeof (gcov_bucket_type) * GCOV_HISTOGRAM_SIZE);
271 else
272 gcov_histogram_merge (summary.ctrs[GCOV_COUNTER_ARCS].histogram,
273 sum.ctrs[GCOV_COUNTER_ARCS].histogram);
274 new_summary = 0;
276 else if (GCOV_TAG_IS_COUNTER (tag) && fn_ident)
278 counts_entry_t **slot, *entry, elt;
279 unsigned n_counts = GCOV_TAG_COUNTER_NUM (length);
280 unsigned ix;
282 elt.ident = fn_ident;
283 elt.ctr = GCOV_COUNTER_FOR_TAG (tag);
285 slot = counts_hash->find_slot (&elt, INSERT);
286 entry = *slot;
287 if (!entry)
289 *slot = entry = XCNEW (counts_entry_t);
290 entry->ident = fn_ident;
291 entry->ctr = elt.ctr;
292 entry->lineno_checksum = lineno_checksum;
293 entry->cfg_checksum = cfg_checksum;
294 if (elt.ctr < GCOV_COUNTERS_SUMMABLE)
295 entry->summary = summary.ctrs[elt.ctr];
296 entry->summary.num = n_counts;
297 entry->counts = XCNEWVEC (gcov_type, n_counts);
299 else if (entry->lineno_checksum != lineno_checksum
300 || entry->cfg_checksum != cfg_checksum)
302 error ("Profile data for function %u is corrupted", fn_ident);
303 error ("checksum is (%x,%x) instead of (%x,%x)",
304 entry->lineno_checksum, entry->cfg_checksum,
305 lineno_checksum, cfg_checksum);
306 delete counts_hash;
307 counts_hash = NULL;
308 break;
310 else if (entry->summary.num != n_counts)
312 error ("Profile data for function %u is corrupted", fn_ident);
313 error ("number of counters is %d instead of %d", entry->summary.num, n_counts);
314 delete counts_hash;
315 counts_hash = NULL;
316 break;
318 else if (elt.ctr >= GCOV_COUNTERS_SUMMABLE)
320 error ("cannot merge separate %s counters for function %u",
321 ctr_names[elt.ctr], fn_ident);
322 goto skip_merge;
324 else
326 entry->summary.runs += summary.ctrs[elt.ctr].runs;
327 entry->summary.sum_all += summary.ctrs[elt.ctr].sum_all;
328 if (entry->summary.run_max < summary.ctrs[elt.ctr].run_max)
329 entry->summary.run_max = summary.ctrs[elt.ctr].run_max;
330 entry->summary.sum_max += summary.ctrs[elt.ctr].sum_max;
332 for (ix = 0; ix != n_counts; ix++)
333 entry->counts[ix] += gcov_read_counter ();
334 skip_merge:;
336 gcov_sync (offset, length);
337 if ((is_error = gcov_is_error ()))
339 error (is_error < 0 ? "%qs has overflowed" : "%qs is corrupted",
340 da_file_name);
341 delete counts_hash;
342 counts_hash = NULL;
343 break;
347 gcov_close ();
350 /* Returns the counters for a particular tag. */
352 gcov_type *
353 get_coverage_counts (unsigned counter, unsigned expected,
354 unsigned cfg_checksum, unsigned lineno_checksum,
355 const struct gcov_ctr_summary **summary)
357 counts_entry_t *entry, elt;
359 /* No hash table, no counts. */
360 if (!counts_hash)
362 static int warned = 0;
364 if (!warned++ && dump_enabled_p ())
365 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, input_location,
366 (flag_guess_branch_prob
367 ? "file %s not found, execution counts estimated\n"
368 : "file %s not found, execution counts assumed to "
369 "be zero\n"),
370 da_file_name);
371 return NULL;
373 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID))
374 elt.ident = current_function_funcdef_no + 1;
375 else
377 gcc_assert (coverage_node_map_initialized_p ());
378 elt.ident = cgraph_node::get (cfun->decl)->profile_id;
380 elt.ctr = counter;
381 entry = counts_hash->find (&elt);
382 if (!entry || !entry->summary.num)
383 /* The function was not emitted, or is weak and not chosen in the
384 final executable. Silently fail, because there's nothing we
385 can do about it. */
386 return NULL;
388 if (entry->cfg_checksum != cfg_checksum
389 || entry->summary.num != expected)
391 static int warned = 0;
392 bool warning_printed = false;
393 tree id = DECL_ASSEMBLER_NAME (current_function_decl);
395 warning_printed =
396 warning_at (input_location, OPT_Wcoverage_mismatch,
397 "the control flow of function %qE does not match "
398 "its profile data (counter %qs)", id, ctr_names[counter]);
399 if (warning_printed && dump_enabled_p ())
401 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, input_location,
402 "use -Wno-error=coverage-mismatch to tolerate "
403 "the mismatch but performance may drop if the "
404 "function is hot\n");
406 if (!seen_error ()
407 && !warned++)
409 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, input_location,
410 "coverage mismatch ignored\n");
411 dump_printf (MSG_OPTIMIZED_LOCATIONS,
412 flag_guess_branch_prob
413 ? G_("execution counts estimated\n")
414 : G_("execution counts assumed to be zero\n"));
415 if (!flag_guess_branch_prob)
416 dump_printf (MSG_OPTIMIZED_LOCATIONS,
417 "this can result in poorly optimized code\n");
421 return NULL;
423 else if (entry->lineno_checksum != lineno_checksum)
425 warning (OPT_Wcoverage_mismatch,
426 "source locations for function %qE have changed,"
427 " the profile data may be out of date",
428 DECL_ASSEMBLER_NAME (current_function_decl));
431 if (summary)
432 *summary = &entry->summary;
434 return entry->counts;
437 /* Allocate NUM counters of type COUNTER. Returns nonzero if the
438 allocation succeeded. */
441 coverage_counter_alloc (unsigned counter, unsigned num)
443 if (no_coverage)
444 return 0;
446 if (!num)
447 return 1;
449 if (!fn_v_ctrs[counter])
451 tree array_type = build_array_type (get_gcov_type (), NULL_TREE);
453 fn_v_ctrs[counter]
454 = build_var (current_function_decl, array_type, counter);
457 fn_b_ctrs[counter] = fn_n_ctrs[counter];
458 fn_n_ctrs[counter] += num;
460 fn_ctr_mask |= 1 << counter;
461 return 1;
464 /* Generate a tree to access COUNTER NO. */
466 tree
467 tree_coverage_counter_ref (unsigned counter, unsigned no)
469 tree gcov_type_node = get_gcov_type ();
471 gcc_assert (no < fn_n_ctrs[counter] - fn_b_ctrs[counter]);
473 no += fn_b_ctrs[counter];
475 /* "no" here is an array index, scaled to bytes later. */
476 return build4 (ARRAY_REF, gcov_type_node, fn_v_ctrs[counter],
477 build_int_cst (integer_type_node, no), NULL, NULL);
480 /* Generate a tree to access the address of COUNTER NO. */
482 tree
483 tree_coverage_counter_addr (unsigned counter, unsigned no)
485 tree gcov_type_node = get_gcov_type ();
487 gcc_assert (no < fn_n_ctrs[counter] - fn_b_ctrs[counter]);
488 no += fn_b_ctrs[counter];
490 /* "no" here is an array index, scaled to bytes later. */
491 return build_fold_addr_expr (build4 (ARRAY_REF, gcov_type_node,
492 fn_v_ctrs[counter],
493 build_int_cst (integer_type_node, no),
494 NULL, NULL));
498 /* Generate a checksum for a string. CHKSUM is the current
499 checksum. */
501 static unsigned
502 coverage_checksum_string (unsigned chksum, const char *string)
504 int i;
505 char *dup = NULL;
507 /* Look for everything that looks if it were produced by
508 get_file_function_name and zero out the second part
509 that may result from flag_random_seed. This is not critical
510 as the checksums are used only for sanity checking. */
511 for (i = 0; string[i]; i++)
513 int offset = 0;
514 if (!strncmp (string + i, "_GLOBAL__N_", 11))
515 offset = 11;
516 if (!strncmp (string + i, "_GLOBAL__", 9))
517 offset = 9;
519 /* C++ namespaces do have scheme:
520 _GLOBAL__N_<filename>_<wrongmagicnumber>_<magicnumber>functionname
521 since filename might contain extra underscores there seems
522 to be no better chance then walk all possible offsets looking
523 for magicnumber. */
524 if (offset)
526 for (i = i + offset; string[i]; i++)
527 if (string[i]=='_')
529 int y;
531 for (y = 1; y < 9; y++)
532 if (!(string[i + y] >= '0' && string[i + y] <= '9')
533 && !(string[i + y] >= 'A' && string[i + y] <= 'F'))
534 break;
535 if (y != 9 || string[i + 9] != '_')
536 continue;
537 for (y = 10; y < 18; y++)
538 if (!(string[i + y] >= '0' && string[i + y] <= '9')
539 && !(string[i + y] >= 'A' && string[i + y] <= 'F'))
540 break;
541 if (y != 18)
542 continue;
543 if (!dup)
544 string = dup = xstrdup (string);
545 for (y = 10; y < 18; y++)
546 dup[i + y] = '0';
548 break;
552 chksum = crc32_string (chksum, string);
553 free (dup);
555 return chksum;
558 /* Compute checksum for the current function. We generate a CRC32. */
560 unsigned
561 coverage_compute_lineno_checksum (void)
563 expanded_location xloc
564 = expand_location (DECL_SOURCE_LOCATION (current_function_decl));
565 unsigned chksum = xloc.line;
567 chksum = coverage_checksum_string (chksum, xloc.file);
568 chksum = coverage_checksum_string
569 (chksum, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (current_function_decl)));
571 return chksum;
574 /* Compute profile ID. This is better to be unique in whole program. */
576 unsigned
577 coverage_compute_profile_id (struct cgraph_node *n)
579 unsigned chksum;
581 /* Externally visible symbols have unique name. */
582 if (TREE_PUBLIC (n->decl) || DECL_EXTERNAL (n->decl))
584 chksum = coverage_checksum_string
585 (0, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n->decl)));
587 else
589 expanded_location xloc
590 = expand_location (DECL_SOURCE_LOCATION (n->decl));
591 bool use_name_only = (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID) == 0);
593 chksum = (use_name_only ? 0 : xloc.line);
594 chksum = coverage_checksum_string (chksum, xloc.file);
595 chksum = coverage_checksum_string
596 (chksum, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n->decl)));
597 if (!use_name_only && first_global_object_name)
598 chksum = coverage_checksum_string
599 (chksum, first_global_object_name);
600 chksum = coverage_checksum_string
601 (chksum, aux_base_name);
604 /* Non-negative integers are hopefully small enough to fit in all targets. */
605 return chksum & 0x7fffffff;
608 /* Compute cfg checksum for the function FN given as argument.
609 The checksum is calculated carefully so that
610 source code changes that doesn't affect the control flow graph
611 won't change the checksum.
612 This is to make the profile data useable across source code change.
613 The downside of this is that the compiler may use potentially
614 wrong profile data - that the source code change has non-trivial impact
615 on the validity of profile data (e.g. the reversed condition)
616 but the compiler won't detect the change and use the wrong profile data. */
618 unsigned
619 coverage_compute_cfg_checksum (struct function *fn)
621 basic_block bb;
622 unsigned chksum = n_basic_blocks_for_fn (fn);
624 FOR_EACH_BB_FN (bb, fn)
626 edge e;
627 edge_iterator ei;
628 chksum = crc32_byte (chksum, bb->index);
629 FOR_EACH_EDGE (e, ei, bb->succs)
631 chksum = crc32_byte (chksum, e->dest->index);
635 return chksum;
638 /* Begin output to the notes file for the current function.
639 Writes the function header. Returns nonzero if data should be output. */
642 coverage_begin_function (unsigned lineno_checksum, unsigned cfg_checksum)
644 expanded_location xloc;
645 unsigned long offset;
647 /* We don't need to output .gcno file unless we're under -ftest-coverage
648 (e.g. -fprofile-arcs/generate/use don't need .gcno to work). */
649 if (no_coverage || !bbg_file_name)
650 return 0;
652 xloc = expand_location (DECL_SOURCE_LOCATION (current_function_decl));
654 /* Announce function */
655 offset = gcov_write_tag (GCOV_TAG_FUNCTION);
656 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID))
657 gcov_write_unsigned (current_function_funcdef_no + 1);
658 else
660 gcc_assert (coverage_node_map_initialized_p ());
661 gcov_write_unsigned (
662 cgraph_node::get (current_function_decl)->profile_id);
665 gcov_write_unsigned (lineno_checksum);
666 gcov_write_unsigned (cfg_checksum);
667 gcov_write_string (IDENTIFIER_POINTER
668 (DECL_ASSEMBLER_NAME (current_function_decl)));
669 gcov_write_string (xloc.file);
670 gcov_write_unsigned (xloc.line);
671 gcov_write_length (offset);
673 return !gcov_is_error ();
676 /* Finish coverage data for the current function. Verify no output
677 error has occurred. Save function coverage counts. */
679 void
680 coverage_end_function (unsigned lineno_checksum, unsigned cfg_checksum)
682 unsigned i;
684 if (bbg_file_name && gcov_is_error ())
686 warning (0, "error writing %qs", bbg_file_name);
687 unlink (bbg_file_name);
688 bbg_file_name = NULL;
691 if (fn_ctr_mask)
693 struct coverage_data *item = 0;
695 /* If the function is extern (i.e. extern inline), then we won't
696 be outputting it, so don't chain it onto the function
697 list. */
698 if (!DECL_EXTERNAL (current_function_decl))
700 item = ggc_alloc<coverage_data> ();
702 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID))
703 item->ident = current_function_funcdef_no + 1;
704 else
706 gcc_assert (coverage_node_map_initialized_p ());
707 item->ident = cgraph_node::get (cfun->decl)->profile_id;
710 item->lineno_checksum = lineno_checksum;
711 item->cfg_checksum = cfg_checksum;
713 item->fn_decl = current_function_decl;
714 item->next = 0;
715 *functions_tail = item;
716 functions_tail = &item->next;
719 for (i = 0; i != GCOV_COUNTERS; i++)
721 tree var = fn_v_ctrs[i];
723 if (item)
724 item->ctr_vars[i] = var;
725 if (var)
727 tree array_type = build_index_type (size_int (fn_n_ctrs[i] - 1));
728 array_type = build_array_type (get_gcov_type (), array_type);
729 TREE_TYPE (var) = array_type;
730 DECL_SIZE (var) = TYPE_SIZE (array_type);
731 DECL_SIZE_UNIT (var) = TYPE_SIZE_UNIT (array_type);
732 varpool_node::finalize_decl (var);
735 fn_b_ctrs[i] = fn_n_ctrs[i] = 0;
736 fn_v_ctrs[i] = NULL_TREE;
738 prg_ctr_mask |= fn_ctr_mask;
739 fn_ctr_mask = 0;
743 /* Build a coverage variable of TYPE for function FN_DECL. If COUNTER
744 >= 0 it is a counter array, otherwise it is the function structure. */
746 static tree
747 build_var (tree fn_decl, tree type, int counter)
749 tree var = build_decl (BUILTINS_LOCATION, VAR_DECL, NULL_TREE, type);
750 const char *fn_name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fn_decl));
751 char *buf;
752 size_t fn_name_len, len;
754 fn_name = targetm.strip_name_encoding (fn_name);
755 fn_name_len = strlen (fn_name);
756 buf = XALLOCAVEC (char, fn_name_len + 8 + sizeof (int) * 3);
758 if (counter < 0)
759 strcpy (buf, "__gcov__");
760 else
761 sprintf (buf, "__gcov%u_", counter);
762 len = strlen (buf);
763 #ifndef NO_DOT_IN_LABEL
764 buf[len - 1] = '.';
765 #elif !defined NO_DOLLAR_IN_LABEL
766 buf[len - 1] = '$';
767 #endif
768 memcpy (buf + len, fn_name, fn_name_len + 1);
769 DECL_NAME (var) = get_identifier (buf);
770 TREE_STATIC (var) = 1;
771 TREE_ADDRESSABLE (var) = 1;
772 DECL_NONALIASED (var) = 1;
773 DECL_ALIGN (var) = TYPE_ALIGN (type);
775 return var;
778 /* Creates the gcov_fn_info RECORD_TYPE. */
780 static void
781 build_fn_info_type (tree type, unsigned counters, tree gcov_info_type)
783 tree ctr_info = lang_hooks.types.make_type (RECORD_TYPE);
784 tree field, fields;
785 tree array_type;
787 gcc_assert (counters);
789 /* ctr_info::num */
790 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
791 get_gcov_unsigned_t ());
792 fields = field;
794 /* ctr_info::values */
795 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
796 build_pointer_type (get_gcov_type ()));
797 DECL_CHAIN (field) = fields;
798 fields = field;
800 finish_builtin_struct (ctr_info, "__gcov_ctr_info", fields, NULL_TREE);
802 /* key */
803 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
804 build_pointer_type (build_qualified_type
805 (gcov_info_type, TYPE_QUAL_CONST)));
806 fields = field;
808 /* ident */
809 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
810 get_gcov_unsigned_t ());
811 DECL_CHAIN (field) = fields;
812 fields = field;
814 /* lineno_checksum */
815 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
816 get_gcov_unsigned_t ());
817 DECL_CHAIN (field) = fields;
818 fields = field;
820 /* cfg checksum */
821 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
822 get_gcov_unsigned_t ());
823 DECL_CHAIN (field) = fields;
824 fields = field;
826 array_type = build_index_type (size_int (counters - 1));
827 array_type = build_array_type (ctr_info, array_type);
829 /* counters */
830 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE, array_type);
831 DECL_CHAIN (field) = fields;
832 fields = field;
834 finish_builtin_struct (type, "__gcov_fn_info", fields, NULL_TREE);
837 /* Returns a CONSTRUCTOR for a gcov_fn_info. DATA is
838 the coverage data for the function and TYPE is the gcov_fn_info
839 RECORD_TYPE. KEY is the object file key. */
841 static tree
842 build_fn_info (const struct coverage_data *data, tree type, tree key)
844 tree fields = TYPE_FIELDS (type);
845 tree ctr_type;
846 unsigned ix;
847 vec<constructor_elt, va_gc> *v1 = NULL;
848 vec<constructor_elt, va_gc> *v2 = NULL;
850 /* key */
851 CONSTRUCTOR_APPEND_ELT (v1, fields,
852 build1 (ADDR_EXPR, TREE_TYPE (fields), key));
853 fields = DECL_CHAIN (fields);
855 /* ident */
856 CONSTRUCTOR_APPEND_ELT (v1, fields,
857 build_int_cstu (get_gcov_unsigned_t (),
858 data->ident));
859 fields = DECL_CHAIN (fields);
861 /* lineno_checksum */
862 CONSTRUCTOR_APPEND_ELT (v1, fields,
863 build_int_cstu (get_gcov_unsigned_t (),
864 data->lineno_checksum));
865 fields = DECL_CHAIN (fields);
867 /* cfg_checksum */
868 CONSTRUCTOR_APPEND_ELT (v1, fields,
869 build_int_cstu (get_gcov_unsigned_t (),
870 data->cfg_checksum));
871 fields = DECL_CHAIN (fields);
873 /* counters */
874 ctr_type = TREE_TYPE (TREE_TYPE (fields));
875 for (ix = 0; ix != GCOV_COUNTERS; ix++)
876 if (prg_ctr_mask & (1 << ix))
878 vec<constructor_elt, va_gc> *ctr = NULL;
879 tree var = data->ctr_vars[ix];
880 unsigned count = 0;
882 if (var)
883 count
884 = tree_to_shwi (TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (var))))
885 + 1;
887 CONSTRUCTOR_APPEND_ELT (ctr, TYPE_FIELDS (ctr_type),
888 build_int_cstu (get_gcov_unsigned_t (),
889 count));
891 if (var)
892 CONSTRUCTOR_APPEND_ELT (ctr, DECL_CHAIN (TYPE_FIELDS (ctr_type)),
893 build_fold_addr_expr (var));
895 CONSTRUCTOR_APPEND_ELT (v2, NULL, build_constructor (ctr_type, ctr));
898 CONSTRUCTOR_APPEND_ELT (v1, fields,
899 build_constructor (TREE_TYPE (fields), v2));
901 return build_constructor (type, v1);
904 /* Create gcov_info struct. TYPE is the incomplete RECORD_TYPE to be
905 completed, and FN_INFO_PTR_TYPE is a pointer to the function info type. */
907 static void
908 build_info_type (tree type, tree fn_info_ptr_type)
910 tree field, fields = NULL_TREE;
911 tree merge_fn_type;
913 /* Version ident */
914 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
915 get_gcov_unsigned_t ());
916 DECL_CHAIN (field) = fields;
917 fields = field;
919 /* next pointer */
920 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
921 build_pointer_type (build_qualified_type
922 (type, TYPE_QUAL_CONST)));
923 DECL_CHAIN (field) = fields;
924 fields = field;
926 /* stamp */
927 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
928 get_gcov_unsigned_t ());
929 DECL_CHAIN (field) = fields;
930 fields = field;
932 /* Filename */
933 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
934 build_pointer_type (build_qualified_type
935 (char_type_node, TYPE_QUAL_CONST)));
936 DECL_CHAIN (field) = fields;
937 fields = field;
939 /* merge fn array */
940 merge_fn_type
941 = build_function_type_list (void_type_node,
942 build_pointer_type (get_gcov_type ()),
943 get_gcov_unsigned_t (), NULL_TREE);
944 merge_fn_type
945 = build_array_type (build_pointer_type (merge_fn_type),
946 build_index_type (size_int (GCOV_COUNTERS - 1)));
947 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
948 merge_fn_type);
949 DECL_CHAIN (field) = fields;
950 fields = field;
952 /* n_functions */
953 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
954 get_gcov_unsigned_t ());
955 DECL_CHAIN (field) = fields;
956 fields = field;
958 /* function_info pointer pointer */
959 fn_info_ptr_type = build_pointer_type
960 (build_qualified_type (fn_info_ptr_type, TYPE_QUAL_CONST));
961 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
962 fn_info_ptr_type);
963 DECL_CHAIN (field) = fields;
964 fields = field;
966 finish_builtin_struct (type, "__gcov_info", fields, NULL_TREE);
969 /* Returns a CONSTRUCTOR for the gcov_info object. INFO_TYPE is the
970 gcov_info structure type, FN_ARY is the array of pointers to
971 function info objects. */
973 static tree
974 build_info (tree info_type, tree fn_ary)
976 tree info_fields = TYPE_FIELDS (info_type);
977 tree merge_fn_type, n_funcs;
978 unsigned ix;
979 tree filename_string;
980 int da_file_name_len;
981 vec<constructor_elt, va_gc> *v1 = NULL;
982 vec<constructor_elt, va_gc> *v2 = NULL;
984 /* Version ident */
985 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
986 build_int_cstu (TREE_TYPE (info_fields),
987 GCOV_VERSION));
988 info_fields = DECL_CHAIN (info_fields);
990 /* next -- NULL */
991 CONSTRUCTOR_APPEND_ELT (v1, info_fields, null_pointer_node);
992 info_fields = DECL_CHAIN (info_fields);
994 /* stamp */
995 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
996 build_int_cstu (TREE_TYPE (info_fields),
997 bbg_file_stamp));
998 info_fields = DECL_CHAIN (info_fields);
1000 /* Filename */
1001 da_file_name_len = strlen (da_file_name);
1002 filename_string = build_string (da_file_name_len + 1, da_file_name);
1003 TREE_TYPE (filename_string) = build_array_type
1004 (char_type_node, build_index_type (size_int (da_file_name_len)));
1005 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
1006 build1 (ADDR_EXPR, TREE_TYPE (info_fields),
1007 filename_string));
1008 info_fields = DECL_CHAIN (info_fields);
1010 /* merge fn array -- NULL slots indicate unmeasured counters */
1011 merge_fn_type = TREE_TYPE (TREE_TYPE (info_fields));
1012 for (ix = 0; ix != GCOV_COUNTERS; ix++)
1014 tree ptr = null_pointer_node;
1016 if ((1u << ix) & prg_ctr_mask)
1018 tree merge_fn = build_decl (BUILTINS_LOCATION,
1019 FUNCTION_DECL,
1020 get_identifier (ctr_merge_functions[ix]),
1021 TREE_TYPE (merge_fn_type));
1022 DECL_EXTERNAL (merge_fn) = 1;
1023 TREE_PUBLIC (merge_fn) = 1;
1024 DECL_ARTIFICIAL (merge_fn) = 1;
1025 TREE_NOTHROW (merge_fn) = 1;
1026 /* Initialize assembler name so we can stream out. */
1027 DECL_ASSEMBLER_NAME (merge_fn);
1028 ptr = build1 (ADDR_EXPR, merge_fn_type, merge_fn);
1030 CONSTRUCTOR_APPEND_ELT (v2, NULL, ptr);
1032 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
1033 build_constructor (TREE_TYPE (info_fields), v2));
1034 info_fields = DECL_CHAIN (info_fields);
1036 /* n_functions */
1037 n_funcs = TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (fn_ary)));
1038 n_funcs = fold_build2 (PLUS_EXPR, TREE_TYPE (info_fields),
1039 n_funcs, size_one_node);
1040 CONSTRUCTOR_APPEND_ELT (v1, info_fields, n_funcs);
1041 info_fields = DECL_CHAIN (info_fields);
1043 /* functions */
1044 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
1045 build1 (ADDR_EXPR, TREE_TYPE (info_fields), fn_ary));
1046 info_fields = DECL_CHAIN (info_fields);
1048 gcc_assert (!info_fields);
1049 return build_constructor (info_type, v1);
1052 /* Generate the constructor function to call __gcov_init. */
1054 static void
1055 build_init_ctor (tree gcov_info_type)
1057 tree ctor, stmt, init_fn;
1059 /* Build a decl for __gcov_init. */
1060 init_fn = build_pointer_type (gcov_info_type);
1061 init_fn = build_function_type_list (void_type_node, init_fn, NULL);
1062 init_fn = build_decl (BUILTINS_LOCATION, FUNCTION_DECL,
1063 get_identifier ("__gcov_init"), init_fn);
1064 TREE_PUBLIC (init_fn) = 1;
1065 DECL_EXTERNAL (init_fn) = 1;
1066 DECL_ASSEMBLER_NAME (init_fn);
1068 /* Generate a call to __gcov_init(&gcov_info). */
1069 ctor = NULL;
1070 stmt = build_fold_addr_expr (gcov_info_var);
1071 stmt = build_call_expr (init_fn, 1, stmt);
1072 append_to_statement_list (stmt, &ctor);
1074 /* Generate a constructor to run it. */
1075 cgraph_build_static_cdtor ('I', ctor, DEFAULT_INIT_PRIORITY);
1078 /* Create the gcov_info types and object. Generate the constructor
1079 function to call __gcov_init. Does not generate the initializer
1080 for the object. Returns TRUE if coverage data is being emitted. */
1082 static bool
1083 coverage_obj_init (void)
1085 tree gcov_info_type;
1086 unsigned n_counters = 0;
1087 unsigned ix;
1088 struct coverage_data *fn;
1089 struct coverage_data **fn_prev;
1090 char name_buf[32];
1092 no_coverage = 1; /* Disable any further coverage. */
1094 if (!prg_ctr_mask)
1095 return false;
1097 if (cgraph_dump_file)
1098 fprintf (cgraph_dump_file, "Using data file %s\n", da_file_name);
1100 /* Prune functions. */
1101 for (fn_prev = &functions_head; (fn = *fn_prev);)
1102 if (DECL_STRUCT_FUNCTION (fn->fn_decl))
1103 fn_prev = &fn->next;
1104 else
1105 /* The function is not being emitted, remove from list. */
1106 *fn_prev = fn->next;
1108 if (functions_head == NULL)
1109 return false;
1111 for (ix = 0; ix != GCOV_COUNTERS; ix++)
1112 if ((1u << ix) & prg_ctr_mask)
1113 n_counters++;
1115 /* Build the info and fn_info types. These are mutually recursive. */
1116 gcov_info_type = lang_hooks.types.make_type (RECORD_TYPE);
1117 gcov_fn_info_type = lang_hooks.types.make_type (RECORD_TYPE);
1118 gcov_fn_info_ptr_type = build_pointer_type
1119 (build_qualified_type (gcov_fn_info_type, TYPE_QUAL_CONST));
1120 build_fn_info_type (gcov_fn_info_type, n_counters, gcov_info_type);
1121 build_info_type (gcov_info_type, gcov_fn_info_ptr_type);
1123 /* Build the gcov info var, this is referred to in its own
1124 initializer. */
1125 gcov_info_var = build_decl (BUILTINS_LOCATION,
1126 VAR_DECL, NULL_TREE, gcov_info_type);
1127 TREE_STATIC (gcov_info_var) = 1;
1128 ASM_GENERATE_INTERNAL_LABEL (name_buf, "LPBX", 0);
1129 DECL_NAME (gcov_info_var) = get_identifier (name_buf);
1131 build_init_ctor (gcov_info_type);
1133 return true;
1136 /* Generate the coverage function info for FN and DATA. Append a
1137 pointer to that object to CTOR and return the appended CTOR. */
1139 static vec<constructor_elt, va_gc> *
1140 coverage_obj_fn (vec<constructor_elt, va_gc> *ctor, tree fn,
1141 struct coverage_data const *data)
1143 tree init = build_fn_info (data, gcov_fn_info_type, gcov_info_var);
1144 tree var = build_var (fn, gcov_fn_info_type, -1);
1146 DECL_INITIAL (var) = init;
1147 varpool_node::finalize_decl (var);
1149 CONSTRUCTOR_APPEND_ELT (ctor, NULL,
1150 build1 (ADDR_EXPR, gcov_fn_info_ptr_type, var));
1151 return ctor;
1154 /* Finalize the coverage data. Generates the array of pointers to
1155 function objects from CTOR. Generate the gcov_info initializer. */
1157 static void
1158 coverage_obj_finish (vec<constructor_elt, va_gc> *ctor)
1160 unsigned n_functions = vec_safe_length (ctor);
1161 tree fn_info_ary_type = build_array_type
1162 (build_qualified_type (gcov_fn_info_ptr_type, TYPE_QUAL_CONST),
1163 build_index_type (size_int (n_functions - 1)));
1164 tree fn_info_ary = build_decl (BUILTINS_LOCATION, VAR_DECL, NULL_TREE,
1165 fn_info_ary_type);
1166 char name_buf[32];
1168 TREE_STATIC (fn_info_ary) = 1;
1169 ASM_GENERATE_INTERNAL_LABEL (name_buf, "LPBX", 1);
1170 DECL_NAME (fn_info_ary) = get_identifier (name_buf);
1171 DECL_INITIAL (fn_info_ary) = build_constructor (fn_info_ary_type, ctor);
1172 varpool_node::finalize_decl (fn_info_ary);
1174 DECL_INITIAL (gcov_info_var)
1175 = build_info (TREE_TYPE (gcov_info_var), fn_info_ary);
1176 varpool_node::finalize_decl (gcov_info_var);
1179 /* Perform file-level initialization. Read in data file, generate name
1180 of notes file. */
1182 void
1183 coverage_init (const char *filename)
1185 int len = strlen (filename);
1186 int prefix_len = 0;
1188 /* Since coverage_init is invoked very early, before the pass
1189 manager, we need to set up the dumping explicitly. This is
1190 similar to the handling in finish_optimization_passes. */
1191 int profile_pass_num =
1192 g->get_passes ()->get_pass_profile ()->static_pass_number;
1193 g->get_dumps ()->dump_start (profile_pass_num, NULL);
1195 if (!profile_data_prefix && !IS_ABSOLUTE_PATH (filename))
1196 profile_data_prefix = getpwd ();
1198 if (profile_data_prefix)
1199 prefix_len = strlen (profile_data_prefix);
1201 /* Name of da file. */
1202 da_file_name = XNEWVEC (char, len + strlen (GCOV_DATA_SUFFIX)
1203 + prefix_len + 2);
1205 if (profile_data_prefix)
1207 memcpy (da_file_name, profile_data_prefix, prefix_len);
1208 da_file_name[prefix_len++] = '/';
1210 memcpy (da_file_name + prefix_len, filename, len);
1211 strcpy (da_file_name + prefix_len + len, GCOV_DATA_SUFFIX);
1213 bbg_file_stamp = local_tick;
1215 if (flag_branch_probabilities)
1216 read_counts_file ();
1218 /* Name of bbg file. */
1219 if (flag_test_coverage && !flag_compare_debug)
1221 bbg_file_name = XNEWVEC (char, len + strlen (GCOV_NOTE_SUFFIX) + 1);
1222 memcpy (bbg_file_name, filename, len);
1223 strcpy (bbg_file_name + len, GCOV_NOTE_SUFFIX);
1225 if (!gcov_open (bbg_file_name, -1))
1227 error ("cannot open %s", bbg_file_name);
1228 bbg_file_name = NULL;
1230 else
1232 gcov_write_unsigned (GCOV_NOTE_MAGIC);
1233 gcov_write_unsigned (GCOV_VERSION);
1234 gcov_write_unsigned (bbg_file_stamp);
1238 g->get_dumps ()->dump_finish (profile_pass_num);
1241 /* Performs file-level cleanup. Close notes file, generate coverage
1242 variables and constructor. */
1244 void
1245 coverage_finish (void)
1247 if (bbg_file_name && gcov_close ())
1248 unlink (bbg_file_name);
1250 if (!flag_branch_probabilities && flag_test_coverage
1251 && (!local_tick || local_tick == (unsigned)-1))
1252 /* Only remove the da file, if we're emitting coverage code and
1253 cannot uniquely stamp it. If we can stamp it, libgcov will DTRT. */
1254 unlink (da_file_name);
1256 if (coverage_obj_init ())
1258 vec<constructor_elt, va_gc> *fn_ctor = NULL;
1259 struct coverage_data *fn;
1261 for (fn = functions_head; fn; fn = fn->next)
1262 fn_ctor = coverage_obj_fn (fn_ctor, fn->fn_decl, fn);
1263 coverage_obj_finish (fn_ctor);
1266 XDELETEVEC (da_file_name);
1267 da_file_name = NULL;
1270 #include "gt-coverage.h"