1 /* Read and write coverage files, and associated functionality.
2 Copyright (C) 1990-2018 Free Software Foundation, Inc.
3 Contributed by James E. Wilson, UC Berkeley/Cygnus Support;
4 based on some ideas from Dain Samples of UC Berkeley.
5 Further mangling by Bob Manson, Cygnus Support.
6 Further mangled by Nathan Sidwell, CodeSourcery
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 3, or (at your option) any later
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
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/>. */
29 #include "coretypes.h"
34 #include "tree-pass.h"
37 #include "stringpool.h"
40 #include "diagnostic-core.h"
41 #include "fold-const.h"
42 #include "stor-layout.h"
45 #include "langhooks.h"
46 #include "tree-iterator.h"
48 #include "pass_manager.h"
51 #include "auto-profile.h"
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
>
73 unsigned lineno_checksum
;
74 unsigned cfg_checksum
;
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
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. */
147 = smallest_int_mode_for_size (LONG_LONG_TYPE_SIZE
> 32 ? 64 : 32);
148 return lang_hooks
.types
.type_for_mode (mode
, false);
151 /* Return the type node for gcov_unsigned_t. */
154 get_gcov_unsigned_t (void)
156 scalar_int_mode mode
= smallest_int_mode_for_size (32);
157 return lang_hooks
.types
.type_for_mode (mode
, true);
161 counts_entry::hash (const counts_entry
*entry
)
163 return entry
->ident
* GCOV_COUNTERS
+ entry
->ctr
;
167 counts_entry::equal (const counts_entry
*entry1
, const counts_entry
*entry2
)
169 return entry1
->ident
== entry2
->ident
&& entry1
->ctr
== entry2
->ctr
;
173 counts_entry::remove (counts_entry
*entry
)
175 free (entry
->counts
);
179 /* Hash table of count data. */
180 static hash_table
<counts_entry
> *counts_hash
;
182 /* Read in the counts file, if available. */
185 read_counts_file (void)
187 gcov_unsigned_t fn_ident
= 0;
188 gcov_summary summary
;
189 unsigned new_summary
= 1;
192 unsigned lineno_checksum
= 0;
193 unsigned cfg_checksum
= 0;
195 if (!gcov_open (da_file_name
, 1))
198 if (!gcov_magic (gcov_read_unsigned (), GCOV_DATA_MAGIC
))
200 warning (0, "%qs is not a gcov data file", da_file_name
);
204 else if ((tag
= gcov_read_unsigned ()) != GCOV_VERSION
)
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
);
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
)
233 fn_ident
= gcov_read_unsigned ();
234 lineno_checksum
= gcov_read_unsigned ();
235 cfg_checksum
= gcov_read_unsigned ();
238 fn_ident
= lineno_checksum
= cfg_checksum
= 0;
241 else if (tag
== GCOV_TAG_PROGRAM_SUMMARY
)
243 struct gcov_summary sum
;
246 memset (&summary
, 0, sizeof (summary
));
248 gcov_read_summary (&sum
);
249 summary
.runs
+= sum
.runs
;
250 summary
.sum_all
+= sum
.sum_all
;
251 if (summary
.run_max
< sum
.run_max
)
252 summary
.run_max
= sum
.run_max
;
253 summary
.sum_max
+= sum
.sum_max
;
255 memcpy (summary
.histogram
, sum
.histogram
,
256 sizeof (gcov_bucket_type
) * GCOV_HISTOGRAM_SIZE
);
258 gcov_histogram_merge (summary
.histogram
, sum
.histogram
);
261 else if (GCOV_TAG_IS_COUNTER (tag
) && fn_ident
)
263 counts_entry
**slot
, *entry
, elt
;
264 unsigned n_counts
= GCOV_TAG_COUNTER_NUM (length
);
267 elt
.ident
= fn_ident
;
268 elt
.ctr
= GCOV_COUNTER_FOR_TAG (tag
);
270 slot
= counts_hash
->find_slot (&elt
, INSERT
);
274 *slot
= entry
= XCNEW (counts_entry
);
275 entry
->ident
= fn_ident
;
276 entry
->ctr
= elt
.ctr
;
277 entry
->lineno_checksum
= lineno_checksum
;
278 entry
->cfg_checksum
= cfg_checksum
;
279 if (elt
.ctr
== GCOV_COUNTER_ARCS
)
280 entry
->summary
= summary
;
281 entry
->summary
.num
= n_counts
;
282 entry
->counts
= XCNEWVEC (gcov_type
, n_counts
);
284 else if (entry
->lineno_checksum
!= lineno_checksum
285 || entry
->cfg_checksum
!= cfg_checksum
)
287 error ("Profile data for function %u is corrupted", fn_ident
);
288 error ("checksum is (%x,%x) instead of (%x,%x)",
289 entry
->lineno_checksum
, entry
->cfg_checksum
,
290 lineno_checksum
, cfg_checksum
);
295 else if (entry
->summary
.num
!= n_counts
)
297 error ("Profile data for function %u is corrupted", fn_ident
);
298 error ("number of counters is %d instead of %d", entry
->summary
.num
, n_counts
);
305 entry
->summary
.runs
+= summary
.runs
;
306 entry
->summary
.sum_all
+= summary
.sum_all
;
307 if (entry
->summary
.run_max
< summary
.run_max
)
308 entry
->summary
.run_max
= summary
.run_max
;
309 entry
->summary
.sum_max
+= summary
.sum_max
;
311 for (ix
= 0; ix
!= n_counts
; ix
++)
312 entry
->counts
[ix
] += gcov_read_counter ();
314 gcov_sync (offset
, length
);
315 if ((is_error
= gcov_is_error ()))
318 ? G_("%qs has overflowed")
319 : G_("%qs is corrupted"),
330 /* Returns the counters for a particular tag. */
333 get_coverage_counts (unsigned counter
, unsigned expected
,
334 unsigned cfg_checksum
, unsigned lineno_checksum
,
335 const gcov_summary
**summary
)
337 counts_entry
*entry
, elt
;
339 /* No hash table, no counts. */
342 static int warned
= 0;
344 if (!warned
++ && dump_enabled_p ())
346 dump_user_location_t loc
347 = dump_user_location_t::from_location_t (input_location
);
348 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS
, loc
,
349 (flag_guess_branch_prob
350 ? "file %s not found, execution counts estimated\n"
351 : "file %s not found, execution counts assumed to "
357 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID
))
358 elt
.ident
= current_function_funcdef_no
+ 1;
361 gcc_assert (coverage_node_map_initialized_p ());
362 elt
.ident
= cgraph_node::get (cfun
->decl
)->profile_id
;
365 entry
= counts_hash
->find (&elt
);
366 if (!entry
|| !entry
->summary
.num
)
367 /* The function was not emitted, or is weak and not chosen in the
368 final executable. Silently fail, because there's nothing we
372 if (entry
->cfg_checksum
!= cfg_checksum
373 || entry
->summary
.num
!= expected
)
375 static int warned
= 0;
376 bool warning_printed
= false;
377 tree id
= DECL_ASSEMBLER_NAME (current_function_decl
);
380 warning_at (input_location
, OPT_Wcoverage_mismatch
,
381 "the control flow of function %qE does not match "
382 "its profile data (counter %qs)", id
, ctr_names
[counter
]);
383 if (warning_printed
&& dump_enabled_p ())
385 dump_user_location_t loc
386 = dump_user_location_t::from_location_t (input_location
);
387 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS
, loc
,
388 "use -Wno-error=coverage-mismatch to tolerate "
389 "the mismatch but performance may drop if the "
390 "function is hot\n");
395 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS
, loc
,
396 "coverage mismatch ignored\n");
397 dump_printf (MSG_OPTIMIZED_LOCATIONS
,
398 flag_guess_branch_prob
399 ? G_("execution counts estimated\n")
400 : G_("execution counts assumed to be zero\n"));
401 if (!flag_guess_branch_prob
)
402 dump_printf (MSG_OPTIMIZED_LOCATIONS
,
403 "this can result in poorly optimized code\n");
409 else if (entry
->lineno_checksum
!= lineno_checksum
)
411 warning (OPT_Wcoverage_mismatch
,
412 "source locations for function %qE have changed,"
413 " the profile data may be out of date",
414 DECL_ASSEMBLER_NAME (current_function_decl
));
418 *summary
= &entry
->summary
;
420 return entry
->counts
;
423 /* Allocate NUM counters of type COUNTER. Returns nonzero if the
424 allocation succeeded. */
427 coverage_counter_alloc (unsigned counter
, unsigned num
)
435 if (!fn_v_ctrs
[counter
])
437 tree array_type
= build_array_type (get_gcov_type (), NULL_TREE
);
440 = build_var (current_function_decl
, array_type
, counter
);
443 fn_b_ctrs
[counter
] = fn_n_ctrs
[counter
];
444 fn_n_ctrs
[counter
] += num
;
446 fn_ctr_mask
|= 1 << counter
;
450 /* Generate a tree to access COUNTER NO. */
453 tree_coverage_counter_ref (unsigned counter
, unsigned no
)
455 tree gcov_type_node
= get_gcov_type ();
457 gcc_assert (no
< fn_n_ctrs
[counter
] - fn_b_ctrs
[counter
]);
459 no
+= fn_b_ctrs
[counter
];
461 /* "no" here is an array index, scaled to bytes later. */
462 return build4 (ARRAY_REF
, gcov_type_node
, fn_v_ctrs
[counter
],
463 build_int_cst (integer_type_node
, no
), NULL
, NULL
);
466 /* Generate a tree to access the address of COUNTER NO. */
469 tree_coverage_counter_addr (unsigned counter
, unsigned no
)
471 tree gcov_type_node
= get_gcov_type ();
473 gcc_assert (no
< fn_n_ctrs
[counter
] - fn_b_ctrs
[counter
]);
474 no
+= fn_b_ctrs
[counter
];
476 /* "no" here is an array index, scaled to bytes later. */
477 return build_fold_addr_expr (build4 (ARRAY_REF
, gcov_type_node
,
479 build_int_cst (integer_type_node
, no
),
484 /* Generate a checksum for a string. CHKSUM is the current
488 coverage_checksum_string (unsigned chksum
, const char *string
)
493 /* Look for everything that looks if it were produced by
494 get_file_function_name and zero out the second part
495 that may result from flag_random_seed. This is not critical
496 as the checksums are used only for sanity checking. */
497 for (i
= 0; string
[i
]; i
++)
500 if (!strncmp (string
+ i
, "_GLOBAL__N_", 11))
502 if (!strncmp (string
+ i
, "_GLOBAL__", 9))
505 /* C++ namespaces do have scheme:
506 _GLOBAL__N_<filename>_<wrongmagicnumber>_<magicnumber>functionname
507 since filename might contain extra underscores there seems
508 to be no better chance then walk all possible offsets looking
512 for (i
= i
+ offset
; string
[i
]; i
++)
517 for (y
= 1; y
< 9; y
++)
518 if (!(string
[i
+ y
] >= '0' && string
[i
+ y
] <= '9')
519 && !(string
[i
+ y
] >= 'A' && string
[i
+ y
] <= 'F'))
521 if (y
!= 9 || string
[i
+ 9] != '_')
523 for (y
= 10; y
< 18; y
++)
524 if (!(string
[i
+ y
] >= '0' && string
[i
+ y
] <= '9')
525 && !(string
[i
+ y
] >= 'A' && string
[i
+ y
] <= 'F'))
530 string
= dup
= xstrdup (string
);
531 for (y
= 10; y
< 18; y
++)
538 chksum
= crc32_string (chksum
, string
);
544 /* Compute checksum for the current function. We generate a CRC32. */
547 coverage_compute_lineno_checksum (void)
549 expanded_location xloc
550 = expand_location (DECL_SOURCE_LOCATION (current_function_decl
));
551 unsigned chksum
= xloc
.line
;
554 chksum
= coverage_checksum_string (chksum
, xloc
.file
);
555 chksum
= coverage_checksum_string
556 (chksum
, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (current_function_decl
)));
561 /* Compute profile ID. This is better to be unique in whole program. */
564 coverage_compute_profile_id (struct cgraph_node
*n
)
568 /* Externally visible symbols have unique name. */
569 if (TREE_PUBLIC (n
->decl
) || DECL_EXTERNAL (n
->decl
) || n
->unique_name
)
571 chksum
= coverage_checksum_string
572 (0, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n
->decl
)));
576 expanded_location xloc
577 = expand_location (DECL_SOURCE_LOCATION (n
->decl
));
578 bool use_name_only
= (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID
) == 0);
580 chksum
= (use_name_only
? 0 : xloc
.line
);
582 chksum
= coverage_checksum_string (chksum
, xloc
.file
);
583 chksum
= coverage_checksum_string
584 (chksum
, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n
->decl
)));
585 if (!use_name_only
&& first_global_object_name
)
586 chksum
= coverage_checksum_string
587 (chksum
, first_global_object_name
);
588 chksum
= coverage_checksum_string
589 (chksum
, aux_base_name
);
592 /* Non-negative integers are hopefully small enough to fit in all targets.
593 Gcov file formats wants non-zero function IDs. */
594 chksum
= chksum
& 0x7fffffff;
595 return chksum
+ (!chksum
);
598 /* Compute cfg checksum for the function FN given as argument.
599 The checksum is calculated carefully so that
600 source code changes that doesn't affect the control flow graph
601 won't change the checksum.
602 This is to make the profile data useable across source code change.
603 The downside of this is that the compiler may use potentially
604 wrong profile data - that the source code change has non-trivial impact
605 on the validity of profile data (e.g. the reversed condition)
606 but the compiler won't detect the change and use the wrong profile data. */
609 coverage_compute_cfg_checksum (struct function
*fn
)
612 unsigned chksum
= n_basic_blocks_for_fn (fn
);
614 FOR_EACH_BB_FN (bb
, fn
)
618 chksum
= crc32_byte (chksum
, bb
->index
);
619 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
621 chksum
= crc32_byte (chksum
, e
->dest
->index
);
628 /* Begin output to the notes file for the current function.
629 Writes the function header. Returns nonzero if data should be output. */
632 coverage_begin_function (unsigned lineno_checksum
, unsigned cfg_checksum
)
634 expanded_location xloc
;
635 unsigned long offset
;
637 /* We don't need to output .gcno file unless we're under -ftest-coverage
638 (e.g. -fprofile-arcs/generate/use don't need .gcno to work). */
639 if (no_coverage
|| !bbg_file_name
)
642 xloc
= expand_location (DECL_SOURCE_LOCATION (current_function_decl
));
644 /* Announce function */
645 offset
= gcov_write_tag (GCOV_TAG_FUNCTION
);
646 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID
))
647 gcov_write_unsigned (current_function_funcdef_no
+ 1);
650 gcc_assert (coverage_node_map_initialized_p ());
651 gcov_write_unsigned (
652 cgraph_node::get (current_function_decl
)->profile_id
);
655 gcov_write_unsigned (lineno_checksum
);
656 gcov_write_unsigned (cfg_checksum
);
657 gcov_write_string (IDENTIFIER_POINTER
658 (DECL_ASSEMBLER_NAME (current_function_decl
)));
659 gcov_write_unsigned (DECL_ARTIFICIAL (current_function_decl
)
660 && !DECL_FUNCTION_VERSIONED (current_function_decl
));
661 gcov_write_filename (xloc
.file
);
662 gcov_write_unsigned (xloc
.line
);
663 gcov_write_unsigned (xloc
.column
);
665 expanded_location endloc
= expand_location (cfun
->function_end_locus
);
667 /* Function can start in a single file and end in another one. */
668 gcov_write_unsigned (endloc
.file
== xloc
.file
? endloc
.line
: xloc
.line
);
669 gcov_write_length (offset
);
671 return !gcov_is_error ();
674 /* Finish coverage data for the current function. Verify no output
675 error has occurred. Save function coverage counts. */
678 coverage_end_function (unsigned lineno_checksum
, unsigned cfg_checksum
)
682 if (bbg_file_name
&& gcov_is_error ())
684 warning (0, "error writing %qs", bbg_file_name
);
685 unlink (bbg_file_name
);
686 bbg_file_name
= NULL
;
691 struct coverage_data
*item
= 0;
693 item
= ggc_alloc
<coverage_data
> ();
695 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID
))
696 item
->ident
= current_function_funcdef_no
+ 1;
699 gcc_assert (coverage_node_map_initialized_p ());
700 item
->ident
= cgraph_node::get (cfun
->decl
)->profile_id
;
703 item
->lineno_checksum
= lineno_checksum
;
704 item
->cfg_checksum
= cfg_checksum
;
706 item
->fn_decl
= current_function_decl
;
708 *functions_tail
= item
;
709 functions_tail
= &item
->next
;
711 for (i
= 0; i
!= GCOV_COUNTERS
; i
++)
713 tree var
= fn_v_ctrs
[i
];
716 item
->ctr_vars
[i
] = var
;
719 tree array_type
= build_index_type (size_int (fn_n_ctrs
[i
] - 1));
720 array_type
= build_array_type (get_gcov_type (), array_type
);
721 TREE_TYPE (var
) = array_type
;
722 DECL_SIZE (var
) = TYPE_SIZE (array_type
);
723 DECL_SIZE_UNIT (var
) = TYPE_SIZE_UNIT (array_type
);
724 varpool_node::finalize_decl (var
);
727 fn_b_ctrs
[i
] = fn_n_ctrs
[i
] = 0;
728 fn_v_ctrs
[i
] = NULL_TREE
;
730 prg_ctr_mask
|= fn_ctr_mask
;
735 /* Remove coverage file if opened. */
738 coverage_remove_note_file (void)
743 unlink (bbg_file_name
);
747 /* Build a coverage variable of TYPE for function FN_DECL. If COUNTER
748 >= 0 it is a counter array, otherwise it is the function structure. */
751 build_var (tree fn_decl
, tree type
, int counter
)
753 tree var
= build_decl (BUILTINS_LOCATION
, VAR_DECL
, NULL_TREE
, type
);
754 const char *fn_name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fn_decl
));
756 size_t fn_name_len
, len
;
758 fn_name
= targetm
.strip_name_encoding (fn_name
);
759 fn_name_len
= strlen (fn_name
);
760 buf
= XALLOCAVEC (char, fn_name_len
+ 8 + sizeof (int) * 3);
763 strcpy (buf
, "__gcov__");
765 sprintf (buf
, "__gcov%u_", counter
);
767 buf
[len
- 1] = symbol_table::symbol_suffix_separator ();
768 memcpy (buf
+ len
, fn_name
, fn_name_len
+ 1);
769 DECL_NAME (var
) = get_identifier (buf
);
770 TREE_STATIC (var
) = 1;
771 TREE_ADDRESSABLE (var
) = 1;
772 DECL_NONALIASED (var
) = 1;
773 SET_DECL_ALIGN (var
, TYPE_ALIGN (type
));
778 /* Creates the gcov_fn_info RECORD_TYPE. */
781 build_fn_info_type (tree type
, unsigned counters
, tree gcov_info_type
)
783 tree ctr_info
= lang_hooks
.types
.make_type (RECORD_TYPE
);
787 gcc_assert (counters
);
790 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
791 get_gcov_unsigned_t ());
794 /* ctr_info::values */
795 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
796 build_pointer_type (get_gcov_type ()));
797 DECL_CHAIN (field
) = fields
;
800 finish_builtin_struct (ctr_info
, "__gcov_ctr_info", fields
, NULL_TREE
);
803 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
804 build_pointer_type (build_qualified_type
805 (gcov_info_type
, TYPE_QUAL_CONST
)));
809 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
810 get_gcov_unsigned_t ());
811 DECL_CHAIN (field
) = fields
;
814 /* lineno_checksum */
815 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
816 get_gcov_unsigned_t ());
817 DECL_CHAIN (field
) = fields
;
821 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
822 get_gcov_unsigned_t ());
823 DECL_CHAIN (field
) = fields
;
826 array_type
= build_index_type (size_int (counters
- 1));
827 array_type
= build_array_type (ctr_info
, array_type
);
830 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
, array_type
);
831 DECL_CHAIN (field
) = fields
;
834 finish_builtin_struct (type
, "__gcov_fn_info", fields
, NULL_TREE
);
837 /* Returns a CONSTRUCTOR for a gcov_fn_info. DATA is
838 the coverage data for the function and TYPE is the gcov_fn_info
839 RECORD_TYPE. KEY is the object file key. */
842 build_fn_info (const struct coverage_data
*data
, tree type
, tree key
)
844 tree fields
= TYPE_FIELDS (type
);
847 vec
<constructor_elt
, va_gc
> *v1
= NULL
;
848 vec
<constructor_elt
, va_gc
> *v2
= NULL
;
851 CONSTRUCTOR_APPEND_ELT (v1
, fields
,
852 build1 (ADDR_EXPR
, TREE_TYPE (fields
), key
));
853 fields
= DECL_CHAIN (fields
);
856 CONSTRUCTOR_APPEND_ELT (v1
, fields
,
857 build_int_cstu (get_gcov_unsigned_t (),
859 fields
= DECL_CHAIN (fields
);
861 /* lineno_checksum */
862 CONSTRUCTOR_APPEND_ELT (v1
, fields
,
863 build_int_cstu (get_gcov_unsigned_t (),
864 data
->lineno_checksum
));
865 fields
= DECL_CHAIN (fields
);
868 CONSTRUCTOR_APPEND_ELT (v1
, fields
,
869 build_int_cstu (get_gcov_unsigned_t (),
870 data
->cfg_checksum
));
871 fields
= DECL_CHAIN (fields
);
874 ctr_type
= TREE_TYPE (TREE_TYPE (fields
));
875 for (ix
= 0; ix
!= GCOV_COUNTERS
; ix
++)
876 if (prg_ctr_mask
& (1 << ix
))
878 vec
<constructor_elt
, va_gc
> *ctr
= NULL
;
879 tree var
= data
->ctr_vars
[ix
];
884 = tree_to_shwi (TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (var
))))
887 CONSTRUCTOR_APPEND_ELT (ctr
, TYPE_FIELDS (ctr_type
),
888 build_int_cstu (get_gcov_unsigned_t (),
892 CONSTRUCTOR_APPEND_ELT (ctr
, DECL_CHAIN (TYPE_FIELDS (ctr_type
)),
893 build_fold_addr_expr (var
));
895 CONSTRUCTOR_APPEND_ELT (v2
, NULL
, build_constructor (ctr_type
, ctr
));
898 CONSTRUCTOR_APPEND_ELT (v1
, fields
,
899 build_constructor (TREE_TYPE (fields
), v2
));
901 return build_constructor (type
, v1
);
904 /* Create gcov_info struct. TYPE is the incomplete RECORD_TYPE to be
905 completed, and FN_INFO_PTR_TYPE is a pointer to the function info type. */
908 build_info_type (tree type
, tree fn_info_ptr_type
)
910 tree field
, fields
= NULL_TREE
;
914 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
915 get_gcov_unsigned_t ());
916 DECL_CHAIN (field
) = fields
;
920 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
921 build_pointer_type (build_qualified_type
922 (type
, TYPE_QUAL_CONST
)));
923 DECL_CHAIN (field
) = fields
;
927 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
928 get_gcov_unsigned_t ());
929 DECL_CHAIN (field
) = fields
;
933 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
934 build_pointer_type (build_qualified_type
935 (char_type_node
, TYPE_QUAL_CONST
)));
936 DECL_CHAIN (field
) = fields
;
941 = build_function_type_list (void_type_node
,
942 build_pointer_type (get_gcov_type ()),
943 get_gcov_unsigned_t (), NULL_TREE
);
945 = build_array_type (build_pointer_type (merge_fn_type
),
946 build_index_type (size_int (GCOV_COUNTERS
- 1)));
947 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
949 DECL_CHAIN (field
) = fields
;
953 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
954 get_gcov_unsigned_t ());
955 DECL_CHAIN (field
) = fields
;
958 /* function_info pointer pointer */
959 fn_info_ptr_type
= build_pointer_type
960 (build_qualified_type (fn_info_ptr_type
, TYPE_QUAL_CONST
));
961 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
963 DECL_CHAIN (field
) = fields
;
966 finish_builtin_struct (type
, "__gcov_info", fields
, NULL_TREE
);
969 /* Returns a CONSTRUCTOR for the gcov_info object. INFO_TYPE is the
970 gcov_info structure type, FN_ARY is the array of pointers to
971 function info objects. */
974 build_info (tree info_type
, tree fn_ary
)
976 tree info_fields
= TYPE_FIELDS (info_type
);
977 tree merge_fn_type
, n_funcs
;
979 tree filename_string
;
980 int da_file_name_len
;
981 vec
<constructor_elt
, va_gc
> *v1
= NULL
;
982 vec
<constructor_elt
, va_gc
> *v2
= NULL
;
985 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
,
986 build_int_cstu (TREE_TYPE (info_fields
),
988 info_fields
= DECL_CHAIN (info_fields
);
991 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
, null_pointer_node
);
992 info_fields
= DECL_CHAIN (info_fields
);
995 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
,
996 build_int_cstu (TREE_TYPE (info_fields
),
998 info_fields
= DECL_CHAIN (info_fields
);
1001 da_file_name_len
= strlen (da_file_name
);
1002 filename_string
= build_string (da_file_name_len
+ 1, da_file_name
);
1003 TREE_TYPE (filename_string
) = build_array_type
1004 (char_type_node
, build_index_type (size_int (da_file_name_len
)));
1005 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
,
1006 build1 (ADDR_EXPR
, TREE_TYPE (info_fields
),
1008 info_fields
= DECL_CHAIN (info_fields
);
1010 /* merge fn array -- NULL slots indicate unmeasured counters */
1011 merge_fn_type
= TREE_TYPE (TREE_TYPE (info_fields
));
1012 for (ix
= 0; ix
!= GCOV_COUNTERS
; ix
++)
1014 tree ptr
= null_pointer_node
;
1016 if ((1u << ix
) & prg_ctr_mask
)
1018 tree merge_fn
= build_decl (BUILTINS_LOCATION
,
1020 get_identifier (ctr_merge_functions
[ix
]),
1021 TREE_TYPE (merge_fn_type
));
1022 DECL_EXTERNAL (merge_fn
) = 1;
1023 TREE_PUBLIC (merge_fn
) = 1;
1024 DECL_ARTIFICIAL (merge_fn
) = 1;
1025 TREE_NOTHROW (merge_fn
) = 1;
1026 /* Initialize assembler name so we can stream out. */
1027 DECL_ASSEMBLER_NAME (merge_fn
);
1028 ptr
= build1 (ADDR_EXPR
, merge_fn_type
, merge_fn
);
1030 CONSTRUCTOR_APPEND_ELT (v2
, NULL
, ptr
);
1032 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
,
1033 build_constructor (TREE_TYPE (info_fields
), v2
));
1034 info_fields
= DECL_CHAIN (info_fields
);
1037 n_funcs
= TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (fn_ary
)));
1038 n_funcs
= fold_build2 (PLUS_EXPR
, TREE_TYPE (info_fields
),
1039 n_funcs
, size_one_node
);
1040 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
, n_funcs
);
1041 info_fields
= DECL_CHAIN (info_fields
);
1044 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
,
1045 build1 (ADDR_EXPR
, TREE_TYPE (info_fields
), fn_ary
));
1046 info_fields
= DECL_CHAIN (info_fields
);
1048 gcc_assert (!info_fields
);
1049 return build_constructor (info_type
, v1
);
1052 /* Generate the constructor function to call __gcov_init. */
1055 build_init_ctor (tree gcov_info_type
)
1057 tree ctor
, stmt
, init_fn
;
1059 /* Build a decl for __gcov_init. */
1060 init_fn
= build_pointer_type (gcov_info_type
);
1061 init_fn
= build_function_type_list (void_type_node
, init_fn
, NULL
);
1062 init_fn
= build_decl (BUILTINS_LOCATION
, FUNCTION_DECL
,
1063 get_identifier ("__gcov_init"), init_fn
);
1064 TREE_PUBLIC (init_fn
) = 1;
1065 DECL_EXTERNAL (init_fn
) = 1;
1066 DECL_ASSEMBLER_NAME (init_fn
);
1068 /* Generate a call to __gcov_init(&gcov_info). */
1070 stmt
= build_fold_addr_expr (gcov_info_var
);
1071 stmt
= build_call_expr (init_fn
, 1, stmt
);
1072 append_to_statement_list (stmt
, &ctor
);
1074 /* Generate a constructor to run it. */
1075 int priority
= SUPPORTS_INIT_PRIORITY
1076 ? MAX_RESERVED_INIT_PRIORITY
: DEFAULT_INIT_PRIORITY
;
1077 cgraph_build_static_cdtor ('I', ctor
, priority
);
1080 /* Generate the destructor function to call __gcov_exit. */
1083 build_gcov_exit_decl (void)
1085 tree init_fn
= build_function_type_list (void_type_node
, void_type_node
,
1087 init_fn
= build_decl (BUILTINS_LOCATION
, FUNCTION_DECL
,
1088 get_identifier ("__gcov_exit"), init_fn
);
1089 TREE_PUBLIC (init_fn
) = 1;
1090 DECL_EXTERNAL (init_fn
) = 1;
1091 DECL_ASSEMBLER_NAME (init_fn
);
1093 /* Generate a call to __gcov_exit (). */
1095 tree stmt
= build_call_expr (init_fn
, 0);
1096 append_to_statement_list (stmt
, &dtor
);
1098 /* Generate a destructor to run it. */
1099 int priority
= SUPPORTS_INIT_PRIORITY
1100 ? MAX_RESERVED_INIT_PRIORITY
: DEFAULT_INIT_PRIORITY
;
1102 cgraph_build_static_cdtor ('D', dtor
, priority
);
1105 /* Create the gcov_info types and object. Generate the constructor
1106 function to call __gcov_init. Does not generate the initializer
1107 for the object. Returns TRUE if coverage data is being emitted. */
1110 coverage_obj_init (void)
1112 tree gcov_info_type
;
1113 unsigned n_counters
= 0;
1115 struct coverage_data
*fn
;
1116 struct coverage_data
**fn_prev
;
1119 no_coverage
= 1; /* Disable any further coverage. */
1124 if (symtab
->dump_file
)
1125 fprintf (symtab
->dump_file
, "Using data file %s\n", da_file_name
);
1127 /* Prune functions. */
1128 for (fn_prev
= &functions_head
; (fn
= *fn_prev
);)
1129 if (DECL_STRUCT_FUNCTION (fn
->fn_decl
))
1130 fn_prev
= &fn
->next
;
1132 /* The function is not being emitted, remove from list. */
1133 *fn_prev
= fn
->next
;
1135 if (functions_head
== NULL
)
1138 for (ix
= 0; ix
!= GCOV_COUNTERS
; ix
++)
1139 if ((1u << ix
) & prg_ctr_mask
)
1142 /* Build the info and fn_info types. These are mutually recursive. */
1143 gcov_info_type
= lang_hooks
.types
.make_type (RECORD_TYPE
);
1144 gcov_fn_info_type
= lang_hooks
.types
.make_type (RECORD_TYPE
);
1145 build_fn_info_type (gcov_fn_info_type
, n_counters
, gcov_info_type
);
1146 gcov_info_type
= lang_hooks
.types
.make_type (RECORD_TYPE
);
1147 gcov_fn_info_ptr_type
= build_pointer_type
1148 (build_qualified_type (gcov_fn_info_type
, TYPE_QUAL_CONST
));
1149 build_info_type (gcov_info_type
, gcov_fn_info_ptr_type
);
1151 /* Build the gcov info var, this is referred to in its own
1153 gcov_info_var
= build_decl (BUILTINS_LOCATION
,
1154 VAR_DECL
, NULL_TREE
, gcov_info_type
);
1155 TREE_STATIC (gcov_info_var
) = 1;
1156 ASM_GENERATE_INTERNAL_LABEL (name_buf
, "LPBX", 0);
1157 DECL_NAME (gcov_info_var
) = get_identifier (name_buf
);
1159 build_init_ctor (gcov_info_type
);
1160 build_gcov_exit_decl ();
1165 /* Generate the coverage function info for FN and DATA. Append a
1166 pointer to that object to CTOR and return the appended CTOR. */
1168 static vec
<constructor_elt
, va_gc
> *
1169 coverage_obj_fn (vec
<constructor_elt
, va_gc
> *ctor
, tree fn
,
1170 struct coverage_data
const *data
)
1172 tree init
= build_fn_info (data
, gcov_fn_info_type
, gcov_info_var
);
1173 tree var
= build_var (fn
, gcov_fn_info_type
, -1);
1175 DECL_INITIAL (var
) = init
;
1176 varpool_node::finalize_decl (var
);
1178 CONSTRUCTOR_APPEND_ELT (ctor
, NULL
,
1179 build1 (ADDR_EXPR
, gcov_fn_info_ptr_type
, var
));
1183 /* Finalize the coverage data. Generates the array of pointers to
1184 function objects from CTOR. Generate the gcov_info initializer. */
1187 coverage_obj_finish (vec
<constructor_elt
, va_gc
> *ctor
)
1189 unsigned n_functions
= vec_safe_length (ctor
);
1190 tree fn_info_ary_type
= build_array_type
1191 (build_qualified_type (gcov_fn_info_ptr_type
, TYPE_QUAL_CONST
),
1192 build_index_type (size_int (n_functions
- 1)));
1193 tree fn_info_ary
= build_decl (BUILTINS_LOCATION
, VAR_DECL
, NULL_TREE
,
1197 TREE_STATIC (fn_info_ary
) = 1;
1198 ASM_GENERATE_INTERNAL_LABEL (name_buf
, "LPBX", 1);
1199 DECL_NAME (fn_info_ary
) = get_identifier (name_buf
);
1200 DECL_INITIAL (fn_info_ary
) = build_constructor (fn_info_ary_type
, ctor
);
1201 varpool_node::finalize_decl (fn_info_ary
);
1203 DECL_INITIAL (gcov_info_var
)
1204 = build_info (TREE_TYPE (gcov_info_var
), fn_info_ary
);
1205 varpool_node::finalize_decl (gcov_info_var
);
1208 /* Perform file-level initialization. Read in data file, generate name
1212 coverage_init (const char *filename
)
1214 int len
= strlen (filename
);
1217 /* Since coverage_init is invoked very early, before the pass
1218 manager, we need to set up the dumping explicitly. This is
1219 similar to the handling in finish_optimization_passes. */
1220 int profile_pass_num
=
1221 g
->get_passes ()->get_pass_profile ()->static_pass_number
;
1222 g
->get_dumps ()->dump_start (profile_pass_num
, NULL
);
1224 if (!IS_ABSOLUTE_PATH (filename
))
1226 /* When a profile_data_prefix is provided, then mangle full path
1227 of filename in order to prevent file path clashing. */
1228 if (profile_data_prefix
)
1230 #if HAVE_DOS_BASED_FILE_SYSTEM
1231 const char *separator
= "\\";
1233 const char *separator
= "/";
1235 filename
= concat (getpwd (), separator
, filename
, NULL
);
1236 filename
= mangle_path (filename
);
1237 len
= strlen (filename
);
1240 profile_data_prefix
= getpwd ();
1243 if (profile_data_prefix
)
1244 prefix_len
= strlen (profile_data_prefix
);
1246 /* Name of da file. */
1247 da_file_name
= XNEWVEC (char, len
+ strlen (GCOV_DATA_SUFFIX
)
1250 if (profile_data_prefix
)
1252 memcpy (da_file_name
, profile_data_prefix
, prefix_len
);
1253 da_file_name
[prefix_len
++] = '/';
1255 memcpy (da_file_name
+ prefix_len
, filename
, len
);
1256 strcpy (da_file_name
+ prefix_len
+ len
, GCOV_DATA_SUFFIX
);
1258 bbg_file_stamp
= local_tick
;
1260 if (flag_auto_profile
)
1261 read_autofdo_file ();
1262 else if (flag_branch_probabilities
)
1263 read_counts_file ();
1265 /* Name of bbg file. */
1266 if (flag_test_coverage
&& !flag_compare_debug
)
1268 bbg_file_name
= XNEWVEC (char, len
+ strlen (GCOV_NOTE_SUFFIX
) + 1);
1269 memcpy (bbg_file_name
, filename
, len
);
1270 strcpy (bbg_file_name
+ len
, GCOV_NOTE_SUFFIX
);
1272 if (!gcov_open (bbg_file_name
, -1))
1274 error ("cannot open %s", bbg_file_name
);
1275 bbg_file_name
= NULL
;
1279 gcov_write_unsigned (GCOV_NOTE_MAGIC
);
1280 gcov_write_unsigned (GCOV_VERSION
);
1281 gcov_write_unsigned (bbg_file_stamp
);
1282 gcov_write_string (getpwd ());
1284 /* Do not support has_unexecuted_blocks for Ada. */
1285 gcov_write_unsigned (strcmp (lang_hooks
.name
, "GNU Ada") != 0);
1289 g
->get_dumps ()->dump_finish (profile_pass_num
);
1292 /* Performs file-level cleanup. Close notes file, generate coverage
1293 variables and constructor. */
1296 coverage_finish (void)
1298 if (bbg_file_name
&& gcov_close ())
1299 unlink (bbg_file_name
);
1301 if (!flag_branch_probabilities
&& flag_test_coverage
1302 && (!local_tick
|| local_tick
== (unsigned)-1))
1303 /* Only remove the da file, if we're emitting coverage code and
1304 cannot uniquely stamp it. If we can stamp it, libgcov will DTRT. */
1305 unlink (da_file_name
);
1307 if (coverage_obj_init ())
1309 vec
<constructor_elt
, va_gc
> *fn_ctor
= NULL
;
1310 struct coverage_data
*fn
;
1312 for (fn
= functions_head
; fn
; fn
= fn
->next
)
1313 fn_ctor
= coverage_obj_fn (fn_ctor
, fn
->fn_decl
, fn
);
1314 coverage_obj_finish (fn_ctor
);
1317 XDELETEVEC (da_file_name
);
1318 da_file_name
= NULL
;
1321 #include "gt-coverage.h"