Fix gnu11 fallout on SPARC
[official-gcc.git] / gcc / coverage.c
blobc02b18c11443c8632e24c1c1c5f5e4f2cdb584e1
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"
64 #include "auto-profile.h"
66 #include "gcov-io.h"
67 #include "gcov-io.c"
69 struct GTY((chain_next ("%h.next"))) coverage_data
71 struct coverage_data *next; /* next function */
72 unsigned ident; /* function ident */
73 unsigned lineno_checksum; /* function lineno checksum */
74 unsigned cfg_checksum; /* function cfg checksum */
75 tree fn_decl; /* the function decl */
76 tree ctr_vars[GCOV_COUNTERS]; /* counter variables. */
79 /* Counts information for a function. */
80 typedef struct counts_entry
82 /* We hash by */
83 unsigned ident;
84 unsigned ctr;
86 /* Store */
87 unsigned lineno_checksum;
88 unsigned cfg_checksum;
89 gcov_type *counts;
90 struct gcov_ctr_summary summary;
92 /* hash_table support. */
93 typedef counts_entry value_type;
94 typedef counts_entry compare_type;
95 static inline hashval_t hash (const value_type *);
96 static int equal (const value_type *, const compare_type *);
97 static void remove (value_type *);
98 } counts_entry_t;
100 static GTY(()) struct coverage_data *functions_head = 0;
101 static struct coverage_data **functions_tail = &functions_head;
102 static unsigned no_coverage = 0;
104 /* Cumulative counter information for whole program. */
105 static unsigned prg_ctr_mask; /* Mask of counter types generated. */
107 /* Counter information for current function. */
108 static unsigned fn_ctr_mask; /* Mask of counters used. */
109 static GTY(()) tree fn_v_ctrs[GCOV_COUNTERS]; /* counter variables. */
110 static unsigned fn_n_ctrs[GCOV_COUNTERS]; /* Counters allocated. */
111 static unsigned fn_b_ctrs[GCOV_COUNTERS]; /* Allocation base. */
113 /* Coverage info VAR_DECL and function info type nodes. */
114 static GTY(()) tree gcov_info_var;
115 static GTY(()) tree gcov_fn_info_type;
116 static GTY(()) tree gcov_fn_info_ptr_type;
118 /* Name of the notes (gcno) output file. The "bbg" prefix is for
119 historical reasons, when the notes file contained only the
120 basic block graph notes.
121 If this is NULL we're not writing to the notes file. */
122 static char *bbg_file_name;
124 /* File stamp for notes file. */
125 static unsigned bbg_file_stamp;
127 /* Name of the count data (gcda) file. */
128 static char *da_file_name;
130 /* The names of merge functions for counters. */
131 #define STR(str) #str
132 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) STR(__gcov_merge ## FN_TYPE),
133 static const char *const ctr_merge_functions[GCOV_COUNTERS] = {
134 #include "gcov-counter.def"
136 #undef DEF_GCOV_COUNTER
137 #undef STR
139 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) NAME,
140 static const char *const ctr_names[GCOV_COUNTERS] = {
141 #include "gcov-counter.def"
143 #undef DEF_GCOV_COUNTER
145 /* Forward declarations. */
146 static void read_counts_file (void);
147 static tree build_var (tree, tree, int);
148 static void build_fn_info_type (tree, unsigned, tree);
149 static void build_info_type (tree, tree);
150 static tree build_fn_info (const struct coverage_data *, tree, tree);
151 static tree build_info (tree, tree);
152 static bool coverage_obj_init (void);
153 static vec<constructor_elt, va_gc> *coverage_obj_fn
154 (vec<constructor_elt, va_gc> *, tree, struct coverage_data const *);
155 static void coverage_obj_finish (vec<constructor_elt, va_gc> *);
157 /* Return the type node for gcov_type. */
159 tree
160 get_gcov_type (void)
162 enum machine_mode mode = smallest_mode_for_size (GCOV_TYPE_SIZE, MODE_INT);
163 return lang_hooks.types.type_for_mode (mode, false);
166 /* Return the type node for gcov_unsigned_t. */
168 static tree
169 get_gcov_unsigned_t (void)
171 enum machine_mode mode = smallest_mode_for_size (32, MODE_INT);
172 return lang_hooks.types.type_for_mode (mode, true);
175 inline hashval_t
176 counts_entry::hash (const value_type *entry)
178 return entry->ident * GCOV_COUNTERS + entry->ctr;
181 inline int
182 counts_entry::equal (const value_type *entry1,
183 const compare_type *entry2)
185 return entry1->ident == entry2->ident && entry1->ctr == entry2->ctr;
188 inline void
189 counts_entry::remove (value_type *entry)
191 free (entry->counts);
192 free (entry);
195 /* Hash table of count data. */
196 static hash_table<counts_entry> *counts_hash;
198 /* Read in the counts file, if available. */
200 static void
201 read_counts_file (void)
203 gcov_unsigned_t fn_ident = 0;
204 struct gcov_summary summary;
205 unsigned new_summary = 1;
206 gcov_unsigned_t tag;
207 int is_error = 0;
208 unsigned lineno_checksum = 0;
209 unsigned cfg_checksum = 0;
211 if (!gcov_open (da_file_name, 1))
212 return;
214 if (!gcov_magic (gcov_read_unsigned (), GCOV_DATA_MAGIC))
216 warning (0, "%qs is not a gcov data file", da_file_name);
217 gcov_close ();
218 return;
220 else if ((tag = gcov_read_unsigned ()) != GCOV_VERSION)
222 char v[4], e[4];
224 GCOV_UNSIGNED2STRING (v, tag);
225 GCOV_UNSIGNED2STRING (e, GCOV_VERSION);
227 warning (0, "%qs is version %q.*s, expected version %q.*s",
228 da_file_name, 4, v, 4, e);
229 gcov_close ();
230 return;
233 /* Read the stamp, used for creating a generation count. */
234 tag = gcov_read_unsigned ();
235 bbg_file_stamp = crc32_unsigned (bbg_file_stamp, tag);
237 counts_hash = new hash_table<counts_entry> (10);
238 while ((tag = gcov_read_unsigned ()))
240 gcov_unsigned_t length;
241 gcov_position_t offset;
243 length = gcov_read_unsigned ();
244 offset = gcov_position ();
245 if (tag == GCOV_TAG_FUNCTION)
247 if (length)
249 fn_ident = gcov_read_unsigned ();
250 lineno_checksum = gcov_read_unsigned ();
251 cfg_checksum = gcov_read_unsigned ();
253 else
254 fn_ident = lineno_checksum = cfg_checksum = 0;
255 new_summary = 1;
257 else if (tag == GCOV_TAG_PROGRAM_SUMMARY)
259 struct gcov_summary sum;
260 unsigned ix;
262 if (new_summary)
263 memset (&summary, 0, sizeof (summary));
265 gcov_read_summary (&sum);
266 for (ix = 0; ix != GCOV_COUNTERS_SUMMABLE; ix++)
268 summary.ctrs[ix].runs += sum.ctrs[ix].runs;
269 summary.ctrs[ix].sum_all += sum.ctrs[ix].sum_all;
270 if (summary.ctrs[ix].run_max < sum.ctrs[ix].run_max)
271 summary.ctrs[ix].run_max = sum.ctrs[ix].run_max;
272 summary.ctrs[ix].sum_max += sum.ctrs[ix].sum_max;
274 if (new_summary)
275 memcpy (summary.ctrs[GCOV_COUNTER_ARCS].histogram,
276 sum.ctrs[GCOV_COUNTER_ARCS].histogram,
277 sizeof (gcov_bucket_type) * GCOV_HISTOGRAM_SIZE);
278 else
279 gcov_histogram_merge (summary.ctrs[GCOV_COUNTER_ARCS].histogram,
280 sum.ctrs[GCOV_COUNTER_ARCS].histogram);
281 new_summary = 0;
283 else if (GCOV_TAG_IS_COUNTER (tag) && fn_ident)
285 counts_entry_t **slot, *entry, elt;
286 unsigned n_counts = GCOV_TAG_COUNTER_NUM (length);
287 unsigned ix;
289 elt.ident = fn_ident;
290 elt.ctr = GCOV_COUNTER_FOR_TAG (tag);
292 slot = counts_hash->find_slot (&elt, INSERT);
293 entry = *slot;
294 if (!entry)
296 *slot = entry = XCNEW (counts_entry_t);
297 entry->ident = fn_ident;
298 entry->ctr = elt.ctr;
299 entry->lineno_checksum = lineno_checksum;
300 entry->cfg_checksum = cfg_checksum;
301 if (elt.ctr < GCOV_COUNTERS_SUMMABLE)
302 entry->summary = summary.ctrs[elt.ctr];
303 entry->summary.num = n_counts;
304 entry->counts = XCNEWVEC (gcov_type, n_counts);
306 else if (entry->lineno_checksum != lineno_checksum
307 || entry->cfg_checksum != cfg_checksum)
309 error ("Profile data for function %u is corrupted", fn_ident);
310 error ("checksum is (%x,%x) instead of (%x,%x)",
311 entry->lineno_checksum, entry->cfg_checksum,
312 lineno_checksum, cfg_checksum);
313 delete counts_hash;
314 counts_hash = NULL;
315 break;
317 else if (entry->summary.num != n_counts)
319 error ("Profile data for function %u is corrupted", fn_ident);
320 error ("number of counters is %d instead of %d", entry->summary.num, n_counts);
321 delete counts_hash;
322 counts_hash = NULL;
323 break;
325 else if (elt.ctr >= GCOV_COUNTERS_SUMMABLE)
327 error ("cannot merge separate %s counters for function %u",
328 ctr_names[elt.ctr], fn_ident);
329 goto skip_merge;
331 else
333 entry->summary.runs += summary.ctrs[elt.ctr].runs;
334 entry->summary.sum_all += summary.ctrs[elt.ctr].sum_all;
335 if (entry->summary.run_max < summary.ctrs[elt.ctr].run_max)
336 entry->summary.run_max = summary.ctrs[elt.ctr].run_max;
337 entry->summary.sum_max += summary.ctrs[elt.ctr].sum_max;
339 for (ix = 0; ix != n_counts; ix++)
340 entry->counts[ix] += gcov_read_counter ();
341 skip_merge:;
343 gcov_sync (offset, length);
344 if ((is_error = gcov_is_error ()))
346 error (is_error < 0 ? "%qs has overflowed" : "%qs is corrupted",
347 da_file_name);
348 delete counts_hash;
349 counts_hash = NULL;
350 break;
354 gcov_close ();
357 /* Returns the counters for a particular tag. */
359 gcov_type *
360 get_coverage_counts (unsigned counter, unsigned expected,
361 unsigned cfg_checksum, unsigned lineno_checksum,
362 const struct gcov_ctr_summary **summary)
364 counts_entry_t *entry, elt;
366 /* No hash table, no counts. */
367 if (!counts_hash)
369 static int warned = 0;
371 if (!warned++ && dump_enabled_p ())
372 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, input_location,
373 (flag_guess_branch_prob
374 ? "file %s not found, execution counts estimated\n"
375 : "file %s not found, execution counts assumed to "
376 "be zero\n"),
377 da_file_name);
378 return NULL;
380 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID))
381 elt.ident = current_function_funcdef_no + 1;
382 else
384 gcc_assert (coverage_node_map_initialized_p ());
385 elt.ident = cgraph_node::get (cfun->decl)->profile_id;
387 elt.ctr = counter;
388 entry = counts_hash->find (&elt);
389 if (!entry || !entry->summary.num)
390 /* The function was not emitted, or is weak and not chosen in the
391 final executable. Silently fail, because there's nothing we
392 can do about it. */
393 return NULL;
395 if (entry->cfg_checksum != cfg_checksum
396 || entry->summary.num != expected)
398 static int warned = 0;
399 bool warning_printed = false;
400 tree id = DECL_ASSEMBLER_NAME (current_function_decl);
402 warning_printed =
403 warning_at (input_location, OPT_Wcoverage_mismatch,
404 "the control flow of function %qE does not match "
405 "its profile data (counter %qs)", id, ctr_names[counter]);
406 if (warning_printed && dump_enabled_p ())
408 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, input_location,
409 "use -Wno-error=coverage-mismatch to tolerate "
410 "the mismatch but performance may drop if the "
411 "function is hot\n");
413 if (!seen_error ()
414 && !warned++)
416 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, input_location,
417 "coverage mismatch ignored\n");
418 dump_printf (MSG_OPTIMIZED_LOCATIONS,
419 flag_guess_branch_prob
420 ? G_("execution counts estimated\n")
421 : G_("execution counts assumed to be zero\n"));
422 if (!flag_guess_branch_prob)
423 dump_printf (MSG_OPTIMIZED_LOCATIONS,
424 "this can result in poorly optimized code\n");
428 return NULL;
430 else if (entry->lineno_checksum != lineno_checksum)
432 warning (OPT_Wcoverage_mismatch,
433 "source locations for function %qE have changed,"
434 " the profile data may be out of date",
435 DECL_ASSEMBLER_NAME (current_function_decl));
438 if (summary)
439 *summary = &entry->summary;
441 return entry->counts;
444 /* Allocate NUM counters of type COUNTER. Returns nonzero if the
445 allocation succeeded. */
448 coverage_counter_alloc (unsigned counter, unsigned num)
450 if (no_coverage)
451 return 0;
453 if (!num)
454 return 1;
456 if (!fn_v_ctrs[counter])
458 tree array_type = build_array_type (get_gcov_type (), NULL_TREE);
460 fn_v_ctrs[counter]
461 = build_var (current_function_decl, array_type, counter);
464 fn_b_ctrs[counter] = fn_n_ctrs[counter];
465 fn_n_ctrs[counter] += num;
467 fn_ctr_mask |= 1 << counter;
468 return 1;
471 /* Generate a tree to access COUNTER NO. */
473 tree
474 tree_coverage_counter_ref (unsigned counter, unsigned no)
476 tree gcov_type_node = get_gcov_type ();
478 gcc_assert (no < fn_n_ctrs[counter] - fn_b_ctrs[counter]);
480 no += fn_b_ctrs[counter];
482 /* "no" here is an array index, scaled to bytes later. */
483 return build4 (ARRAY_REF, gcov_type_node, fn_v_ctrs[counter],
484 build_int_cst (integer_type_node, no), NULL, NULL);
487 /* Generate a tree to access the address of COUNTER NO. */
489 tree
490 tree_coverage_counter_addr (unsigned counter, unsigned no)
492 tree gcov_type_node = get_gcov_type ();
494 gcc_assert (no < fn_n_ctrs[counter] - fn_b_ctrs[counter]);
495 no += fn_b_ctrs[counter];
497 /* "no" here is an array index, scaled to bytes later. */
498 return build_fold_addr_expr (build4 (ARRAY_REF, gcov_type_node,
499 fn_v_ctrs[counter],
500 build_int_cst (integer_type_node, no),
501 NULL, NULL));
505 /* Generate a checksum for a string. CHKSUM is the current
506 checksum. */
508 static unsigned
509 coverage_checksum_string (unsigned chksum, const char *string)
511 int i;
512 char *dup = NULL;
514 /* Look for everything that looks if it were produced by
515 get_file_function_name and zero out the second part
516 that may result from flag_random_seed. This is not critical
517 as the checksums are used only for sanity checking. */
518 for (i = 0; string[i]; i++)
520 int offset = 0;
521 if (!strncmp (string + i, "_GLOBAL__N_", 11))
522 offset = 11;
523 if (!strncmp (string + i, "_GLOBAL__", 9))
524 offset = 9;
526 /* C++ namespaces do have scheme:
527 _GLOBAL__N_<filename>_<wrongmagicnumber>_<magicnumber>functionname
528 since filename might contain extra underscores there seems
529 to be no better chance then walk all possible offsets looking
530 for magicnumber. */
531 if (offset)
533 for (i = i + offset; string[i]; i++)
534 if (string[i]=='_')
536 int y;
538 for (y = 1; y < 9; y++)
539 if (!(string[i + y] >= '0' && string[i + y] <= '9')
540 && !(string[i + y] >= 'A' && string[i + y] <= 'F'))
541 break;
542 if (y != 9 || string[i + 9] != '_')
543 continue;
544 for (y = 10; y < 18; y++)
545 if (!(string[i + y] >= '0' && string[i + y] <= '9')
546 && !(string[i + y] >= 'A' && string[i + y] <= 'F'))
547 break;
548 if (y != 18)
549 continue;
550 if (!dup)
551 string = dup = xstrdup (string);
552 for (y = 10; y < 18; y++)
553 dup[i + y] = '0';
555 break;
559 chksum = crc32_string (chksum, string);
560 free (dup);
562 return chksum;
565 /* Compute checksum for the current function. We generate a CRC32. */
567 unsigned
568 coverage_compute_lineno_checksum (void)
570 expanded_location xloc
571 = expand_location (DECL_SOURCE_LOCATION (current_function_decl));
572 unsigned chksum = xloc.line;
574 chksum = coverage_checksum_string (chksum, xloc.file);
575 chksum = coverage_checksum_string
576 (chksum, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (current_function_decl)));
578 return chksum;
581 /* Compute profile ID. This is better to be unique in whole program. */
583 unsigned
584 coverage_compute_profile_id (struct cgraph_node *n)
586 unsigned chksum;
588 /* Externally visible symbols have unique name. */
589 if (TREE_PUBLIC (n->decl) || DECL_EXTERNAL (n->decl) || n->unique_name)
591 chksum = coverage_checksum_string
592 (0, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n->decl)));
594 else
596 expanded_location xloc
597 = expand_location (DECL_SOURCE_LOCATION (n->decl));
598 bool use_name_only = (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID) == 0);
600 chksum = (use_name_only ? 0 : xloc.line);
601 chksum = coverage_checksum_string (chksum, xloc.file);
602 chksum = coverage_checksum_string
603 (chksum, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n->decl)));
604 if (!use_name_only && first_global_object_name)
605 chksum = coverage_checksum_string
606 (chksum, first_global_object_name);
607 chksum = coverage_checksum_string
608 (chksum, aux_base_name);
611 /* Non-negative integers are hopefully small enough to fit in all targets.
612 Gcov file formats wants non-zero function IDs. */
613 chksum = chksum & 0x7fffffff;
614 return chksum + (!chksum);
617 /* Compute cfg checksum for the function FN given as argument.
618 The checksum is calculated carefully so that
619 source code changes that doesn't affect the control flow graph
620 won't change the checksum.
621 This is to make the profile data useable across source code change.
622 The downside of this is that the compiler may use potentially
623 wrong profile data - that the source code change has non-trivial impact
624 on the validity of profile data (e.g. the reversed condition)
625 but the compiler won't detect the change and use the wrong profile data. */
627 unsigned
628 coverage_compute_cfg_checksum (struct function *fn)
630 basic_block bb;
631 unsigned chksum = n_basic_blocks_for_fn (fn);
633 FOR_EACH_BB_FN (bb, fn)
635 edge e;
636 edge_iterator ei;
637 chksum = crc32_byte (chksum, bb->index);
638 FOR_EACH_EDGE (e, ei, bb->succs)
640 chksum = crc32_byte (chksum, e->dest->index);
644 return chksum;
647 /* Begin output to the notes file for the current function.
648 Writes the function header. Returns nonzero if data should be output. */
651 coverage_begin_function (unsigned lineno_checksum, unsigned cfg_checksum)
653 expanded_location xloc;
654 unsigned long offset;
656 /* We don't need to output .gcno file unless we're under -ftest-coverage
657 (e.g. -fprofile-arcs/generate/use don't need .gcno to work). */
658 if (no_coverage || !bbg_file_name)
659 return 0;
661 xloc = expand_location (DECL_SOURCE_LOCATION (current_function_decl));
663 /* Announce function */
664 offset = gcov_write_tag (GCOV_TAG_FUNCTION);
665 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID))
666 gcov_write_unsigned (current_function_funcdef_no + 1);
667 else
669 gcc_assert (coverage_node_map_initialized_p ());
670 gcov_write_unsigned (
671 cgraph_node::get (current_function_decl)->profile_id);
674 gcov_write_unsigned (lineno_checksum);
675 gcov_write_unsigned (cfg_checksum);
676 gcov_write_string (IDENTIFIER_POINTER
677 (DECL_ASSEMBLER_NAME (current_function_decl)));
678 gcov_write_string (xloc.file);
679 gcov_write_unsigned (xloc.line);
680 gcov_write_length (offset);
682 return !gcov_is_error ();
685 /* Finish coverage data for the current function. Verify no output
686 error has occurred. Save function coverage counts. */
688 void
689 coverage_end_function (unsigned lineno_checksum, unsigned cfg_checksum)
691 unsigned i;
693 if (bbg_file_name && gcov_is_error ())
695 warning (0, "error writing %qs", bbg_file_name);
696 unlink (bbg_file_name);
697 bbg_file_name = NULL;
700 if (fn_ctr_mask)
702 struct coverage_data *item = 0;
704 item = ggc_alloc<coverage_data> ();
706 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID))
707 item->ident = current_function_funcdef_no + 1;
708 else
710 gcc_assert (coverage_node_map_initialized_p ());
711 item->ident = cgraph_node::get (cfun->decl)->profile_id;
714 item->lineno_checksum = lineno_checksum;
715 item->cfg_checksum = cfg_checksum;
717 item->fn_decl = current_function_decl;
718 item->next = 0;
719 *functions_tail = item;
720 functions_tail = &item->next;
722 for (i = 0; i != GCOV_COUNTERS; i++)
724 tree var = fn_v_ctrs[i];
726 if (item)
727 item->ctr_vars[i] = var;
728 if (var)
730 tree array_type = build_index_type (size_int (fn_n_ctrs[i] - 1));
731 array_type = build_array_type (get_gcov_type (), array_type);
732 TREE_TYPE (var) = array_type;
733 DECL_SIZE (var) = TYPE_SIZE (array_type);
734 DECL_SIZE_UNIT (var) = TYPE_SIZE_UNIT (array_type);
735 varpool_node::finalize_decl (var);
738 fn_b_ctrs[i] = fn_n_ctrs[i] = 0;
739 fn_v_ctrs[i] = NULL_TREE;
741 prg_ctr_mask |= fn_ctr_mask;
742 fn_ctr_mask = 0;
746 /* Build a coverage variable of TYPE for function FN_DECL. If COUNTER
747 >= 0 it is a counter array, otherwise it is the function structure. */
749 static tree
750 build_var (tree fn_decl, tree type, int counter)
752 tree var = build_decl (BUILTINS_LOCATION, VAR_DECL, NULL_TREE, type);
753 const char *fn_name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fn_decl));
754 char *buf;
755 size_t fn_name_len, len;
757 fn_name = targetm.strip_name_encoding (fn_name);
758 fn_name_len = strlen (fn_name);
759 buf = XALLOCAVEC (char, fn_name_len + 8 + sizeof (int) * 3);
761 if (counter < 0)
762 strcpy (buf, "__gcov__");
763 else
764 sprintf (buf, "__gcov%u_", counter);
765 len = strlen (buf);
766 #ifndef NO_DOT_IN_LABEL
767 buf[len - 1] = '.';
768 #elif !defined NO_DOLLAR_IN_LABEL
769 buf[len - 1] = '$';
770 #endif
771 memcpy (buf + len, fn_name, fn_name_len + 1);
772 DECL_NAME (var) = get_identifier (buf);
773 TREE_STATIC (var) = 1;
774 TREE_ADDRESSABLE (var) = 1;
775 DECL_NONALIASED (var) = 1;
776 DECL_ALIGN (var) = TYPE_ALIGN (type);
778 return var;
781 /* Creates the gcov_fn_info RECORD_TYPE. */
783 static void
784 build_fn_info_type (tree type, unsigned counters, tree gcov_info_type)
786 tree ctr_info = lang_hooks.types.make_type (RECORD_TYPE);
787 tree field, fields;
788 tree array_type;
790 gcc_assert (counters);
792 /* ctr_info::num */
793 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
794 get_gcov_unsigned_t ());
795 fields = field;
797 /* ctr_info::values */
798 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
799 build_pointer_type (get_gcov_type ()));
800 DECL_CHAIN (field) = fields;
801 fields = field;
803 finish_builtin_struct (ctr_info, "__gcov_ctr_info", fields, NULL_TREE);
805 /* key */
806 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
807 build_pointer_type (build_qualified_type
808 (gcov_info_type, TYPE_QUAL_CONST)));
809 fields = field;
811 /* ident */
812 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
813 get_gcov_unsigned_t ());
814 DECL_CHAIN (field) = fields;
815 fields = field;
817 /* lineno_checksum */
818 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
819 get_gcov_unsigned_t ());
820 DECL_CHAIN (field) = fields;
821 fields = field;
823 /* cfg checksum */
824 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
825 get_gcov_unsigned_t ());
826 DECL_CHAIN (field) = fields;
827 fields = field;
829 array_type = build_index_type (size_int (counters - 1));
830 array_type = build_array_type (ctr_info, array_type);
832 /* counters */
833 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE, array_type);
834 DECL_CHAIN (field) = fields;
835 fields = field;
837 finish_builtin_struct (type, "__gcov_fn_info", fields, NULL_TREE);
840 /* Returns a CONSTRUCTOR for a gcov_fn_info. DATA is
841 the coverage data for the function and TYPE is the gcov_fn_info
842 RECORD_TYPE. KEY is the object file key. */
844 static tree
845 build_fn_info (const struct coverage_data *data, tree type, tree key)
847 tree fields = TYPE_FIELDS (type);
848 tree ctr_type;
849 unsigned ix;
850 vec<constructor_elt, va_gc> *v1 = NULL;
851 vec<constructor_elt, va_gc> *v2 = NULL;
853 /* key */
854 CONSTRUCTOR_APPEND_ELT (v1, fields,
855 build1 (ADDR_EXPR, TREE_TYPE (fields), key));
856 fields = DECL_CHAIN (fields);
858 /* ident */
859 CONSTRUCTOR_APPEND_ELT (v1, fields,
860 build_int_cstu (get_gcov_unsigned_t (),
861 data->ident));
862 fields = DECL_CHAIN (fields);
864 /* lineno_checksum */
865 CONSTRUCTOR_APPEND_ELT (v1, fields,
866 build_int_cstu (get_gcov_unsigned_t (),
867 data->lineno_checksum));
868 fields = DECL_CHAIN (fields);
870 /* cfg_checksum */
871 CONSTRUCTOR_APPEND_ELT (v1, fields,
872 build_int_cstu (get_gcov_unsigned_t (),
873 data->cfg_checksum));
874 fields = DECL_CHAIN (fields);
876 /* counters */
877 ctr_type = TREE_TYPE (TREE_TYPE (fields));
878 for (ix = 0; ix != GCOV_COUNTERS; ix++)
879 if (prg_ctr_mask & (1 << ix))
881 vec<constructor_elt, va_gc> *ctr = NULL;
882 tree var = data->ctr_vars[ix];
883 unsigned count = 0;
885 if (var)
886 count
887 = tree_to_shwi (TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (var))))
888 + 1;
890 CONSTRUCTOR_APPEND_ELT (ctr, TYPE_FIELDS (ctr_type),
891 build_int_cstu (get_gcov_unsigned_t (),
892 count));
894 if (var)
895 CONSTRUCTOR_APPEND_ELT (ctr, DECL_CHAIN (TYPE_FIELDS (ctr_type)),
896 build_fold_addr_expr (var));
898 CONSTRUCTOR_APPEND_ELT (v2, NULL, build_constructor (ctr_type, ctr));
901 CONSTRUCTOR_APPEND_ELT (v1, fields,
902 build_constructor (TREE_TYPE (fields), v2));
904 return build_constructor (type, v1);
907 /* Create gcov_info struct. TYPE is the incomplete RECORD_TYPE to be
908 completed, and FN_INFO_PTR_TYPE is a pointer to the function info type. */
910 static void
911 build_info_type (tree type, tree fn_info_ptr_type)
913 tree field, fields = NULL_TREE;
914 tree merge_fn_type;
916 /* Version ident */
917 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
918 get_gcov_unsigned_t ());
919 DECL_CHAIN (field) = fields;
920 fields = field;
922 /* next pointer */
923 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
924 build_pointer_type (build_qualified_type
925 (type, TYPE_QUAL_CONST)));
926 DECL_CHAIN (field) = fields;
927 fields = field;
929 /* stamp */
930 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
931 get_gcov_unsigned_t ());
932 DECL_CHAIN (field) = fields;
933 fields = field;
935 /* Filename */
936 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
937 build_pointer_type (build_qualified_type
938 (char_type_node, TYPE_QUAL_CONST)));
939 DECL_CHAIN (field) = fields;
940 fields = field;
942 /* merge fn array */
943 merge_fn_type
944 = build_function_type_list (void_type_node,
945 build_pointer_type (get_gcov_type ()),
946 get_gcov_unsigned_t (), NULL_TREE);
947 merge_fn_type
948 = build_array_type (build_pointer_type (merge_fn_type),
949 build_index_type (size_int (GCOV_COUNTERS - 1)));
950 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
951 merge_fn_type);
952 DECL_CHAIN (field) = fields;
953 fields = field;
955 /* n_functions */
956 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
957 get_gcov_unsigned_t ());
958 DECL_CHAIN (field) = fields;
959 fields = field;
961 /* function_info pointer pointer */
962 fn_info_ptr_type = build_pointer_type
963 (build_qualified_type (fn_info_ptr_type, TYPE_QUAL_CONST));
964 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
965 fn_info_ptr_type);
966 DECL_CHAIN (field) = fields;
967 fields = field;
969 finish_builtin_struct (type, "__gcov_info", fields, NULL_TREE);
972 /* Returns a CONSTRUCTOR for the gcov_info object. INFO_TYPE is the
973 gcov_info structure type, FN_ARY is the array of pointers to
974 function info objects. */
976 static tree
977 build_info (tree info_type, tree fn_ary)
979 tree info_fields = TYPE_FIELDS (info_type);
980 tree merge_fn_type, n_funcs;
981 unsigned ix;
982 tree filename_string;
983 int da_file_name_len;
984 vec<constructor_elt, va_gc> *v1 = NULL;
985 vec<constructor_elt, va_gc> *v2 = NULL;
987 /* Version ident */
988 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
989 build_int_cstu (TREE_TYPE (info_fields),
990 GCOV_VERSION));
991 info_fields = DECL_CHAIN (info_fields);
993 /* next -- NULL */
994 CONSTRUCTOR_APPEND_ELT (v1, info_fields, null_pointer_node);
995 info_fields = DECL_CHAIN (info_fields);
997 /* stamp */
998 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
999 build_int_cstu (TREE_TYPE (info_fields),
1000 bbg_file_stamp));
1001 info_fields = DECL_CHAIN (info_fields);
1003 /* Filename */
1004 da_file_name_len = strlen (da_file_name);
1005 filename_string = build_string (da_file_name_len + 1, da_file_name);
1006 TREE_TYPE (filename_string) = build_array_type
1007 (char_type_node, build_index_type (size_int (da_file_name_len)));
1008 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
1009 build1 (ADDR_EXPR, TREE_TYPE (info_fields),
1010 filename_string));
1011 info_fields = DECL_CHAIN (info_fields);
1013 /* merge fn array -- NULL slots indicate unmeasured counters */
1014 merge_fn_type = TREE_TYPE (TREE_TYPE (info_fields));
1015 for (ix = 0; ix != GCOV_COUNTERS; ix++)
1017 tree ptr = null_pointer_node;
1019 if ((1u << ix) & prg_ctr_mask)
1021 tree merge_fn = build_decl (BUILTINS_LOCATION,
1022 FUNCTION_DECL,
1023 get_identifier (ctr_merge_functions[ix]),
1024 TREE_TYPE (merge_fn_type));
1025 DECL_EXTERNAL (merge_fn) = 1;
1026 TREE_PUBLIC (merge_fn) = 1;
1027 DECL_ARTIFICIAL (merge_fn) = 1;
1028 TREE_NOTHROW (merge_fn) = 1;
1029 /* Initialize assembler name so we can stream out. */
1030 DECL_ASSEMBLER_NAME (merge_fn);
1031 ptr = build1 (ADDR_EXPR, merge_fn_type, merge_fn);
1033 CONSTRUCTOR_APPEND_ELT (v2, NULL, ptr);
1035 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
1036 build_constructor (TREE_TYPE (info_fields), v2));
1037 info_fields = DECL_CHAIN (info_fields);
1039 /* n_functions */
1040 n_funcs = TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (fn_ary)));
1041 n_funcs = fold_build2 (PLUS_EXPR, TREE_TYPE (info_fields),
1042 n_funcs, size_one_node);
1043 CONSTRUCTOR_APPEND_ELT (v1, info_fields, n_funcs);
1044 info_fields = DECL_CHAIN (info_fields);
1046 /* functions */
1047 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
1048 build1 (ADDR_EXPR, TREE_TYPE (info_fields), fn_ary));
1049 info_fields = DECL_CHAIN (info_fields);
1051 gcc_assert (!info_fields);
1052 return build_constructor (info_type, v1);
1055 /* Generate the constructor function to call __gcov_init. */
1057 static void
1058 build_init_ctor (tree gcov_info_type)
1060 tree ctor, stmt, init_fn;
1062 /* Build a decl for __gcov_init. */
1063 init_fn = build_pointer_type (gcov_info_type);
1064 init_fn = build_function_type_list (void_type_node, init_fn, NULL);
1065 init_fn = build_decl (BUILTINS_LOCATION, FUNCTION_DECL,
1066 get_identifier ("__gcov_init"), init_fn);
1067 TREE_PUBLIC (init_fn) = 1;
1068 DECL_EXTERNAL (init_fn) = 1;
1069 DECL_ASSEMBLER_NAME (init_fn);
1071 /* Generate a call to __gcov_init(&gcov_info). */
1072 ctor = NULL;
1073 stmt = build_fold_addr_expr (gcov_info_var);
1074 stmt = build_call_expr (init_fn, 1, stmt);
1075 append_to_statement_list (stmt, &ctor);
1077 /* Generate a constructor to run it. */
1078 cgraph_build_static_cdtor ('I', ctor, DEFAULT_INIT_PRIORITY);
1081 /* Create the gcov_info types and object. Generate the constructor
1082 function to call __gcov_init. Does not generate the initializer
1083 for the object. Returns TRUE if coverage data is being emitted. */
1085 static bool
1086 coverage_obj_init (void)
1088 tree gcov_info_type;
1089 unsigned n_counters = 0;
1090 unsigned ix;
1091 struct coverage_data *fn;
1092 struct coverage_data **fn_prev;
1093 char name_buf[32];
1095 no_coverage = 1; /* Disable any further coverage. */
1097 if (!prg_ctr_mask)
1098 return false;
1100 if (symtab->dump_file)
1101 fprintf (symtab->dump_file, "Using data file %s\n", da_file_name);
1103 /* Prune functions. */
1104 for (fn_prev = &functions_head; (fn = *fn_prev);)
1105 if (DECL_STRUCT_FUNCTION (fn->fn_decl))
1106 fn_prev = &fn->next;
1107 else
1108 /* The function is not being emitted, remove from list. */
1109 *fn_prev = fn->next;
1111 if (functions_head == NULL)
1112 return false;
1114 for (ix = 0; ix != GCOV_COUNTERS; ix++)
1115 if ((1u << ix) & prg_ctr_mask)
1116 n_counters++;
1118 /* Build the info and fn_info types. These are mutually recursive. */
1119 gcov_info_type = lang_hooks.types.make_type (RECORD_TYPE);
1120 gcov_fn_info_type = lang_hooks.types.make_type (RECORD_TYPE);
1121 gcov_fn_info_ptr_type = build_pointer_type
1122 (build_qualified_type (gcov_fn_info_type, TYPE_QUAL_CONST));
1123 build_fn_info_type (gcov_fn_info_type, n_counters, gcov_info_type);
1124 build_info_type (gcov_info_type, gcov_fn_info_ptr_type);
1126 /* Build the gcov info var, this is referred to in its own
1127 initializer. */
1128 gcov_info_var = build_decl (BUILTINS_LOCATION,
1129 VAR_DECL, NULL_TREE, gcov_info_type);
1130 TREE_STATIC (gcov_info_var) = 1;
1131 ASM_GENERATE_INTERNAL_LABEL (name_buf, "LPBX", 0);
1132 DECL_NAME (gcov_info_var) = get_identifier (name_buf);
1134 build_init_ctor (gcov_info_type);
1136 return true;
1139 /* Generate the coverage function info for FN and DATA. Append a
1140 pointer to that object to CTOR and return the appended CTOR. */
1142 static vec<constructor_elt, va_gc> *
1143 coverage_obj_fn (vec<constructor_elt, va_gc> *ctor, tree fn,
1144 struct coverage_data const *data)
1146 tree init = build_fn_info (data, gcov_fn_info_type, gcov_info_var);
1147 tree var = build_var (fn, gcov_fn_info_type, -1);
1149 DECL_INITIAL (var) = init;
1150 varpool_node::finalize_decl (var);
1152 CONSTRUCTOR_APPEND_ELT (ctor, NULL,
1153 build1 (ADDR_EXPR, gcov_fn_info_ptr_type, var));
1154 return ctor;
1157 /* Finalize the coverage data. Generates the array of pointers to
1158 function objects from CTOR. Generate the gcov_info initializer. */
1160 static void
1161 coverage_obj_finish (vec<constructor_elt, va_gc> *ctor)
1163 unsigned n_functions = vec_safe_length (ctor);
1164 tree fn_info_ary_type = build_array_type
1165 (build_qualified_type (gcov_fn_info_ptr_type, TYPE_QUAL_CONST),
1166 build_index_type (size_int (n_functions - 1)));
1167 tree fn_info_ary = build_decl (BUILTINS_LOCATION, VAR_DECL, NULL_TREE,
1168 fn_info_ary_type);
1169 char name_buf[32];
1171 TREE_STATIC (fn_info_ary) = 1;
1172 ASM_GENERATE_INTERNAL_LABEL (name_buf, "LPBX", 1);
1173 DECL_NAME (fn_info_ary) = get_identifier (name_buf);
1174 DECL_INITIAL (fn_info_ary) = build_constructor (fn_info_ary_type, ctor);
1175 varpool_node::finalize_decl (fn_info_ary);
1177 DECL_INITIAL (gcov_info_var)
1178 = build_info (TREE_TYPE (gcov_info_var), fn_info_ary);
1179 varpool_node::finalize_decl (gcov_info_var);
1182 /* Perform file-level initialization. Read in data file, generate name
1183 of notes file. */
1185 void
1186 coverage_init (const char *filename)
1188 int len = strlen (filename);
1189 int prefix_len = 0;
1191 /* Since coverage_init is invoked very early, before the pass
1192 manager, we need to set up the dumping explicitly. This is
1193 similar to the handling in finish_optimization_passes. */
1194 int profile_pass_num =
1195 g->get_passes ()->get_pass_profile ()->static_pass_number;
1196 g->get_dumps ()->dump_start (profile_pass_num, NULL);
1198 if (!profile_data_prefix && !IS_ABSOLUTE_PATH (filename))
1199 profile_data_prefix = getpwd ();
1201 if (profile_data_prefix)
1202 prefix_len = strlen (profile_data_prefix);
1204 /* Name of da file. */
1205 da_file_name = XNEWVEC (char, len + strlen (GCOV_DATA_SUFFIX)
1206 + prefix_len + 2);
1208 if (profile_data_prefix)
1210 memcpy (da_file_name, profile_data_prefix, prefix_len);
1211 da_file_name[prefix_len++] = '/';
1213 memcpy (da_file_name + prefix_len, filename, len);
1214 strcpy (da_file_name + prefix_len + len, GCOV_DATA_SUFFIX);
1216 bbg_file_stamp = local_tick;
1218 if (flag_auto_profile)
1219 read_autofdo_file ();
1220 else if (flag_branch_probabilities)
1221 read_counts_file ();
1223 /* Name of bbg file. */
1224 if (flag_test_coverage && !flag_compare_debug)
1226 bbg_file_name = XNEWVEC (char, len + strlen (GCOV_NOTE_SUFFIX) + 1);
1227 memcpy (bbg_file_name, filename, len);
1228 strcpy (bbg_file_name + len, GCOV_NOTE_SUFFIX);
1230 if (!gcov_open (bbg_file_name, -1))
1232 error ("cannot open %s", bbg_file_name);
1233 bbg_file_name = NULL;
1235 else
1237 gcov_write_unsigned (GCOV_NOTE_MAGIC);
1238 gcov_write_unsigned (GCOV_VERSION);
1239 gcov_write_unsigned (bbg_file_stamp);
1243 g->get_dumps ()->dump_finish (profile_pass_num);
1246 /* Performs file-level cleanup. Close notes file, generate coverage
1247 variables and constructor. */
1249 void
1250 coverage_finish (void)
1252 if (bbg_file_name && gcov_close ())
1253 unlink (bbg_file_name);
1255 if (!flag_branch_probabilities && flag_test_coverage
1256 && (!local_tick || local_tick == (unsigned)-1))
1257 /* Only remove the da file, if we're emitting coverage code and
1258 cannot uniquely stamp it. If we can stamp it, libgcov will DTRT. */
1259 unlink (da_file_name);
1261 if (coverage_obj_init ())
1263 vec<constructor_elt, va_gc> *fn_ctor = NULL;
1264 struct coverage_data *fn;
1266 for (fn = functions_head; fn; fn = fn->next)
1267 fn_ctor = coverage_obj_fn (fn_ctor, fn->fn_decl, fn);
1268 coverage_obj_finish (fn_ctor);
1271 XDELETEVEC (da_file_name);
1272 da_file_name = NULL;
1275 #include "gt-coverage.h"