File: | build/gcc/symbol-summary.h |
Warning: | line 701, column 35 Called C++ object pointer is null |
Press '?' to see keyboard shortcuts
Keyboard shortcuts:
1 | /* Basic IPA optimizations based on profile. | |||
2 | Copyright (C) 2003-2023 Free Software Foundation, Inc. | |||
3 | ||||
4 | This file is part of GCC. | |||
5 | ||||
6 | GCC is free software; you can redistribute it and/or modify it under | |||
7 | the terms of the GNU General Public License as published by the Free | |||
8 | Software Foundation; either version 3, or (at your option) any later | |||
9 | version. | |||
10 | ||||
11 | GCC is distributed in the hope that it will be useful, but WITHOUT ANY | |||
12 | WARRANTY; without even the implied warranty of MERCHANTABILITY or | |||
13 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |||
14 | for more details. | |||
15 | ||||
16 | You should have received a copy of the GNU General Public License | |||
17 | along with GCC; see the file COPYING3. If not see | |||
18 | <http://www.gnu.org/licenses/>. */ | |||
19 | ||||
20 | /* ipa-profile pass implements the following analysis propagating profille | |||
21 | inter-procedurally. | |||
22 | ||||
23 | - Count histogram construction. This is a histogram analyzing how much | |||
24 | time is spent executing statements with a given execution count read | |||
25 | from profile feedback. This histogram is complete only with LTO, | |||
26 | otherwise it contains information only about the current unit. | |||
27 | ||||
28 | The information is used to set hot/cold thresholds. | |||
29 | - Next speculative indirect call resolution is performed: the local | |||
30 | profile pass assigns profile-id to each function and provide us with a | |||
31 | histogram specifying the most common target. We look up the callgraph | |||
32 | node corresponding to the target and produce a speculative call. | |||
33 | ||||
34 | This call may or may not survive through IPA optimization based on decision | |||
35 | of inliner. | |||
36 | - Finally we propagate the following flags: unlikely executed, executed | |||
37 | once, executed at startup and executed at exit. These flags are used to | |||
38 | control code size/performance threshold and code placement (by producing | |||
39 | .text.unlikely/.text.hot/.text.startup/.text.exit subsections). */ | |||
40 | #include "config.h" | |||
41 | #include "system.h" | |||
42 | #include "coretypes.h" | |||
43 | #include "backend.h" | |||
44 | #include "tree.h" | |||
45 | #include "gimple.h" | |||
46 | #include "predict.h" | |||
47 | #include "alloc-pool.h" | |||
48 | #include "tree-pass.h" | |||
49 | #include "cgraph.h" | |||
50 | #include "data-streamer.h" | |||
51 | #include "gimple-iterator.h" | |||
52 | #include "ipa-utils.h" | |||
53 | #include "profile.h" | |||
54 | #include "value-prof.h" | |||
55 | #include "tree-inline.h" | |||
56 | #include "symbol-summary.h" | |||
57 | #include "tree-vrp.h" | |||
58 | #include "ipa-prop.h" | |||
59 | #include "ipa-fnsummary.h" | |||
60 | ||||
61 | /* Entry in the histogram. */ | |||
62 | ||||
63 | struct histogram_entry | |||
64 | { | |||
65 | gcov_type count; | |||
66 | int time; | |||
67 | int size; | |||
68 | }; | |||
69 | ||||
70 | /* Histogram of profile values. | |||
71 | The histogram is represented as an ordered vector of entries allocated via | |||
72 | histogram_pool. During construction a separate hashtable is kept to lookup | |||
73 | duplicate entries. */ | |||
74 | ||||
75 | vec<histogram_entry *> histogram; | |||
76 | static object_allocator<histogram_entry> histogram_pool ("IPA histogram"); | |||
77 | ||||
78 | /* Hashtable support for storing SSA names hashed by their SSA_NAME_VAR. */ | |||
79 | ||||
80 | struct histogram_hash : nofree_ptr_hash <histogram_entry> | |||
81 | { | |||
82 | static inline hashval_t hash (const histogram_entry *); | |||
83 | static inline int equal (const histogram_entry *, const histogram_entry *); | |||
84 | }; | |||
85 | ||||
86 | inline hashval_t | |||
87 | histogram_hash::hash (const histogram_entry *val) | |||
88 | { | |||
89 | return val->count; | |||
90 | } | |||
91 | ||||
92 | inline int | |||
93 | histogram_hash::equal (const histogram_entry *val, const histogram_entry *val2) | |||
94 | { | |||
95 | return val->count == val2->count; | |||
96 | } | |||
97 | ||||
98 | /* Account TIME and SIZE executed COUNT times into HISTOGRAM. | |||
99 | HASHTABLE is the on-side hash kept to avoid duplicates. */ | |||
100 | ||||
101 | static void | |||
102 | account_time_size (hash_table<histogram_hash> *hashtable, | |||
103 | vec<histogram_entry *> &histogram, | |||
104 | gcov_type count, int time, int size) | |||
105 | { | |||
106 | histogram_entry key = {count, 0, 0}; | |||
107 | histogram_entry **val = hashtable->find_slot (&key, INSERT); | |||
108 | ||||
109 | if (!*val) | |||
110 | { | |||
111 | *val = histogram_pool.allocate (); | |||
112 | **val = key; | |||
113 | histogram.safe_push (*val); | |||
114 | } | |||
115 | (*val)->time += time; | |||
116 | (*val)->size += size; | |||
117 | } | |||
118 | ||||
119 | int | |||
120 | cmp_counts (const void *v1, const void *v2) | |||
121 | { | |||
122 | const histogram_entry *h1 = *(const histogram_entry * const *)v1; | |||
123 | const histogram_entry *h2 = *(const histogram_entry * const *)v2; | |||
124 | if (h1->count < h2->count) | |||
125 | return 1; | |||
126 | if (h1->count > h2->count) | |||
127 | return -1; | |||
128 | return 0; | |||
129 | } | |||
130 | ||||
131 | /* Dump HISTOGRAM to FILE. */ | |||
132 | ||||
133 | static void | |||
134 | dump_histogram (FILE *file, vec<histogram_entry *> histogram) | |||
135 | { | |||
136 | unsigned int i; | |||
137 | gcov_type overall_time = 0, cumulated_time = 0, cumulated_size = 0, | |||
138 | overall_size = 0; | |||
139 | ||||
140 | fprintf (dump_file, "Histogram:\n"); | |||
141 | for (i = 0; i < histogram.length (); i++) | |||
142 | { | |||
143 | overall_time += histogram[i]->count * histogram[i]->time; | |||
144 | overall_size += histogram[i]->size; | |||
145 | } | |||
146 | if (!overall_time) | |||
147 | overall_time = 1; | |||
148 | if (!overall_size) | |||
149 | overall_size = 1; | |||
150 | for (i = 0; i < histogram.length (); i++) | |||
151 | { | |||
152 | cumulated_time += histogram[i]->count * histogram[i]->time; | |||
153 | cumulated_size += histogram[i]->size; | |||
154 | fprintf (file, " %" PRId64"l" "d"": time:%i (%2.2f) size:%i (%2.2f)\n", | |||
155 | (int64_t) histogram[i]->count, | |||
156 | histogram[i]->time, | |||
157 | cumulated_time * 100.0 / overall_time, | |||
158 | histogram[i]->size, | |||
159 | cumulated_size * 100.0 / overall_size); | |||
160 | } | |||
161 | } | |||
162 | ||||
163 | /* Structure containing speculative target information from profile. */ | |||
164 | ||||
165 | struct speculative_call_target | |||
166 | { | |||
167 | speculative_call_target (unsigned int id = 0, int prob = 0) | |||
168 | : target_id (id), target_probability (prob) | |||
169 | { | |||
170 | } | |||
171 | ||||
172 | /* Profile_id of target obtained from profile. */ | |||
173 | unsigned int target_id; | |||
174 | /* Probability that call will land in function with target_id. */ | |||
175 | unsigned int target_probability; | |||
176 | }; | |||
177 | ||||
178 | class speculative_call_summary | |||
179 | { | |||
180 | public: | |||
181 | speculative_call_summary () : speculative_call_targets () | |||
182 | {} | |||
183 | ||||
184 | auto_vec<speculative_call_target> speculative_call_targets; | |||
185 | ||||
186 | void dump (FILE *f); | |||
187 | ||||
188 | }; | |||
189 | ||||
190 | /* Class to manage call summaries. */ | |||
191 | ||||
192 | class ipa_profile_call_summaries | |||
193 | : public call_summary<speculative_call_summary *> | |||
194 | { | |||
195 | public: | |||
196 | ipa_profile_call_summaries (symbol_table *table) | |||
197 | : call_summary<speculative_call_summary *> (table) | |||
198 | {} | |||
199 | ||||
200 | /* Duplicate info when an edge is cloned. */ | |||
201 | void duplicate (cgraph_edge *, cgraph_edge *, | |||
202 | speculative_call_summary *old_sum, | |||
203 | speculative_call_summary *new_sum) final override; | |||
204 | }; | |||
205 | ||||
206 | static ipa_profile_call_summaries *call_sums = NULLnullptr; | |||
207 | ||||
208 | /* Dump all information in speculative call summary to F. */ | |||
209 | ||||
210 | void | |||
211 | speculative_call_summary::dump (FILE *f) | |||
212 | { | |||
213 | cgraph_node *n2; | |||
214 | ||||
215 | unsigned spec_count = speculative_call_targets.length (); | |||
216 | for (unsigned i = 0; i < spec_count; i++) | |||
217 | { | |||
218 | speculative_call_target item = speculative_call_targets[i]; | |||
219 | n2 = find_func_by_profile_id (item.target_id); | |||
220 | if (n2) | |||
221 | fprintf (f, " The %i speculative target is %s with prob %3.2f\n", i, | |||
222 | n2->dump_name (), | |||
223 | item.target_probability / (float) REG_BR_PROB_BASE10000); | |||
224 | else | |||
225 | fprintf (f, " The %i speculative target is %u with prob %3.2f\n", i, | |||
226 | item.target_id, | |||
227 | item.target_probability / (float) REG_BR_PROB_BASE10000); | |||
228 | } | |||
229 | } | |||
230 | ||||
231 | /* Duplicate info when an edge is cloned. */ | |||
232 | ||||
233 | void | |||
234 | ipa_profile_call_summaries::duplicate (cgraph_edge *, cgraph_edge *, | |||
235 | speculative_call_summary *old_sum, | |||
236 | speculative_call_summary *new_sum) | |||
237 | { | |||
238 | if (!old_sum) | |||
239 | return; | |||
240 | ||||
241 | unsigned old_count = old_sum->speculative_call_targets.length (); | |||
242 | if (!old_count) | |||
243 | return; | |||
244 | ||||
245 | new_sum->speculative_call_targets.reserve_exact (old_count); | |||
246 | new_sum->speculative_call_targets.quick_grow_cleared (old_count); | |||
247 | ||||
248 | for (unsigned i = 0; i < old_count; i++) | |||
249 | { | |||
250 | new_sum->speculative_call_targets[i] | |||
251 | = old_sum->speculative_call_targets[i]; | |||
252 | } | |||
253 | } | |||
254 | ||||
255 | /* Collect histogram and speculative target summaries from CFG profiles. */ | |||
256 | ||||
257 | static void | |||
258 | ipa_profile_generate_summary (void) | |||
259 | { | |||
260 | struct cgraph_node *node; | |||
261 | gimple_stmt_iterator gsi; | |||
262 | basic_block bb; | |||
263 | ||||
264 | hash_table<histogram_hash> hashtable (10); | |||
265 | ||||
266 | gcc_checking_assert (!call_sums)((void)(!(!call_sums) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/ipa-profile.cc" , 266, __FUNCTION__), 0 : 0)); | |||
| ||||
267 | call_sums = new ipa_profile_call_summaries (symtab); | |||
268 | ||||
269 | FOR_EACH_FUNCTION_WITH_GIMPLE_BODY (node)for ((node) = symtab->first_function_with_gimple_body (); ( node); (node) = symtab->next_function_with_gimple_body (node )) | |||
270 | if (ENTRY_BLOCK_PTR_FOR_FN((((tree_check ((node->decl), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/ipa-profile.cc" , 271, __FUNCTION__, (FUNCTION_DECL)))->function_decl.f))-> cfg->x_entry_block_ptr) | |||
271 | (DECL_STRUCT_FUNCTION (node->decl))((((tree_check ((node->decl), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/ipa-profile.cc" , 271, __FUNCTION__, (FUNCTION_DECL)))->function_decl.f))-> cfg->x_entry_block_ptr)->count.ipa_p ()) | |||
272 | FOR_EACH_BB_FN (bb, DECL_STRUCT_FUNCTION (node->decl))for (bb = (((tree_check ((node->decl), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/ipa-profile.cc" , 272, __FUNCTION__, (FUNCTION_DECL)))->function_decl.f))-> cfg->x_entry_block_ptr->next_bb; bb != (((tree_check (( node->decl), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/ipa-profile.cc" , 272, __FUNCTION__, (FUNCTION_DECL)))->function_decl.f))-> cfg->x_exit_block_ptr; bb = bb->next_bb) | |||
273 | { | |||
274 | int time = 0; | |||
275 | int size = 0; | |||
276 | for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi)) | |||
277 | { | |||
278 | gimple *stmt = gsi_stmt (gsi); | |||
279 | if (gimple_code (stmt) == GIMPLE_CALL | |||
280 | && !gimple_call_fndecl (stmt)) | |||
281 | { | |||
282 | histogram_value h; | |||
283 | h = gimple_histogram_value_of_type | |||
284 | (DECL_STRUCT_FUNCTION (node->decl)((tree_check ((node->decl), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/ipa-profile.cc" , 284, __FUNCTION__, (FUNCTION_DECL)))->function_decl.f), | |||
285 | stmt, HIST_TYPE_INDIR_CALL); | |||
286 | /* No need to do sanity check: gimple_ic_transform already | |||
287 | takes away bad histograms. */ | |||
288 | if (h) | |||
289 | { | |||
290 | gcov_type val, count, all; | |||
291 | struct cgraph_edge *e = node->get_edge (stmt); | |||
292 | if (e && !e->indirect_unknown_callee) | |||
293 | continue; | |||
294 | ||||
295 | speculative_call_summary *csum | |||
296 | = call_sums->get_create (e); | |||
297 | ||||
298 | for (unsigned j = 0; j < GCOV_TOPN_MAXIMUM_TRACKED_VALUES32; | |||
299 | j++) | |||
300 | { | |||
301 | if (!get_nth_most_common_value (NULLnullptr, "indirect call", | |||
302 | h, &val, &count, &all, | |||
303 | j)) | |||
304 | continue; | |||
305 | ||||
306 | if (val == 0 || count == 0) | |||
307 | continue; | |||
308 | ||||
309 | if (count > all) | |||
310 | { | |||
311 | if (dump_file) | |||
312 | fprintf (dump_file, | |||
313 | "Probability capped to 1\n"); | |||
314 | count = all; | |||
315 | } | |||
316 | speculative_call_target item ( | |||
317 | val, GCOV_COMPUTE_SCALE (count, all)((all) ? ((((count) * 10000) + ((all)) / 2) / ((all))) : 10000 )); | |||
318 | csum->speculative_call_targets.safe_push (item); | |||
319 | } | |||
320 | ||||
321 | gimple_remove_histogram_value | |||
322 | (DECL_STRUCT_FUNCTION (node->decl)((tree_check ((node->decl), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/ipa-profile.cc" , 322, __FUNCTION__, (FUNCTION_DECL)))->function_decl.f), stmt, h); | |||
323 | } | |||
324 | } | |||
325 | time += estimate_num_insns (stmt, &eni_time_weights); | |||
326 | size += estimate_num_insns (stmt, &eni_size_weights); | |||
327 | } | |||
328 | if (bb->count.ipa_p () && bb->count.initialized_p ()) | |||
329 | account_time_size (&hashtable, histogram, | |||
330 | bb->count.ipa ().to_gcov_type (), | |||
331 | time, size); | |||
332 | } | |||
333 | histogram.qsort (cmp_counts)qsort (cmp_counts); | |||
334 | } | |||
335 | ||||
336 | /* Serialize the speculative summary info for LTO. */ | |||
337 | ||||
338 | static void | |||
339 | ipa_profile_write_edge_summary (lto_simple_output_block *ob, | |||
340 | speculative_call_summary *csum) | |||
341 | { | |||
342 | unsigned len = 0; | |||
343 | ||||
344 | len = csum->speculative_call_targets.length (); | |||
345 | ||||
346 | gcc_assert (len <= GCOV_TOPN_MAXIMUM_TRACKED_VALUES)((void)(!(len <= 32) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/ipa-profile.cc" , 346, __FUNCTION__), 0 : 0)); | |||
347 | ||||
348 | streamer_write_hwi_stream (ob->main_stream, len); | |||
349 | ||||
350 | if (len) | |||
351 | { | |||
352 | unsigned spec_count = csum->speculative_call_targets.length (); | |||
353 | for (unsigned i = 0; i < spec_count; i++) | |||
354 | { | |||
355 | speculative_call_target item = csum->speculative_call_targets[i]; | |||
356 | gcc_assert (item.target_id)((void)(!(item.target_id) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/ipa-profile.cc" , 356, __FUNCTION__), 0 : 0)); | |||
357 | streamer_write_hwi_stream (ob->main_stream, item.target_id); | |||
358 | streamer_write_hwi_stream (ob->main_stream, item.target_probability); | |||
359 | } | |||
360 | } | |||
361 | } | |||
362 | ||||
363 | /* Serialize the ipa info for lto. */ | |||
364 | ||||
365 | static void | |||
366 | ipa_profile_write_summary (void) | |||
367 | { | |||
368 | struct lto_simple_output_block *ob | |||
369 | = lto_create_simple_output_block (LTO_section_ipa_profile); | |||
370 | unsigned int i; | |||
371 | ||||
372 | streamer_write_uhwi_stream (ob->main_stream, histogram.length ()); | |||
373 | for (i = 0; i < histogram.length (); i++) | |||
374 | { | |||
375 | streamer_write_gcov_count_stream (ob->main_stream, histogram[i]->count); | |||
376 | streamer_write_uhwi_stream (ob->main_stream, histogram[i]->time); | |||
377 | streamer_write_uhwi_stream (ob->main_stream, histogram[i]->size); | |||
378 | } | |||
379 | ||||
380 | if (!call_sums) | |||
381 | return; | |||
382 | ||||
383 | /* Serialize speculative targets information. */ | |||
384 | unsigned int count = 0; | |||
385 | lto_symtab_encoder_t encoder = ob->decl_state->symtab_node_encoder; | |||
386 | lto_symtab_encoder_iterator lsei; | |||
387 | cgraph_node *node; | |||
388 | ||||
389 | for (lsei = lsei_start_function_in_partition (encoder); !lsei_end_p (lsei); | |||
390 | lsei_next_function_in_partition (&lsei)) | |||
391 | { | |||
392 | node = lsei_cgraph_node (lsei); | |||
393 | if (node->definition && node->has_gimple_body_p () | |||
394 | && node->indirect_calls) | |||
395 | count++; | |||
396 | } | |||
397 | ||||
398 | streamer_write_uhwi_stream (ob->main_stream, count); | |||
399 | ||||
400 | /* Process all of the functions. */ | |||
401 | for (lsei = lsei_start_function_in_partition (encoder); | |||
402 | !lsei_end_p (lsei) && count; lsei_next_function_in_partition (&lsei)) | |||
403 | { | |||
404 | cgraph_node *node = lsei_cgraph_node (lsei); | |||
405 | if (node->definition && node->has_gimple_body_p () | |||
406 | && node->indirect_calls) | |||
407 | { | |||
408 | int node_ref = lto_symtab_encoder_encode (encoder, node); | |||
409 | streamer_write_uhwi_stream (ob->main_stream, node_ref); | |||
410 | ||||
411 | for (cgraph_edge *e = node->indirect_calls; e; e = e->next_callee) | |||
412 | { | |||
413 | speculative_call_summary *csum = call_sums->get_create (e); | |||
414 | ipa_profile_write_edge_summary (ob, csum); | |||
415 | } | |||
416 | } | |||
417 | } | |||
418 | ||||
419 | lto_destroy_simple_output_block (ob); | |||
420 | } | |||
421 | ||||
422 | /* Dump all profile summary data for all cgraph nodes and edges to file F. */ | |||
423 | ||||
424 | static void | |||
425 | ipa_profile_dump_all_summaries (FILE *f) | |||
426 | { | |||
427 | fprintf (dump_file, | |||
428 | "\n========== IPA-profile speculative targets: ==========\n"); | |||
429 | cgraph_node *node; | |||
430 | FOR_EACH_FUNCTION_WITH_GIMPLE_BODY (node)for ((node) = symtab->first_function_with_gimple_body (); ( node); (node) = symtab->next_function_with_gimple_body (node )) | |||
431 | { | |||
432 | fprintf (f, "\nSummary for node %s:\n", node->dump_name ()); | |||
433 | for (cgraph_edge *e = node->indirect_calls; e; e = e->next_callee) | |||
434 | { | |||
435 | fprintf (f, " Summary for %s of indirect edge %d:\n", | |||
436 | e->caller->dump_name (), e->lto_stmt_uid); | |||
437 | speculative_call_summary *csum = call_sums->get_create (e); | |||
438 | csum->dump (f); | |||
439 | } | |||
440 | } | |||
441 | fprintf (f, "\n\n"); | |||
442 | } | |||
443 | ||||
444 | /* Read speculative targets information about edge for LTO WPA. */ | |||
445 | ||||
446 | static void | |||
447 | ipa_profile_read_edge_summary (class lto_input_block *ib, cgraph_edge *edge) | |||
448 | { | |||
449 | unsigned i, len; | |||
450 | ||||
451 | len = streamer_read_hwi (ib); | |||
452 | gcc_assert (len <= GCOV_TOPN_MAXIMUM_TRACKED_VALUES)((void)(!(len <= 32) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/ipa-profile.cc" , 452, __FUNCTION__), 0 : 0)); | |||
453 | speculative_call_summary *csum = call_sums->get_create (edge); | |||
454 | ||||
455 | for (i = 0; i < len; i++) | |||
456 | { | |||
457 | unsigned int target_id = streamer_read_hwi (ib); | |||
458 | int target_probability = streamer_read_hwi (ib); | |||
459 | speculative_call_target item (target_id, target_probability); | |||
460 | csum->speculative_call_targets.safe_push (item); | |||
461 | } | |||
462 | } | |||
463 | ||||
464 | /* Read profile speculative targets section information for LTO WPA. */ | |||
465 | ||||
466 | static void | |||
467 | ipa_profile_read_summary_section (struct lto_file_decl_data *file_data, | |||
468 | class lto_input_block *ib) | |||
469 | { | |||
470 | if (!ib) | |||
471 | return; | |||
472 | ||||
473 | lto_symtab_encoder_t encoder = file_data->symtab_node_encoder; | |||
474 | ||||
475 | unsigned int count = streamer_read_uhwi (ib); | |||
476 | ||||
477 | unsigned int i; | |||
478 | unsigned int index; | |||
479 | cgraph_node * node; | |||
480 | ||||
481 | for (i = 0; i < count; i++) | |||
482 | { | |||
483 | index = streamer_read_uhwi (ib); | |||
484 | node | |||
485 | = dyn_cast<cgraph_node *> (lto_symtab_encoder_deref (encoder, index)); | |||
486 | ||||
487 | for (cgraph_edge *e = node->indirect_calls; e; e = e->next_callee) | |||
488 | ipa_profile_read_edge_summary (ib, e); | |||
489 | } | |||
490 | } | |||
491 | ||||
492 | /* Deserialize the IPA histogram and speculative targets summary info for LTO. | |||
493 | */ | |||
494 | ||||
495 | static void | |||
496 | ipa_profile_read_summary (void) | |||
497 | { | |||
498 | struct lto_file_decl_data ** file_data_vec | |||
499 | = lto_get_file_decl_data (); | |||
500 | struct lto_file_decl_data * file_data; | |||
501 | int j = 0; | |||
502 | ||||
503 | hash_table<histogram_hash> hashtable (10); | |||
504 | ||||
505 | gcc_checking_assert (!call_sums)((void)(!(!call_sums) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/ipa-profile.cc" , 505, __FUNCTION__), 0 : 0)); | |||
506 | call_sums = new ipa_profile_call_summaries (symtab); | |||
507 | ||||
508 | while ((file_data = file_data_vec[j++])) | |||
509 | { | |||
510 | const char *data; | |||
511 | size_t len; | |||
512 | class lto_input_block *ib | |||
513 | = lto_create_simple_input_block (file_data, | |||
514 | LTO_section_ipa_profile, | |||
515 | &data, &len); | |||
516 | if (ib) | |||
517 | { | |||
518 | unsigned int num = streamer_read_uhwi (ib); | |||
519 | unsigned int n; | |||
520 | for (n = 0; n < num; n++) | |||
521 | { | |||
522 | gcov_type count = streamer_read_gcov_count (ib); | |||
523 | int time = streamer_read_uhwi (ib); | |||
524 | int size = streamer_read_uhwi (ib); | |||
525 | account_time_size (&hashtable, histogram, | |||
526 | count, time, size); | |||
527 | } | |||
528 | ||||
529 | ipa_profile_read_summary_section (file_data, ib); | |||
530 | ||||
531 | lto_destroy_simple_input_block (file_data, | |||
532 | LTO_section_ipa_profile, | |||
533 | ib, data, len); | |||
534 | } | |||
535 | } | |||
536 | histogram.qsort (cmp_counts)qsort (cmp_counts); | |||
537 | } | |||
538 | ||||
539 | /* Data used by ipa_propagate_frequency. */ | |||
540 | ||||
541 | struct ipa_propagate_frequency_data | |||
542 | { | |||
543 | cgraph_node *function_symbol; | |||
544 | bool maybe_unlikely_executed; | |||
545 | bool maybe_executed_once; | |||
546 | bool only_called_at_startup; | |||
547 | bool only_called_at_exit; | |||
548 | }; | |||
549 | ||||
550 | /* Worker for ipa_propagate_frequency_1. */ | |||
551 | ||||
552 | static bool | |||
553 | ipa_propagate_frequency_1 (struct cgraph_node *node, void *data) | |||
554 | { | |||
555 | struct ipa_propagate_frequency_data *d; | |||
556 | struct cgraph_edge *edge; | |||
557 | ||||
558 | d = (struct ipa_propagate_frequency_data *)data; | |||
559 | for (edge = node->callers; | |||
560 | edge && (d->maybe_unlikely_executed || d->maybe_executed_once | |||
561 | || d->only_called_at_startup || d->only_called_at_exit); | |||
562 | edge = edge->next_caller) | |||
563 | { | |||
564 | if (edge->caller != d->function_symbol) | |||
565 | { | |||
566 | d->only_called_at_startup &= edge->caller->only_called_at_startup; | |||
567 | /* It makes sense to put main() together with the static constructors. | |||
568 | It will be executed for sure, but rest of functions called from | |||
569 | main are definitely not at startup only. */ | |||
570 | if (MAIN_NAME_P (DECL_NAME (edge->caller->decl))((tree_check ((((contains_struct_check ((edge->caller-> decl), (TS_DECL_MINIMAL), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/ipa-profile.cc" , 570, __FUNCTION__))->decl_minimal.name)), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/ipa-profile.cc" , 570, __FUNCTION__, (IDENTIFIER_NODE))) == global_trees[TI_MAIN_IDENTIFIER ])) | |||
571 | d->only_called_at_startup = 0; | |||
572 | d->only_called_at_exit &= edge->caller->only_called_at_exit; | |||
573 | } | |||
574 | ||||
575 | /* When profile feedback is available, do not try to propagate too hard; | |||
576 | counts are already good guide on function frequencies and roundoff | |||
577 | errors can make us to push function into unlikely section even when | |||
578 | it is executed by the train run. Transfer the function only if all | |||
579 | callers are unlikely executed. */ | |||
580 | if (profile_info | |||
581 | && !(edge->callee->count.ipa () == profile_count::zero ()) | |||
582 | && (edge->caller->frequency != NODE_FREQUENCY_UNLIKELY_EXECUTED | |||
583 | || (edge->caller->inlined_to | |||
584 | && edge->caller->inlined_to->frequency | |||
585 | != NODE_FREQUENCY_UNLIKELY_EXECUTED))) | |||
586 | d->maybe_unlikely_executed = false; | |||
587 | if (edge->count.ipa ().initialized_p () | |||
588 | && !edge->count.ipa ().nonzero_p ()) | |||
589 | continue; | |||
590 | switch (edge->caller->frequency) | |||
591 | { | |||
592 | case NODE_FREQUENCY_UNLIKELY_EXECUTED: | |||
593 | break; | |||
594 | case NODE_FREQUENCY_EXECUTED_ONCE: | |||
595 | { | |||
596 | if (dump_file && (dump_flags & TDF_DETAILS)) | |||
597 | fprintf (dump_file, " Called by %s that is executed once\n", | |||
598 | edge->caller->dump_name ()); | |||
599 | d->maybe_unlikely_executed = false; | |||
600 | ipa_call_summary *s = ipa_call_summaries->get (edge); | |||
601 | if (s != NULLnullptr && s->loop_depth) | |||
602 | { | |||
603 | d->maybe_executed_once = false; | |||
604 | if (dump_file && (dump_flags & TDF_DETAILS)) | |||
605 | fprintf (dump_file, " Called in loop\n"); | |||
606 | } | |||
607 | break; | |||
608 | } | |||
609 | case NODE_FREQUENCY_HOT: | |||
610 | case NODE_FREQUENCY_NORMAL: | |||
611 | if (dump_file && (dump_flags & TDF_DETAILS)) | |||
612 | fprintf (dump_file, " Called by %s that is normal or hot\n", | |||
613 | edge->caller->dump_name ()); | |||
614 | d->maybe_unlikely_executed = false; | |||
615 | d->maybe_executed_once = false; | |||
616 | break; | |||
617 | } | |||
618 | } | |||
619 | return edge != NULLnullptr; | |||
620 | } | |||
621 | ||||
622 | /* Return ture if NODE contains hot calls. */ | |||
623 | ||||
624 | bool | |||
625 | contains_hot_call_p (struct cgraph_node *node) | |||
626 | { | |||
627 | struct cgraph_edge *e; | |||
628 | for (e = node->callees; e; e = e->next_callee) | |||
629 | if (e->maybe_hot_p ()) | |||
630 | return true; | |||
631 | else if (!e->inline_failed | |||
632 | && contains_hot_call_p (e->callee)) | |||
633 | return true; | |||
634 | for (e = node->indirect_calls; e; e = e->next_callee) | |||
635 | if (e->maybe_hot_p ()) | |||
636 | return true; | |||
637 | return false; | |||
638 | } | |||
639 | ||||
640 | /* See if the frequency of NODE can be updated based on frequencies of its | |||
641 | callers. */ | |||
642 | bool | |||
643 | ipa_propagate_frequency (struct cgraph_node *node) | |||
644 | { | |||
645 | struct ipa_propagate_frequency_data d = {node, true, true, true, true}; | |||
646 | bool changed = false; | |||
647 | ||||
648 | /* We cannot propagate anything useful about externally visible functions | |||
649 | nor about virtuals. */ | |||
650 | if (!node->local | |||
651 | || node->alias | |||
652 | || (opt_for_fn (node->decl, flag_devirtualize)(opts_for_fn (node->decl)->x_flag_devirtualize) | |||
653 | && DECL_VIRTUAL_P (node->decl)((contains_struct_check ((node->decl), (TS_DECL_COMMON), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/ipa-profile.cc" , 653, __FUNCTION__))->decl_common.virtual_flag))) | |||
654 | return false; | |||
655 | gcc_assert (node->analyzed)((void)(!(node->analyzed) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/ipa-profile.cc" , 655, __FUNCTION__), 0 : 0)); | |||
656 | if (dump_file && (dump_flags & TDF_DETAILS)) | |||
657 | fprintf (dump_file, "Processing frequency %s\n", node->dump_name ()); | |||
658 | ||||
659 | node->call_for_symbol_and_aliases (ipa_propagate_frequency_1, &d, | |||
660 | true); | |||
661 | ||||
662 | if ((d.only_called_at_startup && !d.only_called_at_exit) | |||
663 | && !node->only_called_at_startup) | |||
664 | { | |||
665 | node->only_called_at_startup = true; | |||
666 | if (dump_file) | |||
667 | fprintf (dump_file, "Node %s promoted to only called at startup.\n", | |||
668 | node->dump_name ()); | |||
669 | changed = true; | |||
670 | } | |||
671 | if ((d.only_called_at_exit && !d.only_called_at_startup) | |||
672 | && !node->only_called_at_exit) | |||
673 | { | |||
674 | node->only_called_at_exit = true; | |||
675 | if (dump_file) | |||
676 | fprintf (dump_file, "Node %s promoted to only called at exit.\n", | |||
677 | node->dump_name ()); | |||
678 | changed = true; | |||
679 | } | |||
680 | ||||
681 | /* With profile we can decide on hot/normal based on count. */ | |||
682 | if (node->count. ipa().initialized_p ()) | |||
683 | { | |||
684 | bool hot = false; | |||
685 | if (!(node->count. ipa() == profile_count::zero ()) | |||
686 | && node->count. ipa() >= get_hot_bb_threshold ()) | |||
687 | hot = true; | |||
688 | if (!hot) | |||
689 | hot |= contains_hot_call_p (node); | |||
690 | if (hot) | |||
691 | { | |||
692 | if (node->frequency != NODE_FREQUENCY_HOT) | |||
693 | { | |||
694 | if (dump_file) | |||
695 | fprintf (dump_file, "Node %s promoted to hot.\n", | |||
696 | node->dump_name ()); | |||
697 | node->frequency = NODE_FREQUENCY_HOT; | |||
698 | return true; | |||
699 | } | |||
700 | return false; | |||
701 | } | |||
702 | else if (node->frequency == NODE_FREQUENCY_HOT) | |||
703 | { | |||
704 | if (dump_file) | |||
705 | fprintf (dump_file, "Node %s reduced to normal.\n", | |||
706 | node->dump_name ()); | |||
707 | node->frequency = NODE_FREQUENCY_NORMAL; | |||
708 | changed = true; | |||
709 | } | |||
710 | } | |||
711 | /* These come either from profile or user hints; never update them. */ | |||
712 | if (node->frequency == NODE_FREQUENCY_HOT | |||
713 | || node->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED) | |||
714 | return changed; | |||
715 | if (d.maybe_unlikely_executed) | |||
716 | { | |||
717 | node->frequency = NODE_FREQUENCY_UNLIKELY_EXECUTED; | |||
718 | if (dump_file) | |||
719 | fprintf (dump_file, "Node %s promoted to unlikely executed.\n", | |||
720 | node->dump_name ()); | |||
721 | changed = true; | |||
722 | } | |||
723 | else if (d.maybe_executed_once && node->frequency != NODE_FREQUENCY_EXECUTED_ONCE) | |||
724 | { | |||
725 | node->frequency = NODE_FREQUENCY_EXECUTED_ONCE; | |||
726 | if (dump_file) | |||
727 | fprintf (dump_file, "Node %s promoted to executed once.\n", | |||
728 | node->dump_name ()); | |||
729 | changed = true; | |||
730 | } | |||
731 | return changed; | |||
732 | } | |||
733 | ||||
734 | /* Check that number of arguments of N agrees with E. | |||
735 | Be conservative when summaries are not present. */ | |||
736 | ||||
737 | static bool | |||
738 | check_argument_count (struct cgraph_node *n, struct cgraph_edge *e) | |||
739 | { | |||
740 | if (!ipa_node_params_sum || !ipa_edge_args_sum) | |||
741 | return true; | |||
742 | ipa_node_params *info = ipa_node_params_sum->get (n->function_symbol ()); | |||
743 | if (!info) | |||
744 | return true; | |||
745 | ipa_edge_args *e_info = ipa_edge_args_sum->get (e); | |||
746 | if (!e_info) | |||
747 | return true; | |||
748 | if (ipa_get_param_count (info) != ipa_get_cs_argument_count (e_info) | |||
749 | && (ipa_get_param_count (info) >= ipa_get_cs_argument_count (e_info) | |||
750 | || !stdarg_p (TREE_TYPE (n->decl)((contains_struct_check ((n->decl), (TS_TYPED), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/ipa-profile.cc" , 750, __FUNCTION__))->typed.type)))) | |||
751 | return false; | |||
752 | return true; | |||
753 | } | |||
754 | ||||
755 | /* Simple ipa profile pass propagating frequencies across the callgraph. */ | |||
756 | ||||
757 | static unsigned int | |||
758 | ipa_profile (void) | |||
759 | { | |||
760 | struct cgraph_node **order; | |||
761 | struct cgraph_edge *e; | |||
762 | int order_pos; | |||
763 | bool something_changed = false; | |||
764 | int i; | |||
765 | gcov_type overall_time = 0, cutoff = 0, cumulated = 0, overall_size = 0; | |||
766 | struct cgraph_node *n,*n2; | |||
767 | int nindirect = 0, ncommon = 0, nunknown = 0, nuseless = 0, nconverted = 0; | |||
768 | int nmismatch = 0, nimpossible = 0; | |||
769 | bool node_map_initialized = false; | |||
770 | gcov_type threshold; | |||
771 | ||||
772 | if (dump_file) | |||
773 | dump_histogram (dump_file, histogram); | |||
774 | for (i = 0; i < (int)histogram.length (); i++) | |||
775 | { | |||
776 | overall_time += histogram[i]->count * histogram[i]->time; | |||
777 | overall_size += histogram[i]->size; | |||
778 | } | |||
779 | threshold = 0; | |||
780 | if (overall_time) | |||
781 | { | |||
782 | gcc_assert (overall_size)((void)(!(overall_size) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/ipa-profile.cc" , 782, __FUNCTION__), 0 : 0)); | |||
783 | ||||
784 | cutoff = (overall_time * param_hot_bb_count_ws_permilleglobal_options.x_param_hot_bb_count_ws_permille + 500) / 1000; | |||
785 | for (i = 0; cumulated < cutoff; i++) | |||
786 | { | |||
787 | cumulated += histogram[i]->count * histogram[i]->time; | |||
788 | threshold = histogram[i]->count; | |||
789 | } | |||
790 | if (!threshold) | |||
791 | threshold = 1; | |||
792 | if (dump_file) | |||
793 | { | |||
794 | gcov_type cumulated_time = 0, cumulated_size = 0; | |||
795 | ||||
796 | for (i = 0; | |||
797 | i < (int)histogram.length () && histogram[i]->count >= threshold; | |||
798 | i++) | |||
799 | { | |||
800 | cumulated_time += histogram[i]->count * histogram[i]->time; | |||
801 | cumulated_size += histogram[i]->size; | |||
802 | } | |||
803 | fprintf (dump_file, "Determined min count: %" PRId64"l" "d" | |||
804 | " Time:%3.2f%% Size:%3.2f%%\n", | |||
805 | (int64_t)threshold, | |||
806 | cumulated_time * 100.0 / overall_time, | |||
807 | cumulated_size * 100.0 / overall_size); | |||
808 | } | |||
809 | ||||
810 | if (in_lto_pglobal_options.x_in_lto_p) | |||
811 | { | |||
812 | if (dump_file) | |||
813 | fprintf (dump_file, "Setting hotness threshold in LTO mode.\n"); | |||
814 | set_hot_bb_threshold (threshold); | |||
815 | } | |||
816 | } | |||
817 | histogram.release (); | |||
818 | histogram_pool.release (); | |||
819 | ||||
820 | /* Produce speculative calls: we saved common target from profiling into | |||
821 | e->target_id. Now, at link time, we can look up corresponding | |||
822 | function node and produce speculative call. */ | |||
823 | ||||
824 | gcc_checking_assert (call_sums)((void)(!(call_sums) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/ipa-profile.cc" , 824, __FUNCTION__), 0 : 0)); | |||
825 | ||||
826 | if (dump_file) | |||
827 | { | |||
828 | if (!node_map_initialized) | |||
829 | init_node_map (false); | |||
830 | node_map_initialized = true; | |||
831 | ||||
832 | ipa_profile_dump_all_summaries (dump_file); | |||
833 | } | |||
834 | ||||
835 | FOR_EACH_DEFINED_FUNCTION (n)for ((n) = symtab->first_defined_function (); (n); (n) = symtab ->next_defined_function ((n))) | |||
836 | { | |||
837 | bool update = false; | |||
838 | ||||
839 | if (!opt_for_fn (n->decl, flag_ipa_profile)(opts_for_fn (n->decl)->x_flag_ipa_profile)) | |||
840 | continue; | |||
841 | ||||
842 | for (e = n->indirect_calls; e; e = e->next_callee) | |||
843 | { | |||
844 | if (n->count.initialized_p ()) | |||
845 | nindirect++; | |||
846 | ||||
847 | speculative_call_summary *csum = call_sums->get_create (e); | |||
848 | unsigned spec_count = csum->speculative_call_targets.length (); | |||
849 | if (spec_count) | |||
850 | { | |||
851 | if (!node_map_initialized) | |||
852 | init_node_map (false); | |||
853 | node_map_initialized = true; | |||
854 | ncommon++; | |||
855 | ||||
856 | unsigned speculative_id = 0; | |||
857 | profile_count orig = e->count; | |||
858 | for (unsigned i = 0; i < spec_count; i++) | |||
859 | { | |||
860 | speculative_call_target item | |||
861 | = csum->speculative_call_targets[i]; | |||
862 | n2 = find_func_by_profile_id (item.target_id); | |||
863 | if (n2) | |||
864 | { | |||
865 | if (dump_file) | |||
866 | { | |||
867 | fprintf (dump_file, | |||
868 | "Indirect call -> direct call from" | |||
869 | " other module %s => %s, prob %3.2f\n", | |||
870 | n->dump_name (), | |||
871 | n2->dump_name (), | |||
872 | item.target_probability | |||
873 | / (float) REG_BR_PROB_BASE10000); | |||
874 | } | |||
875 | if (item.target_probability < REG_BR_PROB_BASE10000 / 2) | |||
876 | { | |||
877 | nuseless++; | |||
878 | if (dump_file) | |||
879 | fprintf (dump_file, | |||
880 | "Not speculating: " | |||
881 | "probability is too low.\n"); | |||
882 | } | |||
883 | else if (!e->maybe_hot_p ()) | |||
884 | { | |||
885 | nuseless++; | |||
886 | if (dump_file) | |||
887 | fprintf (dump_file, | |||
888 | "Not speculating: call is cold.\n"); | |||
889 | } | |||
890 | else if (n2->get_availability () <= AVAIL_INTERPOSABLE | |||
891 | && n2->can_be_discarded_p ()) | |||
892 | { | |||
893 | nuseless++; | |||
894 | if (dump_file) | |||
895 | fprintf (dump_file, | |||
896 | "Not speculating: target is overwritable " | |||
897 | "and can be discarded.\n"); | |||
898 | } | |||
899 | else if (!check_argument_count (n2, e)) | |||
900 | { | |||
901 | nmismatch++; | |||
902 | if (dump_file) | |||
903 | fprintf (dump_file, | |||
904 | "Not speculating: " | |||
905 | "parameter count mismatch\n"); | |||
906 | } | |||
907 | else if (e->indirect_info->polymorphic | |||
908 | && !opt_for_fn (n->decl, flag_devirtualize)(opts_for_fn (n->decl)->x_flag_devirtualize) | |||
909 | && !possible_polymorphic_call_target_p (e, n2)) | |||
910 | { | |||
911 | nimpossible++; | |||
912 | if (dump_file) | |||
913 | fprintf (dump_file, | |||
914 | "Not speculating: " | |||
915 | "function is not in the polymorphic " | |||
916 | "call target list\n"); | |||
917 | } | |||
918 | else | |||
919 | { | |||
920 | /* Target may be overwritable, but profile says that | |||
921 | control flow goes to this particular implementation | |||
922 | of N2. Speculate on the local alias to allow | |||
923 | inlining. */ | |||
924 | if (!n2->can_be_discarded_p ()) | |||
925 | { | |||
926 | cgraph_node *alias; | |||
927 | alias = dyn_cast<cgraph_node *> | |||
928 | (n2->noninterposable_alias ()); | |||
929 | if (alias) | |||
930 | n2 = alias; | |||
931 | } | |||
932 | nconverted++; | |||
933 | profile_probability prob | |||
934 | = profile_probability::from_reg_br_prob_base | |||
935 | (item.target_probability).adjusted (); | |||
936 | e->make_speculative (n2, | |||
937 | orig.apply_probability (prob), | |||
938 | speculative_id); | |||
939 | update = true; | |||
940 | speculative_id++; | |||
941 | } | |||
942 | } | |||
943 | else | |||
944 | { | |||
945 | if (dump_file) | |||
946 | fprintf (dump_file, | |||
947 | "Function with profile-id %i not found.\n", | |||
948 | item.target_id); | |||
949 | nunknown++; | |||
950 | } | |||
951 | } | |||
952 | } | |||
953 | } | |||
954 | if (update) | |||
955 | ipa_update_overall_fn_summary (n); | |||
956 | } | |||
957 | if (node_map_initialized) | |||
958 | del_node_map (); | |||
959 | if (dump_file && nindirect) | |||
960 | fprintf (dump_file, | |||
961 | "%i indirect calls trained.\n" | |||
962 | "%i (%3.2f%%) have common target.\n" | |||
963 | "%i (%3.2f%%) targets was not found.\n" | |||
964 | "%i (%3.2f%%) targets had parameter count mismatch.\n" | |||
965 | "%i (%3.2f%%) targets was not in polymorphic call target list.\n" | |||
966 | "%i (%3.2f%%) speculations seems useless.\n" | |||
967 | "%i (%3.2f%%) speculations produced.\n", | |||
968 | nindirect, | |||
969 | ncommon, ncommon * 100.0 / nindirect, | |||
970 | nunknown, nunknown * 100.0 / nindirect, | |||
971 | nmismatch, nmismatch * 100.0 / nindirect, | |||
972 | nimpossible, nimpossible * 100.0 / nindirect, | |||
973 | nuseless, nuseless * 100.0 / nindirect, | |||
974 | nconverted, nconverted * 100.0 / nindirect); | |||
975 | ||||
976 | order = XCNEWVEC (struct cgraph_node *, symtab->cgraph_count)((struct cgraph_node * *) xcalloc ((symtab->cgraph_count), sizeof (struct cgraph_node *))); | |||
977 | order_pos = ipa_reverse_postorder (order); | |||
978 | for (i = order_pos - 1; i >= 0; i--) | |||
979 | { | |||
980 | if (order[i]->local | |||
981 | && opt_for_fn (order[i]->decl, flag_ipa_profile)(opts_for_fn (order[i]->decl)->x_flag_ipa_profile) | |||
982 | && ipa_propagate_frequency (order[i])) | |||
983 | { | |||
984 | for (e = order[i]->callees; e; e = e->next_callee) | |||
985 | if (e->callee->local && !e->callee->aux) | |||
986 | { | |||
987 | something_changed = true; | |||
988 | e->callee->aux = (void *)1; | |||
989 | } | |||
990 | } | |||
991 | order[i]->aux = NULLnullptr; | |||
992 | } | |||
993 | ||||
994 | while (something_changed) | |||
995 | { | |||
996 | something_changed = false; | |||
997 | for (i = order_pos - 1; i >= 0; i--) | |||
998 | { | |||
999 | if (order[i]->aux | |||
1000 | && opt_for_fn (order[i]->decl, flag_ipa_profile)(opts_for_fn (order[i]->decl)->x_flag_ipa_profile) | |||
1001 | && ipa_propagate_frequency (order[i])) | |||
1002 | { | |||
1003 | for (e = order[i]->callees; e; e = e->next_callee) | |||
1004 | if (e->callee->local && !e->callee->aux) | |||
1005 | { | |||
1006 | something_changed = true; | |||
1007 | e->callee->aux = (void *)1; | |||
1008 | } | |||
1009 | } | |||
1010 | order[i]->aux = NULLnullptr; | |||
1011 | } | |||
1012 | } | |||
1013 | free (order); | |||
1014 | ||||
1015 | if (dump_file && (dump_flags & TDF_DETAILS)) | |||
1016 | symtab->dump (dump_file); | |||
1017 | ||||
1018 | delete call_sums; | |||
1019 | call_sums = NULLnullptr; | |||
1020 | ||||
1021 | return 0; | |||
1022 | } | |||
1023 | ||||
1024 | namespace { | |||
1025 | ||||
1026 | const pass_data pass_data_ipa_profile = | |||
1027 | { | |||
1028 | IPA_PASS, /* type */ | |||
1029 | "profile_estimate", /* name */ | |||
1030 | OPTGROUP_NONE, /* optinfo_flags */ | |||
1031 | TV_IPA_PROFILE, /* tv_id */ | |||
1032 | 0, /* properties_required */ | |||
1033 | 0, /* properties_provided */ | |||
1034 | 0, /* properties_destroyed */ | |||
1035 | 0, /* todo_flags_start */ | |||
1036 | 0, /* todo_flags_finish */ | |||
1037 | }; | |||
1038 | ||||
1039 | class pass_ipa_profile : public ipa_opt_pass_d | |||
1040 | { | |||
1041 | public: | |||
1042 | pass_ipa_profile (gcc::context *ctxt) | |||
1043 | : ipa_opt_pass_d (pass_data_ipa_profile, ctxt, | |||
1044 | ipa_profile_generate_summary, /* generate_summary */ | |||
1045 | ipa_profile_write_summary, /* write_summary */ | |||
1046 | ipa_profile_read_summary, /* read_summary */ | |||
1047 | NULLnullptr, /* write_optimization_summary */ | |||
1048 | NULLnullptr, /* read_optimization_summary */ | |||
1049 | NULLnullptr, /* stmt_fixup */ | |||
1050 | 0, /* function_transform_todo_flags_start */ | |||
1051 | NULLnullptr, /* function_transform */ | |||
1052 | NULLnullptr) /* variable_transform */ | |||
1053 | {} | |||
1054 | ||||
1055 | /* opt_pass methods: */ | |||
1056 | bool gate (function *) final override { return flag_ipa_profileglobal_options.x_flag_ipa_profile || in_lto_pglobal_options.x_in_lto_p; } | |||
1057 | unsigned int execute (function *) final override { return ipa_profile (); } | |||
1058 | ||||
1059 | }; // class pass_ipa_profile | |||
1060 | ||||
1061 | } // anon namespace | |||
1062 | ||||
1063 | ipa_opt_pass_d * | |||
1064 | make_pass_ipa_profile (gcc::context *ctxt) | |||
1065 | { | |||
1066 | return new pass_ipa_profile (ctxt); | |||
1067 | } |
1 | /* Callgraph handling code. | ||||||||||||||||
2 | Copyright (C) 2003-2023 Free Software Foundation, Inc. | ||||||||||||||||
3 | Contributed by Jan Hubicka | ||||||||||||||||
4 | |||||||||||||||||
5 | This file is part of GCC. | ||||||||||||||||
6 | |||||||||||||||||
7 | GCC is free software; you can redistribute it and/or modify it under | ||||||||||||||||
8 | the terms of the GNU General Public License as published by the Free | ||||||||||||||||
9 | Software Foundation; either version 3, or (at your option) any later | ||||||||||||||||
10 | version. | ||||||||||||||||
11 | |||||||||||||||||
12 | GCC is distributed in the hope that it will be useful, but WITHOUT ANY | ||||||||||||||||
13 | WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||||||||||||||||
14 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||||||||||||||||
15 | for more details. | ||||||||||||||||
16 | |||||||||||||||||
17 | You should have received a copy of the GNU General Public License | ||||||||||||||||
18 | along with GCC; see the file COPYING3. If not see | ||||||||||||||||
19 | <http://www.gnu.org/licenses/>. */ | ||||||||||||||||
20 | |||||||||||||||||
21 | #ifndef GCC_CGRAPH_H | ||||||||||||||||
22 | #define GCC_CGRAPH_H | ||||||||||||||||
23 | |||||||||||||||||
24 | #include "profile-count.h" | ||||||||||||||||
25 | #include "ipa-ref.h" | ||||||||||||||||
26 | #include "plugin-api.h" | ||||||||||||||||
27 | #include "ipa-param-manipulation.h" | ||||||||||||||||
28 | |||||||||||||||||
29 | extern void debuginfo_early_init (void); | ||||||||||||||||
30 | extern void debuginfo_init (void); | ||||||||||||||||
31 | extern void debuginfo_fini (void); | ||||||||||||||||
32 | extern void debuginfo_start (void); | ||||||||||||||||
33 | extern void debuginfo_stop (void); | ||||||||||||||||
34 | extern void debuginfo_early_start (void); | ||||||||||||||||
35 | extern void debuginfo_early_stop (void); | ||||||||||||||||
36 | |||||||||||||||||
37 | class ipa_opt_pass_d; | ||||||||||||||||
38 | typedef ipa_opt_pass_d *ipa_opt_pass; | ||||||||||||||||
39 | |||||||||||||||||
40 | /* Symbol table consists of functions and variables. | ||||||||||||||||
41 | TODO: add labels and CONST_DECLs. */ | ||||||||||||||||
42 | enum symtab_type | ||||||||||||||||
43 | { | ||||||||||||||||
44 | SYMTAB_SYMBOL, | ||||||||||||||||
45 | SYMTAB_FUNCTION, | ||||||||||||||||
46 | SYMTAB_VARIABLE | ||||||||||||||||
47 | }; | ||||||||||||||||
48 | |||||||||||||||||
49 | /* Section names are stored as reference counted strings in GGC safe hashtable | ||||||||||||||||
50 | (to make them survive through PCH). */ | ||||||||||||||||
51 | |||||||||||||||||
52 | struct GTY((for_user)) section_hash_entry | ||||||||||||||||
53 | { | ||||||||||||||||
54 | int ref_count; | ||||||||||||||||
55 | char *name; /* As long as this datastructure stays in GGC, we cannot put | ||||||||||||||||
56 | string at the tail of structure of GGC dies in horrible | ||||||||||||||||
57 | way */ | ||||||||||||||||
58 | }; | ||||||||||||||||
59 | |||||||||||||||||
60 | struct section_name_hasher : ggc_ptr_hash<section_hash_entry> | ||||||||||||||||
61 | { | ||||||||||||||||
62 | typedef const char *compare_type; | ||||||||||||||||
63 | |||||||||||||||||
64 | static hashval_t hash (section_hash_entry *); | ||||||||||||||||
65 | static bool equal (section_hash_entry *, const char *); | ||||||||||||||||
66 | }; | ||||||||||||||||
67 | |||||||||||||||||
68 | enum availability | ||||||||||||||||
69 | { | ||||||||||||||||
70 | /* Not yet set by cgraph_function_body_availability. */ | ||||||||||||||||
71 | AVAIL_UNSET, | ||||||||||||||||
72 | /* Function body/variable initializer is unknown. */ | ||||||||||||||||
73 | AVAIL_NOT_AVAILABLE, | ||||||||||||||||
74 | /* Function body/variable initializer is known but might be replaced | ||||||||||||||||
75 | by a different one from other compilation unit and thus needs to | ||||||||||||||||
76 | be dealt with a care. Like AVAIL_NOT_AVAILABLE it can have | ||||||||||||||||
77 | arbitrary side effects on escaping variables and functions, while | ||||||||||||||||
78 | like AVAILABLE it might access static variables. */ | ||||||||||||||||
79 | AVAIL_INTERPOSABLE, | ||||||||||||||||
80 | /* Function body/variable initializer is known and will be used in final | ||||||||||||||||
81 | program. */ | ||||||||||||||||
82 | AVAIL_AVAILABLE, | ||||||||||||||||
83 | /* Function body/variable initializer is known and all it's uses are | ||||||||||||||||
84 | explicitly visible within current unit (i.e. it's address is never taken | ||||||||||||||||
85 | and it is not exported to other units). Currently used only for | ||||||||||||||||
86 | functions. */ | ||||||||||||||||
87 | AVAIL_LOCAL | ||||||||||||||||
88 | }; | ||||||||||||||||
89 | |||||||||||||||||
90 | /* Classification of symbols WRT partitioning. */ | ||||||||||||||||
91 | enum symbol_partitioning_class | ||||||||||||||||
92 | { | ||||||||||||||||
93 | /* External declarations are ignored by partitioning algorithms and they are | ||||||||||||||||
94 | added into the boundary later via compute_ltrans_boundary. */ | ||||||||||||||||
95 | SYMBOL_EXTERNAL, | ||||||||||||||||
96 | /* Partitioned symbols are put into one of partitions. */ | ||||||||||||||||
97 | SYMBOL_PARTITION, | ||||||||||||||||
98 | /* Duplicated symbols (such as comdat or constant pool references) are | ||||||||||||||||
99 | copied into every node needing them via add_symbol_to_partition. */ | ||||||||||||||||
100 | SYMBOL_DUPLICATE | ||||||||||||||||
101 | }; | ||||||||||||||||
102 | |||||||||||||||||
103 | /* Base of all entries in the symbol table. | ||||||||||||||||
104 | The symtab_node is inherited by cgraph and varpol nodes. */ | ||||||||||||||||
105 | struct GTY((desc ("%h.type"), tag ("SYMTAB_SYMBOL"), | ||||||||||||||||
106 | chain_next ("%h.next"), chain_prev ("%h.previous"))) | ||||||||||||||||
107 | symtab_node | ||||||||||||||||
108 | { | ||||||||||||||||
109 | public: | ||||||||||||||||
110 | friend class symbol_table; | ||||||||||||||||
111 | |||||||||||||||||
112 | /* Constructor. */ | ||||||||||||||||
113 | explicit symtab_node (symtab_type t) | ||||||||||||||||
114 | : type (t), resolution (LDPR_UNKNOWN), definition (false), alias (false), | ||||||||||||||||
115 | transparent_alias (false), weakref (false), cpp_implicit_alias (false), | ||||||||||||||||
116 | symver (false), analyzed (false), writeonly (false), | ||||||||||||||||
117 | refuse_visibility_changes (false), externally_visible (false), | ||||||||||||||||
118 | no_reorder (false), force_output (false), forced_by_abi (false), | ||||||||||||||||
119 | unique_name (false), implicit_section (false), body_removed (false), | ||||||||||||||||
120 | semantic_interposition (flag_semantic_interpositionglobal_options.x_flag_semantic_interposition), | ||||||||||||||||
121 | used_from_other_partition (false), in_other_partition (false), | ||||||||||||||||
122 | address_taken (false), in_init_priority_hash (false), | ||||||||||||||||
123 | need_lto_streaming (false), offloadable (false), ifunc_resolver (false), | ||||||||||||||||
124 | order (false), next_sharing_asm_name (NULLnullptr), | ||||||||||||||||
125 | previous_sharing_asm_name (NULLnullptr), same_comdat_group (NULLnullptr), ref_list (), | ||||||||||||||||
126 | alias_target (NULLnullptr), lto_file_data (NULLnullptr), aux (NULLnullptr), | ||||||||||||||||
127 | x_comdat_group (NULL_TREE(tree) nullptr), x_section (NULLnullptr) | ||||||||||||||||
128 | {} | ||||||||||||||||
129 | |||||||||||||||||
130 | /* Return name. */ | ||||||||||||||||
131 | const char *name () const; | ||||||||||||||||
132 | |||||||||||||||||
133 | /* Return dump name. */ | ||||||||||||||||
134 | const char *dump_name () const; | ||||||||||||||||
135 | |||||||||||||||||
136 | /* Return asm name. */ | ||||||||||||||||
137 | const char *asm_name () const; | ||||||||||||||||
138 | |||||||||||||||||
139 | /* Return dump name with assembler name. */ | ||||||||||||||||
140 | const char *dump_asm_name () const; | ||||||||||||||||
141 | |||||||||||||||||
142 | /* Return visibility name. */ | ||||||||||||||||
143 | const char *get_visibility_string () const; | ||||||||||||||||
144 | |||||||||||||||||
145 | /* Return type_name name. */ | ||||||||||||||||
146 | const char *get_symtab_type_string () const; | ||||||||||||||||
147 | |||||||||||||||||
148 | /* Add node into symbol table. This function is not used directly, but via | ||||||||||||||||
149 | cgraph/varpool node creation routines. */ | ||||||||||||||||
150 | void register_symbol (void); | ||||||||||||||||
151 | |||||||||||||||||
152 | /* Remove symbol from symbol table. */ | ||||||||||||||||
153 | void remove (void); | ||||||||||||||||
154 | |||||||||||||||||
155 | /* Dump symtab node to F. */ | ||||||||||||||||
156 | void dump (FILE *f); | ||||||||||||||||
157 | |||||||||||||||||
158 | /* Dump symtab callgraph in graphviz format. */ | ||||||||||||||||
159 | void dump_graphviz (FILE *f); | ||||||||||||||||
160 | |||||||||||||||||
161 | /* Dump symtab node to stderr. */ | ||||||||||||||||
162 | void DEBUG_FUNCTION__attribute__ ((__used__)) debug (void); | ||||||||||||||||
163 | |||||||||||||||||
164 | /* Verify consistency of node. */ | ||||||||||||||||
165 | void DEBUG_FUNCTION__attribute__ ((__used__)) verify (void); | ||||||||||||||||
166 | |||||||||||||||||
167 | /* Return ipa reference from this symtab_node to | ||||||||||||||||
168 | REFERRED_NODE or REFERRED_VARPOOL_NODE. USE_TYPE specify type | ||||||||||||||||
169 | of the use and STMT the statement (if it exists). */ | ||||||||||||||||
170 | ipa_ref *create_reference (symtab_node *referred_node, | ||||||||||||||||
171 | enum ipa_ref_use use_type); | ||||||||||||||||
172 | |||||||||||||||||
173 | /* Return ipa reference from this symtab_node to | ||||||||||||||||
174 | REFERRED_NODE or REFERRED_VARPOOL_NODE. USE_TYPE specify type | ||||||||||||||||
175 | of the use and STMT the statement (if it exists). */ | ||||||||||||||||
176 | ipa_ref *create_reference (symtab_node *referred_node, | ||||||||||||||||
177 | enum ipa_ref_use use_type, gimple *stmt); | ||||||||||||||||
178 | |||||||||||||||||
179 | /* If VAL is a reference to a function or a variable, add a reference from | ||||||||||||||||
180 | this symtab_node to the corresponding symbol table node. Return the new | ||||||||||||||||
181 | reference or NULL if none was created. */ | ||||||||||||||||
182 | ipa_ref *maybe_create_reference (tree val, gimple *stmt); | ||||||||||||||||
183 | |||||||||||||||||
184 | /* Clone all references from symtab NODE to this symtab_node. */ | ||||||||||||||||
185 | void clone_references (symtab_node *node); | ||||||||||||||||
186 | |||||||||||||||||
187 | /* Remove all stmt references in non-speculative references. | ||||||||||||||||
188 | Those are not maintained during inlining & clonning. | ||||||||||||||||
189 | The exception are speculative references that are updated along | ||||||||||||||||
190 | with callgraph edges associated with them. */ | ||||||||||||||||
191 | void clone_referring (symtab_node *node); | ||||||||||||||||
192 | |||||||||||||||||
193 | /* Clone reference REF to this symtab_node and set its stmt to STMT. */ | ||||||||||||||||
194 | ipa_ref *clone_reference (ipa_ref *ref, gimple *stmt); | ||||||||||||||||
195 | |||||||||||||||||
196 | /* Find the structure describing a reference to REFERRED_NODE | ||||||||||||||||
197 | and associated with statement STMT. */ | ||||||||||||||||
198 | ipa_ref *find_reference (symtab_node *referred_node, gimple *stmt, | ||||||||||||||||
199 | unsigned int lto_stmt_uid); | ||||||||||||||||
200 | |||||||||||||||||
201 | /* Remove all references that are associated with statement STMT. */ | ||||||||||||||||
202 | void remove_stmt_references (gimple *stmt); | ||||||||||||||||
203 | |||||||||||||||||
204 | /* Remove all stmt references in non-speculative references. | ||||||||||||||||
205 | Those are not maintained during inlining & clonning. | ||||||||||||||||
206 | The exception are speculative references that are updated along | ||||||||||||||||
207 | with callgraph edges associated with them. */ | ||||||||||||||||
208 | void clear_stmts_in_references (void); | ||||||||||||||||
209 | |||||||||||||||||
210 | /* Remove all references in ref list. */ | ||||||||||||||||
211 | void remove_all_references (void); | ||||||||||||||||
212 | |||||||||||||||||
213 | /* Remove all referring items in ref list. */ | ||||||||||||||||
214 | void remove_all_referring (void); | ||||||||||||||||
215 | |||||||||||||||||
216 | /* Dump references in ref list to FILE. */ | ||||||||||||||||
217 | void dump_references (FILE *file); | ||||||||||||||||
218 | |||||||||||||||||
219 | /* Dump referring in list to FILE. */ | ||||||||||||||||
220 | void dump_referring (FILE *); | ||||||||||||||||
221 | |||||||||||||||||
222 | /* Get number of references for this node. */ | ||||||||||||||||
223 | inline unsigned num_references (void) | ||||||||||||||||
224 | { | ||||||||||||||||
225 | return ref_list.references.length (); | ||||||||||||||||
226 | } | ||||||||||||||||
227 | |||||||||||||||||
228 | /* Iterates I-th reference in the list, REF is also set. */ | ||||||||||||||||
229 | ipa_ref *iterate_reference (unsigned i, ipa_ref *&ref); | ||||||||||||||||
230 | |||||||||||||||||
231 | /* Iterates I-th referring item in the list, REF is also set. */ | ||||||||||||||||
232 | ipa_ref *iterate_referring (unsigned i, ipa_ref *&ref); | ||||||||||||||||
233 | |||||||||||||||||
234 | /* Iterates I-th referring alias item in the list, REF is also set. */ | ||||||||||||||||
235 | ipa_ref *iterate_direct_aliases (unsigned i, ipa_ref *&ref); | ||||||||||||||||
236 | |||||||||||||||||
237 | /* Return true if symtab node and TARGET represents | ||||||||||||||||
238 | semantically equivalent symbols. */ | ||||||||||||||||
239 | bool semantically_equivalent_p (symtab_node *target); | ||||||||||||||||
240 | |||||||||||||||||
241 | /* Classify symbol symtab node for partitioning. */ | ||||||||||||||||
242 | enum symbol_partitioning_class get_partitioning_class (void); | ||||||||||||||||
243 | |||||||||||||||||
244 | /* Return comdat group. */ | ||||||||||||||||
245 | tree get_comdat_group () | ||||||||||||||||
246 | { | ||||||||||||||||
247 | return x_comdat_group; | ||||||||||||||||
248 | } | ||||||||||||||||
249 | |||||||||||||||||
250 | /* Return comdat group as identifier_node. */ | ||||||||||||||||
251 | tree get_comdat_group_id () | ||||||||||||||||
252 | { | ||||||||||||||||
253 | if (x_comdat_group && TREE_CODE (x_comdat_group)((enum tree_code) (x_comdat_group)->base.code) != IDENTIFIER_NODE) | ||||||||||||||||
254 | x_comdat_group = DECL_ASSEMBLER_NAME (x_comdat_group)decl_assembler_name (x_comdat_group); | ||||||||||||||||
255 | return x_comdat_group; | ||||||||||||||||
256 | } | ||||||||||||||||
257 | |||||||||||||||||
258 | /* Set comdat group. */ | ||||||||||||||||
259 | void set_comdat_group (tree group) | ||||||||||||||||
260 | { | ||||||||||||||||
261 | gcc_checking_assert (!group || TREE_CODE (group) == IDENTIFIER_NODE((void)(!(!group || ((enum tree_code) (group)->base.code) == IDENTIFIER_NODE || (tree_code_type_tmpl <0>::tree_code_type [(int) (((enum tree_code) (group)->base.code))] == tcc_declaration )) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 262, __FUNCTION__), 0 : 0)) | ||||||||||||||||
262 | || DECL_P (group))((void)(!(!group || ((enum tree_code) (group)->base.code) == IDENTIFIER_NODE || (tree_code_type_tmpl <0>::tree_code_type [(int) (((enum tree_code) (group)->base.code))] == tcc_declaration )) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 262, __FUNCTION__), 0 : 0)); | ||||||||||||||||
263 | x_comdat_group = group; | ||||||||||||||||
264 | } | ||||||||||||||||
265 | |||||||||||||||||
266 | /* Return section as string. */ | ||||||||||||||||
267 | const char * get_section () const | ||||||||||||||||
268 | { | ||||||||||||||||
269 | if (!x_section) | ||||||||||||||||
270 | return NULLnullptr; | ||||||||||||||||
271 | return x_section->name; | ||||||||||||||||
272 | } | ||||||||||||||||
273 | |||||||||||||||||
274 | /* Remove node from same comdat group. */ | ||||||||||||||||
275 | void remove_from_same_comdat_group (void); | ||||||||||||||||
276 | |||||||||||||||||
277 | /* Add this symtab_node to the same comdat group that OLD is in. */ | ||||||||||||||||
278 | void add_to_same_comdat_group (symtab_node *old_node); | ||||||||||||||||
279 | |||||||||||||||||
280 | /* Dissolve the same_comdat_group list in which NODE resides. */ | ||||||||||||||||
281 | void dissolve_same_comdat_group_list (void); | ||||||||||||||||
282 | |||||||||||||||||
283 | /* Return true when symtab_node is known to be used from other (non-LTO) | ||||||||||||||||
284 | object file. Known only when doing LTO via linker plugin. */ | ||||||||||||||||
285 | bool used_from_object_file_p (void); | ||||||||||||||||
286 | |||||||||||||||||
287 | /* Walk the alias chain to return the symbol NODE is alias of. | ||||||||||||||||
288 | If NODE is not an alias, return NODE. | ||||||||||||||||
289 | When AVAILABILITY is non-NULL, get minimal availability in the chain. | ||||||||||||||||
290 | When REF is non-NULL, assume that reference happens in symbol REF | ||||||||||||||||
291 | when determining the availability. */ | ||||||||||||||||
292 | symtab_node *ultimate_alias_target (enum availability *avail = NULLnullptr, | ||||||||||||||||
293 | struct symtab_node *ref = NULLnullptr); | ||||||||||||||||
294 | |||||||||||||||||
295 | /* Return next reachable static symbol with initializer after NODE. */ | ||||||||||||||||
296 | inline symtab_node *next_defined_symbol (void); | ||||||||||||||||
297 | |||||||||||||||||
298 | /* Add reference recording that symtab node is alias of TARGET. | ||||||||||||||||
299 | If TRANSPARENT is true make the alias to be transparent alias. | ||||||||||||||||
300 | The function can fail in the case of aliasing cycles; in this case | ||||||||||||||||
301 | it returns false. */ | ||||||||||||||||
302 | bool resolve_alias (symtab_node *target, bool transparent = false); | ||||||||||||||||
303 | |||||||||||||||||
304 | /* C++ FE sometimes change linkage flags after producing same | ||||||||||||||||
305 | body aliases. */ | ||||||||||||||||
306 | void fixup_same_cpp_alias_visibility (symtab_node *target); | ||||||||||||||||
307 | |||||||||||||||||
308 | /* Call callback on symtab node and aliases associated to this node. | ||||||||||||||||
309 | When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are | ||||||||||||||||
310 | skipped. */ | ||||||||||||||||
311 | bool call_for_symbol_and_aliases (bool (*callback) (symtab_node *, void *), | ||||||||||||||||
312 | void *data, | ||||||||||||||||
313 | bool include_overwrite); | ||||||||||||||||
314 | |||||||||||||||||
315 | /* If node cannot be interposable by static or dynamic linker to point to | ||||||||||||||||
316 | different definition, return this symbol. Otherwise look for alias with | ||||||||||||||||
317 | such property and if none exists, introduce new one. */ | ||||||||||||||||
318 | symtab_node *noninterposable_alias (void); | ||||||||||||||||
319 | |||||||||||||||||
320 | /* Return node that alias is aliasing. */ | ||||||||||||||||
321 | inline symtab_node *get_alias_target (void); | ||||||||||||||||
322 | |||||||||||||||||
323 | /* Return DECL that alias is aliasing. */ | ||||||||||||||||
324 | inline tree get_alias_target_tree (); | ||||||||||||||||
325 | |||||||||||||||||
326 | /* Set section for symbol and its aliases. */ | ||||||||||||||||
327 | void set_section (const char *section); | ||||||||||||||||
328 | |||||||||||||||||
329 | /* Like set_section, but copying the section name from another node. */ | ||||||||||||||||
330 | void set_section (const symtab_node &other); | ||||||||||||||||
331 | |||||||||||||||||
332 | /* Set section, do not recurse into aliases. | ||||||||||||||||
333 | When one wants to change section of symbol and its aliases, | ||||||||||||||||
334 | use set_section. */ | ||||||||||||||||
335 | void set_section_for_node (const char *section); | ||||||||||||||||
336 | |||||||||||||||||
337 | /* Like set_section_for_node, but copying the section name from another | ||||||||||||||||
338 | node. */ | ||||||||||||||||
339 | void set_section_for_node (const symtab_node &other); | ||||||||||||||||
340 | |||||||||||||||||
341 | /* Set initialization priority to PRIORITY. */ | ||||||||||||||||
342 | void set_init_priority (priority_type priority); | ||||||||||||||||
343 | |||||||||||||||||
344 | /* Return the initialization priority. */ | ||||||||||||||||
345 | priority_type get_init_priority (); | ||||||||||||||||
346 | |||||||||||||||||
347 | /* Return availability of NODE when referenced from REF. */ | ||||||||||||||||
348 | enum availability get_availability (symtab_node *ref = NULLnullptr); | ||||||||||||||||
349 | |||||||||||||||||
350 | /* During LTO stream-in this predicate can be used to check whether node | ||||||||||||||||
351 | in question prevails in the linking to save some memory usage. */ | ||||||||||||||||
352 | bool prevailing_p (void); | ||||||||||||||||
353 | |||||||||||||||||
354 | /* Return true if NODE binds to current definition in final executable | ||||||||||||||||
355 | when referenced from REF. If REF is NULL return conservative value | ||||||||||||||||
356 | for any reference. */ | ||||||||||||||||
357 | bool binds_to_current_def_p (symtab_node *ref = NULLnullptr); | ||||||||||||||||
358 | |||||||||||||||||
359 | /* Make DECL local. */ | ||||||||||||||||
360 | void make_decl_local (void); | ||||||||||||||||
361 | |||||||||||||||||
362 | /* Copy visibility from N. */ | ||||||||||||||||
363 | void copy_visibility_from (symtab_node *n); | ||||||||||||||||
364 | |||||||||||||||||
365 | /* Return desired alignment of the definition. This is NOT alignment useful | ||||||||||||||||
366 | to access THIS, because THIS may be interposable and DECL_ALIGN should | ||||||||||||||||
367 | be used instead. It however must be guaranteed when output definition | ||||||||||||||||
368 | of THIS. */ | ||||||||||||||||
369 | unsigned int definition_alignment (); | ||||||||||||||||
370 | |||||||||||||||||
371 | /* Return true if alignment can be increased. */ | ||||||||||||||||
372 | bool can_increase_alignment_p (); | ||||||||||||||||
373 | |||||||||||||||||
374 | /* Increase alignment of symbol to ALIGN. */ | ||||||||||||||||
375 | void increase_alignment (unsigned int align); | ||||||||||||||||
376 | |||||||||||||||||
377 | /* Return true if list contains an alias. */ | ||||||||||||||||
378 | bool has_aliases_p (void); | ||||||||||||||||
379 | |||||||||||||||||
380 | /* Return true when the symbol is real symbol, i.e. it is not inline clone | ||||||||||||||||
381 | or abstract function kept for debug info purposes only. */ | ||||||||||||||||
382 | bool real_symbol_p (void); | ||||||||||||||||
383 | |||||||||||||||||
384 | /* Return true when the symbol needs to be output to the LTO symbol table. */ | ||||||||||||||||
385 | bool output_to_lto_symbol_table_p (void); | ||||||||||||||||
386 | |||||||||||||||||
387 | /* Determine if symbol declaration is needed. That is, visible to something | ||||||||||||||||
388 | either outside this translation unit, something magic in the system | ||||||||||||||||
389 | configury. This function is used just during symbol creation. */ | ||||||||||||||||
390 | bool needed_p (void); | ||||||||||||||||
391 | |||||||||||||||||
392 | /* Return true if this symbol is a function from the C frontend specified | ||||||||||||||||
393 | directly in RTL form (with "__RTL"). */ | ||||||||||||||||
394 | bool native_rtl_p () const; | ||||||||||||||||
395 | |||||||||||||||||
396 | /* Return true when there are references to the node. */ | ||||||||||||||||
397 | bool referred_to_p (bool include_self = true); | ||||||||||||||||
398 | |||||||||||||||||
399 | /* Return true if symbol can be discarded by linker from the binary. | ||||||||||||||||
400 | Assume that symbol is used (so there is no need to take into account | ||||||||||||||||
401 | garbage collecting linkers) | ||||||||||||||||
402 | |||||||||||||||||
403 | This can happen for comdats, commons and weaks when they are prevailed | ||||||||||||||||
404 | by other definition at static linking time. */ | ||||||||||||||||
405 | inline bool | ||||||||||||||||
406 | can_be_discarded_p (void) | ||||||||||||||||
407 | { | ||||||||||||||||
408 | return ((DECL_EXTERNAL (decl)((contains_struct_check ((decl), (TS_DECL_COMMON), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 408, __FUNCTION__))->decl_common.decl_flag_1) | ||||||||||||||||
409 | && !in_other_partition) | ||||||||||||||||
410 | || ((get_comdat_group () | ||||||||||||||||
411 | || DECL_COMMON (decl)((contains_struct_check ((decl), (TS_DECL_WITH_VIS), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 411, __FUNCTION__))->decl_with_vis.common_flag) | ||||||||||||||||
412 | || (DECL_SECTION_NAME (decl)decl_section_name (decl) && DECL_WEAK (decl)((contains_struct_check ((decl), (TS_DECL_WITH_VIS), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 412, __FUNCTION__))->decl_with_vis.weak_flag))) | ||||||||||||||||
413 | && ((resolution != LDPR_PREVAILING_DEF | ||||||||||||||||
414 | && resolution != LDPR_PREVAILING_DEF_IRONLY_EXP) | ||||||||||||||||
415 | || flag_incremental_linkglobal_options.x_flag_incremental_link) | ||||||||||||||||
416 | && resolution != LDPR_PREVAILING_DEF_IRONLY)); | ||||||||||||||||
417 | } | ||||||||||||||||
418 | |||||||||||||||||
419 | /* Return true if NODE is local to a particular COMDAT group, and must not | ||||||||||||||||
420 | be named from outside the COMDAT. This is used for C++ decloned | ||||||||||||||||
421 | constructors. */ | ||||||||||||||||
422 | inline bool comdat_local_p (void) | ||||||||||||||||
423 | { | ||||||||||||||||
424 | return (same_comdat_group && !TREE_PUBLIC (decl)((decl)->base.public_flag)); | ||||||||||||||||
425 | } | ||||||||||||||||
426 | |||||||||||||||||
427 | /* Return true if ONE and TWO are part of the same COMDAT group. */ | ||||||||||||||||
428 | inline bool in_same_comdat_group_p (symtab_node *target); | ||||||||||||||||
429 | |||||||||||||||||
430 | /* Return true if symbol is known to be nonzero. */ | ||||||||||||||||
431 | bool nonzero_address (); | ||||||||||||||||
432 | |||||||||||||||||
433 | /* Return 0 if symbol is known to have different address than S2, | ||||||||||||||||
434 | Return 1 if symbol is known to have same address as S2, | ||||||||||||||||
435 | return 2 otherwise. | ||||||||||||||||
436 | |||||||||||||||||
437 | If MEMORY_ACCESSED is true, assume that both memory pointer to THIS | ||||||||||||||||
438 | and S2 is going to be accessed. This eliminates the situations when | ||||||||||||||||
439 | either THIS or S2 is NULL and is useful for comparing bases when deciding | ||||||||||||||||
440 | about memory aliasing. */ | ||||||||||||||||
441 | int equal_address_to (symtab_node *s2, bool memory_accessed = false); | ||||||||||||||||
442 | |||||||||||||||||
443 | /* Return true if symbol's address may possibly be compared to other | ||||||||||||||||
444 | symbol's address. */ | ||||||||||||||||
445 | bool address_matters_p (); | ||||||||||||||||
446 | |||||||||||||||||
447 | /* Return true if NODE's address can be compared. This use properties | ||||||||||||||||
448 | of NODE only and does not look if the address is actually taken in | ||||||||||||||||
449 | interesting way. For that use ADDRESS_MATTERS_P instead. */ | ||||||||||||||||
450 | bool address_can_be_compared_p (void); | ||||||||||||||||
451 | |||||||||||||||||
452 | /* Return symbol table node associated with DECL, if any, | ||||||||||||||||
453 | and NULL otherwise. */ | ||||||||||||||||
454 | static inline symtab_node *get (const_tree decl) | ||||||||||||||||
455 | { | ||||||||||||||||
456 | /* Check that we are called for sane type of object - functions | ||||||||||||||||
457 | and static or external variables. */ | ||||||||||||||||
458 | gcc_checking_assert (TREE_CODE (decl) == FUNCTION_DECL((void)(!(((enum tree_code) (decl)->base.code) == FUNCTION_DECL || (((enum tree_code) (decl)->base.code) == VAR_DECL && (((decl)->base.static_flag) || ((contains_struct_check (( decl), (TS_DECL_COMMON), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 460, __FUNCTION__))->decl_common.decl_flag_1) || global_options .x_in_lto_p))) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 461, __FUNCTION__), 0 : 0)) | ||||||||||||||||
459 | || (TREE_CODE (decl) == VAR_DECL((void)(!(((enum tree_code) (decl)->base.code) == FUNCTION_DECL || (((enum tree_code) (decl)->base.code) == VAR_DECL && (((decl)->base.static_flag) || ((contains_struct_check (( decl), (TS_DECL_COMMON), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 460, __FUNCTION__))->decl_common.decl_flag_1) || global_options .x_in_lto_p))) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 461, __FUNCTION__), 0 : 0)) | ||||||||||||||||
460 | && (TREE_STATIC (decl) || DECL_EXTERNAL (decl)((void)(!(((enum tree_code) (decl)->base.code) == FUNCTION_DECL || (((enum tree_code) (decl)->base.code) == VAR_DECL && (((decl)->base.static_flag) || ((contains_struct_check (( decl), (TS_DECL_COMMON), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 460, __FUNCTION__))->decl_common.decl_flag_1) || global_options .x_in_lto_p))) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 461, __FUNCTION__), 0 : 0)) | ||||||||||||||||
461 | || in_lto_p)))((void)(!(((enum tree_code) (decl)->base.code) == FUNCTION_DECL || (((enum tree_code) (decl)->base.code) == VAR_DECL && (((decl)->base.static_flag) || ((contains_struct_check (( decl), (TS_DECL_COMMON), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 460, __FUNCTION__))->decl_common.decl_flag_1) || global_options .x_in_lto_p))) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 461, __FUNCTION__), 0 : 0)); | ||||||||||||||||
462 | /* Check that the mapping is sane - perhaps this check can go away, | ||||||||||||||||
463 | but at the moment frontends tends to corrupt the mapping by calling | ||||||||||||||||
464 | memcpy/memset on the tree nodes. */ | ||||||||||||||||
465 | gcc_checking_assert (!decl->decl_with_vis.symtab_node((void)(!(!decl->decl_with_vis.symtab_node || decl->decl_with_vis .symtab_node->decl == decl) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 466, __FUNCTION__), 0 : 0)) | ||||||||||||||||
466 | || decl->decl_with_vis.symtab_node->decl == decl)((void)(!(!decl->decl_with_vis.symtab_node || decl->decl_with_vis .symtab_node->decl == decl) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 466, __FUNCTION__), 0 : 0)); | ||||||||||||||||
467 | return decl->decl_with_vis.symtab_node; | ||||||||||||||||
468 | } | ||||||||||||||||
469 | |||||||||||||||||
470 | /* Try to find a symtab node for declaration DECL and if it does not | ||||||||||||||||
471 | exist or if it corresponds to an inline clone, create a new one. */ | ||||||||||||||||
472 | static inline symtab_node * get_create (tree node); | ||||||||||||||||
473 | |||||||||||||||||
474 | /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME. | ||||||||||||||||
475 | Return NULL if there's no such node. */ | ||||||||||||||||
476 | static symtab_node *get_for_asmname (const_tree asmname); | ||||||||||||||||
477 | |||||||||||||||||
478 | /* Verify symbol table for internal consistency. */ | ||||||||||||||||
479 | static DEBUG_FUNCTION__attribute__ ((__used__)) void verify_symtab_nodes (void); | ||||||||||||||||
480 | |||||||||||||||||
481 | /* Perform internal consistency checks, if they are enabled. */ | ||||||||||||||||
482 | static inline void checking_verify_symtab_nodes (void); | ||||||||||||||||
483 | |||||||||||||||||
484 | /* Type of the symbol. */ | ||||||||||||||||
485 | ENUM_BITFIELD (symtab_type)enum symtab_type type : 8; | ||||||||||||||||
486 | |||||||||||||||||
487 | /* The symbols resolution. */ | ||||||||||||||||
488 | ENUM_BITFIELD (ld_plugin_symbol_resolution)enum ld_plugin_symbol_resolution resolution : 8; | ||||||||||||||||
489 | |||||||||||||||||
490 | /*** Flags representing the symbol type. ***/ | ||||||||||||||||
491 | |||||||||||||||||
492 | /* True when symbol corresponds to a definition in current unit. | ||||||||||||||||
493 | set via finalize_function or finalize_decl */ | ||||||||||||||||
494 | unsigned definition : 1; | ||||||||||||||||
495 | /* True when symbol is an alias. | ||||||||||||||||
496 | Set by assemble_alias. */ | ||||||||||||||||
497 | unsigned alias : 1; | ||||||||||||||||
498 | /* When true the alias is translated into its target symbol either by GCC | ||||||||||||||||
499 | or assembler (it also may just be a duplicate declaration of the same | ||||||||||||||||
500 | linker name). | ||||||||||||||||
501 | |||||||||||||||||
502 | Currently transparent aliases come in three different flavors | ||||||||||||||||
503 | - aliases having the same assembler name as their target (aka duplicated | ||||||||||||||||
504 | declarations). In this case the assembler names compare via | ||||||||||||||||
505 | assembler_names_equal_p and weakref is false | ||||||||||||||||
506 | - aliases that are renamed at a time being output to final file | ||||||||||||||||
507 | by varasm.cc. For those DECL_ASSEMBLER_NAME have | ||||||||||||||||
508 | IDENTIFIER_TRANSPARENT_ALIAS set and thus also their assembler | ||||||||||||||||
509 | name must be unique. | ||||||||||||||||
510 | Weakrefs belong to this category when we target assembler without | ||||||||||||||||
511 | .weakref directive. | ||||||||||||||||
512 | - weakrefs that are renamed by assembler via .weakref directive. | ||||||||||||||||
513 | In this case the alias may or may not be definition (depending if | ||||||||||||||||
514 | target declaration was seen by the compiler), weakref is set. | ||||||||||||||||
515 | Unless we are before renaming statics, assembler names are different. | ||||||||||||||||
516 | |||||||||||||||||
517 | Given that we now support duplicate declarations, the second option is | ||||||||||||||||
518 | redundant and will be removed. */ | ||||||||||||||||
519 | unsigned transparent_alias : 1; | ||||||||||||||||
520 | /* True when alias is a weakref. */ | ||||||||||||||||
521 | unsigned weakref : 1; | ||||||||||||||||
522 | /* C++ frontend produce same body aliases and extra name aliases for | ||||||||||||||||
523 | virtual functions and vtables that are obviously equivalent. | ||||||||||||||||
524 | Those aliases are bit special, especially because C++ frontend | ||||||||||||||||
525 | visibility code is so ugly it cannot get them right at first time | ||||||||||||||||
526 | and their visibility needs to be copied from their "masters" at | ||||||||||||||||
527 | the end of parsing. */ | ||||||||||||||||
528 | unsigned cpp_implicit_alias : 1; | ||||||||||||||||
529 | /* The alias is a symbol version. */ | ||||||||||||||||
530 | unsigned symver : 1; | ||||||||||||||||
531 | /* Set once the definition was analyzed. The list of references and | ||||||||||||||||
532 | other properties are built during analysis. */ | ||||||||||||||||
533 | unsigned analyzed : 1; | ||||||||||||||||
534 | /* Set for write-only variables. */ | ||||||||||||||||
535 | unsigned writeonly : 1; | ||||||||||||||||
536 | /* Visibility of symbol was used for further optimization; do not | ||||||||||||||||
537 | permit further changes. */ | ||||||||||||||||
538 | unsigned refuse_visibility_changes : 1; | ||||||||||||||||
539 | |||||||||||||||||
540 | /*** Visibility and linkage flags. ***/ | ||||||||||||||||
541 | |||||||||||||||||
542 | /* Set when function is visible by other units. */ | ||||||||||||||||
543 | unsigned externally_visible : 1; | ||||||||||||||||
544 | /* Don't reorder to other symbols having this set. */ | ||||||||||||||||
545 | unsigned no_reorder : 1; | ||||||||||||||||
546 | /* The symbol will be assumed to be used in an invisible way (like | ||||||||||||||||
547 | by an toplevel asm statement). */ | ||||||||||||||||
548 | unsigned force_output : 1; | ||||||||||||||||
549 | /* Like FORCE_OUTPUT, but in the case it is ABI requiring the symbol to be | ||||||||||||||||
550 | exported. Unlike FORCE_OUTPUT this flag gets cleared to symbols promoted | ||||||||||||||||
551 | to static and it does not inhibit optimization. */ | ||||||||||||||||
552 | unsigned forced_by_abi : 1; | ||||||||||||||||
553 | /* True when the name is known to be unique and thus it does not need mangling. */ | ||||||||||||||||
554 | unsigned unique_name : 1; | ||||||||||||||||
555 | /* Specify whether the section was set by user or by | ||||||||||||||||
556 | compiler via -ffunction-sections. */ | ||||||||||||||||
557 | unsigned implicit_section : 1; | ||||||||||||||||
558 | /* True when body and other characteristics have been removed by | ||||||||||||||||
559 | symtab_remove_unreachable_nodes. */ | ||||||||||||||||
560 | unsigned body_removed : 1; | ||||||||||||||||
561 | /* True when symbol should comply to -fsemantic-interposition flag. */ | ||||||||||||||||
562 | unsigned semantic_interposition : 1; | ||||||||||||||||
563 | |||||||||||||||||
564 | /*** WHOPR Partitioning flags. | ||||||||||||||||
565 | These flags are used at ltrans stage when only part of the callgraph is | ||||||||||||||||
566 | available. ***/ | ||||||||||||||||
567 | |||||||||||||||||
568 | /* Set when variable is used from other LTRANS partition. */ | ||||||||||||||||
569 | unsigned used_from_other_partition : 1; | ||||||||||||||||
570 | /* Set when function is available in the other LTRANS partition. | ||||||||||||||||
571 | During WPA output it is used to mark nodes that are present in | ||||||||||||||||
572 | multiple partitions. */ | ||||||||||||||||
573 | unsigned in_other_partition : 1; | ||||||||||||||||
574 | |||||||||||||||||
575 | |||||||||||||||||
576 | |||||||||||||||||
577 | /*** other flags. ***/ | ||||||||||||||||
578 | |||||||||||||||||
579 | /* Set when symbol has address taken. */ | ||||||||||||||||
580 | unsigned address_taken : 1; | ||||||||||||||||
581 | /* Set when init priority is set. */ | ||||||||||||||||
582 | unsigned in_init_priority_hash : 1; | ||||||||||||||||
583 | |||||||||||||||||
584 | /* Set when symbol needs to be streamed into LTO bytecode for LTO, or in case | ||||||||||||||||
585 | of offloading, for separate compilation for a different target. */ | ||||||||||||||||
586 | unsigned need_lto_streaming : 1; | ||||||||||||||||
587 | |||||||||||||||||
588 | /* Set when symbol can be streamed into bytecode for offloading. */ | ||||||||||||||||
589 | unsigned offloadable : 1; | ||||||||||||||||
590 | |||||||||||||||||
591 | /* Set when symbol is an IFUNC resolver. */ | ||||||||||||||||
592 | unsigned ifunc_resolver : 1; | ||||||||||||||||
593 | |||||||||||||||||
594 | |||||||||||||||||
595 | /* Ordering of all symtab entries. */ | ||||||||||||||||
596 | int order; | ||||||||||||||||
597 | |||||||||||||||||
598 | /* Declaration representing the symbol. */ | ||||||||||||||||
599 | tree decl; | ||||||||||||||||
600 | |||||||||||||||||
601 | /* Linked list of symbol table entries starting with symtab_nodes. */ | ||||||||||||||||
602 | symtab_node *next; | ||||||||||||||||
603 | symtab_node *previous; | ||||||||||||||||
604 | |||||||||||||||||
605 | /* Linked list of symbols with the same asm name. There may be multiple | ||||||||||||||||
606 | entries for single symbol name during LTO, because symbols are renamed | ||||||||||||||||
607 | only after partitioning. | ||||||||||||||||
608 | |||||||||||||||||
609 | Because inline clones are kept in the assembler name has, they also produce | ||||||||||||||||
610 | duplicate entries. | ||||||||||||||||
611 | |||||||||||||||||
612 | There are also several long standing bugs where frontends and builtin | ||||||||||||||||
613 | code produce duplicated decls. */ | ||||||||||||||||
614 | symtab_node *next_sharing_asm_name; | ||||||||||||||||
615 | symtab_node *previous_sharing_asm_name; | ||||||||||||||||
616 | |||||||||||||||||
617 | /* Circular list of nodes in the same comdat group if non-NULL. */ | ||||||||||||||||
618 | symtab_node *same_comdat_group; | ||||||||||||||||
619 | |||||||||||||||||
620 | /* Vectors of referring and referenced entities. */ | ||||||||||||||||
621 | ipa_ref_list GTY((skip)) ref_list; | ||||||||||||||||
622 | |||||||||||||||||
623 | /* Alias target. May be either DECL pointer or ASSEMBLER_NAME pointer | ||||||||||||||||
624 | depending to what was known to frontend on the creation time. | ||||||||||||||||
625 | Once alias is resolved, this pointer become NULL. */ | ||||||||||||||||
626 | tree alias_target; | ||||||||||||||||
627 | |||||||||||||||||
628 | /* File stream where this node is being written to. */ | ||||||||||||||||
629 | struct lto_file_decl_data * lto_file_data; | ||||||||||||||||
630 | |||||||||||||||||
631 | void *GTY ((skip)) aux; | ||||||||||||||||
632 | |||||||||||||||||
633 | /* Comdat group the symbol is in. Can be private if GGC allowed that. */ | ||||||||||||||||
634 | tree x_comdat_group; | ||||||||||||||||
635 | |||||||||||||||||
636 | /* Section name. Again can be private, if allowed. */ | ||||||||||||||||
637 | section_hash_entry *x_section; | ||||||||||||||||
638 | |||||||||||||||||
639 | protected: | ||||||||||||||||
640 | /* Dump base fields of symtab nodes to F. Not to be used directly. */ | ||||||||||||||||
641 | void dump_base (FILE *); | ||||||||||||||||
642 | |||||||||||||||||
643 | /* Verify common part of symtab node. */ | ||||||||||||||||
644 | bool DEBUG_FUNCTION__attribute__ ((__used__)) verify_base (void); | ||||||||||||||||
645 | |||||||||||||||||
646 | /* Remove node from symbol table. This function is not used directly, but via | ||||||||||||||||
647 | cgraph/varpool node removal routines. */ | ||||||||||||||||
648 | void unregister (struct clone_info *); | ||||||||||||||||
649 | |||||||||||||||||
650 | /* Return the initialization and finalization priority information for | ||||||||||||||||
651 | DECL. If there is no previous priority information, a freshly | ||||||||||||||||
652 | allocated structure is returned. */ | ||||||||||||||||
653 | struct symbol_priority_map *priority_info (void); | ||||||||||||||||
654 | |||||||||||||||||
655 | /* Worker for call_for_symbol_and_aliases_1. */ | ||||||||||||||||
656 | bool call_for_symbol_and_aliases_1 (bool (*callback) (symtab_node *, void *), | ||||||||||||||||
657 | void *data, | ||||||||||||||||
658 | bool include_overwrite); | ||||||||||||||||
659 | private: | ||||||||||||||||
660 | /* Workers for set_section. */ | ||||||||||||||||
661 | static bool set_section_from_string (symtab_node *n, void *s); | ||||||||||||||||
662 | static bool set_section_from_node (symtab_node *n, void *o); | ||||||||||||||||
663 | |||||||||||||||||
664 | /* Worker for symtab_resolve_alias. */ | ||||||||||||||||
665 | static bool set_implicit_section (symtab_node *n, void *); | ||||||||||||||||
666 | |||||||||||||||||
667 | /* Worker searching noninterposable alias. */ | ||||||||||||||||
668 | static bool noninterposable_alias (symtab_node *node, void *data); | ||||||||||||||||
669 | |||||||||||||||||
670 | /* Worker for ultimate_alias_target. */ | ||||||||||||||||
671 | symtab_node *ultimate_alias_target_1 (enum availability *avail = NULLnullptr, | ||||||||||||||||
672 | symtab_node *ref = NULLnullptr); | ||||||||||||||||
673 | |||||||||||||||||
674 | /* Get dump name with normal or assembly name. */ | ||||||||||||||||
675 | const char *get_dump_name (bool asm_name_p) const; | ||||||||||||||||
676 | }; | ||||||||||||||||
677 | |||||||||||||||||
678 | inline void | ||||||||||||||||
679 | symtab_node::checking_verify_symtab_nodes (void) | ||||||||||||||||
680 | { | ||||||||||||||||
681 | if (flag_checkingglobal_options.x_flag_checking) | ||||||||||||||||
682 | symtab_node::verify_symtab_nodes (); | ||||||||||||||||
683 | } | ||||||||||||||||
684 | |||||||||||||||||
685 | /* Walk all aliases for NODE. */ | ||||||||||||||||
686 | #define FOR_EACH_ALIAS(NODE, ALIAS)for (unsigned ALIAS_iter_ = 0; (NODE)->iterate_direct_aliases (ALIAS_iter_, ALIAS); ALIAS_iter_++) \ | ||||||||||||||||
687 | for (unsigned ALIAS##_iter_ = 0; \ | ||||||||||||||||
688 | (NODE)->iterate_direct_aliases (ALIAS##_iter_, ALIAS); \ | ||||||||||||||||
689 | ALIAS##_iter_++) | ||||||||||||||||
690 | |||||||||||||||||
691 | /* This is the information that is put into the cgraph local structure | ||||||||||||||||
692 | to recover a function. */ | ||||||||||||||||
693 | struct lto_file_decl_data; | ||||||||||||||||
694 | |||||||||||||||||
695 | extern const char * const cgraph_availability_names[]; | ||||||||||||||||
696 | extern const char * const ld_plugin_symbol_resolution_names[]; | ||||||||||||||||
697 | extern const char * const tls_model_names[]; | ||||||||||||||||
698 | |||||||||||||||||
699 | /* Represent which DECL tree (or reference to such tree) | ||||||||||||||||
700 | will be replaced by another tree while versioning. */ | ||||||||||||||||
701 | struct GTY(()) ipa_replace_map | ||||||||||||||||
702 | { | ||||||||||||||||
703 | /* The new (replacing) tree. */ | ||||||||||||||||
704 | tree new_tree; | ||||||||||||||||
705 | /* Parameter number to replace, when old_tree is NULL. */ | ||||||||||||||||
706 | int parm_num; | ||||||||||||||||
707 | /* Set if the newly added reference should not be an address one, but a load | ||||||||||||||||
708 | one from the operand of the ADDR_EXPR in NEW_TREE. This is for cases when | ||||||||||||||||
709 | the corresponding parameter p is used only as *p. */ | ||||||||||||||||
710 | unsigned force_load_ref : 1; | ||||||||||||||||
711 | }; | ||||||||||||||||
712 | |||||||||||||||||
713 | enum cgraph_simd_clone_arg_type | ||||||||||||||||
714 | { | ||||||||||||||||
715 | SIMD_CLONE_ARG_TYPE_VECTOR, | ||||||||||||||||
716 | SIMD_CLONE_ARG_TYPE_UNIFORM, | ||||||||||||||||
717 | /* These are only for integer/pointer arguments passed by value. */ | ||||||||||||||||
718 | SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP, | ||||||||||||||||
719 | SIMD_CLONE_ARG_TYPE_LINEAR_VARIABLE_STEP, | ||||||||||||||||
720 | /* These 6 are only for reference type arguments or arguments passed | ||||||||||||||||
721 | by reference. */ | ||||||||||||||||
722 | SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP, | ||||||||||||||||
723 | SIMD_CLONE_ARG_TYPE_LINEAR_REF_VARIABLE_STEP, | ||||||||||||||||
724 | SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP, | ||||||||||||||||
725 | SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_VARIABLE_STEP, | ||||||||||||||||
726 | SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP, | ||||||||||||||||
727 | SIMD_CLONE_ARG_TYPE_LINEAR_VAL_VARIABLE_STEP, | ||||||||||||||||
728 | SIMD_CLONE_ARG_TYPE_MASK | ||||||||||||||||
729 | }; | ||||||||||||||||
730 | |||||||||||||||||
731 | /* Function arguments in the original function of a SIMD clone. | ||||||||||||||||
732 | Supplementary data for `struct simd_clone'. */ | ||||||||||||||||
733 | |||||||||||||||||
734 | struct GTY(()) cgraph_simd_clone_arg { | ||||||||||||||||
735 | /* Original function argument as it originally existed in | ||||||||||||||||
736 | DECL_ARGUMENTS. */ | ||||||||||||||||
737 | tree orig_arg; | ||||||||||||||||
738 | |||||||||||||||||
739 | /* orig_arg's function (or for extern functions type from | ||||||||||||||||
740 | TYPE_ARG_TYPES). */ | ||||||||||||||||
741 | tree orig_type; | ||||||||||||||||
742 | |||||||||||||||||
743 | /* If argument is a vector, this holds the vector version of | ||||||||||||||||
744 | orig_arg that after adjusting the argument types will live in | ||||||||||||||||
745 | DECL_ARGUMENTS. Otherwise, this is NULL. | ||||||||||||||||
746 | |||||||||||||||||
747 | This basically holds: | ||||||||||||||||
748 | vector(simdlen) __typeof__(orig_arg) new_arg. */ | ||||||||||||||||
749 | tree vector_arg; | ||||||||||||||||
750 | |||||||||||||||||
751 | /* vector_arg's type (or for extern functions new vector type. */ | ||||||||||||||||
752 | tree vector_type; | ||||||||||||||||
753 | |||||||||||||||||
754 | /* If argument is a vector, this holds the array where the simd | ||||||||||||||||
755 | argument is held while executing the simd clone function. This | ||||||||||||||||
756 | is a local variable in the cloned function. Its content is | ||||||||||||||||
757 | copied from vector_arg upon entry to the clone. | ||||||||||||||||
758 | |||||||||||||||||
759 | This basically holds: | ||||||||||||||||
760 | __typeof__(orig_arg) simd_array[simdlen]. */ | ||||||||||||||||
761 | tree simd_array; | ||||||||||||||||
762 | |||||||||||||||||
763 | /* A SIMD clone's argument can be either linear (constant or | ||||||||||||||||
764 | variable), uniform, or vector. */ | ||||||||||||||||
765 | enum cgraph_simd_clone_arg_type arg_type; | ||||||||||||||||
766 | |||||||||||||||||
767 | /* Variable alignment if available, otherwise 0. */ | ||||||||||||||||
768 | unsigned int alignment; | ||||||||||||||||
769 | |||||||||||||||||
770 | /* For arg_type SIMD_CLONE_ARG_TYPE_LINEAR_*CONSTANT_STEP this is | ||||||||||||||||
771 | the constant linear step, if arg_type is | ||||||||||||||||
772 | SIMD_CLONE_ARG_TYPE_LINEAR_*VARIABLE_STEP, this is index of | ||||||||||||||||
773 | the uniform argument holding the step, otherwise 0. */ | ||||||||||||||||
774 | HOST_WIDE_INTlong linear_step; | ||||||||||||||||
775 | }; | ||||||||||||||||
776 | |||||||||||||||||
777 | /* Specific data for a SIMD function clone. */ | ||||||||||||||||
778 | |||||||||||||||||
779 | struct GTY(()) cgraph_simd_clone { | ||||||||||||||||
780 | /* Number of words in the SIMD lane associated with this clone. */ | ||||||||||||||||
781 | poly_uint64 simdlen; | ||||||||||||||||
782 | |||||||||||||||||
783 | /* Number of annotated function arguments in `args'. This is | ||||||||||||||||
784 | usually the number of named arguments in FNDECL. */ | ||||||||||||||||
785 | unsigned int nargs; | ||||||||||||||||
786 | |||||||||||||||||
787 | /* Max hardware vector size in bits for integral vectors. */ | ||||||||||||||||
788 | poly_uint64 vecsize_int; | ||||||||||||||||
789 | |||||||||||||||||
790 | /* Max hardware vector size in bits for floating point vectors. */ | ||||||||||||||||
791 | poly_uint64 vecsize_float; | ||||||||||||||||
792 | |||||||||||||||||
793 | /* Machine mode of the mask argument(s), if they are to be passed | ||||||||||||||||
794 | as bitmasks in integer argument(s). VOIDmode if masks are passed | ||||||||||||||||
795 | as vectors of characteristic type. */ | ||||||||||||||||
796 | machine_mode mask_mode; | ||||||||||||||||
797 | |||||||||||||||||
798 | /* The mangling character for a given vector size. This is used | ||||||||||||||||
799 | to determine the ISA mangling bit as specified in the Intel | ||||||||||||||||
800 | Vector ABI. */ | ||||||||||||||||
801 | unsigned char vecsize_mangle; | ||||||||||||||||
802 | |||||||||||||||||
803 | /* True if this is the masked, in-branch version of the clone, | ||||||||||||||||
804 | otherwise false. */ | ||||||||||||||||
805 | unsigned int inbranch : 1; | ||||||||||||||||
806 | |||||||||||||||||
807 | /* Doubly linked list of SIMD clones. */ | ||||||||||||||||
808 | cgraph_node *prev_clone, *next_clone; | ||||||||||||||||
809 | |||||||||||||||||
810 | /* Original cgraph node the SIMD clones were created for. */ | ||||||||||||||||
811 | cgraph_node *origin; | ||||||||||||||||
812 | |||||||||||||||||
813 | /* Annotated function arguments for the original function. */ | ||||||||||||||||
814 | cgraph_simd_clone_arg GTY((length ("%h.nargs"))) args[1]; | ||||||||||||||||
815 | }; | ||||||||||||||||
816 | |||||||||||||||||
817 | /* Function Multiversioning info. */ | ||||||||||||||||
818 | struct GTY((for_user)) cgraph_function_version_info { | ||||||||||||||||
819 | /* The cgraph_node for which the function version info is stored. */ | ||||||||||||||||
820 | cgraph_node *this_node; | ||||||||||||||||
821 | /* Chains all the semantically identical function versions. The | ||||||||||||||||
822 | first function in this chain is the version_info node of the | ||||||||||||||||
823 | default function. */ | ||||||||||||||||
824 | cgraph_function_version_info *prev; | ||||||||||||||||
825 | /* If this version node corresponds to a dispatcher for function | ||||||||||||||||
826 | versions, this points to the version info node of the default | ||||||||||||||||
827 | function, the first node in the chain. */ | ||||||||||||||||
828 | cgraph_function_version_info *next; | ||||||||||||||||
829 | /* If this node corresponds to a function version, this points | ||||||||||||||||
830 | to the dispatcher function decl, which is the function that must | ||||||||||||||||
831 | be called to execute the right function version at run-time. | ||||||||||||||||
832 | |||||||||||||||||
833 | If this cgraph node is a dispatcher (if dispatcher_function is | ||||||||||||||||
834 | true, in the cgraph_node struct) for function versions, this | ||||||||||||||||
835 | points to resolver function, which holds the function body of the | ||||||||||||||||
836 | dispatcher. The dispatcher decl is an alias to the resolver | ||||||||||||||||
837 | function decl. */ | ||||||||||||||||
838 | tree dispatcher_resolver; | ||||||||||||||||
839 | }; | ||||||||||||||||
840 | |||||||||||||||||
841 | #define DEFCIFCODE(code, type, string)CIF_code, CIF_ ## code, | ||||||||||||||||
842 | /* Reasons for inlining failures. */ | ||||||||||||||||
843 | |||||||||||||||||
844 | enum cgraph_inline_failed_t { | ||||||||||||||||
845 | #include "cif-code.def" | ||||||||||||||||
846 | CIF_N_REASONS | ||||||||||||||||
847 | }; | ||||||||||||||||
848 | |||||||||||||||||
849 | enum cgraph_inline_failed_type_t | ||||||||||||||||
850 | { | ||||||||||||||||
851 | CIF_FINAL_NORMAL = 0, | ||||||||||||||||
852 | CIF_FINAL_ERROR | ||||||||||||||||
853 | }; | ||||||||||||||||
854 | |||||||||||||||||
855 | struct cgraph_edge; | ||||||||||||||||
856 | |||||||||||||||||
857 | struct cgraph_edge_hasher : ggc_ptr_hash<cgraph_edge> | ||||||||||||||||
858 | { | ||||||||||||||||
859 | typedef gimple *compare_type; | ||||||||||||||||
860 | |||||||||||||||||
861 | static hashval_t hash (cgraph_edge *); | ||||||||||||||||
862 | static hashval_t hash (gimple *); | ||||||||||||||||
863 | static bool equal (cgraph_edge *, gimple *); | ||||||||||||||||
864 | }; | ||||||||||||||||
865 | |||||||||||||||||
866 | /* The cgraph data structure. | ||||||||||||||||
867 | Each function decl has assigned cgraph_node listing callees and callers. */ | ||||||||||||||||
868 | |||||||||||||||||
869 | struct GTY((tag ("SYMTAB_FUNCTION"))) cgraph_node : public symtab_node | ||||||||||||||||
870 | { | ||||||||||||||||
871 | friend class symbol_table; | ||||||||||||||||
872 | |||||||||||||||||
873 | /* Constructor. */ | ||||||||||||||||
874 | explicit cgraph_node (int uid) | ||||||||||||||||
875 | : symtab_node (SYMTAB_FUNCTION), callees (NULLnullptr), callers (NULLnullptr), | ||||||||||||||||
876 | indirect_calls (NULLnullptr), | ||||||||||||||||
877 | next_sibling_clone (NULLnullptr), prev_sibling_clone (NULLnullptr), clones (NULLnullptr), | ||||||||||||||||
878 | clone_of (NULLnullptr), call_site_hash (NULLnullptr), former_clone_of (NULLnullptr), | ||||||||||||||||
879 | simdclone (NULLnullptr), simd_clones (NULLnullptr), ipa_transforms_to_apply (vNULL), | ||||||||||||||||
880 | inlined_to (NULLnullptr), rtl (NULLnullptr), | ||||||||||||||||
881 | count (profile_count::uninitialized ()), | ||||||||||||||||
882 | count_materialization_scale (REG_BR_PROB_BASE10000), profile_id (0), | ||||||||||||||||
883 | unit_id (0), tp_first_run (0), thunk (false), | ||||||||||||||||
884 | used_as_abstract_origin (false), | ||||||||||||||||
885 | lowered (false), process (false), frequency (NODE_FREQUENCY_NORMAL), | ||||||||||||||||
886 | only_called_at_startup (false), only_called_at_exit (false), | ||||||||||||||||
887 | tm_clone (false), dispatcher_function (false), calls_comdat_local (false), | ||||||||||||||||
888 | icf_merged (false), nonfreeing_fn (false), merged_comdat (false), | ||||||||||||||||
889 | merged_extern_inline (false), parallelized_function (false), | ||||||||||||||||
890 | split_part (false), indirect_call_target (false), local (false), | ||||||||||||||||
891 | versionable (false), can_change_signature (false), | ||||||||||||||||
892 | redefined_extern_inline (false), tm_may_enter_irr (false), | ||||||||||||||||
893 | ipcp_clone (false), declare_variant_alt (false), | ||||||||||||||||
894 | calls_declare_variant_alt (false), gc_candidate (false), | ||||||||||||||||
895 | m_uid (uid), m_summary_id (-1) | ||||||||||||||||
896 | {} | ||||||||||||||||
897 | |||||||||||||||||
898 | /* Remove the node from cgraph and all inline clones inlined into it. | ||||||||||||||||
899 | Skip however removal of FORBIDDEN_NODE and return true if it needs to be | ||||||||||||||||
900 | removed. This allows to call the function from outer loop walking clone | ||||||||||||||||
901 | tree. */ | ||||||||||||||||
902 | bool remove_symbol_and_inline_clones (cgraph_node *forbidden_node = NULLnullptr); | ||||||||||||||||
903 | |||||||||||||||||
904 | /* Record all references from cgraph_node that are taken | ||||||||||||||||
905 | in statement STMT. */ | ||||||||||||||||
906 | void record_stmt_references (gimple *stmt); | ||||||||||||||||
907 | |||||||||||||||||
908 | /* Like cgraph_set_call_stmt but walk the clone tree and update all | ||||||||||||||||
909 | clones sharing the same function body. | ||||||||||||||||
910 | When WHOLE_SPECULATIVE_EDGES is true, all three components of | ||||||||||||||||
911 | speculative edge gets updated. Otherwise we update only direct | ||||||||||||||||
912 | call. */ | ||||||||||||||||
913 | void set_call_stmt_including_clones (gimple *old_stmt, gcall *new_stmt, | ||||||||||||||||
914 | bool update_speculative = true); | ||||||||||||||||
915 | |||||||||||||||||
916 | /* Walk the alias chain to return the function cgraph_node is alias of. | ||||||||||||||||
917 | Walk through thunk, too. | ||||||||||||||||
918 | When AVAILABILITY is non-NULL, get minimal availability in the chain. | ||||||||||||||||
919 | When REF is non-NULL, assume that reference happens in symbol REF | ||||||||||||||||
920 | when determining the availability. */ | ||||||||||||||||
921 | cgraph_node *function_symbol (enum availability *avail = NULLnullptr, | ||||||||||||||||
922 | struct symtab_node *ref = NULLnullptr); | ||||||||||||||||
923 | |||||||||||||||||
924 | /* Walk the alias chain to return the function cgraph_node is alias of. | ||||||||||||||||
925 | Walk through non virtual thunks, too. Thus we return either a function | ||||||||||||||||
926 | or a virtual thunk node. | ||||||||||||||||
927 | When AVAILABILITY is non-NULL, get minimal availability in the chain. | ||||||||||||||||
928 | When REF is non-NULL, assume that reference happens in symbol REF | ||||||||||||||||
929 | when determining the availability. */ | ||||||||||||||||
930 | cgraph_node *function_or_virtual_thunk_symbol | ||||||||||||||||
931 | (enum availability *avail = NULLnullptr, | ||||||||||||||||
932 | struct symtab_node *ref = NULLnullptr); | ||||||||||||||||
933 | |||||||||||||||||
934 | /* Create node representing clone of N executed COUNT times. Decrease | ||||||||||||||||
935 | the execution counts from original node too. | ||||||||||||||||
936 | The new clone will have decl set to DECL that may or may not be the same | ||||||||||||||||
937 | as decl of N. | ||||||||||||||||
938 | |||||||||||||||||
939 | When UPDATE_ORIGINAL is true, the counts are subtracted from the original | ||||||||||||||||
940 | function's profile to reflect the fact that part of execution is handled | ||||||||||||||||
941 | by node. | ||||||||||||||||
942 | When CALL_DUPLICATION_HOOK is true, the ipa passes are acknowledged about | ||||||||||||||||
943 | the new clone. Otherwise the caller is responsible for doing so later. | ||||||||||||||||
944 | |||||||||||||||||
945 | If the new node is being inlined into another one, NEW_INLINED_TO should be | ||||||||||||||||
946 | the outline function the new one is (even indirectly) inlined to. | ||||||||||||||||
947 | All hooks will see this in node's inlined_to, when invoked. | ||||||||||||||||
948 | Can be NULL if the node is not inlined. SUFFIX is string that is appended | ||||||||||||||||
949 | to the original name. */ | ||||||||||||||||
950 | cgraph_node *create_clone (tree decl, profile_count count, | ||||||||||||||||
951 | bool update_original, | ||||||||||||||||
952 | vec<cgraph_edge *> redirect_callers, | ||||||||||||||||
953 | bool call_duplication_hook, | ||||||||||||||||
954 | cgraph_node *new_inlined_to, | ||||||||||||||||
955 | ipa_param_adjustments *param_adjustments, | ||||||||||||||||
956 | const char *suffix = NULLnullptr); | ||||||||||||||||
957 | |||||||||||||||||
958 | /* Create callgraph node clone with new declaration. The actual body will be | ||||||||||||||||
959 | copied later at compilation stage. The name of the new clone will be | ||||||||||||||||
960 | constructed from the name of the original node, SUFFIX and NUM_SUFFIX. */ | ||||||||||||||||
961 | cgraph_node *create_virtual_clone (const vec<cgraph_edge *> &redirect_callers, | ||||||||||||||||
962 | vec<ipa_replace_map *, va_gc> *tree_map, | ||||||||||||||||
963 | ipa_param_adjustments *param_adjustments, | ||||||||||||||||
964 | const char * suffix, unsigned num_suffix); | ||||||||||||||||
965 | |||||||||||||||||
966 | /* Remove the node from the tree of virtual and inline clones and make it a | ||||||||||||||||
967 | standalone node - not a clone any more. */ | ||||||||||||||||
968 | void remove_from_clone_tree (); | ||||||||||||||||
969 | |||||||||||||||||
970 | /* cgraph node being removed from symbol table; see if its entry can be | ||||||||||||||||
971 | replaced by other inline clone. */ | ||||||||||||||||
972 | cgraph_node *find_replacement (struct clone_info *); | ||||||||||||||||
973 | |||||||||||||||||
974 | /* Create a new cgraph node which is the new version of | ||||||||||||||||
975 | callgraph node. REDIRECT_CALLERS holds the callers | ||||||||||||||||
976 | edges which should be redirected to point to | ||||||||||||||||
977 | NEW_VERSION. ALL the callees edges of the node | ||||||||||||||||
978 | are cloned to the new version node. Return the new | ||||||||||||||||
979 | version node. | ||||||||||||||||
980 | |||||||||||||||||
981 | If non-NULL BLOCK_TO_COPY determine what basic blocks | ||||||||||||||||
982 | was copied to prevent duplications of calls that are dead | ||||||||||||||||
983 | in the clone. | ||||||||||||||||
984 | |||||||||||||||||
985 | SUFFIX is string that is appended to the original name. */ | ||||||||||||||||
986 | |||||||||||||||||
987 | cgraph_node *create_version_clone (tree new_decl, | ||||||||||||||||
988 | vec<cgraph_edge *> redirect_callers, | ||||||||||||||||
989 | bitmap bbs_to_copy, | ||||||||||||||||
990 | const char *suffix = NULLnullptr); | ||||||||||||||||
991 | |||||||||||||||||
992 | /* Perform function versioning. | ||||||||||||||||
993 | Function versioning includes copying of the tree and | ||||||||||||||||
994 | a callgraph update (creating a new cgraph node and updating | ||||||||||||||||
995 | its callees and callers). | ||||||||||||||||
996 | |||||||||||||||||
997 | REDIRECT_CALLERS varray includes the edges to be redirected | ||||||||||||||||
998 | to the new version. | ||||||||||||||||
999 | |||||||||||||||||
1000 | TREE_MAP is a mapping of tree nodes we want to replace with | ||||||||||||||||
1001 | new ones (according to results of prior analysis). | ||||||||||||||||
1002 | |||||||||||||||||
1003 | If non-NULL ARGS_TO_SKIP determine function parameters to remove | ||||||||||||||||
1004 | from new version. | ||||||||||||||||
1005 | If SKIP_RETURN is true, the new version will return void. | ||||||||||||||||
1006 | If non-NULL BLOCK_TO_COPY determine what basic blocks to copy. | ||||||||||||||||
1007 | If non_NULL NEW_ENTRY determine new entry BB of the clone. | ||||||||||||||||
1008 | |||||||||||||||||
1009 | If TARGET_ATTRIBUTES is non-null, when creating a new declaration, | ||||||||||||||||
1010 | add the attributes to DECL_ATTRIBUTES. And call valid_attribute_p | ||||||||||||||||
1011 | that will promote value of the attribute DECL_FUNCTION_SPECIFIC_TARGET | ||||||||||||||||
1012 | of the declaration. | ||||||||||||||||
1013 | |||||||||||||||||
1014 | If VERSION_DECL is set true, use clone_function_name_numbered for the | ||||||||||||||||
1015 | function clone. Otherwise, use clone_function_name. | ||||||||||||||||
1016 | |||||||||||||||||
1017 | Return the new version's cgraph node. */ | ||||||||||||||||
1018 | cgraph_node *create_version_clone_with_body | ||||||||||||||||
1019 | (vec<cgraph_edge *> redirect_callers, | ||||||||||||||||
1020 | vec<ipa_replace_map *, va_gc> *tree_map, | ||||||||||||||||
1021 | ipa_param_adjustments *param_adjustments, | ||||||||||||||||
1022 | bitmap bbs_to_copy, basic_block new_entry_block, const char *clone_name, | ||||||||||||||||
1023 | tree target_attributes = NULL_TREE(tree) nullptr, bool version_decl = true); | ||||||||||||||||
1024 | |||||||||||||||||
1025 | /* Insert a new cgraph_function_version_info node into cgraph_fnver_htab | ||||||||||||||||
1026 | corresponding to cgraph_node. */ | ||||||||||||||||
1027 | cgraph_function_version_info *insert_new_function_version (void); | ||||||||||||||||
1028 | |||||||||||||||||
1029 | /* Get the cgraph_function_version_info node corresponding to node. */ | ||||||||||||||||
1030 | cgraph_function_version_info *function_version (void); | ||||||||||||||||
1031 | |||||||||||||||||
1032 | /* Discover all functions and variables that are trivially needed, analyze | ||||||||||||||||
1033 | them as well as all functions and variables referred by them */ | ||||||||||||||||
1034 | void analyze (void); | ||||||||||||||||
1035 | |||||||||||||||||
1036 | /* Add thunk alias into callgraph. The alias declaration is ALIAS and it | ||||||||||||||||
1037 | aliases DECL with an adjustments made into the first parameter. | ||||||||||||||||
1038 | See comments in struct symtab-thunks.h for detail on the parameters. */ | ||||||||||||||||
1039 | cgraph_node * create_thunk (tree alias, tree, bool this_adjusting, | ||||||||||||||||
1040 | HOST_WIDE_INTlong fixed_offset, | ||||||||||||||||
1041 | HOST_WIDE_INTlong virtual_value, | ||||||||||||||||
1042 | HOST_WIDE_INTlong indirect_offset, | ||||||||||||||||
1043 | tree virtual_offset, | ||||||||||||||||
1044 | tree real_alias); | ||||||||||||||||
1045 | |||||||||||||||||
1046 | |||||||||||||||||
1047 | /* Return node that alias is aliasing. */ | ||||||||||||||||
1048 | inline cgraph_node *get_alias_target (void); | ||||||||||||||||
1049 | |||||||||||||||||
1050 | /* Given function symbol, walk the alias chain to return the function node | ||||||||||||||||
1051 | is alias of. Do not walk through thunks. | ||||||||||||||||
1052 | When AVAILABILITY is non-NULL, get minimal availability in the chain. | ||||||||||||||||
1053 | When REF is non-NULL, assume that reference happens in symbol REF | ||||||||||||||||
1054 | when determining the availability. */ | ||||||||||||||||
1055 | |||||||||||||||||
1056 | cgraph_node *ultimate_alias_target (availability *availability = NULLnullptr, | ||||||||||||||||
1057 | symtab_node *ref = NULLnullptr); | ||||||||||||||||
1058 | |||||||||||||||||
1059 | /* Call expand_thunk on all callers that are thunks and analyze those | ||||||||||||||||
1060 | nodes that were expanded. */ | ||||||||||||||||
1061 | void expand_all_artificial_thunks (); | ||||||||||||||||
1062 | |||||||||||||||||
1063 | /* Assemble thunks and aliases associated to node. */ | ||||||||||||||||
1064 | void assemble_thunks_and_aliases (void); | ||||||||||||||||
1065 | |||||||||||||||||
1066 | /* Expand function specified by node. */ | ||||||||||||||||
1067 | void expand (void); | ||||||||||||||||
1068 | |||||||||||||||||
1069 | /* As an GCC extension we allow redefinition of the function. The | ||||||||||||||||
1070 | semantics when both copies of bodies differ is not well defined. | ||||||||||||||||
1071 | We replace the old body with new body so in unit at a time mode | ||||||||||||||||
1072 | we always use new body, while in normal mode we may end up with | ||||||||||||||||
1073 | old body inlined into some functions and new body expanded and | ||||||||||||||||
1074 | inlined in others. */ | ||||||||||||||||
1075 | void reset (void); | ||||||||||||||||
1076 | |||||||||||||||||
1077 | /* Creates a wrapper from cgraph_node to TARGET node. Thunk is used for this | ||||||||||||||||
1078 | kind of wrapper method. */ | ||||||||||||||||
1079 | void create_wrapper (cgraph_node *target); | ||||||||||||||||
1080 | |||||||||||||||||
1081 | /* Verify cgraph nodes of the cgraph node. */ | ||||||||||||||||
1082 | void DEBUG_FUNCTION__attribute__ ((__used__)) verify_node (void); | ||||||||||||||||
1083 | |||||||||||||||||
1084 | /* Remove function from symbol table. */ | ||||||||||||||||
1085 | void remove (void); | ||||||||||||||||
1086 | |||||||||||||||||
1087 | /* Dump call graph node to file F. */ | ||||||||||||||||
1088 | void dump (FILE *f); | ||||||||||||||||
1089 | |||||||||||||||||
1090 | /* Dump call graph node to file F. */ | ||||||||||||||||
1091 | void dump_graphviz (FILE *f); | ||||||||||||||||
1092 | |||||||||||||||||
1093 | /* Dump call graph node to stderr. */ | ||||||||||||||||
1094 | void DEBUG_FUNCTION__attribute__ ((__used__)) debug (void); | ||||||||||||||||
1095 | |||||||||||||||||
1096 | /* When doing LTO, read cgraph_node's body from disk if it is not already | ||||||||||||||||
1097 | present. */ | ||||||||||||||||
1098 | bool get_untransformed_body (); | ||||||||||||||||
1099 | |||||||||||||||||
1100 | /* Prepare function body. When doing LTO, read cgraph_node's body from disk | ||||||||||||||||
1101 | if it is not already present. When some IPA transformations are scheduled, | ||||||||||||||||
1102 | apply them. */ | ||||||||||||||||
1103 | bool get_body (); | ||||||||||||||||
1104 | |||||||||||||||||
1105 | void materialize_clone (void); | ||||||||||||||||
1106 | |||||||||||||||||
1107 | /* Release memory used to represent body of function. | ||||||||||||||||
1108 | Use this only for functions that are released before being translated to | ||||||||||||||||
1109 | target code (i.e. RTL). Functions that are compiled to RTL and beyond | ||||||||||||||||
1110 | are free'd in final.cc via free_after_compilation(). */ | ||||||||||||||||
1111 | void release_body (bool keep_arguments = false); | ||||||||||||||||
1112 | |||||||||||||||||
1113 | /* Return the DECL_STRUCT_FUNCTION of the function. */ | ||||||||||||||||
1114 | struct function *get_fun () const; | ||||||||||||||||
1115 | |||||||||||||||||
1116 | /* Bring cgraph node local. */ | ||||||||||||||||
1117 | void make_local (void); | ||||||||||||||||
1118 | |||||||||||||||||
1119 | /* Likewise indicate that a node is having address taken. */ | ||||||||||||||||
1120 | void mark_address_taken (void); | ||||||||||||||||
1121 | |||||||||||||||||
1122 | /* Set finalization priority to PRIORITY. */ | ||||||||||||||||
1123 | void set_fini_priority (priority_type priority); | ||||||||||||||||
1124 | |||||||||||||||||
1125 | /* Return the finalization priority. */ | ||||||||||||||||
1126 | priority_type get_fini_priority (void); | ||||||||||||||||
1127 | |||||||||||||||||
1128 | /* Create edge from a given function to CALLEE in the cgraph. */ | ||||||||||||||||
1129 | cgraph_edge *create_edge (cgraph_node *callee, | ||||||||||||||||
1130 | gcall *call_stmt, profile_count count, | ||||||||||||||||
1131 | bool cloning_p = false); | ||||||||||||||||
1132 | |||||||||||||||||
1133 | /* Create an indirect edge with a yet-undetermined callee where the call | ||||||||||||||||
1134 | statement destination is a formal parameter of the caller with index | ||||||||||||||||
1135 | PARAM_INDEX. */ | ||||||||||||||||
1136 | cgraph_edge *create_indirect_edge (gcall *call_stmt, int ecf_flags, | ||||||||||||||||
1137 | profile_count count, | ||||||||||||||||
1138 | bool cloning_p = false); | ||||||||||||||||
1139 | |||||||||||||||||
1140 | /* Like cgraph_create_edge walk the clone tree and update all clones sharing | ||||||||||||||||
1141 | same function body. If clones already have edge for OLD_STMT; only | ||||||||||||||||
1142 | update the edge same way as cgraph_set_call_stmt_including_clones does. */ | ||||||||||||||||
1143 | void create_edge_including_clones (cgraph_node *callee, | ||||||||||||||||
1144 | gimple *old_stmt, gcall *stmt, | ||||||||||||||||
1145 | profile_count count, | ||||||||||||||||
1146 | cgraph_inline_failed_t reason); | ||||||||||||||||
1147 | |||||||||||||||||
1148 | /* Return the callgraph edge representing the GIMPLE_CALL statement | ||||||||||||||||
1149 | CALL_STMT. */ | ||||||||||||||||
1150 | cgraph_edge *get_edge (gimple *call_stmt); | ||||||||||||||||
1151 | |||||||||||||||||
1152 | /* Collect all callers of cgraph_node and its aliases that are known to lead | ||||||||||||||||
1153 | to NODE (i.e. are not overwritable) and that are not thunks. */ | ||||||||||||||||
1154 | auto_vec<cgraph_edge *> collect_callers (void); | ||||||||||||||||
1155 | |||||||||||||||||
1156 | /* Remove all callers from the node. */ | ||||||||||||||||
1157 | void remove_callers (void); | ||||||||||||||||
1158 | |||||||||||||||||
1159 | /* Remove all callees from the node. */ | ||||||||||||||||
1160 | void remove_callees (void); | ||||||||||||||||
1161 | |||||||||||||||||
1162 | /* Return function availability. See cgraph.h for description of individual | ||||||||||||||||
1163 | return values. */ | ||||||||||||||||
1164 | enum availability get_availability (symtab_node *ref = NULLnullptr); | ||||||||||||||||
1165 | |||||||||||||||||
1166 | /* Set TREE_NOTHROW on cgraph_node's decl and on aliases of the node | ||||||||||||||||
1167 | if any to NOTHROW. */ | ||||||||||||||||
1168 | bool set_nothrow_flag (bool nothrow); | ||||||||||||||||
1169 | |||||||||||||||||
1170 | /* SET DECL_IS_MALLOC on cgraph_node's decl and on aliases of the node | ||||||||||||||||
1171 | if any. */ | ||||||||||||||||
1172 | bool set_malloc_flag (bool malloc_p); | ||||||||||||||||
1173 | |||||||||||||||||
1174 | /* SET TREE_THIS_VOLATILE on cgraph_node's decl and on aliases of the node | ||||||||||||||||
1175 | if any. */ | ||||||||||||||||
1176 | bool set_noreturn_flag (bool noreturn_p); | ||||||||||||||||
1177 | |||||||||||||||||
1178 | /* If SET_CONST is true, mark function, aliases and thunks to be ECF_CONST. | ||||||||||||||||
1179 | If SET_CONST if false, clear the flag. | ||||||||||||||||
1180 | |||||||||||||||||
1181 | When setting the flag be careful about possible interposition and | ||||||||||||||||
1182 | do not set the flag for functions that can be interposed and set pure | ||||||||||||||||
1183 | flag for functions that can bind to other definition. | ||||||||||||||||
1184 | |||||||||||||||||
1185 | Return true if any change was done. */ | ||||||||||||||||
1186 | |||||||||||||||||
1187 | bool set_const_flag (bool set_const, bool looping); | ||||||||||||||||
1188 | |||||||||||||||||
1189 | /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node | ||||||||||||||||
1190 | if any to PURE. | ||||||||||||||||
1191 | |||||||||||||||||
1192 | When setting the flag, be careful about possible interposition. | ||||||||||||||||
1193 | Return true if any change was done. */ | ||||||||||||||||
1194 | |||||||||||||||||
1195 | bool set_pure_flag (bool pure, bool looping); | ||||||||||||||||
1196 | |||||||||||||||||
1197 | /* Call callback on function and aliases associated to the function. | ||||||||||||||||
1198 | When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are | ||||||||||||||||
1199 | skipped. */ | ||||||||||||||||
1200 | |||||||||||||||||
1201 | bool call_for_symbol_and_aliases (bool (*callback) (cgraph_node *, | ||||||||||||||||
1202 | void *), | ||||||||||||||||
1203 | void *data, bool include_overwritable); | ||||||||||||||||
1204 | |||||||||||||||||
1205 | /* Call callback on cgraph_node, thunks and aliases associated to NODE. | ||||||||||||||||
1206 | When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are | ||||||||||||||||
1207 | skipped. When EXCLUDE_VIRTUAL_THUNKS is true, virtual thunks are | ||||||||||||||||
1208 | skipped. */ | ||||||||||||||||
1209 | bool call_for_symbol_thunks_and_aliases (bool (*callback) (cgraph_node *node, | ||||||||||||||||
1210 | void *data), | ||||||||||||||||
1211 | void *data, | ||||||||||||||||
1212 | bool include_overwritable, | ||||||||||||||||
1213 | bool exclude_virtual_thunks = false); | ||||||||||||||||
1214 | |||||||||||||||||
1215 | /* Likewise indicate that a node is needed, i.e. reachable via some | ||||||||||||||||
1216 | external means. */ | ||||||||||||||||
1217 | inline void mark_force_output (void); | ||||||||||||||||
1218 | |||||||||||||||||
1219 | /* Return true when function can be marked local. */ | ||||||||||||||||
1220 | bool local_p (void); | ||||||||||||||||
1221 | |||||||||||||||||
1222 | /* Return true if cgraph_node can be made local for API change. | ||||||||||||||||
1223 | Extern inline functions and C++ COMDAT functions can be made local | ||||||||||||||||
1224 | at the expense of possible code size growth if function is used in multiple | ||||||||||||||||
1225 | compilation units. */ | ||||||||||||||||
1226 | bool can_be_local_p (void); | ||||||||||||||||
1227 | |||||||||||||||||
1228 | /* Return true when cgraph_node cannot return or throw and thus | ||||||||||||||||
1229 | it is safe to ignore its side effects for IPA analysis. */ | ||||||||||||||||
1230 | bool cannot_return_p (void); | ||||||||||||||||
1231 | |||||||||||||||||
1232 | /* Return true when function cgraph_node and all its aliases are only called | ||||||||||||||||
1233 | directly. | ||||||||||||||||
1234 | i.e. it is not externally visible, address was not taken and | ||||||||||||||||
1235 | it is not used in any other non-standard way. */ | ||||||||||||||||
1236 | bool only_called_directly_p (void); | ||||||||||||||||
1237 | |||||||||||||||||
1238 | /* Return true when function is only called directly or it has alias. | ||||||||||||||||
1239 | i.e. it is not externally visible, address was not taken and | ||||||||||||||||
1240 | it is not used in any other non-standard way. */ | ||||||||||||||||
1241 | inline bool only_called_directly_or_aliased_p (void); | ||||||||||||||||
1242 | |||||||||||||||||
1243 | /* Return true when function cgraph_node can be expected to be removed | ||||||||||||||||
1244 | from program when direct calls in this compilation unit are removed. | ||||||||||||||||
1245 | |||||||||||||||||
1246 | As a special case COMDAT functions are | ||||||||||||||||
1247 | cgraph_can_remove_if_no_direct_calls_p while the are not | ||||||||||||||||
1248 | cgraph_only_called_directly_p (it is possible they are called from other | ||||||||||||||||
1249 | unit) | ||||||||||||||||
1250 | |||||||||||||||||
1251 | This function behaves as cgraph_only_called_directly_p because eliminating | ||||||||||||||||
1252 | all uses of COMDAT function does not make it necessarily disappear from | ||||||||||||||||
1253 | the program unless we are compiling whole program or we do LTO. In this | ||||||||||||||||
1254 | case we know we win since dynamic linking will not really discard the | ||||||||||||||||
1255 | linkonce section. | ||||||||||||||||
1256 | |||||||||||||||||
1257 | If WILL_INLINE is true, assume that function will be inlined into all the | ||||||||||||||||
1258 | direct calls. */ | ||||||||||||||||
1259 | bool will_be_removed_from_program_if_no_direct_calls_p | ||||||||||||||||
1260 | (bool will_inline = false); | ||||||||||||||||
1261 | |||||||||||||||||
1262 | /* Return true when function can be removed from callgraph | ||||||||||||||||
1263 | if all direct calls and references are eliminated. The function does | ||||||||||||||||
1264 | not take into account comdat groups. */ | ||||||||||||||||
1265 | bool can_remove_if_no_direct_calls_and_refs_p (void); | ||||||||||||||||
1266 | |||||||||||||||||
1267 | /* Return true when function cgraph_node and its aliases can be removed from | ||||||||||||||||
1268 | callgraph if all direct calls are eliminated. | ||||||||||||||||
1269 | If WILL_INLINE is true, assume that function will be inlined into all the | ||||||||||||||||
1270 | direct calls. */ | ||||||||||||||||
1271 | bool can_remove_if_no_direct_calls_p (bool will_inline = false); | ||||||||||||||||
1272 | |||||||||||||||||
1273 | /* Return true when callgraph node is a function with Gimple body defined | ||||||||||||||||
1274 | in current unit. Functions can also be define externally or they | ||||||||||||||||
1275 | can be thunks with no Gimple representation. | ||||||||||||||||
1276 | |||||||||||||||||
1277 | Note that at WPA stage, the function body may not be present in memory. */ | ||||||||||||||||
1278 | inline bool has_gimple_body_p (void); | ||||||||||||||||
1279 | |||||||||||||||||
1280 | /* Return true if this node represents a former, i.e. an expanded, thunk. */ | ||||||||||||||||
1281 | bool former_thunk_p (void); | ||||||||||||||||
1282 | |||||||||||||||||
1283 | /* Check if function calls comdat local. This is used to recompute | ||||||||||||||||
1284 | calls_comdat_local flag after function transformations. */ | ||||||||||||||||
1285 | bool check_calls_comdat_local_p (); | ||||||||||||||||
1286 | |||||||||||||||||
1287 | /* Return true if function should be optimized for size. */ | ||||||||||||||||
1288 | enum optimize_size_level optimize_for_size_p (void); | ||||||||||||||||
1289 | |||||||||||||||||
1290 | /* Dump the callgraph to file F. */ | ||||||||||||||||
1291 | static void dump_cgraph (FILE *f); | ||||||||||||||||
1292 | |||||||||||||||||
1293 | /* Dump the call graph to stderr. */ | ||||||||||||||||
1294 | static inline | ||||||||||||||||
1295 | void debug_cgraph (void) | ||||||||||||||||
1296 | { | ||||||||||||||||
1297 | dump_cgraph (stderrstderr); | ||||||||||||||||
1298 | } | ||||||||||||||||
1299 | |||||||||||||||||
1300 | /* Get unique identifier of the node. */ | ||||||||||||||||
1301 | inline int get_uid () | ||||||||||||||||
1302 | { | ||||||||||||||||
1303 | return m_uid; | ||||||||||||||||
1304 | } | ||||||||||||||||
1305 | |||||||||||||||||
1306 | /* Get summary id of the node. */ | ||||||||||||||||
1307 | inline int get_summary_id () | ||||||||||||||||
1308 | { | ||||||||||||||||
1309 | return m_summary_id; | ||||||||||||||||
1310 | } | ||||||||||||||||
1311 | |||||||||||||||||
1312 | /* Record that DECL1 and DECL2 are semantically identical function | ||||||||||||||||
1313 | versions. */ | ||||||||||||||||
1314 | static void record_function_versions (tree decl1, tree decl2); | ||||||||||||||||
1315 | |||||||||||||||||
1316 | /* Remove the cgraph_function_version_info and cgraph_node for DECL. This | ||||||||||||||||
1317 | DECL is a duplicate declaration. */ | ||||||||||||||||
1318 | static void delete_function_version_by_decl (tree decl); | ||||||||||||||||
1319 | |||||||||||||||||
1320 | /* Add the function FNDECL to the call graph. | ||||||||||||||||
1321 | Unlike finalize_function, this function is intended to be used | ||||||||||||||||
1322 | by middle end and allows insertion of new function at arbitrary point | ||||||||||||||||
1323 | of compilation. The function can be either in high, low or SSA form | ||||||||||||||||
1324 | GIMPLE. | ||||||||||||||||
1325 | |||||||||||||||||
1326 | The function is assumed to be reachable and have address taken (so no | ||||||||||||||||
1327 | API breaking optimizations are performed on it). | ||||||||||||||||
1328 | |||||||||||||||||
1329 | Main work done by this function is to enqueue the function for later | ||||||||||||||||
1330 | processing to avoid need the passes to be re-entrant. */ | ||||||||||||||||
1331 | static void add_new_function (tree fndecl, bool lowered); | ||||||||||||||||
1332 | |||||||||||||||||
1333 | /* Return callgraph node for given symbol and check it is a function. */ | ||||||||||||||||
1334 | static inline cgraph_node *get (const_tree decl) | ||||||||||||||||
1335 | { | ||||||||||||||||
1336 | gcc_checking_assert (TREE_CODE (decl) == FUNCTION_DECL)((void)(!(((enum tree_code) (decl)->base.code) == FUNCTION_DECL ) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 1336, __FUNCTION__), 0 : 0)); | ||||||||||||||||
1337 | return dyn_cast <cgraph_node *> (symtab_node::get (decl)); | ||||||||||||||||
1338 | } | ||||||||||||||||
1339 | |||||||||||||||||
1340 | /* DECL has been parsed. Take it, queue it, compile it at the whim of the | ||||||||||||||||
1341 | logic in effect. If NO_COLLECT is true, then our caller cannot stand to | ||||||||||||||||
1342 | have the garbage collector run at the moment. We would need to either | ||||||||||||||||
1343 | create a new GC context, or just not compile right now. */ | ||||||||||||||||
1344 | static void finalize_function (tree, bool); | ||||||||||||||||
1345 | |||||||||||||||||
1346 | /* Return cgraph node assigned to DECL. Create new one when needed. */ | ||||||||||||||||
1347 | static cgraph_node * create (tree decl); | ||||||||||||||||
1348 | |||||||||||||||||
1349 | /* Try to find a call graph node for declaration DECL and if it does not | ||||||||||||||||
1350 | exist or if it corresponds to an inline clone, create a new one. */ | ||||||||||||||||
1351 | static cgraph_node * get_create (tree); | ||||||||||||||||
1352 | |||||||||||||||||
1353 | /* Return local info for the compiled function. */ | ||||||||||||||||
1354 | static cgraph_node *local_info_node (tree decl); | ||||||||||||||||
1355 | |||||||||||||||||
1356 | /* Return RTL info for the compiled function. */ | ||||||||||||||||
1357 | static struct cgraph_rtl_info *rtl_info (const_tree); | ||||||||||||||||
1358 | |||||||||||||||||
1359 | /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME. | ||||||||||||||||
1360 | Return NULL if there's no such node. */ | ||||||||||||||||
1361 | static cgraph_node *get_for_asmname (tree asmname); | ||||||||||||||||
1362 | |||||||||||||||||
1363 | /* Attempt to mark ALIAS as an alias to DECL. Return alias node if | ||||||||||||||||
1364 | successful and NULL otherwise. | ||||||||||||||||
1365 | Same body aliases are output whenever the body of DECL is output, | ||||||||||||||||
1366 | and cgraph_node::get (ALIAS) transparently | ||||||||||||||||
1367 | returns cgraph_node::get (DECL). */ | ||||||||||||||||
1368 | static cgraph_node * create_same_body_alias (tree alias, tree decl); | ||||||||||||||||
1369 | |||||||||||||||||
1370 | /* Verify whole cgraph structure. */ | ||||||||||||||||
1371 | static void DEBUG_FUNCTION__attribute__ ((__used__)) verify_cgraph_nodes (void); | ||||||||||||||||
1372 | |||||||||||||||||
1373 | /* Verify cgraph, if consistency checking is enabled. */ | ||||||||||||||||
1374 | static inline void checking_verify_cgraph_nodes (void); | ||||||||||||||||
1375 | |||||||||||||||||
1376 | /* Worker to bring NODE local. */ | ||||||||||||||||
1377 | static bool make_local (cgraph_node *node, void *); | ||||||||||||||||
1378 | |||||||||||||||||
1379 | /* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing | ||||||||||||||||
1380 | the function body is associated | ||||||||||||||||
1381 | with (not necessarily cgraph_node (DECL). */ | ||||||||||||||||
1382 | static cgraph_node *create_alias (tree alias, tree target); | ||||||||||||||||
1383 | |||||||||||||||||
1384 | /* Return true if NODE has thunk. */ | ||||||||||||||||
1385 | static bool has_thunk_p (cgraph_node *node, void *); | ||||||||||||||||
1386 | |||||||||||||||||
1387 | cgraph_edge *callees; | ||||||||||||||||
1388 | cgraph_edge *callers; | ||||||||||||||||
1389 | /* List of edges representing indirect calls with a yet undetermined | ||||||||||||||||
1390 | callee. */ | ||||||||||||||||
1391 | cgraph_edge *indirect_calls; | ||||||||||||||||
1392 | cgraph_node *next_sibling_clone; | ||||||||||||||||
1393 | cgraph_node *prev_sibling_clone; | ||||||||||||||||
1394 | cgraph_node *clones; | ||||||||||||||||
1395 | cgraph_node *clone_of; | ||||||||||||||||
1396 | /* For functions with many calls sites it holds map from call expression | ||||||||||||||||
1397 | to the edge to speed up cgraph_edge function. */ | ||||||||||||||||
1398 | hash_table<cgraph_edge_hasher> *GTY(()) call_site_hash; | ||||||||||||||||
1399 | /* Declaration node used to be clone of. */ | ||||||||||||||||
1400 | tree former_clone_of; | ||||||||||||||||
1401 | |||||||||||||||||
1402 | /* If this is a SIMD clone, this points to the SIMD specific | ||||||||||||||||
1403 | information for it. */ | ||||||||||||||||
1404 | cgraph_simd_clone *simdclone; | ||||||||||||||||
1405 | /* If this function has SIMD clones, this points to the first clone. */ | ||||||||||||||||
1406 | cgraph_node *simd_clones; | ||||||||||||||||
1407 | |||||||||||||||||
1408 | /* Interprocedural passes scheduled to have their transform functions | ||||||||||||||||
1409 | applied next time we execute local pass on them. We maintain it | ||||||||||||||||
1410 | per-function in order to allow IPA passes to introduce new functions. */ | ||||||||||||||||
1411 | vec<ipa_opt_pass, va_heap, vl_ptr> GTY((skip)) ipa_transforms_to_apply; | ||||||||||||||||
1412 | |||||||||||||||||
1413 | /* For inline clones this points to the function they will be | ||||||||||||||||
1414 | inlined into. */ | ||||||||||||||||
1415 | cgraph_node *inlined_to; | ||||||||||||||||
1416 | |||||||||||||||||
1417 | struct cgraph_rtl_info *rtl; | ||||||||||||||||
1418 | |||||||||||||||||
1419 | /* Expected number of executions: calculated in profile.cc. */ | ||||||||||||||||
1420 | profile_count count; | ||||||||||||||||
1421 | /* How to scale counts at materialization time; used to merge | ||||||||||||||||
1422 | LTO units with different number of profile runs. */ | ||||||||||||||||
1423 | int count_materialization_scale; | ||||||||||||||||
1424 | /* ID assigned by the profiling. */ | ||||||||||||||||
1425 | unsigned int profile_id; | ||||||||||||||||
1426 | /* ID of the translation unit. */ | ||||||||||||||||
1427 | int unit_id; | ||||||||||||||||
1428 | /* Time profiler: first run of function. */ | ||||||||||||||||
1429 | int tp_first_run; | ||||||||||||||||
1430 | |||||||||||||||||
1431 | /* True when symbol is a thunk. */ | ||||||||||||||||
1432 | unsigned thunk : 1; | ||||||||||||||||
1433 | /* Set when decl is an abstract function pointed to by the | ||||||||||||||||
1434 | ABSTRACT_DECL_ORIGIN of a reachable function. */ | ||||||||||||||||
1435 | unsigned used_as_abstract_origin : 1; | ||||||||||||||||
1436 | /* Set once the function is lowered (i.e. its CFG is built). */ | ||||||||||||||||
1437 | unsigned lowered : 1; | ||||||||||||||||
1438 | /* Set once the function has been instantiated and its callee | ||||||||||||||||
1439 | lists created. */ | ||||||||||||||||
1440 | unsigned process : 1; | ||||||||||||||||
1441 | /* How commonly executed the node is. Initialized during branch | ||||||||||||||||
1442 | probabilities pass. */ | ||||||||||||||||
1443 | ENUM_BITFIELD (node_frequency)enum node_frequency frequency : 2; | ||||||||||||||||
1444 | /* True when function can only be called at startup (from static ctor). */ | ||||||||||||||||
1445 | unsigned only_called_at_startup : 1; | ||||||||||||||||
1446 | /* True when function can only be called at startup (from static dtor). */ | ||||||||||||||||
1447 | unsigned only_called_at_exit : 1; | ||||||||||||||||
1448 | /* True when function is the transactional clone of a function which | ||||||||||||||||
1449 | is called only from inside transactions. */ | ||||||||||||||||
1450 | /* ?? We should be able to remove this. We have enough bits in | ||||||||||||||||
1451 | cgraph to calculate it. */ | ||||||||||||||||
1452 | unsigned tm_clone : 1; | ||||||||||||||||
1453 | /* True if this decl is a dispatcher for function versions. */ | ||||||||||||||||
1454 | unsigned dispatcher_function : 1; | ||||||||||||||||
1455 | /* True if this decl calls a COMDAT-local function. This is set up in | ||||||||||||||||
1456 | compute_fn_summary and inline_call. */ | ||||||||||||||||
1457 | unsigned calls_comdat_local : 1; | ||||||||||||||||
1458 | /* True if node has been created by merge operation in IPA-ICF. */ | ||||||||||||||||
1459 | unsigned icf_merged: 1; | ||||||||||||||||
1460 | /* True if call to node can't result in a call to free, munmap or | ||||||||||||||||
1461 | other operation that could make previously non-trapping memory | ||||||||||||||||
1462 | accesses trapping. */ | ||||||||||||||||
1463 | unsigned nonfreeing_fn : 1; | ||||||||||||||||
1464 | /* True if there was multiple COMDAT bodies merged by lto-symtab. */ | ||||||||||||||||
1465 | unsigned merged_comdat : 1; | ||||||||||||||||
1466 | /* True if this def was merged with extern inlines. */ | ||||||||||||||||
1467 | unsigned merged_extern_inline : 1; | ||||||||||||||||
1468 | /* True if function was created to be executed in parallel. */ | ||||||||||||||||
1469 | unsigned parallelized_function : 1; | ||||||||||||||||
1470 | /* True if function is part split out by ipa-split. */ | ||||||||||||||||
1471 | unsigned split_part : 1; | ||||||||||||||||
1472 | /* True if the function appears as possible target of indirect call. */ | ||||||||||||||||
1473 | unsigned indirect_call_target : 1; | ||||||||||||||||
1474 | /* Set when function is visible in current compilation unit only and | ||||||||||||||||
1475 | its address is never taken. */ | ||||||||||||||||
1476 | unsigned local : 1; | ||||||||||||||||
1477 | /* False when there is something makes versioning impossible. */ | ||||||||||||||||
1478 | unsigned versionable : 1; | ||||||||||||||||
1479 | /* False when function calling convention and signature cannot be changed. | ||||||||||||||||
1480 | This is the case when __builtin_apply_args is used. */ | ||||||||||||||||
1481 | unsigned can_change_signature : 1; | ||||||||||||||||
1482 | /* True when the function has been originally extern inline, but it is | ||||||||||||||||
1483 | redefined now. */ | ||||||||||||||||
1484 | unsigned redefined_extern_inline : 1; | ||||||||||||||||
1485 | /* True if the function may enter serial irrevocable mode. */ | ||||||||||||||||
1486 | unsigned tm_may_enter_irr : 1; | ||||||||||||||||
1487 | /* True if this was a clone created by ipa-cp. */ | ||||||||||||||||
1488 | unsigned ipcp_clone : 1; | ||||||||||||||||
1489 | /* True if this is the deferred declare variant resolution artificial | ||||||||||||||||
1490 | function. */ | ||||||||||||||||
1491 | unsigned declare_variant_alt : 1; | ||||||||||||||||
1492 | /* True if the function calls declare_variant_alt functions. */ | ||||||||||||||||
1493 | unsigned calls_declare_variant_alt : 1; | ||||||||||||||||
1494 | /* True if the function should only be emitted if it is used. This flag | ||||||||||||||||
1495 | is set for local SIMD clones when they are created and cleared if the | ||||||||||||||||
1496 | vectorizer uses them. */ | ||||||||||||||||
1497 | unsigned gc_candidate : 1; | ||||||||||||||||
1498 | |||||||||||||||||
1499 | private: | ||||||||||||||||
1500 | /* Unique id of the node. */ | ||||||||||||||||
1501 | int m_uid; | ||||||||||||||||
1502 | |||||||||||||||||
1503 | /* Summary id that is recycled. */ | ||||||||||||||||
1504 | int m_summary_id; | ||||||||||||||||
1505 | |||||||||||||||||
1506 | /* Worker for call_for_symbol_and_aliases. */ | ||||||||||||||||
1507 | bool call_for_symbol_and_aliases_1 (bool (*callback) (cgraph_node *, | ||||||||||||||||
1508 | void *), | ||||||||||||||||
1509 | void *data, bool include_overwritable); | ||||||||||||||||
1510 | }; | ||||||||||||||||
1511 | |||||||||||||||||
1512 | /* A cgraph node set is a collection of cgraph nodes. A cgraph node | ||||||||||||||||
1513 | can appear in multiple sets. */ | ||||||||||||||||
1514 | struct cgraph_node_set_def | ||||||||||||||||
1515 | { | ||||||||||||||||
1516 | hash_map<cgraph_node *, size_t> *map; | ||||||||||||||||
1517 | vec<cgraph_node *> nodes; | ||||||||||||||||
1518 | }; | ||||||||||||||||
1519 | |||||||||||||||||
1520 | typedef cgraph_node_set_def *cgraph_node_set; | ||||||||||||||||
1521 | typedef struct varpool_node_set_def *varpool_node_set; | ||||||||||||||||
1522 | |||||||||||||||||
1523 | struct varpool_node; | ||||||||||||||||
1524 | |||||||||||||||||
1525 | /* A varpool node set is a collection of varpool nodes. A varpool node | ||||||||||||||||
1526 | can appear in multiple sets. */ | ||||||||||||||||
1527 | struct varpool_node_set_def | ||||||||||||||||
1528 | { | ||||||||||||||||
1529 | hash_map<varpool_node *, size_t> * map; | ||||||||||||||||
1530 | vec<varpool_node *> nodes; | ||||||||||||||||
1531 | }; | ||||||||||||||||
1532 | |||||||||||||||||
1533 | /* Iterator structure for cgraph node sets. */ | ||||||||||||||||
1534 | struct cgraph_node_set_iterator | ||||||||||||||||
1535 | { | ||||||||||||||||
1536 | cgraph_node_set set; | ||||||||||||||||
1537 | unsigned index; | ||||||||||||||||
1538 | }; | ||||||||||||||||
1539 | |||||||||||||||||
1540 | /* Iterator structure for varpool node sets. */ | ||||||||||||||||
1541 | struct varpool_node_set_iterator | ||||||||||||||||
1542 | { | ||||||||||||||||
1543 | varpool_node_set set; | ||||||||||||||||
1544 | unsigned index; | ||||||||||||||||
1545 | }; | ||||||||||||||||
1546 | |||||||||||||||||
1547 | /* Context of polymorphic call. It represent information about the type of | ||||||||||||||||
1548 | instance that may reach the call. This is used by ipa-devirt walkers of the | ||||||||||||||||
1549 | type inheritance graph. */ | ||||||||||||||||
1550 | |||||||||||||||||
1551 | class GTY(()) ipa_polymorphic_call_context { | ||||||||||||||||
1552 | public: | ||||||||||||||||
1553 | /* The called object appears in an object of type OUTER_TYPE | ||||||||||||||||
1554 | at offset OFFSET. When information is not 100% reliable, we | ||||||||||||||||
1555 | use SPECULATIVE_OUTER_TYPE and SPECULATIVE_OFFSET. */ | ||||||||||||||||
1556 | HOST_WIDE_INTlong offset; | ||||||||||||||||
1557 | HOST_WIDE_INTlong speculative_offset; | ||||||||||||||||
1558 | tree outer_type; | ||||||||||||||||
1559 | tree speculative_outer_type; | ||||||||||||||||
1560 | /* True if outer object may be in construction or destruction. */ | ||||||||||||||||
1561 | unsigned maybe_in_construction : 1; | ||||||||||||||||
1562 | /* True if outer object may be of derived type. */ | ||||||||||||||||
1563 | unsigned maybe_derived_type : 1; | ||||||||||||||||
1564 | /* True if speculative outer object may be of derived type. We always | ||||||||||||||||
1565 | speculate that construction does not happen. */ | ||||||||||||||||
1566 | unsigned speculative_maybe_derived_type : 1; | ||||||||||||||||
1567 | /* True if the context is invalid and all calls should be redirected | ||||||||||||||||
1568 | to BUILTIN_UNREACHABLE. */ | ||||||||||||||||
1569 | unsigned invalid : 1; | ||||||||||||||||
1570 | /* True if the outer type is dynamic. */ | ||||||||||||||||
1571 | unsigned dynamic : 1; | ||||||||||||||||
1572 | |||||||||||||||||
1573 | /* Build empty "I know nothing" context. */ | ||||||||||||||||
1574 | ipa_polymorphic_call_context (); | ||||||||||||||||
1575 | /* Build polymorphic call context for indirect call E. */ | ||||||||||||||||
1576 | ipa_polymorphic_call_context (cgraph_edge *e); | ||||||||||||||||
1577 | /* Build polymorphic call context for IP invariant CST. | ||||||||||||||||
1578 | If specified, OTR_TYPE specify the type of polymorphic call | ||||||||||||||||
1579 | that takes CST+OFFSET as a parameter. */ | ||||||||||||||||
1580 | ipa_polymorphic_call_context (tree cst, tree otr_type = NULLnullptr, | ||||||||||||||||
1581 | HOST_WIDE_INTlong offset = 0); | ||||||||||||||||
1582 | /* Build context for pointer REF contained in FNDECL at statement STMT. | ||||||||||||||||
1583 | if INSTANCE is non-NULL, return pointer to the object described by | ||||||||||||||||
1584 | the context. */ | ||||||||||||||||
1585 | ipa_polymorphic_call_context (tree fndecl, tree ref, gimple *stmt, | ||||||||||||||||
1586 | tree *instance = NULLnullptr); | ||||||||||||||||
1587 | |||||||||||||||||
1588 | /* Look for vtable stores or constructor calls to work out dynamic type | ||||||||||||||||
1589 | of memory location. */ | ||||||||||||||||
1590 | bool get_dynamic_type (tree, tree, tree, gimple *, unsigned *); | ||||||||||||||||
1591 | |||||||||||||||||
1592 | /* Make context non-speculative. */ | ||||||||||||||||
1593 | void clear_speculation (); | ||||||||||||||||
1594 | |||||||||||||||||
1595 | /* Produce context specifying all derived types of OTR_TYPE. If OTR_TYPE is | ||||||||||||||||
1596 | NULL, the context is set to dummy "I know nothing" setting. */ | ||||||||||||||||
1597 | void clear_outer_type (tree otr_type = NULLnullptr); | ||||||||||||||||
1598 | |||||||||||||||||
1599 | /* Walk container types and modify context to point to actual class | ||||||||||||||||
1600 | containing OTR_TYPE (if non-NULL) as base class. | ||||||||||||||||
1601 | Return true if resulting context is valid. | ||||||||||||||||
1602 | |||||||||||||||||
1603 | When CONSIDER_PLACEMENT_NEW is false, reject contexts that may be made | ||||||||||||||||
1604 | valid only via allocation of new polymorphic type inside by means | ||||||||||||||||
1605 | of placement new. | ||||||||||||||||
1606 | |||||||||||||||||
1607 | When CONSIDER_BASES is false, only look for actual fields, not base types | ||||||||||||||||
1608 | of TYPE. */ | ||||||||||||||||
1609 | bool restrict_to_inner_class (tree otr_type, | ||||||||||||||||
1610 | bool consider_placement_new = true, | ||||||||||||||||
1611 | bool consider_bases = true); | ||||||||||||||||
1612 | |||||||||||||||||
1613 | /* Adjust all offsets in contexts by given number of bits. */ | ||||||||||||||||
1614 | void offset_by (HOST_WIDE_INTlong); | ||||||||||||||||
1615 | /* Use when we cannot track dynamic type change. This speculatively assume | ||||||||||||||||
1616 | type change is not happening. */ | ||||||||||||||||
1617 | void possible_dynamic_type_change (bool, tree otr_type = NULLnullptr); | ||||||||||||||||
1618 | /* Assume that both THIS and a given context is valid and strengthen THIS | ||||||||||||||||
1619 | if possible. Return true if any strengthening was made. | ||||||||||||||||
1620 | If actual type the context is being used in is known, OTR_TYPE should be | ||||||||||||||||
1621 | set accordingly. This improves quality of combined result. */ | ||||||||||||||||
1622 | bool combine_with (ipa_polymorphic_call_context, tree otr_type = NULLnullptr); | ||||||||||||||||
1623 | bool meet_with (ipa_polymorphic_call_context, tree otr_type = NULLnullptr); | ||||||||||||||||
1624 | |||||||||||||||||
1625 | /* Return TRUE if context is fully useless. */ | ||||||||||||||||
1626 | bool useless_p () const; | ||||||||||||||||
1627 | /* Return TRUE if this context conveys the same information as X. */ | ||||||||||||||||
1628 | bool equal_to (const ipa_polymorphic_call_context &x) const; | ||||||||||||||||
1629 | |||||||||||||||||
1630 | /* Dump human readable context to F. If NEWLINE is true, it will be | ||||||||||||||||
1631 | terminated by a newline. */ | ||||||||||||||||
1632 | void dump (FILE *f, bool newline = true) const; | ||||||||||||||||
1633 | void DEBUG_FUNCTION__attribute__ ((__used__)) debug () const; | ||||||||||||||||
1634 | |||||||||||||||||
1635 | /* LTO streaming. */ | ||||||||||||||||
1636 | void stream_out (struct output_block *) const; | ||||||||||||||||
1637 | void stream_in (class lto_input_block *, class data_in *data_in); | ||||||||||||||||
1638 | |||||||||||||||||
1639 | private: | ||||||||||||||||
1640 | bool combine_speculation_with (tree, HOST_WIDE_INTlong, bool, tree); | ||||||||||||||||
1641 | bool meet_speculation_with (tree, HOST_WIDE_INTlong, bool, tree); | ||||||||||||||||
1642 | void set_by_decl (tree, HOST_WIDE_INTlong); | ||||||||||||||||
1643 | bool set_by_invariant (tree, tree, HOST_WIDE_INTlong); | ||||||||||||||||
1644 | bool speculation_consistent_p (tree, HOST_WIDE_INTlong, bool, tree) const; | ||||||||||||||||
1645 | void make_speculative (tree otr_type = NULLnullptr); | ||||||||||||||||
1646 | }; | ||||||||||||||||
1647 | |||||||||||||||||
1648 | /* Structure containing additional information about an indirect call. */ | ||||||||||||||||
1649 | |||||||||||||||||
1650 | class GTY(()) cgraph_indirect_call_info | ||||||||||||||||
1651 | { | ||||||||||||||||
1652 | public: | ||||||||||||||||
1653 | /* When agg_content is set, an offset where the call pointer is located | ||||||||||||||||
1654 | within the aggregate. */ | ||||||||||||||||
1655 | HOST_WIDE_INTlong offset; | ||||||||||||||||
1656 | /* Context of the polymorphic call; use only when POLYMORPHIC flag is set. */ | ||||||||||||||||
1657 | ipa_polymorphic_call_context context; | ||||||||||||||||
1658 | /* OBJ_TYPE_REF_TOKEN of a polymorphic call (if polymorphic is set). */ | ||||||||||||||||
1659 | HOST_WIDE_INTlong otr_token; | ||||||||||||||||
1660 | /* Type of the object from OBJ_TYPE_REF_OBJECT. */ | ||||||||||||||||
1661 | tree otr_type; | ||||||||||||||||
1662 | /* Index of the parameter that is called. */ | ||||||||||||||||
1663 | int param_index; | ||||||||||||||||
1664 | /* ECF flags determined from the caller. */ | ||||||||||||||||
1665 | int ecf_flags; | ||||||||||||||||
1666 | |||||||||||||||||
1667 | /* Number of speculative call targets, it's less than GCOV_TOPN_VALUES. */ | ||||||||||||||||
1668 | unsigned num_speculative_call_targets : 16; | ||||||||||||||||
1669 | |||||||||||||||||
1670 | /* Set when the call is a virtual call with the parameter being the | ||||||||||||||||
1671 | associated object pointer rather than a simple direct call. */ | ||||||||||||||||
1672 | unsigned polymorphic : 1; | ||||||||||||||||
1673 | /* Set when the call is a call of a pointer loaded from contents of an | ||||||||||||||||
1674 | aggregate at offset. */ | ||||||||||||||||
1675 | unsigned agg_contents : 1; | ||||||||||||||||
1676 | /* Set when this is a call through a member pointer. */ | ||||||||||||||||
1677 | unsigned member_ptr : 1; | ||||||||||||||||
1678 | /* When the agg_contents bit is set, this one determines whether the | ||||||||||||||||
1679 | destination is loaded from a parameter passed by reference. */ | ||||||||||||||||
1680 | unsigned by_ref : 1; | ||||||||||||||||
1681 | /* When the agg_contents bit is set, this one determines whether we can | ||||||||||||||||
1682 | deduce from the function body that the loaded value from the reference is | ||||||||||||||||
1683 | never modified between the invocation of the function and the load | ||||||||||||||||
1684 | point. */ | ||||||||||||||||
1685 | unsigned guaranteed_unmodified : 1; | ||||||||||||||||
1686 | /* For polymorphic calls this specify whether the virtual table pointer | ||||||||||||||||
1687 | may have changed in between function entry and the call. */ | ||||||||||||||||
1688 | unsigned vptr_changed : 1; | ||||||||||||||||
1689 | }; | ||||||||||||||||
1690 | |||||||||||||||||
1691 | class GTY((chain_next ("%h.next_caller"), chain_prev ("%h.prev_caller"), | ||||||||||||||||
1692 | for_user)) cgraph_edge | ||||||||||||||||
1693 | { | ||||||||||||||||
1694 | public: | ||||||||||||||||
1695 | friend struct cgraph_node; | ||||||||||||||||
1696 | friend class symbol_table; | ||||||||||||||||
1697 | |||||||||||||||||
1698 | /* Remove EDGE from the cgraph. */ | ||||||||||||||||
1699 | static void remove (cgraph_edge *edge); | ||||||||||||||||
1700 | |||||||||||||||||
1701 | /* Change field call_stmt of edge E to NEW_STMT. If UPDATE_SPECULATIVE and E | ||||||||||||||||
1702 | is any component of speculative edge, then update all components. | ||||||||||||||||
1703 | Speculations can be resolved in the process and EDGE can be removed and | ||||||||||||||||
1704 | deallocated. Return the edge that now represents the call. */ | ||||||||||||||||
1705 | static cgraph_edge *set_call_stmt (cgraph_edge *e, gcall *new_stmt, | ||||||||||||||||
1706 | bool update_speculative = true); | ||||||||||||||||
1707 | |||||||||||||||||
1708 | /* Redirect callee of the edge to N. The function does not update underlying | ||||||||||||||||
1709 | call expression. */ | ||||||||||||||||
1710 | void redirect_callee (cgraph_node *n); | ||||||||||||||||
1711 | |||||||||||||||||
1712 | /* If the edge does not lead to a thunk, simply redirect it to N. Otherwise | ||||||||||||||||
1713 | create one or more equivalent thunks for N and redirect E to the first in | ||||||||||||||||
1714 | the chain. Note that it is then necessary to call | ||||||||||||||||
1715 | n->expand_all_artificial_thunks once all callers are redirected. */ | ||||||||||||||||
1716 | void redirect_callee_duplicating_thunks (cgraph_node *n); | ||||||||||||||||
1717 | |||||||||||||||||
1718 | /* Make an indirect edge with an unknown callee an ordinary edge leading to | ||||||||||||||||
1719 | CALLEE. Speculations can be resolved in the process and EDGE can be | ||||||||||||||||
1720 | removed and deallocated. Return the edge that now represents the | ||||||||||||||||
1721 | call. */ | ||||||||||||||||
1722 | static cgraph_edge *make_direct (cgraph_edge *edge, cgraph_node *callee); | ||||||||||||||||
1723 | |||||||||||||||||
1724 | /* Turn edge into speculative call calling N2. Update | ||||||||||||||||
1725 | the profile so the direct call is taken COUNT times | ||||||||||||||||
1726 | with FREQUENCY. speculative_id is used to link direct calls with their | ||||||||||||||||
1727 | corresponding IPA_REF_ADDR references when representing speculative calls. | ||||||||||||||||
1728 | */ | ||||||||||||||||
1729 | cgraph_edge *make_speculative (cgraph_node *n2, profile_count direct_count, | ||||||||||||||||
1730 | unsigned int speculative_id = 0); | ||||||||||||||||
1731 | |||||||||||||||||
1732 | /* Speculative call consists of an indirect edge and one or more | ||||||||||||||||
1733 | direct edge+ref pairs. Speculative will expand to the following sequence: | ||||||||||||||||
1734 | |||||||||||||||||
1735 | if (call_dest == target1) // reference to target1 | ||||||||||||||||
1736 | target1 (); // direct call to target1 | ||||||||||||||||
1737 | else if (call_dest == target2) // reference to targt2 | ||||||||||||||||
1738 | target2 (); // direct call to target2 | ||||||||||||||||
1739 | else | ||||||||||||||||
1740 | call_dest (); // indirect call | ||||||||||||||||
1741 | |||||||||||||||||
1742 | Before the expansion we will have indirect call and the direct call+ref | ||||||||||||||||
1743 | pairs all linked to single statement. | ||||||||||||||||
1744 | |||||||||||||||||
1745 | Note that ref may point to different symbol than the corresponding call | ||||||||||||||||
1746 | becuase the speculated edge may have been optimized (redirected to | ||||||||||||||||
1747 | a clone) or inlined. | ||||||||||||||||
1748 | |||||||||||||||||
1749 | Given an edge which is part of speculative call, return the first | ||||||||||||||||
1750 | direct call edge in the speculative call sequence. | ||||||||||||||||
1751 | |||||||||||||||||
1752 | In the example above called on any cgraph edge in the sequence it will | ||||||||||||||||
1753 | return direct call to target1. */ | ||||||||||||||||
1754 | cgraph_edge *first_speculative_call_target (); | ||||||||||||||||
1755 | |||||||||||||||||
1756 | /* Return next speculative call target or NULL if there is none. | ||||||||||||||||
1757 | All targets are required to form an interval in the callee list. | ||||||||||||||||
1758 | |||||||||||||||||
1759 | In example above, if called on call to target1 it will return call to | ||||||||||||||||
1760 | target2. */ | ||||||||||||||||
1761 | cgraph_edge *next_speculative_call_target () | ||||||||||||||||
1762 | { | ||||||||||||||||
1763 | cgraph_edge *e = this; | ||||||||||||||||
1764 | gcc_checking_assert (speculative && callee)((void)(!(speculative && callee) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 1764, __FUNCTION__), 0 : 0)); | ||||||||||||||||
1765 | |||||||||||||||||
1766 | if (e->next_callee && e->next_callee->speculative | ||||||||||||||||
1767 | && e->next_callee->call_stmt == e->call_stmt | ||||||||||||||||
1768 | && e->next_callee->lto_stmt_uid == e->lto_stmt_uid) | ||||||||||||||||
1769 | return e->next_callee; | ||||||||||||||||
1770 | return NULLnullptr; | ||||||||||||||||
1771 | } | ||||||||||||||||
1772 | |||||||||||||||||
1773 | /* When called on any edge in the speculative call return the (unique) | ||||||||||||||||
1774 | indirect call edge in the speculative call sequence. */ | ||||||||||||||||
1775 | cgraph_edge *speculative_call_indirect_edge () | ||||||||||||||||
1776 | { | ||||||||||||||||
1777 | gcc_checking_assert (speculative)((void)(!(speculative) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 1777, __FUNCTION__), 0 : 0)); | ||||||||||||||||
1778 | if (!callee) | ||||||||||||||||
1779 | return this; | ||||||||||||||||
1780 | for (cgraph_edge *e2 = caller->indirect_calls; | ||||||||||||||||
1781 | true; e2 = e2->next_callee) | ||||||||||||||||
1782 | if (e2->speculative | ||||||||||||||||
1783 | && call_stmt == e2->call_stmt | ||||||||||||||||
1784 | && lto_stmt_uid == e2->lto_stmt_uid) | ||||||||||||||||
1785 | return e2; | ||||||||||||||||
1786 | } | ||||||||||||||||
1787 | |||||||||||||||||
1788 | /* When called on any edge in speculative call and when given any target | ||||||||||||||||
1789 | of ref which is speculated to it returns the corresponding direct call. | ||||||||||||||||
1790 | |||||||||||||||||
1791 | In example above if called on function target2 it will return call to | ||||||||||||||||
1792 | target2. */ | ||||||||||||||||
1793 | cgraph_edge *speculative_call_for_target (cgraph_node *); | ||||||||||||||||
1794 | |||||||||||||||||
1795 | /* Return REF corresponding to direct call in the specualtive call | ||||||||||||||||
1796 | sequence. */ | ||||||||||||||||
1797 | ipa_ref *speculative_call_target_ref () | ||||||||||||||||
1798 | { | ||||||||||||||||
1799 | ipa_ref *ref; | ||||||||||||||||
1800 | |||||||||||||||||
1801 | gcc_checking_assert (speculative)((void)(!(speculative) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 1801, __FUNCTION__), 0 : 0)); | ||||||||||||||||
1802 | for (unsigned int i = 0; caller->iterate_reference (i, ref); i++) | ||||||||||||||||
1803 | if (ref->speculative && ref->speculative_id == speculative_id | ||||||||||||||||
1804 | && ref->stmt == (gimple *)call_stmt | ||||||||||||||||
1805 | && ref->lto_stmt_uid == lto_stmt_uid) | ||||||||||||||||
1806 | return ref; | ||||||||||||||||
1807 | gcc_unreachable ()(fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 1807, __FUNCTION__)); | ||||||||||||||||
1808 | } | ||||||||||||||||
1809 | |||||||||||||||||
1810 | /* Speculative call edge turned out to be direct call to CALLEE_DECL. Remove | ||||||||||||||||
1811 | the speculative call sequence and return edge representing the call, the | ||||||||||||||||
1812 | original EDGE can be removed and deallocated. It is up to caller to | ||||||||||||||||
1813 | redirect the call as appropriate. Return the edge that now represents the | ||||||||||||||||
1814 | call. | ||||||||||||||||
1815 | |||||||||||||||||
1816 | For "speculative" indirect call that contains multiple "speculative" | ||||||||||||||||
1817 | targets (i.e. edge->indirect_info->num_speculative_call_targets > 1), | ||||||||||||||||
1818 | decrease the count and only remove current direct edge. | ||||||||||||||||
1819 | |||||||||||||||||
1820 | If no speculative direct call left to the speculative indirect call, remove | ||||||||||||||||
1821 | the speculative of both the indirect call and corresponding direct edge. | ||||||||||||||||
1822 | |||||||||||||||||
1823 | It is up to caller to iteratively resolve each "speculative" direct call | ||||||||||||||||
1824 | and redirect the call as appropriate. */ | ||||||||||||||||
1825 | static cgraph_edge *resolve_speculation (cgraph_edge *edge, | ||||||||||||||||
1826 | tree callee_decl = NULLnullptr); | ||||||||||||||||
1827 | |||||||||||||||||
1828 | /* If necessary, change the function declaration in the call statement | ||||||||||||||||
1829 | associated with edge E so that it corresponds to the edge callee. | ||||||||||||||||
1830 | Speculations can be resolved in the process and EDGE can be removed and | ||||||||||||||||
1831 | deallocated. | ||||||||||||||||
1832 | |||||||||||||||||
1833 | The edge could be one of speculative direct call generated from speculative | ||||||||||||||||
1834 | indirect call. In this circumstance, decrease the speculative targets | ||||||||||||||||
1835 | count (i.e. num_speculative_call_targets) and redirect call stmt to the | ||||||||||||||||
1836 | corresponding i-th target. If no speculative direct call left to the | ||||||||||||||||
1837 | speculative indirect call, remove "speculative" of the indirect call and | ||||||||||||||||
1838 | also redirect stmt to it's final direct target. | ||||||||||||||||
1839 | |||||||||||||||||
1840 | It is up to caller to iteratively transform each "speculative" | ||||||||||||||||
1841 | direct call as appropriate. */ | ||||||||||||||||
1842 | static gimple *redirect_call_stmt_to_callee (cgraph_edge *e); | ||||||||||||||||
1843 | |||||||||||||||||
1844 | /* Create clone of edge in the node N represented | ||||||||||||||||
1845 | by CALL_EXPR the callgraph. */ | ||||||||||||||||
1846 | cgraph_edge * clone (cgraph_node *n, gcall *call_stmt, unsigned stmt_uid, | ||||||||||||||||
1847 | profile_count num, profile_count den, | ||||||||||||||||
1848 | bool update_original); | ||||||||||||||||
1849 | |||||||||||||||||
1850 | /* Verify edge count and frequency. */ | ||||||||||||||||
1851 | bool verify_count (); | ||||||||||||||||
1852 | |||||||||||||||||
1853 | /* Return true when call of edge cannot lead to return from caller | ||||||||||||||||
1854 | and thus it is safe to ignore its side effects for IPA analysis | ||||||||||||||||
1855 | when computing side effects of the caller. */ | ||||||||||||||||
1856 | bool cannot_lead_to_return_p (void); | ||||||||||||||||
1857 | |||||||||||||||||
1858 | /* Return true when the edge represents a direct recursion. */ | ||||||||||||||||
1859 | bool recursive_p (void); | ||||||||||||||||
1860 | |||||||||||||||||
1861 | /* Return true if the edge may be considered hot. */ | ||||||||||||||||
1862 | bool maybe_hot_p (void); | ||||||||||||||||
1863 | |||||||||||||||||
1864 | /* Get unique identifier of the edge. */ | ||||||||||||||||
1865 | inline int get_uid () | ||||||||||||||||
1866 | { | ||||||||||||||||
1867 | return m_uid; | ||||||||||||||||
1868 | } | ||||||||||||||||
1869 | |||||||||||||||||
1870 | /* Get summary id of the edge. */ | ||||||||||||||||
1871 | inline int get_summary_id () | ||||||||||||||||
1872 | { | ||||||||||||||||
1873 | return m_summary_id; | ||||||||||||||||
1874 | } | ||||||||||||||||
1875 | |||||||||||||||||
1876 | /* Rebuild cgraph edges for current function node. This needs to be run after | ||||||||||||||||
1877 | passes that don't update the cgraph. */ | ||||||||||||||||
1878 | static unsigned int rebuild_edges (void); | ||||||||||||||||
1879 | |||||||||||||||||
1880 | /* Rebuild cgraph references for current function node. This needs to be run | ||||||||||||||||
1881 | after passes that don't update the cgraph. */ | ||||||||||||||||
1882 | static void rebuild_references (void); | ||||||||||||||||
1883 | |||||||||||||||||
1884 | /* During LTO stream in this can be used to check whether call can possibly | ||||||||||||||||
1885 | be internal to the current translation unit. */ | ||||||||||||||||
1886 | bool possibly_call_in_translation_unit_p (void); | ||||||||||||||||
1887 | |||||||||||||||||
1888 | /* Return num_speculative_targets of this edge. */ | ||||||||||||||||
1889 | int num_speculative_call_targets_p (void); | ||||||||||||||||
1890 | |||||||||||||||||
1891 | /* Expected number of executions: calculated in profile.cc. */ | ||||||||||||||||
1892 | profile_count count; | ||||||||||||||||
1893 | cgraph_node *caller; | ||||||||||||||||
1894 | cgraph_node *callee; | ||||||||||||||||
1895 | cgraph_edge *prev_caller; | ||||||||||||||||
1896 | cgraph_edge *next_caller; | ||||||||||||||||
1897 | cgraph_edge *prev_callee; | ||||||||||||||||
1898 | cgraph_edge *next_callee; | ||||||||||||||||
1899 | gcall *call_stmt; | ||||||||||||||||
1900 | /* Additional information about an indirect call. Not cleared when an edge | ||||||||||||||||
1901 | becomes direct. */ | ||||||||||||||||
1902 | cgraph_indirect_call_info *indirect_info; | ||||||||||||||||
1903 | void *GTY ((skip (""))) aux; | ||||||||||||||||
1904 | /* When equal to CIF_OK, inline this call. Otherwise, points to the | ||||||||||||||||
1905 | explanation why function was not inlined. */ | ||||||||||||||||
1906 | enum cgraph_inline_failed_t inline_failed; | ||||||||||||||||
1907 | /* The stmt_uid of call_stmt. This is used by LTO to recover the call_stmt | ||||||||||||||||
1908 | when the function is serialized in. */ | ||||||||||||||||
1909 | unsigned int lto_stmt_uid; | ||||||||||||||||
1910 | /* speculative id is used to link direct calls with their corresponding | ||||||||||||||||
1911 | IPA_REF_ADDR references when representing speculative calls. */ | ||||||||||||||||
1912 | unsigned int speculative_id : 16; | ||||||||||||||||
1913 | /* Whether this edge was made direct by indirect inlining. */ | ||||||||||||||||
1914 | unsigned int indirect_inlining_edge : 1; | ||||||||||||||||
1915 | /* Whether this edge describes an indirect call with an undetermined | ||||||||||||||||
1916 | callee. */ | ||||||||||||||||
1917 | unsigned int indirect_unknown_callee : 1; | ||||||||||||||||
1918 | /* Whether this edge is still a dangling */ | ||||||||||||||||
1919 | /* True if the corresponding CALL stmt cannot be inlined. */ | ||||||||||||||||
1920 | unsigned int call_stmt_cannot_inline_p : 1; | ||||||||||||||||
1921 | /* Can this call throw externally? */ | ||||||||||||||||
1922 | unsigned int can_throw_external : 1; | ||||||||||||||||
1923 | /* Edges with SPECULATIVE flag represents indirect calls that was | ||||||||||||||||
1924 | speculatively turned into direct (i.e. by profile feedback). | ||||||||||||||||
1925 | The final code sequence will have form: | ||||||||||||||||
1926 | |||||||||||||||||
1927 | if (call_target == expected_fn) | ||||||||||||||||
1928 | expected_fn (); | ||||||||||||||||
1929 | else | ||||||||||||||||
1930 | call_target (); | ||||||||||||||||
1931 | |||||||||||||||||
1932 | Every speculative call is represented by three components attached | ||||||||||||||||
1933 | to a same call statement: | ||||||||||||||||
1934 | 1) a direct call (to expected_fn) | ||||||||||||||||
1935 | 2) an indirect call (to call_target) | ||||||||||||||||
1936 | 3) a IPA_REF_ADDR reference to expected_fn. | ||||||||||||||||
1937 | |||||||||||||||||
1938 | Optimizers may later redirect direct call to clone, so 1) and 3) | ||||||||||||||||
1939 | do not need to necessarily agree with destination. */ | ||||||||||||||||
1940 | unsigned int speculative : 1; | ||||||||||||||||
1941 | /* Set to true when caller is a constructor or destructor of polymorphic | ||||||||||||||||
1942 | type. */ | ||||||||||||||||
1943 | unsigned in_polymorphic_cdtor : 1; | ||||||||||||||||
1944 | |||||||||||||||||
1945 | /* Return true if call must bind to current definition. */ | ||||||||||||||||
1946 | bool binds_to_current_def_p (); | ||||||||||||||||
1947 | |||||||||||||||||
1948 | /* Expected frequency of executions within the function. | ||||||||||||||||
1949 | When set to CGRAPH_FREQ_BASE, the edge is expected to be called once | ||||||||||||||||
1950 | per function call. The range is 0 to CGRAPH_FREQ_MAX. */ | ||||||||||||||||
1951 | int frequency (); | ||||||||||||||||
1952 | |||||||||||||||||
1953 | /* Expected frequency of executions within the function. */ | ||||||||||||||||
1954 | sreal sreal_frequency (); | ||||||||||||||||
1955 | private: | ||||||||||||||||
1956 | /* Unique id of the edge. */ | ||||||||||||||||
1957 | int m_uid; | ||||||||||||||||
1958 | |||||||||||||||||
1959 | /* Summary id that is recycled. */ | ||||||||||||||||
1960 | int m_summary_id; | ||||||||||||||||
1961 | |||||||||||||||||
1962 | /* Remove the edge from the list of the callers of the callee. */ | ||||||||||||||||
1963 | void remove_caller (void); | ||||||||||||||||
1964 | |||||||||||||||||
1965 | /* Remove the edge from the list of the callees of the caller. */ | ||||||||||||||||
1966 | void remove_callee (void); | ||||||||||||||||
1967 | |||||||||||||||||
1968 | /* Set callee N of call graph edge and add it to the corresponding set of | ||||||||||||||||
1969 | callers. */ | ||||||||||||||||
1970 | void set_callee (cgraph_node *n); | ||||||||||||||||
1971 | |||||||||||||||||
1972 | /* Output flags of edge to a file F. */ | ||||||||||||||||
1973 | void dump_edge_flags (FILE *f); | ||||||||||||||||
1974 | |||||||||||||||||
1975 | /* Dump edge to stderr. */ | ||||||||||||||||
1976 | void DEBUG_FUNCTION__attribute__ ((__used__)) debug (void); | ||||||||||||||||
1977 | |||||||||||||||||
1978 | /* Verify that call graph edge corresponds to DECL from the associated | ||||||||||||||||
1979 | statement. Return true if the verification should fail. */ | ||||||||||||||||
1980 | bool verify_corresponds_to_fndecl (tree decl); | ||||||||||||||||
1981 | }; | ||||||||||||||||
1982 | |||||||||||||||||
1983 | #define CGRAPH_FREQ_BASE1000 1000 | ||||||||||||||||
1984 | #define CGRAPH_FREQ_MAX100000 100000 | ||||||||||||||||
1985 | |||||||||||||||||
1986 | /* The varpool data structure. | ||||||||||||||||
1987 | Each static variable decl has assigned varpool_node. */ | ||||||||||||||||
1988 | |||||||||||||||||
1989 | struct GTY((tag ("SYMTAB_VARIABLE"))) varpool_node : public symtab_node | ||||||||||||||||
1990 | { | ||||||||||||||||
1991 | /* Constructor. */ | ||||||||||||||||
1992 | explicit varpool_node () | ||||||||||||||||
1993 | : symtab_node (SYMTAB_VARIABLE), output (0), dynamically_initialized (0), | ||||||||||||||||
1994 | tls_model (TLS_MODEL_NONE), used_by_single_function (0) | ||||||||||||||||
1995 | {} | ||||||||||||||||
1996 | |||||||||||||||||
1997 | /* Dump given varpool node to F. */ | ||||||||||||||||
1998 | void dump (FILE *f); | ||||||||||||||||
1999 | |||||||||||||||||
2000 | /* Dump given varpool node to stderr. */ | ||||||||||||||||
2001 | void DEBUG_FUNCTION__attribute__ ((__used__)) debug (void); | ||||||||||||||||
2002 | |||||||||||||||||
2003 | /* Remove variable from symbol table. */ | ||||||||||||||||
2004 | void remove (void); | ||||||||||||||||
2005 | |||||||||||||||||
2006 | /* Remove node initializer when it is no longer needed. */ | ||||||||||||||||
2007 | void remove_initializer (void); | ||||||||||||||||
2008 | |||||||||||||||||
2009 | void analyze (void); | ||||||||||||||||
2010 | |||||||||||||||||
2011 | /* Return variable availability. */ | ||||||||||||||||
2012 | availability get_availability (symtab_node *ref = NULLnullptr); | ||||||||||||||||
2013 | |||||||||||||||||
2014 | /* When doing LTO, read variable's constructor from disk if | ||||||||||||||||
2015 | it is not already present. */ | ||||||||||||||||
2016 | tree get_constructor (void); | ||||||||||||||||
2017 | |||||||||||||||||
2018 | /* Return true if variable has constructor that can be used for folding. */ | ||||||||||||||||
2019 | bool ctor_useable_for_folding_p (void); | ||||||||||||||||
2020 | |||||||||||||||||
2021 | /* For given variable pool node, walk the alias chain to return the function | ||||||||||||||||
2022 | the variable is alias of. Do not walk through thunks. | ||||||||||||||||
2023 | When AVAILABILITY is non-NULL, get minimal availability in the chain. | ||||||||||||||||
2024 | When REF is non-NULL, assume that reference happens in symbol REF | ||||||||||||||||
2025 | when determining the availability. */ | ||||||||||||||||
2026 | inline varpool_node *ultimate_alias_target | ||||||||||||||||
2027 | (availability *availability = NULLnullptr, symtab_node *ref = NULLnullptr); | ||||||||||||||||
2028 | |||||||||||||||||
2029 | /* Return node that alias is aliasing. */ | ||||||||||||||||
2030 | inline varpool_node *get_alias_target (void); | ||||||||||||||||
2031 | |||||||||||||||||
2032 | /* Output one variable, if necessary. Return whether we output it. */ | ||||||||||||||||
2033 | bool assemble_decl (void); | ||||||||||||||||
2034 | |||||||||||||||||
2035 | /* For variables in named sections make sure get_variable_section | ||||||||||||||||
2036 | is called before we switch to those sections. Then section | ||||||||||||||||
2037 | conflicts between read-only and read-only requiring relocations | ||||||||||||||||
2038 | sections can be resolved. */ | ||||||||||||||||
2039 | void finalize_named_section_flags (void); | ||||||||||||||||
2040 | |||||||||||||||||
2041 | /* Call callback on varpool symbol and aliases associated to varpool symbol. | ||||||||||||||||
2042 | When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are | ||||||||||||||||
2043 | skipped. */ | ||||||||||||||||
2044 | bool call_for_symbol_and_aliases (bool (*callback) (varpool_node *, void *), | ||||||||||||||||
2045 | void *data, | ||||||||||||||||
2046 | bool include_overwritable); | ||||||||||||||||
2047 | |||||||||||||||||
2048 | /* Return true when variable should be considered externally visible. */ | ||||||||||||||||
2049 | bool externally_visible_p (void); | ||||||||||||||||
2050 | |||||||||||||||||
2051 | /* Return true when all references to variable must be visible | ||||||||||||||||
2052 | in ipa_ref_list. | ||||||||||||||||
2053 | i.e. if the variable is not externally visible or not used in some magic | ||||||||||||||||
2054 | way (asm statement or such). | ||||||||||||||||
2055 | The magic uses are all summarized in force_output flag. */ | ||||||||||||||||
2056 | inline bool all_refs_explicit_p (); | ||||||||||||||||
2057 | |||||||||||||||||
2058 | /* Return true when variable can be removed from variable pool | ||||||||||||||||
2059 | if all direct calls are eliminated. */ | ||||||||||||||||
2060 | inline bool can_remove_if_no_refs_p (void); | ||||||||||||||||
2061 | |||||||||||||||||
2062 | /* Add the variable DECL to the varpool. | ||||||||||||||||
2063 | Unlike finalize_decl function is intended to be used | ||||||||||||||||
2064 | by middle end and allows insertion of new variable at arbitrary point | ||||||||||||||||
2065 | of compilation. */ | ||||||||||||||||
2066 | static void add (tree decl); | ||||||||||||||||
2067 | |||||||||||||||||
2068 | /* Return varpool node for given symbol and check it is a function. */ | ||||||||||||||||
2069 | static inline varpool_node *get (const_tree decl); | ||||||||||||||||
2070 | |||||||||||||||||
2071 | /* Mark DECL as finalized. By finalizing the declaration, frontend instruct | ||||||||||||||||
2072 | the middle end to output the variable to asm file, if needed or externally | ||||||||||||||||
2073 | visible. */ | ||||||||||||||||
2074 | static void finalize_decl (tree decl); | ||||||||||||||||
2075 | |||||||||||||||||
2076 | /* Attempt to mark ALIAS as an alias to DECL. Return TRUE if successful. | ||||||||||||||||
2077 | Extra name aliases are output whenever DECL is output. */ | ||||||||||||||||
2078 | static varpool_node * create_extra_name_alias (tree alias, tree decl); | ||||||||||||||||
2079 | |||||||||||||||||
2080 | /* Attempt to mark ALIAS as an alias to DECL. Return TRUE if successful. | ||||||||||||||||
2081 | Extra name aliases are output whenever DECL is output. */ | ||||||||||||||||
2082 | static varpool_node * create_alias (tree, tree); | ||||||||||||||||
2083 | |||||||||||||||||
2084 | /* Dump the variable pool to F. */ | ||||||||||||||||
2085 | static void dump_varpool (FILE *f); | ||||||||||||||||
2086 | |||||||||||||||||
2087 | /* Dump the variable pool to stderr. */ | ||||||||||||||||
2088 | static void DEBUG_FUNCTION__attribute__ ((__used__)) debug_varpool (void); | ||||||||||||||||
2089 | |||||||||||||||||
2090 | /* Allocate new callgraph node and insert it into basic data structures. */ | ||||||||||||||||
2091 | static varpool_node *create_empty (void); | ||||||||||||||||
2092 | |||||||||||||||||
2093 | /* Return varpool node assigned to DECL. Create new one when needed. */ | ||||||||||||||||
2094 | static varpool_node *get_create (tree decl); | ||||||||||||||||
2095 | |||||||||||||||||
2096 | /* Given an assembler name, lookup node. */ | ||||||||||||||||
2097 | static varpool_node *get_for_asmname (tree asmname); | ||||||||||||||||
2098 | |||||||||||||||||
2099 | /* Set when variable is scheduled to be assembled. */ | ||||||||||||||||
2100 | unsigned output : 1; | ||||||||||||||||
2101 | |||||||||||||||||
2102 | /* Set if the variable is dynamically initialized, except for | ||||||||||||||||
2103 | function local statics. */ | ||||||||||||||||
2104 | unsigned dynamically_initialized : 1; | ||||||||||||||||
2105 | |||||||||||||||||
2106 | ENUM_BITFIELD(tls_model)enum tls_model tls_model : 3; | ||||||||||||||||
2107 | |||||||||||||||||
2108 | /* Set if the variable is known to be used by single function only. | ||||||||||||||||
2109 | This is computed by ipa_single_use pass and used by late optimizations | ||||||||||||||||
2110 | in places where optimization would be valid for local static variable | ||||||||||||||||
2111 | if we did not do any inter-procedural code movement. */ | ||||||||||||||||
2112 | unsigned used_by_single_function : 1; | ||||||||||||||||
2113 | |||||||||||||||||
2114 | private: | ||||||||||||||||
2115 | /* Assemble thunks and aliases associated to varpool node. */ | ||||||||||||||||
2116 | void assemble_aliases (void); | ||||||||||||||||
2117 | |||||||||||||||||
2118 | /* Worker for call_for_node_and_aliases. */ | ||||||||||||||||
2119 | bool call_for_symbol_and_aliases_1 (bool (*callback) (varpool_node *, void *), | ||||||||||||||||
2120 | void *data, | ||||||||||||||||
2121 | bool include_overwritable); | ||||||||||||||||
2122 | }; | ||||||||||||||||
2123 | |||||||||||||||||
2124 | /* Every top level asm statement is put into a asm_node. */ | ||||||||||||||||
2125 | |||||||||||||||||
2126 | struct GTY(()) asm_node { | ||||||||||||||||
2127 | /* Next asm node. */ | ||||||||||||||||
2128 | asm_node *next; | ||||||||||||||||
2129 | /* String for this asm node. */ | ||||||||||||||||
2130 | tree asm_str; | ||||||||||||||||
2131 | /* Ordering of all cgraph nodes. */ | ||||||||||||||||
2132 | int order; | ||||||||||||||||
2133 | }; | ||||||||||||||||
2134 | |||||||||||||||||
2135 | /* Report whether or not THIS symtab node is a function, aka cgraph_node. */ | ||||||||||||||||
2136 | |||||||||||||||||
2137 | template <> | ||||||||||||||||
2138 | template <> | ||||||||||||||||
2139 | inline bool | ||||||||||||||||
2140 | is_a_helper <cgraph_node *>::test (symtab_node *p) | ||||||||||||||||
2141 | { | ||||||||||||||||
2142 | return p
| ||||||||||||||||
2143 | } | ||||||||||||||||
2144 | |||||||||||||||||
2145 | /* Report whether or not THIS symtab node is a variable, aka varpool_node. */ | ||||||||||||||||
2146 | |||||||||||||||||
2147 | template <> | ||||||||||||||||
2148 | template <> | ||||||||||||||||
2149 | inline bool | ||||||||||||||||
2150 | is_a_helper <varpool_node *>::test (symtab_node *p) | ||||||||||||||||
2151 | { | ||||||||||||||||
2152 | return p && p->type == SYMTAB_VARIABLE; | ||||||||||||||||
2153 | } | ||||||||||||||||
2154 | |||||||||||||||||
2155 | typedef void (*cgraph_edge_hook)(cgraph_edge *, void *); | ||||||||||||||||
2156 | typedef void (*cgraph_node_hook)(cgraph_node *, void *); | ||||||||||||||||
2157 | typedef void (*varpool_node_hook)(varpool_node *, void *); | ||||||||||||||||
2158 | typedef void (*cgraph_2edge_hook)(cgraph_edge *, cgraph_edge *, void *); | ||||||||||||||||
2159 | typedef void (*cgraph_2node_hook)(cgraph_node *, cgraph_node *, void *); | ||||||||||||||||
2160 | |||||||||||||||||
2161 | struct cgraph_edge_hook_list; | ||||||||||||||||
2162 | struct cgraph_node_hook_list; | ||||||||||||||||
2163 | struct varpool_node_hook_list; | ||||||||||||||||
2164 | struct cgraph_2edge_hook_list; | ||||||||||||||||
2165 | struct cgraph_2node_hook_list; | ||||||||||||||||
2166 | |||||||||||||||||
2167 | /* Map from a symbol to initialization/finalization priorities. */ | ||||||||||||||||
2168 | struct GTY(()) symbol_priority_map { | ||||||||||||||||
2169 | priority_type init; | ||||||||||||||||
2170 | priority_type fini; | ||||||||||||||||
2171 | }; | ||||||||||||||||
2172 | |||||||||||||||||
2173 | enum symtab_state | ||||||||||||||||
2174 | { | ||||||||||||||||
2175 | /* Frontend is parsing and finalizing functions. */ | ||||||||||||||||
2176 | PARSING, | ||||||||||||||||
2177 | /* Callgraph is being constructed. It is safe to add new functions. */ | ||||||||||||||||
2178 | CONSTRUCTION, | ||||||||||||||||
2179 | /* Callgraph is being streamed-in at LTO time. */ | ||||||||||||||||
2180 | LTO_STREAMING, | ||||||||||||||||
2181 | /* Callgraph is built and early IPA passes are being run. */ | ||||||||||||||||
2182 | IPA, | ||||||||||||||||
2183 | /* Callgraph is built and all functions are transformed to SSA form. */ | ||||||||||||||||
2184 | IPA_SSA, | ||||||||||||||||
2185 | /* All inline decisions are done; it is now possible to remove extern inline | ||||||||||||||||
2186 | functions and virtual call targets. */ | ||||||||||||||||
2187 | IPA_SSA_AFTER_INLINING, | ||||||||||||||||
2188 | /* Functions are now ordered and being passed to RTL expanders. */ | ||||||||||||||||
2189 | EXPANSION, | ||||||||||||||||
2190 | /* All cgraph expansion is done. */ | ||||||||||||||||
2191 | FINISHED | ||||||||||||||||
2192 | }; | ||||||||||||||||
2193 | |||||||||||||||||
2194 | struct asmname_hasher : ggc_ptr_hash <symtab_node> | ||||||||||||||||
2195 | { | ||||||||||||||||
2196 | typedef const_tree compare_type; | ||||||||||||||||
2197 | |||||||||||||||||
2198 | static hashval_t hash (symtab_node *n); | ||||||||||||||||
2199 | static bool equal (symtab_node *n, const_tree t); | ||||||||||||||||
2200 | }; | ||||||||||||||||
2201 | |||||||||||||||||
2202 | /* Core summaries maintained about symbols. */ | ||||||||||||||||
2203 | |||||||||||||||||
2204 | struct thunk_info; | ||||||||||||||||
2205 | template <class T> class function_summary; | ||||||||||||||||
2206 | typedef function_summary <thunk_info *> thunk_summary; | ||||||||||||||||
2207 | |||||||||||||||||
2208 | struct clone_info; | ||||||||||||||||
2209 | template <class T> class function_summary; | ||||||||||||||||
2210 | typedef function_summary <clone_info *> clone_summary; | ||||||||||||||||
2211 | |||||||||||||||||
2212 | class GTY((tag ("SYMTAB"))) symbol_table | ||||||||||||||||
2213 | { | ||||||||||||||||
2214 | public: | ||||||||||||||||
2215 | friend struct symtab_node; | ||||||||||||||||
2216 | friend struct cgraph_node; | ||||||||||||||||
2217 | friend struct cgraph_edge; | ||||||||||||||||
2218 | |||||||||||||||||
2219 | symbol_table (): | ||||||||||||||||
2220 | cgraph_count (0), cgraph_max_uid (1), cgraph_max_summary_id (0), | ||||||||||||||||
2221 | edges_count (0), edges_max_uid (1), edges_max_summary_id (0), | ||||||||||||||||
2222 | cgraph_released_summary_ids (), edge_released_summary_ids (), | ||||||||||||||||
2223 | nodes (NULLnullptr), asmnodes (NULLnullptr), asm_last_node (NULLnullptr), | ||||||||||||||||
2224 | order (0), max_unit (0), global_info_ready (false), state (PARSING), | ||||||||||||||||
2225 | function_flags_ready (false), cpp_implicit_aliases_done (false), | ||||||||||||||||
2226 | section_hash (NULLnullptr), assembler_name_hash (NULLnullptr), init_priority_hash (NULLnullptr), | ||||||||||||||||
2227 | dump_file (NULLnullptr), ipa_clones_dump_file (NULLnullptr), cloned_nodes (), | ||||||||||||||||
2228 | m_thunks (NULLnullptr), m_clones (NULLnullptr), | ||||||||||||||||
2229 | m_first_edge_removal_hook (NULLnullptr), m_first_cgraph_removal_hook (NULLnullptr), | ||||||||||||||||
2230 | m_first_edge_duplicated_hook (NULLnullptr), m_first_cgraph_duplicated_hook (NULLnullptr), | ||||||||||||||||
2231 | m_first_cgraph_insertion_hook (NULLnullptr), m_first_varpool_insertion_hook (NULLnullptr), | ||||||||||||||||
2232 | m_first_varpool_removal_hook (NULLnullptr) | ||||||||||||||||
2233 | { | ||||||||||||||||
2234 | } | ||||||||||||||||
2235 | |||||||||||||||||
2236 | /* Initialize callgraph dump file. */ | ||||||||||||||||
2237 | void initialize (void); | ||||||||||||||||
2238 | |||||||||||||||||
2239 | /* Register a top-level asm statement ASM_STR. */ | ||||||||||||||||
2240 | inline asm_node *finalize_toplevel_asm (tree asm_str); | ||||||||||||||||
2241 | |||||||||||||||||
2242 | /* Analyze the whole compilation unit once it is parsed completely. */ | ||||||||||||||||
2243 | void finalize_compilation_unit (void); | ||||||||||||||||
2244 | |||||||||||||||||
2245 | /* C++ frontend produce same body aliases all over the place, even before PCH | ||||||||||||||||
2246 | gets streamed out. It relies on us linking the aliases with their function | ||||||||||||||||
2247 | in order to do the fixups, but ipa-ref is not PCH safe. Consequently we | ||||||||||||||||
2248 | first produce aliases without links, but once C++ FE is sure it won't | ||||||||||||||||
2249 | stream PCH we build the links via this function. */ | ||||||||||||||||
2250 | void process_same_body_aliases (void); | ||||||||||||||||
2251 | |||||||||||||||||
2252 | /* Perform simple optimizations based on callgraph. */ | ||||||||||||||||
2253 | void compile (void); | ||||||||||||||||
2254 | |||||||||||||||||
2255 | /* Process CGRAPH_NEW_FUNCTIONS and perform actions necessary to add these | ||||||||||||||||
2256 | functions into callgraph in a way so they look like ordinary reachable | ||||||||||||||||
2257 | functions inserted into callgraph already at construction time. */ | ||||||||||||||||
2258 | void process_new_functions (void); | ||||||||||||||||
2259 | |||||||||||||||||
2260 | /* Register a symbol NODE. */ | ||||||||||||||||
2261 | inline void register_symbol (symtab_node *node); | ||||||||||||||||
2262 | |||||||||||||||||
2263 | inline void | ||||||||||||||||
2264 | clear_asm_symbols (void) | ||||||||||||||||
2265 | { | ||||||||||||||||
2266 | asmnodes = NULLnullptr; | ||||||||||||||||
2267 | asm_last_node = NULLnullptr; | ||||||||||||||||
2268 | } | ||||||||||||||||
2269 | |||||||||||||||||
2270 | /* Perform reachability analysis and reclaim all unreachable nodes. */ | ||||||||||||||||
2271 | bool remove_unreachable_nodes (FILE *file); | ||||||||||||||||
2272 | |||||||||||||||||
2273 | /* Optimization of function bodies might've rendered some variables as | ||||||||||||||||
2274 | unnecessary so we want to avoid these from being compiled. Re-do | ||||||||||||||||
2275 | reachability starting from variables that are either externally visible | ||||||||||||||||
2276 | or was referred from the asm output routines. */ | ||||||||||||||||
2277 | void remove_unreferenced_decls (void); | ||||||||||||||||
2278 | |||||||||||||||||
2279 | /* Unregister a symbol NODE. */ | ||||||||||||||||
2280 | inline void unregister (symtab_node *node); | ||||||||||||||||
2281 | |||||||||||||||||
2282 | /* Allocate new callgraph node and insert it into basic data structures. */ | ||||||||||||||||
2283 | cgraph_node *create_empty (void); | ||||||||||||||||
2284 | |||||||||||||||||
2285 | /* Release a callgraph NODE. */ | ||||||||||||||||
2286 | void release_symbol (cgraph_node *node); | ||||||||||||||||
2287 | |||||||||||||||||
2288 | /* Output all variables enqueued to be assembled. */ | ||||||||||||||||
2289 | bool output_variables (void); | ||||||||||||||||
2290 | |||||||||||||||||
2291 | /* Weakrefs may be associated to external decls and thus not output | ||||||||||||||||
2292 | at expansion time. Emit all necessary aliases. */ | ||||||||||||||||
2293 | void output_weakrefs (void); | ||||||||||||||||
2294 | |||||||||||||||||
2295 | /* Return first static symbol with definition. */ | ||||||||||||||||
2296 | inline symtab_node *first_symbol (void); | ||||||||||||||||
2297 | |||||||||||||||||
2298 | /* Return first assembler symbol. */ | ||||||||||||||||
2299 | inline asm_node * | ||||||||||||||||
2300 | first_asm_symbol (void) | ||||||||||||||||
2301 | { | ||||||||||||||||
2302 | return asmnodes; | ||||||||||||||||
2303 | } | ||||||||||||||||
2304 | |||||||||||||||||
2305 | /* Return first static symbol with definition. */ | ||||||||||||||||
2306 | inline symtab_node *first_defined_symbol (void); | ||||||||||||||||
2307 | |||||||||||||||||
2308 | /* Return first variable. */ | ||||||||||||||||
2309 | inline varpool_node *first_variable (void); | ||||||||||||||||
2310 | |||||||||||||||||
2311 | /* Return next variable after NODE. */ | ||||||||||||||||
2312 | inline varpool_node *next_variable (varpool_node *node); | ||||||||||||||||
2313 | |||||||||||||||||
2314 | /* Return first static variable with initializer. */ | ||||||||||||||||
2315 | inline varpool_node *first_static_initializer (void); | ||||||||||||||||
2316 | |||||||||||||||||
2317 | /* Return next static variable with initializer after NODE. */ | ||||||||||||||||
2318 | inline varpool_node *next_static_initializer (varpool_node *node); | ||||||||||||||||
2319 | |||||||||||||||||
2320 | /* Return first static variable with definition. */ | ||||||||||||||||
2321 | inline varpool_node *first_defined_variable (void); | ||||||||||||||||
2322 | |||||||||||||||||
2323 | /* Return next static variable with definition after NODE. */ | ||||||||||||||||
2324 | inline varpool_node *next_defined_variable (varpool_node *node); | ||||||||||||||||
2325 | |||||||||||||||||
2326 | /* Return first function with body defined. */ | ||||||||||||||||
2327 | inline cgraph_node *first_defined_function (void); | ||||||||||||||||
2328 | |||||||||||||||||
2329 | /* Return next function with body defined after NODE. */ | ||||||||||||||||
2330 | inline cgraph_node *next_defined_function (cgraph_node *node); | ||||||||||||||||
2331 | |||||||||||||||||
2332 | /* Return first function. */ | ||||||||||||||||
2333 | inline cgraph_node *first_function (void); | ||||||||||||||||
2334 | |||||||||||||||||
2335 | /* Return next function. */ | ||||||||||||||||
2336 | inline cgraph_node *next_function (cgraph_node *node); | ||||||||||||||||
2337 | |||||||||||||||||
2338 | /* Return first function with body defined. */ | ||||||||||||||||
2339 | cgraph_node *first_function_with_gimple_body (void); | ||||||||||||||||
2340 | |||||||||||||||||
2341 | /* Return next reachable static variable with initializer after NODE. */ | ||||||||||||||||
2342 | inline cgraph_node *next_function_with_gimple_body (cgraph_node *node); | ||||||||||||||||
2343 | |||||||||||||||||
2344 | /* Register HOOK to be called with DATA on each removed edge. */ | ||||||||||||||||
2345 | cgraph_edge_hook_list *add_edge_removal_hook (cgraph_edge_hook hook, | ||||||||||||||||
2346 | void *data); | ||||||||||||||||
2347 | |||||||||||||||||
2348 | /* Remove ENTRY from the list of hooks called on removing edges. */ | ||||||||||||||||
2349 | void remove_edge_removal_hook (cgraph_edge_hook_list *entry); | ||||||||||||||||
2350 | |||||||||||||||||
2351 | /* Register HOOK to be called with DATA on each removed node. */ | ||||||||||||||||
2352 | cgraph_node_hook_list *add_cgraph_removal_hook (cgraph_node_hook hook, | ||||||||||||||||
2353 | void *data); | ||||||||||||||||
2354 | |||||||||||||||||
2355 | /* Remove ENTRY from the list of hooks called on removing nodes. */ | ||||||||||||||||
2356 | void remove_cgraph_removal_hook (cgraph_node_hook_list *entry); | ||||||||||||||||
2357 | |||||||||||||||||
2358 | /* Register HOOK to be called with DATA on each removed node. */ | ||||||||||||||||
2359 | varpool_node_hook_list *add_varpool_removal_hook (varpool_node_hook hook, | ||||||||||||||||
2360 | void *data); | ||||||||||||||||
2361 | |||||||||||||||||
2362 | /* Remove ENTRY from the list of hooks called on removing nodes. */ | ||||||||||||||||
2363 | void remove_varpool_removal_hook (varpool_node_hook_list *entry); | ||||||||||||||||
2364 | |||||||||||||||||
2365 | /* Register HOOK to be called with DATA on each inserted node. */ | ||||||||||||||||
2366 | cgraph_node_hook_list *add_cgraph_insertion_hook (cgraph_node_hook hook, | ||||||||||||||||
2367 | void *data); | ||||||||||||||||
2368 | |||||||||||||||||
2369 | /* Remove ENTRY from the list of hooks called on inserted nodes. */ | ||||||||||||||||
2370 | void remove_cgraph_insertion_hook (cgraph_node_hook_list *entry); | ||||||||||||||||
2371 | |||||||||||||||||
2372 | /* Register HOOK to be called with DATA on each inserted node. */ | ||||||||||||||||
2373 | varpool_node_hook_list *add_varpool_insertion_hook (varpool_node_hook hook, | ||||||||||||||||
2374 | void *data); | ||||||||||||||||
2375 | |||||||||||||||||
2376 | /* Remove ENTRY from the list of hooks called on inserted nodes. */ | ||||||||||||||||
2377 | void remove_varpool_insertion_hook (varpool_node_hook_list *entry); | ||||||||||||||||
2378 | |||||||||||||||||
2379 | /* Register HOOK to be called with DATA on each duplicated edge. */ | ||||||||||||||||
2380 | cgraph_2edge_hook_list *add_edge_duplication_hook (cgraph_2edge_hook hook, | ||||||||||||||||
2381 | void *data); | ||||||||||||||||
2382 | /* Remove ENTRY from the list of hooks called on duplicating edges. */ | ||||||||||||||||
2383 | void remove_edge_duplication_hook (cgraph_2edge_hook_list *entry); | ||||||||||||||||
2384 | |||||||||||||||||
2385 | /* Register HOOK to be called with DATA on each duplicated node. */ | ||||||||||||||||
2386 | cgraph_2node_hook_list *add_cgraph_duplication_hook (cgraph_2node_hook hook, | ||||||||||||||||
2387 | void *data); | ||||||||||||||||
2388 | |||||||||||||||||
2389 | /* Remove ENTRY from the list of hooks called on duplicating nodes. */ | ||||||||||||||||
2390 | void remove_cgraph_duplication_hook (cgraph_2node_hook_list *entry); | ||||||||||||||||
2391 | |||||||||||||||||
2392 | /* Call all edge removal hooks. */ | ||||||||||||||||
2393 | void call_edge_removal_hooks (cgraph_edge *e); | ||||||||||||||||
2394 | |||||||||||||||||
2395 | /* Call all node insertion hooks. */ | ||||||||||||||||
2396 | void call_cgraph_insertion_hooks (cgraph_node *node); | ||||||||||||||||
2397 | |||||||||||||||||
2398 | /* Call all node removal hooks. */ | ||||||||||||||||
2399 | void call_cgraph_removal_hooks (cgraph_node *node); | ||||||||||||||||
2400 | |||||||||||||||||
2401 | /* Call all node duplication hooks. */ | ||||||||||||||||
2402 | void call_cgraph_duplication_hooks (cgraph_node *node, cgraph_node *node2); | ||||||||||||||||
2403 | |||||||||||||||||
2404 | /* Call all edge duplication hooks. */ | ||||||||||||||||
2405 | void call_edge_duplication_hooks (cgraph_edge *cs1, cgraph_edge *cs2); | ||||||||||||||||
2406 | |||||||||||||||||
2407 | /* Call all node removal hooks. */ | ||||||||||||||||
2408 | void call_varpool_removal_hooks (varpool_node *node); | ||||||||||||||||
2409 | |||||||||||||||||
2410 | /* Call all node insertion hooks. */ | ||||||||||||||||
2411 | void call_varpool_insertion_hooks (varpool_node *node); | ||||||||||||||||
2412 | |||||||||||||||||
2413 | /* Arrange node to be first in its entry of assembler_name_hash. */ | ||||||||||||||||
2414 | void symtab_prevail_in_asm_name_hash (symtab_node *node); | ||||||||||||||||
2415 | |||||||||||||||||
2416 | /* Initialize asm name hash unless. */ | ||||||||||||||||
2417 | void symtab_initialize_asm_name_hash (void); | ||||||||||||||||
2418 | |||||||||||||||||
2419 | /* Set the DECL_ASSEMBLER_NAME and update symtab hashtables. */ | ||||||||||||||||
2420 | void change_decl_assembler_name (tree decl, tree name); | ||||||||||||||||
2421 | |||||||||||||||||
2422 | /* Dump symbol table to F. */ | ||||||||||||||||
2423 | void dump (FILE *f); | ||||||||||||||||
2424 | |||||||||||||||||
2425 | /* Dump symbol table to F in graphviz format. */ | ||||||||||||||||
2426 | void dump_graphviz (FILE *f); | ||||||||||||||||
2427 | |||||||||||||||||
2428 | /* Dump symbol table to stderr. */ | ||||||||||||||||
2429 | void DEBUG_FUNCTION__attribute__ ((__used__)) debug (void); | ||||||||||||||||
2430 | |||||||||||||||||
2431 | /* Assign a new summary ID for the callgraph NODE. */ | ||||||||||||||||
2432 | inline int assign_summary_id (cgraph_node *node) | ||||||||||||||||
2433 | { | ||||||||||||||||
2434 | if (!cgraph_released_summary_ids.is_empty ()) | ||||||||||||||||
2435 | node->m_summary_id = cgraph_released_summary_ids.pop (); | ||||||||||||||||
2436 | else | ||||||||||||||||
2437 | node->m_summary_id = cgraph_max_summary_id++; | ||||||||||||||||
2438 | |||||||||||||||||
2439 | return node->m_summary_id; | ||||||||||||||||
2440 | } | ||||||||||||||||
2441 | |||||||||||||||||
2442 | /* Assign a new summary ID for the callgraph EDGE. */ | ||||||||||||||||
2443 | inline int assign_summary_id (cgraph_edge *edge) | ||||||||||||||||
2444 | { | ||||||||||||||||
2445 | if (!edge_released_summary_ids.is_empty ()) | ||||||||||||||||
2446 | edge->m_summary_id = edge_released_summary_ids.pop (); | ||||||||||||||||
2447 | else | ||||||||||||||||
2448 | edge->m_summary_id = edges_max_summary_id++; | ||||||||||||||||
2449 | |||||||||||||||||
2450 | return edge->m_summary_id; | ||||||||||||||||
2451 | } | ||||||||||||||||
2452 | |||||||||||||||||
2453 | /* Return true if assembler names NAME1 and NAME2 leads to the same symbol | ||||||||||||||||
2454 | name. */ | ||||||||||||||||
2455 | static bool assembler_names_equal_p (const char *name1, const char *name2); | ||||||||||||||||
2456 | |||||||||||||||||
2457 | int cgraph_count; | ||||||||||||||||
2458 | int cgraph_max_uid; | ||||||||||||||||
2459 | int cgraph_max_summary_id; | ||||||||||||||||
2460 | |||||||||||||||||
2461 | int edges_count; | ||||||||||||||||
2462 | int edges_max_uid; | ||||||||||||||||
2463 | int edges_max_summary_id; | ||||||||||||||||
2464 | |||||||||||||||||
2465 | /* Vector of released summary IDS for cgraph nodes. */ | ||||||||||||||||
2466 | vec<int> GTY ((skip)) cgraph_released_summary_ids; | ||||||||||||||||
2467 | |||||||||||||||||
2468 | /* Vector of released summary IDS for cgraph nodes. */ | ||||||||||||||||
2469 | vec<int> GTY ((skip)) edge_released_summary_ids; | ||||||||||||||||
2470 | |||||||||||||||||
2471 | /* Return symbol used to separate symbol name from suffix. */ | ||||||||||||||||
2472 | static char symbol_suffix_separator (); | ||||||||||||||||
2473 | |||||||||||||||||
2474 | symtab_node* GTY(()) nodes; | ||||||||||||||||
2475 | asm_node* GTY(()) asmnodes; | ||||||||||||||||
2476 | asm_node* GTY(()) asm_last_node; | ||||||||||||||||
2477 | |||||||||||||||||
2478 | /* The order index of the next symtab node to be created. This is | ||||||||||||||||
2479 | used so that we can sort the cgraph nodes in order by when we saw | ||||||||||||||||
2480 | them, to support -fno-toplevel-reorder. */ | ||||||||||||||||
2481 | int order; | ||||||||||||||||
2482 | |||||||||||||||||
2483 | /* Maximal unit ID used. */ | ||||||||||||||||
2484 | int max_unit; | ||||||||||||||||
2485 | |||||||||||||||||
2486 | /* Set when whole unit has been analyzed so we can access global info. */ | ||||||||||||||||
2487 | bool global_info_ready; | ||||||||||||||||
2488 | /* What state callgraph is in right now. */ | ||||||||||||||||
2489 | enum symtab_state state; | ||||||||||||||||
2490 | /* Set when the cgraph is fully build and the basic flags are computed. */ | ||||||||||||||||
2491 | bool function_flags_ready; | ||||||||||||||||
2492 | |||||||||||||||||
2493 | bool cpp_implicit_aliases_done; | ||||||||||||||||
2494 | |||||||||||||||||
2495 | /* Hash table used to hold sections. */ | ||||||||||||||||
2496 | hash_table<section_name_hasher> *GTY(()) section_hash; | ||||||||||||||||
2497 | |||||||||||||||||
2498 | /* Hash table used to convert assembler names into nodes. */ | ||||||||||||||||
2499 | hash_table<asmname_hasher> *assembler_name_hash; | ||||||||||||||||
2500 | |||||||||||||||||
2501 | /* Hash table used to hold init priorities. */ | ||||||||||||||||
2502 | hash_map<symtab_node *, symbol_priority_map> *init_priority_hash; | ||||||||||||||||
2503 | |||||||||||||||||
2504 | FILE* GTY ((skip)) dump_file; | ||||||||||||||||
2505 | |||||||||||||||||
2506 | FILE* GTY ((skip)) ipa_clones_dump_file; | ||||||||||||||||
2507 | |||||||||||||||||
2508 | hash_set <const cgraph_node *> GTY ((skip)) cloned_nodes; | ||||||||||||||||
2509 | |||||||||||||||||
2510 | /* Thunk annotations. */ | ||||||||||||||||
2511 | thunk_summary *m_thunks; | ||||||||||||||||
2512 | |||||||||||||||||
2513 | /* Virtual clone annotations. */ | ||||||||||||||||
2514 | clone_summary *m_clones; | ||||||||||||||||
2515 | |||||||||||||||||
2516 | private: | ||||||||||||||||
2517 | /* Allocate a cgraph_edge structure and fill it with data according to the | ||||||||||||||||
2518 | parameters of which only CALLEE can be NULL (when creating an indirect | ||||||||||||||||
2519 | call edge). CLONING_P should be set if properties that are copied from an | ||||||||||||||||
2520 | original edge should not be calculated. */ | ||||||||||||||||
2521 | cgraph_edge *create_edge (cgraph_node *caller, cgraph_node *callee, | ||||||||||||||||
2522 | gcall *call_stmt, profile_count count, | ||||||||||||||||
2523 | bool indir_unknown_callee, bool cloning_p); | ||||||||||||||||
2524 | |||||||||||||||||
2525 | /* Put the edge onto the free list. */ | ||||||||||||||||
2526 | void free_edge (cgraph_edge *e); | ||||||||||||||||
2527 | |||||||||||||||||
2528 | /* Insert NODE to assembler name hash. */ | ||||||||||||||||
2529 | void insert_to_assembler_name_hash (symtab_node *node, bool with_clones); | ||||||||||||||||
2530 | |||||||||||||||||
2531 | /* Remove NODE from assembler name hash. */ | ||||||||||||||||
2532 | void unlink_from_assembler_name_hash (symtab_node *node, bool with_clones); | ||||||||||||||||
2533 | |||||||||||||||||
2534 | /* Hash asmnames ignoring the user specified marks. */ | ||||||||||||||||
2535 | static hashval_t decl_assembler_name_hash (const_tree asmname); | ||||||||||||||||
2536 | |||||||||||||||||
2537 | /* Compare ASMNAME with the DECL_ASSEMBLER_NAME of DECL. */ | ||||||||||||||||
2538 | static bool decl_assembler_name_equal (tree decl, const_tree asmname); | ||||||||||||||||
2539 | |||||||||||||||||
2540 | friend struct asmname_hasher; | ||||||||||||||||
2541 | |||||||||||||||||
2542 | /* List of hooks triggered when an edge is removed. */ | ||||||||||||||||
2543 | cgraph_edge_hook_list * GTY((skip)) m_first_edge_removal_hook; | ||||||||||||||||
2544 | /* List of hooks trigger_red when a cgraph node is removed. */ | ||||||||||||||||
2545 | cgraph_node_hook_list * GTY((skip)) m_first_cgraph_removal_hook; | ||||||||||||||||
2546 | /* List of hooks triggered when an edge is duplicated. */ | ||||||||||||||||
2547 | cgraph_2edge_hook_list * GTY((skip)) m_first_edge_duplicated_hook; | ||||||||||||||||
2548 | /* List of hooks triggered when a node is duplicated. */ | ||||||||||||||||
2549 | cgraph_2node_hook_list * GTY((skip)) m_first_cgraph_duplicated_hook; | ||||||||||||||||
2550 | /* List of hooks triggered when an function is inserted. */ | ||||||||||||||||
2551 | cgraph_node_hook_list * GTY((skip)) m_first_cgraph_insertion_hook; | ||||||||||||||||
2552 | /* List of hooks triggered when an variable is inserted. */ | ||||||||||||||||
2553 | varpool_node_hook_list * GTY((skip)) m_first_varpool_insertion_hook; | ||||||||||||||||
2554 | /* List of hooks triggered when a node is removed. */ | ||||||||||||||||
2555 | varpool_node_hook_list * GTY((skip)) m_first_varpool_removal_hook; | ||||||||||||||||
2556 | }; | ||||||||||||||||
2557 | |||||||||||||||||
2558 | extern GTY(()) symbol_table *symtab; | ||||||||||||||||
2559 | |||||||||||||||||
2560 | extern vec<cgraph_node *> cgraph_new_nodes; | ||||||||||||||||
2561 | |||||||||||||||||
2562 | inline hashval_t | ||||||||||||||||
2563 | asmname_hasher::hash (symtab_node *n) | ||||||||||||||||
2564 | { | ||||||||||||||||
2565 | return symbol_table::decl_assembler_name_hash | ||||||||||||||||
2566 | (DECL_ASSEMBLER_NAME (n->decl)decl_assembler_name (n->decl)); | ||||||||||||||||
2567 | } | ||||||||||||||||
2568 | |||||||||||||||||
2569 | inline bool | ||||||||||||||||
2570 | asmname_hasher::equal (symtab_node *n, const_tree t) | ||||||||||||||||
2571 | { | ||||||||||||||||
2572 | return symbol_table::decl_assembler_name_equal (n->decl, t); | ||||||||||||||||
2573 | } | ||||||||||||||||
2574 | |||||||||||||||||
2575 | /* In cgraph.cc */ | ||||||||||||||||
2576 | void cgraph_cc_finalize (void); | ||||||||||||||||
2577 | void release_function_body (tree); | ||||||||||||||||
2578 | cgraph_indirect_call_info *cgraph_allocate_init_indirect_info (void); | ||||||||||||||||
2579 | |||||||||||||||||
2580 | void cgraph_update_edges_for_call_stmt (gimple *, tree, gimple *); | ||||||||||||||||
2581 | bool cgraph_function_possibly_inlined_p (tree); | ||||||||||||||||
2582 | |||||||||||||||||
2583 | const char* cgraph_inline_failed_string (cgraph_inline_failed_t); | ||||||||||||||||
2584 | cgraph_inline_failed_type_t cgraph_inline_failed_type (cgraph_inline_failed_t); | ||||||||||||||||
2585 | |||||||||||||||||
2586 | /* In cgraphunit.cc */ | ||||||||||||||||
2587 | void cgraphunit_cc_finalize (void); | ||||||||||||||||
2588 | int tp_first_run_node_cmp (const void *pa, const void *pb); | ||||||||||||||||
2589 | |||||||||||||||||
2590 | /* In symtab-thunks.cc */ | ||||||||||||||||
2591 | void symtab_thunks_cc_finalize (void); | ||||||||||||||||
2592 | |||||||||||||||||
2593 | /* Initialize datastructures so DECL is a function in lowered gimple form. | ||||||||||||||||
2594 | IN_SSA is true if the gimple is in SSA. */ | ||||||||||||||||
2595 | basic_block init_lowered_empty_function (tree, bool, profile_count); | ||||||||||||||||
2596 | |||||||||||||||||
2597 | tree thunk_adjust (gimple_stmt_iterator *, tree, bool, HOST_WIDE_INTlong, tree, | ||||||||||||||||
2598 | HOST_WIDE_INTlong); | ||||||||||||||||
2599 | /* In cgraphclones.cc */ | ||||||||||||||||
2600 | |||||||||||||||||
2601 | tree clone_function_name_numbered (const char *name, const char *suffix); | ||||||||||||||||
2602 | tree clone_function_name_numbered (tree decl, const char *suffix); | ||||||||||||||||
2603 | tree clone_function_name (const char *name, const char *suffix, | ||||||||||||||||
2604 | unsigned long number); | ||||||||||||||||
2605 | tree clone_function_name (tree decl, const char *suffix, | ||||||||||||||||
2606 | unsigned long number); | ||||||||||||||||
2607 | tree clone_function_name (tree decl, const char *suffix); | ||||||||||||||||
2608 | |||||||||||||||||
2609 | void tree_function_versioning (tree, tree, vec<ipa_replace_map *, va_gc> *, | ||||||||||||||||
2610 | ipa_param_adjustments *, | ||||||||||||||||
2611 | bool, bitmap, basic_block); | ||||||||||||||||
2612 | |||||||||||||||||
2613 | void dump_callgraph_transformation (const cgraph_node *original, | ||||||||||||||||
2614 | const cgraph_node *clone, | ||||||||||||||||
2615 | const char *suffix); | ||||||||||||||||
2616 | /* In cgraphbuild.cc */ | ||||||||||||||||
2617 | int compute_call_stmt_bb_frequency (tree, basic_block bb); | ||||||||||||||||
2618 | void record_references_in_initializer (tree, bool); | ||||||||||||||||
2619 | |||||||||||||||||
2620 | /* In ipa.cc */ | ||||||||||||||||
2621 | void cgraph_build_static_cdtor (char which, tree body, int priority); | ||||||||||||||||
2622 | bool ipa_discover_variable_flags (void); | ||||||||||||||||
2623 | |||||||||||||||||
2624 | /* In varpool.cc */ | ||||||||||||||||
2625 | tree ctor_for_folding (tree); | ||||||||||||||||
2626 | |||||||||||||||||
2627 | /* In ipa-inline-analysis.cc */ | ||||||||||||||||
2628 | void initialize_inline_failed (struct cgraph_edge *); | ||||||||||||||||
2629 | bool speculation_useful_p (struct cgraph_edge *e, bool anticipate_inlining); | ||||||||||||||||
2630 | |||||||||||||||||
2631 | /* Return true when the symbol is real symbol, i.e. it is not inline clone | ||||||||||||||||
2632 | or abstract function kept for debug info purposes only. */ | ||||||||||||||||
2633 | inline bool | ||||||||||||||||
2634 | symtab_node::real_symbol_p (void) | ||||||||||||||||
2635 | { | ||||||||||||||||
2636 | cgraph_node *cnode; | ||||||||||||||||
2637 | |||||||||||||||||
2638 | if (DECL_ABSTRACT_P (decl)((contains_struct_check ((decl), (TS_DECL_COMMON), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 2638, __FUNCTION__))->decl_common.abstract_flag)) | ||||||||||||||||
2639 | return false; | ||||||||||||||||
2640 | if (transparent_alias && definition) | ||||||||||||||||
2641 | return false; | ||||||||||||||||
2642 | if (!is_a <cgraph_node *> (this)) | ||||||||||||||||
2643 | return true; | ||||||||||||||||
2644 | cnode = dyn_cast <cgraph_node *> (this); | ||||||||||||||||
2645 | if (cnode->inlined_to) | ||||||||||||||||
2646 | return false; | ||||||||||||||||
2647 | return true; | ||||||||||||||||
2648 | } | ||||||||||||||||
2649 | |||||||||||||||||
2650 | /* Return true if DECL should have entry in symbol table if used. | ||||||||||||||||
2651 | Those are functions and static & external variables. */ | ||||||||||||||||
2652 | |||||||||||||||||
2653 | inline bool | ||||||||||||||||
2654 | decl_in_symtab_p (const_tree decl) | ||||||||||||||||
2655 | { | ||||||||||||||||
2656 | return (TREE_CODE (decl)((enum tree_code) (decl)->base.code) == FUNCTION_DECL | ||||||||||||||||
2657 | || (TREE_CODE (decl)((enum tree_code) (decl)->base.code) == VAR_DECL | ||||||||||||||||
2658 | && (TREE_STATIC (decl)((decl)->base.static_flag) || DECL_EXTERNAL (decl)((contains_struct_check ((decl), (TS_DECL_COMMON), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 2658, __FUNCTION__))->decl_common.decl_flag_1)))); | ||||||||||||||||
2659 | } | ||||||||||||||||
2660 | |||||||||||||||||
2661 | inline bool | ||||||||||||||||
2662 | symtab_node::in_same_comdat_group_p (symtab_node *target) | ||||||||||||||||
2663 | { | ||||||||||||||||
2664 | symtab_node *source = this; | ||||||||||||||||
2665 | |||||||||||||||||
2666 | if (cgraph_node *cn = dyn_cast <cgraph_node *> (target)) | ||||||||||||||||
2667 | { | ||||||||||||||||
2668 | if (cn->inlined_to) | ||||||||||||||||
2669 | source = cn->inlined_to; | ||||||||||||||||
2670 | } | ||||||||||||||||
2671 | if (cgraph_node *cn = dyn_cast <cgraph_node *> (target)) | ||||||||||||||||
2672 | { | ||||||||||||||||
2673 | if (cn->inlined_to) | ||||||||||||||||
2674 | target = cn->inlined_to; | ||||||||||||||||
2675 | } | ||||||||||||||||
2676 | |||||||||||||||||
2677 | return source->get_comdat_group () == target->get_comdat_group (); | ||||||||||||||||
2678 | } | ||||||||||||||||
2679 | |||||||||||||||||
2680 | /* Return node that alias is aliasing. */ | ||||||||||||||||
2681 | |||||||||||||||||
2682 | inline symtab_node * | ||||||||||||||||
2683 | symtab_node::get_alias_target (void) | ||||||||||||||||
2684 | { | ||||||||||||||||
2685 | ipa_ref *ref = NULLnullptr; | ||||||||||||||||
2686 | iterate_reference (0, ref); | ||||||||||||||||
2687 | gcc_checking_assert (ref->use == IPA_REF_ALIAS)((void)(!(ref->use == IPA_REF_ALIAS) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 2687, __FUNCTION__), 0 : 0)); | ||||||||||||||||
2688 | return ref->referred; | ||||||||||||||||
2689 | } | ||||||||||||||||
2690 | |||||||||||||||||
2691 | /* Return the DECL (or identifier) that alias is aliasing. Unlike the above, | ||||||||||||||||
2692 | this works whether or not the alias has been analyzed already. */ | ||||||||||||||||
2693 | |||||||||||||||||
2694 | inline tree | ||||||||||||||||
2695 | symtab_node::get_alias_target_tree () | ||||||||||||||||
2696 | { | ||||||||||||||||
2697 | if (alias_target) | ||||||||||||||||
2698 | return alias_target; | ||||||||||||||||
2699 | return get_alias_target ()->decl; | ||||||||||||||||
2700 | } | ||||||||||||||||
2701 | |||||||||||||||||
2702 | /* Return next reachable static symbol with initializer after the node. */ | ||||||||||||||||
2703 | |||||||||||||||||
2704 | inline symtab_node * | ||||||||||||||||
2705 | symtab_node::next_defined_symbol (void) | ||||||||||||||||
2706 | { | ||||||||||||||||
2707 | symtab_node *node1 = next; | ||||||||||||||||
2708 | |||||||||||||||||
2709 | for (; node1; node1 = node1->next) | ||||||||||||||||
2710 | if (node1->definition) | ||||||||||||||||
2711 | return node1; | ||||||||||||||||
2712 | |||||||||||||||||
2713 | return NULLnullptr; | ||||||||||||||||
2714 | } | ||||||||||||||||
2715 | |||||||||||||||||
2716 | /* Iterates I-th reference in the list, REF is also set. */ | ||||||||||||||||
2717 | |||||||||||||||||
2718 | inline ipa_ref * | ||||||||||||||||
2719 | symtab_node::iterate_reference (unsigned i, ipa_ref *&ref) | ||||||||||||||||
2720 | { | ||||||||||||||||
2721 | ref_list.references.iterate (i, &ref); | ||||||||||||||||
2722 | |||||||||||||||||
2723 | return ref; | ||||||||||||||||
2724 | } | ||||||||||||||||
2725 | |||||||||||||||||
2726 | /* Iterates I-th referring item in the list, REF is also set. */ | ||||||||||||||||
2727 | |||||||||||||||||
2728 | inline ipa_ref * | ||||||||||||||||
2729 | symtab_node::iterate_referring (unsigned i, ipa_ref *&ref) | ||||||||||||||||
2730 | { | ||||||||||||||||
2731 | ref_list.referring.iterate (i, &ref); | ||||||||||||||||
2732 | |||||||||||||||||
2733 | return ref; | ||||||||||||||||
2734 | } | ||||||||||||||||
2735 | |||||||||||||||||
2736 | /* Iterates I-th referring alias item in the list, REF is also set. */ | ||||||||||||||||
2737 | |||||||||||||||||
2738 | inline ipa_ref * | ||||||||||||||||
2739 | symtab_node::iterate_direct_aliases (unsigned i, ipa_ref *&ref) | ||||||||||||||||
2740 | { | ||||||||||||||||
2741 | ref_list.referring.iterate (i, &ref); | ||||||||||||||||
2742 | |||||||||||||||||
2743 | if (ref && ref->use != IPA_REF_ALIAS) | ||||||||||||||||
2744 | return NULLnullptr; | ||||||||||||||||
2745 | |||||||||||||||||
2746 | return ref; | ||||||||||||||||
2747 | } | ||||||||||||||||
2748 | |||||||||||||||||
2749 | /* Return true if list contains an alias. */ | ||||||||||||||||
2750 | |||||||||||||||||
2751 | inline bool | ||||||||||||||||
2752 | symtab_node::has_aliases_p (void) | ||||||||||||||||
2753 | { | ||||||||||||||||
2754 | ipa_ref *ref = NULLnullptr; | ||||||||||||||||
2755 | |||||||||||||||||
2756 | return (iterate_direct_aliases (0, ref) != NULLnullptr); | ||||||||||||||||
2757 | } | ||||||||||||||||
2758 | |||||||||||||||||
2759 | /* Return true when RESOLUTION indicate that linker will use | ||||||||||||||||
2760 | the symbol from non-LTO object files. */ | ||||||||||||||||
2761 | |||||||||||||||||
2762 | inline bool | ||||||||||||||||
2763 | resolution_used_from_other_file_p (enum ld_plugin_symbol_resolution resolution) | ||||||||||||||||
2764 | { | ||||||||||||||||
2765 | return (resolution == LDPR_PREVAILING_DEF | ||||||||||||||||
2766 | || resolution == LDPR_PREEMPTED_REG | ||||||||||||||||
2767 | || resolution == LDPR_RESOLVED_EXEC | ||||||||||||||||
2768 | || resolution == LDPR_RESOLVED_DYN); | ||||||||||||||||
2769 | } | ||||||||||||||||
2770 | |||||||||||||||||
2771 | /* Return true when symtab_node is known to be used from other (non-LTO) | ||||||||||||||||
2772 | object file. Known only when doing LTO via linker plugin. */ | ||||||||||||||||
2773 | |||||||||||||||||
2774 | inline bool | ||||||||||||||||
2775 | symtab_node::used_from_object_file_p (void) | ||||||||||||||||
2776 | { | ||||||||||||||||
2777 | if (!TREE_PUBLIC (decl)((decl)->base.public_flag) || DECL_EXTERNAL (decl)((contains_struct_check ((decl), (TS_DECL_COMMON), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 2777, __FUNCTION__))->decl_common.decl_flag_1)) | ||||||||||||||||
2778 | return false; | ||||||||||||||||
2779 | if (resolution_used_from_other_file_p (resolution)) | ||||||||||||||||
2780 | return true; | ||||||||||||||||
2781 | return false; | ||||||||||||||||
2782 | } | ||||||||||||||||
2783 | |||||||||||||||||
2784 | /* Return varpool node for given symbol and check it is a function. */ | ||||||||||||||||
2785 | |||||||||||||||||
2786 | inline varpool_node * | ||||||||||||||||
2787 | varpool_node::get (const_tree decl) | ||||||||||||||||
2788 | { | ||||||||||||||||
2789 | gcc_checking_assert (TREE_CODE (decl) == VAR_DECL)((void)(!(((enum tree_code) (decl)->base.code) == VAR_DECL ) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 2789, __FUNCTION__), 0 : 0)); | ||||||||||||||||
2790 | return dyn_cast<varpool_node *> (symtab_node::get (decl)); | ||||||||||||||||
2791 | } | ||||||||||||||||
2792 | |||||||||||||||||
2793 | /* Register a symbol NODE. */ | ||||||||||||||||
2794 | |||||||||||||||||
2795 | inline void | ||||||||||||||||
2796 | symbol_table::register_symbol (symtab_node *node) | ||||||||||||||||
2797 | { | ||||||||||||||||
2798 | node->next = nodes; | ||||||||||||||||
2799 | node->previous = NULLnullptr; | ||||||||||||||||
2800 | |||||||||||||||||
2801 | if (nodes) | ||||||||||||||||
2802 | nodes->previous = node; | ||||||||||||||||
2803 | nodes = node; | ||||||||||||||||
2804 | |||||||||||||||||
2805 | node->order = order++; | ||||||||||||||||
2806 | } | ||||||||||||||||
2807 | |||||||||||||||||
2808 | /* Register a top-level asm statement ASM_STR. */ | ||||||||||||||||
2809 | |||||||||||||||||
2810 | asm_node * | ||||||||||||||||
2811 | symbol_table::finalize_toplevel_asm (tree asm_str) | ||||||||||||||||
2812 | { | ||||||||||||||||
2813 | asm_node *node; | ||||||||||||||||
2814 | |||||||||||||||||
2815 | node = ggc_cleared_alloc<asm_node> (); | ||||||||||||||||
2816 | node->asm_str = asm_str; | ||||||||||||||||
2817 | node->order = order++; | ||||||||||||||||
2818 | node->next = NULLnullptr; | ||||||||||||||||
2819 | |||||||||||||||||
2820 | if (asmnodes == NULLnullptr) | ||||||||||||||||
2821 | asmnodes = node; | ||||||||||||||||
2822 | else | ||||||||||||||||
2823 | asm_last_node->next = node; | ||||||||||||||||
2824 | |||||||||||||||||
2825 | asm_last_node = node; | ||||||||||||||||
2826 | return node; | ||||||||||||||||
2827 | } | ||||||||||||||||
2828 | |||||||||||||||||
2829 | /* Unregister a symbol NODE. */ | ||||||||||||||||
2830 | inline void | ||||||||||||||||
2831 | symbol_table::unregister (symtab_node *node) | ||||||||||||||||
2832 | { | ||||||||||||||||
2833 | if (node->previous) | ||||||||||||||||
2834 | node->previous->next = node->next; | ||||||||||||||||
2835 | else | ||||||||||||||||
2836 | nodes = node->next; | ||||||||||||||||
2837 | |||||||||||||||||
2838 | if (node->next) | ||||||||||||||||
2839 | node->next->previous = node->previous; | ||||||||||||||||
2840 | |||||||||||||||||
2841 | node->next = NULLnullptr; | ||||||||||||||||
2842 | node->previous = NULLnullptr; | ||||||||||||||||
2843 | } | ||||||||||||||||
2844 | |||||||||||||||||
2845 | /* Release a callgraph NODE with UID and put in to the list of free nodes. */ | ||||||||||||||||
2846 | |||||||||||||||||
2847 | inline void | ||||||||||||||||
2848 | symbol_table::release_symbol (cgraph_node *node) | ||||||||||||||||
2849 | { | ||||||||||||||||
2850 | cgraph_count--; | ||||||||||||||||
2851 | if (node->m_summary_id != -1) | ||||||||||||||||
2852 | cgraph_released_summary_ids.safe_push (node->m_summary_id); | ||||||||||||||||
2853 | ggc_free (node); | ||||||||||||||||
2854 | } | ||||||||||||||||
2855 | |||||||||||||||||
2856 | /* Return first static symbol with definition. */ | ||||||||||||||||
2857 | inline symtab_node * | ||||||||||||||||
2858 | symbol_table::first_symbol (void) | ||||||||||||||||
2859 | { | ||||||||||||||||
2860 | return nodes; | ||||||||||||||||
2861 | } | ||||||||||||||||
2862 | |||||||||||||||||
2863 | /* Walk all symbols. */ | ||||||||||||||||
2864 | #define FOR_EACH_SYMBOL(node)for ((node) = symtab->first_symbol (); (node); (node) = (node )->next) \ | ||||||||||||||||
2865 | for ((node) = symtab->first_symbol (); (node); (node) = (node)->next) | ||||||||||||||||
2866 | |||||||||||||||||
2867 | /* Return first static symbol with definition. */ | ||||||||||||||||
2868 | inline symtab_node * | ||||||||||||||||
2869 | symbol_table::first_defined_symbol (void) | ||||||||||||||||
2870 | { | ||||||||||||||||
2871 | symtab_node *node; | ||||||||||||||||
2872 | |||||||||||||||||
2873 | for (node = nodes; node; node = node->next) | ||||||||||||||||
2874 | if (node->definition) | ||||||||||||||||
2875 | return node; | ||||||||||||||||
2876 | |||||||||||||||||
2877 | return NULLnullptr; | ||||||||||||||||
2878 | } | ||||||||||||||||
2879 | |||||||||||||||||
2880 | /* Walk all symbols with definitions in current unit. */ | ||||||||||||||||
2881 | #define FOR_EACH_DEFINED_SYMBOL(node)for ((node) = symtab->first_defined_symbol (); (node); (node ) = node->next_defined_symbol ()) \ | ||||||||||||||||
2882 | for ((node) = symtab->first_defined_symbol (); (node); \ | ||||||||||||||||
2883 | (node) = node->next_defined_symbol ()) | ||||||||||||||||
2884 | |||||||||||||||||
2885 | /* Return first variable. */ | ||||||||||||||||
2886 | inline varpool_node * | ||||||||||||||||
2887 | symbol_table::first_variable (void) | ||||||||||||||||
2888 | { | ||||||||||||||||
2889 | symtab_node *node; | ||||||||||||||||
2890 | for (node = nodes; node; node = node->next) | ||||||||||||||||
2891 | if (varpool_node *vnode = dyn_cast <varpool_node *> (node)) | ||||||||||||||||
2892 | return vnode; | ||||||||||||||||
2893 | return NULLnullptr; | ||||||||||||||||
2894 | } | ||||||||||||||||
2895 | |||||||||||||||||
2896 | /* Return next variable after NODE. */ | ||||||||||||||||
2897 | inline varpool_node * | ||||||||||||||||
2898 | symbol_table::next_variable (varpool_node *node) | ||||||||||||||||
2899 | { | ||||||||||||||||
2900 | symtab_node *node1 = node->next; | ||||||||||||||||
2901 | for (; node1; node1 = node1->next) | ||||||||||||||||
2902 | if (varpool_node *vnode1 = dyn_cast <varpool_node *> (node1)) | ||||||||||||||||
2903 | return vnode1; | ||||||||||||||||
2904 | return NULLnullptr; | ||||||||||||||||
2905 | } | ||||||||||||||||
2906 | /* Walk all variables. */ | ||||||||||||||||
2907 | #define FOR_EACH_VARIABLE(node)for ((node) = symtab->first_variable (); (node); (node) = symtab ->next_variable ((node))) \ | ||||||||||||||||
2908 | for ((node) = symtab->first_variable (); \ | ||||||||||||||||
2909 | (node); \ | ||||||||||||||||
2910 | (node) = symtab->next_variable ((node))) | ||||||||||||||||
2911 | |||||||||||||||||
2912 | /* Return first static variable with initializer. */ | ||||||||||||||||
2913 | inline varpool_node * | ||||||||||||||||
2914 | symbol_table::first_static_initializer (void) | ||||||||||||||||
2915 | { | ||||||||||||||||
2916 | symtab_node *node; | ||||||||||||||||
2917 | for (node = nodes; node; node = node->next) | ||||||||||||||||
2918 | { | ||||||||||||||||
2919 | varpool_node *vnode = dyn_cast <varpool_node *> (node); | ||||||||||||||||
2920 | if (vnode && DECL_INITIAL (node->decl)((contains_struct_check ((node->decl), (TS_DECL_COMMON), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 2920, __FUNCTION__))->decl_common.initial)) | ||||||||||||||||
2921 | return vnode; | ||||||||||||||||
2922 | } | ||||||||||||||||
2923 | return NULLnullptr; | ||||||||||||||||
2924 | } | ||||||||||||||||
2925 | |||||||||||||||||
2926 | /* Return next static variable with initializer after NODE. */ | ||||||||||||||||
2927 | inline varpool_node * | ||||||||||||||||
2928 | symbol_table::next_static_initializer (varpool_node *node) | ||||||||||||||||
2929 | { | ||||||||||||||||
2930 | symtab_node *node1 = node->next; | ||||||||||||||||
2931 | for (; node1; node1 = node1->next) | ||||||||||||||||
2932 | { | ||||||||||||||||
2933 | varpool_node *vnode1 = dyn_cast <varpool_node *> (node1); | ||||||||||||||||
2934 | if (vnode1 && DECL_INITIAL (node1->decl)((contains_struct_check ((node1->decl), (TS_DECL_COMMON), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 2934, __FUNCTION__))->decl_common.initial)) | ||||||||||||||||
2935 | return vnode1; | ||||||||||||||||
2936 | } | ||||||||||||||||
2937 | return NULLnullptr; | ||||||||||||||||
2938 | } | ||||||||||||||||
2939 | |||||||||||||||||
2940 | /* Walk all static variables with initializer set. */ | ||||||||||||||||
2941 | #define FOR_EACH_STATIC_INITIALIZER(node)for ((node) = symtab->first_static_initializer (); (node); (node) = symtab->next_static_initializer (node)) \ | ||||||||||||||||
2942 | for ((node) = symtab->first_static_initializer (); (node); \ | ||||||||||||||||
2943 | (node) = symtab->next_static_initializer (node)) | ||||||||||||||||
2944 | |||||||||||||||||
2945 | /* Return first static variable with definition. */ | ||||||||||||||||
2946 | inline varpool_node * | ||||||||||||||||
2947 | symbol_table::first_defined_variable (void) | ||||||||||||||||
2948 | { | ||||||||||||||||
2949 | symtab_node *node; | ||||||||||||||||
2950 | for (node = nodes; node; node = node->next) | ||||||||||||||||
2951 | { | ||||||||||||||||
2952 | varpool_node *vnode = dyn_cast <varpool_node *> (node); | ||||||||||||||||
2953 | if (vnode && vnode->definition) | ||||||||||||||||
2954 | return vnode; | ||||||||||||||||
2955 | } | ||||||||||||||||
2956 | return NULLnullptr; | ||||||||||||||||
2957 | } | ||||||||||||||||
2958 | |||||||||||||||||
2959 | /* Return next static variable with definition after NODE. */ | ||||||||||||||||
2960 | inline varpool_node * | ||||||||||||||||
2961 | symbol_table::next_defined_variable (varpool_node *node) | ||||||||||||||||
2962 | { | ||||||||||||||||
2963 | symtab_node *node1 = node->next; | ||||||||||||||||
2964 | for (; node1; node1 = node1->next) | ||||||||||||||||
2965 | { | ||||||||||||||||
2966 | varpool_node *vnode1 = dyn_cast <varpool_node *> (node1); | ||||||||||||||||
2967 | if (vnode1 && vnode1->definition) | ||||||||||||||||
2968 | return vnode1; | ||||||||||||||||
2969 | } | ||||||||||||||||
2970 | return NULLnullptr; | ||||||||||||||||
2971 | } | ||||||||||||||||
2972 | /* Walk all variables with definitions in current unit. */ | ||||||||||||||||
2973 | #define FOR_EACH_DEFINED_VARIABLE(node)for ((node) = symtab->first_defined_variable (); (node); ( node) = symtab->next_defined_variable (node)) \ | ||||||||||||||||
2974 | for ((node) = symtab->first_defined_variable (); (node); \ | ||||||||||||||||
2975 | (node) = symtab->next_defined_variable (node)) | ||||||||||||||||
2976 | |||||||||||||||||
2977 | /* Return first function with body defined. */ | ||||||||||||||||
2978 | inline cgraph_node * | ||||||||||||||||
2979 | symbol_table::first_defined_function (void) | ||||||||||||||||
2980 | { | ||||||||||||||||
2981 | symtab_node *node; | ||||||||||||||||
2982 | for (node = nodes; node; node = node->next) | ||||||||||||||||
2983 | { | ||||||||||||||||
2984 | cgraph_node *cn = dyn_cast <cgraph_node *> (node); | ||||||||||||||||
2985 | if (cn && cn->definition) | ||||||||||||||||
2986 | return cn; | ||||||||||||||||
2987 | } | ||||||||||||||||
2988 | return NULLnullptr; | ||||||||||||||||
2989 | } | ||||||||||||||||
2990 | |||||||||||||||||
2991 | /* Return next function with body defined after NODE. */ | ||||||||||||||||
2992 | inline cgraph_node * | ||||||||||||||||
2993 | symbol_table::next_defined_function (cgraph_node *node) | ||||||||||||||||
2994 | { | ||||||||||||||||
2995 | symtab_node *node1 = node->next; | ||||||||||||||||
2996 | for (; node1; node1 = node1->next) | ||||||||||||||||
2997 | { | ||||||||||||||||
2998 | cgraph_node *cn1 = dyn_cast <cgraph_node *> (node1); | ||||||||||||||||
2999 | if (cn1 && cn1->definition) | ||||||||||||||||
3000 | return cn1; | ||||||||||||||||
3001 | } | ||||||||||||||||
3002 | return NULLnullptr; | ||||||||||||||||
3003 | } | ||||||||||||||||
3004 | |||||||||||||||||
3005 | /* Walk all functions with body defined. */ | ||||||||||||||||
3006 | #define FOR_EACH_DEFINED_FUNCTION(node)for ((node) = symtab->first_defined_function (); (node); ( node) = symtab->next_defined_function ((node))) \ | ||||||||||||||||
3007 | for ((node) = symtab->first_defined_function (); (node); \ | ||||||||||||||||
3008 | (node) = symtab->next_defined_function ((node))) | ||||||||||||||||
3009 | |||||||||||||||||
3010 | /* Return first function. */ | ||||||||||||||||
3011 | inline cgraph_node * | ||||||||||||||||
3012 | symbol_table::first_function (void) | ||||||||||||||||
3013 | { | ||||||||||||||||
3014 | symtab_node *node; | ||||||||||||||||
3015 | for (node = nodes; node; node = node->next) | ||||||||||||||||
3016 | if (cgraph_node *cn = dyn_cast <cgraph_node *> (node)) | ||||||||||||||||
3017 | return cn; | ||||||||||||||||
3018 | return NULLnullptr; | ||||||||||||||||
3019 | } | ||||||||||||||||
3020 | |||||||||||||||||
3021 | /* Return next function. */ | ||||||||||||||||
3022 | inline cgraph_node * | ||||||||||||||||
3023 | symbol_table::next_function (cgraph_node *node) | ||||||||||||||||
3024 | { | ||||||||||||||||
3025 | symtab_node *node1 = node->next; | ||||||||||||||||
3026 | for (; node1; node1 = node1->next) | ||||||||||||||||
3027 | if (cgraph_node *cn1 = dyn_cast <cgraph_node *> (node1)) | ||||||||||||||||
3028 | return cn1; | ||||||||||||||||
3029 | return NULLnullptr; | ||||||||||||||||
3030 | } | ||||||||||||||||
3031 | |||||||||||||||||
3032 | /* Return first function with body defined. */ | ||||||||||||||||
3033 | inline cgraph_node * | ||||||||||||||||
3034 | symbol_table::first_function_with_gimple_body (void) | ||||||||||||||||
3035 | { | ||||||||||||||||
3036 | symtab_node *node; | ||||||||||||||||
3037 | for (node = nodes; node; node = node->next) | ||||||||||||||||
3038 | { | ||||||||||||||||
3039 | cgraph_node *cn = dyn_cast <cgraph_node *> (node); | ||||||||||||||||
3040 | if (cn
| ||||||||||||||||
3041 | return cn; | ||||||||||||||||
3042 | } | ||||||||||||||||
3043 | return NULLnullptr; | ||||||||||||||||
3044 | } | ||||||||||||||||
3045 | |||||||||||||||||
3046 | /* Return next reachable static variable with initializer after NODE. */ | ||||||||||||||||
3047 | inline cgraph_node * | ||||||||||||||||
3048 | symbol_table::next_function_with_gimple_body (cgraph_node *node) | ||||||||||||||||
3049 | { | ||||||||||||||||
3050 | symtab_node *node1 = node->next; | ||||||||||||||||
3051 | for (; node1; node1 = node1->next) | ||||||||||||||||
3052 | { | ||||||||||||||||
3053 | cgraph_node *cn1 = dyn_cast <cgraph_node *> (node1); | ||||||||||||||||
3054 | if (cn1 && cn1->has_gimple_body_p ()) | ||||||||||||||||
3055 | return cn1; | ||||||||||||||||
3056 | } | ||||||||||||||||
3057 | return NULLnullptr; | ||||||||||||||||
3058 | } | ||||||||||||||||
3059 | |||||||||||||||||
3060 | /* Walk all functions. */ | ||||||||||||||||
3061 | #define FOR_EACH_FUNCTION(node)for ((node) = symtab->first_function (); (node); (node) = symtab ->next_function ((node))) \ | ||||||||||||||||
3062 | for ((node) = symtab->first_function (); (node); \ | ||||||||||||||||
3063 | (node) = symtab->next_function ((node))) | ||||||||||||||||
3064 | |||||||||||||||||
3065 | /* Return true when callgraph node is a function with Gimple body defined | ||||||||||||||||
3066 | in current unit. Functions can also be define externally or they | ||||||||||||||||
3067 | can be thunks with no Gimple representation. | ||||||||||||||||
3068 | |||||||||||||||||
3069 | Note that at WPA stage, the function body may not be present in memory. */ | ||||||||||||||||
3070 | |||||||||||||||||
3071 | inline bool | ||||||||||||||||
3072 | cgraph_node::has_gimple_body_p (void) | ||||||||||||||||
3073 | { | ||||||||||||||||
3074 | return definition && !thunk && !alias; | ||||||||||||||||
3075 | } | ||||||||||||||||
3076 | |||||||||||||||||
3077 | /* Walk all functions with body defined. */ | ||||||||||||||||
3078 | #define FOR_EACH_FUNCTION_WITH_GIMPLE_BODY(node)for ((node) = symtab->first_function_with_gimple_body (); ( node); (node) = symtab->next_function_with_gimple_body (node )) \ | ||||||||||||||||
3079 | for ((node) = symtab->first_function_with_gimple_body (); (node); \ | ||||||||||||||||
3080 | (node) = symtab->next_function_with_gimple_body (node)) | ||||||||||||||||
3081 | |||||||||||||||||
3082 | /* Uniquize all constants that appear in memory. | ||||||||||||||||
3083 | Each constant in memory thus far output is recorded | ||||||||||||||||
3084 | in `const_desc_table'. */ | ||||||||||||||||
3085 | |||||||||||||||||
3086 | struct GTY((for_user)) constant_descriptor_tree { | ||||||||||||||||
3087 | /* A MEM for the constant. */ | ||||||||||||||||
3088 | rtx rtl; | ||||||||||||||||
3089 | |||||||||||||||||
3090 | /* The value of the constant. */ | ||||||||||||||||
3091 | tree value; | ||||||||||||||||
3092 | |||||||||||||||||
3093 | /* Hash of value. Computing the hash from value each time | ||||||||||||||||
3094 | hashfn is called can't work properly, as that means recursive | ||||||||||||||||
3095 | use of the hash table during hash table expansion. */ | ||||||||||||||||
3096 | hashval_t hash; | ||||||||||||||||
3097 | }; | ||||||||||||||||
3098 | |||||||||||||||||
3099 | /* Return true when function is only called directly or it has alias. | ||||||||||||||||
3100 | i.e. it is not externally visible, address was not taken and | ||||||||||||||||
3101 | it is not used in any other non-standard way. */ | ||||||||||||||||
3102 | |||||||||||||||||
3103 | inline bool | ||||||||||||||||
3104 | cgraph_node::only_called_directly_or_aliased_p (void) | ||||||||||||||||
3105 | { | ||||||||||||||||
3106 | gcc_assert (!inlined_to)((void)(!(!inlined_to) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 3106, __FUNCTION__), 0 : 0)); | ||||||||||||||||
3107 | return (!force_output && !address_taken | ||||||||||||||||
3108 | && !ifunc_resolver | ||||||||||||||||
3109 | && !used_from_other_partition | ||||||||||||||||
3110 | && !DECL_VIRTUAL_P (decl)((contains_struct_check ((decl), (TS_DECL_COMMON), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 3110, __FUNCTION__))->decl_common.virtual_flag) | ||||||||||||||||
3111 | && !DECL_STATIC_CONSTRUCTOR (decl)((tree_check ((decl), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 3111, __FUNCTION__, (FUNCTION_DECL)))->function_decl.static_ctor_flag ) | ||||||||||||||||
3112 | && !DECL_STATIC_DESTRUCTOR (decl)((tree_check ((decl), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 3112, __FUNCTION__, (FUNCTION_DECL)))->function_decl.static_dtor_flag ) | ||||||||||||||||
3113 | && !used_from_object_file_p () | ||||||||||||||||
3114 | && !externally_visible); | ||||||||||||||||
3115 | } | ||||||||||||||||
3116 | |||||||||||||||||
3117 | /* Return true when function can be removed from callgraph | ||||||||||||||||
3118 | if all direct calls are eliminated. */ | ||||||||||||||||
3119 | |||||||||||||||||
3120 | inline bool | ||||||||||||||||
3121 | cgraph_node::can_remove_if_no_direct_calls_and_refs_p (void) | ||||||||||||||||
3122 | { | ||||||||||||||||
3123 | gcc_checking_assert (!inlined_to)((void)(!(!inlined_to) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 3123, __FUNCTION__), 0 : 0)); | ||||||||||||||||
3124 | /* Extern inlines can always go, we will use the external definition. */ | ||||||||||||||||
3125 | if (DECL_EXTERNAL (decl)((contains_struct_check ((decl), (TS_DECL_COMMON), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 3125, __FUNCTION__))->decl_common.decl_flag_1)) | ||||||||||||||||
3126 | return true; | ||||||||||||||||
3127 | /* When function is needed, we cannot remove it. */ | ||||||||||||||||
3128 | if (force_output || used_from_other_partition) | ||||||||||||||||
3129 | return false; | ||||||||||||||||
3130 | if (DECL_STATIC_CONSTRUCTOR (decl)((tree_check ((decl), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 3130, __FUNCTION__, (FUNCTION_DECL)))->function_decl.static_ctor_flag ) | ||||||||||||||||
3131 | || DECL_STATIC_DESTRUCTOR (decl)((tree_check ((decl), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 3131, __FUNCTION__, (FUNCTION_DECL)))->function_decl.static_dtor_flag )) | ||||||||||||||||
3132 | return false; | ||||||||||||||||
3133 | /* Only COMDAT functions can be removed if externally visible. */ | ||||||||||||||||
3134 | if (externally_visible | ||||||||||||||||
3135 | && ((!DECL_COMDAT (decl)((contains_struct_check ((decl), (TS_DECL_WITH_VIS), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 3135, __FUNCTION__))->decl_with_vis.comdat_flag) || ifunc_resolver) | ||||||||||||||||
3136 | || forced_by_abi | ||||||||||||||||
3137 | || used_from_object_file_p ())) | ||||||||||||||||
3138 | return false; | ||||||||||||||||
3139 | return true; | ||||||||||||||||
3140 | } | ||||||||||||||||
3141 | |||||||||||||||||
3142 | /* Verify cgraph, if consistency checking is enabled. */ | ||||||||||||||||
3143 | |||||||||||||||||
3144 | inline void | ||||||||||||||||
3145 | cgraph_node::checking_verify_cgraph_nodes (void) | ||||||||||||||||
3146 | { | ||||||||||||||||
3147 | if (flag_checkingglobal_options.x_flag_checking) | ||||||||||||||||
3148 | cgraph_node::verify_cgraph_nodes (); | ||||||||||||||||
3149 | } | ||||||||||||||||
3150 | |||||||||||||||||
3151 | /* Return true when variable can be removed from variable pool | ||||||||||||||||
3152 | if all direct calls are eliminated. */ | ||||||||||||||||
3153 | |||||||||||||||||
3154 | inline bool | ||||||||||||||||
3155 | varpool_node::can_remove_if_no_refs_p (void) | ||||||||||||||||
3156 | { | ||||||||||||||||
3157 | if (DECL_EXTERNAL (decl)((contains_struct_check ((decl), (TS_DECL_COMMON), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 3157, __FUNCTION__))->decl_common.decl_flag_1)) | ||||||||||||||||
3158 | return true; | ||||||||||||||||
3159 | return (!force_output && !used_from_other_partition | ||||||||||||||||
3160 | && ((DECL_COMDAT (decl)((contains_struct_check ((decl), (TS_DECL_WITH_VIS), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 3160, __FUNCTION__))->decl_with_vis.comdat_flag) | ||||||||||||||||
3161 | && !forced_by_abi | ||||||||||||||||
3162 | && !used_from_object_file_p ()) | ||||||||||||||||
3163 | || !externally_visible | ||||||||||||||||
3164 | || DECL_HAS_VALUE_EXPR_P (decl)((tree_check3 ((decl), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 3164, __FUNCTION__, (VAR_DECL), (PARM_DECL), (RESULT_DECL)) ) ->decl_common.decl_flag_2))); | ||||||||||||||||
3165 | } | ||||||||||||||||
3166 | |||||||||||||||||
3167 | /* Return true when all references to variable must be visible in ipa_ref_list. | ||||||||||||||||
3168 | i.e. if the variable is not externally visible or not used in some magic | ||||||||||||||||
3169 | way (asm statement or such). | ||||||||||||||||
3170 | The magic uses are all summarized in force_output flag. */ | ||||||||||||||||
3171 | |||||||||||||||||
3172 | inline bool | ||||||||||||||||
3173 | varpool_node::all_refs_explicit_p () | ||||||||||||||||
3174 | { | ||||||||||||||||
3175 | return (definition | ||||||||||||||||
3176 | && !externally_visible | ||||||||||||||||
3177 | && !used_from_other_partition | ||||||||||||||||
3178 | && !force_output); | ||||||||||||||||
3179 | } | ||||||||||||||||
3180 | |||||||||||||||||
3181 | struct tree_descriptor_hasher : ggc_ptr_hash<constant_descriptor_tree> | ||||||||||||||||
3182 | { | ||||||||||||||||
3183 | static hashval_t hash (constant_descriptor_tree *); | ||||||||||||||||
3184 | static bool equal (constant_descriptor_tree *, constant_descriptor_tree *); | ||||||||||||||||
3185 | }; | ||||||||||||||||
3186 | |||||||||||||||||
3187 | /* Constant pool accessor function. */ | ||||||||||||||||
3188 | hash_table<tree_descriptor_hasher> *constant_pool_htab (void); | ||||||||||||||||
3189 | |||||||||||||||||
3190 | /* Return node that alias is aliasing. */ | ||||||||||||||||
3191 | |||||||||||||||||
3192 | inline cgraph_node * | ||||||||||||||||
3193 | cgraph_node::get_alias_target (void) | ||||||||||||||||
3194 | { | ||||||||||||||||
3195 | return dyn_cast <cgraph_node *> (symtab_node::get_alias_target ()); | ||||||||||||||||
3196 | } | ||||||||||||||||
3197 | |||||||||||||||||
3198 | /* Return node that alias is aliasing. */ | ||||||||||||||||
3199 | |||||||||||||||||
3200 | inline varpool_node * | ||||||||||||||||
3201 | varpool_node::get_alias_target (void) | ||||||||||||||||
3202 | { | ||||||||||||||||
3203 | return dyn_cast <varpool_node *> (symtab_node::get_alias_target ()); | ||||||||||||||||
3204 | } | ||||||||||||||||
3205 | |||||||||||||||||
3206 | /* Walk the alias chain to return the symbol NODE is alias of. | ||||||||||||||||
3207 | If NODE is not an alias, return NODE. | ||||||||||||||||
3208 | When AVAILABILITY is non-NULL, get minimal availability in the chain. | ||||||||||||||||
3209 | When REF is non-NULL, assume that reference happens in symbol REF | ||||||||||||||||
3210 | when determining the availability. */ | ||||||||||||||||
3211 | |||||||||||||||||
3212 | inline symtab_node * | ||||||||||||||||
3213 | symtab_node::ultimate_alias_target (enum availability *availability, | ||||||||||||||||
3214 | symtab_node *ref) | ||||||||||||||||
3215 | { | ||||||||||||||||
3216 | if (!alias) | ||||||||||||||||
3217 | { | ||||||||||||||||
3218 | if (availability) | ||||||||||||||||
3219 | *availability = get_availability (ref); | ||||||||||||||||
3220 | return this; | ||||||||||||||||
3221 | } | ||||||||||||||||
3222 | |||||||||||||||||
3223 | return ultimate_alias_target_1 (availability, ref); | ||||||||||||||||
3224 | } | ||||||||||||||||
3225 | |||||||||||||||||
3226 | /* Given function symbol, walk the alias chain to return the function node | ||||||||||||||||
3227 | is alias of. Do not walk through thunks. | ||||||||||||||||
3228 | When AVAILABILITY is non-NULL, get minimal availability in the chain. | ||||||||||||||||
3229 | When REF is non-NULL, assume that reference happens in symbol REF | ||||||||||||||||
3230 | when determining the availability. */ | ||||||||||||||||
3231 | |||||||||||||||||
3232 | inline cgraph_node * | ||||||||||||||||
3233 | cgraph_node::ultimate_alias_target (enum availability *availability, | ||||||||||||||||
3234 | symtab_node *ref) | ||||||||||||||||
3235 | { | ||||||||||||||||
3236 | cgraph_node *n = dyn_cast <cgraph_node *> | ||||||||||||||||
3237 | (symtab_node::ultimate_alias_target (availability, ref)); | ||||||||||||||||
3238 | if (!n && availability) | ||||||||||||||||
3239 | *availability = AVAIL_NOT_AVAILABLE; | ||||||||||||||||
3240 | return n; | ||||||||||||||||
3241 | } | ||||||||||||||||
3242 | |||||||||||||||||
3243 | /* For given variable pool node, walk the alias chain to return the function | ||||||||||||||||
3244 | the variable is alias of. Do not walk through thunks. | ||||||||||||||||
3245 | When AVAILABILITY is non-NULL, get minimal availability in the chain. | ||||||||||||||||
3246 | When REF is non-NULL, assume that reference happens in symbol REF | ||||||||||||||||
3247 | when determining the availability. */ | ||||||||||||||||
3248 | |||||||||||||||||
3249 | inline varpool_node * | ||||||||||||||||
3250 | varpool_node::ultimate_alias_target (availability *availability, | ||||||||||||||||
3251 | symtab_node *ref) | ||||||||||||||||
3252 | { | ||||||||||||||||
3253 | varpool_node *n = dyn_cast <varpool_node *> | ||||||||||||||||
3254 | (symtab_node::ultimate_alias_target (availability, ref)); | ||||||||||||||||
3255 | |||||||||||||||||
3256 | if (!n && availability) | ||||||||||||||||
3257 | *availability = AVAIL_NOT_AVAILABLE; | ||||||||||||||||
3258 | return n; | ||||||||||||||||
3259 | } | ||||||||||||||||
3260 | |||||||||||||||||
3261 | /* Set callee N of call graph edge and add it to the corresponding set of | ||||||||||||||||
3262 | callers. */ | ||||||||||||||||
3263 | |||||||||||||||||
3264 | inline void | ||||||||||||||||
3265 | cgraph_edge::set_callee (cgraph_node *n) | ||||||||||||||||
3266 | { | ||||||||||||||||
3267 | prev_caller = NULLnullptr; | ||||||||||||||||
3268 | if (n->callers) | ||||||||||||||||
3269 | n->callers->prev_caller = this; | ||||||||||||||||
3270 | next_caller = n->callers; | ||||||||||||||||
3271 | n->callers = this; | ||||||||||||||||
3272 | callee = n; | ||||||||||||||||
3273 | } | ||||||||||||||||
3274 | |||||||||||||||||
3275 | /* Return true when the edge represents a direct recursion. */ | ||||||||||||||||
3276 | |||||||||||||||||
3277 | inline bool | ||||||||||||||||
3278 | cgraph_edge::recursive_p (void) | ||||||||||||||||
3279 | { | ||||||||||||||||
3280 | cgraph_node *c = callee->ultimate_alias_target (); | ||||||||||||||||
3281 | if (caller->inlined_to) | ||||||||||||||||
3282 | return caller->inlined_to->decl == c->decl; | ||||||||||||||||
3283 | else | ||||||||||||||||
3284 | return caller->decl == c->decl; | ||||||||||||||||
3285 | } | ||||||||||||||||
3286 | |||||||||||||||||
3287 | /* Remove the edge from the list of the callers of the callee. */ | ||||||||||||||||
3288 | |||||||||||||||||
3289 | inline void | ||||||||||||||||
3290 | cgraph_edge::remove_callee (void) | ||||||||||||||||
3291 | { | ||||||||||||||||
3292 | gcc_assert (!indirect_unknown_callee)((void)(!(!indirect_unknown_callee) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 3292, __FUNCTION__), 0 : 0)); | ||||||||||||||||
3293 | if (prev_caller) | ||||||||||||||||
3294 | prev_caller->next_caller = next_caller; | ||||||||||||||||
3295 | if (next_caller) | ||||||||||||||||
3296 | next_caller->prev_caller = prev_caller; | ||||||||||||||||
3297 | if (!prev_caller) | ||||||||||||||||
3298 | callee->callers = next_caller; | ||||||||||||||||
3299 | } | ||||||||||||||||
3300 | |||||||||||||||||
3301 | /* Return true if call must bind to current definition. */ | ||||||||||||||||
3302 | |||||||||||||||||
3303 | inline bool | ||||||||||||||||
3304 | cgraph_edge::binds_to_current_def_p () | ||||||||||||||||
3305 | { | ||||||||||||||||
3306 | if (callee) | ||||||||||||||||
3307 | return callee->binds_to_current_def_p (caller); | ||||||||||||||||
3308 | else | ||||||||||||||||
3309 | return false; | ||||||||||||||||
3310 | } | ||||||||||||||||
3311 | |||||||||||||||||
3312 | /* Expected frequency of executions within the function. | ||||||||||||||||
3313 | When set to CGRAPH_FREQ_BASE, the edge is expected to be called once | ||||||||||||||||
3314 | per function call. The range is 0 to CGRAPH_FREQ_MAX. */ | ||||||||||||||||
3315 | |||||||||||||||||
3316 | inline int | ||||||||||||||||
3317 | cgraph_edge::frequency () | ||||||||||||||||
3318 | { | ||||||||||||||||
3319 | return count.to_cgraph_frequency (caller->inlined_to | ||||||||||||||||
3320 | ? caller->inlined_to->count | ||||||||||||||||
3321 | : caller->count); | ||||||||||||||||
3322 | } | ||||||||||||||||
3323 | |||||||||||||||||
3324 | |||||||||||||||||
3325 | /* Return true if the TM_CLONE bit is set for a given FNDECL. */ | ||||||||||||||||
3326 | inline bool | ||||||||||||||||
3327 | decl_is_tm_clone (const_tree fndecl) | ||||||||||||||||
3328 | { | ||||||||||||||||
3329 | cgraph_node *n = cgraph_node::get (fndecl); | ||||||||||||||||
3330 | if (n) | ||||||||||||||||
3331 | return n->tm_clone; | ||||||||||||||||
3332 | return false; | ||||||||||||||||
3333 | } | ||||||||||||||||
3334 | |||||||||||||||||
3335 | /* Likewise indicate that a node is needed, i.e. reachable via some | ||||||||||||||||
3336 | external means. */ | ||||||||||||||||
3337 | |||||||||||||||||
3338 | inline void | ||||||||||||||||
3339 | cgraph_node::mark_force_output (void) | ||||||||||||||||
3340 | { | ||||||||||||||||
3341 | force_output = 1; | ||||||||||||||||
3342 | gcc_checking_assert (!inlined_to)((void)(!(!inlined_to) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 3342, __FUNCTION__), 0 : 0)); | ||||||||||||||||
3343 | } | ||||||||||||||||
3344 | |||||||||||||||||
3345 | /* Return true if function should be optimized for size. */ | ||||||||||||||||
3346 | |||||||||||||||||
3347 | inline enum optimize_size_level | ||||||||||||||||
3348 | cgraph_node::optimize_for_size_p (void) | ||||||||||||||||
3349 | { | ||||||||||||||||
3350 | if (opt_for_fn (decl, optimize_size)(opts_for_fn (decl)->x_optimize_size)) | ||||||||||||||||
3351 | return OPTIMIZE_SIZE_MAX; | ||||||||||||||||
3352 | if (count == profile_count::zero ()) | ||||||||||||||||
3353 | return OPTIMIZE_SIZE_MAX; | ||||||||||||||||
3354 | if (frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED) | ||||||||||||||||
3355 | return OPTIMIZE_SIZE_BALANCED; | ||||||||||||||||
3356 | else | ||||||||||||||||
3357 | return OPTIMIZE_SIZE_NO; | ||||||||||||||||
3358 | } | ||||||||||||||||
3359 | |||||||||||||||||
3360 | /* Return symtab_node for NODE or create one if it is not present | ||||||||||||||||
3361 | in symtab. */ | ||||||||||||||||
3362 | |||||||||||||||||
3363 | inline symtab_node * | ||||||||||||||||
3364 | symtab_node::get_create (tree node) | ||||||||||||||||
3365 | { | ||||||||||||||||
3366 | if (TREE_CODE (node)((enum tree_code) (node)->base.code) == VAR_DECL) | ||||||||||||||||
3367 | return varpool_node::get_create (node); | ||||||||||||||||
3368 | else | ||||||||||||||||
3369 | return cgraph_node::get_create (node); | ||||||||||||||||
3370 | } | ||||||||||||||||
3371 | |||||||||||||||||
3372 | /* Return availability of NODE when referenced from REF. */ | ||||||||||||||||
3373 | |||||||||||||||||
3374 | inline enum availability | ||||||||||||||||
3375 | symtab_node::get_availability (symtab_node *ref) | ||||||||||||||||
3376 | { | ||||||||||||||||
3377 | if (is_a <cgraph_node *> (this)) | ||||||||||||||||
3378 | return dyn_cast <cgraph_node *> (this)->get_availability (ref); | ||||||||||||||||
3379 | else | ||||||||||||||||
3380 | return dyn_cast <varpool_node *> (this)->get_availability (ref); | ||||||||||||||||
3381 | } | ||||||||||||||||
3382 | |||||||||||||||||
3383 | /* Call callback on symtab node and aliases associated to this node. | ||||||||||||||||
3384 | When INCLUDE_OVERWRITABLE is false, overwritable symbols are skipped. */ | ||||||||||||||||
3385 | |||||||||||||||||
3386 | inline bool | ||||||||||||||||
3387 | symtab_node::call_for_symbol_and_aliases (bool (*callback) (symtab_node *, | ||||||||||||||||
3388 | void *), | ||||||||||||||||
3389 | void *data, | ||||||||||||||||
3390 | bool include_overwritable) | ||||||||||||||||
3391 | { | ||||||||||||||||
3392 | if (include_overwritable | ||||||||||||||||
3393 | || get_availability () > AVAIL_INTERPOSABLE) | ||||||||||||||||
3394 | { | ||||||||||||||||
3395 | if (callback (this, data)) | ||||||||||||||||
3396 | return true; | ||||||||||||||||
3397 | } | ||||||||||||||||
3398 | if (has_aliases_p ()) | ||||||||||||||||
3399 | return call_for_symbol_and_aliases_1 (callback, data, include_overwritable); | ||||||||||||||||
3400 | return false; | ||||||||||||||||
3401 | } | ||||||||||||||||
3402 | |||||||||||||||||
3403 | /* Call callback on function and aliases associated to the function. | ||||||||||||||||
3404 | When INCLUDE_OVERWRITABLE is false, overwritable symbols are | ||||||||||||||||
3405 | skipped. */ | ||||||||||||||||
3406 | |||||||||||||||||
3407 | inline bool | ||||||||||||||||
3408 | cgraph_node::call_for_symbol_and_aliases (bool (*callback) (cgraph_node *, | ||||||||||||||||
3409 | void *), | ||||||||||||||||
3410 | void *data, | ||||||||||||||||
3411 | bool include_overwritable) | ||||||||||||||||
3412 | { | ||||||||||||||||
3413 | if (include_overwritable | ||||||||||||||||
3414 | || get_availability () > AVAIL_INTERPOSABLE) | ||||||||||||||||
3415 | { | ||||||||||||||||
3416 | if (callback (this, data)) | ||||||||||||||||
3417 | return true; | ||||||||||||||||
3418 | } | ||||||||||||||||
3419 | if (has_aliases_p ()) | ||||||||||||||||
3420 | return call_for_symbol_and_aliases_1 (callback, data, include_overwritable); | ||||||||||||||||
3421 | return false; | ||||||||||||||||
3422 | } | ||||||||||||||||
3423 | |||||||||||||||||
3424 | /* Call callback on varpool symbol and aliases associated to varpool symbol. | ||||||||||||||||
3425 | When INCLUDE_OVERWRITABLE is false, overwritable symbols are | ||||||||||||||||
3426 | skipped. */ | ||||||||||||||||
3427 | |||||||||||||||||
3428 | inline bool | ||||||||||||||||
3429 | varpool_node::call_for_symbol_and_aliases (bool (*callback) (varpool_node *, | ||||||||||||||||
3430 | void *), | ||||||||||||||||
3431 | void *data, | ||||||||||||||||
3432 | bool include_overwritable) | ||||||||||||||||
3433 | { | ||||||||||||||||
3434 | if (include_overwritable | ||||||||||||||||
3435 | || get_availability () > AVAIL_INTERPOSABLE) | ||||||||||||||||
3436 | { | ||||||||||||||||
3437 | if (callback (this, data)) | ||||||||||||||||
3438 | return true; | ||||||||||||||||
3439 | } | ||||||||||||||||
3440 | if (has_aliases_p ()) | ||||||||||||||||
3441 | return call_for_symbol_and_aliases_1 (callback, data, include_overwritable); | ||||||||||||||||
3442 | return false; | ||||||||||||||||
3443 | } | ||||||||||||||||
3444 | |||||||||||||||||
3445 | /* Return true if reference may be used in address compare. */ | ||||||||||||||||
3446 | |||||||||||||||||
3447 | inline bool | ||||||||||||||||
3448 | ipa_ref::address_matters_p () | ||||||||||||||||
3449 | { | ||||||||||||||||
3450 | if (use != IPA_REF_ADDR) | ||||||||||||||||
3451 | return false; | ||||||||||||||||
3452 | /* Addresses taken from virtual tables are never compared. */ | ||||||||||||||||
3453 | if (is_a <varpool_node *> (referring) | ||||||||||||||||
3454 | && DECL_VIRTUAL_P (referring->decl)((contains_struct_check ((referring->decl), (TS_DECL_COMMON ), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 3454, __FUNCTION__))->decl_common.virtual_flag)) | ||||||||||||||||
3455 | return false; | ||||||||||||||||
3456 | return referred->address_can_be_compared_p (); | ||||||||||||||||
3457 | } | ||||||||||||||||
3458 | |||||||||||||||||
3459 | /* Build polymorphic call context for indirect call E. */ | ||||||||||||||||
3460 | |||||||||||||||||
3461 | inline | ||||||||||||||||
3462 | ipa_polymorphic_call_context::ipa_polymorphic_call_context (cgraph_edge *e) | ||||||||||||||||
3463 | { | ||||||||||||||||
3464 | gcc_checking_assert (e->indirect_info->polymorphic)((void)(!(e->indirect_info->polymorphic) ? fancy_abort ( "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 3464, __FUNCTION__), 0 : 0)); | ||||||||||||||||
3465 | *this = e->indirect_info->context; | ||||||||||||||||
3466 | } | ||||||||||||||||
3467 | |||||||||||||||||
3468 | /* Build empty "I know nothing" context. */ | ||||||||||||||||
3469 | |||||||||||||||||
3470 | inline | ||||||||||||||||
3471 | ipa_polymorphic_call_context::ipa_polymorphic_call_context () | ||||||||||||||||
3472 | { | ||||||||||||||||
3473 | clear_speculation (); | ||||||||||||||||
3474 | clear_outer_type (); | ||||||||||||||||
3475 | invalid = false; | ||||||||||||||||
3476 | } | ||||||||||||||||
3477 | |||||||||||||||||
3478 | /* Make context non-speculative. */ | ||||||||||||||||
3479 | |||||||||||||||||
3480 | inline void | ||||||||||||||||
3481 | ipa_polymorphic_call_context::clear_speculation () | ||||||||||||||||
3482 | { | ||||||||||||||||
3483 | speculative_outer_type = NULLnullptr; | ||||||||||||||||
3484 | speculative_offset = 0; | ||||||||||||||||
3485 | speculative_maybe_derived_type = false; | ||||||||||||||||
3486 | } | ||||||||||||||||
3487 | |||||||||||||||||
3488 | /* Produce context specifying all derived types of OTR_TYPE. If OTR_TYPE is | ||||||||||||||||
3489 | NULL, the context is set to dummy "I know nothing" setting. */ | ||||||||||||||||
3490 | |||||||||||||||||
3491 | inline void | ||||||||||||||||
3492 | ipa_polymorphic_call_context::clear_outer_type (tree otr_type) | ||||||||||||||||
3493 | { | ||||||||||||||||
3494 | outer_type = otr_type ? TYPE_MAIN_VARIANT (otr_type)((tree_class_check ((otr_type), (tcc_type), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 3494, __FUNCTION__))->type_common.main_variant) : NULLnullptr; | ||||||||||||||||
3495 | offset = 0; | ||||||||||||||||
3496 | maybe_derived_type = true; | ||||||||||||||||
3497 | maybe_in_construction = true; | ||||||||||||||||
3498 | dynamic = true; | ||||||||||||||||
3499 | } | ||||||||||||||||
3500 | |||||||||||||||||
3501 | /* Adjust all offsets in contexts by OFF bits. */ | ||||||||||||||||
3502 | |||||||||||||||||
3503 | inline void | ||||||||||||||||
3504 | ipa_polymorphic_call_context::offset_by (HOST_WIDE_INTlong off) | ||||||||||||||||
3505 | { | ||||||||||||||||
3506 | if (outer_type) | ||||||||||||||||
3507 | offset += off; | ||||||||||||||||
3508 | if (speculative_outer_type) | ||||||||||||||||
3509 | speculative_offset += off; | ||||||||||||||||
3510 | } | ||||||||||||||||
3511 | |||||||||||||||||
3512 | /* Return TRUE if context is fully useless. */ | ||||||||||||||||
3513 | |||||||||||||||||
3514 | inline bool | ||||||||||||||||
3515 | ipa_polymorphic_call_context::useless_p () const | ||||||||||||||||
3516 | { | ||||||||||||||||
3517 | return (!outer_type && !speculative_outer_type); | ||||||||||||||||
3518 | } | ||||||||||||||||
3519 | |||||||||||||||||
3520 | /* When using fprintf (or similar), problems can arise with | ||||||||||||||||
3521 | transient generated strings. Many string-generation APIs | ||||||||||||||||
3522 | only support one result being alive at once (e.g. by | ||||||||||||||||
3523 | returning a pointer to a statically-allocated buffer). | ||||||||||||||||
3524 | |||||||||||||||||
3525 | If there is more than one generated string within one | ||||||||||||||||
3526 | fprintf call: the first string gets evicted or overwritten | ||||||||||||||||
3527 | by the second, before fprintf is fully evaluated. | ||||||||||||||||
3528 | See e.g. PR/53136. | ||||||||||||||||
3529 | |||||||||||||||||
3530 | This function provides a workaround for this, by providing | ||||||||||||||||
3531 | a simple way to create copies of these transient strings, | ||||||||||||||||
3532 | without the need to have explicit cleanup: | ||||||||||||||||
3533 | |||||||||||||||||
3534 | fprintf (dumpfile, "string 1: %s string 2:%s\n", | ||||||||||||||||
3535 | xstrdup_for_dump (EXPR_1), | ||||||||||||||||
3536 | xstrdup_for_dump (EXPR_2)); | ||||||||||||||||
3537 | |||||||||||||||||
3538 | This is actually a simple wrapper around ggc_strdup, but | ||||||||||||||||
3539 | the name documents the intent. We require that no GC can occur | ||||||||||||||||
3540 | within the fprintf call. */ | ||||||||||||||||
3541 | |||||||||||||||||
3542 | inline const char * | ||||||||||||||||
3543 | xstrdup_for_dump (const char *transient_str) | ||||||||||||||||
3544 | { | ||||||||||||||||
3545 | return ggc_strdup (transient_str)ggc_alloc_string ((transient_str), -1 ); | ||||||||||||||||
3546 | } | ||||||||||||||||
3547 | |||||||||||||||||
3548 | /* During LTO stream-in this predicate can be used to check whether node | ||||||||||||||||
3549 | in question prevails in the linking to save some memory usage. */ | ||||||||||||||||
3550 | inline bool | ||||||||||||||||
3551 | symtab_node::prevailing_p (void) | ||||||||||||||||
3552 | { | ||||||||||||||||
3553 | return definition && ((!TREE_PUBLIC (decl)((decl)->base.public_flag) && !DECL_EXTERNAL (decl)((contains_struct_check ((decl), (TS_DECL_COMMON), "/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/cgraph.h" , 3553, __FUNCTION__))->decl_common.decl_flag_1)) | ||||||||||||||||
3554 | || previous_sharing_asm_name == NULLnullptr); | ||||||||||||||||
3555 | } | ||||||||||||||||
3556 | |||||||||||||||||
3557 | extern GTY(()) symbol_table *saved_symtab; | ||||||||||||||||
3558 | |||||||||||||||||
3559 | #if CHECKING_P1 | ||||||||||||||||
3560 | |||||||||||||||||
3561 | namespace selftest { | ||||||||||||||||
3562 | |||||||||||||||||
3563 | /* An RAII-style class for use in selftests for temporarily using a different | ||||||||||||||||
3564 | symbol_table, so that such tests can be isolated from each other. */ | ||||||||||||||||
3565 | |||||||||||||||||
3566 | class symbol_table_test | ||||||||||||||||
3567 | { | ||||||||||||||||
3568 | public: | ||||||||||||||||
3569 | /* Constructor. Override "symtab". */ | ||||||||||||||||
3570 | symbol_table_test (); | ||||||||||||||||
3571 | |||||||||||||||||
3572 | /* Destructor. Restore the saved_symtab. */ | ||||||||||||||||
3573 | ~symbol_table_test (); | ||||||||||||||||
3574 | }; | ||||||||||||||||
3575 | |||||||||||||||||
3576 | } // namespace selftest | ||||||||||||||||
3577 | |||||||||||||||||
3578 | #endif /* CHECKING_P */ | ||||||||||||||||
3579 | |||||||||||||||||
3580 | #endif /* GCC_CGRAPH_H */ |
1 | /* Dynamic testing for abstract is-a relationships. |
2 | Copyright (C) 2012-2023 Free Software Foundation, Inc. |
3 | Contributed by Lawrence Crowl. |
4 | |
5 | This file is part of GCC. |
6 | |
7 | GCC is free software; you can redistribute it and/or modify it under |
8 | the terms of the GNU General Public License as published by the Free |
9 | Software Foundation; either version 3, or (at your option) any later |
10 | version. |
11 | |
12 | GCC is distributed in the hope that it will be useful, but WITHOUT ANY |
13 | WARRANTY; without even the implied warranty of MERCHANTABILITY or |
14 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
15 | for more details. |
16 | |
17 | You should have received a copy of the GNU General Public License |
18 | along with GCC; see the file COPYING3. If not see |
19 | <http://www.gnu.org/licenses/>. */ |
20 | |
21 | |
22 | /* This header generic type query and conversion functions. |
23 | |
24 | |
25 | USING THE GENERIC TYPE FACILITY |
26 | |
27 | |
28 | The user functions are: |
29 | |
30 | bool is_a <TYPE> (pointer) |
31 | |
32 | Tests whether the pointer actually points to a more derived TYPE. |
33 | |
34 | Suppose you have a symtab_node *ptr, AKA symtab_node *ptr. You can test |
35 | whether it points to a 'derived' cgraph_node as follows. |
36 | |
37 | if (is_a <cgraph_node *> (ptr)) |
38 | .... |
39 | |
40 | |
41 | TYPE as_a <TYPE> (pointer) |
42 | |
43 | Converts pointer to a TYPE. |
44 | |
45 | You can just assume that it is such a node. |
46 | |
47 | do_something_with (as_a <cgraph_node *> *ptr); |
48 | |
49 | TYPE safe_as_a <TYPE> (pointer) |
50 | |
51 | Like as_a <TYPE> (pointer), but where pointer could be NULL. This |
52 | adds a check against NULL where the regular is_a_helper hook for TYPE |
53 | assumes non-NULL. |
54 | |
55 | do_something_with (safe_as_a <cgraph_node *> *ptr); |
56 | |
57 | TYPE dyn_cast <TYPE> (pointer) |
58 | |
59 | Converts pointer to TYPE if and only if "is_a <TYPE> pointer". Otherwise, |
60 | returns NULL. This function is essentially a checked down cast. |
61 | |
62 | This functions reduce compile time and increase type safety when treating a |
63 | generic item as a more specific item. |
64 | |
65 | You can test and obtain a pointer to the 'derived' type in one indivisible |
66 | operation. |
67 | |
68 | if (cgraph_node *cptr = dyn_cast <cgraph_node *> (ptr)) |
69 | .... |
70 | |
71 | As an example, the code change is from |
72 | |
73 | if (symtab_function_p (node)) |
74 | { |
75 | struct cgraph_node *cnode = cgraph (node); |
76 | .... |
77 | } |
78 | |
79 | to |
80 | |
81 | if (cgraph_node *cnode = dyn_cast <cgraph_node *> (node)) |
82 | { |
83 | .... |
84 | } |
85 | |
86 | The necessary conditional test defines a variable that holds a known good |
87 | pointer to the specific item and avoids subsequent conversion calls and |
88 | the assertion checks that may come with them. |
89 | |
90 | When, the property test is embedded within a larger condition, the |
91 | variable declaration gets pulled out of the condition. (This approach |
92 | leaves some room for using the variable inappropriately.) |
93 | |
94 | if (symtab_variable_p (node) && varpool (node)->finalized) |
95 | varpool_analyze_node (varpool (node)); |
96 | |
97 | becomes |
98 | |
99 | varpool_node *vnode = dyn_cast <varpool_node *> (node); |
100 | if (vnode && vnode->finalized) |
101 | varpool_analyze_node (vnode); |
102 | |
103 | Note that we have converted two sets of assertions in the calls to varpool |
104 | into safe and efficient use of a variable. |
105 | |
106 | TYPE safe_dyn_cast <TYPE> (pointer) |
107 | |
108 | Like dyn_cast <TYPE> (pointer), except that it accepts null pointers |
109 | and returns null results for them. |
110 | |
111 | |
112 | If you use these functions and get a 'inline function not defined' or a |
113 | 'missing symbol' error message for 'is_a_helper<....>::test', it means that |
114 | the connection between the types has not been made. See below. |
115 | |
116 | |
117 | EXTENDING THE GENERIC TYPE FACILITY |
118 | |
119 | Method 1 |
120 | -------- |
121 | |
122 | If DERIVED is derived from BASE, and if BASE contains enough information |
123 | to determine whether an object is actually an instance of DERIVED, |
124 | then you can make the above routines work for DERIVED by defining |
125 | a specialization of is_a_helper such as: |
126 | |
127 | template<> |
128 | struct is_a_helper<DERIVED *> : static_is_a_helper<DERIVED *> |
129 | { |
130 | static inline bool test (const BASE *p) { return ...; } |
131 | }; |
132 | |
133 | This test function should return true if P is an instanced of DERIVED. |
134 | This on its own is enough; the comments below for method 2 do not apply. |
135 | |
136 | Method 2 |
137 | -------- |
138 | |
139 | Alternatively, if two types are connected in ways other than C++ |
140 | inheritance, each connection between them must be made by defining a |
141 | specialization of the template member function 'test' of the template |
142 | class 'is_a_helper'. For example, |
143 | |
144 | template <> |
145 | template <> |
146 | inline bool |
147 | is_a_helper <cgraph_node *>::test (symtab_node *p) |
148 | { |
149 | return p->type == SYMTAB_FUNCTION; |
150 | } |
151 | |
152 | If a simple reinterpret_cast between the pointer types is incorrect, then you |
153 | must also specialize the template member function 'cast'. Failure to do so |
154 | when needed may result in a crash. For example, |
155 | |
156 | template <> |
157 | template <> |
158 | inline bool |
159 | is_a_helper <cgraph_node *>::cast (symtab_node *p) |
160 | { |
161 | return &p->x_function; |
162 | } |
163 | |
164 | */ |
165 | |
166 | #ifndef GCC_IS_A_H |
167 | #define GCC_IS_A_H |
168 | |
169 | /* A base class that specializations of is_a_helper can use if casting |
170 | U * to T is simply a reinterpret_cast. */ |
171 | |
172 | template <typename T> |
173 | struct reinterpret_is_a_helper |
174 | { |
175 | template <typename U> |
176 | static inline T cast (U *p) { return reinterpret_cast <T> (p); } |
177 | }; |
178 | |
179 | /* A base class that specializations of is_a_helper can use if casting |
180 | U * to T is simply a static_cast. This is more type-safe than |
181 | reinterpret_is_a_helper. */ |
182 | |
183 | template <typename T> |
184 | struct static_is_a_helper |
185 | { |
186 | template <typename U> |
187 | static inline T cast (U *p) { return static_cast <T> (p); } |
188 | }; |
189 | |
190 | /* A generic type conversion internal helper class. */ |
191 | |
192 | template <typename T> |
193 | struct is_a_helper : reinterpret_is_a_helper<T> |
194 | { |
195 | template <typename U> |
196 | static inline bool test (U *p); |
197 | }; |
198 | |
199 | /* Reuse the definition of is_a_helper<T *> to implement |
200 | is_a_helper<const T *>. */ |
201 | |
202 | template <typename T> |
203 | struct is_a_helper<const T *> |
204 | { |
205 | template <typename U> |
206 | static inline const T *cast (const U *p) |
207 | { |
208 | return is_a_helper<T *>::cast (const_cast <U *> (p)); |
209 | } |
210 | template <typename U> |
211 | static inline bool test (const U *p) |
212 | { |
213 | return is_a_helper<T *>::test (p); |
214 | } |
215 | }; |
216 | |
217 | /* Note that we deliberately do not define the 'test' member template. Not |
218 | doing so will result in a build-time error for type relationships that have |
219 | not been defined, rather than a run-time error. See the discussion above |
220 | for when to define this member. */ |
221 | |
222 | /* The public interface. */ |
223 | |
224 | /* A generic test for a type relationship. See the discussion above for when |
225 | to use this function. The question answered is "Is type T a derived type of |
226 | type U?". */ |
227 | |
228 | template <typename T, typename U> |
229 | inline bool |
230 | is_a (U *p) |
231 | { |
232 | return is_a_helper<T>::test (p); |
233 | } |
234 | |
235 | /* A generic conversion from a base type U to a derived type T. See the |
236 | discussion above for when to use this function. */ |
237 | |
238 | template <typename T, typename U> |
239 | inline T |
240 | as_a (U *p) |
241 | { |
242 | gcc_checking_assert (is_a <T> (p))((void)(!(is_a <T> (p)) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/is-a.h" , 242, __FUNCTION__), 0 : 0)); |
243 | return is_a_helper <T>::cast (p); |
244 | } |
245 | |
246 | /* Similar to as_a<>, but where the pointer can be NULL, even if |
247 | is_a_helper<T> doesn't check for NULL. */ |
248 | |
249 | template <typename T, typename U> |
250 | inline T |
251 | safe_as_a (U *p) |
252 | { |
253 | if (p) |
254 | { |
255 | gcc_checking_assert (is_a <T> (p))((void)(!(is_a <T> (p)) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/is-a.h" , 255, __FUNCTION__), 0 : 0)); |
256 | return is_a_helper <T>::cast (p); |
257 | } |
258 | else |
259 | return NULLnullptr; |
260 | } |
261 | |
262 | /* A generic checked conversion from a base type U to a derived type T. See |
263 | the discussion above for when to use this function. */ |
264 | |
265 | template <typename T, typename U> |
266 | inline T |
267 | dyn_cast (U *p) |
268 | { |
269 | if (is_a <T> (p)) |
270 | return is_a_helper <T>::cast (p); |
271 | else |
272 | return static_cast <T> (0); |
273 | } |
274 | |
275 | /* Similar to dyn_cast, except that the pointer may be null. */ |
276 | |
277 | template <typename T, typename U> |
278 | inline T |
279 | safe_dyn_cast (U *p) |
280 | { |
281 | return p ? dyn_cast <T> (p) : 0; |
282 | } |
283 | |
284 | #endif /* GCC_IS_A_H */ |
1 | /* Callgraph summary data structure. | |||
2 | Copyright (C) 2014-2023 Free Software Foundation, Inc. | |||
3 | Contributed by Martin Liska | |||
4 | ||||
5 | This file is part of GCC. | |||
6 | ||||
7 | GCC is free software; you can redistribute it and/or modify it under | |||
8 | the terms of the GNU General Public License as published by the Free | |||
9 | Software Foundation; either version 3, or (at your option) any later | |||
10 | version. | |||
11 | ||||
12 | GCC is distributed in the hope that it will be useful, but WITHOUT ANY | |||
13 | WARRANTY; without even the implied warranty of MERCHANTABILITY or | |||
14 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |||
15 | for more details. | |||
16 | ||||
17 | You should have received a copy of the GNU General Public License | |||
18 | along with GCC; see the file COPYING3. If not see | |||
19 | <http://www.gnu.org/licenses/>. */ | |||
20 | ||||
21 | #ifndef GCC_SYMBOL_SUMMARY_H | |||
22 | #define GCC_SYMBOL_SUMMARY_H | |||
23 | ||||
24 | /* Base class for function_summary and fast_function_summary classes. */ | |||
25 | ||||
26 | template <class T> | |||
27 | class function_summary_base | |||
28 | { | |||
29 | public: | |||
30 | /* Default construction takes SYMTAB as an argument. */ | |||
31 | function_summary_base (symbol_table *symtab, | |||
32 | cgraph_node_hook symtab_insertion, | |||
33 | cgraph_node_hook symtab_removal, | |||
34 | cgraph_2node_hook symtab_duplication | |||
35 | CXX_MEM_STAT_INFO): | |||
36 | m_symtab (symtab), m_symtab_insertion (symtab_insertion), | |||
37 | m_symtab_removal (symtab_removal), | |||
38 | m_symtab_duplication (symtab_duplication), | |||
39 | m_symtab_insertion_hook (NULLnullptr), m_symtab_duplication_hook (NULLnullptr), | |||
40 | m_allocator ("function summary" PASS_MEM_STAT) | |||
41 | { | |||
42 | enable_insertion_hook (); | |||
43 | m_symtab_removal_hook | |||
44 | = m_symtab->add_cgraph_removal_hook (m_symtab_removal, this); | |||
45 | enable_duplication_hook (); | |||
46 | } | |||
47 | ||||
48 | /* Basic implementation of insert operation. */ | |||
49 | virtual void insert (cgraph_node *, T *) | |||
50 | { | |||
51 | /* In most cases, it makes no sense to create summaries without | |||
52 | initializing them. */ | |||
53 | gcc_unreachable ()(fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/symbol-summary.h" , 53, __FUNCTION__)); | |||
54 | } | |||
55 | ||||
56 | /* Basic implementation of removal operation. */ | |||
57 | virtual void remove (cgraph_node *, T *) {} | |||
58 | ||||
59 | /* Basic implementation of duplication operation. */ | |||
60 | virtual void duplicate (cgraph_node *, cgraph_node *, T *, T *) | |||
61 | { | |||
62 | /* It makes no sense to not copy anything during duplication. */ | |||
63 | gcc_unreachable ()(fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/symbol-summary.h" , 63, __FUNCTION__)); | |||
64 | } | |||
65 | ||||
66 | /* Enable insertion hook invocation. */ | |||
67 | void enable_insertion_hook () | |||
68 | { | |||
69 | if (m_symtab_insertion_hook == NULLnullptr) | |||
70 | m_symtab_insertion_hook | |||
71 | = m_symtab->add_cgraph_insertion_hook (m_symtab_insertion, this); | |||
72 | } | |||
73 | ||||
74 | /* Enable insertion hook invocation. */ | |||
75 | void disable_insertion_hook () | |||
76 | { | |||
77 | if (m_symtab_insertion_hook != NULLnullptr) | |||
78 | { | |||
79 | m_symtab->remove_cgraph_insertion_hook (m_symtab_insertion_hook); | |||
80 | m_symtab_insertion_hook = NULLnullptr; | |||
81 | } | |||
82 | } | |||
83 | ||||
84 | /* Enable duplication hook invocation. */ | |||
85 | void enable_duplication_hook () | |||
86 | { | |||
87 | if (m_symtab_duplication_hook == NULLnullptr) | |||
88 | m_symtab_duplication_hook | |||
89 | = m_symtab->add_cgraph_duplication_hook (m_symtab_duplication, this); | |||
90 | } | |||
91 | ||||
92 | /* Enable duplication hook invocation. */ | |||
93 | void disable_duplication_hook () | |||
94 | { | |||
95 | if (m_symtab_duplication_hook != NULLnullptr) | |||
96 | { | |||
97 | m_symtab->remove_cgraph_duplication_hook (m_symtab_duplication_hook); | |||
98 | m_symtab_duplication_hook = NULLnullptr; | |||
99 | } | |||
100 | } | |||
101 | ||||
102 | protected: | |||
103 | /* Allocates new data that are stored within map. */ | |||
104 | T* allocate_new () | |||
105 | { | |||
106 | /* Call gcc_internal_because we do not want to call finalizer for | |||
107 | a type T. We call dtor explicitly. */ | |||
108 | return is_ggc () ? new (ggc_internal_alloc (sizeof (T))) T () | |||
109 | : m_allocator.allocate () ; | |||
110 | } | |||
111 | ||||
112 | /* Release an item that is stored within map. */ | |||
113 | void release (T *item) | |||
114 | { | |||
115 | if (is_ggc ()) | |||
116 | ggc_delete (item); | |||
117 | else | |||
118 | m_allocator.remove (item); | |||
119 | } | |||
120 | ||||
121 | /* Unregister all call-graph hooks. */ | |||
122 | void unregister_hooks (); | |||
123 | ||||
124 | /* Symbol table the summary is registered to. */ | |||
125 | symbol_table *m_symtab; | |||
126 | ||||
127 | /* Insertion function defined by a summary. */ | |||
128 | cgraph_node_hook m_symtab_insertion; | |||
129 | /* Removal function defined by a summary. */ | |||
130 | cgraph_node_hook m_symtab_removal; | |||
131 | /* Duplication function defined by a summary. */ | |||
132 | cgraph_2node_hook m_symtab_duplication; | |||
133 | ||||
134 | /* Internal summary insertion hook pointer. */ | |||
135 | cgraph_node_hook_list *m_symtab_insertion_hook; | |||
136 | /* Internal summary removal hook pointer. */ | |||
137 | cgraph_node_hook_list *m_symtab_removal_hook; | |||
138 | /* Internal summary duplication hook pointer. */ | |||
139 | cgraph_2node_hook_list *m_symtab_duplication_hook; | |||
140 | ||||
141 | private: | |||
142 | /* Return true when the summary uses GGC memory for allocation. */ | |||
143 | virtual bool is_ggc () = 0; | |||
144 | ||||
145 | /* Object allocator for heap allocation. */ | |||
146 | object_allocator<T> m_allocator; | |||
147 | }; | |||
148 | ||||
149 | template <typename T> | |||
150 | void | |||
151 | function_summary_base<T>::unregister_hooks () | |||
152 | { | |||
153 | disable_insertion_hook (); | |||
154 | m_symtab->remove_cgraph_removal_hook (m_symtab_removal_hook); | |||
155 | disable_duplication_hook (); | |||
156 | } | |||
157 | ||||
158 | /* We want to pass just pointer types as argument for function_summary | |||
159 | template class. */ | |||
160 | ||||
161 | template <class T> | |||
162 | class function_summary | |||
163 | { | |||
164 | private: | |||
165 | function_summary(); | |||
166 | }; | |||
167 | ||||
168 | /* Function summary is a helper class that is used to associate a data structure | |||
169 | related to a callgraph node. Typical usage can be seen in IPA passes which | |||
170 | create a temporary pass-related structures. The summary class registers | |||
171 | hooks that are triggered when a new node is inserted, duplicated and deleted. | |||
172 | A user of a summary class can ovewrite virtual methods than are triggered by | |||
173 | the summary if such hook is triggered. Apart from a callgraph node, the user | |||
174 | is given a data structure tied to the node. | |||
175 | ||||
176 | The function summary class can work both with a heap-allocated memory and | |||
177 | a memory gained by garbage collected memory. */ | |||
178 | ||||
179 | template <class T> | |||
180 | class GTY((user)) function_summary <T *>: public function_summary_base<T> | |||
181 | { | |||
182 | public: | |||
183 | /* Default construction takes SYMTAB as an argument. */ | |||
184 | function_summary (symbol_table *symtab, bool ggc = false CXX_MEM_STAT_INFO); | |||
185 | ||||
186 | /* Destructor. */ | |||
187 | virtual ~function_summary (); | |||
188 | ||||
189 | /* Traverses all summarys with a function F called with | |||
190 | ARG as argument. */ | |||
191 | template<typename Arg, bool (*f)(const T &, Arg)> | |||
192 | void traverse (Arg a) const | |||
193 | { | |||
194 | m_map.template traverse <f> (a); | |||
195 | } | |||
196 | ||||
197 | /* Getter for summary callgraph node pointer. If a summary for a node | |||
198 | does not exist it will be created. */ | |||
199 | T* get_create (cgraph_node *node) | |||
200 | { | |||
201 | bool existed; | |||
202 | T **v = &m_map.get_or_insert (node->get_uid (), &existed); | |||
203 | if (!existed) | |||
204 | *v = this->allocate_new (); | |||
205 | ||||
206 | return *v; | |||
207 | } | |||
208 | ||||
209 | /* Getter for summary callgraph node pointer. */ | |||
210 | T* get (cgraph_node *node) ATTRIBUTE_PURE__attribute__ ((__pure__)) | |||
211 | { | |||
212 | T **v = m_map.get (node->get_uid ()); | |||
213 | return v == NULLnullptr ? NULLnullptr : *v; | |||
214 | } | |||
215 | ||||
216 | /* Remove node from summary. */ | |||
217 | using function_summary_base<T>::remove; | |||
218 | void remove (cgraph_node *node) | |||
219 | { | |||
220 | int uid = node->get_uid (); | |||
221 | T **v = m_map.get (uid); | |||
222 | if (v) | |||
223 | { | |||
224 | m_map.remove (uid); | |||
225 | this->release (*v); | |||
226 | } | |||
227 | } | |||
228 | ||||
229 | /* Return true if a summary for the given NODE already exists. */ | |||
230 | bool exists (cgraph_node *node) | |||
231 | { | |||
232 | return m_map.get (node->get_uid ()) != NULLnullptr; | |||
233 | } | |||
234 | ||||
235 | /* Symbol insertion hook that is registered to symbol table. */ | |||
236 | static void symtab_insertion (cgraph_node *node, void *data); | |||
237 | ||||
238 | /* Symbol removal hook that is registered to symbol table. */ | |||
239 | static void symtab_removal (cgraph_node *node, void *data); | |||
240 | ||||
241 | /* Symbol duplication hook that is registered to symbol table. */ | |||
242 | static void symtab_duplication (cgraph_node *node, cgraph_node *node2, | |||
243 | void *data); | |||
244 | ||||
245 | protected: | |||
246 | /* Indication if we use ggc summary. */ | |||
247 | bool m_ggc; | |||
248 | ||||
249 | private: | |||
250 | /* Indication if we use ggc summary. */ | |||
251 | bool is_ggc () final override | |||
252 | { | |||
253 | return m_ggc; | |||
254 | } | |||
255 | ||||
256 | typedef int_hash <int, 0, -1> map_hash; | |||
257 | ||||
258 | /* Main summary store, where summary ID is used as key. */ | |||
259 | hash_map <map_hash, T *> m_map; | |||
260 | ||||
261 | template <typename U> friend void gt_ggc_mx (function_summary <U *> * const &); | |||
262 | template <typename U> friend void gt_pch_nx (function_summary <U *> * const &); | |||
263 | template <typename U> friend void gt_pch_nx (function_summary <U *> * const &, | |||
264 | gt_pointer_operator, void *); | |||
265 | }; | |||
266 | ||||
267 | template <typename T> | |||
268 | function_summary<T *>::function_summary (symbol_table *symtab, bool ggc | |||
269 | MEM_STAT_DECL): | |||
270 | function_summary_base<T> (symtab, function_summary::symtab_insertion, | |||
271 | function_summary::symtab_removal, | |||
272 | function_summary::symtab_duplication | |||
273 | PASS_MEM_STAT), | |||
274 | m_ggc (ggc), m_map (13, ggc, true, GATHER_STATISTICS0 PASS_MEM_STAT) {} | |||
275 | ||||
276 | template <typename T> | |||
277 | function_summary<T *>::~function_summary () | |||
278 | { | |||
279 | this->unregister_hooks (); | |||
280 | ||||
281 | /* Release all summaries. */ | |||
282 | typedef typename hash_map <map_hash, T *>::iterator map_iterator; | |||
283 | for (map_iterator it = m_map.begin (); it != m_map.end (); ++it) | |||
284 | this->release ((*it).second); | |||
285 | } | |||
286 | ||||
287 | template <typename T> | |||
288 | void | |||
289 | function_summary<T *>::symtab_insertion (cgraph_node *node, void *data) | |||
290 | { | |||
291 | gcc_checking_assert (node->get_uid ())((void)(!(node->get_uid ()) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/symbol-summary.h" , 291, __FUNCTION__), 0 : 0)); | |||
292 | function_summary *summary = (function_summary <T *> *) (data); | |||
293 | summary->insert (node, summary->get_create (node)); | |||
294 | } | |||
295 | ||||
296 | template <typename T> | |||
297 | void | |||
298 | function_summary<T *>::symtab_removal (cgraph_node *node, void *data) | |||
299 | { | |||
300 | gcc_checking_assert (node->get_uid ())((void)(!(node->get_uid ()) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/symbol-summary.h" , 300, __FUNCTION__), 0 : 0)); | |||
301 | function_summary *summary = (function_summary <T *> *) (data); | |||
302 | summary->remove (node); | |||
303 | } | |||
304 | ||||
305 | template <typename T> | |||
306 | void | |||
307 | function_summary<T *>::symtab_duplication (cgraph_node *node, | |||
308 | cgraph_node *node2, void *data) | |||
309 | { | |||
310 | function_summary *summary = (function_summary <T *> *) (data); | |||
311 | T *v = summary->get (node); | |||
312 | ||||
313 | if (v) | |||
314 | summary->duplicate (node, node2, v, summary->get_create (node2)); | |||
315 | } | |||
316 | ||||
317 | template <typename T> | |||
318 | void | |||
319 | gt_ggc_mx(function_summary<T *>* const &summary) | |||
320 | { | |||
321 | gcc_checking_assert (summary->m_ggc)((void)(!(summary->m_ggc) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/symbol-summary.h" , 321, __FUNCTION__), 0 : 0)); | |||
322 | gt_ggc_mx (&summary->m_map); | |||
323 | } | |||
324 | ||||
325 | template <typename T> | |||
326 | void | |||
327 | gt_pch_nx (function_summary<T *> *const &) | |||
328 | { | |||
329 | gcc_unreachable ()(fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/symbol-summary.h" , 329, __FUNCTION__)); | |||
330 | } | |||
331 | ||||
332 | template <typename T> | |||
333 | void | |||
334 | gt_pch_nx (function_summary<T *> *const &, gt_pointer_operator, void *) | |||
335 | { | |||
336 | gcc_unreachable ()(fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/symbol-summary.h" , 336, __FUNCTION__)); | |||
337 | } | |||
338 | ||||
339 | /* Help template from std c++11. */ | |||
340 | ||||
341 | template<typename T, typename U> | |||
342 | struct is_same | |||
343 | { | |||
344 | static const bool value = false; | |||
345 | }; | |||
346 | ||||
347 | template<typename T> | |||
348 | struct is_same<T,T> //specialization | |||
349 | { | |||
350 | static const bool value = true; | |||
351 | }; | |||
352 | ||||
353 | /* We want to pass just pointer types as argument for fast_function_summary | |||
354 | template class. */ | |||
355 | ||||
356 | template <class T, class V> | |||
357 | class fast_function_summary | |||
358 | { | |||
359 | private: | |||
360 | fast_function_summary (); | |||
361 | }; | |||
362 | ||||
363 | /* Function vector summary is a fast implementation of function_summary that | |||
364 | utilizes vector as primary storage of summaries. */ | |||
365 | ||||
366 | template <class T, class V> | |||
367 | class GTY((user)) fast_function_summary <T *, V> | |||
368 | : public function_summary_base<T> | |||
369 | { | |||
370 | public: | |||
371 | /* Default construction takes SYMTAB as an argument. */ | |||
372 | fast_function_summary (symbol_table *symtab CXX_MEM_STAT_INFO); | |||
373 | ||||
374 | /* Destructor. */ | |||
375 | virtual ~fast_function_summary (); | |||
376 | ||||
377 | /* Traverses all summarys with a function F called with | |||
378 | ARG as argument. */ | |||
379 | template<typename Arg, bool (*f)(const T &, Arg)> | |||
380 | void traverse (Arg a) const | |||
381 | { | |||
382 | for (unsigned i = 0; i < m_vector->length (); i++) | |||
383 | if ((*m_vector[i]) != NULLnullptr) | |||
384 | f ((*m_vector)[i], a); | |||
385 | } | |||
386 | ||||
387 | /* Getter for summary callgraph node pointer. If a summary for a node | |||
388 | does not exist it will be created. */ | |||
389 | T* get_create (cgraph_node *node) | |||
390 | { | |||
391 | int id = node->get_summary_id (); | |||
392 | if (id == -1) | |||
393 | id = this->m_symtab->assign_summary_id (node); | |||
394 | ||||
395 | if ((unsigned int)id >= m_vector->length ()) | |||
396 | vec_safe_grow_cleared (m_vector, | |||
397 | this->m_symtab->cgraph_max_summary_id); | |||
398 | ||||
399 | if ((*m_vector)[id] == NULLnullptr) | |||
400 | (*m_vector)[id] = this->allocate_new (); | |||
401 | ||||
402 | return (*m_vector)[id]; | |||
403 | } | |||
404 | ||||
405 | /* Getter for summary callgraph node pointer. */ | |||
406 | T* get (cgraph_node *node) ATTRIBUTE_PURE__attribute__ ((__pure__)) | |||
407 | { | |||
408 | return exists (node) ? (*m_vector)[node->get_summary_id ()] : NULLnullptr; | |||
409 | } | |||
410 | ||||
411 | using function_summary_base<T>::remove; | |||
412 | void remove (cgraph_node *node) | |||
413 | { | |||
414 | if (exists (node)) | |||
415 | { | |||
416 | int id = node->get_summary_id (); | |||
417 | this->release ((*m_vector)[id]); | |||
418 | (*m_vector)[id] = NULLnullptr; | |||
419 | } | |||
420 | } | |||
421 | ||||
422 | /* Return true if a summary for the given NODE already exists. */ | |||
423 | bool exists (cgraph_node *node) | |||
424 | { | |||
425 | int id = node->get_summary_id (); | |||
426 | return (id != -1 | |||
427 | && (unsigned int)id < m_vector->length () | |||
428 | && (*m_vector)[id] != NULLnullptr); | |||
429 | } | |||
430 | ||||
431 | /* Symbol insertion hook that is registered to symbol table. */ | |||
432 | static void symtab_insertion (cgraph_node *node, void *data); | |||
433 | ||||
434 | /* Symbol removal hook that is registered to symbol table. */ | |||
435 | static void symtab_removal (cgraph_node *node, void *data); | |||
436 | ||||
437 | /* Symbol duplication hook that is registered to symbol table. */ | |||
438 | static void symtab_duplication (cgraph_node *node, cgraph_node *node2, | |||
439 | void *data); | |||
440 | ||||
441 | private: | |||
442 | bool is_ggc () final override; | |||
443 | ||||
444 | /* Summary is stored in the vector. */ | |||
445 | vec <T *, V> *m_vector; | |||
446 | ||||
447 | template <typename U> friend void gt_ggc_mx (fast_function_summary <U *, va_gc> * const &); | |||
448 | template <typename U> friend void gt_pch_nx (fast_function_summary <U *, va_gc> * const &); | |||
449 | template <typename U> friend void gt_pch_nx (fast_function_summary <U *, va_gc> * const &, | |||
450 | gt_pointer_operator, void *); | |||
451 | }; | |||
452 | ||||
453 | template <typename T, typename V> | |||
454 | fast_function_summary<T *, V>::fast_function_summary (symbol_table *symtab | |||
455 | MEM_STAT_DECL): | |||
456 | function_summary_base<T> (symtab, | |||
457 | fast_function_summary::symtab_insertion, | |||
458 | fast_function_summary::symtab_removal, | |||
459 | fast_function_summary::symtab_duplication | |||
460 | PASS_MEM_STAT), m_vector (NULLnullptr) | |||
461 | { | |||
462 | vec_alloc (m_vector, 13 PASS_MEM_STAT); | |||
463 | } | |||
464 | ||||
465 | template <typename T, typename V> | |||
466 | fast_function_summary<T *, V>::~fast_function_summary () | |||
467 | { | |||
468 | this->unregister_hooks (); | |||
469 | ||||
470 | /* Release all summaries. */ | |||
471 | for (unsigned i = 0; i < m_vector->length (); i++) | |||
472 | if ((*m_vector)[i] != NULLnullptr) | |||
473 | this->release ((*m_vector)[i]); | |||
474 | vec_free (m_vector); | |||
475 | } | |||
476 | ||||
477 | template <typename T, typename V> | |||
478 | void | |||
479 | fast_function_summary<T *, V>::symtab_insertion (cgraph_node *node, void *data) | |||
480 | { | |||
481 | gcc_checking_assert (node->get_uid ())((void)(!(node->get_uid ()) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/symbol-summary.h" , 481, __FUNCTION__), 0 : 0)); | |||
482 | fast_function_summary *summary = (fast_function_summary <T *, V> *) (data); | |||
483 | summary->insert (node, summary->get_create (node)); | |||
484 | } | |||
485 | ||||
486 | template <typename T, typename V> | |||
487 | void | |||
488 | fast_function_summary<T *, V>::symtab_removal (cgraph_node *node, void *data) | |||
489 | { | |||
490 | gcc_checking_assert (node->get_uid ())((void)(!(node->get_uid ()) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/symbol-summary.h" , 490, __FUNCTION__), 0 : 0)); | |||
491 | fast_function_summary *summary = (fast_function_summary <T *, V> *) (data); | |||
492 | ||||
493 | if (summary->exists (node)) | |||
494 | summary->remove (node); | |||
495 | } | |||
496 | ||||
497 | template <typename T, typename V> | |||
498 | void | |||
499 | fast_function_summary<T *, V>::symtab_duplication (cgraph_node *node, | |||
500 | cgraph_node *node2, | |||
501 | void *data) | |||
502 | { | |||
503 | fast_function_summary *summary = (fast_function_summary <T *, V> *) (data); | |||
504 | T *v = summary->get (node); | |||
505 | ||||
506 | if (v) | |||
507 | { | |||
508 | T *duplicate = summary->get_create (node2); | |||
509 | summary->duplicate (node, node2, v, duplicate); | |||
510 | } | |||
511 | } | |||
512 | ||||
513 | template <typename T, typename V> | |||
514 | inline bool | |||
515 | fast_function_summary<T *, V>::is_ggc () | |||
516 | { | |||
517 | return is_same<V, va_gc>::value; | |||
518 | } | |||
519 | ||||
520 | template <typename T> | |||
521 | void | |||
522 | gt_ggc_mx (fast_function_summary<T *, va_heap>* const &) | |||
523 | { | |||
524 | } | |||
525 | ||||
526 | template <typename T> | |||
527 | void | |||
528 | gt_pch_nx (fast_function_summary<T *, va_heap>* const &) | |||
529 | { | |||
530 | } | |||
531 | ||||
532 | template <typename T> | |||
533 | void | |||
534 | gt_pch_nx (fast_function_summary<T *, va_heap>* const&, gt_pointer_operator, | |||
535 | void *) | |||
536 | { | |||
537 | } | |||
538 | ||||
539 | template <typename T> | |||
540 | void | |||
541 | gt_ggc_mx (fast_function_summary<T *, va_gc>* const &summary) | |||
542 | { | |||
543 | ggc_test_and_set_mark (summary->m_vector)((summary->m_vector) != nullptr && ((void *) (summary ->m_vector)) != (void *) 1 && ! ggc_set_mark (summary ->m_vector)); | |||
544 | gt_ggc_mx (summary->m_vector); | |||
545 | } | |||
546 | ||||
547 | template <typename T> | |||
548 | void | |||
549 | gt_pch_nx (fast_function_summary<T *, va_gc> *const &) | |||
550 | { | |||
551 | gcc_unreachable ()(fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/symbol-summary.h" , 551, __FUNCTION__)); | |||
552 | } | |||
553 | ||||
554 | template <typename T> | |||
555 | void | |||
556 | gt_pch_nx (fast_function_summary<T *, va_gc> *const &, gt_pointer_operator, | |||
557 | void *) | |||
558 | { | |||
559 | gcc_unreachable ()(fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/symbol-summary.h" , 559, __FUNCTION__)); | |||
560 | } | |||
561 | ||||
562 | /* Base class for call_summary and fast_call_summary classes. */ | |||
563 | ||||
564 | template <class T> | |||
565 | class call_summary_base | |||
566 | { | |||
567 | public: | |||
568 | /* Default construction takes SYMTAB as an argument. */ | |||
569 | call_summary_base (symbol_table *symtab, cgraph_edge_hook symtab_removal, | |||
570 | cgraph_2edge_hook symtab_duplication CXX_MEM_STAT_INFO): | |||
571 | m_symtab (symtab), m_symtab_removal (symtab_removal), | |||
572 | m_symtab_duplication (symtab_duplication), m_symtab_duplication_hook (NULLnullptr), | |||
573 | m_initialize_when_cloning (false), | |||
574 | m_allocator ("call summary" PASS_MEM_STAT) | |||
575 | { | |||
576 | m_symtab_removal_hook | |||
577 | = m_symtab->add_edge_removal_hook (m_symtab_removal, this); | |||
578 | enable_duplication_hook (); | |||
579 | } | |||
580 | ||||
581 | /* Basic implementation of removal operation. */ | |||
582 | virtual void remove (cgraph_edge *, T *) {} | |||
583 | ||||
584 | /* Basic implementation of duplication operation. */ | |||
585 | virtual void duplicate (cgraph_edge *, cgraph_edge *, T *, T *) | |||
586 | { | |||
587 | gcc_unreachable ()(fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/symbol-summary.h" , 587, __FUNCTION__)); | |||
588 | } | |||
589 | ||||
590 | /* Enable duplication hook invocation. */ | |||
591 | void enable_duplication_hook () | |||
592 | { | |||
593 | if (m_symtab_duplication_hook == NULLnullptr) | |||
594 | m_symtab_duplication_hook | |||
595 | = m_symtab->add_edge_duplication_hook (m_symtab_duplication, | |||
596 | this); | |||
597 | } | |||
598 | ||||
599 | /* Enable duplication hook invocation. */ | |||
600 | void disable_duplication_hook () | |||
601 | { | |||
602 | if (m_symtab_duplication_hook != NULLnullptr) | |||
603 | { | |||
604 | m_symtab->remove_edge_duplication_hook (m_symtab_duplication_hook); | |||
605 | m_symtab_duplication_hook = NULLnullptr; | |||
606 | } | |||
607 | } | |||
608 | ||||
609 | protected: | |||
610 | /* Allocates new data that are stored within map. */ | |||
611 | T* allocate_new () | |||
612 | { | |||
613 | /* Call gcc_internal_because we do not want to call finalizer for | |||
614 | a type T. We call dtor explicitly. */ | |||
615 | return is_ggc () ? new (ggc_internal_alloc (sizeof (T))) T () | |||
616 | : m_allocator.allocate (); | |||
617 | } | |||
618 | ||||
619 | /* Release an item that is stored within map. */ | |||
620 | void release (T *item) | |||
621 | { | |||
622 | if (is_ggc ()) | |||
623 | ggc_delete (item); | |||
624 | else | |||
625 | m_allocator.remove (item); | |||
626 | } | |||
627 | ||||
628 | /* Unregister all call-graph hooks. */ | |||
629 | void unregister_hooks (); | |||
630 | ||||
631 | /* Symbol table the summary is registered to. */ | |||
632 | symbol_table *m_symtab; | |||
633 | ||||
634 | /* Removal function defined by a summary. */ | |||
635 | cgraph_edge_hook m_symtab_removal; | |||
636 | /* Duplication function defined by a summary. */ | |||
637 | cgraph_2edge_hook m_symtab_duplication; | |||
638 | ||||
639 | /* Internal summary removal hook pointer. */ | |||
640 | cgraph_edge_hook_list *m_symtab_removal_hook; | |||
641 | /* Internal summary duplication hook pointer. */ | |||
642 | cgraph_2edge_hook_list *m_symtab_duplication_hook; | |||
643 | /* Initialize summary for an edge that is cloned. */ | |||
644 | bool m_initialize_when_cloning; | |||
645 | ||||
646 | private: | |||
647 | /* Return true when the summary uses GGC memory for allocation. */ | |||
648 | virtual bool is_ggc () = 0; | |||
649 | ||||
650 | /* Object allocator for heap allocation. */ | |||
651 | object_allocator<T> m_allocator; | |||
652 | }; | |||
653 | ||||
654 | template <typename T> | |||
655 | void | |||
656 | call_summary_base<T>::unregister_hooks () | |||
657 | { | |||
658 | m_symtab->remove_edge_removal_hook (m_symtab_removal_hook); | |||
659 | disable_duplication_hook (); | |||
660 | } | |||
661 | ||||
662 | /* An impossible class templated by non-pointers so, which makes sure that only | |||
663 | summaries gathering pointers can be created. */ | |||
664 | ||||
665 | template <class T> | |||
666 | class call_summary | |||
667 | { | |||
668 | private: | |||
669 | call_summary (); | |||
670 | }; | |||
671 | ||||
672 | /* Class to store auxiliary information about call graph edges. */ | |||
673 | ||||
674 | template <class T> | |||
675 | class GTY((user)) call_summary <T *>: public call_summary_base<T> | |||
676 | { | |||
677 | public: | |||
678 | /* Default construction takes SYMTAB as an argument. */ | |||
679 | call_summary (symbol_table *symtab, bool ggc = false | |||
680 | CXX_MEM_STAT_INFO) | |||
681 | : call_summary_base<T> (symtab, call_summary::symtab_removal, | |||
682 | call_summary::symtab_duplication PASS_MEM_STAT), | |||
683 | m_ggc (ggc), m_map (13, ggc, true, GATHER_STATISTICS0 PASS_MEM_STAT) {} | |||
684 | ||||
685 | /* Destructor. */ | |||
686 | virtual ~call_summary (); | |||
687 | ||||
688 | /* Traverses all summarys with an edge E called with | |||
689 | ARG as argument. */ | |||
690 | template<typename Arg, bool (*f)(const T &, Arg)> | |||
691 | void traverse (Arg a) const | |||
692 | { | |||
693 | m_map.template traverse <f> (a); | |||
694 | } | |||
695 | ||||
696 | /* Getter for summary callgraph edge pointer. | |||
697 | If a summary for an edge does not exist, it will be created. */ | |||
698 | T* get_create (cgraph_edge *edge) | |||
699 | { | |||
700 | bool existed; | |||
701 | T **v = &m_map.get_or_insert (edge->get_uid (), &existed); | |||
| ||||
702 | if (!existed) | |||
703 | *v = this->allocate_new (); | |||
704 | ||||
705 | return *v; | |||
706 | } | |||
707 | ||||
708 | /* Getter for summary callgraph edge pointer. */ | |||
709 | T* get (cgraph_edge *edge) ATTRIBUTE_PURE__attribute__ ((__pure__)) | |||
710 | { | |||
711 | T **v = m_map.get (edge->get_uid ()); | |||
712 | return v == NULLnullptr ? NULLnullptr : *v; | |||
713 | } | |||
714 | ||||
715 | /* Remove edge from summary. */ | |||
716 | using call_summary_base<T>::remove; | |||
717 | void remove (cgraph_edge *edge) | |||
718 | { | |||
719 | int uid = edge->get_uid (); | |||
720 | T **v = m_map.get (uid); | |||
721 | if (v) | |||
722 | { | |||
723 | m_map.remove (uid); | |||
724 | this->release (*v); | |||
725 | } | |||
726 | } | |||
727 | ||||
728 | /* Return true if a summary for the given EDGE already exists. */ | |||
729 | bool exists (cgraph_edge *edge) | |||
730 | { | |||
731 | return m_map.get (edge->get_uid ()) != NULLnullptr; | |||
732 | } | |||
733 | ||||
734 | /* Symbol removal hook that is registered to symbol table. */ | |||
735 | static void symtab_removal (cgraph_edge *edge, void *data); | |||
736 | ||||
737 | /* Symbol duplication hook that is registered to symbol table. */ | |||
738 | static void symtab_duplication (cgraph_edge *edge1, cgraph_edge *edge2, | |||
739 | void *data); | |||
740 | ||||
741 | protected: | |||
742 | /* Indication if we use ggc summary. */ | |||
743 | bool m_ggc; | |||
744 | ||||
745 | private: | |||
746 | /* Indication if we use ggc summary. */ | |||
747 | bool is_ggc () final override | |||
748 | { | |||
749 | return m_ggc; | |||
750 | } | |||
751 | ||||
752 | typedef int_hash <int, 0, -1> map_hash; | |||
753 | ||||
754 | /* Main summary store, where summary ID is used as key. */ | |||
755 | hash_map <map_hash, T *> m_map; | |||
756 | ||||
757 | template <typename U> friend void gt_ggc_mx (call_summary <U *> * const &); | |||
758 | template <typename U> friend void gt_pch_nx (call_summary <U *> * const &); | |||
759 | template <typename U> friend void gt_pch_nx (call_summary <U *> * const &, | |||
760 | gt_pointer_operator, void *); | |||
761 | }; | |||
762 | ||||
763 | template <typename T> | |||
764 | call_summary<T *>::~call_summary () | |||
765 | { | |||
766 | this->unregister_hooks (); | |||
767 | ||||
768 | /* Release all summaries. */ | |||
769 | typedef typename hash_map <map_hash, T *>::iterator map_iterator; | |||
770 | for (map_iterator it = m_map.begin (); it != m_map.end (); ++it) | |||
771 | this->release ((*it).second); | |||
772 | } | |||
773 | ||||
774 | template <typename T> | |||
775 | void | |||
776 | call_summary<T *>::symtab_removal (cgraph_edge *edge, void *data) | |||
777 | { | |||
778 | call_summary *summary = (call_summary <T *> *) (data); | |||
779 | summary->remove (edge); | |||
780 | } | |||
781 | ||||
782 | template <typename T> | |||
783 | void | |||
784 | call_summary<T *>::symtab_duplication (cgraph_edge *edge1, | |||
785 | cgraph_edge *edge2, void *data) | |||
786 | { | |||
787 | call_summary *summary = (call_summary <T *> *) (data); | |||
788 | T *edge1_summary = NULLnullptr; | |||
789 | ||||
790 | if (summary->m_initialize_when_cloning) | |||
791 | edge1_summary = summary->get_create (edge1); | |||
792 | else | |||
793 | edge1_summary = summary->get (edge1); | |||
794 | ||||
795 | if (edge1_summary) | |||
796 | summary->duplicate (edge1, edge2, edge1_summary, | |||
797 | summary->get_create (edge2)); | |||
798 | } | |||
799 | ||||
800 | template <typename T> | |||
801 | void | |||
802 | gt_ggc_mx(call_summary<T *>* const &summary) | |||
803 | { | |||
804 | gcc_checking_assert (summary->m_ggc)((void)(!(summary->m_ggc) ? fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/symbol-summary.h" , 804, __FUNCTION__), 0 : 0)); | |||
805 | gt_ggc_mx (&summary->m_map); | |||
806 | } | |||
807 | ||||
808 | template <typename T> | |||
809 | void | |||
810 | gt_pch_nx (call_summary<T *> *const &) | |||
811 | { | |||
812 | gcc_unreachable ()(fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/symbol-summary.h" , 812, __FUNCTION__)); | |||
813 | } | |||
814 | ||||
815 | template <typename T> | |||
816 | void | |||
817 | gt_pch_nx (call_summary<T *> *const &, gt_pointer_operator, void *) | |||
818 | { | |||
819 | gcc_unreachable ()(fancy_abort ("/buildworker/marxinbox-gcc-clang-static-analyzer/build/gcc/symbol-summary.h" , 819, __FUNCTION__)); | |||
820 | } | |||
821 | ||||
822 | /* We want to pass just pointer types as argument for fast_call_summary | |||
823 | template class. */ | |||
824 | ||||
825 | template <class T, class V> | |||
826 | class fast_call_summary | |||
827 | { | |||
828 | private: | |||
829 | fast_call_summary (); | |||
830 | }; | |||
831 | ||||
832 | /* Call vector summary is a fast implementation of call_summary that | |||
833 | utilizes vector as primary storage of summaries. */ | |||
834 | ||||
835 | template <class T, class V> | |||
836 | class GTY((user)) fast_call_summary <T *, V>: public call_summary_base<T> | |||
837 | { | |||
838 | public: | |||
839 | /* Default construction takes SYMTAB as an argument. */ | |||
840 | fast_call_summary (symbol_table *symtab CXX_MEM_STAT_INFO) | |||
841 | : call_summary_base<T> (symtab, fast_call_summary::symtab_removal, | |||
842 | fast_call_summary::symtab_duplication PASS_MEM_STAT), | |||
843 | m_vector (NULLnullptr) | |||
844 | { | |||
845 | vec_alloc (m_vector, 13 PASS_MEM_STAT); | |||
846 | } | |||
847 | ||||
848 | /* Destructor. */ | |||
849 | virtual ~fast_call_summary (); | |||
850 | ||||
851 | /* Traverses all summarys with an edge F called with | |||
852 | ARG as argument. */ | |||
853 | template<typename Arg, bool (*f)(const T &, Arg)> | |||
854 | void traverse (Arg a) const | |||
855 | { | |||
856 | for (unsigned i = 0; i < m_vector->length (); i++) | |||
857 | if ((*m_vector[i]) != NULLnullptr) | |||
858 | f ((*m_vector)[i], a); | |||
859 | } | |||
860 | ||||
861 | /* Getter for summary callgraph edge pointer. | |||
862 | If a summary for an edge does not exist, it will be created. */ | |||
863 | T* get_create (cgraph_edge *edge) | |||
864 | { | |||
865 | int id = edge->get_summary_id (); | |||
866 | if (id == -1) | |||
867 | id = this->m_symtab->assign_summary_id (edge); | |||
868 | ||||
869 | if ((unsigned)id >= m_vector->length ()) | |||
870 | vec_safe_grow_cleared (m_vector, this->m_symtab->edges_max_summary_id); | |||
871 | ||||
872 | if ((*m_vector)[id] == NULLnullptr) | |||
873 | (*m_vector)[id] = this->allocate_new (); | |||
874 | ||||
875 | return (*m_vector)[id]; | |||
876 | } | |||
877 | ||||
878 | /* Getter for summary callgraph edge pointer. */ | |||
879 | T* get (cgraph_edge *edge) ATTRIBUTE_PURE__attribute__ ((__pure__)) | |||
880 | { | |||
881 | return exists (edge) ? (*m_vector)[edge->get_summary_id ()] : NULLnullptr; | |||
882 | } | |||
883 | ||||
884 | /* Remove edge from summary. */ | |||
885 | using call_summary_base<T>::remove; | |||
886 | void remove (cgraph_edge *edge) | |||
887 | { | |||
888 | if (exists (edge)) | |||
889 | { | |||
890 | int id = edge->get_summary_id (); | |||
891 | this->release ((*m_vector)[id]); | |||
892 | (*m_vector)[id] = NULLnullptr; | |||
893 | } | |||
894 | } | |||
895 | ||||
896 | /* Return true if a summary for the given EDGE already exists. */ | |||
897 | bool exists (cgraph_edge *edge) | |||
898 | { | |||
899 | int id = edge->get_summary_id (); | |||
900 | return (id != -1 | |||
901 | && (unsigned)id < m_vector->length () | |||
902 | && (*m_vector)[id] != NULLnullptr); | |||
903 | } | |||
904 | ||||
905 | /* Symbol removal hook that is registered to symbol table. */ | |||
906 | static void symtab_removal (cgraph_edge *edge, void *data); | |||
907 | ||||
908 | /* Symbol duplication hook that is registered to symbol table. */ | |||
909 | static void symtab_duplication (cgraph_edge *edge1, cgraph_edge *edge2, | |||
910 | void *data); | |||
911 | ||||
912 | private: | |||
913 | bool is_ggc () final override; | |||
914 | ||||
915 | /* Summary is stored in the vector. */ | |||
916 | vec <T *, V> *m_vector; | |||
917 | ||||
918 | template <typename U> friend void gt_ggc_mx (fast_call_summary <U *, va_gc> * const &); | |||
919 | template <typename U> friend void gt_pch_nx (fast_call_summary <U *, va_gc> * const &); | |||
920 | template <typename U> friend void gt_pch_nx (fast_call_summary <U *, va_gc> * const &, | |||
921 | gt_pointer_operator, void *); | |||
922 | }; | |||
923 | ||||
924 | template <typename T, typename V> | |||
925 | fast_call_summary<T *, V>::~fast_call_summary () | |||
926 | { | |||
927 | this->unregister_hooks (); | |||
928 | ||||
929 | /* Release all summaries. */ | |||
930 | for (unsigned i = 0; i < m_vector->length (); i++) | |||
931 | if ((*m_vector)[i] != NULLnullptr) | |||
932 | this->release ((*m_vector)[i]); | |||
933 | vec_free (m_vector); | |||
934 | } | |||
935 | ||||
936 | template <typename T, typename V> | |||
937 | void | |||
938 | fast_call_summary<T *, V>::symtab_removal (cgraph_edge *edge, void *data) | |||
939 | { | |||
940 | fast_call_summary *summary = (fast_call_summary <T *, V> *) (data); | |||
941 | summary->remove (edge); | |||
942 | } | |||
943 | ||||
944 | template <typename T, typename V> | |||
945 | void | |||
946 | fast_call_summary<T *, V>::symtab_duplication (cgraph_edge *edge1, | |||
947 | cgraph_edge *edge2, void *data) | |||
948 | { | |||
949 | fast_call_summary *summary = (fast_call_summary <T *, V> *) (data); | |||
950 | T *edge1_summary = NULLnullptr; | |||
951 | ||||
952 | if (summary->m_initialize_when_cloning) | |||
953 | edge1_summary = summary->get_create (edge1); | |||
954 | else | |||
955 | edge1_summary = summary->get (edge1); | |||
956 | ||||
957 | if (edge1_summary) | |||
958 | { | |||
959 | T *duplicate = summary->get_create (edge2); | |||
960 | summary->duplicate (edge1, edge2, edge1_summary, duplicate); | |||
961 | } | |||
962 | } | |||
963 | ||||
964 | template <typename T, typename V> | |||
965 | inline bool | |||
966 | fast_call_summary<T *, V>::is_ggc () | |||
967 | { | |||
968 | return is_same<V, va_gc>::value; | |||
969 | } | |||
970 | ||||
971 | template <typename T> | |||
972 | void | |||
973 | gt_ggc_mx (fast_call_summary<T *, va_heap>* const &summary ATTRIBUTE_UNUSED__attribute__ ((__unused__))) | |||
974 | { | |||
975 | } | |||
976 | ||||
977 | template <typename T> | |||
978 | void | |||
979 | gt_pch_nx (fast_call_summary<T *, va_heap>* const &summary ATTRIBUTE_UNUSED__attribute__ ((__unused__))) | |||
980 | { | |||
981 | } | |||
982 | ||||
983 | template <typename T> | |||
984 | void | |||
985 | gt_pch_nx (fast_call_summary<T *, va_heap>* const& summary ATTRIBUTE_UNUSED__attribute__ ((__unused__)), | |||
986 | gt_p |