2018-06-09 Steven G. Kargl <kargl@gcc.gnu.org>
[official-gcc.git] / gcc / coverage.c
blob84fff1370bf0ab358043270c7824f59188e1a89b
1 /* Read and write coverage files, and associated functionality.
2 Copyright (C) 1990-2018 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 "backend.h"
31 #include "target.h"
32 #include "rtl.h"
33 #include "tree.h"
34 #include "tree-pass.h"
35 #include "memmodel.h"
36 #include "tm_p.h"
37 #include "stringpool.h"
38 #include "cgraph.h"
39 #include "coverage.h"
40 #include "diagnostic-core.h"
41 #include "fold-const.h"
42 #include "stor-layout.h"
43 #include "output.h"
44 #include "toplev.h"
45 #include "langhooks.h"
46 #include "tree-iterator.h"
47 #include "context.h"
48 #include "pass_manager.h"
49 #include "intl.h"
50 #include "params.h"
51 #include "auto-profile.h"
53 #include "gcov-io.c"
55 struct GTY((chain_next ("%h.next"))) coverage_data
57 struct coverage_data *next; /* next function */
58 unsigned ident; /* function ident */
59 unsigned lineno_checksum; /* function lineno checksum */
60 unsigned cfg_checksum; /* function cfg checksum */
61 tree fn_decl; /* the function decl */
62 tree ctr_vars[GCOV_COUNTERS]; /* counter variables. */
65 /* Counts information for a function. */
66 struct counts_entry : pointer_hash <counts_entry>
68 /* We hash by */
69 unsigned ident;
70 unsigned ctr;
72 /* Store */
73 unsigned lineno_checksum;
74 unsigned cfg_checksum;
75 gcov_type *counts;
76 gcov_summary summary;
78 /* hash_table support. */
79 static inline hashval_t hash (const counts_entry *);
80 static int equal (const counts_entry *, const counts_entry *);
81 static void remove (counts_entry *);
84 static GTY(()) struct coverage_data *functions_head = 0;
85 static struct coverage_data **functions_tail = &functions_head;
86 static unsigned no_coverage = 0;
88 /* Cumulative counter information for whole program. */
89 static unsigned prg_ctr_mask; /* Mask of counter types generated. */
91 /* Counter information for current function. */
92 static unsigned fn_ctr_mask; /* Mask of counters used. */
93 static GTY(()) tree fn_v_ctrs[GCOV_COUNTERS]; /* counter variables. */
94 static unsigned fn_n_ctrs[GCOV_COUNTERS]; /* Counters allocated. */
95 static unsigned fn_b_ctrs[GCOV_COUNTERS]; /* Allocation base. */
97 /* Coverage info VAR_DECL and function info type nodes. */
98 static GTY(()) tree gcov_info_var;
99 static GTY(()) tree gcov_fn_info_type;
100 static GTY(()) tree gcov_fn_info_ptr_type;
102 /* Name of the notes (gcno) output file. The "bbg" prefix is for
103 historical reasons, when the notes file contained only the
104 basic block graph notes.
105 If this is NULL we're not writing to the notes file. */
106 static char *bbg_file_name;
108 /* File stamp for notes file. */
109 static unsigned bbg_file_stamp;
111 /* Name of the count data (gcda) file. */
112 static char *da_file_name;
114 /* The names of merge functions for counters. */
115 #define STR(str) #str
116 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) STR(__gcov_merge ## FN_TYPE),
117 static const char *const ctr_merge_functions[GCOV_COUNTERS] = {
118 #include "gcov-counter.def"
120 #undef DEF_GCOV_COUNTER
121 #undef STR
123 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) NAME,
124 static const char *const ctr_names[GCOV_COUNTERS] = {
125 #include "gcov-counter.def"
127 #undef DEF_GCOV_COUNTER
129 /* Forward declarations. */
130 static void read_counts_file (void);
131 static tree build_var (tree, tree, int);
132 static void build_fn_info_type (tree, unsigned, tree);
133 static void build_info_type (tree, tree);
134 static tree build_fn_info (const struct coverage_data *, tree, tree);
135 static tree build_info (tree, tree);
136 static bool coverage_obj_init (void);
137 static vec<constructor_elt, va_gc> *coverage_obj_fn
138 (vec<constructor_elt, va_gc> *, tree, struct coverage_data const *);
139 static void coverage_obj_finish (vec<constructor_elt, va_gc> *);
141 /* Return the type node for gcov_type. */
143 tree
144 get_gcov_type (void)
146 scalar_int_mode mode
147 = smallest_int_mode_for_size (LONG_LONG_TYPE_SIZE > 32 ? 64 : 32);
148 return lang_hooks.types.type_for_mode (mode, false);
151 /* Return the type node for gcov_unsigned_t. */
153 static tree
154 get_gcov_unsigned_t (void)
156 scalar_int_mode mode = smallest_int_mode_for_size (32);
157 return lang_hooks.types.type_for_mode (mode, true);
160 inline hashval_t
161 counts_entry::hash (const counts_entry *entry)
163 return entry->ident * GCOV_COUNTERS + entry->ctr;
166 inline int
167 counts_entry::equal (const counts_entry *entry1, const counts_entry *entry2)
169 return entry1->ident == entry2->ident && entry1->ctr == entry2->ctr;
172 inline void
173 counts_entry::remove (counts_entry *entry)
175 free (entry->counts);
176 free (entry);
179 /* Hash table of count data. */
180 static hash_table<counts_entry> *counts_hash;
182 /* Read in the counts file, if available. */
184 static void
185 read_counts_file (void)
187 gcov_unsigned_t fn_ident = 0;
188 gcov_summary summary;
189 unsigned new_summary = 1;
190 gcov_unsigned_t tag;
191 int is_error = 0;
192 unsigned lineno_checksum = 0;
193 unsigned cfg_checksum = 0;
195 if (!gcov_open (da_file_name, 1))
196 return;
198 if (!gcov_magic (gcov_read_unsigned (), GCOV_DATA_MAGIC))
200 warning (0, "%qs is not a gcov data file", da_file_name);
201 gcov_close ();
202 return;
204 else if ((tag = gcov_read_unsigned ()) != GCOV_VERSION)
206 char v[4], e[4];
208 GCOV_UNSIGNED2STRING (v, tag);
209 GCOV_UNSIGNED2STRING (e, GCOV_VERSION);
211 warning (0, "%qs is version %q.*s, expected version %q.*s",
212 da_file_name, 4, v, 4, e);
213 gcov_close ();
214 return;
217 /* Read the stamp, used for creating a generation count. */
218 tag = gcov_read_unsigned ();
219 bbg_file_stamp = crc32_unsigned (bbg_file_stamp, tag);
221 counts_hash = new hash_table<counts_entry> (10);
222 while ((tag = gcov_read_unsigned ()))
224 gcov_unsigned_t length;
225 gcov_position_t offset;
227 length = gcov_read_unsigned ();
228 offset = gcov_position ();
229 if (tag == GCOV_TAG_FUNCTION)
231 if (length)
233 fn_ident = gcov_read_unsigned ();
234 lineno_checksum = gcov_read_unsigned ();
235 cfg_checksum = gcov_read_unsigned ();
237 else
238 fn_ident = lineno_checksum = cfg_checksum = 0;
239 new_summary = 1;
241 else if (tag == GCOV_TAG_PROGRAM_SUMMARY)
243 struct gcov_summary sum;
245 if (new_summary)
246 memset (&summary, 0, sizeof (summary));
248 gcov_read_summary (&sum);
249 summary.runs += sum.runs;
250 summary.sum_all += sum.sum_all;
251 if (summary.run_max < sum.run_max)
252 summary.run_max = sum.run_max;
253 summary.sum_max += sum.sum_max;
254 if (new_summary)
255 memcpy (summary.histogram, sum.histogram,
256 sizeof (gcov_bucket_type) * GCOV_HISTOGRAM_SIZE);
257 else
258 gcov_histogram_merge (summary.histogram, sum.histogram);
259 new_summary = 0;
261 else if (GCOV_TAG_IS_COUNTER (tag) && fn_ident)
263 counts_entry **slot, *entry, elt;
264 unsigned n_counts = GCOV_TAG_COUNTER_NUM (length);
265 unsigned ix;
267 elt.ident = fn_ident;
268 elt.ctr = GCOV_COUNTER_FOR_TAG (tag);
270 slot = counts_hash->find_slot (&elt, INSERT);
271 entry = *slot;
272 if (!entry)
274 *slot = entry = XCNEW (counts_entry);
275 entry->ident = fn_ident;
276 entry->ctr = elt.ctr;
277 entry->lineno_checksum = lineno_checksum;
278 entry->cfg_checksum = cfg_checksum;
279 if (elt.ctr == GCOV_COUNTER_ARCS)
280 entry->summary = summary;
281 entry->summary.num = n_counts;
282 entry->counts = XCNEWVEC (gcov_type, n_counts);
284 else if (entry->lineno_checksum != lineno_checksum
285 || entry->cfg_checksum != cfg_checksum)
287 error ("Profile data for function %u is corrupted", fn_ident);
288 error ("checksum is (%x,%x) instead of (%x,%x)",
289 entry->lineno_checksum, entry->cfg_checksum,
290 lineno_checksum, cfg_checksum);
291 delete counts_hash;
292 counts_hash = NULL;
293 break;
295 else if (entry->summary.num != n_counts)
297 error ("Profile data for function %u is corrupted", fn_ident);
298 error ("number of counters is %d instead of %d", entry->summary.num, n_counts);
299 delete counts_hash;
300 counts_hash = NULL;
301 break;
303 else
305 entry->summary.runs += summary.runs;
306 entry->summary.sum_all += summary.sum_all;
307 if (entry->summary.run_max < summary.run_max)
308 entry->summary.run_max = summary.run_max;
309 entry->summary.sum_max += summary.sum_max;
311 for (ix = 0; ix != n_counts; ix++)
312 entry->counts[ix] += gcov_read_counter ();
314 gcov_sync (offset, length);
315 if ((is_error = gcov_is_error ()))
317 error (is_error < 0
318 ? G_("%qs has overflowed")
319 : G_("%qs is corrupted"),
320 da_file_name);
321 delete counts_hash;
322 counts_hash = NULL;
323 break;
327 gcov_close ();
330 /* Returns the counters for a particular tag. */
332 gcov_type *
333 get_coverage_counts (unsigned counter, unsigned expected,
334 unsigned cfg_checksum, unsigned lineno_checksum,
335 const gcov_summary **summary)
337 counts_entry *entry, elt;
339 /* No hash table, no counts. */
340 if (!counts_hash)
342 static int warned = 0;
344 if (!warned++ && dump_enabled_p ())
345 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, input_location,
346 (flag_guess_branch_prob
347 ? "file %s not found, execution counts estimated\n"
348 : "file %s not found, execution counts assumed to "
349 "be zero\n"),
350 da_file_name);
351 return NULL;
353 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID))
354 elt.ident = current_function_funcdef_no + 1;
355 else
357 gcc_assert (coverage_node_map_initialized_p ());
358 elt.ident = cgraph_node::get (cfun->decl)->profile_id;
360 elt.ctr = counter;
361 entry = counts_hash->find (&elt);
362 if (!entry || !entry->summary.num)
363 /* The function was not emitted, or is weak and not chosen in the
364 final executable. Silently fail, because there's nothing we
365 can do about it. */
366 return NULL;
368 if (entry->cfg_checksum != cfg_checksum
369 || entry->summary.num != expected)
371 static int warned = 0;
372 bool warning_printed = false;
373 tree id = DECL_ASSEMBLER_NAME (current_function_decl);
375 warning_printed =
376 warning_at (input_location, OPT_Wcoverage_mismatch,
377 "the control flow of function %qE does not match "
378 "its profile data (counter %qs)", id, ctr_names[counter]);
379 if (warning_printed && dump_enabled_p ())
381 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, input_location,
382 "use -Wno-error=coverage-mismatch to tolerate "
383 "the mismatch but performance may drop if the "
384 "function is hot\n");
386 if (!seen_error ()
387 && !warned++)
389 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, input_location,
390 "coverage mismatch ignored\n");
391 dump_printf (MSG_OPTIMIZED_LOCATIONS,
392 flag_guess_branch_prob
393 ? G_("execution counts estimated\n")
394 : G_("execution counts assumed to be zero\n"));
395 if (!flag_guess_branch_prob)
396 dump_printf (MSG_OPTIMIZED_LOCATIONS,
397 "this can result in poorly optimized code\n");
401 return NULL;
403 else if (entry->lineno_checksum != lineno_checksum)
405 warning (OPT_Wcoverage_mismatch,
406 "source locations for function %qE have changed,"
407 " the profile data may be out of date",
408 DECL_ASSEMBLER_NAME (current_function_decl));
411 if (summary)
412 *summary = &entry->summary;
414 return entry->counts;
417 /* Allocate NUM counters of type COUNTER. Returns nonzero if the
418 allocation succeeded. */
421 coverage_counter_alloc (unsigned counter, unsigned num)
423 if (no_coverage)
424 return 0;
426 if (!num)
427 return 1;
429 if (!fn_v_ctrs[counter])
431 tree array_type = build_array_type (get_gcov_type (), NULL_TREE);
433 fn_v_ctrs[counter]
434 = build_var (current_function_decl, array_type, counter);
437 fn_b_ctrs[counter] = fn_n_ctrs[counter];
438 fn_n_ctrs[counter] += num;
440 fn_ctr_mask |= 1 << counter;
441 return 1;
444 /* Generate a tree to access COUNTER NO. */
446 tree
447 tree_coverage_counter_ref (unsigned counter, unsigned no)
449 tree gcov_type_node = get_gcov_type ();
451 gcc_assert (no < fn_n_ctrs[counter] - fn_b_ctrs[counter]);
453 no += fn_b_ctrs[counter];
455 /* "no" here is an array index, scaled to bytes later. */
456 return build4 (ARRAY_REF, gcov_type_node, fn_v_ctrs[counter],
457 build_int_cst (integer_type_node, no), NULL, NULL);
460 /* Generate a tree to access the address of COUNTER NO. */
462 tree
463 tree_coverage_counter_addr (unsigned counter, unsigned no)
465 tree gcov_type_node = get_gcov_type ();
467 gcc_assert (no < fn_n_ctrs[counter] - fn_b_ctrs[counter]);
468 no += fn_b_ctrs[counter];
470 /* "no" here is an array index, scaled to bytes later. */
471 return build_fold_addr_expr (build4 (ARRAY_REF, gcov_type_node,
472 fn_v_ctrs[counter],
473 build_int_cst (integer_type_node, no),
474 NULL, NULL));
478 /* Generate a checksum for a string. CHKSUM is the current
479 checksum. */
481 static unsigned
482 coverage_checksum_string (unsigned chksum, const char *string)
484 int i;
485 char *dup = NULL;
487 /* Look for everything that looks if it were produced by
488 get_file_function_name and zero out the second part
489 that may result from flag_random_seed. This is not critical
490 as the checksums are used only for sanity checking. */
491 for (i = 0; string[i]; i++)
493 int offset = 0;
494 if (!strncmp (string + i, "_GLOBAL__N_", 11))
495 offset = 11;
496 if (!strncmp (string + i, "_GLOBAL__", 9))
497 offset = 9;
499 /* C++ namespaces do have scheme:
500 _GLOBAL__N_<filename>_<wrongmagicnumber>_<magicnumber>functionname
501 since filename might contain extra underscores there seems
502 to be no better chance then walk all possible offsets looking
503 for magicnumber. */
504 if (offset)
506 for (i = i + offset; string[i]; i++)
507 if (string[i]=='_')
509 int y;
511 for (y = 1; y < 9; y++)
512 if (!(string[i + y] >= '0' && string[i + y] <= '9')
513 && !(string[i + y] >= 'A' && string[i + y] <= 'F'))
514 break;
515 if (y != 9 || string[i + 9] != '_')
516 continue;
517 for (y = 10; y < 18; y++)
518 if (!(string[i + y] >= '0' && string[i + y] <= '9')
519 && !(string[i + y] >= 'A' && string[i + y] <= 'F'))
520 break;
521 if (y != 18)
522 continue;
523 if (!dup)
524 string = dup = xstrdup (string);
525 for (y = 10; y < 18; y++)
526 dup[i + y] = '0';
528 break;
532 chksum = crc32_string (chksum, string);
533 free (dup);
535 return chksum;
538 /* Compute checksum for the current function. We generate a CRC32. */
540 unsigned
541 coverage_compute_lineno_checksum (void)
543 expanded_location xloc
544 = expand_location (DECL_SOURCE_LOCATION (current_function_decl));
545 unsigned chksum = xloc.line;
547 if (xloc.file)
548 chksum = coverage_checksum_string (chksum, xloc.file);
549 chksum = coverage_checksum_string
550 (chksum, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (current_function_decl)));
552 return chksum;
555 /* Compute profile ID. This is better to be unique in whole program. */
557 unsigned
558 coverage_compute_profile_id (struct cgraph_node *n)
560 unsigned chksum;
562 /* Externally visible symbols have unique name. */
563 if (TREE_PUBLIC (n->decl) || DECL_EXTERNAL (n->decl) || n->unique_name)
565 chksum = coverage_checksum_string
566 (0, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n->decl)));
568 else
570 expanded_location xloc
571 = expand_location (DECL_SOURCE_LOCATION (n->decl));
572 bool use_name_only = (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID) == 0);
574 chksum = (use_name_only ? 0 : xloc.line);
575 if (xloc.file)
576 chksum = coverage_checksum_string (chksum, xloc.file);
577 chksum = coverage_checksum_string
578 (chksum, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n->decl)));
579 if (!use_name_only && first_global_object_name)
580 chksum = coverage_checksum_string
581 (chksum, first_global_object_name);
582 chksum = coverage_checksum_string
583 (chksum, aux_base_name);
586 /* Non-negative integers are hopefully small enough to fit in all targets.
587 Gcov file formats wants non-zero function IDs. */
588 chksum = chksum & 0x7fffffff;
589 return chksum + (!chksum);
592 /* Compute cfg checksum for the function FN given as argument.
593 The checksum is calculated carefully so that
594 source code changes that doesn't affect the control flow graph
595 won't change the checksum.
596 This is to make the profile data useable across source code change.
597 The downside of this is that the compiler may use potentially
598 wrong profile data - that the source code change has non-trivial impact
599 on the validity of profile data (e.g. the reversed condition)
600 but the compiler won't detect the change and use the wrong profile data. */
602 unsigned
603 coverage_compute_cfg_checksum (struct function *fn)
605 basic_block bb;
606 unsigned chksum = n_basic_blocks_for_fn (fn);
608 FOR_EACH_BB_FN (bb, fn)
610 edge e;
611 edge_iterator ei;
612 chksum = crc32_byte (chksum, bb->index);
613 FOR_EACH_EDGE (e, ei, bb->succs)
615 chksum = crc32_byte (chksum, e->dest->index);
619 return chksum;
622 /* Begin output to the notes file for the current function.
623 Writes the function header. Returns nonzero if data should be output. */
626 coverage_begin_function (unsigned lineno_checksum, unsigned cfg_checksum)
628 expanded_location xloc;
629 unsigned long offset;
631 /* We don't need to output .gcno file unless we're under -ftest-coverage
632 (e.g. -fprofile-arcs/generate/use don't need .gcno to work). */
633 if (no_coverage || !bbg_file_name)
634 return 0;
636 xloc = expand_location (DECL_SOURCE_LOCATION (current_function_decl));
638 /* Announce function */
639 offset = gcov_write_tag (GCOV_TAG_FUNCTION);
640 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID))
641 gcov_write_unsigned (current_function_funcdef_no + 1);
642 else
644 gcc_assert (coverage_node_map_initialized_p ());
645 gcov_write_unsigned (
646 cgraph_node::get (current_function_decl)->profile_id);
649 gcov_write_unsigned (lineno_checksum);
650 gcov_write_unsigned (cfg_checksum);
651 gcov_write_string (IDENTIFIER_POINTER
652 (DECL_ASSEMBLER_NAME (current_function_decl)));
653 gcov_write_unsigned (DECL_ARTIFICIAL (current_function_decl));
654 gcov_write_filename (xloc.file);
655 gcov_write_unsigned (xloc.line);
656 gcov_write_unsigned (xloc.column);
658 expanded_location endloc = expand_location (cfun->function_end_locus);
660 /* Function can start in a single file and end in another one. */
661 gcov_write_unsigned (endloc.file == xloc.file ? endloc.line : xloc.line);
662 gcov_write_length (offset);
664 return !gcov_is_error ();
667 /* Finish coverage data for the current function. Verify no output
668 error has occurred. Save function coverage counts. */
670 void
671 coverage_end_function (unsigned lineno_checksum, unsigned cfg_checksum)
673 unsigned i;
675 if (bbg_file_name && gcov_is_error ())
677 warning (0, "error writing %qs", bbg_file_name);
678 unlink (bbg_file_name);
679 bbg_file_name = NULL;
682 if (fn_ctr_mask)
684 struct coverage_data *item = 0;
686 item = ggc_alloc<coverage_data> ();
688 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID))
689 item->ident = current_function_funcdef_no + 1;
690 else
692 gcc_assert (coverage_node_map_initialized_p ());
693 item->ident = cgraph_node::get (cfun->decl)->profile_id;
696 item->lineno_checksum = lineno_checksum;
697 item->cfg_checksum = cfg_checksum;
699 item->fn_decl = current_function_decl;
700 item->next = 0;
701 *functions_tail = item;
702 functions_tail = &item->next;
704 for (i = 0; i != GCOV_COUNTERS; i++)
706 tree var = fn_v_ctrs[i];
708 if (item)
709 item->ctr_vars[i] = var;
710 if (var)
712 tree array_type = build_index_type (size_int (fn_n_ctrs[i] - 1));
713 array_type = build_array_type (get_gcov_type (), array_type);
714 TREE_TYPE (var) = array_type;
715 DECL_SIZE (var) = TYPE_SIZE (array_type);
716 DECL_SIZE_UNIT (var) = TYPE_SIZE_UNIT (array_type);
717 varpool_node::finalize_decl (var);
720 fn_b_ctrs[i] = fn_n_ctrs[i] = 0;
721 fn_v_ctrs[i] = NULL_TREE;
723 prg_ctr_mask |= fn_ctr_mask;
724 fn_ctr_mask = 0;
728 /* Remove coverage file if opened. */
730 void
731 coverage_remove_note_file (void)
733 if (bbg_file_name)
735 gcov_close ();
736 unlink (bbg_file_name);
740 /* Build a coverage variable of TYPE for function FN_DECL. If COUNTER
741 >= 0 it is a counter array, otherwise it is the function structure. */
743 static tree
744 build_var (tree fn_decl, tree type, int counter)
746 tree var = build_decl (BUILTINS_LOCATION, VAR_DECL, NULL_TREE, type);
747 const char *fn_name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fn_decl));
748 char *buf;
749 size_t fn_name_len, len;
751 fn_name = targetm.strip_name_encoding (fn_name);
752 fn_name_len = strlen (fn_name);
753 buf = XALLOCAVEC (char, fn_name_len + 8 + sizeof (int) * 3);
755 if (counter < 0)
756 strcpy (buf, "__gcov__");
757 else
758 sprintf (buf, "__gcov%u_", counter);
759 len = strlen (buf);
760 buf[len - 1] = symbol_table::symbol_suffix_separator ();
761 memcpy (buf + len, fn_name, fn_name_len + 1);
762 DECL_NAME (var) = get_identifier (buf);
763 TREE_STATIC (var) = 1;
764 TREE_ADDRESSABLE (var) = 1;
765 DECL_NONALIASED (var) = 1;
766 SET_DECL_ALIGN (var, TYPE_ALIGN (type));
768 return var;
771 /* Creates the gcov_fn_info RECORD_TYPE. */
773 static void
774 build_fn_info_type (tree type, unsigned counters, tree gcov_info_type)
776 tree ctr_info = lang_hooks.types.make_type (RECORD_TYPE);
777 tree field, fields;
778 tree array_type;
780 gcc_assert (counters);
782 /* ctr_info::num */
783 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
784 get_gcov_unsigned_t ());
785 fields = field;
787 /* ctr_info::values */
788 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
789 build_pointer_type (get_gcov_type ()));
790 DECL_CHAIN (field) = fields;
791 fields = field;
793 finish_builtin_struct (ctr_info, "__gcov_ctr_info", fields, NULL_TREE);
795 /* key */
796 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
797 build_pointer_type (build_qualified_type
798 (gcov_info_type, TYPE_QUAL_CONST)));
799 fields = field;
801 /* ident */
802 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
803 get_gcov_unsigned_t ());
804 DECL_CHAIN (field) = fields;
805 fields = field;
807 /* lineno_checksum */
808 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
809 get_gcov_unsigned_t ());
810 DECL_CHAIN (field) = fields;
811 fields = field;
813 /* cfg checksum */
814 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
815 get_gcov_unsigned_t ());
816 DECL_CHAIN (field) = fields;
817 fields = field;
819 array_type = build_index_type (size_int (counters - 1));
820 array_type = build_array_type (ctr_info, array_type);
822 /* counters */
823 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE, array_type);
824 DECL_CHAIN (field) = fields;
825 fields = field;
827 finish_builtin_struct (type, "__gcov_fn_info", fields, NULL_TREE);
830 /* Returns a CONSTRUCTOR for a gcov_fn_info. DATA is
831 the coverage data for the function and TYPE is the gcov_fn_info
832 RECORD_TYPE. KEY is the object file key. */
834 static tree
835 build_fn_info (const struct coverage_data *data, tree type, tree key)
837 tree fields = TYPE_FIELDS (type);
838 tree ctr_type;
839 unsigned ix;
840 vec<constructor_elt, va_gc> *v1 = NULL;
841 vec<constructor_elt, va_gc> *v2 = NULL;
843 /* key */
844 CONSTRUCTOR_APPEND_ELT (v1, fields,
845 build1 (ADDR_EXPR, TREE_TYPE (fields), key));
846 fields = DECL_CHAIN (fields);
848 /* ident */
849 CONSTRUCTOR_APPEND_ELT (v1, fields,
850 build_int_cstu (get_gcov_unsigned_t (),
851 data->ident));
852 fields = DECL_CHAIN (fields);
854 /* lineno_checksum */
855 CONSTRUCTOR_APPEND_ELT (v1, fields,
856 build_int_cstu (get_gcov_unsigned_t (),
857 data->lineno_checksum));
858 fields = DECL_CHAIN (fields);
860 /* cfg_checksum */
861 CONSTRUCTOR_APPEND_ELT (v1, fields,
862 build_int_cstu (get_gcov_unsigned_t (),
863 data->cfg_checksum));
864 fields = DECL_CHAIN (fields);
866 /* counters */
867 ctr_type = TREE_TYPE (TREE_TYPE (fields));
868 for (ix = 0; ix != GCOV_COUNTERS; ix++)
869 if (prg_ctr_mask & (1 << ix))
871 vec<constructor_elt, va_gc> *ctr = NULL;
872 tree var = data->ctr_vars[ix];
873 unsigned count = 0;
875 if (var)
876 count
877 = tree_to_shwi (TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (var))))
878 + 1;
880 CONSTRUCTOR_APPEND_ELT (ctr, TYPE_FIELDS (ctr_type),
881 build_int_cstu (get_gcov_unsigned_t (),
882 count));
884 if (var)
885 CONSTRUCTOR_APPEND_ELT (ctr, DECL_CHAIN (TYPE_FIELDS (ctr_type)),
886 build_fold_addr_expr (var));
888 CONSTRUCTOR_APPEND_ELT (v2, NULL, build_constructor (ctr_type, ctr));
891 CONSTRUCTOR_APPEND_ELT (v1, fields,
892 build_constructor (TREE_TYPE (fields), v2));
894 return build_constructor (type, v1);
897 /* Create gcov_info struct. TYPE is the incomplete RECORD_TYPE to be
898 completed, and FN_INFO_PTR_TYPE is a pointer to the function info type. */
900 static void
901 build_info_type (tree type, tree fn_info_ptr_type)
903 tree field, fields = NULL_TREE;
904 tree merge_fn_type;
906 /* Version ident */
907 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
908 get_gcov_unsigned_t ());
909 DECL_CHAIN (field) = fields;
910 fields = field;
912 /* next pointer */
913 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
914 build_pointer_type (build_qualified_type
915 (type, TYPE_QUAL_CONST)));
916 DECL_CHAIN (field) = fields;
917 fields = field;
919 /* stamp */
920 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
921 get_gcov_unsigned_t ());
922 DECL_CHAIN (field) = fields;
923 fields = field;
925 /* Filename */
926 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
927 build_pointer_type (build_qualified_type
928 (char_type_node, TYPE_QUAL_CONST)));
929 DECL_CHAIN (field) = fields;
930 fields = field;
932 /* merge fn array */
933 merge_fn_type
934 = build_function_type_list (void_type_node,
935 build_pointer_type (get_gcov_type ()),
936 get_gcov_unsigned_t (), NULL_TREE);
937 merge_fn_type
938 = build_array_type (build_pointer_type (merge_fn_type),
939 build_index_type (size_int (GCOV_COUNTERS - 1)));
940 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
941 merge_fn_type);
942 DECL_CHAIN (field) = fields;
943 fields = field;
945 /* n_functions */
946 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
947 get_gcov_unsigned_t ());
948 DECL_CHAIN (field) = fields;
949 fields = field;
951 /* function_info pointer pointer */
952 fn_info_ptr_type = build_pointer_type
953 (build_qualified_type (fn_info_ptr_type, TYPE_QUAL_CONST));
954 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
955 fn_info_ptr_type);
956 DECL_CHAIN (field) = fields;
957 fields = field;
959 finish_builtin_struct (type, "__gcov_info", fields, NULL_TREE);
962 /* Returns a CONSTRUCTOR for the gcov_info object. INFO_TYPE is the
963 gcov_info structure type, FN_ARY is the array of pointers to
964 function info objects. */
966 static tree
967 build_info (tree info_type, tree fn_ary)
969 tree info_fields = TYPE_FIELDS (info_type);
970 tree merge_fn_type, n_funcs;
971 unsigned ix;
972 tree filename_string;
973 int da_file_name_len;
974 vec<constructor_elt, va_gc> *v1 = NULL;
975 vec<constructor_elt, va_gc> *v2 = NULL;
977 /* Version ident */
978 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
979 build_int_cstu (TREE_TYPE (info_fields),
980 GCOV_VERSION));
981 info_fields = DECL_CHAIN (info_fields);
983 /* next -- NULL */
984 CONSTRUCTOR_APPEND_ELT (v1, info_fields, null_pointer_node);
985 info_fields = DECL_CHAIN (info_fields);
987 /* stamp */
988 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
989 build_int_cstu (TREE_TYPE (info_fields),
990 bbg_file_stamp));
991 info_fields = DECL_CHAIN (info_fields);
993 /* Filename */
994 da_file_name_len = strlen (da_file_name);
995 filename_string = build_string (da_file_name_len + 1, da_file_name);
996 TREE_TYPE (filename_string) = build_array_type
997 (char_type_node, build_index_type (size_int (da_file_name_len)));
998 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
999 build1 (ADDR_EXPR, TREE_TYPE (info_fields),
1000 filename_string));
1001 info_fields = DECL_CHAIN (info_fields);
1003 /* merge fn array -- NULL slots indicate unmeasured counters */
1004 merge_fn_type = TREE_TYPE (TREE_TYPE (info_fields));
1005 for (ix = 0; ix != GCOV_COUNTERS; ix++)
1007 tree ptr = null_pointer_node;
1009 if ((1u << ix) & prg_ctr_mask)
1011 tree merge_fn = build_decl (BUILTINS_LOCATION,
1012 FUNCTION_DECL,
1013 get_identifier (ctr_merge_functions[ix]),
1014 TREE_TYPE (merge_fn_type));
1015 DECL_EXTERNAL (merge_fn) = 1;
1016 TREE_PUBLIC (merge_fn) = 1;
1017 DECL_ARTIFICIAL (merge_fn) = 1;
1018 TREE_NOTHROW (merge_fn) = 1;
1019 /* Initialize assembler name so we can stream out. */
1020 DECL_ASSEMBLER_NAME (merge_fn);
1021 ptr = build1 (ADDR_EXPR, merge_fn_type, merge_fn);
1023 CONSTRUCTOR_APPEND_ELT (v2, NULL, ptr);
1025 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
1026 build_constructor (TREE_TYPE (info_fields), v2));
1027 info_fields = DECL_CHAIN (info_fields);
1029 /* n_functions */
1030 n_funcs = TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (fn_ary)));
1031 n_funcs = fold_build2 (PLUS_EXPR, TREE_TYPE (info_fields),
1032 n_funcs, size_one_node);
1033 CONSTRUCTOR_APPEND_ELT (v1, info_fields, n_funcs);
1034 info_fields = DECL_CHAIN (info_fields);
1036 /* functions */
1037 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
1038 build1 (ADDR_EXPR, TREE_TYPE (info_fields), fn_ary));
1039 info_fields = DECL_CHAIN (info_fields);
1041 gcc_assert (!info_fields);
1042 return build_constructor (info_type, v1);
1045 /* Generate the constructor function to call __gcov_init. */
1047 static void
1048 build_init_ctor (tree gcov_info_type)
1050 tree ctor, stmt, init_fn;
1052 /* Build a decl for __gcov_init. */
1053 init_fn = build_pointer_type (gcov_info_type);
1054 init_fn = build_function_type_list (void_type_node, init_fn, NULL);
1055 init_fn = build_decl (BUILTINS_LOCATION, FUNCTION_DECL,
1056 get_identifier ("__gcov_init"), init_fn);
1057 TREE_PUBLIC (init_fn) = 1;
1058 DECL_EXTERNAL (init_fn) = 1;
1059 DECL_ASSEMBLER_NAME (init_fn);
1061 /* Generate a call to __gcov_init(&gcov_info). */
1062 ctor = NULL;
1063 stmt = build_fold_addr_expr (gcov_info_var);
1064 stmt = build_call_expr (init_fn, 1, stmt);
1065 append_to_statement_list (stmt, &ctor);
1067 /* Generate a constructor to run it. */
1068 int priority = SUPPORTS_INIT_PRIORITY
1069 ? MAX_RESERVED_INIT_PRIORITY: DEFAULT_INIT_PRIORITY;
1070 cgraph_build_static_cdtor ('I', ctor, priority);
1073 /* Generate the destructor function to call __gcov_exit. */
1075 static void
1076 build_gcov_exit_decl (void)
1078 tree init_fn = build_function_type_list (void_type_node, void_type_node,
1079 NULL);
1080 init_fn = build_decl (BUILTINS_LOCATION, FUNCTION_DECL,
1081 get_identifier ("__gcov_exit"), init_fn);
1082 TREE_PUBLIC (init_fn) = 1;
1083 DECL_EXTERNAL (init_fn) = 1;
1084 DECL_ASSEMBLER_NAME (init_fn);
1086 /* Generate a call to __gcov_exit (). */
1087 tree dtor = NULL;
1088 tree stmt = build_call_expr (init_fn, 0);
1089 append_to_statement_list (stmt, &dtor);
1091 /* Generate a destructor to run it. */
1092 int priority = SUPPORTS_INIT_PRIORITY
1093 ? MAX_RESERVED_INIT_PRIORITY: DEFAULT_INIT_PRIORITY;
1095 cgraph_build_static_cdtor ('D', dtor, priority);
1098 /* Create the gcov_info types and object. Generate the constructor
1099 function to call __gcov_init. Does not generate the initializer
1100 for the object. Returns TRUE if coverage data is being emitted. */
1102 static bool
1103 coverage_obj_init (void)
1105 tree gcov_info_type;
1106 unsigned n_counters = 0;
1107 unsigned ix;
1108 struct coverage_data *fn;
1109 struct coverage_data **fn_prev;
1110 char name_buf[32];
1112 no_coverage = 1; /* Disable any further coverage. */
1114 if (!prg_ctr_mask)
1115 return false;
1117 if (symtab->dump_file)
1118 fprintf (symtab->dump_file, "Using data file %s\n", da_file_name);
1120 /* Prune functions. */
1121 for (fn_prev = &functions_head; (fn = *fn_prev);)
1122 if (DECL_STRUCT_FUNCTION (fn->fn_decl))
1123 fn_prev = &fn->next;
1124 else
1125 /* The function is not being emitted, remove from list. */
1126 *fn_prev = fn->next;
1128 if (functions_head == NULL)
1129 return false;
1131 for (ix = 0; ix != GCOV_COUNTERS; ix++)
1132 if ((1u << ix) & prg_ctr_mask)
1133 n_counters++;
1135 /* Build the info and fn_info types. These are mutually recursive. */
1136 gcov_info_type = lang_hooks.types.make_type (RECORD_TYPE);
1137 gcov_fn_info_type = lang_hooks.types.make_type (RECORD_TYPE);
1138 build_fn_info_type (gcov_fn_info_type, n_counters, gcov_info_type);
1139 gcov_info_type = lang_hooks.types.make_type (RECORD_TYPE);
1140 gcov_fn_info_ptr_type = build_pointer_type
1141 (build_qualified_type (gcov_fn_info_type, TYPE_QUAL_CONST));
1142 build_info_type (gcov_info_type, gcov_fn_info_ptr_type);
1144 /* Build the gcov info var, this is referred to in its own
1145 initializer. */
1146 gcov_info_var = build_decl (BUILTINS_LOCATION,
1147 VAR_DECL, NULL_TREE, gcov_info_type);
1148 TREE_STATIC (gcov_info_var) = 1;
1149 ASM_GENERATE_INTERNAL_LABEL (name_buf, "LPBX", 0);
1150 DECL_NAME (gcov_info_var) = get_identifier (name_buf);
1152 build_init_ctor (gcov_info_type);
1153 build_gcov_exit_decl ();
1155 return true;
1158 /* Generate the coverage function info for FN and DATA. Append a
1159 pointer to that object to CTOR and return the appended CTOR. */
1161 static vec<constructor_elt, va_gc> *
1162 coverage_obj_fn (vec<constructor_elt, va_gc> *ctor, tree fn,
1163 struct coverage_data const *data)
1165 tree init = build_fn_info (data, gcov_fn_info_type, gcov_info_var);
1166 tree var = build_var (fn, gcov_fn_info_type, -1);
1168 DECL_INITIAL (var) = init;
1169 varpool_node::finalize_decl (var);
1171 CONSTRUCTOR_APPEND_ELT (ctor, NULL,
1172 build1 (ADDR_EXPR, gcov_fn_info_ptr_type, var));
1173 return ctor;
1176 /* Finalize the coverage data. Generates the array of pointers to
1177 function objects from CTOR. Generate the gcov_info initializer. */
1179 static void
1180 coverage_obj_finish (vec<constructor_elt, va_gc> *ctor)
1182 unsigned n_functions = vec_safe_length (ctor);
1183 tree fn_info_ary_type = build_array_type
1184 (build_qualified_type (gcov_fn_info_ptr_type, TYPE_QUAL_CONST),
1185 build_index_type (size_int (n_functions - 1)));
1186 tree fn_info_ary = build_decl (BUILTINS_LOCATION, VAR_DECL, NULL_TREE,
1187 fn_info_ary_type);
1188 char name_buf[32];
1190 TREE_STATIC (fn_info_ary) = 1;
1191 ASM_GENERATE_INTERNAL_LABEL (name_buf, "LPBX", 1);
1192 DECL_NAME (fn_info_ary) = get_identifier (name_buf);
1193 DECL_INITIAL (fn_info_ary) = build_constructor (fn_info_ary_type, ctor);
1194 varpool_node::finalize_decl (fn_info_ary);
1196 DECL_INITIAL (gcov_info_var)
1197 = build_info (TREE_TYPE (gcov_info_var), fn_info_ary);
1198 varpool_node::finalize_decl (gcov_info_var);
1201 /* Perform file-level initialization. Read in data file, generate name
1202 of notes file. */
1204 void
1205 coverage_init (const char *filename)
1207 int len = strlen (filename);
1208 int prefix_len = 0;
1210 /* Since coverage_init is invoked very early, before the pass
1211 manager, we need to set up the dumping explicitly. This is
1212 similar to the handling in finish_optimization_passes. */
1213 int profile_pass_num =
1214 g->get_passes ()->get_pass_profile ()->static_pass_number;
1215 g->get_dumps ()->dump_start (profile_pass_num, NULL);
1217 if (!profile_data_prefix && !IS_ABSOLUTE_PATH (filename))
1218 profile_data_prefix = getpwd ();
1220 if (profile_data_prefix)
1221 prefix_len = strlen (profile_data_prefix);
1223 /* Name of da file. */
1224 da_file_name = XNEWVEC (char, len + strlen (GCOV_DATA_SUFFIX)
1225 + prefix_len + 2);
1227 if (profile_data_prefix)
1229 memcpy (da_file_name, profile_data_prefix, prefix_len);
1230 da_file_name[prefix_len++] = '/';
1232 memcpy (da_file_name + prefix_len, filename, len);
1233 strcpy (da_file_name + prefix_len + len, GCOV_DATA_SUFFIX);
1235 bbg_file_stamp = local_tick;
1237 if (flag_auto_profile)
1238 read_autofdo_file ();
1239 else if (flag_branch_probabilities)
1240 read_counts_file ();
1242 /* Name of bbg file. */
1243 if (flag_test_coverage && !flag_compare_debug)
1245 bbg_file_name = XNEWVEC (char, len + strlen (GCOV_NOTE_SUFFIX) + 1);
1246 memcpy (bbg_file_name, filename, len);
1247 strcpy (bbg_file_name + len, GCOV_NOTE_SUFFIX);
1249 if (!gcov_open (bbg_file_name, -1))
1251 error ("cannot open %s", bbg_file_name);
1252 bbg_file_name = NULL;
1254 else
1256 gcov_write_unsigned (GCOV_NOTE_MAGIC);
1257 gcov_write_unsigned (GCOV_VERSION);
1258 gcov_write_unsigned (bbg_file_stamp);
1259 gcov_write_string (getpwd ());
1261 /* Do not support has_unexecuted_blocks for Ada. */
1262 gcov_write_unsigned (strcmp (lang_hooks.name, "GNU Ada") != 0);
1266 g->get_dumps ()->dump_finish (profile_pass_num);
1269 /* Performs file-level cleanup. Close notes file, generate coverage
1270 variables and constructor. */
1272 void
1273 coverage_finish (void)
1275 if (bbg_file_name && gcov_close ())
1276 unlink (bbg_file_name);
1278 if (!flag_branch_probabilities && flag_test_coverage
1279 && (!local_tick || local_tick == (unsigned)-1))
1280 /* Only remove the da file, if we're emitting coverage code and
1281 cannot uniquely stamp it. If we can stamp it, libgcov will DTRT. */
1282 unlink (da_file_name);
1284 if (coverage_obj_init ())
1286 vec<constructor_elt, va_gc> *fn_ctor = NULL;
1287 struct coverage_data *fn;
1289 for (fn = functions_head; fn; fn = fn->next)
1290 fn_ctor = coverage_obj_fn (fn_ctor, fn->fn_decl, fn);
1291 coverage_obj_finish (fn_ctor);
1294 XDELETEVEC (da_file_name);
1295 da_file_name = NULL;
1298 #include "gt-coverage.h"