* lib/scanasm.exp (hidden-scan-for): Add XCOFF support.
[official-gcc.git] / gcc / coverage.c
blob8810710be4f306a9a9f5b4d44da0ca86c546375e
1 /* Read and write coverage files, and associated functionality.
2 Copyright (C) 1990-2016 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 struct gcov_ctr_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 machine_mode mode
147 = smallest_mode_for_size (LONG_LONG_TYPE_SIZE > 32 ? 64 : 32, MODE_INT);
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 machine_mode mode = smallest_mode_for_size (32, MODE_INT);
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 struct 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;
244 unsigned ix;
246 if (new_summary)
247 memset (&summary, 0, sizeof (summary));
249 gcov_read_summary (&sum);
250 for (ix = 0; ix != GCOV_COUNTERS_SUMMABLE; ix++)
252 summary.ctrs[ix].runs += sum.ctrs[ix].runs;
253 summary.ctrs[ix].sum_all += sum.ctrs[ix].sum_all;
254 if (summary.ctrs[ix].run_max < sum.ctrs[ix].run_max)
255 summary.ctrs[ix].run_max = sum.ctrs[ix].run_max;
256 summary.ctrs[ix].sum_max += sum.ctrs[ix].sum_max;
258 if (new_summary)
259 memcpy (summary.ctrs[GCOV_COUNTER_ARCS].histogram,
260 sum.ctrs[GCOV_COUNTER_ARCS].histogram,
261 sizeof (gcov_bucket_type) * GCOV_HISTOGRAM_SIZE);
262 else
263 gcov_histogram_merge (summary.ctrs[GCOV_COUNTER_ARCS].histogram,
264 sum.ctrs[GCOV_COUNTER_ARCS].histogram);
265 new_summary = 0;
267 else if (GCOV_TAG_IS_COUNTER (tag) && fn_ident)
269 counts_entry **slot, *entry, elt;
270 unsigned n_counts = GCOV_TAG_COUNTER_NUM (length);
271 unsigned ix;
273 elt.ident = fn_ident;
274 elt.ctr = GCOV_COUNTER_FOR_TAG (tag);
276 slot = counts_hash->find_slot (&elt, INSERT);
277 entry = *slot;
278 if (!entry)
280 *slot = entry = XCNEW (counts_entry);
281 entry->ident = fn_ident;
282 entry->ctr = elt.ctr;
283 entry->lineno_checksum = lineno_checksum;
284 entry->cfg_checksum = cfg_checksum;
285 if (elt.ctr < GCOV_COUNTERS_SUMMABLE)
286 entry->summary = summary.ctrs[elt.ctr];
287 entry->summary.num = n_counts;
288 entry->counts = XCNEWVEC (gcov_type, n_counts);
290 else if (entry->lineno_checksum != lineno_checksum
291 || entry->cfg_checksum != cfg_checksum)
293 error ("Profile data for function %u is corrupted", fn_ident);
294 error ("checksum is (%x,%x) instead of (%x,%x)",
295 entry->lineno_checksum, entry->cfg_checksum,
296 lineno_checksum, cfg_checksum);
297 delete counts_hash;
298 counts_hash = NULL;
299 break;
301 else if (entry->summary.num != n_counts)
303 error ("Profile data for function %u is corrupted", fn_ident);
304 error ("number of counters is %d instead of %d", entry->summary.num, n_counts);
305 delete counts_hash;
306 counts_hash = NULL;
307 break;
309 else if (elt.ctr >= GCOV_COUNTERS_SUMMABLE)
311 error ("cannot merge separate %s counters for function %u",
312 ctr_names[elt.ctr], fn_ident);
313 goto skip_merge;
315 else
317 entry->summary.runs += summary.ctrs[elt.ctr].runs;
318 entry->summary.sum_all += summary.ctrs[elt.ctr].sum_all;
319 if (entry->summary.run_max < summary.ctrs[elt.ctr].run_max)
320 entry->summary.run_max = summary.ctrs[elt.ctr].run_max;
321 entry->summary.sum_max += summary.ctrs[elt.ctr].sum_max;
323 for (ix = 0; ix != n_counts; ix++)
324 entry->counts[ix] += gcov_read_counter ();
325 skip_merge:;
327 gcov_sync (offset, length);
328 if ((is_error = gcov_is_error ()))
330 error (is_error < 0 ? "%qs has overflowed" : "%qs is corrupted",
331 da_file_name);
332 delete counts_hash;
333 counts_hash = NULL;
334 break;
338 gcov_close ();
341 /* Returns the counters for a particular tag. */
343 gcov_type *
344 get_coverage_counts (unsigned counter, unsigned expected,
345 unsigned cfg_checksum, unsigned lineno_checksum,
346 const struct gcov_ctr_summary **summary)
348 counts_entry *entry, elt;
350 /* No hash table, no counts. */
351 if (!counts_hash)
353 static int warned = 0;
355 if (!warned++ && dump_enabled_p ())
356 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, input_location,
357 (flag_guess_branch_prob
358 ? "file %s not found, execution counts estimated\n"
359 : "file %s not found, execution counts assumed to "
360 "be zero\n"),
361 da_file_name);
362 return NULL;
364 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID))
365 elt.ident = current_function_funcdef_no + 1;
366 else
368 gcc_assert (coverage_node_map_initialized_p ());
369 elt.ident = cgraph_node::get (cfun->decl)->profile_id;
371 elt.ctr = counter;
372 entry = counts_hash->find (&elt);
373 if (!entry || !entry->summary.num)
374 /* The function was not emitted, or is weak and not chosen in the
375 final executable. Silently fail, because there's nothing we
376 can do about it. */
377 return NULL;
379 if (entry->cfg_checksum != cfg_checksum
380 || entry->summary.num != expected)
382 static int warned = 0;
383 bool warning_printed = false;
384 tree id = DECL_ASSEMBLER_NAME (current_function_decl);
386 warning_printed =
387 warning_at (input_location, OPT_Wcoverage_mismatch,
388 "the control flow of function %qE does not match "
389 "its profile data (counter %qs)", id, ctr_names[counter]);
390 if (warning_printed && dump_enabled_p ())
392 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, input_location,
393 "use -Wno-error=coverage-mismatch to tolerate "
394 "the mismatch but performance may drop if the "
395 "function is hot\n");
397 if (!seen_error ()
398 && !warned++)
400 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, input_location,
401 "coverage mismatch ignored\n");
402 dump_printf (MSG_OPTIMIZED_LOCATIONS,
403 flag_guess_branch_prob
404 ? G_("execution counts estimated\n")
405 : G_("execution counts assumed to be zero\n"));
406 if (!flag_guess_branch_prob)
407 dump_printf (MSG_OPTIMIZED_LOCATIONS,
408 "this can result in poorly optimized code\n");
412 return NULL;
414 else if (entry->lineno_checksum != lineno_checksum)
416 warning (OPT_Wcoverage_mismatch,
417 "source locations for function %qE have changed,"
418 " the profile data may be out of date",
419 DECL_ASSEMBLER_NAME (current_function_decl));
422 if (summary)
423 *summary = &entry->summary;
425 return entry->counts;
428 /* Allocate NUM counters of type COUNTER. Returns nonzero if the
429 allocation succeeded. */
432 coverage_counter_alloc (unsigned counter, unsigned num)
434 if (no_coverage)
435 return 0;
437 if (!num)
438 return 1;
440 if (!fn_v_ctrs[counter])
442 tree array_type = build_array_type (get_gcov_type (), NULL_TREE);
444 fn_v_ctrs[counter]
445 = build_var (current_function_decl, array_type, counter);
448 fn_b_ctrs[counter] = fn_n_ctrs[counter];
449 fn_n_ctrs[counter] += num;
451 fn_ctr_mask |= 1 << counter;
452 return 1;
455 /* Generate a tree to access COUNTER NO. */
457 tree
458 tree_coverage_counter_ref (unsigned counter, unsigned no)
460 tree gcov_type_node = get_gcov_type ();
462 gcc_assert (no < fn_n_ctrs[counter] - fn_b_ctrs[counter]);
464 no += fn_b_ctrs[counter];
466 /* "no" here is an array index, scaled to bytes later. */
467 return build4 (ARRAY_REF, gcov_type_node, fn_v_ctrs[counter],
468 build_int_cst (integer_type_node, no), NULL, NULL);
471 /* Generate a tree to access the address of COUNTER NO. */
473 tree
474 tree_coverage_counter_addr (unsigned counter, unsigned no)
476 tree gcov_type_node = get_gcov_type ();
478 gcc_assert (no < fn_n_ctrs[counter] - fn_b_ctrs[counter]);
479 no += fn_b_ctrs[counter];
481 /* "no" here is an array index, scaled to bytes later. */
482 return build_fold_addr_expr (build4 (ARRAY_REF, gcov_type_node,
483 fn_v_ctrs[counter],
484 build_int_cst (integer_type_node, no),
485 NULL, NULL));
489 /* Generate a checksum for a string. CHKSUM is the current
490 checksum. */
492 static unsigned
493 coverage_checksum_string (unsigned chksum, const char *string)
495 int i;
496 char *dup = NULL;
498 /* Look for everything that looks if it were produced by
499 get_file_function_name and zero out the second part
500 that may result from flag_random_seed. This is not critical
501 as the checksums are used only for sanity checking. */
502 for (i = 0; string[i]; i++)
504 int offset = 0;
505 if (!strncmp (string + i, "_GLOBAL__N_", 11))
506 offset = 11;
507 if (!strncmp (string + i, "_GLOBAL__", 9))
508 offset = 9;
510 /* C++ namespaces do have scheme:
511 _GLOBAL__N_<filename>_<wrongmagicnumber>_<magicnumber>functionname
512 since filename might contain extra underscores there seems
513 to be no better chance then walk all possible offsets looking
514 for magicnumber. */
515 if (offset)
517 for (i = i + offset; string[i]; i++)
518 if (string[i]=='_')
520 int y;
522 for (y = 1; y < 9; y++)
523 if (!(string[i + y] >= '0' && string[i + y] <= '9')
524 && !(string[i + y] >= 'A' && string[i + y] <= 'F'))
525 break;
526 if (y != 9 || string[i + 9] != '_')
527 continue;
528 for (y = 10; y < 18; y++)
529 if (!(string[i + y] >= '0' && string[i + y] <= '9')
530 && !(string[i + y] >= 'A' && string[i + y] <= 'F'))
531 break;
532 if (y != 18)
533 continue;
534 if (!dup)
535 string = dup = xstrdup (string);
536 for (y = 10; y < 18; y++)
537 dup[i + y] = '0';
539 break;
543 chksum = crc32_string (chksum, string);
544 free (dup);
546 return chksum;
549 /* Compute checksum for the current function. We generate a CRC32. */
551 unsigned
552 coverage_compute_lineno_checksum (void)
554 expanded_location xloc
555 = expand_location (DECL_SOURCE_LOCATION (current_function_decl));
556 unsigned chksum = xloc.line;
558 if (xloc.file)
559 chksum = coverage_checksum_string (chksum, xloc.file);
560 chksum = coverage_checksum_string
561 (chksum, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (current_function_decl)));
563 return chksum;
566 /* Compute profile ID. This is better to be unique in whole program. */
568 unsigned
569 coverage_compute_profile_id (struct cgraph_node *n)
571 unsigned chksum;
573 /* Externally visible symbols have unique name. */
574 if (TREE_PUBLIC (n->decl) || DECL_EXTERNAL (n->decl) || n->unique_name)
576 chksum = coverage_checksum_string
577 (0, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n->decl)));
579 else
581 expanded_location xloc
582 = expand_location (DECL_SOURCE_LOCATION (n->decl));
583 bool use_name_only = (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID) == 0);
585 chksum = (use_name_only ? 0 : xloc.line);
586 if (xloc.file)
587 chksum = coverage_checksum_string (chksum, xloc.file);
588 chksum = coverage_checksum_string
589 (chksum, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n->decl)));
590 if (!use_name_only && first_global_object_name)
591 chksum = coverage_checksum_string
592 (chksum, first_global_object_name);
593 chksum = coverage_checksum_string
594 (chksum, aux_base_name);
597 /* Non-negative integers are hopefully small enough to fit in all targets.
598 Gcov file formats wants non-zero function IDs. */
599 chksum = chksum & 0x7fffffff;
600 return chksum + (!chksum);
603 /* Compute cfg checksum for the function FN given as argument.
604 The checksum is calculated carefully so that
605 source code changes that doesn't affect the control flow graph
606 won't change the checksum.
607 This is to make the profile data useable across source code change.
608 The downside of this is that the compiler may use potentially
609 wrong profile data - that the source code change has non-trivial impact
610 on the validity of profile data (e.g. the reversed condition)
611 but the compiler won't detect the change and use the wrong profile data. */
613 unsigned
614 coverage_compute_cfg_checksum (struct function *fn)
616 basic_block bb;
617 unsigned chksum = n_basic_blocks_for_fn (fn);
619 FOR_EACH_BB_FN (bb, fn)
621 edge e;
622 edge_iterator ei;
623 chksum = crc32_byte (chksum, bb->index);
624 FOR_EACH_EDGE (e, ei, bb->succs)
626 chksum = crc32_byte (chksum, e->dest->index);
630 return chksum;
633 /* Begin output to the notes file for the current function.
634 Writes the function header. Returns nonzero if data should be output. */
637 coverage_begin_function (unsigned lineno_checksum, unsigned cfg_checksum)
639 expanded_location xloc;
640 unsigned long offset;
642 /* We don't need to output .gcno file unless we're under -ftest-coverage
643 (e.g. -fprofile-arcs/generate/use don't need .gcno to work). */
644 if (no_coverage || !bbg_file_name)
645 return 0;
647 xloc = expand_location (DECL_SOURCE_LOCATION (current_function_decl));
649 /* Announce function */
650 offset = gcov_write_tag (GCOV_TAG_FUNCTION);
651 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID))
652 gcov_write_unsigned (current_function_funcdef_no + 1);
653 else
655 gcc_assert (coverage_node_map_initialized_p ());
656 gcov_write_unsigned (
657 cgraph_node::get (current_function_decl)->profile_id);
660 gcov_write_unsigned (lineno_checksum);
661 gcov_write_unsigned (cfg_checksum);
662 gcov_write_string (IDENTIFIER_POINTER
663 (DECL_ASSEMBLER_NAME (current_function_decl)));
664 gcov_write_string (xloc.file);
665 gcov_write_unsigned (xloc.line);
666 gcov_write_length (offset);
668 return !gcov_is_error ();
671 /* Finish coverage data for the current function. Verify no output
672 error has occurred. Save function coverage counts. */
674 void
675 coverage_end_function (unsigned lineno_checksum, unsigned cfg_checksum)
677 unsigned i;
679 if (bbg_file_name && gcov_is_error ())
681 warning (0, "error writing %qs", bbg_file_name);
682 unlink (bbg_file_name);
683 bbg_file_name = NULL;
686 if (fn_ctr_mask)
688 struct coverage_data *item = 0;
690 item = ggc_alloc<coverage_data> ();
692 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID))
693 item->ident = current_function_funcdef_no + 1;
694 else
696 gcc_assert (coverage_node_map_initialized_p ());
697 item->ident = cgraph_node::get (cfun->decl)->profile_id;
700 item->lineno_checksum = lineno_checksum;
701 item->cfg_checksum = cfg_checksum;
703 item->fn_decl = current_function_decl;
704 item->next = 0;
705 *functions_tail = item;
706 functions_tail = &item->next;
708 for (i = 0; i != GCOV_COUNTERS; i++)
710 tree var = fn_v_ctrs[i];
712 if (item)
713 item->ctr_vars[i] = var;
714 if (var)
716 tree array_type = build_index_type (size_int (fn_n_ctrs[i] - 1));
717 array_type = build_array_type (get_gcov_type (), array_type);
718 TREE_TYPE (var) = array_type;
719 DECL_SIZE (var) = TYPE_SIZE (array_type);
720 DECL_SIZE_UNIT (var) = TYPE_SIZE_UNIT (array_type);
721 varpool_node::finalize_decl (var);
724 fn_b_ctrs[i] = fn_n_ctrs[i] = 0;
725 fn_v_ctrs[i] = NULL_TREE;
727 prg_ctr_mask |= fn_ctr_mask;
728 fn_ctr_mask = 0;
732 /* Build a coverage variable of TYPE for function FN_DECL. If COUNTER
733 >= 0 it is a counter array, otherwise it is the function structure. */
735 static tree
736 build_var (tree fn_decl, tree type, int counter)
738 tree var = build_decl (BUILTINS_LOCATION, VAR_DECL, NULL_TREE, type);
739 const char *fn_name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fn_decl));
740 char *buf;
741 size_t fn_name_len, len;
743 fn_name = targetm.strip_name_encoding (fn_name);
744 fn_name_len = strlen (fn_name);
745 buf = XALLOCAVEC (char, fn_name_len + 8 + sizeof (int) * 3);
747 if (counter < 0)
748 strcpy (buf, "__gcov__");
749 else
750 sprintf (buf, "__gcov%u_", counter);
751 len = strlen (buf);
752 buf[len - 1] = symbol_table::symbol_suffix_separator ();
753 memcpy (buf + len, fn_name, fn_name_len + 1);
754 DECL_NAME (var) = get_identifier (buf);
755 TREE_STATIC (var) = 1;
756 TREE_ADDRESSABLE (var) = 1;
757 DECL_NONALIASED (var) = 1;
758 SET_DECL_ALIGN (var, TYPE_ALIGN (type));
760 return var;
763 /* Creates the gcov_fn_info RECORD_TYPE. */
765 static void
766 build_fn_info_type (tree type, unsigned counters, tree gcov_info_type)
768 tree ctr_info = lang_hooks.types.make_type (RECORD_TYPE);
769 tree field, fields;
770 tree array_type;
772 gcc_assert (counters);
774 /* ctr_info::num */
775 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
776 get_gcov_unsigned_t ());
777 fields = field;
779 /* ctr_info::values */
780 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
781 build_pointer_type (get_gcov_type ()));
782 DECL_CHAIN (field) = fields;
783 fields = field;
785 finish_builtin_struct (ctr_info, "__gcov_ctr_info", fields, NULL_TREE);
787 /* key */
788 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
789 build_pointer_type (build_qualified_type
790 (gcov_info_type, TYPE_QUAL_CONST)));
791 fields = field;
793 /* ident */
794 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
795 get_gcov_unsigned_t ());
796 DECL_CHAIN (field) = fields;
797 fields = field;
799 /* lineno_checksum */
800 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
801 get_gcov_unsigned_t ());
802 DECL_CHAIN (field) = fields;
803 fields = field;
805 /* cfg checksum */
806 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
807 get_gcov_unsigned_t ());
808 DECL_CHAIN (field) = fields;
809 fields = field;
811 array_type = build_index_type (size_int (counters - 1));
812 array_type = build_array_type (ctr_info, array_type);
814 /* counters */
815 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE, array_type);
816 DECL_CHAIN (field) = fields;
817 fields = field;
819 finish_builtin_struct (type, "__gcov_fn_info", fields, NULL_TREE);
822 /* Returns a CONSTRUCTOR for a gcov_fn_info. DATA is
823 the coverage data for the function and TYPE is the gcov_fn_info
824 RECORD_TYPE. KEY is the object file key. */
826 static tree
827 build_fn_info (const struct coverage_data *data, tree type, tree key)
829 tree fields = TYPE_FIELDS (type);
830 tree ctr_type;
831 unsigned ix;
832 vec<constructor_elt, va_gc> *v1 = NULL;
833 vec<constructor_elt, va_gc> *v2 = NULL;
835 /* key */
836 CONSTRUCTOR_APPEND_ELT (v1, fields,
837 build1 (ADDR_EXPR, TREE_TYPE (fields), key));
838 fields = DECL_CHAIN (fields);
840 /* ident */
841 CONSTRUCTOR_APPEND_ELT (v1, fields,
842 build_int_cstu (get_gcov_unsigned_t (),
843 data->ident));
844 fields = DECL_CHAIN (fields);
846 /* lineno_checksum */
847 CONSTRUCTOR_APPEND_ELT (v1, fields,
848 build_int_cstu (get_gcov_unsigned_t (),
849 data->lineno_checksum));
850 fields = DECL_CHAIN (fields);
852 /* cfg_checksum */
853 CONSTRUCTOR_APPEND_ELT (v1, fields,
854 build_int_cstu (get_gcov_unsigned_t (),
855 data->cfg_checksum));
856 fields = DECL_CHAIN (fields);
858 /* counters */
859 ctr_type = TREE_TYPE (TREE_TYPE (fields));
860 for (ix = 0; ix != GCOV_COUNTERS; ix++)
861 if (prg_ctr_mask & (1 << ix))
863 vec<constructor_elt, va_gc> *ctr = NULL;
864 tree var = data->ctr_vars[ix];
865 unsigned count = 0;
867 if (var)
868 count
869 = tree_to_shwi (TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (var))))
870 + 1;
872 CONSTRUCTOR_APPEND_ELT (ctr, TYPE_FIELDS (ctr_type),
873 build_int_cstu (get_gcov_unsigned_t (),
874 count));
876 if (var)
877 CONSTRUCTOR_APPEND_ELT (ctr, DECL_CHAIN (TYPE_FIELDS (ctr_type)),
878 build_fold_addr_expr (var));
880 CONSTRUCTOR_APPEND_ELT (v2, NULL, build_constructor (ctr_type, ctr));
883 CONSTRUCTOR_APPEND_ELT (v1, fields,
884 build_constructor (TREE_TYPE (fields), v2));
886 return build_constructor (type, v1);
889 /* Create gcov_info struct. TYPE is the incomplete RECORD_TYPE to be
890 completed, and FN_INFO_PTR_TYPE is a pointer to the function info type. */
892 static void
893 build_info_type (tree type, tree fn_info_ptr_type)
895 tree field, fields = NULL_TREE;
896 tree merge_fn_type;
898 /* Version ident */
899 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
900 get_gcov_unsigned_t ());
901 DECL_CHAIN (field) = fields;
902 fields = field;
904 /* next pointer */
905 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
906 build_pointer_type (build_qualified_type
907 (type, TYPE_QUAL_CONST)));
908 DECL_CHAIN (field) = fields;
909 fields = field;
911 /* stamp */
912 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
913 get_gcov_unsigned_t ());
914 DECL_CHAIN (field) = fields;
915 fields = field;
917 /* Filename */
918 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
919 build_pointer_type (build_qualified_type
920 (char_type_node, TYPE_QUAL_CONST)));
921 DECL_CHAIN (field) = fields;
922 fields = field;
924 /* merge fn array */
925 merge_fn_type
926 = build_function_type_list (void_type_node,
927 build_pointer_type (get_gcov_type ()),
928 get_gcov_unsigned_t (), NULL_TREE);
929 merge_fn_type
930 = build_array_type (build_pointer_type (merge_fn_type),
931 build_index_type (size_int (GCOV_COUNTERS - 1)));
932 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
933 merge_fn_type);
934 DECL_CHAIN (field) = fields;
935 fields = field;
937 /* n_functions */
938 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
939 get_gcov_unsigned_t ());
940 DECL_CHAIN (field) = fields;
941 fields = field;
943 /* function_info pointer pointer */
944 fn_info_ptr_type = build_pointer_type
945 (build_qualified_type (fn_info_ptr_type, TYPE_QUAL_CONST));
946 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
947 fn_info_ptr_type);
948 DECL_CHAIN (field) = fields;
949 fields = field;
951 finish_builtin_struct (type, "__gcov_info", fields, NULL_TREE);
954 /* Returns a CONSTRUCTOR for the gcov_info object. INFO_TYPE is the
955 gcov_info structure type, FN_ARY is the array of pointers to
956 function info objects. */
958 static tree
959 build_info (tree info_type, tree fn_ary)
961 tree info_fields = TYPE_FIELDS (info_type);
962 tree merge_fn_type, n_funcs;
963 unsigned ix;
964 tree filename_string;
965 int da_file_name_len;
966 vec<constructor_elt, va_gc> *v1 = NULL;
967 vec<constructor_elt, va_gc> *v2 = NULL;
969 /* Version ident */
970 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
971 build_int_cstu (TREE_TYPE (info_fields),
972 GCOV_VERSION));
973 info_fields = DECL_CHAIN (info_fields);
975 /* next -- NULL */
976 CONSTRUCTOR_APPEND_ELT (v1, info_fields, null_pointer_node);
977 info_fields = DECL_CHAIN (info_fields);
979 /* stamp */
980 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
981 build_int_cstu (TREE_TYPE (info_fields),
982 bbg_file_stamp));
983 info_fields = DECL_CHAIN (info_fields);
985 /* Filename */
986 da_file_name_len = strlen (da_file_name);
987 filename_string = build_string (da_file_name_len + 1, da_file_name);
988 TREE_TYPE (filename_string) = build_array_type
989 (char_type_node, build_index_type (size_int (da_file_name_len)));
990 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
991 build1 (ADDR_EXPR, TREE_TYPE (info_fields),
992 filename_string));
993 info_fields = DECL_CHAIN (info_fields);
995 /* merge fn array -- NULL slots indicate unmeasured counters */
996 merge_fn_type = TREE_TYPE (TREE_TYPE (info_fields));
997 for (ix = 0; ix != GCOV_COUNTERS; ix++)
999 tree ptr = null_pointer_node;
1001 if ((1u << ix) & prg_ctr_mask)
1003 tree merge_fn = build_decl (BUILTINS_LOCATION,
1004 FUNCTION_DECL,
1005 get_identifier (ctr_merge_functions[ix]),
1006 TREE_TYPE (merge_fn_type));
1007 DECL_EXTERNAL (merge_fn) = 1;
1008 TREE_PUBLIC (merge_fn) = 1;
1009 DECL_ARTIFICIAL (merge_fn) = 1;
1010 TREE_NOTHROW (merge_fn) = 1;
1011 /* Initialize assembler name so we can stream out. */
1012 DECL_ASSEMBLER_NAME (merge_fn);
1013 ptr = build1 (ADDR_EXPR, merge_fn_type, merge_fn);
1015 CONSTRUCTOR_APPEND_ELT (v2, NULL, ptr);
1017 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
1018 build_constructor (TREE_TYPE (info_fields), v2));
1019 info_fields = DECL_CHAIN (info_fields);
1021 /* n_functions */
1022 n_funcs = TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (fn_ary)));
1023 n_funcs = fold_build2 (PLUS_EXPR, TREE_TYPE (info_fields),
1024 n_funcs, size_one_node);
1025 CONSTRUCTOR_APPEND_ELT (v1, info_fields, n_funcs);
1026 info_fields = DECL_CHAIN (info_fields);
1028 /* functions */
1029 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
1030 build1 (ADDR_EXPR, TREE_TYPE (info_fields), fn_ary));
1031 info_fields = DECL_CHAIN (info_fields);
1033 gcc_assert (!info_fields);
1034 return build_constructor (info_type, v1);
1037 /* Generate the constructor function to call __gcov_init. */
1039 static void
1040 build_init_ctor (tree gcov_info_type)
1042 tree ctor, stmt, init_fn;
1044 /* Build a decl for __gcov_init. */
1045 init_fn = build_pointer_type (gcov_info_type);
1046 init_fn = build_function_type_list (void_type_node, init_fn, NULL);
1047 init_fn = build_decl (BUILTINS_LOCATION, FUNCTION_DECL,
1048 get_identifier ("__gcov_init"), init_fn);
1049 TREE_PUBLIC (init_fn) = 1;
1050 DECL_EXTERNAL (init_fn) = 1;
1051 DECL_ASSEMBLER_NAME (init_fn);
1053 /* Generate a call to __gcov_init(&gcov_info). */
1054 ctor = NULL;
1055 stmt = build_fold_addr_expr (gcov_info_var);
1056 stmt = build_call_expr (init_fn, 1, stmt);
1057 append_to_statement_list (stmt, &ctor);
1059 /* Generate a constructor to run it (with priority 99). */
1060 cgraph_build_static_cdtor ('I', ctor, DEFAULT_INIT_PRIORITY - 1);
1063 /* Generate the destructor function to call __gcov_exit. */
1065 static void
1066 build_gcov_exit_decl (void)
1068 tree init_fn = build_function_type_list (void_type_node, void_type_node,
1069 NULL);
1070 init_fn = build_decl (BUILTINS_LOCATION, FUNCTION_DECL,
1071 get_identifier ("__gcov_exit"), init_fn);
1072 TREE_PUBLIC (init_fn) = 1;
1073 DECL_EXTERNAL (init_fn) = 1;
1074 DECL_ASSEMBLER_NAME (init_fn);
1076 /* Generate a call to __gcov_exit (). */
1077 tree dtor = NULL;
1078 tree stmt = build_call_expr (init_fn, 0);
1079 append_to_statement_list (stmt, &dtor);
1081 /* Generate a destructor to run it (with priority 99). */
1082 cgraph_build_static_cdtor ('D', dtor, MAX_RESERVED_INIT_PRIORITY - 1);
1085 /* Create the gcov_info types and object. Generate the constructor
1086 function to call __gcov_init. Does not generate the initializer
1087 for the object. Returns TRUE if coverage data is being emitted. */
1089 static bool
1090 coverage_obj_init (void)
1092 tree gcov_info_type;
1093 unsigned n_counters = 0;
1094 unsigned ix;
1095 struct coverage_data *fn;
1096 struct coverage_data **fn_prev;
1097 char name_buf[32];
1099 no_coverage = 1; /* Disable any further coverage. */
1101 if (!prg_ctr_mask)
1102 return false;
1104 if (symtab->dump_file)
1105 fprintf (symtab->dump_file, "Using data file %s\n", da_file_name);
1107 /* Prune functions. */
1108 for (fn_prev = &functions_head; (fn = *fn_prev);)
1109 if (DECL_STRUCT_FUNCTION (fn->fn_decl))
1110 fn_prev = &fn->next;
1111 else
1112 /* The function is not being emitted, remove from list. */
1113 *fn_prev = fn->next;
1115 if (functions_head == NULL)
1116 return false;
1118 for (ix = 0; ix != GCOV_COUNTERS; ix++)
1119 if ((1u << ix) & prg_ctr_mask)
1120 n_counters++;
1122 /* Build the info and fn_info types. These are mutually recursive. */
1123 gcov_info_type = lang_hooks.types.make_type (RECORD_TYPE);
1124 gcov_fn_info_type = lang_hooks.types.make_type (RECORD_TYPE);
1125 build_fn_info_type (gcov_fn_info_type, n_counters, gcov_info_type);
1126 gcov_info_type = lang_hooks.types.make_type (RECORD_TYPE);
1127 gcov_fn_info_ptr_type = build_pointer_type
1128 (build_qualified_type (gcov_fn_info_type, TYPE_QUAL_CONST));
1129 build_info_type (gcov_info_type, gcov_fn_info_ptr_type);
1131 /* Build the gcov info var, this is referred to in its own
1132 initializer. */
1133 gcov_info_var = build_decl (BUILTINS_LOCATION,
1134 VAR_DECL, NULL_TREE, gcov_info_type);
1135 TREE_STATIC (gcov_info_var) = 1;
1136 ASM_GENERATE_INTERNAL_LABEL (name_buf, "LPBX", 0);
1137 DECL_NAME (gcov_info_var) = get_identifier (name_buf);
1139 build_init_ctor (gcov_info_type);
1140 build_gcov_exit_decl ();
1142 return true;
1145 /* Generate the coverage function info for FN and DATA. Append a
1146 pointer to that object to CTOR and return the appended CTOR. */
1148 static vec<constructor_elt, va_gc> *
1149 coverage_obj_fn (vec<constructor_elt, va_gc> *ctor, tree fn,
1150 struct coverage_data const *data)
1152 tree init = build_fn_info (data, gcov_fn_info_type, gcov_info_var);
1153 tree var = build_var (fn, gcov_fn_info_type, -1);
1155 DECL_INITIAL (var) = init;
1156 varpool_node::finalize_decl (var);
1158 CONSTRUCTOR_APPEND_ELT (ctor, NULL,
1159 build1 (ADDR_EXPR, gcov_fn_info_ptr_type, var));
1160 return ctor;
1163 /* Finalize the coverage data. Generates the array of pointers to
1164 function objects from CTOR. Generate the gcov_info initializer. */
1166 static void
1167 coverage_obj_finish (vec<constructor_elt, va_gc> *ctor)
1169 unsigned n_functions = vec_safe_length (ctor);
1170 tree fn_info_ary_type = build_array_type
1171 (build_qualified_type (gcov_fn_info_ptr_type, TYPE_QUAL_CONST),
1172 build_index_type (size_int (n_functions - 1)));
1173 tree fn_info_ary = build_decl (BUILTINS_LOCATION, VAR_DECL, NULL_TREE,
1174 fn_info_ary_type);
1175 char name_buf[32];
1177 TREE_STATIC (fn_info_ary) = 1;
1178 ASM_GENERATE_INTERNAL_LABEL (name_buf, "LPBX", 1);
1179 DECL_NAME (fn_info_ary) = get_identifier (name_buf);
1180 DECL_INITIAL (fn_info_ary) = build_constructor (fn_info_ary_type, ctor);
1181 varpool_node::finalize_decl (fn_info_ary);
1183 DECL_INITIAL (gcov_info_var)
1184 = build_info (TREE_TYPE (gcov_info_var), fn_info_ary);
1185 varpool_node::finalize_decl (gcov_info_var);
1188 /* Perform file-level initialization. Read in data file, generate name
1189 of notes file. */
1191 void
1192 coverage_init (const char *filename)
1194 int len = strlen (filename);
1195 int prefix_len = 0;
1197 /* Since coverage_init is invoked very early, before the pass
1198 manager, we need to set up the dumping explicitly. This is
1199 similar to the handling in finish_optimization_passes. */
1200 int profile_pass_num =
1201 g->get_passes ()->get_pass_profile ()->static_pass_number;
1202 g->get_dumps ()->dump_start (profile_pass_num, NULL);
1204 if (!profile_data_prefix && !IS_ABSOLUTE_PATH (filename))
1205 profile_data_prefix = getpwd ();
1207 if (profile_data_prefix)
1208 prefix_len = strlen (profile_data_prefix);
1210 /* Name of da file. */
1211 da_file_name = XNEWVEC (char, len + strlen (GCOV_DATA_SUFFIX)
1212 + prefix_len + 2);
1214 if (profile_data_prefix)
1216 memcpy (da_file_name, profile_data_prefix, prefix_len);
1217 da_file_name[prefix_len++] = '/';
1219 memcpy (da_file_name + prefix_len, filename, len);
1220 strcpy (da_file_name + prefix_len + len, GCOV_DATA_SUFFIX);
1222 bbg_file_stamp = local_tick;
1224 if (flag_auto_profile)
1225 read_autofdo_file ();
1226 else if (flag_branch_probabilities)
1227 read_counts_file ();
1229 /* Name of bbg file. */
1230 if (flag_test_coverage && !flag_compare_debug)
1232 bbg_file_name = XNEWVEC (char, len + strlen (GCOV_NOTE_SUFFIX) + 1);
1233 memcpy (bbg_file_name, filename, len);
1234 strcpy (bbg_file_name + len, GCOV_NOTE_SUFFIX);
1236 if (!gcov_open (bbg_file_name, -1))
1238 error ("cannot open %s", bbg_file_name);
1239 bbg_file_name = NULL;
1241 else
1243 gcov_write_unsigned (GCOV_NOTE_MAGIC);
1244 gcov_write_unsigned (GCOV_VERSION);
1245 gcov_write_unsigned (bbg_file_stamp);
1249 g->get_dumps ()->dump_finish (profile_pass_num);
1252 /* Performs file-level cleanup. Close notes file, generate coverage
1253 variables and constructor. */
1255 void
1256 coverage_finish (void)
1258 if (bbg_file_name && gcov_close ())
1259 unlink (bbg_file_name);
1261 if (!flag_branch_probabilities && flag_test_coverage
1262 && (!local_tick || local_tick == (unsigned)-1))
1263 /* Only remove the da file, if we're emitting coverage code and
1264 cannot uniquely stamp it. If we can stamp it, libgcov will DTRT. */
1265 unlink (da_file_name);
1267 if (coverage_obj_init ())
1269 vec<constructor_elt, va_gc> *fn_ctor = NULL;
1270 struct coverage_data *fn;
1272 for (fn = functions_head; fn; fn = fn->next)
1273 fn_ctor = coverage_obj_fn (fn_ctor, fn->fn_decl, fn);
1274 coverage_obj_finish (fn_ctor);
1277 XDELETEVEC (da_file_name);
1278 da_file_name = NULL;
1281 #include "gt-coverage.h"