annotate gcc/coverage.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents f6334be47118
children 84e7813d76e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 /* Read and write coverage files, and associated functionality.
111
kono
parents: 67
diff changeset
2 Copyright (C) 1990-2017 Free Software Foundation, Inc.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 Contributed by James E. Wilson, UC Berkeley/Cygnus Support;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 based on some ideas from Dain Samples of UC Berkeley.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 Further mangling by Bob Manson, Cygnus Support.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 Further mangled by Nathan Sidwell, CodeSourcery
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 This file is part of GCC.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
9
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 GCC is free software; you can redistribute it and/or modify it under
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
11 the terms of the GNU General Public License as published by the Free
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
12 Software Foundation; either version 3, or (at your option) any later
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
13 version.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
14
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
18 for more details.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
19
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
20 You should have received a copy of the GNU General Public License
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
21 along with GCC; see the file COPYING3. If not see
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
22 <http://www.gnu.org/licenses/>. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
23
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
24
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
25 #define GCOV_LINKAGE
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
26
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
27 #include "config.h"
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
28 #include "system.h"
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
29 #include "coretypes.h"
111
kono
parents: 67
diff changeset
30 #include "backend.h"
kono
parents: 67
diff changeset
31 #include "target.h"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
32 #include "rtl.h"
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
33 #include "tree.h"
111
kono
parents: 67
diff changeset
34 #include "tree-pass.h"
kono
parents: 67
diff changeset
35 #include "memmodel.h"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
36 #include "tm_p.h"
111
kono
parents: 67
diff changeset
37 #include "stringpool.h"
kono
parents: 67
diff changeset
38 #include "cgraph.h"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
39 #include "coverage.h"
111
kono
parents: 67
diff changeset
40 #include "diagnostic-core.h"
kono
parents: 67
diff changeset
41 #include "fold-const.h"
kono
parents: 67
diff changeset
42 #include "stor-layout.h"
kono
parents: 67
diff changeset
43 #include "output.h"
kono
parents: 67
diff changeset
44 #include "toplev.h"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
45 #include "langhooks.h"
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
46 #include "tree-iterator.h"
111
kono
parents: 67
diff changeset
47 #include "context.h"
kono
parents: 67
diff changeset
48 #include "pass_manager.h"
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
49 #include "intl.h"
111
kono
parents: 67
diff changeset
50 #include "params.h"
kono
parents: 67
diff changeset
51 #include "auto-profile.h"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
52
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
53 #include "gcov-io.c"
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
54
111
kono
parents: 67
diff changeset
55 struct GTY((chain_next ("%h.next"))) coverage_data
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
56 {
111
kono
parents: 67
diff changeset
57 struct coverage_data *next; /* next function */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
58 unsigned ident; /* function ident */
111
kono
parents: 67
diff changeset
59 unsigned lineno_checksum; /* function lineno checksum */
kono
parents: 67
diff changeset
60 unsigned cfg_checksum; /* function cfg checksum */
kono
parents: 67
diff changeset
61 tree fn_decl; /* the function decl */
kono
parents: 67
diff changeset
62 tree ctr_vars[GCOV_COUNTERS]; /* counter variables. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
63 };
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
64
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
65 /* Counts information for a function. */
111
kono
parents: 67
diff changeset
66 struct counts_entry : pointer_hash <counts_entry>
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
67 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
68 /* We hash by */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
69 unsigned ident;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
70 unsigned ctr;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
71
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
72 /* Store */
111
kono
parents: 67
diff changeset
73 unsigned lineno_checksum;
kono
parents: 67
diff changeset
74 unsigned cfg_checksum;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
75 gcov_type *counts;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
76 struct gcov_ctr_summary summary;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
77
111
kono
parents: 67
diff changeset
78 /* hash_table support. */
kono
parents: 67
diff changeset
79 static inline hashval_t hash (const counts_entry *);
kono
parents: 67
diff changeset
80 static int equal (const counts_entry *, const counts_entry *);
kono
parents: 67
diff changeset
81 static void remove (counts_entry *);
kono
parents: 67
diff changeset
82 };
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
83
111
kono
parents: 67
diff changeset
84 static GTY(()) struct coverage_data *functions_head = 0;
kono
parents: 67
diff changeset
85 static struct coverage_data **functions_tail = &functions_head;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
86 static unsigned no_coverage = 0;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
87
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
88 /* Cumulative counter information for whole program. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
89 static unsigned prg_ctr_mask; /* Mask of counter types generated. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
90
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
91 /* Counter information for current function. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
92 static unsigned fn_ctr_mask; /* Mask of counters used. */
111
kono
parents: 67
diff changeset
93 static GTY(()) tree fn_v_ctrs[GCOV_COUNTERS]; /* counter variables. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
94 static unsigned fn_n_ctrs[GCOV_COUNTERS]; /* Counters allocated. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
95 static unsigned fn_b_ctrs[GCOV_COUNTERS]; /* Allocation base. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
96
111
kono
parents: 67
diff changeset
97 /* Coverage info VAR_DECL and function info type nodes. */
kono
parents: 67
diff changeset
98 static GTY(()) tree gcov_info_var;
kono
parents: 67
diff changeset
99 static GTY(()) tree gcov_fn_info_type;
kono
parents: 67
diff changeset
100 static GTY(()) tree gcov_fn_info_ptr_type;
kono
parents: 67
diff changeset
101
kono
parents: 67
diff changeset
102 /* Name of the notes (gcno) output file. The "bbg" prefix is for
kono
parents: 67
diff changeset
103 historical reasons, when the notes file contained only the
kono
parents: 67
diff changeset
104 basic block graph notes.
kono
parents: 67
diff changeset
105 If this is NULL we're not writing to the notes file. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
106 static char *bbg_file_name;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
107
111
kono
parents: 67
diff changeset
108 /* File stamp for notes file. */
kono
parents: 67
diff changeset
109 static unsigned bbg_file_stamp;
kono
parents: 67
diff changeset
110
kono
parents: 67
diff changeset
111 /* Name of the count data (gcda) file. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
112 static char *da_file_name;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
113
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
114 /* The names of merge functions for counters. */
111
kono
parents: 67
diff changeset
115 #define STR(str) #str
kono
parents: 67
diff changeset
116 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) STR(__gcov_merge ## FN_TYPE),
kono
parents: 67
diff changeset
117 static const char *const ctr_merge_functions[GCOV_COUNTERS] = {
kono
parents: 67
diff changeset
118 #include "gcov-counter.def"
kono
parents: 67
diff changeset
119 };
kono
parents: 67
diff changeset
120 #undef DEF_GCOV_COUNTER
kono
parents: 67
diff changeset
121 #undef STR
kono
parents: 67
diff changeset
122
kono
parents: 67
diff changeset
123 #define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) NAME,
kono
parents: 67
diff changeset
124 static const char *const ctr_names[GCOV_COUNTERS] = {
kono
parents: 67
diff changeset
125 #include "gcov-counter.def"
kono
parents: 67
diff changeset
126 };
kono
parents: 67
diff changeset
127 #undef DEF_GCOV_COUNTER
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
128
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
129 /* Forward declarations. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
130 static void read_counts_file (void);
111
kono
parents: 67
diff changeset
131 static tree build_var (tree, tree, int);
kono
parents: 67
diff changeset
132 static void build_fn_info_type (tree, unsigned, tree);
kono
parents: 67
diff changeset
133 static void build_info_type (tree, tree);
kono
parents: 67
diff changeset
134 static tree build_fn_info (const struct coverage_data *, tree, tree);
kono
parents: 67
diff changeset
135 static tree build_info (tree, tree);
kono
parents: 67
diff changeset
136 static bool coverage_obj_init (void);
kono
parents: 67
diff changeset
137 static vec<constructor_elt, va_gc> *coverage_obj_fn
kono
parents: 67
diff changeset
138 (vec<constructor_elt, va_gc> *, tree, struct coverage_data const *);
kono
parents: 67
diff changeset
139 static void coverage_obj_finish (vec<constructor_elt, va_gc> *);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
140
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
141 /* Return the type node for gcov_type. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
142
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
143 tree
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
144 get_gcov_type (void)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
145 {
111
kono
parents: 67
diff changeset
146 scalar_int_mode mode
kono
parents: 67
diff changeset
147 = smallest_int_mode_for_size (LONG_LONG_TYPE_SIZE > 32 ? 64 : 32);
kono
parents: 67
diff changeset
148 return lang_hooks.types.type_for_mode (mode, false);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
149 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
150
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
151 /* Return the type node for gcov_unsigned_t. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
152
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
153 static tree
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
154 get_gcov_unsigned_t (void)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
155 {
111
kono
parents: 67
diff changeset
156 scalar_int_mode mode = smallest_int_mode_for_size (32);
kono
parents: 67
diff changeset
157 return lang_hooks.types.type_for_mode (mode, true);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
158 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
159
111
kono
parents: 67
diff changeset
160 inline hashval_t
kono
parents: 67
diff changeset
161 counts_entry::hash (const counts_entry *entry)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
162 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
163 return entry->ident * GCOV_COUNTERS + entry->ctr;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
164 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
165
111
kono
parents: 67
diff changeset
166 inline int
kono
parents: 67
diff changeset
167 counts_entry::equal (const counts_entry *entry1, const counts_entry *entry2)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
168 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
169 return entry1->ident == entry2->ident && entry1->ctr == entry2->ctr;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
170 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
171
111
kono
parents: 67
diff changeset
172 inline void
kono
parents: 67
diff changeset
173 counts_entry::remove (counts_entry *entry)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
174 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
175 free (entry->counts);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
176 free (entry);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
177 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
178
111
kono
parents: 67
diff changeset
179 /* Hash table of count data. */
kono
parents: 67
diff changeset
180 static hash_table<counts_entry> *counts_hash;
kono
parents: 67
diff changeset
181
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
182 /* Read in the counts file, if available. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
183
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
184 static void
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
185 read_counts_file (void)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
186 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
187 gcov_unsigned_t fn_ident = 0;
111
kono
parents: 67
diff changeset
188 struct gcov_summary summary;
kono
parents: 67
diff changeset
189 unsigned new_summary = 1;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
190 gcov_unsigned_t tag;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
191 int is_error = 0;
111
kono
parents: 67
diff changeset
192 unsigned lineno_checksum = 0;
kono
parents: 67
diff changeset
193 unsigned cfg_checksum = 0;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
194
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
195 if (!gcov_open (da_file_name, 1))
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
196 return;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
197
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
198 if (!gcov_magic (gcov_read_unsigned (), GCOV_DATA_MAGIC))
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
199 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
200 warning (0, "%qs is not a gcov data file", da_file_name);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
201 gcov_close ();
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
202 return;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
203 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
204 else if ((tag = gcov_read_unsigned ()) != GCOV_VERSION)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
205 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
206 char v[4], e[4];
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
207
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
208 GCOV_UNSIGNED2STRING (v, tag);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
209 GCOV_UNSIGNED2STRING (e, GCOV_VERSION);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
210
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
211 warning (0, "%qs is version %q.*s, expected version %q.*s",
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
212 da_file_name, 4, v, 4, e);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
213 gcov_close ();
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
214 return;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
215 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
216
111
kono
parents: 67
diff changeset
217 /* Read the stamp, used for creating a generation count. */
kono
parents: 67
diff changeset
218 tag = gcov_read_unsigned ();
kono
parents: 67
diff changeset
219 bbg_file_stamp = crc32_unsigned (bbg_file_stamp, tag);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
220
111
kono
parents: 67
diff changeset
221 counts_hash = new hash_table<counts_entry> (10);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
222 while ((tag = gcov_read_unsigned ()))
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
223 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
224 gcov_unsigned_t length;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
225 gcov_position_t offset;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
226
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
227 length = gcov_read_unsigned ();
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
228 offset = gcov_position ();
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
229 if (tag == GCOV_TAG_FUNCTION)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
230 {
111
kono
parents: 67
diff changeset
231 if (length)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
232 {
111
kono
parents: 67
diff changeset
233 fn_ident = gcov_read_unsigned ();
kono
parents: 67
diff changeset
234 lineno_checksum = gcov_read_unsigned ();
kono
parents: 67
diff changeset
235 cfg_checksum = gcov_read_unsigned ();
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
236 }
111
kono
parents: 67
diff changeset
237 else
kono
parents: 67
diff changeset
238 fn_ident = lineno_checksum = cfg_checksum = 0;
kono
parents: 67
diff changeset
239 new_summary = 1;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
240 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
241 else if (tag == GCOV_TAG_PROGRAM_SUMMARY)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
242 {
111
kono
parents: 67
diff changeset
243 struct gcov_summary sum;
kono
parents: 67
diff changeset
244 unsigned ix;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
245
111
kono
parents: 67
diff changeset
246 if (new_summary)
kono
parents: 67
diff changeset
247 memset (&summary, 0, sizeof (summary));
kono
parents: 67
diff changeset
248
kono
parents: 67
diff changeset
249 gcov_read_summary (&sum);
kono
parents: 67
diff changeset
250 for (ix = 0; ix != GCOV_COUNTERS_SUMMABLE; ix++)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
251 {
111
kono
parents: 67
diff changeset
252 summary.ctrs[ix].runs += sum.ctrs[ix].runs;
kono
parents: 67
diff changeset
253 summary.ctrs[ix].sum_all += sum.ctrs[ix].sum_all;
kono
parents: 67
diff changeset
254 if (summary.ctrs[ix].run_max < sum.ctrs[ix].run_max)
kono
parents: 67
diff changeset
255 summary.ctrs[ix].run_max = sum.ctrs[ix].run_max;
kono
parents: 67
diff changeset
256 summary.ctrs[ix].sum_max += sum.ctrs[ix].sum_max;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
257 }
111
kono
parents: 67
diff changeset
258 if (new_summary)
kono
parents: 67
diff changeset
259 memcpy (summary.ctrs[GCOV_COUNTER_ARCS].histogram,
kono
parents: 67
diff changeset
260 sum.ctrs[GCOV_COUNTER_ARCS].histogram,
kono
parents: 67
diff changeset
261 sizeof (gcov_bucket_type) * GCOV_HISTOGRAM_SIZE);
kono
parents: 67
diff changeset
262 else
kono
parents: 67
diff changeset
263 gcov_histogram_merge (summary.ctrs[GCOV_COUNTER_ARCS].histogram,
kono
parents: 67
diff changeset
264 sum.ctrs[GCOV_COUNTER_ARCS].histogram);
kono
parents: 67
diff changeset
265 new_summary = 0;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
266 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
267 else if (GCOV_TAG_IS_COUNTER (tag) && fn_ident)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
268 {
111
kono
parents: 67
diff changeset
269 counts_entry **slot, *entry, elt;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
270 unsigned n_counts = GCOV_TAG_COUNTER_NUM (length);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
271 unsigned ix;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
272
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
273 elt.ident = fn_ident;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
274 elt.ctr = GCOV_COUNTER_FOR_TAG (tag);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
275
111
kono
parents: 67
diff changeset
276 slot = counts_hash->find_slot (&elt, INSERT);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
277 entry = *slot;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
278 if (!entry)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
279 {
111
kono
parents: 67
diff changeset
280 *slot = entry = XCNEW (counts_entry);
kono
parents: 67
diff changeset
281 entry->ident = fn_ident;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
282 entry->ctr = elt.ctr;
111
kono
parents: 67
diff changeset
283 entry->lineno_checksum = lineno_checksum;
kono
parents: 67
diff changeset
284 entry->cfg_checksum = cfg_checksum;
kono
parents: 67
diff changeset
285 if (elt.ctr < GCOV_COUNTERS_SUMMABLE)
kono
parents: 67
diff changeset
286 entry->summary = summary.ctrs[elt.ctr];
kono
parents: 67
diff changeset
287 entry->summary.num = n_counts;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
288 entry->counts = XCNEWVEC (gcov_type, n_counts);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
289 }
111
kono
parents: 67
diff changeset
290 else if (entry->lineno_checksum != lineno_checksum
kono
parents: 67
diff changeset
291 || entry->cfg_checksum != cfg_checksum)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
292 {
111
kono
parents: 67
diff changeset
293 error ("Profile data for function %u is corrupted", fn_ident);
kono
parents: 67
diff changeset
294 error ("checksum is (%x,%x) instead of (%x,%x)",
kono
parents: 67
diff changeset
295 entry->lineno_checksum, entry->cfg_checksum,
kono
parents: 67
diff changeset
296 lineno_checksum, cfg_checksum);
kono
parents: 67
diff changeset
297 delete counts_hash;
kono
parents: 67
diff changeset
298 counts_hash = NULL;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
299 break;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
300 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
301 else if (entry->summary.num != n_counts)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
302 {
111
kono
parents: 67
diff changeset
303 error ("Profile data for function %u is corrupted", fn_ident);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
304 error ("number of counters is %d instead of %d", entry->summary.num, n_counts);
111
kono
parents: 67
diff changeset
305 delete counts_hash;
kono
parents: 67
diff changeset
306 counts_hash = NULL;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
307 break;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
308 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
309 else if (elt.ctr >= GCOV_COUNTERS_SUMMABLE)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
310 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
311 error ("cannot merge separate %s counters for function %u",
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
312 ctr_names[elt.ctr], fn_ident);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
313 goto skip_merge;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
314 }
111
kono
parents: 67
diff changeset
315 else
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
316 {
111
kono
parents: 67
diff changeset
317 entry->summary.runs += summary.ctrs[elt.ctr].runs;
kono
parents: 67
diff changeset
318 entry->summary.sum_all += summary.ctrs[elt.ctr].sum_all;
kono
parents: 67
diff changeset
319 if (entry->summary.run_max < summary.ctrs[elt.ctr].run_max)
kono
parents: 67
diff changeset
320 entry->summary.run_max = summary.ctrs[elt.ctr].run_max;
kono
parents: 67
diff changeset
321 entry->summary.sum_max += summary.ctrs[elt.ctr].sum_max;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
322 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
323 for (ix = 0; ix != n_counts; ix++)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
324 entry->counts[ix] += gcov_read_counter ();
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
325 skip_merge:;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
326 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
327 gcov_sync (offset, length);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
328 if ((is_error = gcov_is_error ()))
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
329 {
111
kono
parents: 67
diff changeset
330 error (is_error < 0
kono
parents: 67
diff changeset
331 ? G_("%qs has overflowed")
kono
parents: 67
diff changeset
332 : G_("%qs is corrupted"),
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
333 da_file_name);
111
kono
parents: 67
diff changeset
334 delete counts_hash;
kono
parents: 67
diff changeset
335 counts_hash = NULL;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
336 break;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
337 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
338 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
339
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
340 gcov_close ();
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
341 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
342
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
343 /* Returns the counters for a particular tag. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
344
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
345 gcov_type *
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
346 get_coverage_counts (unsigned counter, unsigned expected,
111
kono
parents: 67
diff changeset
347 unsigned cfg_checksum, unsigned lineno_checksum,
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
348 const struct gcov_ctr_summary **summary)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
349 {
111
kono
parents: 67
diff changeset
350 counts_entry *entry, elt;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
351
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
352 /* No hash table, no counts. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
353 if (!counts_hash)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
354 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
355 static int warned = 0;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
356
111
kono
parents: 67
diff changeset
357 if (!warned++ && dump_enabled_p ())
kono
parents: 67
diff changeset
358 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, input_location,
kono
parents: 67
diff changeset
359 (flag_guess_branch_prob
kono
parents: 67
diff changeset
360 ? "file %s not found, execution counts estimated\n"
kono
parents: 67
diff changeset
361 : "file %s not found, execution counts assumed to "
kono
parents: 67
diff changeset
362 "be zero\n"),
kono
parents: 67
diff changeset
363 da_file_name);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
364 return NULL;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
365 }
111
kono
parents: 67
diff changeset
366 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID))
kono
parents: 67
diff changeset
367 elt.ident = current_function_funcdef_no + 1;
kono
parents: 67
diff changeset
368 else
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
369 {
111
kono
parents: 67
diff changeset
370 gcc_assert (coverage_node_map_initialized_p ());
kono
parents: 67
diff changeset
371 elt.ident = cgraph_node::get (cfun->decl)->profile_id;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
372 }
111
kono
parents: 67
diff changeset
373 elt.ctr = counter;
kono
parents: 67
diff changeset
374 entry = counts_hash->find (&elt);
kono
parents: 67
diff changeset
375 if (!entry || !entry->summary.num)
kono
parents: 67
diff changeset
376 /* The function was not emitted, or is weak and not chosen in the
kono
parents: 67
diff changeset
377 final executable. Silently fail, because there's nothing we
kono
parents: 67
diff changeset
378 can do about it. */
kono
parents: 67
diff changeset
379 return NULL;
kono
parents: 67
diff changeset
380
kono
parents: 67
diff changeset
381 if (entry->cfg_checksum != cfg_checksum
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
382 || entry->summary.num != expected)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
383 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
384 static int warned = 0;
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
385 bool warning_printed = false;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
386 tree id = DECL_ASSEMBLER_NAME (current_function_decl);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
387
111
kono
parents: 67
diff changeset
388 warning_printed =
kono
parents: 67
diff changeset
389 warning_at (input_location, OPT_Wcoverage_mismatch,
kono
parents: 67
diff changeset
390 "the control flow of function %qE does not match "
kono
parents: 67
diff changeset
391 "its profile data (counter %qs)", id, ctr_names[counter]);
kono
parents: 67
diff changeset
392 if (warning_printed && dump_enabled_p ())
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
393 {
111
kono
parents: 67
diff changeset
394 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, input_location,
kono
parents: 67
diff changeset
395 "use -Wno-error=coverage-mismatch to tolerate "
kono
parents: 67
diff changeset
396 "the mismatch but performance may drop if the "
kono
parents: 67
diff changeset
397 "function is hot\n");
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
398
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
399 if (!seen_error ()
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
400 && !warned++)
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
401 {
111
kono
parents: 67
diff changeset
402 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, input_location,
kono
parents: 67
diff changeset
403 "coverage mismatch ignored\n");
kono
parents: 67
diff changeset
404 dump_printf (MSG_OPTIMIZED_LOCATIONS,
kono
parents: 67
diff changeset
405 flag_guess_branch_prob
kono
parents: 67
diff changeset
406 ? G_("execution counts estimated\n")
kono
parents: 67
diff changeset
407 : G_("execution counts assumed to be zero\n"));
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
408 if (!flag_guess_branch_prob)
111
kono
parents: 67
diff changeset
409 dump_printf (MSG_OPTIMIZED_LOCATIONS,
kono
parents: 67
diff changeset
410 "this can result in poorly optimized code\n");
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
411 }
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
412 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
413
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
414 return NULL;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
415 }
111
kono
parents: 67
diff changeset
416 else if (entry->lineno_checksum != lineno_checksum)
kono
parents: 67
diff changeset
417 {
kono
parents: 67
diff changeset
418 warning (OPT_Wcoverage_mismatch,
kono
parents: 67
diff changeset
419 "source locations for function %qE have changed,"
kono
parents: 67
diff changeset
420 " the profile data may be out of date",
kono
parents: 67
diff changeset
421 DECL_ASSEMBLER_NAME (current_function_decl));
kono
parents: 67
diff changeset
422 }
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
423
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
424 if (summary)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
425 *summary = &entry->summary;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
426
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
427 return entry->counts;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
428 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
429
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
430 /* Allocate NUM counters of type COUNTER. Returns nonzero if the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
431 allocation succeeded. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
432
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
433 int
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
434 coverage_counter_alloc (unsigned counter, unsigned num)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
435 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
436 if (no_coverage)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
437 return 0;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
438
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
439 if (!num)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
440 return 1;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
441
111
kono
parents: 67
diff changeset
442 if (!fn_v_ctrs[counter])
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
443 {
111
kono
parents: 67
diff changeset
444 tree array_type = build_array_type (get_gcov_type (), NULL_TREE);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
445
111
kono
parents: 67
diff changeset
446 fn_v_ctrs[counter]
kono
parents: 67
diff changeset
447 = build_var (current_function_decl, array_type, counter);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
448 }
111
kono
parents: 67
diff changeset
449
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
450 fn_b_ctrs[counter] = fn_n_ctrs[counter];
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
451 fn_n_ctrs[counter] += num;
111
kono
parents: 67
diff changeset
452
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
453 fn_ctr_mask |= 1 << counter;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
454 return 1;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
455 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
456
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
457 /* Generate a tree to access COUNTER NO. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
458
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
459 tree
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
460 tree_coverage_counter_ref (unsigned counter, unsigned no)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
461 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
462 tree gcov_type_node = get_gcov_type ();
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
463
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
464 gcc_assert (no < fn_n_ctrs[counter] - fn_b_ctrs[counter]);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
465
111
kono
parents: 67
diff changeset
466 no += fn_b_ctrs[counter];
kono
parents: 67
diff changeset
467
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
468 /* "no" here is an array index, scaled to bytes later. */
111
kono
parents: 67
diff changeset
469 return build4 (ARRAY_REF, gcov_type_node, fn_v_ctrs[counter],
kono
parents: 67
diff changeset
470 build_int_cst (integer_type_node, no), NULL, NULL);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
471 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
472
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
473 /* Generate a tree to access the address of COUNTER NO. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
474
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
475 tree
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
476 tree_coverage_counter_addr (unsigned counter, unsigned no)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
477 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
478 tree gcov_type_node = get_gcov_type ();
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
479
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
480 gcc_assert (no < fn_n_ctrs[counter] - fn_b_ctrs[counter]);
111
kono
parents: 67
diff changeset
481 no += fn_b_ctrs[counter];
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
482
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
483 /* "no" here is an array index, scaled to bytes later. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
484 return build_fold_addr_expr (build4 (ARRAY_REF, gcov_type_node,
111
kono
parents: 67
diff changeset
485 fn_v_ctrs[counter],
kono
parents: 67
diff changeset
486 build_int_cst (integer_type_node, no),
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
487 NULL, NULL));
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
488 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
489
111
kono
parents: 67
diff changeset
490
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
491 /* Generate a checksum for a string. CHKSUM is the current
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
492 checksum. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
493
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
494 static unsigned
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
495 coverage_checksum_string (unsigned chksum, const char *string)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
496 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
497 int i;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
498 char *dup = NULL;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
499
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
500 /* Look for everything that looks if it were produced by
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
501 get_file_function_name and zero out the second part
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
502 that may result from flag_random_seed. This is not critical
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
503 as the checksums are used only for sanity checking. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
504 for (i = 0; string[i]; i++)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
505 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
506 int offset = 0;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
507 if (!strncmp (string + i, "_GLOBAL__N_", 11))
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
508 offset = 11;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
509 if (!strncmp (string + i, "_GLOBAL__", 9))
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
510 offset = 9;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
511
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
512 /* C++ namespaces do have scheme:
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
513 _GLOBAL__N_<filename>_<wrongmagicnumber>_<magicnumber>functionname
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
514 since filename might contain extra underscores there seems
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
515 to be no better chance then walk all possible offsets looking
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
516 for magicnumber. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
517 if (offset)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
518 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
519 for (i = i + offset; string[i]; i++)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
520 if (string[i]=='_')
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
521 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
522 int y;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
523
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
524 for (y = 1; y < 9; y++)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
525 if (!(string[i + y] >= '0' && string[i + y] <= '9')
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
526 && !(string[i + y] >= 'A' && string[i + y] <= 'F'))
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
527 break;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
528 if (y != 9 || string[i + 9] != '_')
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
529 continue;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
530 for (y = 10; y < 18; y++)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
531 if (!(string[i + y] >= '0' && string[i + y] <= '9')
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
532 && !(string[i + y] >= 'A' && string[i + y] <= 'F'))
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
533 break;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
534 if (y != 18)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
535 continue;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
536 if (!dup)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
537 string = dup = xstrdup (string);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
538 for (y = 10; y < 18; y++)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
539 dup[i + y] = '0';
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
540 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
541 break;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
542 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
543 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
544
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
545 chksum = crc32_string (chksum, string);
111
kono
parents: 67
diff changeset
546 free (dup);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
547
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
548 return chksum;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
549 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
550
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
551 /* Compute checksum for the current function. We generate a CRC32. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
552
111
kono
parents: 67
diff changeset
553 unsigned
kono
parents: 67
diff changeset
554 coverage_compute_lineno_checksum (void)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
555 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
556 expanded_location xloc
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
557 = expand_location (DECL_SOURCE_LOCATION (current_function_decl));
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
558 unsigned chksum = xloc.line;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
559
111
kono
parents: 67
diff changeset
560 if (xloc.file)
kono
parents: 67
diff changeset
561 chksum = coverage_checksum_string (chksum, xloc.file);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
562 chksum = coverage_checksum_string
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
563 (chksum, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (current_function_decl)));
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
564
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
565 return chksum;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
566 }
111
kono
parents: 67
diff changeset
567
kono
parents: 67
diff changeset
568 /* Compute profile ID. This is better to be unique in whole program. */
kono
parents: 67
diff changeset
569
kono
parents: 67
diff changeset
570 unsigned
kono
parents: 67
diff changeset
571 coverage_compute_profile_id (struct cgraph_node *n)
kono
parents: 67
diff changeset
572 {
kono
parents: 67
diff changeset
573 unsigned chksum;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
574
111
kono
parents: 67
diff changeset
575 /* Externally visible symbols have unique name. */
kono
parents: 67
diff changeset
576 if (TREE_PUBLIC (n->decl) || DECL_EXTERNAL (n->decl) || n->unique_name)
kono
parents: 67
diff changeset
577 {
kono
parents: 67
diff changeset
578 chksum = coverage_checksum_string
kono
parents: 67
diff changeset
579 (0, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n->decl)));
kono
parents: 67
diff changeset
580 }
kono
parents: 67
diff changeset
581 else
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
582 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
583 expanded_location xloc
111
kono
parents: 67
diff changeset
584 = expand_location (DECL_SOURCE_LOCATION (n->decl));
kono
parents: 67
diff changeset
585 bool use_name_only = (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID) == 0);
kono
parents: 67
diff changeset
586
kono
parents: 67
diff changeset
587 chksum = (use_name_only ? 0 : xloc.line);
kono
parents: 67
diff changeset
588 if (xloc.file)
kono
parents: 67
diff changeset
589 chksum = coverage_checksum_string (chksum, xloc.file);
kono
parents: 67
diff changeset
590 chksum = coverage_checksum_string
kono
parents: 67
diff changeset
591 (chksum, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n->decl)));
kono
parents: 67
diff changeset
592 if (!use_name_only && first_global_object_name)
kono
parents: 67
diff changeset
593 chksum = coverage_checksum_string
kono
parents: 67
diff changeset
594 (chksum, first_global_object_name);
kono
parents: 67
diff changeset
595 chksum = coverage_checksum_string
kono
parents: 67
diff changeset
596 (chksum, aux_base_name);
kono
parents: 67
diff changeset
597 }
kono
parents: 67
diff changeset
598
kono
parents: 67
diff changeset
599 /* Non-negative integers are hopefully small enough to fit in all targets.
kono
parents: 67
diff changeset
600 Gcov file formats wants non-zero function IDs. */
kono
parents: 67
diff changeset
601 chksum = chksum & 0x7fffffff;
kono
parents: 67
diff changeset
602 return chksum + (!chksum);
kono
parents: 67
diff changeset
603 }
kono
parents: 67
diff changeset
604
kono
parents: 67
diff changeset
605 /* Compute cfg checksum for the function FN given as argument.
kono
parents: 67
diff changeset
606 The checksum is calculated carefully so that
kono
parents: 67
diff changeset
607 source code changes that doesn't affect the control flow graph
kono
parents: 67
diff changeset
608 won't change the checksum.
kono
parents: 67
diff changeset
609 This is to make the profile data useable across source code change.
kono
parents: 67
diff changeset
610 The downside of this is that the compiler may use potentially
kono
parents: 67
diff changeset
611 wrong profile data - that the source code change has non-trivial impact
kono
parents: 67
diff changeset
612 on the validity of profile data (e.g. the reversed condition)
kono
parents: 67
diff changeset
613 but the compiler won't detect the change and use the wrong profile data. */
kono
parents: 67
diff changeset
614
kono
parents: 67
diff changeset
615 unsigned
kono
parents: 67
diff changeset
616 coverage_compute_cfg_checksum (struct function *fn)
kono
parents: 67
diff changeset
617 {
kono
parents: 67
diff changeset
618 basic_block bb;
kono
parents: 67
diff changeset
619 unsigned chksum = n_basic_blocks_for_fn (fn);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
620
111
kono
parents: 67
diff changeset
621 FOR_EACH_BB_FN (bb, fn)
kono
parents: 67
diff changeset
622 {
kono
parents: 67
diff changeset
623 edge e;
kono
parents: 67
diff changeset
624 edge_iterator ei;
kono
parents: 67
diff changeset
625 chksum = crc32_byte (chksum, bb->index);
kono
parents: 67
diff changeset
626 FOR_EACH_EDGE (e, ei, bb->succs)
kono
parents: 67
diff changeset
627 {
kono
parents: 67
diff changeset
628 chksum = crc32_byte (chksum, e->dest->index);
kono
parents: 67
diff changeset
629 }
kono
parents: 67
diff changeset
630 }
kono
parents: 67
diff changeset
631
kono
parents: 67
diff changeset
632 return chksum;
kono
parents: 67
diff changeset
633 }
kono
parents: 67
diff changeset
634
kono
parents: 67
diff changeset
635 /* Begin output to the notes file for the current function.
kono
parents: 67
diff changeset
636 Writes the function header. Returns nonzero if data should be output. */
kono
parents: 67
diff changeset
637
kono
parents: 67
diff changeset
638 int
kono
parents: 67
diff changeset
639 coverage_begin_function (unsigned lineno_checksum, unsigned cfg_checksum)
kono
parents: 67
diff changeset
640 {
kono
parents: 67
diff changeset
641 expanded_location xloc;
kono
parents: 67
diff changeset
642 unsigned long offset;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
643
111
kono
parents: 67
diff changeset
644 /* We don't need to output .gcno file unless we're under -ftest-coverage
kono
parents: 67
diff changeset
645 (e.g. -fprofile-arcs/generate/use don't need .gcno to work). */
kono
parents: 67
diff changeset
646 if (no_coverage || !bbg_file_name)
kono
parents: 67
diff changeset
647 return 0;
kono
parents: 67
diff changeset
648
kono
parents: 67
diff changeset
649 xloc = expand_location (DECL_SOURCE_LOCATION (current_function_decl));
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
650
111
kono
parents: 67
diff changeset
651 /* Announce function */
kono
parents: 67
diff changeset
652 offset = gcov_write_tag (GCOV_TAG_FUNCTION);
kono
parents: 67
diff changeset
653 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID))
kono
parents: 67
diff changeset
654 gcov_write_unsigned (current_function_funcdef_no + 1);
kono
parents: 67
diff changeset
655 else
kono
parents: 67
diff changeset
656 {
kono
parents: 67
diff changeset
657 gcc_assert (coverage_node_map_initialized_p ());
kono
parents: 67
diff changeset
658 gcov_write_unsigned (
kono
parents: 67
diff changeset
659 cgraph_node::get (current_function_decl)->profile_id);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
660 }
111
kono
parents: 67
diff changeset
661
kono
parents: 67
diff changeset
662 gcov_write_unsigned (lineno_checksum);
kono
parents: 67
diff changeset
663 gcov_write_unsigned (cfg_checksum);
kono
parents: 67
diff changeset
664 gcov_write_string (IDENTIFIER_POINTER
kono
parents: 67
diff changeset
665 (DECL_ASSEMBLER_NAME (current_function_decl)));
kono
parents: 67
diff changeset
666 gcov_write_filename (xloc.file);
kono
parents: 67
diff changeset
667 gcov_write_unsigned (xloc.line);
kono
parents: 67
diff changeset
668 gcov_write_length (offset);
kono
parents: 67
diff changeset
669
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
670 return !gcov_is_error ();
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
671 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
672
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
673 /* Finish coverage data for the current function. Verify no output
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
674 error has occurred. Save function coverage counts. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
675
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
676 void
111
kono
parents: 67
diff changeset
677 coverage_end_function (unsigned lineno_checksum, unsigned cfg_checksum)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
678 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
679 unsigned i;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
680
111
kono
parents: 67
diff changeset
681 if (bbg_file_name && gcov_is_error ())
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
682 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
683 warning (0, "error writing %qs", bbg_file_name);
111
kono
parents: 67
diff changeset
684 unlink (bbg_file_name);
kono
parents: 67
diff changeset
685 bbg_file_name = NULL;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
686 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
687
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
688 if (fn_ctr_mask)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
689 {
111
kono
parents: 67
diff changeset
690 struct coverage_data *item = 0;
kono
parents: 67
diff changeset
691
kono
parents: 67
diff changeset
692 item = ggc_alloc<coverage_data> ();
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
693
111
kono
parents: 67
diff changeset
694 if (PARAM_VALUE (PARAM_PROFILE_FUNC_INTERNAL_ID))
kono
parents: 67
diff changeset
695 item->ident = current_function_funcdef_no + 1;
kono
parents: 67
diff changeset
696 else
kono
parents: 67
diff changeset
697 {
kono
parents: 67
diff changeset
698 gcc_assert (coverage_node_map_initialized_p ());
kono
parents: 67
diff changeset
699 item->ident = cgraph_node::get (cfun->decl)->profile_id;
kono
parents: 67
diff changeset
700 }
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
701
111
kono
parents: 67
diff changeset
702 item->lineno_checksum = lineno_checksum;
kono
parents: 67
diff changeset
703 item->cfg_checksum = cfg_checksum;
kono
parents: 67
diff changeset
704
kono
parents: 67
diff changeset
705 item->fn_decl = current_function_decl;
kono
parents: 67
diff changeset
706 item->next = 0;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
707 *functions_tail = item;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
708 functions_tail = &item->next;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
709
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
710 for (i = 0; i != GCOV_COUNTERS; i++)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
711 {
111
kono
parents: 67
diff changeset
712 tree var = fn_v_ctrs[i];
kono
parents: 67
diff changeset
713
kono
parents: 67
diff changeset
714 if (item)
kono
parents: 67
diff changeset
715 item->ctr_vars[i] = var;
kono
parents: 67
diff changeset
716 if (var)
kono
parents: 67
diff changeset
717 {
kono
parents: 67
diff changeset
718 tree array_type = build_index_type (size_int (fn_n_ctrs[i] - 1));
kono
parents: 67
diff changeset
719 array_type = build_array_type (get_gcov_type (), array_type);
kono
parents: 67
diff changeset
720 TREE_TYPE (var) = array_type;
kono
parents: 67
diff changeset
721 DECL_SIZE (var) = TYPE_SIZE (array_type);
kono
parents: 67
diff changeset
722 DECL_SIZE_UNIT (var) = TYPE_SIZE_UNIT (array_type);
kono
parents: 67
diff changeset
723 varpool_node::finalize_decl (var);
kono
parents: 67
diff changeset
724 }
kono
parents: 67
diff changeset
725
kono
parents: 67
diff changeset
726 fn_b_ctrs[i] = fn_n_ctrs[i] = 0;
kono
parents: 67
diff changeset
727 fn_v_ctrs[i] = NULL_TREE;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
728 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
729 prg_ctr_mask |= fn_ctr_mask;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
730 fn_ctr_mask = 0;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
731 }
111
kono
parents: 67
diff changeset
732 }
kono
parents: 67
diff changeset
733
kono
parents: 67
diff changeset
734 /* Remove coverage file if opened. */
kono
parents: 67
diff changeset
735
kono
parents: 67
diff changeset
736 void
kono
parents: 67
diff changeset
737 coverage_remove_note_file (void)
kono
parents: 67
diff changeset
738 {
kono
parents: 67
diff changeset
739 if (bbg_file_name)
kono
parents: 67
diff changeset
740 {
kono
parents: 67
diff changeset
741 gcov_close ();
kono
parents: 67
diff changeset
742 unlink (bbg_file_name);
kono
parents: 67
diff changeset
743 }
kono
parents: 67
diff changeset
744 }
kono
parents: 67
diff changeset
745
kono
parents: 67
diff changeset
746 /* Build a coverage variable of TYPE for function FN_DECL. If COUNTER
kono
parents: 67
diff changeset
747 >= 0 it is a counter array, otherwise it is the function structure. */
kono
parents: 67
diff changeset
748
kono
parents: 67
diff changeset
749 static tree
kono
parents: 67
diff changeset
750 build_var (tree fn_decl, tree type, int counter)
kono
parents: 67
diff changeset
751 {
kono
parents: 67
diff changeset
752 tree var = build_decl (BUILTINS_LOCATION, VAR_DECL, NULL_TREE, type);
kono
parents: 67
diff changeset
753 const char *fn_name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fn_decl));
kono
parents: 67
diff changeset
754 char *buf;
kono
parents: 67
diff changeset
755 size_t fn_name_len, len;
kono
parents: 67
diff changeset
756
kono
parents: 67
diff changeset
757 fn_name = targetm.strip_name_encoding (fn_name);
kono
parents: 67
diff changeset
758 fn_name_len = strlen (fn_name);
kono
parents: 67
diff changeset
759 buf = XALLOCAVEC (char, fn_name_len + 8 + sizeof (int) * 3);
kono
parents: 67
diff changeset
760
kono
parents: 67
diff changeset
761 if (counter < 0)
kono
parents: 67
diff changeset
762 strcpy (buf, "__gcov__");
kono
parents: 67
diff changeset
763 else
kono
parents: 67
diff changeset
764 sprintf (buf, "__gcov%u_", counter);
kono
parents: 67
diff changeset
765 len = strlen (buf);
kono
parents: 67
diff changeset
766 buf[len - 1] = symbol_table::symbol_suffix_separator ();
kono
parents: 67
diff changeset
767 memcpy (buf + len, fn_name, fn_name_len + 1);
kono
parents: 67
diff changeset
768 DECL_NAME (var) = get_identifier (buf);
kono
parents: 67
diff changeset
769 TREE_STATIC (var) = 1;
kono
parents: 67
diff changeset
770 TREE_ADDRESSABLE (var) = 1;
kono
parents: 67
diff changeset
771 DECL_NONALIASED (var) = 1;
kono
parents: 67
diff changeset
772 SET_DECL_ALIGN (var, TYPE_ALIGN (type));
kono
parents: 67
diff changeset
773
kono
parents: 67
diff changeset
774 return var;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
775 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
776
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
777 /* Creates the gcov_fn_info RECORD_TYPE. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
778
111
kono
parents: 67
diff changeset
779 static void
kono
parents: 67
diff changeset
780 build_fn_info_type (tree type, unsigned counters, tree gcov_info_type)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
781 {
111
kono
parents: 67
diff changeset
782 tree ctr_info = lang_hooks.types.make_type (RECORD_TYPE);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
783 tree field, fields;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
784 tree array_type;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
785
111
kono
parents: 67
diff changeset
786 gcc_assert (counters);
kono
parents: 67
diff changeset
787
kono
parents: 67
diff changeset
788 /* ctr_info::num */
kono
parents: 67
diff changeset
789 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
kono
parents: 67
diff changeset
790 get_gcov_unsigned_t ());
kono
parents: 67
diff changeset
791 fields = field;
kono
parents: 67
diff changeset
792
kono
parents: 67
diff changeset
793 /* ctr_info::values */
kono
parents: 67
diff changeset
794 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
kono
parents: 67
diff changeset
795 build_pointer_type (get_gcov_type ()));
kono
parents: 67
diff changeset
796 DECL_CHAIN (field) = fields;
kono
parents: 67
diff changeset
797 fields = field;
kono
parents: 67
diff changeset
798
kono
parents: 67
diff changeset
799 finish_builtin_struct (ctr_info, "__gcov_ctr_info", fields, NULL_TREE);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
800
111
kono
parents: 67
diff changeset
801 /* key */
kono
parents: 67
diff changeset
802 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
kono
parents: 67
diff changeset
803 build_pointer_type (build_qualified_type
kono
parents: 67
diff changeset
804 (gcov_info_type, TYPE_QUAL_CONST)));
kono
parents: 67
diff changeset
805 fields = field;
kono
parents: 67
diff changeset
806
kono
parents: 67
diff changeset
807 /* ident */
kono
parents: 67
diff changeset
808 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
kono
parents: 67
diff changeset
809 get_gcov_unsigned_t ());
kono
parents: 67
diff changeset
810 DECL_CHAIN (field) = fields;
kono
parents: 67
diff changeset
811 fields = field;
kono
parents: 67
diff changeset
812
kono
parents: 67
diff changeset
813 /* lineno_checksum */
kono
parents: 67
diff changeset
814 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
kono
parents: 67
diff changeset
815 get_gcov_unsigned_t ());
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
816 DECL_CHAIN (field) = fields;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
817 fields = field;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
818
111
kono
parents: 67
diff changeset
819 /* cfg checksum */
kono
parents: 67
diff changeset
820 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
kono
parents: 67
diff changeset
821 get_gcov_unsigned_t ());
kono
parents: 67
diff changeset
822 DECL_CHAIN (field) = fields;
kono
parents: 67
diff changeset
823 fields = field;
kono
parents: 67
diff changeset
824
kono
parents: 67
diff changeset
825 array_type = build_index_type (size_int (counters - 1));
kono
parents: 67
diff changeset
826 array_type = build_array_type (ctr_info, array_type);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
827
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
828 /* counters */
111
kono
parents: 67
diff changeset
829 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE, array_type);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
830 DECL_CHAIN (field) = fields;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
831 fields = field;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
832
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
833 finish_builtin_struct (type, "__gcov_fn_info", fields, NULL_TREE);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
834 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
835
111
kono
parents: 67
diff changeset
836 /* Returns a CONSTRUCTOR for a gcov_fn_info. DATA is
kono
parents: 67
diff changeset
837 the coverage data for the function and TYPE is the gcov_fn_info
kono
parents: 67
diff changeset
838 RECORD_TYPE. KEY is the object file key. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
839
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
840 static tree
111
kono
parents: 67
diff changeset
841 build_fn_info (const struct coverage_data *data, tree type, tree key)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
842 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
843 tree fields = TYPE_FIELDS (type);
111
kono
parents: 67
diff changeset
844 tree ctr_type;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
845 unsigned ix;
111
kono
parents: 67
diff changeset
846 vec<constructor_elt, va_gc> *v1 = NULL;
kono
parents: 67
diff changeset
847 vec<constructor_elt, va_gc> *v2 = NULL;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
848
111
kono
parents: 67
diff changeset
849 /* key */
kono
parents: 67
diff changeset
850 CONSTRUCTOR_APPEND_ELT (v1, fields,
kono
parents: 67
diff changeset
851 build1 (ADDR_EXPR, TREE_TYPE (fields), key));
kono
parents: 67
diff changeset
852 fields = DECL_CHAIN (fields);
kono
parents: 67
diff changeset
853
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
854 /* ident */
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
855 CONSTRUCTOR_APPEND_ELT (v1, fields,
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
856 build_int_cstu (get_gcov_unsigned_t (),
111
kono
parents: 67
diff changeset
857 data->ident));
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
858 fields = DECL_CHAIN (fields);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
859
111
kono
parents: 67
diff changeset
860 /* lineno_checksum */
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
861 CONSTRUCTOR_APPEND_ELT (v1, fields,
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
862 build_int_cstu (get_gcov_unsigned_t (),
111
kono
parents: 67
diff changeset
863 data->lineno_checksum));
kono
parents: 67
diff changeset
864 fields = DECL_CHAIN (fields);
kono
parents: 67
diff changeset
865
kono
parents: 67
diff changeset
866 /* cfg_checksum */
kono
parents: 67
diff changeset
867 CONSTRUCTOR_APPEND_ELT (v1, fields,
kono
parents: 67
diff changeset
868 build_int_cstu (get_gcov_unsigned_t (),
kono
parents: 67
diff changeset
869 data->cfg_checksum));
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
870 fields = DECL_CHAIN (fields);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
871
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
872 /* counters */
111
kono
parents: 67
diff changeset
873 ctr_type = TREE_TYPE (TREE_TYPE (fields));
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
874 for (ix = 0; ix != GCOV_COUNTERS; ix++)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
875 if (prg_ctr_mask & (1 << ix))
111
kono
parents: 67
diff changeset
876 {
kono
parents: 67
diff changeset
877 vec<constructor_elt, va_gc> *ctr = NULL;
kono
parents: 67
diff changeset
878 tree var = data->ctr_vars[ix];
kono
parents: 67
diff changeset
879 unsigned count = 0;
kono
parents: 67
diff changeset
880
kono
parents: 67
diff changeset
881 if (var)
kono
parents: 67
diff changeset
882 count
kono
parents: 67
diff changeset
883 = tree_to_shwi (TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (var))))
kono
parents: 67
diff changeset
884 + 1;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
885
111
kono
parents: 67
diff changeset
886 CONSTRUCTOR_APPEND_ELT (ctr, TYPE_FIELDS (ctr_type),
kono
parents: 67
diff changeset
887 build_int_cstu (get_gcov_unsigned_t (),
kono
parents: 67
diff changeset
888 count));
kono
parents: 67
diff changeset
889
kono
parents: 67
diff changeset
890 if (var)
kono
parents: 67
diff changeset
891 CONSTRUCTOR_APPEND_ELT (ctr, DECL_CHAIN (TYPE_FIELDS (ctr_type)),
kono
parents: 67
diff changeset
892 build_fold_addr_expr (var));
kono
parents: 67
diff changeset
893
kono
parents: 67
diff changeset
894 CONSTRUCTOR_APPEND_ELT (v2, NULL, build_constructor (ctr_type, ctr));
kono
parents: 67
diff changeset
895 }
kono
parents: 67
diff changeset
896
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
897 CONSTRUCTOR_APPEND_ELT (v1, fields,
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
898 build_constructor (TREE_TYPE (fields), v2));
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
899
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
900 return build_constructor (type, v1);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
901 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
902
111
kono
parents: 67
diff changeset
903 /* Create gcov_info struct. TYPE is the incomplete RECORD_TYPE to be
kono
parents: 67
diff changeset
904 completed, and FN_INFO_PTR_TYPE is a pointer to the function info type. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
905
111
kono
parents: 67
diff changeset
906 static void
kono
parents: 67
diff changeset
907 build_info_type (tree type, tree fn_info_ptr_type)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
908 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
909 tree field, fields = NULL_TREE;
111
kono
parents: 67
diff changeset
910 tree merge_fn_type;
kono
parents: 67
diff changeset
911
kono
parents: 67
diff changeset
912 /* Version ident */
kono
parents: 67
diff changeset
913 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
kono
parents: 67
diff changeset
914 get_gcov_unsigned_t ());
kono
parents: 67
diff changeset
915 DECL_CHAIN (field) = fields;
kono
parents: 67
diff changeset
916 fields = field;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
917
111
kono
parents: 67
diff changeset
918 /* next pointer */
kono
parents: 67
diff changeset
919 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
kono
parents: 67
diff changeset
920 build_pointer_type (build_qualified_type
kono
parents: 67
diff changeset
921 (type, TYPE_QUAL_CONST)));
kono
parents: 67
diff changeset
922 DECL_CHAIN (field) = fields;
kono
parents: 67
diff changeset
923 fields = field;
kono
parents: 67
diff changeset
924
kono
parents: 67
diff changeset
925 /* stamp */
kono
parents: 67
diff changeset
926 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
kono
parents: 67
diff changeset
927 get_gcov_unsigned_t ());
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
928 DECL_CHAIN (field) = fields;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
929 fields = field;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
930
111
kono
parents: 67
diff changeset
931 /* Filename */
kono
parents: 67
diff changeset
932 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
kono
parents: 67
diff changeset
933 build_pointer_type (build_qualified_type
kono
parents: 67
diff changeset
934 (char_type_node, TYPE_QUAL_CONST)));
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
935 DECL_CHAIN (field) = fields;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
936 fields = field;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
937
111
kono
parents: 67
diff changeset
938 /* merge fn array */
kono
parents: 67
diff changeset
939 merge_fn_type
kono
parents: 67
diff changeset
940 = build_function_type_list (void_type_node,
kono
parents: 67
diff changeset
941 build_pointer_type (get_gcov_type ()),
kono
parents: 67
diff changeset
942 get_gcov_unsigned_t (), NULL_TREE);
kono
parents: 67
diff changeset
943 merge_fn_type
kono
parents: 67
diff changeset
944 = build_array_type (build_pointer_type (merge_fn_type),
kono
parents: 67
diff changeset
945 build_index_type (size_int (GCOV_COUNTERS - 1)));
kono
parents: 67
diff changeset
946 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
kono
parents: 67
diff changeset
947 merge_fn_type);
kono
parents: 67
diff changeset
948 DECL_CHAIN (field) = fields;
kono
parents: 67
diff changeset
949 fields = field;
kono
parents: 67
diff changeset
950
kono
parents: 67
diff changeset
951 /* n_functions */
kono
parents: 67
diff changeset
952 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
kono
parents: 67
diff changeset
953 get_gcov_unsigned_t ());
kono
parents: 67
diff changeset
954 DECL_CHAIN (field) = fields;
kono
parents: 67
diff changeset
955 fields = field;
kono
parents: 67
diff changeset
956
kono
parents: 67
diff changeset
957 /* function_info pointer pointer */
kono
parents: 67
diff changeset
958 fn_info_ptr_type = build_pointer_type
kono
parents: 67
diff changeset
959 (build_qualified_type (fn_info_ptr_type, TYPE_QUAL_CONST));
kono
parents: 67
diff changeset
960 field = build_decl (BUILTINS_LOCATION, FIELD_DECL, NULL_TREE,
kono
parents: 67
diff changeset
961 fn_info_ptr_type);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
962 DECL_CHAIN (field) = fields;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
963 fields = field;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
964
111
kono
parents: 67
diff changeset
965 finish_builtin_struct (type, "__gcov_info", fields, NULL_TREE);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
966 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
967
111
kono
parents: 67
diff changeset
968 /* Returns a CONSTRUCTOR for the gcov_info object. INFO_TYPE is the
kono
parents: 67
diff changeset
969 gcov_info structure type, FN_ARY is the array of pointers to
kono
parents: 67
diff changeset
970 function info objects. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
971
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
972 static tree
111
kono
parents: 67
diff changeset
973 build_info (tree info_type, tree fn_ary)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
974 {
111
kono
parents: 67
diff changeset
975 tree info_fields = TYPE_FIELDS (info_type);
kono
parents: 67
diff changeset
976 tree merge_fn_type, n_funcs;
kono
parents: 67
diff changeset
977 unsigned ix;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
978 tree filename_string;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
979 int da_file_name_len;
111
kono
parents: 67
diff changeset
980 vec<constructor_elt, va_gc> *v1 = NULL;
kono
parents: 67
diff changeset
981 vec<constructor_elt, va_gc> *v2 = NULL;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
982
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
983 /* Version ident */
111
kono
parents: 67
diff changeset
984 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
kono
parents: 67
diff changeset
985 build_int_cstu (TREE_TYPE (info_fields),
kono
parents: 67
diff changeset
986 GCOV_VERSION));
kono
parents: 67
diff changeset
987 info_fields = DECL_CHAIN (info_fields);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
988
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
989 /* next -- NULL */
111
kono
parents: 67
diff changeset
990 CONSTRUCTOR_APPEND_ELT (v1, info_fields, null_pointer_node);
kono
parents: 67
diff changeset
991 info_fields = DECL_CHAIN (info_fields);
kono
parents: 67
diff changeset
992
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
993 /* stamp */
111
kono
parents: 67
diff changeset
994 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
kono
parents: 67
diff changeset
995 build_int_cstu (TREE_TYPE (info_fields),
kono
parents: 67
diff changeset
996 bbg_file_stamp));
kono
parents: 67
diff changeset
997 info_fields = DECL_CHAIN (info_fields);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
998
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
999 /* Filename */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1000 da_file_name_len = strlen (da_file_name);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1001 filename_string = build_string (da_file_name_len + 1, da_file_name);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1002 TREE_TYPE (filename_string) = build_array_type
111
kono
parents: 67
diff changeset
1003 (char_type_node, build_index_type (size_int (da_file_name_len)));
kono
parents: 67
diff changeset
1004 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
kono
parents: 67
diff changeset
1005 build1 (ADDR_EXPR, TREE_TYPE (info_fields),
kono
parents: 67
diff changeset
1006 filename_string));
kono
parents: 67
diff changeset
1007 info_fields = DECL_CHAIN (info_fields);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1008
111
kono
parents: 67
diff changeset
1009 /* merge fn array -- NULL slots indicate unmeasured counters */
kono
parents: 67
diff changeset
1010 merge_fn_type = TREE_TYPE (TREE_TYPE (info_fields));
kono
parents: 67
diff changeset
1011 for (ix = 0; ix != GCOV_COUNTERS; ix++)
kono
parents: 67
diff changeset
1012 {
kono
parents: 67
diff changeset
1013 tree ptr = null_pointer_node;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1014
111
kono
parents: 67
diff changeset
1015 if ((1u << ix) & prg_ctr_mask)
kono
parents: 67
diff changeset
1016 {
kono
parents: 67
diff changeset
1017 tree merge_fn = build_decl (BUILTINS_LOCATION,
kono
parents: 67
diff changeset
1018 FUNCTION_DECL,
kono
parents: 67
diff changeset
1019 get_identifier (ctr_merge_functions[ix]),
kono
parents: 67
diff changeset
1020 TREE_TYPE (merge_fn_type));
kono
parents: 67
diff changeset
1021 DECL_EXTERNAL (merge_fn) = 1;
kono
parents: 67
diff changeset
1022 TREE_PUBLIC (merge_fn) = 1;
kono
parents: 67
diff changeset
1023 DECL_ARTIFICIAL (merge_fn) = 1;
kono
parents: 67
diff changeset
1024 TREE_NOTHROW (merge_fn) = 1;
kono
parents: 67
diff changeset
1025 /* Initialize assembler name so we can stream out. */
kono
parents: 67
diff changeset
1026 DECL_ASSEMBLER_NAME (merge_fn);
kono
parents: 67
diff changeset
1027 ptr = build1 (ADDR_EXPR, merge_fn_type, merge_fn);
kono
parents: 67
diff changeset
1028 }
kono
parents: 67
diff changeset
1029 CONSTRUCTOR_APPEND_ELT (v2, NULL, ptr);
kono
parents: 67
diff changeset
1030 }
kono
parents: 67
diff changeset
1031 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
kono
parents: 67
diff changeset
1032 build_constructor (TREE_TYPE (info_fields), v2));
kono
parents: 67
diff changeset
1033 info_fields = DECL_CHAIN (info_fields);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1034
111
kono
parents: 67
diff changeset
1035 /* n_functions */
kono
parents: 67
diff changeset
1036 n_funcs = TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (fn_ary)));
kono
parents: 67
diff changeset
1037 n_funcs = fold_build2 (PLUS_EXPR, TREE_TYPE (info_fields),
kono
parents: 67
diff changeset
1038 n_funcs, size_one_node);
kono
parents: 67
diff changeset
1039 CONSTRUCTOR_APPEND_ELT (v1, info_fields, n_funcs);
kono
parents: 67
diff changeset
1040 info_fields = DECL_CHAIN (info_fields);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1041
111
kono
parents: 67
diff changeset
1042 /* functions */
kono
parents: 67
diff changeset
1043 CONSTRUCTOR_APPEND_ELT (v1, info_fields,
kono
parents: 67
diff changeset
1044 build1 (ADDR_EXPR, TREE_TYPE (info_fields), fn_ary));
kono
parents: 67
diff changeset
1045 info_fields = DECL_CHAIN (info_fields);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1046
111
kono
parents: 67
diff changeset
1047 gcc_assert (!info_fields);
kono
parents: 67
diff changeset
1048 return build_constructor (info_type, v1);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1049 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1050
111
kono
parents: 67
diff changeset
1051 /* Generate the constructor function to call __gcov_init. */
kono
parents: 67
diff changeset
1052
kono
parents: 67
diff changeset
1053 static void
kono
parents: 67
diff changeset
1054 build_init_ctor (tree gcov_info_type)
kono
parents: 67
diff changeset
1055 {
kono
parents: 67
diff changeset
1056 tree ctor, stmt, init_fn;
kono
parents: 67
diff changeset
1057
kono
parents: 67
diff changeset
1058 /* Build a decl for __gcov_init. */
kono
parents: 67
diff changeset
1059 init_fn = build_pointer_type (gcov_info_type);
kono
parents: 67
diff changeset
1060 init_fn = build_function_type_list (void_type_node, init_fn, NULL);
kono
parents: 67
diff changeset
1061 init_fn = build_decl (BUILTINS_LOCATION, FUNCTION_DECL,
kono
parents: 67
diff changeset
1062 get_identifier ("__gcov_init"), init_fn);
kono
parents: 67
diff changeset
1063 TREE_PUBLIC (init_fn) = 1;
kono
parents: 67
diff changeset
1064 DECL_EXTERNAL (init_fn) = 1;
kono
parents: 67
diff changeset
1065 DECL_ASSEMBLER_NAME (init_fn);
kono
parents: 67
diff changeset
1066
kono
parents: 67
diff changeset
1067 /* Generate a call to __gcov_init(&gcov_info). */
kono
parents: 67
diff changeset
1068 ctor = NULL;
kono
parents: 67
diff changeset
1069 stmt = build_fold_addr_expr (gcov_info_var);
kono
parents: 67
diff changeset
1070 stmt = build_call_expr (init_fn, 1, stmt);
kono
parents: 67
diff changeset
1071 append_to_statement_list (stmt, &ctor);
kono
parents: 67
diff changeset
1072
kono
parents: 67
diff changeset
1073 /* Generate a constructor to run it. */
kono
parents: 67
diff changeset
1074 int priority = SUPPORTS_INIT_PRIORITY
kono
parents: 67
diff changeset
1075 ? MAX_RESERVED_INIT_PRIORITY: DEFAULT_INIT_PRIORITY;
kono
parents: 67
diff changeset
1076 cgraph_build_static_cdtor ('I', ctor, priority);
kono
parents: 67
diff changeset
1077 }
kono
parents: 67
diff changeset
1078
kono
parents: 67
diff changeset
1079 /* Generate the destructor function to call __gcov_exit. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1080
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1081 static void
111
kono
parents: 67
diff changeset
1082 build_gcov_exit_decl (void)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1083 {
111
kono
parents: 67
diff changeset
1084 tree init_fn = build_function_type_list (void_type_node, void_type_node,
kono
parents: 67
diff changeset
1085 NULL);
kono
parents: 67
diff changeset
1086 init_fn = build_decl (BUILTINS_LOCATION, FUNCTION_DECL,
kono
parents: 67
diff changeset
1087 get_identifier ("__gcov_exit"), init_fn);
kono
parents: 67
diff changeset
1088 TREE_PUBLIC (init_fn) = 1;
kono
parents: 67
diff changeset
1089 DECL_EXTERNAL (init_fn) = 1;
kono
parents: 67
diff changeset
1090 DECL_ASSEMBLER_NAME (init_fn);
kono
parents: 67
diff changeset
1091
kono
parents: 67
diff changeset
1092 /* Generate a call to __gcov_exit (). */
kono
parents: 67
diff changeset
1093 tree dtor = NULL;
kono
parents: 67
diff changeset
1094 tree stmt = build_call_expr (init_fn, 0);
kono
parents: 67
diff changeset
1095 append_to_statement_list (stmt, &dtor);
kono
parents: 67
diff changeset
1096
kono
parents: 67
diff changeset
1097 /* Generate a destructor to run it. */
kono
parents: 67
diff changeset
1098 int priority = SUPPORTS_INIT_PRIORITY
kono
parents: 67
diff changeset
1099 ? MAX_RESERVED_INIT_PRIORITY: DEFAULT_INIT_PRIORITY;
kono
parents: 67
diff changeset
1100
kono
parents: 67
diff changeset
1101 cgraph_build_static_cdtor ('D', dtor, priority);
kono
parents: 67
diff changeset
1102 }
kono
parents: 67
diff changeset
1103
kono
parents: 67
diff changeset
1104 /* Create the gcov_info types and object. Generate the constructor
kono
parents: 67
diff changeset
1105 function to call __gcov_init. Does not generate the initializer
kono
parents: 67
diff changeset
1106 for the object. Returns TRUE if coverage data is being emitted. */
kono
parents: 67
diff changeset
1107
kono
parents: 67
diff changeset
1108 static bool
kono
parents: 67
diff changeset
1109 coverage_obj_init (void)
kono
parents: 67
diff changeset
1110 {
kono
parents: 67
diff changeset
1111 tree gcov_info_type;
kono
parents: 67
diff changeset
1112 unsigned n_counters = 0;
kono
parents: 67
diff changeset
1113 unsigned ix;
kono
parents: 67
diff changeset
1114 struct coverage_data *fn;
kono
parents: 67
diff changeset
1115 struct coverage_data **fn_prev;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1116 char name_buf[32];
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1117
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1118 no_coverage = 1; /* Disable any further coverage. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1119
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1120 if (!prg_ctr_mask)
111
kono
parents: 67
diff changeset
1121 return false;
kono
parents: 67
diff changeset
1122
kono
parents: 67
diff changeset
1123 if (symtab->dump_file)
kono
parents: 67
diff changeset
1124 fprintf (symtab->dump_file, "Using data file %s\n", da_file_name);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1125
111
kono
parents: 67
diff changeset
1126 /* Prune functions. */
kono
parents: 67
diff changeset
1127 for (fn_prev = &functions_head; (fn = *fn_prev);)
kono
parents: 67
diff changeset
1128 if (DECL_STRUCT_FUNCTION (fn->fn_decl))
kono
parents: 67
diff changeset
1129 fn_prev = &fn->next;
kono
parents: 67
diff changeset
1130 else
kono
parents: 67
diff changeset
1131 /* The function is not being emitted, remove from list. */
kono
parents: 67
diff changeset
1132 *fn_prev = fn->next;
kono
parents: 67
diff changeset
1133
kono
parents: 67
diff changeset
1134 if (functions_head == NULL)
kono
parents: 67
diff changeset
1135 return false;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1136
111
kono
parents: 67
diff changeset
1137 for (ix = 0; ix != GCOV_COUNTERS; ix++)
kono
parents: 67
diff changeset
1138 if ((1u << ix) & prg_ctr_mask)
kono
parents: 67
diff changeset
1139 n_counters++;
kono
parents: 67
diff changeset
1140
kono
parents: 67
diff changeset
1141 /* Build the info and fn_info types. These are mutually recursive. */
kono
parents: 67
diff changeset
1142 gcov_info_type = lang_hooks.types.make_type (RECORD_TYPE);
kono
parents: 67
diff changeset
1143 gcov_fn_info_type = lang_hooks.types.make_type (RECORD_TYPE);
kono
parents: 67
diff changeset
1144 build_fn_info_type (gcov_fn_info_type, n_counters, gcov_info_type);
kono
parents: 67
diff changeset
1145 gcov_info_type = lang_hooks.types.make_type (RECORD_TYPE);
kono
parents: 67
diff changeset
1146 gcov_fn_info_ptr_type = build_pointer_type
kono
parents: 67
diff changeset
1147 (build_qualified_type (gcov_fn_info_type, TYPE_QUAL_CONST));
kono
parents: 67
diff changeset
1148 build_info_type (gcov_info_type, gcov_fn_info_ptr_type);
kono
parents: 67
diff changeset
1149
kono
parents: 67
diff changeset
1150 /* Build the gcov info var, this is referred to in its own
kono
parents: 67
diff changeset
1151 initializer. */
kono
parents: 67
diff changeset
1152 gcov_info_var = build_decl (BUILTINS_LOCATION,
kono
parents: 67
diff changeset
1153 VAR_DECL, NULL_TREE, gcov_info_type);
kono
parents: 67
diff changeset
1154 TREE_STATIC (gcov_info_var) = 1;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1155 ASM_GENERATE_INTERNAL_LABEL (name_buf, "LPBX", 0);
111
kono
parents: 67
diff changeset
1156 DECL_NAME (gcov_info_var) = get_identifier (name_buf);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1157
111
kono
parents: 67
diff changeset
1158 build_init_ctor (gcov_info_type);
kono
parents: 67
diff changeset
1159 build_gcov_exit_decl ();
kono
parents: 67
diff changeset
1160
kono
parents: 67
diff changeset
1161 return true;
kono
parents: 67
diff changeset
1162 }
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1163
111
kono
parents: 67
diff changeset
1164 /* Generate the coverage function info for FN and DATA. Append a
kono
parents: 67
diff changeset
1165 pointer to that object to CTOR and return the appended CTOR. */
kono
parents: 67
diff changeset
1166
kono
parents: 67
diff changeset
1167 static vec<constructor_elt, va_gc> *
kono
parents: 67
diff changeset
1168 coverage_obj_fn (vec<constructor_elt, va_gc> *ctor, tree fn,
kono
parents: 67
diff changeset
1169 struct coverage_data const *data)
kono
parents: 67
diff changeset
1170 {
kono
parents: 67
diff changeset
1171 tree init = build_fn_info (data, gcov_fn_info_type, gcov_info_var);
kono
parents: 67
diff changeset
1172 tree var = build_var (fn, gcov_fn_info_type, -1);
kono
parents: 67
diff changeset
1173
kono
parents: 67
diff changeset
1174 DECL_INITIAL (var) = init;
kono
parents: 67
diff changeset
1175 varpool_node::finalize_decl (var);
kono
parents: 67
diff changeset
1176
kono
parents: 67
diff changeset
1177 CONSTRUCTOR_APPEND_ELT (ctor, NULL,
kono
parents: 67
diff changeset
1178 build1 (ADDR_EXPR, gcov_fn_info_ptr_type, var));
kono
parents: 67
diff changeset
1179 return ctor;
kono
parents: 67
diff changeset
1180 }
kono
parents: 67
diff changeset
1181
kono
parents: 67
diff changeset
1182 /* Finalize the coverage data. Generates the array of pointers to
kono
parents: 67
diff changeset
1183 function objects from CTOR. Generate the gcov_info initializer. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1184
111
kono
parents: 67
diff changeset
1185 static void
kono
parents: 67
diff changeset
1186 coverage_obj_finish (vec<constructor_elt, va_gc> *ctor)
kono
parents: 67
diff changeset
1187 {
kono
parents: 67
diff changeset
1188 unsigned n_functions = vec_safe_length (ctor);
kono
parents: 67
diff changeset
1189 tree fn_info_ary_type = build_array_type
kono
parents: 67
diff changeset
1190 (build_qualified_type (gcov_fn_info_ptr_type, TYPE_QUAL_CONST),
kono
parents: 67
diff changeset
1191 build_index_type (size_int (n_functions - 1)));
kono
parents: 67
diff changeset
1192 tree fn_info_ary = build_decl (BUILTINS_LOCATION, VAR_DECL, NULL_TREE,
kono
parents: 67
diff changeset
1193 fn_info_ary_type);
kono
parents: 67
diff changeset
1194 char name_buf[32];
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1195
111
kono
parents: 67
diff changeset
1196 TREE_STATIC (fn_info_ary) = 1;
kono
parents: 67
diff changeset
1197 ASM_GENERATE_INTERNAL_LABEL (name_buf, "LPBX", 1);
kono
parents: 67
diff changeset
1198 DECL_NAME (fn_info_ary) = get_identifier (name_buf);
kono
parents: 67
diff changeset
1199 DECL_INITIAL (fn_info_ary) = build_constructor (fn_info_ary_type, ctor);
kono
parents: 67
diff changeset
1200 varpool_node::finalize_decl (fn_info_ary);
kono
parents: 67
diff changeset
1201
kono
parents: 67
diff changeset
1202 DECL_INITIAL (gcov_info_var)
kono
parents: 67
diff changeset
1203 = build_info (TREE_TYPE (gcov_info_var), fn_info_ary);
kono
parents: 67
diff changeset
1204 varpool_node::finalize_decl (gcov_info_var);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1205 }
111
kono
parents: 67
diff changeset
1206
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1207 /* Perform file-level initialization. Read in data file, generate name
111
kono
parents: 67
diff changeset
1208 of notes file. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1209
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1210 void
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1211 coverage_init (const char *filename)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1212 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1213 int len = strlen (filename);
111
kono
parents: 67
diff changeset
1214 int prefix_len = 0;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
1215
111
kono
parents: 67
diff changeset
1216 /* Since coverage_init is invoked very early, before the pass
kono
parents: 67
diff changeset
1217 manager, we need to set up the dumping explicitly. This is
kono
parents: 67
diff changeset
1218 similar to the handling in finish_optimization_passes. */
kono
parents: 67
diff changeset
1219 int profile_pass_num =
kono
parents: 67
diff changeset
1220 g->get_passes ()->get_pass_profile ()->static_pass_number;
kono
parents: 67
diff changeset
1221 g->get_dumps ()->dump_start (profile_pass_num, NULL);
kono
parents: 67
diff changeset
1222
kono
parents: 67
diff changeset
1223 if (!profile_data_prefix && !IS_ABSOLUTE_PATH (filename))
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1224 profile_data_prefix = getpwd ();
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1225
111
kono
parents: 67
diff changeset
1226 if (profile_data_prefix)
kono
parents: 67
diff changeset
1227 prefix_len = strlen (profile_data_prefix);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1228
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1229 /* Name of da file. */
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
1230 da_file_name = XNEWVEC (char, len + strlen (GCOV_DATA_SUFFIX)
111
kono
parents: 67
diff changeset
1231 + prefix_len + 2);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1232
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1233 if (profile_data_prefix)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1234 {
111
kono
parents: 67
diff changeset
1235 memcpy (da_file_name, profile_data_prefix, prefix_len);
kono
parents: 67
diff changeset
1236 da_file_name[prefix_len++] = '/';
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1237 }
111
kono
parents: 67
diff changeset
1238 memcpy (da_file_name + prefix_len, filename, len);
kono
parents: 67
diff changeset
1239 strcpy (da_file_name + prefix_len + len, GCOV_DATA_SUFFIX);
kono
parents: 67
diff changeset
1240
kono
parents: 67
diff changeset
1241 bbg_file_stamp = local_tick;
kono
parents: 67
diff changeset
1242
kono
parents: 67
diff changeset
1243 if (flag_auto_profile)
kono
parents: 67
diff changeset
1244 read_autofdo_file ();
kono
parents: 67
diff changeset
1245 else if (flag_branch_probabilities)
kono
parents: 67
diff changeset
1246 read_counts_file ();
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1247
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1248 /* Name of bbg file. */
111
kono
parents: 67
diff changeset
1249 if (flag_test_coverage && !flag_compare_debug)
kono
parents: 67
diff changeset
1250 {
kono
parents: 67
diff changeset
1251 bbg_file_name = XNEWVEC (char, len + strlen (GCOV_NOTE_SUFFIX) + 1);
kono
parents: 67
diff changeset
1252 memcpy (bbg_file_name, filename, len);
kono
parents: 67
diff changeset
1253 strcpy (bbg_file_name + len, GCOV_NOTE_SUFFIX);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1254
111
kono
parents: 67
diff changeset
1255 if (!gcov_open (bbg_file_name, -1))
kono
parents: 67
diff changeset
1256 {
kono
parents: 67
diff changeset
1257 error ("cannot open %s", bbg_file_name);
kono
parents: 67
diff changeset
1258 bbg_file_name = NULL;
kono
parents: 67
diff changeset
1259 }
kono
parents: 67
diff changeset
1260 else
kono
parents: 67
diff changeset
1261 {
kono
parents: 67
diff changeset
1262 gcov_write_unsigned (GCOV_NOTE_MAGIC);
kono
parents: 67
diff changeset
1263 gcov_write_unsigned (GCOV_VERSION);
kono
parents: 67
diff changeset
1264 gcov_write_unsigned (bbg_file_stamp);
kono
parents: 67
diff changeset
1265 }
kono
parents: 67
diff changeset
1266 }
kono
parents: 67
diff changeset
1267
kono
parents: 67
diff changeset
1268 g->get_dumps ()->dump_finish (profile_pass_num);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1269 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1270
111
kono
parents: 67
diff changeset
1271 /* Performs file-level cleanup. Close notes file, generate coverage
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1272 variables and constructor. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1273
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1274 void
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1275 coverage_finish (void)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1276 {
111
kono
parents: 67
diff changeset
1277 if (bbg_file_name && gcov_close ())
kono
parents: 67
diff changeset
1278 unlink (bbg_file_name);
kono
parents: 67
diff changeset
1279
kono
parents: 67
diff changeset
1280 if (!flag_branch_probabilities && flag_test_coverage
kono
parents: 67
diff changeset
1281 && (!local_tick || local_tick == (unsigned)-1))
kono
parents: 67
diff changeset
1282 /* Only remove the da file, if we're emitting coverage code and
kono
parents: 67
diff changeset
1283 cannot uniquely stamp it. If we can stamp it, libgcov will DTRT. */
kono
parents: 67
diff changeset
1284 unlink (da_file_name);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1285
111
kono
parents: 67
diff changeset
1286 if (coverage_obj_init ())
kono
parents: 67
diff changeset
1287 {
kono
parents: 67
diff changeset
1288 vec<constructor_elt, va_gc> *fn_ctor = NULL;
kono
parents: 67
diff changeset
1289 struct coverage_data *fn;
kono
parents: 67
diff changeset
1290
kono
parents: 67
diff changeset
1291 for (fn = functions_head; fn; fn = fn->next)
kono
parents: 67
diff changeset
1292 fn_ctor = coverage_obj_fn (fn_ctor, fn->fn_decl, fn);
kono
parents: 67
diff changeset
1293 coverage_obj_finish (fn_ctor);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1294 }
111
kono
parents: 67
diff changeset
1295
kono
parents: 67
diff changeset
1296 XDELETEVEC (da_file_name);
kono
parents: 67
diff changeset
1297 da_file_name = NULL;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1298 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1299
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1300 #include "gt-coverage.h"