1 /* Read and write coverage files, and associated functionality.
2 Copyright (C) 1990-2024 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"
54 #include "file-prefix-map.h"
58 struct GTY((chain_next ("%h.next"))) coverage_data
60 struct coverage_data
*next
; /* next function */
61 unsigned ident
; /* function ident */
62 unsigned lineno_checksum
; /* function lineno checksum */
63 unsigned cfg_checksum
; /* function cfg checksum */
64 tree fn_decl
; /* the function decl */
65 tree ctr_vars
[GCOV_COUNTERS
]; /* counter variables. */
68 /* Counts information for a function. */
69 struct counts_entry
: pointer_hash
<counts_entry
>
76 unsigned lineno_checksum
;
77 unsigned cfg_checksum
;
81 /* hash_table support. */
82 static inline hashval_t
hash (const counts_entry
*);
83 static int equal (const counts_entry
*, const counts_entry
*);
84 static void remove (counts_entry
*);
87 static GTY(()) struct coverage_data
*functions_head
= 0;
88 static struct coverage_data
**functions_tail
= &functions_head
;
89 static unsigned no_coverage
= 0;
91 /* Cumulative counter information for whole program. */
92 static unsigned prg_ctr_mask
; /* Mask of counter types generated. */
94 /* Counter information for current function. */
95 static unsigned fn_ctr_mask
; /* Mask of counters used. */
96 static GTY(()) tree fn_v_ctrs
[GCOV_COUNTERS
]; /* counter variables. */
97 static unsigned fn_n_ctrs
[GCOV_COUNTERS
]; /* Counters allocated. */
98 static unsigned fn_b_ctrs
[GCOV_COUNTERS
]; /* Allocation base. */
100 /* Coverage info VAR_DECL and function info type nodes. */
101 static GTY(()) tree gcov_info_var
;
102 static GTY(()) tree gcov_fn_info_type
;
103 static GTY(()) tree gcov_fn_info_ptr_type
;
105 /* Name of the notes (gcno) output file. The "bbg" prefix is for
106 historical reasons, when the notes file contained only the
107 basic block graph notes.
108 If this is NULL we're not writing to the notes file. */
109 static char *bbg_file_name
;
111 /* File stamp for notes file. */
112 static unsigned bbg_file_stamp
;
114 /* Name of the count data (gcda) file. */
115 static char *da_file_name
;
117 /* The names of merge functions for counters. */
118 #define STR(str) #str
119 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) STR(__gcov_merge ## FN_TYPE),
120 static const char *const ctr_merge_functions
[GCOV_COUNTERS
] = {
121 #include "gcov-counter.def"
123 #undef DEF_GCOV_COUNTER
126 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) NAME,
127 static const char *const ctr_names
[GCOV_COUNTERS
] = {
128 #include "gcov-counter.def"
130 #undef DEF_GCOV_COUNTER
132 /* Forward declarations. */
133 static tree
build_var (tree
, tree
, int);
135 /* Return the type node for gcov_type. */
141 = smallest_int_mode_for_size
142 (LONG_LONG_TYPE_SIZE
> 32 ? 64 : 32).require ();
143 return lang_hooks
.types
.type_for_mode (mode
, false);
146 /* Return the type node for gcov_unsigned_t. */
149 get_gcov_unsigned_t (void)
151 scalar_int_mode mode
= smallest_int_mode_for_size (32).require ();
152 return lang_hooks
.types
.type_for_mode (mode
, true);
156 counts_entry::hash (const counts_entry
*entry
)
158 return entry
->ident
* GCOV_COUNTERS
+ entry
->ctr
;
162 counts_entry::equal (const counts_entry
*entry1
, const counts_entry
*entry2
)
164 return entry1
->ident
== entry2
->ident
&& entry1
->ctr
== entry2
->ctr
;
168 counts_entry::remove (counts_entry
*entry
)
170 free (entry
->counts
);
174 /* Hash table of count data. */
175 static hash_table
<counts_entry
> *counts_hash
;
177 /* Read in the counts file, if available. */
180 read_counts_file (void)
182 gcov_unsigned_t fn_ident
= 0;
185 unsigned lineno_checksum
= 0;
186 unsigned cfg_checksum
= 0;
188 if (!gcov_open (da_file_name
, 1))
191 if (!gcov_magic (gcov_read_unsigned (), GCOV_DATA_MAGIC
))
193 warning (0, "%qs is not a gcov data file", da_file_name
);
197 else if ((tag
= gcov_read_unsigned ()) != GCOV_VERSION
)
201 GCOV_UNSIGNED2STRING (v
, tag
);
202 GCOV_UNSIGNED2STRING (e
, GCOV_VERSION
);
204 warning (0, "%qs is version %q.*s, expected version %q.*s",
205 da_file_name
, 4, v
, 4, e
);
210 /* Read the stamp, used for creating a generation count. */
211 tag
= gcov_read_unsigned ();
212 bbg_file_stamp
= crc32_unsigned (bbg_file_stamp
, tag
);
215 gcov_read_unsigned ();
217 counts_hash
= new hash_table
<counts_entry
> (10);
218 while ((tag
= gcov_read_unsigned ()))
220 gcov_unsigned_t length
;
221 gcov_position_t offset
;
223 length
= gcov_read_unsigned ();
224 offset
= gcov_position ();
225 if (tag
== GCOV_TAG_FUNCTION
)
229 fn_ident
= gcov_read_unsigned ();
230 lineno_checksum
= gcov_read_unsigned ();
231 cfg_checksum
= gcov_read_unsigned ();
234 fn_ident
= lineno_checksum
= cfg_checksum
= 0;
236 else if (tag
== GCOV_TAG_OBJECT_SUMMARY
)
238 profile_info
= XCNEW (gcov_summary
);
239 profile_info
->runs
= gcov_read_unsigned ();
240 profile_info
->sum_max
= gcov_read_unsigned ();
242 else if (GCOV_TAG_IS_COUNTER (tag
) && fn_ident
)
244 counts_entry
**slot
, *entry
, elt
;
245 int read_length
= (int)length
;
246 length
= read_length
> 0 ? read_length
: 0;
247 unsigned n_counts
= GCOV_TAG_COUNTER_NUM (abs (read_length
));
250 elt
.ident
= fn_ident
;
251 elt
.ctr
= GCOV_COUNTER_FOR_TAG (tag
);
253 slot
= counts_hash
->find_slot (&elt
, INSERT
);
257 *slot
= entry
= XCNEW (counts_entry
);
258 entry
->ident
= fn_ident
;
259 entry
->ctr
= elt
.ctr
;
260 entry
->lineno_checksum
= lineno_checksum
;
261 entry
->cfg_checksum
= cfg_checksum
;
262 entry
->counts
= XCNEWVEC (gcov_type
, n_counts
);
263 entry
->n_counts
= n_counts
;
265 else if (entry
->lineno_checksum
!= lineno_checksum
266 || entry
->cfg_checksum
!= cfg_checksum
)
268 error ("profile data for function %u is corrupted", fn_ident
);
269 error ("checksum is (%x,%x) instead of (%x,%x)",
270 entry
->lineno_checksum
, entry
->cfg_checksum
,
271 lineno_checksum
, cfg_checksum
);
277 for (ix
= 0; ix
!= n_counts
; ix
++)
278 entry
->counts
[ix
] = gcov_read_counter ();
280 gcov_sync (offset
, length
);
281 if ((is_error
= gcov_is_error ()))
284 ? G_("%qs has overflowed")
285 : G_("%qs is corrupted"),
296 /* Returns the counters for a particular tag. */
299 get_coverage_counts (unsigned counter
, unsigned cfg_checksum
,
300 unsigned lineno_checksum
, unsigned int n_counts
)
302 counts_entry
*entry
, elt
;
304 /* No hash table, no counts. */
307 static int warned
= 0;
311 warning (OPT_Wmissing_profile
,
312 "%qs profile count data file not found",
314 if (dump_enabled_p ())
316 dump_user_location_t loc
317 = dump_user_location_t::from_location_t (input_location
);
318 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, loc
,
319 "file %s not found, %s\n", da_file_name
,
320 (flag_guess_branch_prob
321 ? "execution counts estimated"
322 : "execution counts assumed to be zero"));
327 if (param_profile_func_internal_id
)
328 elt
.ident
= current_function_funcdef_no
+ 1;
331 gcc_assert (coverage_node_map_initialized_p ());
332 elt
.ident
= cgraph_node::get (current_function_decl
)->profile_id
;
335 entry
= counts_hash
->find (&elt
);
338 if (counter
== GCOV_COUNTER_ARCS
)
339 warning_at (DECL_SOURCE_LOCATION (current_function_decl
),
340 OPT_Wmissing_profile
,
341 "profile for function %qD not found in profile data",
342 current_function_decl
);
343 /* The function was not emitted, or is weak and not chosen in the
344 final executable. Silently fail, because there's nothing we
349 if (entry
->cfg_checksum
!= cfg_checksum
350 || (counter
!= GCOV_COUNTER_V_INDIR
351 && counter
!= GCOV_COUNTER_V_TOPN
352 && entry
->n_counts
!= n_counts
))
354 static int warned
= 0;
355 bool warning_printed
= false;
357 if (entry
->n_counts
!= n_counts
)
359 warning_at (DECL_SOURCE_LOCATION (current_function_decl
),
360 OPT_Wcoverage_mismatch
,
361 "number of counters in profile data for function %qD "
363 "its profile data (counter %qs, expected %i and have %i)",
364 current_function_decl
,
365 ctr_names
[counter
], entry
->n_counts
, n_counts
);
368 warning_at (DECL_SOURCE_LOCATION (current_function_decl
),
369 OPT_Wcoverage_mismatch
,
370 "the control flow of function %qD does not match "
371 "its profile data (counter %qs)", current_function_decl
,
373 if (warning_printed
&& dump_enabled_p ())
375 dump_user_location_t loc
376 = dump_user_location_t::from_function_decl (current_function_decl
);
377 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, loc
,
378 "use -Wno-error=coverage-mismatch to tolerate "
379 "the mismatch but performance may drop if the "
380 "function is hot\n");
385 dump_printf_loc (MSG_MISSED_OPTIMIZATION
, loc
,
386 "coverage mismatch ignored\n");
387 dump_printf (MSG_MISSED_OPTIMIZATION
,
388 flag_guess_branch_prob
389 ? G_("execution counts estimated\n")
390 : G_("execution counts assumed to be zero\n"));
391 if (!flag_guess_branch_prob
)
392 dump_printf (MSG_MISSED_OPTIMIZATION
,
393 "this can result in poorly optimized code\n");
399 else if (entry
->lineno_checksum
!= lineno_checksum
)
401 warning_at (DECL_SOURCE_LOCATION (current_function_decl
),
402 OPT_Wcoverage_mismatch
,
403 "source locations for function %qD have changed,"
404 " the profile data may be out of date",
405 current_function_decl
);
408 return entry
->counts
;
411 /* Allocate NUM counters of type COUNTER. Returns nonzero if the
412 allocation succeeded. */
415 coverage_counter_alloc (unsigned counter
, unsigned num
)
423 if (!fn_v_ctrs
[counter
])
425 tree array_type
= build_array_type (get_gcov_type (), NULL_TREE
);
428 = build_var (current_function_decl
, array_type
, counter
);
431 fn_b_ctrs
[counter
] = fn_n_ctrs
[counter
];
432 fn_n_ctrs
[counter
] += num
;
434 fn_ctr_mask
|= 1 << counter
;
438 /* Generate a tree to access COUNTER NO. */
441 tree_coverage_counter_ref (unsigned counter
, unsigned no
)
443 tree gcov_type_node
= get_gcov_type ();
445 gcc_assert (no
< fn_n_ctrs
[counter
] - fn_b_ctrs
[counter
]);
447 no
+= fn_b_ctrs
[counter
];
449 /* "no" here is an array index, scaled to bytes later. */
450 return build4 (ARRAY_REF
, gcov_type_node
, fn_v_ctrs
[counter
],
451 build_int_cst (integer_type_node
, no
), NULL
, NULL
);
454 /* Generate a tree to access the address of COUNTER NO. */
457 tree_coverage_counter_addr (unsigned counter
, unsigned no
)
459 tree gcov_type_node
= get_gcov_type ();
461 gcc_assert (no
< fn_n_ctrs
[counter
] - fn_b_ctrs
[counter
]);
462 no
+= fn_b_ctrs
[counter
];
464 /* "no" here is an array index, scaled to bytes later. */
465 return build_fold_addr_expr (build4 (ARRAY_REF
, gcov_type_node
,
467 build_int_cst (integer_type_node
, no
),
472 /* Generate a checksum for a string. CHKSUM is the current
476 coverage_checksum_string (unsigned chksum
, const char *string
)
481 /* Look for everything that looks if it were produced by
482 get_file_function_name and zero out the second part
483 that may result from flag_random_seed. This is not critical
484 as the checksums are used only for sanity checking. */
485 for (i
= 0; string
[i
]; i
++)
488 if (startswith (string
+ i
, "_GLOBAL__N_"))
490 if (startswith (string
+ i
, "_GLOBAL__"))
493 /* C++ namespaces do have scheme:
494 _GLOBAL__N_<filename>_<wrongmagicnumber>_<magicnumber>functionname
495 since filename might contain extra underscores there seems
496 to be no better chance then walk all possible offsets looking
500 for (i
= i
+ offset
; string
[i
]; i
++)
505 for (y
= 1; y
< 9; y
++)
506 if (!(string
[i
+ y
] >= '0' && string
[i
+ y
] <= '9')
507 && !(string
[i
+ y
] >= 'A' && string
[i
+ y
] <= 'F'))
509 if (y
!= 9 || string
[i
+ 9] != '_')
511 for (y
= 10; y
< 18; y
++)
512 if (!(string
[i
+ y
] >= '0' && string
[i
+ y
] <= '9')
513 && !(string
[i
+ y
] >= 'A' && string
[i
+ y
] <= 'F'))
518 string
= dup
= xstrdup (string
);
519 for (y
= 10; y
< 18; y
++)
526 chksum
= crc32_string (chksum
, string
);
532 /* Compute checksum for the current function. We generate a CRC32. */
535 coverage_compute_lineno_checksum (void)
537 expanded_location xloc
538 = expand_location (DECL_SOURCE_LOCATION (current_function_decl
));
539 unsigned chksum
= xloc
.line
;
542 chksum
= coverage_checksum_string (chksum
, xloc
.file
);
543 chksum
= coverage_checksum_string
544 (chksum
, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (current_function_decl
)));
549 /* Compute profile ID. This is better to be unique in whole program. */
552 coverage_compute_profile_id (struct cgraph_node
*n
)
556 /* Externally visible symbols have unique name. */
557 if (TREE_PUBLIC (n
->decl
) || DECL_EXTERNAL (n
->decl
) || n
->unique_name
)
559 chksum
= coverage_checksum_string
560 (0, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n
->decl
)));
564 expanded_location xloc
565 = expand_location (DECL_SOURCE_LOCATION (n
->decl
));
566 bool use_name_only
= (param_profile_func_internal_id
== 0);
568 chksum
= (use_name_only
? 0 : xloc
.line
);
570 chksum
= coverage_checksum_string (chksum
, xloc
.file
);
571 chksum
= coverage_checksum_string
572 (chksum
, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n
->decl
)));
573 if (!use_name_only
&& first_global_object_name
)
574 chksum
= coverage_checksum_string
575 (chksum
, first_global_object_name
);
576 char *base_name
= xstrdup (aux_base_name
);
577 if (endswith (base_name
, ".gk"))
578 base_name
[strlen (base_name
) - 3] = '\0';
579 chksum
= coverage_checksum_string (chksum
, base_name
);
583 /* Non-negative integers are hopefully small enough to fit in all targets.
584 Gcov file formats wants non-zero function IDs. */
585 chksum
= chksum
& 0x7fffffff;
586 return chksum
+ (!chksum
);
589 /* Compute cfg checksum for the function FN given as argument.
590 The checksum is calculated carefully so that
591 source code changes that doesn't affect the control flow graph
592 won't change the checksum.
593 This is to make the profile data useable across source code change.
594 The downside of this is that the compiler may use potentially
595 wrong profile data - that the source code change has non-trivial impact
596 on the validity of profile data (e.g. the reversed condition)
597 but the compiler won't detect the change and use the wrong profile data. */
600 coverage_compute_cfg_checksum (struct function
*fn
)
603 unsigned chksum
= n_basic_blocks_for_fn (fn
);
605 FOR_EACH_BB_FN (bb
, fn
)
609 chksum
= crc32_byte (chksum
, bb
->index
);
610 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
612 chksum
= crc32_byte (chksum
, e
->dest
->index
);
619 /* Begin output to the notes file for the current function.
620 Writes the function header. Returns nonzero if data should be output. */
623 coverage_begin_function (unsigned lineno_checksum
, unsigned cfg_checksum
)
625 /* We don't need to output .gcno file unless we're under -ftest-coverage
626 (e.g. -fprofile-arcs/generate/use don't need .gcno to work). */
627 if (no_coverage
|| !bbg_file_name
)
630 expanded_location startloc
631 = expand_location (DECL_SOURCE_LOCATION (current_function_decl
));
633 /* Announce function */
634 unsigned long offset
= gcov_write_tag (GCOV_TAG_FUNCTION
);
635 if (param_profile_func_internal_id
)
636 gcov_write_unsigned (current_function_funcdef_no
+ 1);
639 gcc_assert (coverage_node_map_initialized_p ());
640 gcov_write_unsigned (
641 cgraph_node::get (current_function_decl
)->profile_id
);
644 gcov_write_unsigned (lineno_checksum
);
645 gcov_write_unsigned (cfg_checksum
);
646 gcov_write_string (IDENTIFIER_POINTER
647 (DECL_ASSEMBLER_NAME (current_function_decl
)));
648 gcov_write_unsigned (DECL_ARTIFICIAL (current_function_decl
)
649 && !DECL_FUNCTION_VERSIONED (current_function_decl
)
650 && !DECL_LAMBDA_FUNCTION_P (current_function_decl
));
651 gcov_write_filename (remap_profile_filename (startloc
.file
));
652 gcov_write_unsigned (startloc
.line
);
653 gcov_write_unsigned (startloc
.column
);
655 expanded_location endloc
= expand_location (cfun
->function_end_locus
);
657 /* Function can start in a single file and end in another one. */
659 = endloc
.file
== startloc
.file
? endloc
.line
: startloc
.line
;
661 = endloc
.file
== startloc
.file
? endloc
.column
: startloc
.column
;
663 if (startloc
.line
> end_line
)
665 warning_at (DECL_SOURCE_LOCATION (current_function_decl
),
666 OPT_Wcoverage_invalid_line_number
,
667 "function starts on a higher line number than it ends");
668 end_line
= startloc
.line
;
669 end_column
= startloc
.column
;
672 gcov_write_unsigned (end_line
);
673 gcov_write_unsigned (end_column
);
674 gcov_write_length (offset
);
676 return !gcov_is_error ();
679 /* Finish coverage data for the current function. Verify no output
680 error has occurred. Save function coverage counts. */
683 coverage_end_function (unsigned lineno_checksum
, unsigned cfg_checksum
)
687 if (bbg_file_name
&& gcov_is_error ())
689 warning (0, "error writing %qs", bbg_file_name
);
690 unlink (bbg_file_name
);
691 bbg_file_name
= NULL
;
696 struct coverage_data
*item
= 0;
698 item
= ggc_alloc
<coverage_data
> ();
700 if (param_profile_func_internal_id
)
701 item
->ident
= current_function_funcdef_no
+ 1;
704 gcc_assert (coverage_node_map_initialized_p ());
705 item
->ident
= cgraph_node::get (cfun
->decl
)->profile_id
;
708 item
->lineno_checksum
= lineno_checksum
;
709 item
->cfg_checksum
= cfg_checksum
;
711 item
->fn_decl
= current_function_decl
;
713 *functions_tail
= item
;
714 functions_tail
= &item
->next
;
716 for (i
= 0; i
!= GCOV_COUNTERS
; i
++)
718 tree var
= fn_v_ctrs
[i
];
721 item
->ctr_vars
[i
] = var
;
724 tree array_type
= build_index_type (size_int (fn_n_ctrs
[i
] - 1));
725 array_type
= build_array_type (get_gcov_type (), array_type
);
726 TREE_TYPE (var
) = array_type
;
727 DECL_SIZE (var
) = TYPE_SIZE (array_type
);
728 DECL_SIZE_UNIT (var
) = TYPE_SIZE_UNIT (array_type
);
729 varpool_node::finalize_decl (var
);
732 fn_b_ctrs
[i
] = fn_n_ctrs
[i
] = 0;
733 fn_v_ctrs
[i
] = NULL_TREE
;
735 prg_ctr_mask
|= fn_ctr_mask
;
740 /* Remove coverage file if opened. */
743 coverage_remove_note_file (void)
748 unlink (bbg_file_name
);
752 /* Build a coverage variable of TYPE for function FN_DECL. If COUNTER
753 >= 0 it is a counter array, otherwise it is the function structure. */
756 build_var (tree fn_decl
, tree type
, int counter
)
758 tree var
= build_decl (BUILTINS_LOCATION
, VAR_DECL
, NULL_TREE
, type
);
759 const char *fn_name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fn_decl
));
761 size_t fn_name_len
, len
;
763 fn_name
= targetm
.strip_name_encoding (fn_name
);
764 fn_name_len
= strlen (fn_name
);
765 buf
= XALLOCAVEC (char, fn_name_len
+ 8 + sizeof (int) * 3);
768 strcpy (buf
, "__gcov__");
770 sprintf (buf
, "__gcov%u_", counter
);
772 buf
[len
- 1] = symbol_table::symbol_suffix_separator ();
773 memcpy (buf
+ len
, fn_name
, fn_name_len
+ 1);
774 DECL_NAME (var
) = get_identifier (buf
);
775 TREE_STATIC (var
) = 1;
776 TREE_ADDRESSABLE (var
) = 1;
777 DECL_NONALIASED (var
) = 1;
778 SET_DECL_ALIGN (var
, TYPE_ALIGN (type
));
783 /* Creates the gcov_fn_info RECORD_TYPE. */
786 build_fn_info_type (tree type
, unsigned counters
, tree gcov_info_type
)
788 tree ctr_info
= lang_hooks
.types
.make_type (RECORD_TYPE
);
792 gcc_assert (counters
);
795 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
796 get_gcov_unsigned_t ());
799 /* ctr_info::values */
800 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
801 build_pointer_type (get_gcov_type ()));
802 DECL_CHAIN (field
) = fields
;
805 finish_builtin_struct (ctr_info
, "__gcov_ctr_info", fields
, NULL_TREE
);
808 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
809 build_pointer_type (build_qualified_type
810 (gcov_info_type
, TYPE_QUAL_CONST
)));
814 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
815 get_gcov_unsigned_t ());
816 DECL_CHAIN (field
) = fields
;
819 /* lineno_checksum */
820 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
821 get_gcov_unsigned_t ());
822 DECL_CHAIN (field
) = fields
;
826 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
827 get_gcov_unsigned_t ());
828 DECL_CHAIN (field
) = fields
;
831 array_type
= build_index_type (size_int (counters
- 1));
832 array_type
= build_array_type (ctr_info
, array_type
);
835 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
, array_type
);
836 DECL_CHAIN (field
) = fields
;
839 finish_builtin_struct (type
, "__gcov_fn_info", fields
, NULL_TREE
);
842 /* Returns a CONSTRUCTOR for a gcov_fn_info. DATA is
843 the coverage data for the function and TYPE is the gcov_fn_info
844 RECORD_TYPE. KEY is the object file key. */
847 build_fn_info (const struct coverage_data
*data
, tree type
, tree key
)
849 tree fields
= TYPE_FIELDS (type
);
852 vec
<constructor_elt
, va_gc
> *v1
= NULL
;
853 vec
<constructor_elt
, va_gc
> *v2
= NULL
;
856 CONSTRUCTOR_APPEND_ELT (v1
, fields
,
857 build1 (ADDR_EXPR
, TREE_TYPE (fields
), key
));
858 fields
= DECL_CHAIN (fields
);
861 CONSTRUCTOR_APPEND_ELT (v1
, fields
,
862 build_int_cstu (get_gcov_unsigned_t (),
864 fields
= DECL_CHAIN (fields
);
866 /* lineno_checksum */
867 CONSTRUCTOR_APPEND_ELT (v1
, fields
,
868 build_int_cstu (get_gcov_unsigned_t (),
869 data
->lineno_checksum
));
870 fields
= DECL_CHAIN (fields
);
873 CONSTRUCTOR_APPEND_ELT (v1
, fields
,
874 build_int_cstu (get_gcov_unsigned_t (),
875 data
->cfg_checksum
));
876 fields
= DECL_CHAIN (fields
);
879 ctr_type
= TREE_TYPE (TREE_TYPE (fields
));
880 for (ix
= 0; ix
!= GCOV_COUNTERS
; ix
++)
881 if (prg_ctr_mask
& (1 << ix
))
883 vec
<constructor_elt
, va_gc
> *ctr
= NULL
;
884 tree var
= data
->ctr_vars
[ix
];
889 = tree_to_shwi (TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (var
))))
892 CONSTRUCTOR_APPEND_ELT (ctr
, TYPE_FIELDS (ctr_type
),
893 build_int_cstu (get_gcov_unsigned_t (),
897 CONSTRUCTOR_APPEND_ELT (ctr
, DECL_CHAIN (TYPE_FIELDS (ctr_type
)),
898 build_fold_addr_expr (var
));
900 CONSTRUCTOR_APPEND_ELT (v2
, NULL
, build_constructor (ctr_type
, ctr
));
903 CONSTRUCTOR_APPEND_ELT (v1
, fields
,
904 build_constructor (TREE_TYPE (fields
), v2
));
906 return build_constructor (type
, v1
);
909 /* Create gcov_info struct. TYPE is the incomplete RECORD_TYPE to be
910 completed, and FN_INFO_PTR_TYPE is a pointer to the function info type. */
913 build_info_type (tree type
, tree fn_info_ptr_type
)
915 tree field
, fields
= NULL_TREE
;
919 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
920 get_gcov_unsigned_t ());
921 DECL_CHAIN (field
) = fields
;
925 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
926 build_pointer_type (build_qualified_type
927 (type
, TYPE_QUAL_CONST
)));
928 DECL_CHAIN (field
) = fields
;
932 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
933 get_gcov_unsigned_t ());
934 DECL_CHAIN (field
) = fields
;
938 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
939 get_gcov_unsigned_t ());
940 DECL_CHAIN (field
) = fields
;
944 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
945 build_pointer_type (build_qualified_type
946 (char_type_node
, TYPE_QUAL_CONST
)));
947 DECL_CHAIN (field
) = fields
;
952 = build_function_type_list (void_type_node
,
953 build_pointer_type (get_gcov_type ()),
954 get_gcov_unsigned_t (), NULL_TREE
);
956 = build_array_type (build_pointer_type (merge_fn_type
),
957 build_index_type (size_int (GCOV_COUNTERS
- 1)));
958 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
960 DECL_CHAIN (field
) = fields
;
964 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
965 get_gcov_unsigned_t ());
966 DECL_CHAIN (field
) = fields
;
969 /* function_info pointer pointer */
970 fn_info_ptr_type
= build_pointer_type
971 (build_qualified_type (fn_info_ptr_type
, TYPE_QUAL_CONST
));
972 field
= build_decl (BUILTINS_LOCATION
, FIELD_DECL
, NULL_TREE
,
974 DECL_CHAIN (field
) = fields
;
977 finish_builtin_struct (type
, "__gcov_info", fields
, NULL_TREE
);
980 /* Returns a CONSTRUCTOR for the gcov_info object. INFO_TYPE is the
981 gcov_info structure type, FN_ARY is the array of pointers to
982 function info objects. */
985 build_info (tree info_type
, tree fn_ary
, unsigned object_checksum
)
987 tree info_fields
= TYPE_FIELDS (info_type
);
988 tree merge_fn_type
, n_funcs
;
990 tree filename_string
;
991 int da_file_name_len
;
992 vec
<constructor_elt
, va_gc
> *v1
= NULL
;
993 vec
<constructor_elt
, va_gc
> *v2
= NULL
;
996 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
,
997 build_int_cstu (TREE_TYPE (info_fields
),
999 info_fields
= DECL_CHAIN (info_fields
);
1002 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
, null_pointer_node
);
1003 info_fields
= DECL_CHAIN (info_fields
);
1006 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
,
1007 build_int_cstu (TREE_TYPE (info_fields
),
1009 info_fields
= DECL_CHAIN (info_fields
);
1012 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
,
1013 build_int_cstu (TREE_TYPE (info_fields
),
1015 info_fields
= DECL_CHAIN (info_fields
);
1018 da_file_name_len
= strlen (da_file_name
);
1019 filename_string
= build_string (da_file_name_len
+ 1, da_file_name
);
1020 TREE_TYPE (filename_string
) = build_array_type
1021 (char_type_node
, build_index_type (size_int (da_file_name_len
)));
1022 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
,
1023 build1 (ADDR_EXPR
, TREE_TYPE (info_fields
),
1025 info_fields
= DECL_CHAIN (info_fields
);
1027 /* merge fn array -- NULL slots indicate unmeasured counters */
1028 merge_fn_type
= TREE_TYPE (TREE_TYPE (info_fields
));
1029 for (ix
= 0; ix
!= GCOV_COUNTERS
; ix
++)
1031 tree ptr
= null_pointer_node
;
1033 if ((1u << ix
) & prg_ctr_mask
)
1035 tree merge_fn
= build_decl (BUILTINS_LOCATION
,
1037 get_identifier (ctr_merge_functions
[ix
]),
1038 TREE_TYPE (merge_fn_type
));
1039 DECL_EXTERNAL (merge_fn
) = 1;
1040 TREE_PUBLIC (merge_fn
) = 1;
1041 DECL_ARTIFICIAL (merge_fn
) = 1;
1042 TREE_NOTHROW (merge_fn
) = 1;
1043 /* Initialize assembler name so we can stream out. */
1044 DECL_ASSEMBLER_NAME (merge_fn
);
1045 ptr
= build1 (ADDR_EXPR
, merge_fn_type
, merge_fn
);
1047 CONSTRUCTOR_APPEND_ELT (v2
, NULL
, ptr
);
1049 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
,
1050 build_constructor (TREE_TYPE (info_fields
), v2
));
1051 info_fields
= DECL_CHAIN (info_fields
);
1054 n_funcs
= TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (fn_ary
)));
1055 n_funcs
= fold_build2 (PLUS_EXPR
, TREE_TYPE (info_fields
),
1056 n_funcs
, size_one_node
);
1057 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
, n_funcs
);
1058 info_fields
= DECL_CHAIN (info_fields
);
1061 CONSTRUCTOR_APPEND_ELT (v1
, info_fields
,
1062 build1 (ADDR_EXPR
, TREE_TYPE (info_fields
), fn_ary
));
1063 info_fields
= DECL_CHAIN (info_fields
);
1065 gcc_assert (!info_fields
);
1066 return build_constructor (info_type
, v1
);
1069 /* Generate the constructor function to call __gcov_init. */
1072 build_init_ctor (tree gcov_info_type
)
1074 tree ctor
, stmt
, init_fn
;
1076 /* Build a decl for __gcov_init. */
1077 init_fn
= build_pointer_type (gcov_info_type
);
1078 init_fn
= build_function_type_list (void_type_node
, init_fn
, NULL
);
1079 init_fn
= build_decl (BUILTINS_LOCATION
, FUNCTION_DECL
,
1080 get_identifier ("__gcov_init"), init_fn
);
1081 TREE_PUBLIC (init_fn
) = 1;
1082 DECL_EXTERNAL (init_fn
) = 1;
1083 DECL_ASSEMBLER_NAME (init_fn
);
1085 /* Generate a call to __gcov_init(&gcov_info). */
1087 stmt
= build_fold_addr_expr (gcov_info_var
);
1088 stmt
= build_call_expr (init_fn
, 1, stmt
);
1089 append_to_statement_list (stmt
, &ctor
);
1091 /* Generate a constructor to run it. */
1092 int priority
= SUPPORTS_INIT_PRIORITY
1093 ? MAX_RESERVED_INIT_PRIORITY
: DEFAULT_INIT_PRIORITY
;
1094 cgraph_build_static_cdtor ('I', ctor
, priority
);
1097 /* Generate the destructor function to call __gcov_exit. */
1100 build_gcov_exit_decl (void)
1102 tree init_fn
= build_function_type_list (void_type_node
, NULL
);
1103 init_fn
= build_decl (BUILTINS_LOCATION
, FUNCTION_DECL
,
1104 get_identifier ("__gcov_exit"), init_fn
);
1105 TREE_PUBLIC (init_fn
) = 1;
1106 DECL_EXTERNAL (init_fn
) = 1;
1107 DECL_ASSEMBLER_NAME (init_fn
);
1109 /* Generate a call to __gcov_exit (). */
1111 tree stmt
= build_call_expr (init_fn
, 0);
1112 append_to_statement_list (stmt
, &dtor
);
1114 /* Generate a destructor to run it. */
1115 int priority
= SUPPORTS_INIT_PRIORITY
1116 ? MAX_RESERVED_INIT_PRIORITY
: DEFAULT_INIT_PRIORITY
;
1118 cgraph_build_static_cdtor ('D', dtor
, priority
);
1121 /* Generate the pointer to the gcov_info_var in a dedicated section. */
1124 build_gcov_info_var_registration (tree gcov_info_type
)
1126 tree var
= build_decl (BUILTINS_LOCATION
,
1127 VAR_DECL
, NULL_TREE
,
1128 build_pointer_type (gcov_info_type
));
1129 TREE_STATIC (var
) = 1;
1130 TREE_READONLY (var
) = 1;
1132 ASM_GENERATE_INTERNAL_LABEL (name_buf
, "LPBX", 2);
1133 DECL_NAME (var
) = get_identifier (name_buf
);
1134 get_section (profile_info_section
, SECTION_UNNAMED
, NULL
);
1135 set_decl_section_name (var
, profile_info_section
);
1136 mark_decl_referenced (var
);
1137 DECL_INITIAL (var
) = build_fold_addr_expr (gcov_info_var
);
1138 varpool_node::finalize_decl (var
);
1141 /* Create the gcov_info types and object. Generate the constructor
1142 function to call __gcov_init. Does not generate the initializer
1143 for the object. Returns TRUE if coverage data is being emitted. */
1146 coverage_obj_init (void)
1148 tree gcov_info_type
;
1149 unsigned n_counters
= 0;
1151 struct coverage_data
*fn
;
1152 struct coverage_data
**fn_prev
;
1155 no_coverage
= 1; /* Disable any further coverage. */
1160 if (symtab
->dump_file
)
1161 fprintf (symtab
->dump_file
, "Using data file %s\n", da_file_name
);
1163 /* Prune functions. */
1164 for (fn_prev
= &functions_head
; (fn
= *fn_prev
);)
1165 if (DECL_STRUCT_FUNCTION (fn
->fn_decl
))
1166 fn_prev
= &fn
->next
;
1168 /* The function is not being emitted, remove from list. */
1169 *fn_prev
= fn
->next
;
1171 if (functions_head
== NULL
)
1174 for (ix
= 0; ix
!= GCOV_COUNTERS
; ix
++)
1175 if ((1u << ix
) & prg_ctr_mask
)
1178 /* Build the info and fn_info types. These are mutually recursive. */
1179 gcov_info_type
= lang_hooks
.types
.make_type (RECORD_TYPE
);
1180 gcov_fn_info_type
= lang_hooks
.types
.make_type (RECORD_TYPE
);
1181 build_fn_info_type (gcov_fn_info_type
, n_counters
, gcov_info_type
);
1182 gcov_info_type
= lang_hooks
.types
.make_type (RECORD_TYPE
);
1183 gcov_fn_info_ptr_type
= build_pointer_type
1184 (build_qualified_type (gcov_fn_info_type
, TYPE_QUAL_CONST
));
1185 build_info_type (gcov_info_type
, gcov_fn_info_ptr_type
);
1187 /* Build the gcov info var, this is referred to in its own
1189 gcov_info_var
= build_decl (BUILTINS_LOCATION
,
1190 VAR_DECL
, NULL_TREE
, gcov_info_type
);
1191 TREE_STATIC (gcov_info_var
) = 1;
1192 ASM_GENERATE_INTERNAL_LABEL (name_buf
, "LPBX", 0);
1193 DECL_NAME (gcov_info_var
) = get_identifier (name_buf
);
1195 if (profile_info_section
)
1196 build_gcov_info_var_registration (gcov_info_type
);
1199 build_init_ctor (gcov_info_type
);
1200 build_gcov_exit_decl ();
1206 /* Generate the coverage function info for FN and DATA. Append a
1207 pointer to that object to CTOR and return the appended CTOR. */
1209 static vec
<constructor_elt
, va_gc
> *
1210 coverage_obj_fn (vec
<constructor_elt
, va_gc
> *ctor
, tree fn
,
1211 struct coverage_data
const *data
)
1213 tree init
= build_fn_info (data
, gcov_fn_info_type
, gcov_info_var
);
1214 tree var
= build_var (fn
, gcov_fn_info_type
, -1);
1216 DECL_INITIAL (var
) = init
;
1217 varpool_node::finalize_decl (var
);
1219 CONSTRUCTOR_APPEND_ELT (ctor
, NULL
,
1220 build1 (ADDR_EXPR
, gcov_fn_info_ptr_type
, var
));
1224 /* Finalize the coverage data. Generates the array of pointers to
1225 function objects from CTOR. Generate the gcov_info initializer. */
1228 coverage_obj_finish (vec
<constructor_elt
, va_gc
> *ctor
,
1229 unsigned object_checksum
)
1231 unsigned n_functions
= vec_safe_length (ctor
);
1232 tree fn_info_ary_type
= build_array_type
1233 (build_qualified_type (gcov_fn_info_ptr_type
, TYPE_QUAL_CONST
),
1234 build_index_type (size_int (n_functions
- 1)));
1235 tree fn_info_ary
= build_decl (BUILTINS_LOCATION
, VAR_DECL
, NULL_TREE
,
1239 TREE_STATIC (fn_info_ary
) = 1;
1240 ASM_GENERATE_INTERNAL_LABEL (name_buf
, "LPBX", 1);
1241 DECL_NAME (fn_info_ary
) = get_identifier (name_buf
);
1242 DECL_INITIAL (fn_info_ary
) = build_constructor (fn_info_ary_type
, ctor
);
1243 varpool_node::finalize_decl (fn_info_ary
);
1245 DECL_INITIAL (gcov_info_var
)
1246 = build_info (TREE_TYPE (gcov_info_var
), fn_info_ary
, object_checksum
);
1247 varpool_node::finalize_decl (gcov_info_var
);
1250 /* Perform file-level initialization. Read in data file, generate name
1254 coverage_init (const char *filename
)
1256 const char *original_filename
= filename
;
1257 int original_len
= strlen (original_filename
);
1258 #if HAVE_DOS_BASED_FILE_SYSTEM
1259 const char *separator
= "\\";
1261 const char *separator
= "/";
1263 int len
= strlen (filename
);
1266 /* Since coverage_init is invoked very early, before the pass
1267 manager, we need to set up the dumping explicitly. This is
1268 similar to the handling in finish_optimization_passes. */
1269 int profile_pass_num
=
1270 g
->get_passes ()->get_pass_profile ()->static_pass_number
;
1271 g
->get_dumps ()->dump_start (profile_pass_num
, NULL
);
1273 if (!IS_ABSOLUTE_PATH (filename
))
1275 /* When a profile_data_prefix is provided, then mangle full path
1276 of filename in order to prevent file path clashing. */
1277 if (profile_data_prefix
)
1279 filename
= concat (getpwd (), separator
, filename
, NULL
);
1280 if (profile_prefix_path
)
1282 if (startswith (filename
, profile_prefix_path
))
1284 filename
+= strlen (profile_prefix_path
);
1285 while (*filename
== *separator
)
1289 warning (0, "filename %qs does not start with profile "
1290 "prefix %qs", filename
, profile_prefix_path
);
1292 filename
= mangle_path (filename
);
1293 len
= strlen (filename
);
1296 profile_data_prefix
= getpwd ();
1299 if (profile_data_prefix
)
1300 prefix_len
= strlen (profile_data_prefix
);
1302 /* Name of da file. */
1303 da_file_name
= XNEWVEC (char, len
+ strlen (GCOV_DATA_SUFFIX
)
1306 if (profile_data_prefix
)
1308 memcpy (da_file_name
, profile_data_prefix
, prefix_len
);
1309 da_file_name
[prefix_len
++] = *separator
;
1311 memcpy (da_file_name
+ prefix_len
, filename
, len
);
1312 strcpy (da_file_name
+ prefix_len
+ len
, GCOV_DATA_SUFFIX
);
1314 bbg_file_stamp
= local_tick
;
1315 if (flag_auto_profile
)
1316 read_autofdo_file ();
1317 else if (flag_branch_probabilities
)
1318 read_counts_file ();
1320 /* Name of bbg file. */
1321 if (flag_test_coverage
&& !flag_compare_debug
)
1323 if (profile_note_location
)
1324 bbg_file_name
= xstrdup (profile_note_location
);
1327 bbg_file_name
= XNEWVEC (char, original_len
+ strlen (GCOV_NOTE_SUFFIX
) + 1);
1328 memcpy (bbg_file_name
, original_filename
, original_len
);
1329 strcpy (bbg_file_name
+ original_len
, GCOV_NOTE_SUFFIX
);
1332 if (!gcov_open (bbg_file_name
, -1))
1334 error ("cannot open %s", bbg_file_name
);
1335 bbg_file_name
= NULL
;
1339 gcov_write_unsigned (GCOV_NOTE_MAGIC
);
1340 gcov_write_unsigned (GCOV_VERSION
);
1341 gcov_write_unsigned (bbg_file_stamp
);
1342 /* Use an arbitrary checksum */
1343 gcov_write_unsigned (0);
1344 gcov_write_string (getpwd ());
1346 /* Do not support has_unexecuted_blocks for Ada. */
1347 gcov_write_unsigned (strcmp (lang_hooks
.name
, "GNU Ada") != 0);
1351 g
->get_dumps ()->dump_finish (profile_pass_num
);
1354 /* Performs file-level cleanup. Close notes file, generate coverage
1355 variables and constructor. */
1358 coverage_finish (void)
1360 if (bbg_file_name
&& gcov_close ())
1361 unlink (bbg_file_name
);
1363 if (!flag_branch_probabilities
&& flag_test_coverage
1364 && (!local_tick
|| local_tick
== (unsigned)-1))
1365 /* Only remove the da file, if we're emitting coverage code and
1366 cannot uniquely stamp it. If we can stamp it, libgcov will DTRT. */
1367 unlink (da_file_name
);
1369 /* Global GCDA checksum that aggregates all functions. */
1370 unsigned object_checksum
= 0;
1372 if (coverage_obj_init ())
1374 vec
<constructor_elt
, va_gc
> *fn_ctor
= NULL
;
1375 struct coverage_data
*fn
;
1377 for (fn
= functions_head
; fn
; fn
= fn
->next
)
1379 fn_ctor
= coverage_obj_fn (fn_ctor
, fn
->fn_decl
, fn
);
1381 object_checksum
= crc32_unsigned (object_checksum
, fn
->ident
);
1382 object_checksum
= crc32_unsigned (object_checksum
,
1383 fn
->lineno_checksum
);
1384 object_checksum
= crc32_unsigned (object_checksum
, fn
->cfg_checksum
);
1386 coverage_obj_finish (fn_ctor
, object_checksum
);
1389 XDELETEVEC (da_file_name
);
1390 da_file_name
= NULL
;
1393 #include "gt-coverage.h"