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