compiler: Remove obsolete hidden_fields_are_ok code.
[official-gcc.git] / gcc / coverage.c
blob66217ed862d508cc33289e556ac113cd019840a3
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 "hashtab.h"
40 #include "hash-set.h"
41 #include "vec.h"
42 #include "machmode.h"
43 #include "hard-reg-set.h"
44 #include "input.h"
45 #include "function.h"
46 #include "basic-block.h"
47 #include "toplev.h"
48 #include "tm_p.h"
49 #include "ggc.h"
50 #include "coverage.h"
51 #include "langhooks.h"
52 #include "hash-table.h"
53 #include "tree-iterator.h"
54 #include "context.h"
55 #include "pass_manager.h"
56 #include "tree-pass.h"
57 #include "cgraph.h"
58 #include "dumpfile.h"
59 #include "diagnostic-core.h"
60 #include "intl.h"
61 #include "filenames.h"
62 #include "target.h"
63 #include "params.h"
65 #include "gcov-io.h"
66 #include "gcov-io.c"
68 struct GTY((chain_next ("%h.next"))) coverage_data
70 struct coverage_data *next; /* next function */
71 unsigned ident; /* function ident */
72 unsigned lineno_checksum; /* function lineno checksum */
73 unsigned cfg_checksum; /* function cfg checksum */
74 tree fn_decl; /* the function decl */
75 tree ctr_vars[GCOV_COUNTERS]; /* counter variables. */
78 /* Counts information for a function. */
79 typedef struct counts_entry
81 /* We hash by */
82 unsigned ident;
83 unsigned ctr;
85 /* Store */
86 unsigned lineno_checksum;
87 unsigned cfg_checksum;
88 gcov_type *counts;
89 struct gcov_ctr_summary summary;
91 /* hash_table support. */
92 typedef counts_entry value_type;
93 typedef counts_entry compare_type;
94 static inline hashval_t hash (const value_type *);
95 static int equal (const value_type *, const compare_type *);
96 static void remove (value_type *);
97 } counts_entry_t;
99 static GTY(()) struct coverage_data *functions_head = 0;
100 static struct coverage_data **functions_tail = &functions_head;
101 static unsigned no_coverage = 0;
103 /* Cumulative counter information for whole program. */
104 static unsigned prg_ctr_mask; /* Mask of counter types generated. */
106 /* Counter information for current function. */
107 static unsigned fn_ctr_mask; /* Mask of counters used. */
108 static GTY(()) tree fn_v_ctrs[GCOV_COUNTERS]; /* counter variables. */
109 static unsigned fn_n_ctrs[GCOV_COUNTERS]; /* Counters allocated. */
110 static unsigned fn_b_ctrs[GCOV_COUNTERS]; /* Allocation base. */
112 /* Coverage info VAR_DECL and function info type nodes. */
113 static GTY(()) tree gcov_info_var;
114 static GTY(()) tree gcov_fn_info_type;
115 static GTY(()) tree gcov_fn_info_ptr_type;
117 /* Name of the notes (gcno) output file. The "bbg" prefix is for
118 historical reasons, when the notes file contained only the
119 basic block graph notes.
120 If this is NULL we're not writing to the notes file. */
121 static char *bbg_file_name;
123 /* File stamp for notes file. */
124 static unsigned bbg_file_stamp;
126 /* Name of the count data (gcda) file. */
127 static char *da_file_name;
129 /* The names of merge functions for counters. */
130 #define STR(str) #str
131 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) STR(__gcov_merge ## FN_TYPE),
132 static const char *const ctr_merge_functions[GCOV_COUNTERS] = {
133 #include "gcov-counter.def"
135 #undef DEF_GCOV_COUNTER
136 #undef STR
138 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) NAME,
139 static const char *const ctr_names[GCOV_COUNTERS] = {
140 #include "gcov-counter.def"
142 #undef DEF_GCOV_COUNTER
144 /* Forward declarations. */
145 static void read_counts_file (void);
146 static tree build_var (tree, tree, int);
147 static void build_fn_info_type (tree, unsigned, tree);
148 static void build_info_type (tree, tree);
149 static tree build_fn_info (const struct coverage_data *, tree, tree);
150 static tree build_info (tree, tree);
151 static bool coverage_obj_init (void);
152 static vec<constructor_elt, va_gc> *coverage_obj_fn
153 (vec<constructor_elt, va_gc> *, tree, struct coverage_data const *);
154 static void coverage_obj_finish (vec<constructor_elt, va_gc> *);
156 /* Return the type node for gcov_type. */
158 tree
159 get_gcov_type (void)
161 enum machine_mode mode = smallest_mode_for_size (GCOV_TYPE_SIZE, MODE_INT);
162 return lang_hooks.types.type_for_mode (mode, false);
165 /* Return the type node for gcov_unsigned_t. */
167 static tree
168 get_gcov_unsigned_t (void)
170 enum machine_mode mode = smallest_mode_for_size (32, MODE_INT);
171 return lang_hooks.types.type_for_mode (mode, true);
174 inline hashval_t
175 counts_entry::hash (const value_type *entry)
177 return entry->ident * GCOV_COUNTERS + entry->ctr;
180 inline int
181 counts_entry::equal (const value_type *entry1,
182 const compare_type *entry2)
184 return entry1->ident == entry2->ident && entry1->ctr == entry2->ctr;
187 inline void
188 counts_entry::remove (value_type *entry)
190 free (entry->counts);
191 free (entry);
194 /* Hash table of count data. */
195 static hash_table<counts_entry> *counts_hash;
197 /* Read in the counts file, if available. */
199 static void
200 read_counts_file (void)
202 gcov_unsigned_t fn_ident = 0;
203 struct gcov_summary summary;
204 unsigned new_summary = 1;
205 gcov_unsigned_t tag;
206 int is_error = 0;
207 unsigned lineno_checksum = 0;
208 unsigned cfg_checksum = 0;
210 if (!gcov_open (da_file_name, 1))
211 return;
213 if (!gcov_magic (gcov_read_unsigned (), GCOV_DATA_MAGIC))
215 warning (0, "%qs is not a gcov data file", da_file_name);
216 gcov_close ();
217 return;
219 else if ((tag = gcov_read_unsigned ()) != GCOV_VERSION)
221 char v[4], e[4];
223 GCOV_UNSIGNED2STRING (v, tag);
224 GCOV_UNSIGNED2STRING (e, GCOV_VERSION);
226 warning (0, "%qs is version %q.*s, expected version %q.*s",
227 da_file_name, 4, v, 4, e);
228 gcov_close ();
229 return;
232 /* Read the stamp, used for creating a generation count. */
233 tag = gcov_read_unsigned ();
234 bbg_file_stamp = crc32_unsigned (bbg_file_stamp, tag);
236 counts_hash = new hash_table<counts_entry> (10);
237 while ((tag = gcov_read_unsigned ()))
239 gcov_unsigned_t length;
240 gcov_position_t offset;
242 length = gcov_read_unsigned ();
243 offset = gcov_position ();
244 if (tag == GCOV_TAG_FUNCTION)
246 if (length)
248 fn_ident = gcov_read_unsigned ();
249 lineno_checksum = gcov_read_unsigned ();
250 cfg_checksum = gcov_read_unsigned ();
252 else
253 fn_ident = lineno_checksum = cfg_checksum = 0;
254 new_summary = 1;
256 else if (tag == GCOV_TAG_PROGRAM_SUMMARY)
258 struct gcov_summary sum;
259 unsigned ix;
261 if (new_summary)
262 memset (&summary, 0, sizeof (summary));
264 gcov_read_summary (&sum);
265 for (ix = 0; ix != GCOV_COUNTERS_SUMMABLE; ix++)
267 summary.ctrs[ix].runs += sum.ctrs[ix].runs;
268 summary.ctrs[ix].sum_all += sum.ctrs[ix].sum_all;
269 if (summary.ctrs[ix].run_max < sum.ctrs[ix].run_max)
270 summary.ctrs[ix].run_max = sum.ctrs[ix].run_max;
271 summary.ctrs[ix].sum_max += sum.ctrs[ix].sum_max;
273 if (new_summary)
274 memcpy (summary.ctrs[GCOV_COUNTER_ARCS].histogram,
275 sum.ctrs[GCOV_COUNTER_ARCS].histogram,
276 sizeof (gcov_bucket_type) * GCOV_HISTOGRAM_SIZE);
277 else
278 gcov_histogram_merge (summary.ctrs[GCOV_COUNTER_ARCS].histogram,
279 sum.ctrs[GCOV_COUNTER_ARCS].histogram);
280 new_summary = 0;
282 else if (GCOV_TAG_IS_COUNTER (tag) && fn_ident)
284 counts_entry_t **slot, *entry, elt;
285 unsigned n_counts = GCOV_TAG_COUNTER_NUM (length);
286 unsigned ix;
288 elt.ident = fn_ident;
289 elt.ctr = GCOV_COUNTER_FOR_TAG (tag);
291 slot = counts_hash->find_slot (&elt, INSERT);
292 entry = *slot;
293 if (!entry)
295 *slot = entry = XCNEW (counts_entry_t);
296 entry->ident = fn_ident;
297 entry->ctr = elt.ctr;
298 entry->lineno_checksum = lineno_checksum;
299 entry->cfg_checksum = cfg_checksum;
300 if (elt.ctr < GCOV_COUNTERS_SUMMABLE)
301 entry->summary = summary.ctrs[elt.ctr];
302 entry->summary.num = n_counts;
303 entry->counts = XCNEWVEC (gcov_type, n_counts);
305 else if (entry->lineno_checksum != lineno_checksum
306 || entry->cfg_checksum != cfg_checksum)
308 error ("Profile data for function %u is corrupted", fn_ident);
309 error ("checksum is (%x,%x) instead of (%x,%x)",
310 entry->lineno_checksum, entry->cfg_checksum,
311 lineno_checksum, cfg_checksum);
312 delete counts_hash;
313 counts_hash = NULL;
314 break;
316 else if (entry->summary.num != n_counts)
318 error ("Profile data for function %u is corrupted", fn_ident);
319 error ("number of counters is %d instead of %d", entry->summary.num, n_counts);
320 delete counts_hash;
321 counts_hash = NULL;
322 break;
324 else if (elt.ctr >= GCOV_COUNTERS_SUMMABLE)
326 error ("cannot merge separate %s counters for function %u",
327 ctr_names[elt.ctr], fn_ident);
328 goto skip_merge;
330 else
332 entry->summary.runs += summary.ctrs[elt.ctr].runs;
333 entry->summary.sum_all += summary.ctrs[elt.ctr].sum_all;
334 if (entry->summary.run_max < summary.ctrs[elt.ctr].run_max)
335 entry->summary.run_max = summary.ctrs[elt.ctr].run_max;
336 entry->summary.sum_max += summary.ctrs[elt.ctr].sum_max;
338 for (ix = 0; ix != n_counts; ix++)
339 entry->counts[ix] += gcov_read_counter ();
340 skip_merge:;
342 gcov_sync (offset, length);
343 if ((is_error = gcov_is_error ()))
345 error (is_error < 0 ? "%qs has overflowed" : "%qs is corrupted",
346 da_file_name);
347 delete counts_hash;
348 counts_hash = NULL;
349 break;
353 gcov_close ();
356 /* Returns the counters for a particular tag. */
358 gcov_type *
359 get_coverage_counts (unsigned counter, unsigned expected,
360 unsigned cfg_checksum, unsigned lineno_checksum,
361 const struct gcov_ctr_summary **summary)
363 counts_entry_t *entry, elt;
365 /* No hash table, no counts. */
366 if (!counts_hash)
368 static int warned = 0;
370 if (!warned++ && dump_enabled_p ())
371 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, input_location,
372 (flag_guess_branch_prob
373 ? "file %s not found, execution counts estimated\n"
374 : "file %s not found, execution counts assumed to "
375 "be zero\n"),
376 da_file_name);
377 return NULL;
379 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID))
380 elt.ident = current_function_funcdef_no + 1;
381 else
383 gcc_assert (coverage_node_map_initialized_p ());
384 elt.ident = cgraph_node::get (cfun->decl)->profile_id;
386 elt.ctr = counter;
387 entry = counts_hash->find (&elt);
388 if (!entry || !entry->summary.num)
389 /* The function was not emitted, or is weak and not chosen in the
390 final executable. Silently fail, because there's nothing we
391 can do about it. */
392 return NULL;
394 if (entry->cfg_checksum != cfg_checksum
395 || entry->summary.num != expected)
397 static int warned = 0;
398 bool warning_printed = false;
399 tree id = DECL_ASSEMBLER_NAME (current_function_decl);
401 warning_printed =
402 warning_at (input_location, OPT_Wcoverage_mismatch,
403 "the control flow of function %qE does not match "
404 "its profile data (counter %qs)", id, ctr_names[counter]);
405 if (warning_printed && dump_enabled_p ())
407 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, input_location,
408 "use -Wno-error=coverage-mismatch to tolerate "
409 "the mismatch but performance may drop if the "
410 "function is hot\n");
412 if (!seen_error ()
413 && !warned++)
415 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, input_location,
416 "coverage mismatch ignored\n");
417 dump_printf (MSG_OPTIMIZED_LOCATIONS,
418 flag_guess_branch_prob
419 ? G_("execution counts estimated\n")
420 : G_("execution counts assumed to be zero\n"));
421 if (!flag_guess_branch_prob)
422 dump_printf (MSG_OPTIMIZED_LOCATIONS,
423 "this can result in poorly optimized code\n");
427 return NULL;
429 else if (entry->lineno_checksum != lineno_checksum)
431 warning (OPT_Wcoverage_mismatch,
432 "source locations for function %qE have changed,"
433 " the profile data may be out of date",
434 DECL_ASSEMBLER_NAME (current_function_decl));
437 if (summary)
438 *summary = &entry->summary;
440 return entry->counts;
443 /* Allocate NUM counters of type COUNTER. Returns nonzero if the
444 allocation succeeded. */
447 coverage_counter_alloc (unsigned counter, unsigned num)
449 if (no_coverage)
450 return 0;
452 if (!num)
453 return 1;
455 if (!fn_v_ctrs[counter])
457 tree array_type = build_array_type (get_gcov_type (), NULL_TREE);
459 fn_v_ctrs[counter]
460 = build_var (current_function_decl, array_type, counter);
463 fn_b_ctrs[counter] = fn_n_ctrs[counter];
464 fn_n_ctrs[counter] += num;
466 fn_ctr_mask |= 1 << counter;
467 return 1;
470 /* Generate a tree to access COUNTER NO. */
472 tree
473 tree_coverage_counter_ref (unsigned counter, unsigned no)
475 tree gcov_type_node = get_gcov_type ();
477 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 build4 (ARRAY_REF, gcov_type_node, fn_v_ctrs[counter],
483 build_int_cst (integer_type_node, no), NULL, NULL);
486 /* Generate a tree to access the address of COUNTER NO. */
488 tree
489 tree_coverage_counter_addr (unsigned counter, unsigned no)
491 tree gcov_type_node = get_gcov_type ();
493 gcc_assert (no < fn_n_ctrs[counter] - fn_b_ctrs[counter]);
494 no += fn_b_ctrs[counter];
496 /* "no" here is an array index, scaled to bytes later. */
497 return build_fold_addr_expr (build4 (ARRAY_REF, gcov_type_node,
498 fn_v_ctrs[counter],
499 build_int_cst (integer_type_node, no),
500 NULL, NULL));
504 /* Generate a checksum for a string. CHKSUM is the current
505 checksum. */
507 static unsigned
508 coverage_checksum_string (unsigned chksum, const char *string)
510 int i;
511 char *dup = NULL;
513 /* Look for everything that looks if it were produced by
514 get_file_function_name and zero out the second part
515 that may result from flag_random_seed. This is not critical
516 as the checksums are used only for sanity checking. */
517 for (i = 0; string[i]; i++)
519 int offset = 0;
520 if (!strncmp (string + i, "_GLOBAL__N_", 11))
521 offset = 11;
522 if (!strncmp (string + i, "_GLOBAL__", 9))
523 offset = 9;
525 /* C++ namespaces do have scheme:
526 _GLOBAL__N_<filename>_<wrongmagicnumber>_<magicnumber>functionname
527 since filename might contain extra underscores there seems
528 to be no better chance then walk all possible offsets looking
529 for magicnumber. */
530 if (offset)
532 for (i = i + offset; string[i]; i++)
533 if (string[i]=='_')
535 int y;
537 for (y = 1; y < 9; 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 != 9 || string[i + 9] != '_')
542 continue;
543 for (y = 10; y < 18; y++)
544 if (!(string[i + y] >= '0' && string[i + y] <= '9')
545 && !(string[i + y] >= 'A' && string[i + y] <= 'F'))
546 break;
547 if (y != 18)
548 continue;
549 if (!dup)
550 string = dup = xstrdup (string);
551 for (y = 10; y < 18; y++)
552 dup[i + y] = '0';
554 break;
558 chksum = crc32_string (chksum, string);
559 free (dup);
561 return chksum;
564 /* Compute checksum for the current function. We generate a CRC32. */
566 unsigned
567 coverage_compute_lineno_checksum (void)
569 expanded_location xloc
570 = expand_location (DECL_SOURCE_LOCATION (current_function_decl));
571 unsigned chksum = xloc.line;
573 chksum = coverage_checksum_string (chksum, xloc.file);
574 chksum = coverage_checksum_string
575 (chksum, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (current_function_decl)));
577 return chksum;
580 /* Compute profile ID. This is better to be unique in whole program. */
582 unsigned
583 coverage_compute_profile_id (struct cgraph_node *n)
585 unsigned chksum;
587 /* Externally visible symbols have unique name. */
588 if (TREE_PUBLIC (n->decl) || DECL_EXTERNAL (n->decl) || n->unique_name)
590 chksum = coverage_checksum_string
591 (0, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n->decl)));
593 else
595 expanded_location xloc
596 = expand_location (DECL_SOURCE_LOCATION (n->decl));
597 bool use_name_only = (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID) == 0);
599 chksum = (use_name_only ? 0 : xloc.line);
600 chksum = coverage_checksum_string (chksum, xloc.file);
601 chksum = coverage_checksum_string
602 (chksum, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n->decl)));
603 if (!use_name_only && first_global_object_name)
604 chksum = coverage_checksum_string
605 (chksum, first_global_object_name);
606 chksum = coverage_checksum_string
607 (chksum, aux_base_name);
610 /* Non-negative integers are hopefully small enough to fit in all targets.
611 Gcov file formats wants non-zero function IDs. */
612 chksum = chksum & 0x7fffffff;
613 return chksum + (!chksum);
616 /* Compute cfg checksum for the function FN given as argument.
617 The checksum is calculated carefully so that
618 source code changes that doesn't affect the control flow graph
619 won't change the checksum.
620 This is to make the profile data useable across source code change.
621 The downside of this is that the compiler may use potentially
622 wrong profile data - that the source code change has non-trivial impact
623 on the validity of profile data (e.g. the reversed condition)
624 but the compiler won't detect the change and use the wrong profile data. */
626 unsigned
627 coverage_compute_cfg_checksum (struct function *fn)
629 basic_block bb;
630 unsigned chksum = n_basic_blocks_for_fn (fn);
632 FOR_EACH_BB_FN (bb, fn)
634 edge e;
635 edge_iterator ei;
636 chksum = crc32_byte (chksum, bb->index);
637 FOR_EACH_EDGE (e, ei, bb->succs)
639 chksum = crc32_byte (chksum, e->dest->index);
643 return chksum;
646 /* Begin output to the notes file for the current function.
647 Writes the function header. Returns nonzero if data should be output. */
650 coverage_begin_function (unsigned lineno_checksum, unsigned cfg_checksum)
652 expanded_location xloc;
653 unsigned long offset;
655 /* We don't need to output .gcno file unless we're under -ftest-coverage
656 (e.g. -fprofile-arcs/generate/use don't need .gcno to work). */
657 if (no_coverage || !bbg_file_name)
658 return 0;
660 xloc = expand_location (DECL_SOURCE_LOCATION (current_function_decl));
662 /* Announce function */
663 offset = gcov_write_tag (GCOV_TAG_FUNCTION);
664 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID))
665 gcov_write_unsigned (current_function_funcdef_no + 1);
666 else
668 gcc_assert (coverage_node_map_initialized_p ());
669 gcov_write_unsigned (
670 cgraph_node::get (current_function_decl)->profile_id);
673 gcov_write_unsigned (lineno_checksum);
674 gcov_write_unsigned (cfg_checksum);
675 gcov_write_string (IDENTIFIER_POINTER
676 (DECL_ASSEMBLER_NAME (current_function_decl)));
677 gcov_write_string (xloc.file);
678 gcov_write_unsigned (xloc.line);
679 gcov_write_length (offset);
681 return !gcov_is_error ();
684 /* Finish coverage data for the current function. Verify no output
685 error has occurred. Save function coverage counts. */
687 void
688 coverage_end_function (unsigned lineno_checksum, unsigned cfg_checksum)
690 unsigned i;
692 if (bbg_file_name && gcov_is_error ())
694 warning (0, "error writing %qs", bbg_file_name);
695 unlink (bbg_file_name);
696 bbg_file_name = NULL;
699 if (fn_ctr_mask)
701 struct coverage_data *item = 0;
703 item = ggc_alloc<coverage_data> ();
705 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID))
706 item->ident = current_function_funcdef_no + 1;
707 else
709 gcc_assert (coverage_node_map_initialized_p ());
710 item->ident = cgraph_node::get (cfun->decl)->profile_id;
713 item->lineno_checksum = lineno_checksum;
714 item->cfg_checksum = cfg_checksum;
716 item->fn_decl = current_function_decl;
717 item->next = 0;
718 *functions_tail = item;
719 functions_tail = &item->next;
721 for (i = 0; i != GCOV_COUNTERS; i++)
723 tree var = fn_v_ctrs[i];
725 if (item)
726 item->ctr_vars[i] = var;
727 if (var)
729 tree array_type = build_index_type (size_int (fn_n_ctrs[i] - 1));
730 array_type = build_array_type (get_gcov_type (), array_type);
731 TREE_TYPE (var) = array_type;
732 DECL_SIZE (var) = TYPE_SIZE (array_type);
733 DECL_SIZE_UNIT (var) = TYPE_SIZE_UNIT (array_type);
734 varpool_node::finalize_decl (var);
737 fn_b_ctrs[i] = fn_n_ctrs[i] = 0;
738 fn_v_ctrs[i] = NULL_TREE;
740 prg_ctr_mask |= fn_ctr_mask;
741 fn_ctr_mask = 0;
745 /* Build a coverage variable of TYPE for function FN_DECL. If COUNTER
746 >= 0 it is a counter array, otherwise it is the function structure. */
748 static tree
749 build_var (tree fn_decl, tree type, int counter)
751 tree var = build_decl (BUILTINS_LOCATION, VAR_DECL, NULL_TREE, type);
752 const char *fn_name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fn_decl));
753 char *buf;
754 size_t fn_name_len, len;
756 fn_name = targetm.strip_name_encoding (fn_name);
757 fn_name_len = strlen (fn_name);
758 buf = XALLOCAVEC (char, fn_name_len + 8 + sizeof (int) * 3);
760 if (counter < 0)
761 strcpy (buf, "__gcov__");
762 else
763 sprintf (buf, "__gcov%u_", counter);
764 len = strlen (buf);
765 #ifndef NO_DOT_IN_LABEL
766 buf[len - 1] = '.';
767 #elif !defined NO_DOLLAR_IN_LABEL
768 buf[len - 1] = '$';
769 #endif
770 memcpy (buf + len, fn_name, fn_name_len + 1);
771 DECL_NAME (var) = get_identifier (buf);
772 TREE_STATIC (var) = 1;
773 TREE_ADDRESSABLE (var) = 1;
774 DECL_NONALIASED (var) = 1;
775 DECL_ALIGN (var) = TYPE_ALIGN (type);
777 return var;
780 /* Creates the gcov_fn_info RECORD_TYPE. */
782 static void
783 build_fn_info_type (tree type, unsigned counters, tree gcov_info_type)
785 tree ctr_info = lang_hooks.types.make_type (RECORD_TYPE);
786 tree field, fields;
787 tree array_type;
789 gcc_assert (counters);
791 /* ctr_info::num */
792 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
793 get_gcov_unsigned_t ());
794 fields = field;
796 /* ctr_info::values */
797 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
798 build_pointer_type (get_gcov_type ()));
799 DECL_CHAIN (field) = fields;
800 fields = field;
802 finish_builtin_struct (ctr_info, "__gcov_ctr_info", fields, NULL_TREE);
804 /* key */
805 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
806 build_pointer_type (build_qualified_type
807 (gcov_info_type, TYPE_QUAL_CONST)));
808 fields = field;
810 /* ident */
811 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
812 get_gcov_unsigned_t ());
813 DECL_CHAIN (field) = fields;
814 fields = field;
816 /* lineno_checksum */
817 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
818 get_gcov_unsigned_t ());
819 DECL_CHAIN (field) = fields;
820 fields = field;
822 /* cfg checksum */
823 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
824 get_gcov_unsigned_t ());
825 DECL_CHAIN (field) = fields;
826 fields = field;
828 array_type = build_index_type (size_int (counters - 1));
829 array_type = build_array_type (ctr_info, array_type);
831 /* counters */
832 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE, array_type);
833 DECL_CHAIN (field) = fields;
834 fields = field;
836 finish_builtin_struct (type, "__gcov_fn_info", fields, NULL_TREE);
839 /* Returns a CONSTRUCTOR for a gcov_fn_info. DATA is
840 the coverage data for the function and TYPE is the gcov_fn_info
841 RECORD_TYPE. KEY is the object file key. */
843 static tree
844 build_fn_info (const struct coverage_data *data, tree type, tree key)
846 tree fields = TYPE_FIELDS (type);
847 tree ctr_type;
848 unsigned ix;
849 vec<constructor_elt, va_gc> *v1 = NULL;
850 vec<constructor_elt, va_gc> *v2 = NULL;
852 /* key */
853 CONSTRUCTOR_APPEND_ELT (v1, fields,
854 build1 (ADDR_EXPR, TREE_TYPE (fields), key));
855 fields = DECL_CHAIN (fields);
857 /* ident */
858 CONSTRUCTOR_APPEND_ELT (v1, fields,
859 build_int_cstu (get_gcov_unsigned_t (),
860 data->ident));
861 fields = DECL_CHAIN (fields);
863 /* lineno_checksum */
864 CONSTRUCTOR_APPEND_ELT (v1, fields,
865 build_int_cstu (get_gcov_unsigned_t (),
866 data->lineno_checksum));
867 fields = DECL_CHAIN (fields);
869 /* cfg_checksum */
870 CONSTRUCTOR_APPEND_ELT (v1, fields,
871 build_int_cstu (get_gcov_unsigned_t (),
872 data->cfg_checksum));
873 fields = DECL_CHAIN (fields);
875 /* counters */
876 ctr_type = TREE_TYPE (TREE_TYPE (fields));
877 for (ix = 0; ix != GCOV_COUNTERS; ix++)
878 if (prg_ctr_mask & (1 << ix))
880 vec<constructor_elt, va_gc> *ctr = NULL;
881 tree var = data->ctr_vars[ix];
882 unsigned count = 0;
884 if (var)
885 count
886 = tree_to_shwi (TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (var))))
887 + 1;
889 CONSTRUCTOR_APPEND_ELT (ctr, TYPE_FIELDS (ctr_type),
890 build_int_cstu (get_gcov_unsigned_t (),
891 count));
893 if (var)
894 CONSTRUCTOR_APPEND_ELT (ctr, DECL_CHAIN (TYPE_FIELDS (ctr_type)),
895 build_fold_addr_expr (var));
897 CONSTRUCTOR_APPEND_ELT (v2, NULL, build_constructor (ctr_type, ctr));
900 CONSTRUCTOR_APPEND_ELT (v1, fields,
901 build_constructor (TREE_TYPE (fields), v2));
903 return build_constructor (type, v1);
906 /* Create gcov_info struct. TYPE is the incomplete RECORD_TYPE to be
907 completed, and FN_INFO_PTR_TYPE is a pointer to the function info type. */
909 static void
910 build_info_type (tree type, tree fn_info_ptr_type)
912 tree field, fields = NULL_TREE;
913 tree merge_fn_type;
915 /* Version ident */
916 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
917 get_gcov_unsigned_t ());
918 DECL_CHAIN (field) = fields;
919 fields = field;
921 /* next pointer */
922 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
923 build_pointer_type (build_qualified_type
924 (type, TYPE_QUAL_CONST)));
925 DECL_CHAIN (field) = fields;
926 fields = field;
928 /* stamp */
929 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
930 get_gcov_unsigned_t ());
931 DECL_CHAIN (field) = fields;
932 fields = field;
934 /* Filename */
935 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
936 build_pointer_type (build_qualified_type
937 (char_type_node, TYPE_QUAL_CONST)));
938 DECL_CHAIN (field) = fields;
939 fields = field;
941 /* merge fn array */
942 merge_fn_type
943 = build_function_type_list (void_type_node,
944 build_pointer_type (get_gcov_type ()),
945 get_gcov_unsigned_t (), NULL_TREE);
946 merge_fn_type
947 = build_array_type (build_pointer_type (merge_fn_type),
948 build_index_type (size_int (GCOV_COUNTERS - 1)));
949 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
950 merge_fn_type);
951 DECL_CHAIN (field) = fields;
952 fields = field;
954 /* n_functions */
955 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
956 get_gcov_unsigned_t ());
957 DECL_CHAIN (field) = fields;
958 fields = field;
960 /* function_info pointer pointer */
961 fn_info_ptr_type = build_pointer_type
962 (build_qualified_type (fn_info_ptr_type, TYPE_QUAL_CONST));
963 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
964 fn_info_ptr_type);
965 DECL_CHAIN (field) = fields;
966 fields = field;
968 finish_builtin_struct (type, "__gcov_info", fields, NULL_TREE);
971 /* Returns a CONSTRUCTOR for the gcov_info object. INFO_TYPE is the
972 gcov_info structure type, FN_ARY is the array of pointers to
973 function info objects. */
975 static tree
976 build_info (tree info_type, tree fn_ary)
978 tree info_fields = TYPE_FIELDS (info_type);
979 tree merge_fn_type, n_funcs;
980 unsigned ix;
981 tree filename_string;
982 int da_file_name_len;
983 vec<constructor_elt, va_gc> *v1 = NULL;
984 vec<constructor_elt, va_gc> *v2 = NULL;
986 /* Version ident */
987 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
988 build_int_cstu (TREE_TYPE (info_fields),
989 GCOV_VERSION));
990 info_fields = DECL_CHAIN (info_fields);
992 /* next -- NULL */
993 CONSTRUCTOR_APPEND_ELT (v1, info_fields, null_pointer_node);
994 info_fields = DECL_CHAIN (info_fields);
996 /* stamp */
997 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
998 build_int_cstu (TREE_TYPE (info_fields),
999 bbg_file_stamp));
1000 info_fields = DECL_CHAIN (info_fields);
1002 /* Filename */
1003 da_file_name_len = strlen (da_file_name);
1004 filename_string = build_string (da_file_name_len + 1, da_file_name);
1005 TREE_TYPE (filename_string) = build_array_type
1006 (char_type_node, build_index_type (size_int (da_file_name_len)));
1007 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
1008 build1 (ADDR_EXPR, TREE_TYPE (info_fields),
1009 filename_string));
1010 info_fields = DECL_CHAIN (info_fields);
1012 /* merge fn array -- NULL slots indicate unmeasured counters */
1013 merge_fn_type = TREE_TYPE (TREE_TYPE (info_fields));
1014 for (ix = 0; ix != GCOV_COUNTERS; ix++)
1016 tree ptr = null_pointer_node;
1018 if ((1u << ix) & prg_ctr_mask)
1020 tree merge_fn = build_decl (BUILTINS_LOCATION,
1021 FUNCTION_DECL,
1022 get_identifier (ctr_merge_functions[ix]),
1023 TREE_TYPE (merge_fn_type));
1024 DECL_EXTERNAL (merge_fn) = 1;
1025 TREE_PUBLIC (merge_fn) = 1;
1026 DECL_ARTIFICIAL (merge_fn) = 1;
1027 TREE_NOTHROW (merge_fn) = 1;
1028 /* Initialize assembler name so we can stream out. */
1029 DECL_ASSEMBLER_NAME (merge_fn);
1030 ptr = build1 (ADDR_EXPR, merge_fn_type, merge_fn);
1032 CONSTRUCTOR_APPEND_ELT (v2, NULL, ptr);
1034 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
1035 build_constructor (TREE_TYPE (info_fields), v2));
1036 info_fields = DECL_CHAIN (info_fields);
1038 /* n_functions */
1039 n_funcs = TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (fn_ary)));
1040 n_funcs = fold_build2 (PLUS_EXPR, TREE_TYPE (info_fields),
1041 n_funcs, size_one_node);
1042 CONSTRUCTOR_APPEND_ELT (v1, info_fields, n_funcs);
1043 info_fields = DECL_CHAIN (info_fields);
1045 /* functions */
1046 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
1047 build1 (ADDR_EXPR, TREE_TYPE (info_fields), fn_ary));
1048 info_fields = DECL_CHAIN (info_fields);
1050 gcc_assert (!info_fields);
1051 return build_constructor (info_type, v1);
1054 /* Generate the constructor function to call __gcov_init. */
1056 static void
1057 build_init_ctor (tree gcov_info_type)
1059 tree ctor, stmt, init_fn;
1061 /* Build a decl for __gcov_init. */
1062 init_fn = build_pointer_type (gcov_info_type);
1063 init_fn = build_function_type_list (void_type_node, init_fn, NULL);
1064 init_fn = build_decl (BUILTINS_LOCATION, FUNCTION_DECL,
1065 get_identifier ("__gcov_init"), init_fn);
1066 TREE_PUBLIC (init_fn) = 1;
1067 DECL_EXTERNAL (init_fn) = 1;
1068 DECL_ASSEMBLER_NAME (init_fn);
1070 /* Generate a call to __gcov_init(&gcov_info). */
1071 ctor = NULL;
1072 stmt = build_fold_addr_expr (gcov_info_var);
1073 stmt = build_call_expr (init_fn, 1, stmt);
1074 append_to_statement_list (stmt, &ctor);
1076 /* Generate a constructor to run it. */
1077 cgraph_build_static_cdtor ('I', ctor, DEFAULT_INIT_PRIORITY);
1080 /* Create the gcov_info types and object. Generate the constructor
1081 function to call __gcov_init. Does not generate the initializer
1082 for the object. Returns TRUE if coverage data is being emitted. */
1084 static bool
1085 coverage_obj_init (void)
1087 tree gcov_info_type;
1088 unsigned n_counters = 0;
1089 unsigned ix;
1090 struct coverage_data *fn;
1091 struct coverage_data **fn_prev;
1092 char name_buf[32];
1094 no_coverage = 1; /* Disable any further coverage. */
1096 if (!prg_ctr_mask)
1097 return false;
1099 if (symtab->dump_file)
1100 fprintf (symtab->dump_file, "Using data file %s\n", da_file_name);
1102 /* Prune functions. */
1103 for (fn_prev = &functions_head; (fn = *fn_prev);)
1104 if (DECL_STRUCT_FUNCTION (fn->fn_decl))
1105 fn_prev = &fn->next;
1106 else
1107 /* The function is not being emitted, remove from list. */
1108 *fn_prev = fn->next;
1110 if (functions_head == NULL)
1111 return false;
1113 for (ix = 0; ix != GCOV_COUNTERS; ix++)
1114 if ((1u << ix) & prg_ctr_mask)
1115 n_counters++;
1117 /* Build the info and fn_info types. These are mutually recursive. */
1118 gcov_info_type = lang_hooks.types.make_type (RECORD_TYPE);
1119 gcov_fn_info_type = lang_hooks.types.make_type (RECORD_TYPE);
1120 gcov_fn_info_ptr_type = build_pointer_type
1121 (build_qualified_type (gcov_fn_info_type, TYPE_QUAL_CONST));
1122 build_fn_info_type (gcov_fn_info_type, n_counters, gcov_info_type);
1123 build_info_type (gcov_info_type, gcov_fn_info_ptr_type);
1125 /* Build the gcov info var, this is referred to in its own
1126 initializer. */
1127 gcov_info_var = build_decl (BUILTINS_LOCATION,
1128 VAR_DECL, NULL_TREE, gcov_info_type);
1129 TREE_STATIC (gcov_info_var) = 1;
1130 ASM_GENERATE_INTERNAL_LABEL (name_buf, "LPBX", 0);
1131 DECL_NAME (gcov_info_var) = get_identifier (name_buf);
1133 build_init_ctor (gcov_info_type);
1135 return true;
1138 /* Generate the coverage function info for FN and DATA. Append a
1139 pointer to that object to CTOR and return the appended CTOR. */
1141 static vec<constructor_elt, va_gc> *
1142 coverage_obj_fn (vec<constructor_elt, va_gc> *ctor, tree fn,
1143 struct coverage_data const *data)
1145 tree init = build_fn_info (data, gcov_fn_info_type, gcov_info_var);
1146 tree var = build_var (fn, gcov_fn_info_type, -1);
1148 DECL_INITIAL (var) = init;
1149 varpool_node::finalize_decl (var);
1151 CONSTRUCTOR_APPEND_ELT (ctor, NULL,
1152 build1 (ADDR_EXPR, gcov_fn_info_ptr_type, var));
1153 return ctor;
1156 /* Finalize the coverage data. Generates the array of pointers to
1157 function objects from CTOR. Generate the gcov_info initializer. */
1159 static void
1160 coverage_obj_finish (vec<constructor_elt, va_gc> *ctor)
1162 unsigned n_functions = vec_safe_length (ctor);
1163 tree fn_info_ary_type = build_array_type
1164 (build_qualified_type (gcov_fn_info_ptr_type, TYPE_QUAL_CONST),
1165 build_index_type (size_int (n_functions - 1)));
1166 tree fn_info_ary = build_decl (BUILTINS_LOCATION, VAR_DECL, NULL_TREE,
1167 fn_info_ary_type);
1168 char name_buf[32];
1170 TREE_STATIC (fn_info_ary) = 1;
1171 ASM_GENERATE_INTERNAL_LABEL (name_buf, "LPBX", 1);
1172 DECL_NAME (fn_info_ary) = get_identifier (name_buf);
1173 DECL_INITIAL (fn_info_ary) = build_constructor (fn_info_ary_type, ctor);
1174 varpool_node::finalize_decl (fn_info_ary);
1176 DECL_INITIAL (gcov_info_var)
1177 = build_info (TREE_TYPE (gcov_info_var), fn_info_ary);
1178 varpool_node::finalize_decl (gcov_info_var);
1181 /* Perform file-level initialization. Read in data file, generate name
1182 of notes file. */
1184 void
1185 coverage_init (const char *filename)
1187 int len = strlen (filename);
1188 int prefix_len = 0;
1190 /* Since coverage_init is invoked very early, before the pass
1191 manager, we need to set up the dumping explicitly. This is
1192 similar to the handling in finish_optimization_passes. */
1193 int profile_pass_num =
1194 g->get_passes ()->get_pass_profile ()->static_pass_number;
1195 g->get_dumps ()->dump_start (profile_pass_num, NULL);
1197 if (!profile_data_prefix && !IS_ABSOLUTE_PATH (filename))
1198 profile_data_prefix = getpwd ();
1200 if (profile_data_prefix)
1201 prefix_len = strlen (profile_data_prefix);
1203 /* Name of da file. */
1204 da_file_name = XNEWVEC (char, len + strlen (GCOV_DATA_SUFFIX)
1205 + prefix_len + 2);
1207 if (profile_data_prefix)
1209 memcpy (da_file_name, profile_data_prefix, prefix_len);
1210 da_file_name[prefix_len++] = '/';
1212 memcpy (da_file_name + prefix_len, filename, len);
1213 strcpy (da_file_name + prefix_len + len, GCOV_DATA_SUFFIX);
1215 bbg_file_stamp = local_tick;
1217 if (flag_branch_probabilities)
1218 read_counts_file ();
1220 /* Name of bbg file. */
1221 if (flag_test_coverage && !flag_compare_debug)
1223 bbg_file_name = XNEWVEC (char, len + strlen (GCOV_NOTE_SUFFIX) + 1);
1224 memcpy (bbg_file_name, filename, len);
1225 strcpy (bbg_file_name + len, GCOV_NOTE_SUFFIX);
1227 if (!gcov_open (bbg_file_name, -1))
1229 error ("cannot open %s", bbg_file_name);
1230 bbg_file_name = NULL;
1232 else
1234 gcov_write_unsigned (GCOV_NOTE_MAGIC);
1235 gcov_write_unsigned (GCOV_VERSION);
1236 gcov_write_unsigned (bbg_file_stamp);
1240 g->get_dumps ()->dump_finish (profile_pass_num);
1243 /* Performs file-level cleanup. Close notes file, generate coverage
1244 variables and constructor. */
1246 void
1247 coverage_finish (void)
1249 if (bbg_file_name && gcov_close ())
1250 unlink (bbg_file_name);
1252 if (!flag_branch_probabilities && flag_test_coverage
1253 && (!local_tick || local_tick == (unsigned)-1))
1254 /* Only remove the da file, if we're emitting coverage code and
1255 cannot uniquely stamp it. If we can stamp it, libgcov will DTRT. */
1256 unlink (da_file_name);
1258 if (coverage_obj_init ())
1260 vec<constructor_elt, va_gc> *fn_ctor = NULL;
1261 struct coverage_data *fn;
1263 for (fn = functions_head; fn; fn = fn->next)
1264 fn_ctor = coverage_obj_fn (fn_ctor, fn->fn_decl, fn);
1265 coverage_obj_finish (fn_ctor);
1268 XDELETEVEC (da_file_name);
1269 da_file_name = NULL;
1272 #include "gt-coverage.h"