1 /* Read and write coverage files, and associated functionality.
2 Copyright (C) 1990-2021 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"
50 #include "auto-profile.h"
52 #include "diagnostic.h"
57 struct GTY((chain_next ("%h.next"))) coverage_data
59 struct coverage_data
*next
; /* next function */
60 unsigned ident
; /* function ident */
61 unsigned lineno_checksum
; /* function lineno checksum */
62 unsigned cfg_checksum
; /* function cfg checksum */
63 tree fn_decl
; /* the function decl */
64 tree ctr_vars
[GCOV_COUNTERS
]; /* counter variables. */
67 /* Counts information for a function. */
68 struct counts_entry
: pointer_hash
<counts_entry
>
75 unsigned lineno_checksum
;
76 unsigned cfg_checksum
;
80 /* hash_table support. */
81 static inline hashval_t
hash (const counts_entry
*);
82 static int equal (const counts_entry
*, const counts_entry
*);
83 static void remove (counts_entry
*);
86 static GTY(()) struct coverage_data
*functions_head
= 0;
87 static struct coverage_data
**functions_tail
= &functions_head
;
88 static unsigned no_coverage
= 0;
90 /* Cumulative counter information for whole program. */
91 static unsigned prg_ctr_mask
; /* Mask of counter types generated. */
93 /* Counter information for current function. */
94 static unsigned fn_ctr_mask
; /* Mask of counters used. */
95 static GTY(()) tree fn_v_ctrs
[GCOV_COUNTERS
]; /* counter variables. */
96 static unsigned fn_n_ctrs
[GCOV_COUNTERS
]; /* Counters allocated. */
97 static unsigned fn_b_ctrs
[GCOV_COUNTERS
]; /* Allocation base. */
99 /* Coverage info VAR_DECL and function info type nodes. */
100 static GTY(()) tree gcov_info_var
;
101 static GTY(()) tree gcov_fn_info_type
;
102 static GTY(()) tree gcov_fn_info_ptr_type
;
104 /* Name of the notes (gcno) output file. The "bbg" prefix is for
105 historical reasons, when the notes file contained only the
106 basic block graph notes.
107 If this is NULL we're not writing to the notes file. */
108 static char *bbg_file_name
;
110 /* File stamp for notes file. */
111 static unsigned bbg_file_stamp
;
113 /* Name of the count data (gcda) file. */
114 static char *da_file_name
;
116 /* The names of merge functions for counters. */
117 #define STR(str) #str
118 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) STR(__gcov_merge ## FN_TYPE),
119 static const char *const ctr_merge_functions
[GCOV_COUNTERS
] = {
120 #include "gcov-counter.def"
122 #undef DEF_GCOV_COUNTER
125 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) NAME,
126 static const char *const ctr_names
[GCOV_COUNTERS
] = {
127 #include "gcov-counter.def"
129 #undef DEF_GCOV_COUNTER
131 /* Forward declarations. */
132 static tree
build_var (tree
, tree
, int);
134 /* Return the type node for gcov_type. */
140 = smallest_int_mode_for_size (targetm
.gcov_type_size ());
141 return lang_hooks
.types
.type_for_mode (mode
, false);
144 /* Return the type node for gcov_unsigned_t. */
147 get_gcov_unsigned_t (void)
149 scalar_int_mode mode
= smallest_int_mode_for_size (32);
150 return lang_hooks
.types
.type_for_mode (mode
, true);
154 counts_entry::hash (const counts_entry
*entry
)
156 return entry
->ident
* GCOV_COUNTERS
+ entry
->ctr
;
160 counts_entry::equal (const counts_entry
*entry1
, const counts_entry
*entry2
)
162 return entry1
->ident
== entry2
->ident
&& entry1
->ctr
== entry2
->ctr
;
166 counts_entry::remove (counts_entry
*entry
)
168 free (entry
->counts
);
172 /* Hash table of count data. */
173 static hash_table
<counts_entry
> *counts_hash
;
175 /* Read in the counts file, if available. */
178 read_counts_file (void)
180 gcov_unsigned_t fn_ident
= 0;
183 unsigned lineno_checksum
= 0;
184 unsigned cfg_checksum
= 0;
186 if (!gcov_open (da_file_name
, 1))
189 if (!gcov_magic (gcov_read_unsigned (), GCOV_DATA_MAGIC
))
191 warning (0, "%qs is not a gcov data file", da_file_name
);
195 else if ((tag
= gcov_read_unsigned ()) != GCOV_VERSION
)
199 GCOV_UNSIGNED2STRING (v
, tag
);
200 GCOV_UNSIGNED2STRING (e
, GCOV_VERSION
);
202 warning (0, "%qs is version %q.*s, expected version %q.*s",
203 da_file_name
, 4, v
, 4, e
);
208 /* Read the stamp, used for creating a generation count. */
209 tag
= gcov_read_unsigned ();
210 bbg_file_stamp
= crc32_unsigned (bbg_file_stamp
, tag
);
213 gcov_read_unsigned ();
215 counts_hash
= new hash_table
<counts_entry
> (10);
216 while ((tag
= gcov_read_unsigned ()))
218 gcov_unsigned_t length
;
219 gcov_position_t offset
;
221 length
= gcov_read_unsigned ();
222 offset
= gcov_position ();
223 if (tag
== GCOV_TAG_FUNCTION
)
227 fn_ident
= gcov_read_unsigned ();
228 lineno_checksum
= gcov_read_unsigned ();
229 cfg_checksum
= gcov_read_unsigned ();
232 fn_ident
= lineno_checksum
= cfg_checksum
= 0;
234 else if (tag
== GCOV_TAG_OBJECT_SUMMARY
)
236 profile_info
= XCNEW (gcov_summary
);
237 profile_info
->runs
= gcov_read_unsigned ();
238 profile_info
->sum_max
= gcov_read_unsigned ();
240 else if (GCOV_TAG_IS_COUNTER (tag
) && fn_ident
)
242 counts_entry
**slot
, *entry
, elt
;
243 int read_length
= (int)length
;
244 length
= read_length
> 0 ? read_length
: 0;
245 unsigned n_counts
= GCOV_TAG_COUNTER_NUM (abs (read_length
));
248 elt
.ident
= fn_ident
;
249 elt
.ctr
= GCOV_COUNTER_FOR_TAG (tag
);
251 slot
= counts_hash
->find_slot (&elt
, INSERT
);
255 *slot
= entry
= XCNEW (counts_entry
);
256 entry
->ident
= fn_ident
;
257 entry
->ctr
= elt
.ctr
;
258 entry
->lineno_checksum
= lineno_checksum
;
259 entry
->cfg_checksum
= cfg_checksum
;
260 entry
->counts
= XCNEWVEC (gcov_type
, n_counts
);
261 entry
->n_counts
= n_counts
;
263 else if (entry
->lineno_checksum
!= lineno_checksum
264 || entry
->cfg_checksum
!= cfg_checksum
)
266 error ("profile data for function %u is corrupted", fn_ident
);
267 error ("checksum is (%x,%x) instead of (%x,%x)",
268 entry
->lineno_checksum
, entry
->cfg_checksum
,
269 lineno_checksum
, cfg_checksum
);
275 for (ix
= 0; ix
!= n_counts
; ix
++)
276 entry
->counts
[ix
] = gcov_read_counter ();
278 gcov_sync (offset
, length
);
279 if ((is_error
= gcov_is_error ()))
282 ? G_("%qs has overflowed")
283 : G_("%qs is corrupted"),
294 /* Returns the counters for a particular tag. */
297 get_coverage_counts (unsigned counter
, unsigned cfg_checksum
,
298 unsigned lineno_checksum
, unsigned int n_counts
)
300 counts_entry
*entry
, elt
;
302 /* No hash table, no counts. */
305 static int warned
= 0;
309 warning (OPT_Wmissing_profile
,
310 "%qs profile count data file not found",
312 if (dump_enabled_p ())
314 dump_user_location_t loc
315 = dump_user_location_t::from_location_t (input_location
);
316 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, loc
,
317 "file %s not found, %s\n", da_file_name
,
318 (flag_guess_branch_prob
319 ? "execution counts estimated"
320 : "execution counts assumed to be zero"));
325 if (param_profile_func_internal_id
)
326 elt
.ident
= current_function_funcdef_no
+ 1;
329 gcc_assert (coverage_node_map_initialized_p ());
330 elt
.ident
= cgraph_node::get (current_function_decl
)->profile_id
;
333 entry
= counts_hash
->find (&elt
);
336 if (counter
== GCOV_COUNTER_ARCS
)
337 warning_at (DECL_SOURCE_LOCATION (current_function_decl
),
338 OPT_Wmissing_profile
,
339 "profile for function %qD not found in profile data",
340 current_function_decl
);
341 /* The function was not emitted, or is weak and not chosen in the
342 final executable. Silently fail, because there's nothing we
347 if (entry
->cfg_checksum
!= cfg_checksum
348 || (counter
!= GCOV_COUNTER_V_INDIR
349 && counter
!= GCOV_COUNTER_V_TOPN
350 && entry
->n_counts
!= n_counts
))
352 static int warned
= 0;
353 bool warning_printed
= false;
355 if (entry
->n_counts
!= n_counts
)
357 warning_at (DECL_SOURCE_LOCATION (current_function_decl
),
358 OPT_Wcoverage_mismatch
,
359 "number of counters in profile data for function %qD "
361 "its profile data (counter %qs, expected %i and have %i)",
362 current_function_decl
,
363 ctr_names
[counter
], entry
->n_counts
, n_counts
);
366 warning_at (DECL_SOURCE_LOCATION (current_function_decl
),
367 OPT_Wcoverage_mismatch
,
368 "the control flow of function %qD does not match "
369 "its profile data (counter %qs)", current_function_decl
,
371 if (warning_printed
&& dump_enabled_p ())
373 dump_user_location_t loc
374 = dump_user_location_t::from_function_decl (current_function_decl
);
375 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, loc
,
376 "use -Wno-error=coverage-mismatch to tolerate "
377 "the mismatch but performance may drop if the "
378 "function is hot\n");
383 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, loc
,
384 "coverage mismatch ignored\n");
385 dump_printf (MSG_MISSED_OPTIMIZATION
,
386 flag_guess_branch_prob
387 ? G_("execution counts estimated\n")
388 : G_("execution counts assumed to be zero\n"));
389 if (!flag_guess_branch_prob
)
390 dump_printf (MSG_MISSED_OPTIMIZATION
,
391 "this can result in poorly optimized code\n");
397 else if (entry
->lineno_checksum
!= lineno_checksum
)
399 warning_at (DECL_SOURCE_LOCATION (current_function_decl
),
400 OPT_Wcoverage_mismatch
,
401 "source locations for function %qD have changed,"
402 " the profile data may be out of date",
403 current_function_decl
);
406 return entry
->counts
;
409 /* Allocate NUM counters of type COUNTER. Returns nonzero if the
410 allocation succeeded. */
413 coverage_counter_alloc (unsigned counter
, unsigned num
)
421 if (!fn_v_ctrs
[counter
])
423 tree array_type
= build_array_type (get_gcov_type (), NULL_TREE
);
426 = build_var (current_function_decl
, array_type
, counter
);
429 fn_b_ctrs
[counter
] = fn_n_ctrs
[counter
];
430 fn_n_ctrs
[counter
] += num
;
432 fn_ctr_mask
|= 1 << counter
;
436 /* Generate a tree to access COUNTER NO. */
439 tree_coverage_counter_ref (unsigned counter
, unsigned no
)
441 tree gcov_type_node
= get_gcov_type ();
443 gcc_assert (no
< fn_n_ctrs
[counter
] - fn_b_ctrs
[counter
]);
445 no
+= fn_b_ctrs
[counter
];
447 /* "no" here is an array index, scaled to bytes later. */
448 return build4 (ARRAY_REF
, gcov_type_node
, fn_v_ctrs
[counter
],
449 build_int_cst (integer_type_node
, no
), NULL
, NULL
);
452 /* Generate a tree to access the address of COUNTER NO. */
455 tree_coverage_counter_addr (unsigned counter
, unsigned no
)
457 tree gcov_type_node
= get_gcov_type ();
459 gcc_assert (no
< fn_n_ctrs
[counter
] - fn_b_ctrs
[counter
]);
460 no
+= fn_b_ctrs
[counter
];
462 /* "no" here is an array index, scaled to bytes later. */
463 return build_fold_addr_expr (build4 (ARRAY_REF
, gcov_type_node
,
465 build_int_cst (integer_type_node
, no
),
470 /* Generate a checksum for a string. CHKSUM is the current
474 coverage_checksum_string (unsigned chksum
, const char *string
)
479 /* Look for everything that looks if it were produced by
480 get_file_function_name and zero out the second part
481 that may result from flag_random_seed. This is not critical
482 as the checksums are used only for sanity checking. */
483 for (i
= 0; string
[i
]; i
++)
486 if (startswith (string
+ i
, "_GLOBAL__N_"))
488 if (startswith (string
+ i
, "_GLOBAL__"))
491 /* C++ namespaces do have scheme:
492 _GLOBAL__N_<filename>_<wrongmagicnumber>_<magicnumber>functionname
493 since filename might contain extra underscores there seems
494 to be no better chance then walk all possible offsets looking
498 for (i
= i
+ offset
; string
[i
]; i
++)
503 for (y
= 1; y
< 9; y
++)
504 if (!(string
[i
+ y
] >= '0' && string
[i
+ y
] <= '9')
505 && !(string
[i
+ y
] >= 'A' && string
[i
+ y
] <= 'F'))
507 if (y
!= 9 || string
[i
+ 9] != '_')
509 for (y
= 10; y
< 18; y
++)
510 if (!(string
[i
+ y
] >= '0' && string
[i
+ y
] <= '9')
511 && !(string
[i
+ y
] >= 'A' && string
[i
+ y
] <= 'F'))
516 string
= dup
= xstrdup (string
);
517 for (y
= 10; y
< 18; y
++)
524 chksum
= crc32_string (chksum
, string
);
530 /* Compute checksum for the current function. We generate a CRC32. */
533 coverage_compute_lineno_checksum (void)
535 expanded_location xloc
536 = expand_location (DECL_SOURCE_LOCATION (current_function_decl
));
537 unsigned chksum
= xloc
.line
;
540 chksum
= coverage_checksum_string (chksum
, xloc
.file
);
541 chksum
= coverage_checksum_string
542 (chksum
, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (current_function_decl
)));
547 /* Compute profile ID. This is better to be unique in whole program. */
550 coverage_compute_profile_id (struct cgraph_node
*n
)
554 /* Externally visible symbols have unique name. */
555 if (TREE_PUBLIC (n
->decl
) || DECL_EXTERNAL (n
->decl
) || n
->unique_name
)
557 chksum
= coverage_checksum_string
558 (0, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n
->decl
)));
562 expanded_location xloc
563 = expand_location (DECL_SOURCE_LOCATION (n
->decl
));
564 bool use_name_only
= (param_profile_func_internal_id
== 0);
566 chksum
= (use_name_only
? 0 : xloc
.line
);
568 chksum
= coverage_checksum_string (chksum
, xloc
.file
);
569 chksum
= coverage_checksum_string
570 (chksum
, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n
->decl
)));
571 if (!use_name_only
&& first_global_object_name
)
572 chksum
= coverage_checksum_string
573 (chksum
, first_global_object_name
);
574 char *base_name
= xstrdup (aux_base_name
);
575 if (endswith (base_name
, ".gk"))
576 base_name
[strlen (base_name
) - 3] = '\0';
577 chksum
= coverage_checksum_string (chksum
, base_name
);
581 /* Non-negative integers are hopefully small enough to fit in all targets.
582 Gcov file formats wants non-zero function IDs. */
583 chksum
= chksum
& 0x7fffffff;
584 return chksum
+ (!chksum
);
587 /* Compute cfg checksum for the function FN given as argument.
588 The checksum is calculated carefully so that
589 source code changes that doesn't affect the control flow graph
590 won't change the checksum.
591 This is to make the profile data useable across source code change.
592 The downside of this is that the compiler may use potentially
593 wrong profile data - that the source code change has non-trivial impact
594 on the validity of profile data (e.g. the reversed condition)
595 but the compiler won't detect the change and use the wrong profile data. */
598 coverage_compute_cfg_checksum (struct function
*fn
)
601 unsigned chksum
= n_basic_blocks_for_fn (fn
);
603 FOR_EACH_BB_FN (bb
, fn
)
607 chksum
= crc32_byte (chksum
, bb
->index
);
608 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
610 chksum
= crc32_byte (chksum
, e
->dest
->index
);
617 /* Begin output to the notes file for the current function.
618 Writes the function header. Returns nonzero if data should be output. */
621 coverage_begin_function (unsigned lineno_checksum
, unsigned cfg_checksum
)
623 /* We don't need to output .gcno file unless we're under -ftest-coverage
624 (e.g. -fprofile-arcs/generate/use don't need .gcno to work). */
625 if (no_coverage
|| !bbg_file_name
)
628 expanded_location startloc
629 = expand_location (DECL_SOURCE_LOCATION (current_function_decl
));
631 /* Announce function */
632 unsigned long offset
= gcov_write_tag (GCOV_TAG_FUNCTION
);
633 if (param_profile_func_internal_id
)
634 gcov_write_unsigned (current_function_funcdef_no
+ 1);
637 gcc_assert (coverage_node_map_initialized_p ());
638 gcov_write_unsigned (
639 cgraph_node::get (current_function_decl
)->profile_id
);
642 gcov_write_unsigned (lineno_checksum
);
643 gcov_write_unsigned (cfg_checksum
);
644 gcov_write_string (IDENTIFIER_POINTER
645 (DECL_ASSEMBLER_NAME (current_function_decl
)));
646 gcov_write_unsigned (DECL_ARTIFICIAL (current_function_decl
)
647 && !DECL_FUNCTION_VERSIONED (current_function_decl
)
648 && !DECL_LAMBDA_FUNCTION_P (current_function_decl
));
649 gcov_write_filename (startloc
.file
);
650 gcov_write_unsigned (startloc
.line
);
651 gcov_write_unsigned (startloc
.column
);
653 expanded_location endloc
= expand_location (cfun
->function_end_locus
);
655 /* Function can start in a single file and end in another one. */
657 = endloc
.file
== startloc
.file
? endloc
.line
: startloc
.line
;
659 = endloc
.file
== startloc
.file
? endloc
.column
: startloc
.column
;
661 if (startloc
.line
> end_line
)
663 warning_at (DECL_SOURCE_LOCATION (current_function_decl
),
664 OPT_Wcoverage_invalid_line_number
,
665 "function starts on a higher line number than it ends");
666 end_line
= startloc
.line
;
667 end_column
= startloc
.column
;
670 gcov_write_unsigned (end_line
);
671 gcov_write_unsigned (end_column
);
672 gcov_write_length (offset
);
674 return !gcov_is_error ();
677 /* Finish coverage data for the current function. Verify no output
678 error has occurred. Save function coverage counts. */
681 coverage_end_function (unsigned lineno_checksum
, unsigned cfg_checksum
)
685 if (bbg_file_name
&& gcov_is_error ())
687 warning (0, "error writing %qs", bbg_file_name
);
688 unlink (bbg_file_name
);
689 bbg_file_name
= NULL
;
694 struct coverage_data
*item
= 0;
696 item
= ggc_alloc
<coverage_data
> ();
698 if (param_profile_func_internal_id
)
699 item
->ident
= current_function_funcdef_no
+ 1;
702 gcc_assert (coverage_node_map_initialized_p ());
703 item
->ident
= cgraph_node::get (cfun
->decl
)->profile_id
;
706 item
->lineno_checksum
= lineno_checksum
;
707 item
->cfg_checksum
= cfg_checksum
;
709 item
->fn_decl
= current_function_decl
;
711 *functions_tail
= item
;
712 functions_tail
= &item
->next
;
714 for (i
= 0; i
!= GCOV_COUNTERS
; i
++)
716 tree var
= fn_v_ctrs
[i
];
719 item
->ctr_vars
[i
] = var
;
722 tree array_type
= build_index_type (size_int (fn_n_ctrs
[i
] - 1));
723 array_type
= build_array_type (get_gcov_type (), array_type
);
724 TREE_TYPE (var
) = array_type
;
725 DECL_SIZE (var
) = TYPE_SIZE (array_type
);
726 DECL_SIZE_UNIT (var
) = TYPE_SIZE_UNIT (array_type
);
727 varpool_node::finalize_decl (var
);
730 fn_b_ctrs
[i
] = fn_n_ctrs
[i
] = 0;
731 fn_v_ctrs
[i
] = NULL_TREE
;
733 prg_ctr_mask
|= fn_ctr_mask
;
738 /* Remove coverage file if opened. */
741 coverage_remove_note_file (void)
746 unlink (bbg_file_name
);
750 /* Build a coverage variable of TYPE for function FN_DECL. If COUNTER
751 >= 0 it is a counter array, otherwise it is the function structure. */
754 build_var (tree fn_decl
, tree type
, int counter
)
756 tree var
= build_decl (BUILTINS_LOCATION
, VAR_DECL
, NULL_TREE
, type
);
757 const char *fn_name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fn_decl
));
759 size_t fn_name_len
, len
;
761 fn_name
= targetm
.strip_name_encoding (fn_name
);
762 fn_name_len
= strlen (fn_name
);
763 buf
= XALLOCAVEC (char, fn_name_len
+ 8 + sizeof (int) * 3);
766 strcpy (buf
, "__gcov__");
768 sprintf (buf
, "__gcov%u_", counter
);
770 buf
[len
- 1] = symbol_table::symbol_suffix_separator ();
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 SET_DECL_ALIGN (var
, TYPE_ALIGN (type
));
781 /* Creates the gcov_fn_info RECORD_TYPE. */
784 build_fn_info_type (tree type
, unsigned counters
, tree gcov_info_type
)
786 tree ctr_info
= lang_hooks
.types
.make_type (RECORD_TYPE
);
790 gcc_assert (counters
);
793 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
794 get_gcov_unsigned_t ());
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
;
803 finish_builtin_struct (ctr_info
, "__gcov_ctr_info", fields
, NULL_TREE
);
806 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
807 build_pointer_type (build_qualified_type
808 (gcov_info_type
, TYPE_QUAL_CONST
)));
812 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
813 get_gcov_unsigned_t ());
814 DECL_CHAIN (field
) = fields
;
817 /* lineno_checksum */
818 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
819 get_gcov_unsigned_t ());
820 DECL_CHAIN (field
) = fields
;
824 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
825 get_gcov_unsigned_t ());
826 DECL_CHAIN (field
) = fields
;
829 array_type
= build_index_type (size_int (counters
- 1));
830 array_type
= build_array_type (ctr_info
, array_type
);
833 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
, array_type
);
834 DECL_CHAIN (field
) = fields
;
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. */
845 build_fn_info (const struct coverage_data
*data
, tree type
, tree key
)
847 tree fields
= TYPE_FIELDS (type
);
850 vec
<constructor_elt
, va_gc
> *v1
= NULL
;
851 vec
<constructor_elt
, va_gc
> *v2
= NULL
;
854 CONSTRUCTOR_APPEND_ELT (v1
, fields
,
855 build1 (ADDR_EXPR
, TREE_TYPE (fields
), key
));
856 fields
= DECL_CHAIN (fields
);
859 CONSTRUCTOR_APPEND_ELT (v1
, fields
,
860 build_int_cstu (get_gcov_unsigned_t (),
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
);
871 CONSTRUCTOR_APPEND_ELT (v1
, fields
,
872 build_int_cstu (get_gcov_unsigned_t (),
873 data
->cfg_checksum
));
874 fields
= DECL_CHAIN (fields
);
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
];
887 = tree_to_shwi (TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (var
))))
890 CONSTRUCTOR_APPEND_ELT (ctr
, TYPE_FIELDS (ctr_type
),
891 build_int_cstu (get_gcov_unsigned_t (),
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. */
911 build_info_type (tree type
, tree fn_info_ptr_type
)
913 tree field
, fields
= NULL_TREE
;
917 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
918 get_gcov_unsigned_t ());
919 DECL_CHAIN (field
) = fields
;
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
;
930 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
931 get_gcov_unsigned_t ());
932 DECL_CHAIN (field
) = fields
;
936 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
937 get_gcov_unsigned_t ());
938 DECL_CHAIN (field
) = fields
;
942 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
943 build_pointer_type (build_qualified_type
944 (char_type_node
, TYPE_QUAL_CONST
)));
945 DECL_CHAIN (field
) = fields
;
950 = build_function_type_list (void_type_node
,
951 build_pointer_type (get_gcov_type ()),
952 get_gcov_unsigned_t (), NULL_TREE
);
954 = build_array_type (build_pointer_type (merge_fn_type
),
955 build_index_type (size_int (GCOV_COUNTERS
- 1)));
956 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
958 DECL_CHAIN (field
) = fields
;
962 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
963 get_gcov_unsigned_t ());
964 DECL_CHAIN (field
) = fields
;
967 /* function_info pointer pointer */
968 fn_info_ptr_type
= build_pointer_type
969 (build_qualified_type (fn_info_ptr_type
, TYPE_QUAL_CONST
));
970 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
972 DECL_CHAIN (field
) = fields
;
975 finish_builtin_struct (type
, "__gcov_info", fields
, NULL_TREE
);
978 /* Returns a CONSTRUCTOR for the gcov_info object. INFO_TYPE is the
979 gcov_info structure type, FN_ARY is the array of pointers to
980 function info objects. */
983 build_info (tree info_type
, tree fn_ary
, unsigned object_checksum
)
985 tree info_fields
= TYPE_FIELDS (info_type
);
986 tree merge_fn_type
, n_funcs
;
988 tree filename_string
;
989 int da_file_name_len
;
990 vec
<constructor_elt
, va_gc
> *v1
= NULL
;
991 vec
<constructor_elt
, va_gc
> *v2
= NULL
;
994 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
,
995 build_int_cstu (TREE_TYPE (info_fields
),
997 info_fields
= DECL_CHAIN (info_fields
);
1000 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
, null_pointer_node
);
1001 info_fields
= DECL_CHAIN (info_fields
);
1004 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
,
1005 build_int_cstu (TREE_TYPE (info_fields
),
1007 info_fields
= DECL_CHAIN (info_fields
);
1010 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
,
1011 build_int_cstu (TREE_TYPE (info_fields
),
1013 info_fields
= DECL_CHAIN (info_fields
);
1016 da_file_name_len
= strlen (da_file_name
);
1017 filename_string
= build_string (da_file_name_len
+ 1, da_file_name
);
1018 TREE_TYPE (filename_string
) = build_array_type
1019 (char_type_node
, build_index_type (size_int (da_file_name_len
)));
1020 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
,
1021 build1 (ADDR_EXPR
, TREE_TYPE (info_fields
),
1023 info_fields
= DECL_CHAIN (info_fields
);
1025 /* merge fn array -- NULL slots indicate unmeasured counters */
1026 merge_fn_type
= TREE_TYPE (TREE_TYPE (info_fields
));
1027 for (ix
= 0; ix
!= GCOV_COUNTERS
; ix
++)
1029 tree ptr
= null_pointer_node
;
1031 if ((1u << ix
) & prg_ctr_mask
)
1033 tree merge_fn
= build_decl (BUILTINS_LOCATION
,
1035 get_identifier (ctr_merge_functions
[ix
]),
1036 TREE_TYPE (merge_fn_type
));
1037 DECL_EXTERNAL (merge_fn
) = 1;
1038 TREE_PUBLIC (merge_fn
) = 1;
1039 DECL_ARTIFICIAL (merge_fn
) = 1;
1040 TREE_NOTHROW (merge_fn
) = 1;
1041 /* Initialize assembler name so we can stream out. */
1042 DECL_ASSEMBLER_NAME (merge_fn
);
1043 ptr
= build1 (ADDR_EXPR
, merge_fn_type
, merge_fn
);
1045 CONSTRUCTOR_APPEND_ELT (v2
, NULL
, ptr
);
1047 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
,
1048 build_constructor (TREE_TYPE (info_fields
), v2
));
1049 info_fields
= DECL_CHAIN (info_fields
);
1052 n_funcs
= TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (fn_ary
)));
1053 n_funcs
= fold_build2 (PLUS_EXPR
, TREE_TYPE (info_fields
),
1054 n_funcs
, size_one_node
);
1055 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
, n_funcs
);
1056 info_fields
= DECL_CHAIN (info_fields
);
1059 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
,
1060 build1 (ADDR_EXPR
, TREE_TYPE (info_fields
), fn_ary
));
1061 info_fields
= DECL_CHAIN (info_fields
);
1063 gcc_assert (!info_fields
);
1064 return build_constructor (info_type
, v1
);
1067 /* Generate the constructor function to call __gcov_init. */
1070 build_init_ctor (tree gcov_info_type
)
1072 tree ctor
, stmt
, init_fn
;
1074 /* Build a decl for __gcov_init. */
1075 init_fn
= build_pointer_type (gcov_info_type
);
1076 init_fn
= build_function_type_list (void_type_node
, init_fn
, NULL
);
1077 init_fn
= build_decl (BUILTINS_LOCATION
, FUNCTION_DECL
,
1078 get_identifier ("__gcov_init"), init_fn
);
1079 TREE_PUBLIC (init_fn
) = 1;
1080 DECL_EXTERNAL (init_fn
) = 1;
1081 DECL_ASSEMBLER_NAME (init_fn
);
1083 /* Generate a call to __gcov_init(&gcov_info). */
1085 stmt
= build_fold_addr_expr (gcov_info_var
);
1086 stmt
= build_call_expr (init_fn
, 1, stmt
);
1087 append_to_statement_list (stmt
, &ctor
);
1089 /* Generate a constructor to run it. */
1090 int priority
= SUPPORTS_INIT_PRIORITY
1091 ? MAX_RESERVED_INIT_PRIORITY
: DEFAULT_INIT_PRIORITY
;
1092 cgraph_build_static_cdtor ('I', ctor
, priority
);
1095 /* Generate the destructor function to call __gcov_exit. */
1098 build_gcov_exit_decl (void)
1100 tree init_fn
= build_function_type_list (void_type_node
, NULL
);
1101 init_fn
= build_decl (BUILTINS_LOCATION
, FUNCTION_DECL
,
1102 get_identifier ("__gcov_exit"), init_fn
);
1103 TREE_PUBLIC (init_fn
) = 1;
1104 DECL_EXTERNAL (init_fn
) = 1;
1105 DECL_ASSEMBLER_NAME (init_fn
);
1107 /* Generate a call to __gcov_exit (). */
1109 tree stmt
= build_call_expr (init_fn
, 0);
1110 append_to_statement_list (stmt
, &dtor
);
1112 /* Generate a destructor to run it. */
1113 int priority
= SUPPORTS_INIT_PRIORITY
1114 ? MAX_RESERVED_INIT_PRIORITY
: DEFAULT_INIT_PRIORITY
;
1116 cgraph_build_static_cdtor ('D', dtor
, priority
);
1119 /* Generate the pointer to the gcov_info_var in a dedicated section. */
1122 build_gcov_info_var_registration (tree gcov_info_type
)
1124 tree var
= build_decl (BUILTINS_LOCATION
,
1125 VAR_DECL
, NULL_TREE
,
1126 build_pointer_type (gcov_info_type
));
1127 TREE_STATIC (var
) = 1;
1128 TREE_READONLY (var
) = 1;
1130 ASM_GENERATE_INTERNAL_LABEL (name_buf
, "LPBX", 2);
1131 DECL_NAME (var
) = get_identifier (name_buf
);
1132 get_section (profile_info_section
, SECTION_UNNAMED
, NULL
);
1133 set_decl_section_name (var
, profile_info_section
);
1134 mark_decl_referenced (var
);
1135 DECL_INITIAL (var
) = build_fold_addr_expr (gcov_info_var
);
1136 varpool_node::finalize_decl (var
);
1139 /* Create the gcov_info types and object. Generate the constructor
1140 function to call __gcov_init. Does not generate the initializer
1141 for the object. Returns TRUE if coverage data is being emitted. */
1144 coverage_obj_init (void)
1146 tree gcov_info_type
;
1147 unsigned n_counters
= 0;
1149 struct coverage_data
*fn
;
1150 struct coverage_data
**fn_prev
;
1153 no_coverage
= 1; /* Disable any further coverage. */
1158 if (symtab
->dump_file
)
1159 fprintf (symtab
->dump_file
, "Using data file %s\n", da_file_name
);
1161 /* Prune functions. */
1162 for (fn_prev
= &functions_head
; (fn
= *fn_prev
);)
1163 if (DECL_STRUCT_FUNCTION (fn
->fn_decl
))
1164 fn_prev
= &fn
->next
;
1166 /* The function is not being emitted, remove from list. */
1167 *fn_prev
= fn
->next
;
1169 if (functions_head
== NULL
)
1172 for (ix
= 0; ix
!= GCOV_COUNTERS
; ix
++)
1173 if ((1u << ix
) & prg_ctr_mask
)
1176 /* Build the info and fn_info types. These are mutually recursive. */
1177 gcov_info_type
= lang_hooks
.types
.make_type (RECORD_TYPE
);
1178 gcov_fn_info_type
= lang_hooks
.types
.make_type (RECORD_TYPE
);
1179 build_fn_info_type (gcov_fn_info_type
, n_counters
, gcov_info_type
);
1180 gcov_info_type
= lang_hooks
.types
.make_type (RECORD_TYPE
);
1181 gcov_fn_info_ptr_type
= build_pointer_type
1182 (build_qualified_type (gcov_fn_info_type
, TYPE_QUAL_CONST
));
1183 build_info_type (gcov_info_type
, gcov_fn_info_ptr_type
);
1185 /* Build the gcov info var, this is referred to in its own
1187 gcov_info_var
= build_decl (BUILTINS_LOCATION
,
1188 VAR_DECL
, NULL_TREE
, gcov_info_type
);
1189 TREE_STATIC (gcov_info_var
) = 1;
1190 ASM_GENERATE_INTERNAL_LABEL (name_buf
, "LPBX", 0);
1191 DECL_NAME (gcov_info_var
) = get_identifier (name_buf
);
1193 if (profile_info_section
)
1194 build_gcov_info_var_registration (gcov_info_type
);
1197 build_init_ctor (gcov_info_type
);
1198 build_gcov_exit_decl ();
1204 /* Generate the coverage function info for FN and DATA. Append a
1205 pointer to that object to CTOR and return the appended CTOR. */
1207 static vec
<constructor_elt
, va_gc
> *
1208 coverage_obj_fn (vec
<constructor_elt
, va_gc
> *ctor
, tree fn
,
1209 struct coverage_data
const *data
)
1211 tree init
= build_fn_info (data
, gcov_fn_info_type
, gcov_info_var
);
1212 tree var
= build_var (fn
, gcov_fn_info_type
, -1);
1214 DECL_INITIAL (var
) = init
;
1215 varpool_node::finalize_decl (var
);
1217 CONSTRUCTOR_APPEND_ELT (ctor
, NULL
,
1218 build1 (ADDR_EXPR
, gcov_fn_info_ptr_type
, var
));
1222 /* Finalize the coverage data. Generates the array of pointers to
1223 function objects from CTOR. Generate the gcov_info initializer. */
1226 coverage_obj_finish (vec
<constructor_elt
, va_gc
> *ctor
,
1227 unsigned object_checksum
)
1229 unsigned n_functions
= vec_safe_length (ctor
);
1230 tree fn_info_ary_type
= build_array_type
1231 (build_qualified_type (gcov_fn_info_ptr_type
, TYPE_QUAL_CONST
),
1232 build_index_type (size_int (n_functions
- 1)));
1233 tree fn_info_ary
= build_decl (BUILTINS_LOCATION
, VAR_DECL
, NULL_TREE
,
1237 TREE_STATIC (fn_info_ary
) = 1;
1238 ASM_GENERATE_INTERNAL_LABEL (name_buf
, "LPBX", 1);
1239 DECL_NAME (fn_info_ary
) = get_identifier (name_buf
);
1240 DECL_INITIAL (fn_info_ary
) = build_constructor (fn_info_ary_type
, ctor
);
1241 varpool_node::finalize_decl (fn_info_ary
);
1243 DECL_INITIAL (gcov_info_var
)
1244 = build_info (TREE_TYPE (gcov_info_var
), fn_info_ary
, object_checksum
);
1245 varpool_node::finalize_decl (gcov_info_var
);
1248 /* Perform file-level initialization. Read in data file, generate name
1252 coverage_init (const char *filename
)
1254 const char *original_filename
= filename
;
1255 int original_len
= strlen (original_filename
);
1256 #if HAVE_DOS_BASED_FILE_SYSTEM
1257 const char *separator
= "\\";
1259 const char *separator
= "/";
1261 int len
= strlen (filename
);
1264 /* Since coverage_init is invoked very early, before the pass
1265 manager, we need to set up the dumping explicitly. This is
1266 similar to the handling in finish_optimization_passes. */
1267 int profile_pass_num
=
1268 g
->get_passes ()->get_pass_profile ()->static_pass_number
;
1269 g
->get_dumps ()->dump_start (profile_pass_num
, NULL
);
1271 if (!IS_ABSOLUTE_PATH (filename
))
1273 /* When a profile_data_prefix is provided, then mangle full path
1274 of filename in order to prevent file path clashing. */
1275 if (profile_data_prefix
)
1277 filename
= concat (getpwd (), separator
, filename
, NULL
);
1278 if (profile_prefix_path
)
1280 if (startswith (filename
, profile_prefix_path
))
1282 filename
+= strlen (profile_prefix_path
);
1283 while (*filename
== *separator
)
1287 warning (0, "filename %qs does not start with profile "
1288 "prefix %qs", filename
, profile_prefix_path
);
1290 filename
= mangle_path (filename
);
1291 len
= strlen (filename
);
1294 profile_data_prefix
= getpwd ();
1297 if (profile_data_prefix
)
1298 prefix_len
= strlen (profile_data_prefix
);
1300 /* Name of da file. */
1301 da_file_name
= XNEWVEC (char, len
+ strlen (GCOV_DATA_SUFFIX
)
1304 if (profile_data_prefix
)
1306 memcpy (da_file_name
, profile_data_prefix
, prefix_len
);
1307 da_file_name
[prefix_len
++] = *separator
;
1309 memcpy (da_file_name
+ prefix_len
, filename
, len
);
1310 strcpy (da_file_name
+ prefix_len
+ len
, GCOV_DATA_SUFFIX
);
1312 bbg_file_stamp
= local_tick
;
1313 if (flag_auto_profile
)
1314 read_autofdo_file ();
1315 else if (flag_branch_probabilities
)
1316 read_counts_file ();
1318 /* Name of bbg file. */
1319 if (flag_test_coverage
&& !flag_compare_debug
)
1321 if (profile_note_location
)
1322 bbg_file_name
= xstrdup (profile_note_location
);
1325 bbg_file_name
= XNEWVEC (char, original_len
+ strlen (GCOV_NOTE_SUFFIX
) + 1);
1326 memcpy (bbg_file_name
, original_filename
, original_len
);
1327 strcpy (bbg_file_name
+ original_len
, GCOV_NOTE_SUFFIX
);
1330 if (!gcov_open (bbg_file_name
, -1))
1332 error ("cannot open %s", bbg_file_name
);
1333 bbg_file_name
= NULL
;
1337 gcov_write_unsigned (GCOV_NOTE_MAGIC
);
1338 gcov_write_unsigned (GCOV_VERSION
);
1339 gcov_write_unsigned (bbg_file_stamp
);
1340 /* Use an arbitrary checksum */
1341 gcov_write_unsigned (0);
1342 gcov_write_string (getpwd ());
1344 /* Do not support has_unexecuted_blocks for Ada. */
1345 gcov_write_unsigned (strcmp (lang_hooks
.name
, "GNU Ada") != 0);
1349 g
->get_dumps ()->dump_finish (profile_pass_num
);
1352 /* Performs file-level cleanup. Close notes file, generate coverage
1353 variables and constructor. */
1356 coverage_finish (void)
1358 if (bbg_file_name
&& gcov_close ())
1359 unlink (bbg_file_name
);
1361 if (!flag_branch_probabilities
&& flag_test_coverage
1362 && (!local_tick
|| local_tick
== (unsigned)-1))
1363 /* Only remove the da file, if we're emitting coverage code and
1364 cannot uniquely stamp it. If we can stamp it, libgcov will DTRT. */
1365 unlink (da_file_name
);
1367 /* Global GCDA checksum that aggregates all functions. */
1368 unsigned object_checksum
= 0;
1370 if (coverage_obj_init ())
1372 vec
<constructor_elt
, va_gc
> *fn_ctor
= NULL
;
1373 struct coverage_data
*fn
;
1375 for (fn
= functions_head
; fn
; fn
= fn
->next
)
1377 fn_ctor
= coverage_obj_fn (fn_ctor
, fn
->fn_decl
, fn
);
1379 object_checksum
= crc32_unsigned (object_checksum
, fn
->ident
);
1380 object_checksum
= crc32_unsigned (object_checksum
,
1381 fn
->lineno_checksum
);
1382 object_checksum
= crc32_unsigned (object_checksum
, fn
->cfg_checksum
);
1384 coverage_obj_finish (fn_ctor
, object_checksum
);
1387 XDELETEVEC (da_file_name
);
1388 da_file_name
= NULL
;
1391 #include "gt-coverage.h"