]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/cgraph.c
Turn tp_first_run counts back to 32bit values.
[thirdparty/gcc.git] / gcc / cgraph.c
1 /* Callgraph handling code.
2 Copyright (C) 2003-2019 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 /* This file contains basic routines manipulating call graph
22
23 The call-graph is a data structure designed for inter-procedural
24 optimization. It represents a multi-graph where nodes are functions
25 (symbols within symbol table) and edges are call sites. */
26
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "backend.h"
31 #include "target.h"
32 #include "rtl.h"
33 #include "tree.h"
34 #include "gimple.h"
35 #include "predict.h"
36 #include "alloc-pool.h"
37 #include "gimple-ssa.h"
38 #include "cgraph.h"
39 #include "lto-streamer.h"
40 #include "fold-const.h"
41 #include "varasm.h"
42 #include "calls.h"
43 #include "print-tree.h"
44 #include "langhooks.h"
45 #include "intl.h"
46 #include "tree-eh.h"
47 #include "gimple-iterator.h"
48 #include "tree-cfg.h"
49 #include "tree-ssa.h"
50 #include "value-prof.h"
51 #include "ipa-utils.h"
52 #include "symbol-summary.h"
53 #include "tree-vrp.h"
54 #include "ipa-prop.h"
55 #include "ipa-fnsummary.h"
56 #include "cfgloop.h"
57 #include "gimple-pretty-print.h"
58 #include "tree-dfa.h"
59 #include "profile.h"
60 #include "context.h"
61 #include "gimplify.h"
62 #include "stringpool.h"
63 #include "attribs.h"
64 #include "selftest.h"
65 #include "tree-into-ssa.h"
66
67 /* FIXME: Only for PROP_loops, but cgraph shouldn't have to know about this. */
68 #include "tree-pass.h"
69
70 /* Queue of cgraph nodes scheduled to be lowered. */
71 symtab_node *x_cgraph_nodes_queue;
72 #define cgraph_nodes_queue ((cgraph_node *)x_cgraph_nodes_queue)
73
74 /* Symbol table global context. */
75 symbol_table *symtab;
76
77 /* List of hooks triggered on cgraph_edge events. */
78 struct cgraph_edge_hook_list {
79 cgraph_edge_hook hook;
80 void *data;
81 struct cgraph_edge_hook_list *next;
82 };
83
84 /* List of hooks triggered on cgraph_node events. */
85 struct cgraph_node_hook_list {
86 cgraph_node_hook hook;
87 void *data;
88 struct cgraph_node_hook_list *next;
89 };
90
91 /* List of hooks triggered on events involving two cgraph_edges. */
92 struct cgraph_2edge_hook_list {
93 cgraph_2edge_hook hook;
94 void *data;
95 struct cgraph_2edge_hook_list *next;
96 };
97
98 /* List of hooks triggered on events involving two cgraph_nodes. */
99 struct cgraph_2node_hook_list {
100 cgraph_2node_hook hook;
101 void *data;
102 struct cgraph_2node_hook_list *next;
103 };
104
105 /* Hash descriptor for cgraph_function_version_info. */
106
107 struct function_version_hasher : ggc_ptr_hash<cgraph_function_version_info>
108 {
109 static hashval_t hash (cgraph_function_version_info *);
110 static bool equal (cgraph_function_version_info *,
111 cgraph_function_version_info *);
112 };
113
114 /* Map a cgraph_node to cgraph_function_version_info using this htab.
115 The cgraph_function_version_info has a THIS_NODE field that is the
116 corresponding cgraph_node.. */
117
118 static GTY(()) hash_table<function_version_hasher> *cgraph_fnver_htab = NULL;
119
120 /* Hash function for cgraph_fnver_htab. */
121 hashval_t
122 function_version_hasher::hash (cgraph_function_version_info *ptr)
123 {
124 int uid = ptr->this_node->get_uid ();
125 return (hashval_t)(uid);
126 }
127
128 /* eq function for cgraph_fnver_htab. */
129 bool
130 function_version_hasher::equal (cgraph_function_version_info *n1,
131 cgraph_function_version_info *n2)
132 {
133 return n1->this_node->get_uid () == n2->this_node->get_uid ();
134 }
135
136 /* Mark as GC root all allocated nodes. */
137 static GTY(()) struct cgraph_function_version_info *
138 version_info_node = NULL;
139
140 /* Return true if NODE's address can be compared. */
141
142 bool
143 symtab_node::address_can_be_compared_p ()
144 {
145 /* Address of virtual tables and functions is never compared. */
146 if (DECL_VIRTUAL_P (decl))
147 return false;
148 /* Address of C++ cdtors is never compared. */
149 if (is_a <cgraph_node *> (this)
150 && (DECL_CXX_CONSTRUCTOR_P (decl)
151 || DECL_CXX_DESTRUCTOR_P (decl)))
152 return false;
153 /* Constant pool symbols addresses are never compared.
154 flag_merge_constants permits us to assume the same on readonly vars. */
155 if (is_a <varpool_node *> (this)
156 && (DECL_IN_CONSTANT_POOL (decl)
157 || (flag_merge_constants >= 2
158 && TREE_READONLY (decl) && !TREE_THIS_VOLATILE (decl))))
159 return false;
160 return true;
161 }
162
163 /* Get the cgraph_function_version_info node corresponding to node. */
164 cgraph_function_version_info *
165 cgraph_node::function_version (void)
166 {
167 cgraph_function_version_info key;
168 key.this_node = this;
169
170 if (cgraph_fnver_htab == NULL)
171 return NULL;
172
173 return cgraph_fnver_htab->find (&key);
174 }
175
176 /* Insert a new cgraph_function_version_info node into cgraph_fnver_htab
177 corresponding to cgraph_node NODE. */
178 cgraph_function_version_info *
179 cgraph_node::insert_new_function_version (void)
180 {
181 version_info_node = NULL;
182 version_info_node = ggc_cleared_alloc<cgraph_function_version_info> ();
183 version_info_node->this_node = this;
184
185 if (cgraph_fnver_htab == NULL)
186 cgraph_fnver_htab = hash_table<function_version_hasher>::create_ggc (2);
187
188 *cgraph_fnver_htab->find_slot (version_info_node, INSERT)
189 = version_info_node;
190 return version_info_node;
191 }
192
193 /* Remove the cgraph_function_version_info node given by DECL_V. */
194 static void
195 delete_function_version (cgraph_function_version_info *decl_v)
196 {
197 if (decl_v == NULL)
198 return;
199
200 if (version_info_node == decl_v)
201 version_info_node = NULL;
202
203 if (decl_v->prev != NULL)
204 decl_v->prev->next = decl_v->next;
205
206 if (decl_v->next != NULL)
207 decl_v->next->prev = decl_v->prev;
208
209 if (cgraph_fnver_htab != NULL)
210 cgraph_fnver_htab->remove_elt (decl_v);
211 }
212
213 /* Remove the cgraph_function_version_info and cgraph_node for DECL. This
214 DECL is a duplicate declaration. */
215 void
216 cgraph_node::delete_function_version_by_decl (tree decl)
217 {
218 cgraph_node *decl_node = cgraph_node::get (decl);
219
220 if (decl_node == NULL)
221 return;
222
223 delete_function_version (decl_node->function_version ());
224
225 decl_node->remove ();
226 }
227
228 /* Record that DECL1 and DECL2 are semantically identical function
229 versions. */
230 void
231 cgraph_node::record_function_versions (tree decl1, tree decl2)
232 {
233 cgraph_node *decl1_node = cgraph_node::get_create (decl1);
234 cgraph_node *decl2_node = cgraph_node::get_create (decl2);
235 cgraph_function_version_info *decl1_v = NULL;
236 cgraph_function_version_info *decl2_v = NULL;
237 cgraph_function_version_info *before;
238 cgraph_function_version_info *after;
239
240 gcc_assert (decl1_node != NULL && decl2_node != NULL);
241 decl1_v = decl1_node->function_version ();
242 decl2_v = decl2_node->function_version ();
243
244 if (decl1_v != NULL && decl2_v != NULL)
245 return;
246
247 if (decl1_v == NULL)
248 decl1_v = decl1_node->insert_new_function_version ();
249
250 if (decl2_v == NULL)
251 decl2_v = decl2_node->insert_new_function_version ();
252
253 /* Chain decl2_v and decl1_v. All semantically identical versions
254 will be chained together. */
255
256 before = decl1_v;
257 after = decl2_v;
258
259 while (before->next != NULL)
260 before = before->next;
261
262 while (after->prev != NULL)
263 after= after->prev;
264
265 before->next = after;
266 after->prev = before;
267 }
268
269 /* Initialize callgraph dump file. */
270
271 void
272 symbol_table::initialize (void)
273 {
274 if (!dump_file)
275 dump_file = dump_begin (TDI_cgraph, NULL);
276
277 if (!ipa_clones_dump_file)
278 ipa_clones_dump_file = dump_begin (TDI_clones, NULL);
279 }
280
281 /* Allocate new callgraph node and insert it into basic data structures. */
282
283 cgraph_node *
284 symbol_table::create_empty (void)
285 {
286 cgraph_count++;
287 return new (ggc_alloc<cgraph_node> ()) cgraph_node (cgraph_max_uid++);
288 }
289
290 /* Register HOOK to be called with DATA on each removed edge. */
291 cgraph_edge_hook_list *
292 symbol_table::add_edge_removal_hook (cgraph_edge_hook hook, void *data)
293 {
294 cgraph_edge_hook_list *entry;
295 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
296
297 entry = (cgraph_edge_hook_list *) xmalloc (sizeof (*entry));
298 entry->hook = hook;
299 entry->data = data;
300 entry->next = NULL;
301 while (*ptr)
302 ptr = &(*ptr)->next;
303 *ptr = entry;
304 return entry;
305 }
306
307 /* Remove ENTRY from the list of hooks called on removing edges. */
308 void
309 symbol_table::remove_edge_removal_hook (cgraph_edge_hook_list *entry)
310 {
311 cgraph_edge_hook_list **ptr = &m_first_edge_removal_hook;
312
313 while (*ptr != entry)
314 ptr = &(*ptr)->next;
315 *ptr = entry->next;
316 free (entry);
317 }
318
319 /* Call all edge removal hooks. */
320 void
321 symbol_table::call_edge_removal_hooks (cgraph_edge *e)
322 {
323 cgraph_edge_hook_list *entry = m_first_edge_removal_hook;
324 while (entry)
325 {
326 entry->hook (e, entry->data);
327 entry = entry->next;
328 }
329 }
330
331 /* Register HOOK to be called with DATA on each removed node. */
332 cgraph_node_hook_list *
333 symbol_table::add_cgraph_removal_hook (cgraph_node_hook hook, void *data)
334 {
335 cgraph_node_hook_list *entry;
336 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
337
338 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
339 entry->hook = hook;
340 entry->data = data;
341 entry->next = NULL;
342 while (*ptr)
343 ptr = &(*ptr)->next;
344 *ptr = entry;
345 return entry;
346 }
347
348 /* Remove ENTRY from the list of hooks called on removing nodes. */
349 void
350 symbol_table::remove_cgraph_removal_hook (cgraph_node_hook_list *entry)
351 {
352 cgraph_node_hook_list **ptr = &m_first_cgraph_removal_hook;
353
354 while (*ptr != entry)
355 ptr = &(*ptr)->next;
356 *ptr = entry->next;
357 free (entry);
358 }
359
360 /* Call all node removal hooks. */
361 void
362 symbol_table::call_cgraph_removal_hooks (cgraph_node *node)
363 {
364 cgraph_node_hook_list *entry = m_first_cgraph_removal_hook;
365 while (entry)
366 {
367 entry->hook (node, entry->data);
368 entry = entry->next;
369 }
370 }
371
372 /* Call all node removal hooks. */
373 void
374 symbol_table::call_cgraph_insertion_hooks (cgraph_node *node)
375 {
376 cgraph_node_hook_list *entry = m_first_cgraph_insertion_hook;
377 while (entry)
378 {
379 entry->hook (node, entry->data);
380 entry = entry->next;
381 }
382 }
383
384
385 /* Register HOOK to be called with DATA on each inserted node. */
386 cgraph_node_hook_list *
387 symbol_table::add_cgraph_insertion_hook (cgraph_node_hook hook, void *data)
388 {
389 cgraph_node_hook_list *entry;
390 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
391
392 entry = (cgraph_node_hook_list *) xmalloc (sizeof (*entry));
393 entry->hook = hook;
394 entry->data = data;
395 entry->next = NULL;
396 while (*ptr)
397 ptr = &(*ptr)->next;
398 *ptr = entry;
399 return entry;
400 }
401
402 /* Remove ENTRY from the list of hooks called on inserted nodes. */
403 void
404 symbol_table::remove_cgraph_insertion_hook (cgraph_node_hook_list *entry)
405 {
406 cgraph_node_hook_list **ptr = &m_first_cgraph_insertion_hook;
407
408 while (*ptr != entry)
409 ptr = &(*ptr)->next;
410 *ptr = entry->next;
411 free (entry);
412 }
413
414 /* Register HOOK to be called with DATA on each duplicated edge. */
415 cgraph_2edge_hook_list *
416 symbol_table::add_edge_duplication_hook (cgraph_2edge_hook hook, void *data)
417 {
418 cgraph_2edge_hook_list *entry;
419 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
420
421 entry = (cgraph_2edge_hook_list *) xmalloc (sizeof (*entry));
422 entry->hook = hook;
423 entry->data = data;
424 entry->next = NULL;
425 while (*ptr)
426 ptr = &(*ptr)->next;
427 *ptr = entry;
428 return entry;
429 }
430
431 /* Remove ENTRY from the list of hooks called on duplicating edges. */
432 void
433 symbol_table::remove_edge_duplication_hook (cgraph_2edge_hook_list *entry)
434 {
435 cgraph_2edge_hook_list **ptr = &m_first_edge_duplicated_hook;
436
437 while (*ptr != entry)
438 ptr = &(*ptr)->next;
439 *ptr = entry->next;
440 free (entry);
441 }
442
443 /* Call all edge duplication hooks. */
444 void
445 symbol_table::call_edge_duplication_hooks (cgraph_edge *cs1, cgraph_edge *cs2)
446 {
447 cgraph_2edge_hook_list *entry = m_first_edge_duplicated_hook;
448 while (entry)
449 {
450 entry->hook (cs1, cs2, entry->data);
451 entry = entry->next;
452 }
453 }
454
455 /* Register HOOK to be called with DATA on each duplicated node. */
456 cgraph_2node_hook_list *
457 symbol_table::add_cgraph_duplication_hook (cgraph_2node_hook hook, void *data)
458 {
459 cgraph_2node_hook_list *entry;
460 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
461
462 entry = (cgraph_2node_hook_list *) xmalloc (sizeof (*entry));
463 entry->hook = hook;
464 entry->data = data;
465 entry->next = NULL;
466 while (*ptr)
467 ptr = &(*ptr)->next;
468 *ptr = entry;
469 return entry;
470 }
471
472 /* Remove ENTRY from the list of hooks called on duplicating nodes. */
473 void
474 symbol_table::remove_cgraph_duplication_hook (cgraph_2node_hook_list *entry)
475 {
476 cgraph_2node_hook_list **ptr = &m_first_cgraph_duplicated_hook;
477
478 while (*ptr != entry)
479 ptr = &(*ptr)->next;
480 *ptr = entry->next;
481 free (entry);
482 }
483
484 /* Call all node duplication hooks. */
485 void
486 symbol_table::call_cgraph_duplication_hooks (cgraph_node *node,
487 cgraph_node *node2)
488 {
489 cgraph_2node_hook_list *entry = m_first_cgraph_duplicated_hook;
490 while (entry)
491 {
492 entry->hook (node, node2, entry->data);
493 entry = entry->next;
494 }
495 }
496
497 /* Return cgraph node assigned to DECL. Create new one when needed. */
498
499 cgraph_node *
500 cgraph_node::create (tree decl)
501 {
502 cgraph_node *node = symtab->create_empty ();
503 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
504
505 node->decl = decl;
506
507 if ((flag_openacc || flag_openmp)
508 && lookup_attribute ("omp declare target", DECL_ATTRIBUTES (decl)))
509 {
510 node->offloadable = 1;
511 if (ENABLE_OFFLOADING)
512 g->have_offload = true;
513 }
514
515 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl)))
516 node->ifunc_resolver = true;
517
518 node->register_symbol ();
519
520 if (DECL_CONTEXT (decl) && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL)
521 {
522 node->origin = cgraph_node::get_create (DECL_CONTEXT (decl));
523 node->next_nested = node->origin->nested;
524 node->origin->nested = node;
525 }
526 return node;
527 }
528
529 /* Try to find a call graph node for declaration DECL and if it does not exist
530 or if it corresponds to an inline clone, create a new one. */
531
532 cgraph_node *
533 cgraph_node::get_create (tree decl)
534 {
535 cgraph_node *first_clone = cgraph_node::get (decl);
536
537 if (first_clone && !first_clone->inlined_to)
538 return first_clone;
539
540 cgraph_node *node = cgraph_node::create (decl);
541 if (first_clone)
542 {
543 first_clone->clone_of = node;
544 node->clones = first_clone;
545 node->order = first_clone->order;
546 symtab->symtab_prevail_in_asm_name_hash (node);
547 node->decl->decl_with_vis.symtab_node = node;
548 if (dump_file)
549 fprintf (dump_file, "Introduced new external node "
550 "(%s) and turned into root of the clone tree.\n",
551 node->dump_name ());
552 }
553 else if (dump_file)
554 fprintf (dump_file, "Introduced new external node "
555 "(%s).\n", node->dump_name ());
556 return node;
557 }
558
559 /* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing
560 the function body is associated with (not necessarily cgraph_node (DECL). */
561
562 cgraph_node *
563 cgraph_node::create_alias (tree alias, tree target)
564 {
565 cgraph_node *alias_node;
566
567 gcc_assert (TREE_CODE (target) == FUNCTION_DECL
568 || TREE_CODE (target) == IDENTIFIER_NODE);
569 gcc_assert (TREE_CODE (alias) == FUNCTION_DECL);
570 alias_node = cgraph_node::get_create (alias);
571 gcc_assert (!alias_node->definition);
572 alias_node->alias_target = target;
573 alias_node->definition = true;
574 alias_node->alias = true;
575 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (alias)) != NULL)
576 alias_node->transparent_alias = alias_node->weakref = true;
577 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (alias)))
578 alias_node->ifunc_resolver = true;
579 return alias_node;
580 }
581
582 /* Attempt to mark ALIAS as an alias to DECL. Return alias node if successful
583 and NULL otherwise.
584 Same body aliases are output whenever the body of DECL is output,
585 and cgraph_node::get (ALIAS) transparently returns
586 cgraph_node::get (DECL). */
587
588 cgraph_node *
589 cgraph_node::create_same_body_alias (tree alias, tree decl)
590 {
591 cgraph_node *n;
592
593 /* If aliases aren't supported by the assembler, fail. */
594 if (!TARGET_SUPPORTS_ALIASES)
595 return NULL;
596
597 /* Langhooks can create same body aliases of symbols not defined.
598 Those are useless. Drop them on the floor. */
599 if (symtab->global_info_ready)
600 return NULL;
601
602 n = cgraph_node::create_alias (alias, decl);
603 n->cpp_implicit_alias = true;
604 if (symtab->cpp_implicit_aliases_done)
605 n->resolve_alias (cgraph_node::get (decl));
606 return n;
607 }
608
609 /* Add thunk alias into callgraph. The alias declaration is ALIAS and it
610 aliases DECL with an adjustments made into the first parameter.
611 See comments in struct cgraph_thunk_info for detail on the parameters. */
612
613 cgraph_node *
614 cgraph_node::create_thunk (tree alias, tree, bool this_adjusting,
615 HOST_WIDE_INT fixed_offset,
616 HOST_WIDE_INT virtual_value,
617 HOST_WIDE_INT indirect_offset,
618 tree virtual_offset,
619 tree real_alias)
620 {
621 cgraph_node *node;
622
623 node = cgraph_node::get (alias);
624 if (node)
625 node->reset ();
626 else
627 node = cgraph_node::create (alias);
628
629 /* Make sure that if VIRTUAL_OFFSET is in sync with VIRTUAL_VALUE. */
630 gcc_checking_assert (virtual_offset
631 ? virtual_value == wi::to_wide (virtual_offset)
632 : virtual_value == 0);
633
634 node->thunk.fixed_offset = fixed_offset;
635 node->thunk.virtual_value = virtual_value;
636 node->thunk.indirect_offset = indirect_offset;
637 node->thunk.alias = real_alias;
638 node->thunk.this_adjusting = this_adjusting;
639 node->thunk.virtual_offset_p = virtual_offset != NULL;
640 node->thunk.thunk_p = true;
641 node->definition = true;
642
643 return node;
644 }
645
646 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
647 Return NULL if there's no such node. */
648
649 cgraph_node *
650 cgraph_node::get_for_asmname (tree asmname)
651 {
652 /* We do not want to look at inline clones. */
653 for (symtab_node *node = symtab_node::get_for_asmname (asmname);
654 node;
655 node = node->next_sharing_asm_name)
656 {
657 cgraph_node *cn = dyn_cast <cgraph_node *> (node);
658 if (cn && !cn->inlined_to)
659 return cn;
660 }
661 return NULL;
662 }
663
664 /* Returns a hash value for X (which really is a cgraph_edge). */
665
666 hashval_t
667 cgraph_edge_hasher::hash (cgraph_edge *e)
668 {
669 /* This is a really poor hash function, but it is what htab_hash_pointer
670 uses. */
671 return (hashval_t) ((intptr_t)e->call_stmt >> 3);
672 }
673
674 /* Returns a hash value for X (which really is a cgraph_edge). */
675
676 hashval_t
677 cgraph_edge_hasher::hash (gimple *call_stmt)
678 {
679 /* This is a really poor hash function, but it is what htab_hash_pointer
680 uses. */
681 return (hashval_t) ((intptr_t)call_stmt >> 3);
682 }
683
684 /* Return nonzero if the call_stmt of cgraph_edge X is stmt *Y. */
685
686 inline bool
687 cgraph_edge_hasher::equal (cgraph_edge *x, gimple *y)
688 {
689 return x->call_stmt == y;
690 }
691
692 /* Add call graph edge E to call site hash of its caller. */
693
694 static inline void
695 cgraph_update_edge_in_call_site_hash (cgraph_edge *e)
696 {
697 gimple *call = e->call_stmt;
698 *e->caller->call_site_hash->find_slot_with_hash
699 (call, cgraph_edge_hasher::hash (call), INSERT) = e;
700 }
701
702 /* Add call graph edge E to call site hash of its caller. */
703
704 static inline void
705 cgraph_add_edge_to_call_site_hash (cgraph_edge *e)
706 {
707 /* There are two speculative edges for every statement (one direct,
708 one indirect); always hash the direct one. */
709 if (e->speculative && e->indirect_unknown_callee)
710 return;
711 cgraph_edge **slot = e->caller->call_site_hash->find_slot_with_hash
712 (e->call_stmt, cgraph_edge_hasher::hash (e->call_stmt), INSERT);
713 if (*slot)
714 {
715 gcc_assert (((cgraph_edge *)*slot)->speculative);
716 if (e->callee)
717 *slot = e;
718 return;
719 }
720 gcc_assert (!*slot || e->speculative);
721 *slot = e;
722 }
723
724 /* Return the callgraph edge representing the GIMPLE_CALL statement
725 CALL_STMT. */
726
727 cgraph_edge *
728 cgraph_node::get_edge (gimple *call_stmt)
729 {
730 cgraph_edge *e, *e2;
731 int n = 0;
732
733 if (call_site_hash)
734 return call_site_hash->find_with_hash
735 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
736
737 /* This loop may turn out to be performance problem. In such case adding
738 hashtables into call nodes with very many edges is probably best
739 solution. It is not good idea to add pointer into CALL_EXPR itself
740 because we want to make possible having multiple cgraph nodes representing
741 different clones of the same body before the body is actually cloned. */
742 for (e = callees; e; e = e->next_callee)
743 {
744 if (e->call_stmt == call_stmt)
745 break;
746 n++;
747 }
748
749 if (!e)
750 for (e = indirect_calls; e; e = e->next_callee)
751 {
752 if (e->call_stmt == call_stmt)
753 break;
754 n++;
755 }
756
757 if (n > 100)
758 {
759 call_site_hash = hash_table<cgraph_edge_hasher>::create_ggc (120);
760 for (e2 = callees; e2; e2 = e2->next_callee)
761 cgraph_add_edge_to_call_site_hash (e2);
762 for (e2 = indirect_calls; e2; e2 = e2->next_callee)
763 cgraph_add_edge_to_call_site_hash (e2);
764 }
765
766 return e;
767 }
768
769
770 /* Change field call_stmt of edge to NEW_STMT.
771 If UPDATE_SPECULATIVE and E is any component of speculative
772 edge, then update all components. */
773
774 void
775 cgraph_edge::set_call_stmt (gcall *new_stmt, bool update_speculative)
776 {
777 tree decl;
778
779 /* Speculative edges has three component, update all of them
780 when asked to. */
781 if (update_speculative && speculative)
782 {
783 cgraph_edge *direct, *indirect;
784 ipa_ref *ref;
785
786 speculative_call_info (direct, indirect, ref);
787 direct->set_call_stmt (new_stmt, false);
788 indirect->set_call_stmt (new_stmt, false);
789 ref->stmt = new_stmt;
790 return;
791 }
792
793 /* Only direct speculative edges go to call_site_hash. */
794 if (caller->call_site_hash
795 && (!speculative || !indirect_unknown_callee))
796 {
797 caller->call_site_hash->remove_elt_with_hash
798 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
799 }
800
801 cgraph_edge *e = this;
802
803 call_stmt = new_stmt;
804 if (indirect_unknown_callee
805 && (decl = gimple_call_fndecl (new_stmt)))
806 {
807 /* Constant propagation (and possibly also inlining?) can turn an
808 indirect call into a direct one. */
809 cgraph_node *new_callee = cgraph_node::get (decl);
810
811 gcc_checking_assert (new_callee);
812 e = make_direct (new_callee);
813 }
814
815 function *fun = DECL_STRUCT_FUNCTION (e->caller->decl);
816 e->can_throw_external = stmt_can_throw_external (fun, new_stmt);
817 if (e->caller->call_site_hash)
818 cgraph_add_edge_to_call_site_hash (e);
819 }
820
821 /* Allocate a cgraph_edge structure and fill it with data according to the
822 parameters of which only CALLEE can be NULL (when creating an indirect call
823 edge). CLONING_P should be set if properties that are copied from an
824 original edge should not be calculated. */
825
826 cgraph_edge *
827 symbol_table::create_edge (cgraph_node *caller, cgraph_node *callee,
828 gcall *call_stmt, profile_count count,
829 bool indir_unknown_callee, bool cloning_p)
830 {
831 cgraph_edge *edge;
832
833 /* LTO does not actually have access to the call_stmt since these
834 have not been loaded yet. */
835 if (call_stmt)
836 {
837 /* This is a rather expensive check possibly triggering
838 construction of call stmt hashtable. */
839 cgraph_edge *e;
840 gcc_checking_assert (!(e = caller->get_edge (call_stmt))
841 || e->speculative);
842
843 gcc_assert (is_gimple_call (call_stmt));
844 }
845
846 edge = ggc_alloc<cgraph_edge> ();
847 edge->m_summary_id = -1;
848 edges_count++;
849
850 gcc_assert (++edges_max_uid != 0);
851 edge->m_uid = edges_max_uid;
852 edge->aux = NULL;
853 edge->caller = caller;
854 edge->callee = callee;
855 edge->prev_caller = NULL;
856 edge->next_caller = NULL;
857 edge->prev_callee = NULL;
858 edge->next_callee = NULL;
859 edge->lto_stmt_uid = 0;
860
861 edge->count = count;
862 edge->call_stmt = call_stmt;
863 edge->indirect_info = NULL;
864 edge->indirect_inlining_edge = 0;
865 edge->speculative = false;
866 edge->indirect_unknown_callee = indir_unknown_callee;
867 if (call_stmt && caller->call_site_hash)
868 cgraph_add_edge_to_call_site_hash (edge);
869
870 if (cloning_p)
871 return edge;
872
873 edge->can_throw_external
874 = call_stmt ? stmt_can_throw_external (DECL_STRUCT_FUNCTION (caller->decl),
875 call_stmt) : false;
876 edge->inline_failed = CIF_FUNCTION_NOT_CONSIDERED;
877 edge->call_stmt_cannot_inline_p = false;
878
879 if (opt_for_fn (edge->caller->decl, flag_devirtualize)
880 && call_stmt && DECL_STRUCT_FUNCTION (caller->decl))
881 edge->in_polymorphic_cdtor
882 = decl_maybe_in_construction_p (NULL, NULL, call_stmt,
883 caller->decl);
884 else
885 edge->in_polymorphic_cdtor = caller->thunk.thunk_p;
886
887 return edge;
888 }
889
890 /* Create edge from a given function to CALLEE in the cgraph. CLONING_P should
891 be set if properties that are copied from an original edge should not be
892 calculated. */
893
894 cgraph_edge *
895 cgraph_node::create_edge (cgraph_node *callee,
896 gcall *call_stmt, profile_count count, bool cloning_p)
897 {
898 cgraph_edge *edge = symtab->create_edge (this, callee, call_stmt, count,
899 false, cloning_p);
900
901 if (!cloning_p)
902 initialize_inline_failed (edge);
903
904 edge->next_caller = callee->callers;
905 if (callee->callers)
906 callee->callers->prev_caller = edge;
907 edge->next_callee = callees;
908 if (callees)
909 callees->prev_callee = edge;
910 callees = edge;
911 callee->callers = edge;
912
913 return edge;
914 }
915
916 /* Allocate cgraph_indirect_call_info and set its fields to default values. */
917
918 cgraph_indirect_call_info *
919 cgraph_allocate_init_indirect_info (void)
920 {
921 cgraph_indirect_call_info *ii;
922
923 ii = ggc_cleared_alloc<cgraph_indirect_call_info> ();
924 ii->param_index = -1;
925 return ii;
926 }
927
928 /* Create an indirect edge with a yet-undetermined callee where the call
929 statement destination is a formal parameter of the caller with index
930 PARAM_INDEX. CLONING_P should be set if properties that are copied from an
931 original edge should not be calculated and indirect_info structure should
932 not be calculated. */
933
934 cgraph_edge *
935 cgraph_node::create_indirect_edge (gcall *call_stmt, int ecf_flags,
936 profile_count count,
937 bool cloning_p)
938 {
939 cgraph_edge *edge = symtab->create_edge (this, NULL, call_stmt, count, true,
940 cloning_p);
941 tree target;
942
943 if (!cloning_p)
944 initialize_inline_failed (edge);
945
946 edge->indirect_info = cgraph_allocate_init_indirect_info ();
947 edge->indirect_info->ecf_flags = ecf_flags;
948 edge->indirect_info->vptr_changed = true;
949
950 /* Record polymorphic call info. */
951 if (!cloning_p
952 && call_stmt
953 && (target = gimple_call_fn (call_stmt))
954 && virtual_method_call_p (target))
955 {
956 ipa_polymorphic_call_context context (decl, target, call_stmt);
957
958 /* Only record types can have virtual calls. */
959 edge->indirect_info->polymorphic = true;
960 edge->indirect_info->param_index = -1;
961 edge->indirect_info->otr_token
962 = tree_to_uhwi (OBJ_TYPE_REF_TOKEN (target));
963 edge->indirect_info->otr_type = obj_type_ref_class (target);
964 gcc_assert (TREE_CODE (edge->indirect_info->otr_type) == RECORD_TYPE);
965 edge->indirect_info->context = context;
966 }
967
968 edge->next_callee = indirect_calls;
969 if (indirect_calls)
970 indirect_calls->prev_callee = edge;
971 indirect_calls = edge;
972
973 return edge;
974 }
975
976 /* Remove the edge from the list of the callees of the caller. */
977
978 void
979 cgraph_edge::remove_caller (void)
980 {
981 if (prev_callee)
982 prev_callee->next_callee = next_callee;
983 if (next_callee)
984 next_callee->prev_callee = prev_callee;
985 if (!prev_callee)
986 {
987 if (indirect_unknown_callee)
988 caller->indirect_calls = next_callee;
989 else
990 caller->callees = next_callee;
991 }
992 if (caller->call_site_hash)
993 caller->call_site_hash->remove_elt_with_hash
994 (call_stmt, cgraph_edge_hasher::hash (call_stmt));
995 }
996
997 /* Put the edge onto the free list. */
998
999 void
1000 symbol_table::free_edge (cgraph_edge *e)
1001 {
1002 edges_count--;
1003 if (e->m_summary_id != -1)
1004 edge_released_summary_ids.safe_push (e->m_summary_id);
1005
1006 if (e->indirect_info)
1007 ggc_free (e->indirect_info);
1008 ggc_free (e);
1009 }
1010
1011 /* Remove the edge in the cgraph. */
1012
1013 void
1014 cgraph_edge::remove (void)
1015 {
1016 /* Call all edge removal hooks. */
1017 symtab->call_edge_removal_hooks (this);
1018
1019 if (!indirect_unknown_callee)
1020 /* Remove from callers list of the callee. */
1021 remove_callee ();
1022
1023 /* Remove from callees list of the callers. */
1024 remove_caller ();
1025
1026 /* Put the edge onto the free list. */
1027 symtab->free_edge (this);
1028 }
1029
1030 /* Turn edge into speculative call calling N2. Update
1031 the profile so the direct call is taken COUNT times
1032 with FREQUENCY.
1033
1034 At clone materialization time, the indirect call E will
1035 be expanded as:
1036
1037 if (call_dest == N2)
1038 n2 ();
1039 else
1040 call call_dest
1041
1042 At this time the function just creates the direct call,
1043 the reference representing the if conditional and attaches
1044 them all to the original indirect call statement.
1045
1046 Return direct edge created. */
1047
1048 cgraph_edge *
1049 cgraph_edge::make_speculative (cgraph_node *n2, profile_count direct_count)
1050 {
1051 cgraph_node *n = caller;
1052 ipa_ref *ref = NULL;
1053 cgraph_edge *e2;
1054
1055 if (dump_file)
1056 fprintf (dump_file, "Indirect call -> speculative call %s => %s\n",
1057 n->dump_name (), n2->dump_name ());
1058 speculative = true;
1059 e2 = n->create_edge (n2, call_stmt, direct_count);
1060 initialize_inline_failed (e2);
1061 e2->speculative = true;
1062 if (TREE_NOTHROW (n2->decl))
1063 e2->can_throw_external = false;
1064 else
1065 e2->can_throw_external = can_throw_external;
1066 e2->lto_stmt_uid = lto_stmt_uid;
1067 e2->in_polymorphic_cdtor = in_polymorphic_cdtor;
1068 count -= e2->count;
1069 symtab->call_edge_duplication_hooks (this, e2);
1070 ref = n->create_reference (n2, IPA_REF_ADDR, call_stmt);
1071 ref->lto_stmt_uid = lto_stmt_uid;
1072 ref->speculative = speculative;
1073 n2->mark_address_taken ();
1074 return e2;
1075 }
1076
1077 /* Speculative call consist of three components:
1078 1) an indirect edge representing the original call
1079 2) an direct edge representing the new call
1080 3) ADDR_EXPR reference representing the speculative check.
1081 All three components are attached to single statement (the indirect
1082 call) and if one of them exists, all of them must exist.
1083
1084 Given speculative call edge, return all three components.
1085 */
1086
1087 void
1088 cgraph_edge::speculative_call_info (cgraph_edge *&direct,
1089 cgraph_edge *&indirect,
1090 ipa_ref *&reference)
1091 {
1092 ipa_ref *ref;
1093 int i;
1094 cgraph_edge *e2;
1095 cgraph_edge *e = this;
1096
1097 if (!e->indirect_unknown_callee)
1098 for (e2 = e->caller->indirect_calls;
1099 e2->call_stmt != e->call_stmt || e2->lto_stmt_uid != e->lto_stmt_uid;
1100 e2 = e2->next_callee)
1101 ;
1102 else
1103 {
1104 e2 = e;
1105 /* We can take advantage of the call stmt hash. */
1106 if (e2->call_stmt)
1107 {
1108 e = e->caller->get_edge (e2->call_stmt);
1109 gcc_assert (e->speculative && !e->indirect_unknown_callee);
1110 }
1111 else
1112 for (e = e->caller->callees;
1113 e2->call_stmt != e->call_stmt
1114 || e2->lto_stmt_uid != e->lto_stmt_uid;
1115 e = e->next_callee)
1116 ;
1117 }
1118 gcc_assert (e->speculative && e2->speculative);
1119 direct = e;
1120 indirect = e2;
1121
1122 reference = NULL;
1123 for (i = 0; e->caller->iterate_reference (i, ref); i++)
1124 if (ref->speculative
1125 && ((ref->stmt && ref->stmt == e->call_stmt)
1126 || (!ref->stmt && ref->lto_stmt_uid == e->lto_stmt_uid)))
1127 {
1128 reference = ref;
1129 break;
1130 }
1131
1132 /* Speculative edge always consist of all three components - direct edge,
1133 indirect and reference. */
1134
1135 gcc_assert (e && e2 && ref);
1136 }
1137
1138 /* Speculative call edge turned out to be direct call to CALLEE_DECL.
1139 Remove the speculative call sequence and return edge representing the call.
1140 It is up to caller to redirect the call as appropriate. */
1141
1142 cgraph_edge *
1143 cgraph_edge::resolve_speculation (tree callee_decl)
1144 {
1145 cgraph_edge *edge = this;
1146 cgraph_edge *e2;
1147 ipa_ref *ref;
1148
1149 gcc_assert (edge->speculative);
1150 edge->speculative_call_info (e2, edge, ref);
1151 if (!callee_decl
1152 || !ref->referred->semantically_equivalent_p
1153 (symtab_node::get (callee_decl)))
1154 {
1155 if (dump_file)
1156 {
1157 if (callee_decl)
1158 {
1159 fprintf (dump_file, "Speculative indirect call %s => %s has "
1160 "turned out to have contradicting known target ",
1161 edge->caller->dump_name (),
1162 e2->callee->dump_name ());
1163 print_generic_expr (dump_file, callee_decl);
1164 fprintf (dump_file, "\n");
1165 }
1166 else
1167 {
1168 fprintf (dump_file, "Removing speculative call %s => %s\n",
1169 edge->caller->dump_name (),
1170 e2->callee->dump_name ());
1171 }
1172 }
1173 }
1174 else
1175 {
1176 cgraph_edge *tmp = edge;
1177 if (dump_file)
1178 fprintf (dump_file, "Speculative call turned into direct call.\n");
1179 edge = e2;
1180 e2 = tmp;
1181 /* FIXME: If EDGE is inlined, we should scale up the frequencies and counts
1182 in the functions inlined through it. */
1183 }
1184 edge->count += e2->count;
1185 edge->speculative = false;
1186 e2->speculative = false;
1187 ref->remove_reference ();
1188 if (e2->indirect_unknown_callee || e2->inline_failed)
1189 e2->remove ();
1190 else
1191 e2->callee->remove_symbol_and_inline_clones ();
1192 if (edge->caller->call_site_hash)
1193 cgraph_update_edge_in_call_site_hash (edge);
1194 return edge;
1195 }
1196
1197 /* Make an indirect edge with an unknown callee an ordinary edge leading to
1198 CALLEE. DELTA is an integer constant that is to be added to the this
1199 pointer (first parameter) to compensate for skipping a thunk adjustment. */
1200
1201 cgraph_edge *
1202 cgraph_edge::make_direct (cgraph_node *callee)
1203 {
1204 cgraph_edge *edge = this;
1205 gcc_assert (indirect_unknown_callee);
1206
1207 /* If we are redirecting speculative call, make it non-speculative. */
1208 if (indirect_unknown_callee && speculative)
1209 {
1210 edge = edge->resolve_speculation (callee->decl);
1211
1212 /* On successful speculation just return the pre existing direct edge. */
1213 if (!edge->indirect_unknown_callee)
1214 return edge;
1215 }
1216
1217 indirect_unknown_callee = 0;
1218 ggc_free (indirect_info);
1219 indirect_info = NULL;
1220
1221 /* Get the edge out of the indirect edge list. */
1222 if (prev_callee)
1223 prev_callee->next_callee = next_callee;
1224 if (next_callee)
1225 next_callee->prev_callee = prev_callee;
1226 if (!prev_callee)
1227 caller->indirect_calls = next_callee;
1228
1229 /* Put it into the normal callee list */
1230 prev_callee = NULL;
1231 next_callee = caller->callees;
1232 if (caller->callees)
1233 caller->callees->prev_callee = edge;
1234 caller->callees = edge;
1235
1236 /* Insert to callers list of the new callee. */
1237 edge->set_callee (callee);
1238
1239 /* We need to re-determine the inlining status of the edge. */
1240 initialize_inline_failed (edge);
1241 return edge;
1242 }
1243
1244 /* If necessary, change the function declaration in the call statement
1245 associated with E so that it corresponds to the edge callee. */
1246
1247 gimple *
1248 cgraph_edge::redirect_call_stmt_to_callee (void)
1249 {
1250 cgraph_edge *e = this;
1251
1252 tree decl = gimple_call_fndecl (e->call_stmt);
1253 gcall *new_stmt;
1254 gimple_stmt_iterator gsi;
1255
1256 if (e->speculative)
1257 {
1258 cgraph_edge *e2;
1259 gcall *new_stmt;
1260 ipa_ref *ref;
1261
1262 e->speculative_call_info (e, e2, ref);
1263 /* If there already is an direct call (i.e. as a result of inliner's
1264 substitution), forget about speculating. */
1265 if (decl)
1266 e = e->resolve_speculation (decl);
1267 else
1268 {
1269 /* Expand speculation into GIMPLE code. */
1270 if (dump_file)
1271 {
1272 fprintf (dump_file,
1273 "Expanding speculative call of %s -> %s count: ",
1274 e->caller->dump_name (),
1275 e->callee->dump_name ());
1276 e->count.dump (dump_file);
1277 fprintf (dump_file, "\n");
1278 }
1279 gcc_assert (e2->speculative);
1280 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
1281
1282 profile_probability prob = e->count.probability_in (e->count
1283 + e2->count);
1284 if (!prob.initialized_p ())
1285 prob = profile_probability::even ();
1286 new_stmt = gimple_ic (e->call_stmt,
1287 dyn_cast<cgraph_node *> (ref->referred),
1288 prob);
1289 e->speculative = false;
1290 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt,
1291 false);
1292 e->count = gimple_bb (e->call_stmt)->count;
1293 e2->speculative = false;
1294 e2->count = gimple_bb (e2->call_stmt)->count;
1295 ref->speculative = false;
1296 ref->stmt = NULL;
1297 /* Indirect edges are not both in the call site hash.
1298 get it updated. */
1299 if (e->caller->call_site_hash)
1300 cgraph_update_edge_in_call_site_hash (e2);
1301 pop_cfun ();
1302 /* Continue redirecting E to proper target. */
1303 }
1304 }
1305
1306
1307 if (e->indirect_unknown_callee
1308 || decl == e->callee->decl)
1309 return e->call_stmt;
1310
1311 if (flag_checking && decl)
1312 {
1313 cgraph_node *node = cgraph_node::get (decl);
1314 gcc_assert (!node || !node->clone.param_adjustments);
1315 }
1316
1317 if (symtab->dump_file)
1318 {
1319 fprintf (symtab->dump_file, "updating call of %s -> %s: ",
1320 e->caller->dump_name (), e->callee->dump_name ());
1321 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1322 if (e->callee->clone.param_adjustments)
1323 e->callee->clone.param_adjustments->dump (symtab->dump_file);
1324 unsigned performed_len
1325 = vec_safe_length (e->caller->clone.performed_splits);
1326 if (performed_len > 0)
1327 fprintf (symtab->dump_file, "Performed splits records:\n");
1328 for (unsigned i = 0; i < performed_len; i++)
1329 {
1330 ipa_param_performed_split *sm
1331 = &(*e->caller->clone.performed_splits)[i];
1332 print_node_brief (symtab->dump_file, " dummy_decl: ", sm->dummy_decl,
1333 TDF_UID);
1334 fprintf (symtab->dump_file, ", unit_offset: %u\n", sm->unit_offset);
1335 }
1336 }
1337
1338 if (ipa_param_adjustments *padjs = e->callee->clone.param_adjustments)
1339 {
1340 /* We need to defer cleaning EH info on the new statement to
1341 fixup-cfg. We may not have dominator information at this point
1342 and thus would end up with unreachable blocks and have no way
1343 to communicate that we need to run CFG cleanup then. */
1344 int lp_nr = lookup_stmt_eh_lp (e->call_stmt);
1345 if (lp_nr != 0)
1346 remove_stmt_from_eh_lp (e->call_stmt);
1347
1348 tree old_fntype = gimple_call_fntype (e->call_stmt);
1349 new_stmt = padjs->modify_call (e->call_stmt,
1350 e->caller->clone.performed_splits,
1351 e->callee->decl, false);
1352 cgraph_node *origin = e->callee;
1353 while (origin->clone_of)
1354 origin = origin->clone_of;
1355
1356 if ((origin->former_clone_of
1357 && old_fntype == TREE_TYPE (origin->former_clone_of))
1358 || old_fntype == TREE_TYPE (origin->decl))
1359 gimple_call_set_fntype (new_stmt, TREE_TYPE (e->callee->decl));
1360 else
1361 {
1362 tree new_fntype = padjs->build_new_function_type (old_fntype, true);
1363 gimple_call_set_fntype (new_stmt, new_fntype);
1364 }
1365
1366 if (lp_nr != 0)
1367 add_stmt_to_eh_lp (new_stmt, lp_nr);
1368 }
1369 else
1370 {
1371 new_stmt = e->call_stmt;
1372 gimple_call_set_fndecl (new_stmt, e->callee->decl);
1373 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1374 }
1375
1376 /* If changing the call to __cxa_pure_virtual or similar noreturn function,
1377 adjust gimple_call_fntype too. */
1378 if (gimple_call_noreturn_p (new_stmt)
1379 && VOID_TYPE_P (TREE_TYPE (TREE_TYPE (e->callee->decl)))
1380 && TYPE_ARG_TYPES (TREE_TYPE (e->callee->decl))
1381 && (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (e->callee->decl)))
1382 == void_type_node))
1383 gimple_call_set_fntype (new_stmt, TREE_TYPE (e->callee->decl));
1384
1385 /* If the call becomes noreturn, remove the LHS if possible. */
1386 tree lhs = gimple_call_lhs (new_stmt);
1387 if (lhs
1388 && gimple_call_noreturn_p (new_stmt)
1389 && (VOID_TYPE_P (TREE_TYPE (gimple_call_fntype (new_stmt)))
1390 || should_remove_lhs_p (lhs)))
1391 {
1392 if (TREE_CODE (lhs) == SSA_NAME)
1393 {
1394 tree var = create_tmp_reg_fn (DECL_STRUCT_FUNCTION (e->caller->decl),
1395 TREE_TYPE (lhs), NULL);
1396 var = get_or_create_ssa_default_def
1397 (DECL_STRUCT_FUNCTION (e->caller->decl), var);
1398 gimple *set_stmt = gimple_build_assign (lhs, var);
1399 gsi = gsi_for_stmt (new_stmt);
1400 gsi_insert_before_without_update (&gsi, set_stmt, GSI_SAME_STMT);
1401 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), set_stmt);
1402 }
1403 gimple_call_set_lhs (new_stmt, NULL_TREE);
1404 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1405 }
1406
1407 /* If new callee has no static chain, remove it. */
1408 if (gimple_call_chain (new_stmt) && !DECL_STATIC_CHAIN (e->callee->decl))
1409 {
1410 gimple_call_set_chain (new_stmt, NULL);
1411 update_stmt_fn (DECL_STRUCT_FUNCTION (e->caller->decl), new_stmt);
1412 }
1413
1414 maybe_remove_unused_call_args (DECL_STRUCT_FUNCTION (e->caller->decl),
1415 new_stmt);
1416
1417 e->caller->set_call_stmt_including_clones (e->call_stmt, new_stmt, false);
1418
1419 if (symtab->dump_file)
1420 {
1421 fprintf (symtab->dump_file, " updated to:");
1422 print_gimple_stmt (symtab->dump_file, e->call_stmt, 0, dump_flags);
1423 }
1424 return new_stmt;
1425 }
1426
1427 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1428 OLD_STMT changed into NEW_STMT. OLD_CALL is gimple_call_fndecl
1429 of OLD_STMT if it was previously call statement.
1430 If NEW_STMT is NULL, the call has been dropped without any
1431 replacement. */
1432
1433 static void
1434 cgraph_update_edges_for_call_stmt_node (cgraph_node *node,
1435 gimple *old_stmt, tree old_call,
1436 gimple *new_stmt)
1437 {
1438 tree new_call = (new_stmt && is_gimple_call (new_stmt))
1439 ? gimple_call_fndecl (new_stmt) : 0;
1440
1441 /* We are seeing indirect calls, then there is nothing to update. */
1442 if (!new_call && !old_call)
1443 return;
1444 /* See if we turned indirect call into direct call or folded call to one builtin
1445 into different builtin. */
1446 if (old_call != new_call)
1447 {
1448 cgraph_edge *e = node->get_edge (old_stmt);
1449 cgraph_edge *ne = NULL;
1450 profile_count count;
1451
1452 if (e)
1453 {
1454 /* Keep calls marked as dead dead. */
1455 if (new_stmt && is_gimple_call (new_stmt) && e->callee
1456 && fndecl_built_in_p (e->callee->decl, BUILT_IN_UNREACHABLE))
1457 {
1458 node->get_edge (old_stmt)->set_call_stmt
1459 (as_a <gcall *> (new_stmt));
1460 return;
1461 }
1462 /* See if the edge is already there and has the correct callee. It
1463 might be so because of indirect inlining has already updated
1464 it. We also might've cloned and redirected the edge. */
1465 if (new_call && e->callee)
1466 {
1467 cgraph_node *callee = e->callee;
1468 while (callee)
1469 {
1470 if (callee->decl == new_call
1471 || callee->former_clone_of == new_call)
1472 {
1473 e->set_call_stmt (as_a <gcall *> (new_stmt));
1474 return;
1475 }
1476 callee = callee->clone_of;
1477 }
1478 }
1479
1480 /* Otherwise remove edge and create new one; we can't simply redirect
1481 since function has changed, so inline plan and other information
1482 attached to edge is invalid. */
1483 count = e->count;
1484 if (e->indirect_unknown_callee || e->inline_failed)
1485 e->remove ();
1486 else
1487 e->callee->remove_symbol_and_inline_clones ();
1488 }
1489 else if (new_call)
1490 {
1491 /* We are seeing new direct call; compute profile info based on BB. */
1492 basic_block bb = gimple_bb (new_stmt);
1493 count = bb->count;
1494 }
1495
1496 if (new_call)
1497 {
1498 ne = node->create_edge (cgraph_node::get_create (new_call),
1499 as_a <gcall *> (new_stmt), count);
1500 gcc_assert (ne->inline_failed);
1501 }
1502 }
1503 /* We only updated the call stmt; update pointer in cgraph edge.. */
1504 else if (old_stmt != new_stmt)
1505 node->get_edge (old_stmt)->set_call_stmt (as_a <gcall *> (new_stmt));
1506 }
1507
1508 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1509 OLD_STMT changed into NEW_STMT. OLD_DECL is gimple_call_fndecl
1510 of OLD_STMT before it was updated (updating can happen inplace). */
1511
1512 void
1513 cgraph_update_edges_for_call_stmt (gimple *old_stmt, tree old_decl,
1514 gimple *new_stmt)
1515 {
1516 cgraph_node *orig = cgraph_node::get (cfun->decl);
1517 cgraph_node *node;
1518
1519 gcc_checking_assert (orig);
1520 cgraph_update_edges_for_call_stmt_node (orig, old_stmt, old_decl, new_stmt);
1521 if (orig->clones)
1522 for (node = orig->clones; node != orig;)
1523 {
1524 cgraph_update_edges_for_call_stmt_node (node, old_stmt, old_decl, new_stmt);
1525 if (node->clones)
1526 node = node->clones;
1527 else if (node->next_sibling_clone)
1528 node = node->next_sibling_clone;
1529 else
1530 {
1531 while (node != orig && !node->next_sibling_clone)
1532 node = node->clone_of;
1533 if (node != orig)
1534 node = node->next_sibling_clone;
1535 }
1536 }
1537 }
1538
1539
1540 /* Remove all callees from the node. */
1541
1542 void
1543 cgraph_node::remove_callees (void)
1544 {
1545 cgraph_edge *e, *f;
1546
1547 /* It is sufficient to remove the edges from the lists of callers of
1548 the callees. The callee list of the node can be zapped with one
1549 assignment. */
1550 for (e = callees; e; e = f)
1551 {
1552 f = e->next_callee;
1553 symtab->call_edge_removal_hooks (e);
1554 if (!e->indirect_unknown_callee)
1555 e->remove_callee ();
1556 symtab->free_edge (e);
1557 }
1558 for (e = indirect_calls; e; e = f)
1559 {
1560 f = e->next_callee;
1561 symtab->call_edge_removal_hooks (e);
1562 if (!e->indirect_unknown_callee)
1563 e->remove_callee ();
1564 symtab->free_edge (e);
1565 }
1566 indirect_calls = NULL;
1567 callees = NULL;
1568 if (call_site_hash)
1569 {
1570 call_site_hash->empty ();
1571 call_site_hash = NULL;
1572 }
1573 }
1574
1575 /* Remove all callers from the node. */
1576
1577 void
1578 cgraph_node::remove_callers (void)
1579 {
1580 cgraph_edge *e, *f;
1581
1582 /* It is sufficient to remove the edges from the lists of callees of
1583 the callers. The caller list of the node can be zapped with one
1584 assignment. */
1585 for (e = callers; e; e = f)
1586 {
1587 f = e->next_caller;
1588 symtab->call_edge_removal_hooks (e);
1589 e->remove_caller ();
1590 symtab->free_edge (e);
1591 }
1592 callers = NULL;
1593 }
1594
1595 /* Helper function for cgraph_release_function_body and free_lang_data.
1596 It releases body from function DECL without having to inspect its
1597 possibly non-existent symtab node. */
1598
1599 void
1600 release_function_body (tree decl)
1601 {
1602 function *fn = DECL_STRUCT_FUNCTION (decl);
1603 if (fn)
1604 {
1605 if (fn->cfg
1606 && loops_for_fn (fn))
1607 {
1608 fn->curr_properties &= ~PROP_loops;
1609 loop_optimizer_finalize (fn);
1610 }
1611 if (fn->gimple_df)
1612 {
1613 delete_tree_ssa (fn);
1614 fn->eh = NULL;
1615 }
1616 if (fn->cfg)
1617 {
1618 gcc_assert (!dom_info_available_p (fn, CDI_DOMINATORS));
1619 gcc_assert (!dom_info_available_p (fn, CDI_POST_DOMINATORS));
1620 delete_tree_cfg_annotations (fn);
1621 clear_edges (fn);
1622 fn->cfg = NULL;
1623 }
1624 if (fn->value_histograms)
1625 free_histograms (fn);
1626 gimple_set_body (decl, NULL);
1627 /* Struct function hangs a lot of data that would leak if we didn't
1628 removed all pointers to it. */
1629 ggc_free (fn);
1630 DECL_STRUCT_FUNCTION (decl) = NULL;
1631 }
1632 DECL_SAVED_TREE (decl) = NULL;
1633 }
1634
1635 /* Release memory used to represent body of function.
1636 Use this only for functions that are released before being translated to
1637 target code (i.e. RTL). Functions that are compiled to RTL and beyond
1638 are free'd in final.c via free_after_compilation().
1639 KEEP_ARGUMENTS are useful only if you want to rebuild body as thunk. */
1640
1641 void
1642 cgraph_node::release_body (bool keep_arguments)
1643 {
1644 ipa_transforms_to_apply.release ();
1645 if (!used_as_abstract_origin && symtab->state != PARSING)
1646 {
1647 DECL_RESULT (decl) = NULL;
1648
1649 if (!keep_arguments)
1650 DECL_ARGUMENTS (decl) = NULL;
1651 }
1652 /* If the node is abstract and needed, then do not clear
1653 DECL_INITIAL of its associated function declaration because it's
1654 needed to emit debug info later. */
1655 if (!used_as_abstract_origin && DECL_INITIAL (decl))
1656 DECL_INITIAL (decl) = error_mark_node;
1657 release_function_body (decl);
1658 if (lto_file_data)
1659 {
1660 lto_free_function_in_decl_state_for_node (this);
1661 lto_file_data = NULL;
1662 }
1663 }
1664
1665 /* Remove function from symbol table. */
1666
1667 void
1668 cgraph_node::remove (void)
1669 {
1670 if (symtab->ipa_clones_dump_file && symtab->cloned_nodes.contains (this))
1671 fprintf (symtab->ipa_clones_dump_file,
1672 "Callgraph removal;%s;%d;%s;%d;%d\n", asm_name (), order,
1673 DECL_SOURCE_FILE (decl), DECL_SOURCE_LINE (decl),
1674 DECL_SOURCE_COLUMN (decl));
1675
1676 symtab->call_cgraph_removal_hooks (this);
1677 remove_callers ();
1678 remove_callees ();
1679 ipa_transforms_to_apply.release ();
1680 delete_function_version (function_version ());
1681
1682 /* Incremental inlining access removed nodes stored in the postorder list.
1683 */
1684 force_output = false;
1685 forced_by_abi = false;
1686 cgraph_node *next;
1687 for (cgraph_node *n = nested; n; n = next)
1688 {
1689 next = n->next_nested;
1690 n->origin = NULL;
1691 n->next_nested = NULL;
1692 }
1693 nested = NULL;
1694 if (origin)
1695 {
1696 cgraph_node **node2 = &origin->nested;
1697
1698 while (*node2 != this)
1699 node2 = &(*node2)->next_nested;
1700 *node2 = next_nested;
1701 }
1702 unregister ();
1703 if (prev_sibling_clone)
1704 prev_sibling_clone->next_sibling_clone = next_sibling_clone;
1705 else if (clone_of)
1706 clone_of->clones = next_sibling_clone;
1707 if (next_sibling_clone)
1708 next_sibling_clone->prev_sibling_clone = prev_sibling_clone;
1709 if (clones)
1710 {
1711 cgraph_node *n, *next;
1712
1713 if (clone_of)
1714 {
1715 for (n = clones; n->next_sibling_clone; n = n->next_sibling_clone)
1716 n->clone_of = clone_of;
1717 n->clone_of = clone_of;
1718 n->next_sibling_clone = clone_of->clones;
1719 if (clone_of->clones)
1720 clone_of->clones->prev_sibling_clone = n;
1721 clone_of->clones = clones;
1722 }
1723 else
1724 {
1725 /* We are removing node with clones. This makes clones inconsistent,
1726 but assume they will be removed subsequently and just keep clone
1727 tree intact. This can happen in unreachable function removal since
1728 we remove unreachable functions in random order, not by bottom-up
1729 walk of clone trees. */
1730 for (n = clones; n; n = next)
1731 {
1732 next = n->next_sibling_clone;
1733 n->next_sibling_clone = NULL;
1734 n->prev_sibling_clone = NULL;
1735 n->clone_of = NULL;
1736 }
1737 }
1738 }
1739
1740 /* While all the clones are removed after being proceeded, the function
1741 itself is kept in the cgraph even after it is compiled. Check whether
1742 we are done with this body and reclaim it proactively if this is the case.
1743 */
1744 if (symtab->state != LTO_STREAMING)
1745 {
1746 cgraph_node *n = cgraph_node::get (decl);
1747 if (!n
1748 || (!n->clones && !n->clone_of && !n->inlined_to
1749 && ((symtab->global_info_ready || in_lto_p)
1750 && (TREE_ASM_WRITTEN (n->decl)
1751 || DECL_EXTERNAL (n->decl)
1752 || !n->analyzed
1753 || (!flag_wpa && n->in_other_partition)))))
1754 release_body ();
1755 }
1756 else
1757 {
1758 lto_free_function_in_decl_state_for_node (this);
1759 lto_file_data = NULL;
1760 }
1761
1762 decl = NULL;
1763 if (call_site_hash)
1764 {
1765 call_site_hash->empty ();
1766 call_site_hash = NULL;
1767 }
1768
1769 symtab->release_symbol (this);
1770 }
1771
1772 /* Likewise indicate that a node is having address taken. */
1773
1774 void
1775 cgraph_node::mark_address_taken (void)
1776 {
1777 /* Indirect inlining can figure out that all uses of the address are
1778 inlined. */
1779 if (inlined_to)
1780 {
1781 gcc_assert (cfun->after_inlining);
1782 gcc_assert (callers->indirect_inlining_edge);
1783 return;
1784 }
1785 /* FIXME: address_taken flag is used both as a shortcut for testing whether
1786 IPA_REF_ADDR reference exists (and thus it should be set on node
1787 representing alias we take address of) and as a test whether address
1788 of the object was taken (and thus it should be set on node alias is
1789 referring to). We should remove the first use and the remove the
1790 following set. */
1791 address_taken = 1;
1792 cgraph_node *node = ultimate_alias_target ();
1793 node->address_taken = 1;
1794 }
1795
1796 /* Return local info node for the compiled function. */
1797
1798 cgraph_node *
1799 cgraph_node::local_info_node (tree decl)
1800 {
1801 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1802 cgraph_node *node = get (decl);
1803 if (!node)
1804 return NULL;
1805 return node->ultimate_alias_target ();
1806 }
1807
1808 /* Return RTL info for the compiled function. */
1809
1810 cgraph_rtl_info *
1811 cgraph_node::rtl_info (const_tree decl)
1812 {
1813 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1814 cgraph_node *node = get (decl);
1815 if (!node)
1816 return NULL;
1817 enum availability avail;
1818 node = node->ultimate_alias_target (&avail);
1819 if (decl != current_function_decl
1820 && (avail < AVAIL_AVAILABLE
1821 || (node->decl != current_function_decl
1822 && !TREE_ASM_WRITTEN (node->decl))))
1823 return NULL;
1824 /* Allocate if it doesn't exist. */
1825 if (node->rtl == NULL)
1826 {
1827 node->rtl = ggc_cleared_alloc<cgraph_rtl_info> ();
1828 SET_HARD_REG_SET (node->rtl->function_used_regs);
1829 }
1830 return node->rtl;
1831 }
1832
1833 /* Return a string describing the failure REASON. */
1834
1835 const char*
1836 cgraph_inline_failed_string (cgraph_inline_failed_t reason)
1837 {
1838 #undef DEFCIFCODE
1839 #define DEFCIFCODE(code, type, string) string,
1840
1841 static const char *cif_string_table[CIF_N_REASONS] = {
1842 #include "cif-code.def"
1843 };
1844
1845 /* Signedness of an enum type is implementation defined, so cast it
1846 to unsigned before testing. */
1847 gcc_assert ((unsigned) reason < CIF_N_REASONS);
1848 return cif_string_table[reason];
1849 }
1850
1851 /* Return a type describing the failure REASON. */
1852
1853 cgraph_inline_failed_type_t
1854 cgraph_inline_failed_type (cgraph_inline_failed_t reason)
1855 {
1856 #undef DEFCIFCODE
1857 #define DEFCIFCODE(code, type, string) type,
1858
1859 static cgraph_inline_failed_type_t cif_type_table[CIF_N_REASONS] = {
1860 #include "cif-code.def"
1861 };
1862
1863 /* Signedness of an enum type is implementation defined, so cast it
1864 to unsigned before testing. */
1865 gcc_assert ((unsigned) reason < CIF_N_REASONS);
1866 return cif_type_table[reason];
1867 }
1868
1869 /* Names used to print out the availability enum. */
1870 const char * const cgraph_availability_names[] =
1871 {"unset", "not_available", "overwritable", "available", "local"};
1872
1873 /* Output flags of edge to a file F. */
1874
1875 void
1876 cgraph_edge::dump_edge_flags (FILE *f)
1877 {
1878 if (speculative)
1879 fprintf (f, "(speculative) ");
1880 if (!inline_failed)
1881 fprintf (f, "(inlined) ");
1882 if (call_stmt_cannot_inline_p)
1883 fprintf (f, "(call_stmt_cannot_inline_p) ");
1884 if (indirect_inlining_edge)
1885 fprintf (f, "(indirect_inlining) ");
1886 if (count.initialized_p ())
1887 {
1888 fprintf (f, "(");
1889 count.dump (f);
1890 fprintf (f, ",");
1891 fprintf (f, "%.2f per call) ", sreal_frequency ().to_double ());
1892 }
1893 if (can_throw_external)
1894 fprintf (f, "(can throw external) ");
1895 }
1896
1897 /* Dump call graph node to file F. */
1898
1899 void
1900 cgraph_node::dump (FILE *f)
1901 {
1902 cgraph_edge *edge;
1903
1904 dump_base (f);
1905
1906 if (inlined_to)
1907 fprintf (f, " Function %s is inline copy in %s\n",
1908 dump_name (),
1909 inlined_to->dump_name ());
1910 if (clone_of)
1911 fprintf (f, " Clone of %s\n", clone_of->dump_asm_name ());
1912 if (symtab->function_flags_ready)
1913 fprintf (f, " Availability: %s\n",
1914 cgraph_availability_names [get_availability ()]);
1915
1916 if (profile_id)
1917 fprintf (f, " Profile id: %i\n",
1918 profile_id);
1919 if (unit_id)
1920 fprintf (f, " Unit id: %i\n",
1921 unit_id);
1922 cgraph_function_version_info *vi = function_version ();
1923 if (vi != NULL)
1924 {
1925 fprintf (f, " Version info: ");
1926 if (vi->prev != NULL)
1927 {
1928 fprintf (f, "prev: ");
1929 fprintf (f, "%s ", vi->prev->this_node->dump_asm_name ());
1930 }
1931 if (vi->next != NULL)
1932 {
1933 fprintf (f, "next: ");
1934 fprintf (f, "%s ", vi->next->this_node->dump_asm_name ());
1935 }
1936 if (vi->dispatcher_resolver != NULL_TREE)
1937 fprintf (f, "dispatcher: %s",
1938 lang_hooks.decl_printable_name (vi->dispatcher_resolver, 2));
1939
1940 fprintf (f, "\n");
1941 }
1942 fprintf (f, " Function flags:");
1943 if (count.initialized_p ())
1944 {
1945 fprintf (f, " count:");
1946 count.dump (f);
1947 }
1948 if (tp_first_run > 0)
1949 fprintf (f, " first_run:%" PRId64, (int64_t) tp_first_run);
1950 if (origin)
1951 fprintf (f, " nested in:%s", origin->asm_name ());
1952 if (gimple_has_body_p (decl))
1953 fprintf (f, " body");
1954 if (process)
1955 fprintf (f, " process");
1956 if (local)
1957 fprintf (f, " local");
1958 if (redefined_extern_inline)
1959 fprintf (f, " redefined_extern_inline");
1960 if (only_called_at_startup)
1961 fprintf (f, " only_called_at_startup");
1962 if (only_called_at_exit)
1963 fprintf (f, " only_called_at_exit");
1964 if (tm_clone)
1965 fprintf (f, " tm_clone");
1966 if (calls_comdat_local)
1967 fprintf (f, " calls_comdat_local");
1968 if (icf_merged)
1969 fprintf (f, " icf_merged");
1970 if (merged_comdat)
1971 fprintf (f, " merged_comdat");
1972 if (merged_extern_inline)
1973 fprintf (f, " merged_extern_inline");
1974 if (split_part)
1975 fprintf (f, " split_part");
1976 if (indirect_call_target)
1977 fprintf (f, " indirect_call_target");
1978 if (nonfreeing_fn)
1979 fprintf (f, " nonfreeing_fn");
1980 if (DECL_STATIC_CONSTRUCTOR (decl))
1981 fprintf (f," static_constructor (priority:%i)", get_init_priority ());
1982 if (DECL_STATIC_DESTRUCTOR (decl))
1983 fprintf (f," static_destructor (priority:%i)", get_fini_priority ());
1984 if (frequency == NODE_FREQUENCY_HOT)
1985 fprintf (f, " hot");
1986 if (frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED)
1987 fprintf (f, " unlikely_executed");
1988 if (frequency == NODE_FREQUENCY_EXECUTED_ONCE)
1989 fprintf (f, " executed_once");
1990 if (opt_for_fn (decl, optimize_size))
1991 fprintf (f, " optimize_size");
1992 if (parallelized_function)
1993 fprintf (f, " parallelized_function");
1994 if (DECL_IS_OPERATOR_NEW_P (decl))
1995 fprintf (f, " operator_new");
1996 if (DECL_IS_OPERATOR_DELETE_P (decl))
1997 fprintf (f, " operator_delete");
1998
1999
2000 fprintf (f, "\n");
2001
2002 if (thunk.thunk_p)
2003 {
2004 fprintf (f, " Thunk");
2005 if (thunk.alias)
2006 fprintf (f, " of %s (asm:%s)",
2007 lang_hooks.decl_printable_name (thunk.alias, 2),
2008 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2009 fprintf (f, " fixed offset %i virtual value %i indirect_offset %i "
2010 "has virtual offset %i\n",
2011 (int)thunk.fixed_offset,
2012 (int)thunk.virtual_value,
2013 (int)thunk.indirect_offset,
2014 (int)thunk.virtual_offset_p);
2015 }
2016 else if (former_thunk_p ())
2017 fprintf (f, " Former thunk fixed offset %i virtual value %i "
2018 "indirect_offset %i has virtual offset %i\n",
2019 (int)thunk.fixed_offset,
2020 (int)thunk.virtual_value,
2021 (int)thunk.indirect_offset,
2022 (int)thunk.virtual_offset_p);
2023 if (alias && thunk.alias
2024 && DECL_P (thunk.alias))
2025 {
2026 fprintf (f, " Alias of %s",
2027 lang_hooks.decl_printable_name (thunk.alias, 2));
2028 if (DECL_ASSEMBLER_NAME_SET_P (thunk.alias))
2029 fprintf (f, " (asm:%s)",
2030 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk.alias)));
2031 fprintf (f, "\n");
2032 }
2033
2034 fprintf (f, " Called by: ");
2035
2036 profile_count sum = profile_count::zero ();
2037 for (edge = callers; edge; edge = edge->next_caller)
2038 {
2039 fprintf (f, "%s ", edge->caller->dump_name ());
2040 edge->dump_edge_flags (f);
2041 if (edge->count.initialized_p ())
2042 sum += edge->count.ipa ();
2043 }
2044
2045 fprintf (f, "\n Calls: ");
2046 for (edge = callees; edge; edge = edge->next_callee)
2047 {
2048 fprintf (f, "%s ", edge->callee->dump_name ());
2049 edge->dump_edge_flags (f);
2050 }
2051 fprintf (f, "\n");
2052
2053 if (count.ipa ().initialized_p ())
2054 {
2055 bool ok = true;
2056 bool min = false;
2057 ipa_ref *ref;
2058
2059 FOR_EACH_ALIAS (this, ref)
2060 if (dyn_cast <cgraph_node *> (ref->referring)->count.initialized_p ())
2061 sum += dyn_cast <cgraph_node *> (ref->referring)->count.ipa ();
2062
2063 if (inlined_to
2064 || (symtab->state < EXPANSION
2065 && ultimate_alias_target () == this && only_called_directly_p ()))
2066 ok = !count.ipa ().differs_from_p (sum);
2067 else if (count.ipa () > profile_count::from_gcov_type (100)
2068 && count.ipa () < sum.apply_scale (99, 100))
2069 ok = false, min = true;
2070 if (!ok)
2071 {
2072 fprintf (f, " Invalid sum of caller counts ");
2073 sum.dump (f);
2074 if (min)
2075 fprintf (f, ", should be at most ");
2076 else
2077 fprintf (f, ", should be ");
2078 count.ipa ().dump (f);
2079 fprintf (f, "\n");
2080 }
2081 }
2082
2083 for (edge = indirect_calls; edge; edge = edge->next_callee)
2084 {
2085 if (edge->indirect_info->polymorphic)
2086 {
2087 fprintf (f, " Polymorphic indirect call of type ");
2088 print_generic_expr (f, edge->indirect_info->otr_type, TDF_SLIM);
2089 fprintf (f, " token:%i", (int) edge->indirect_info->otr_token);
2090 }
2091 else
2092 fprintf (f, " Indirect call");
2093 edge->dump_edge_flags (f);
2094 if (edge->indirect_info->param_index != -1)
2095 {
2096 fprintf (f, " of param:%i", edge->indirect_info->param_index);
2097 if (edge->indirect_info->agg_contents)
2098 fprintf (f, " loaded from %s %s at offset %i",
2099 edge->indirect_info->member_ptr ? "member ptr" : "aggregate",
2100 edge->indirect_info->by_ref ? "passed by reference":"",
2101 (int)edge->indirect_info->offset);
2102 if (edge->indirect_info->vptr_changed)
2103 fprintf (f, " (vptr maybe changed)");
2104 }
2105 fprintf (f, "\n");
2106 if (edge->indirect_info->polymorphic)
2107 edge->indirect_info->context.dump (f);
2108 }
2109 }
2110
2111 /* Dump call graph node to file F in graphviz format. */
2112
2113 void
2114 cgraph_node::dump_graphviz (FILE *f)
2115 {
2116 cgraph_edge *edge;
2117
2118 for (edge = callees; edge; edge = edge->next_callee)
2119 {
2120 cgraph_node *callee = edge->callee;
2121
2122 fprintf (f, "\t\"%s\" -> \"%s\"\n", dump_name (), callee->dump_name ());
2123 }
2124 }
2125
2126
2127 /* Dump call graph node NODE to stderr. */
2128
2129 DEBUG_FUNCTION void
2130 cgraph_node::debug (void)
2131 {
2132 dump (stderr);
2133 }
2134
2135 /* Dump the callgraph to file F. */
2136
2137 void
2138 cgraph_node::dump_cgraph (FILE *f)
2139 {
2140 cgraph_node *node;
2141
2142 fprintf (f, "callgraph:\n\n");
2143 FOR_EACH_FUNCTION (node)
2144 node->dump (f);
2145 }
2146
2147 /* Return true when the DECL can possibly be inlined. */
2148
2149 bool
2150 cgraph_function_possibly_inlined_p (tree decl)
2151 {
2152 if (!symtab->global_info_ready)
2153 return !DECL_UNINLINABLE (decl);
2154 return DECL_POSSIBLY_INLINED (decl);
2155 }
2156
2157 /* cgraph_node is no longer nested function; update cgraph accordingly. */
2158 void
2159 cgraph_node::unnest (void)
2160 {
2161 cgraph_node **node2 = &origin->nested;
2162 gcc_assert (origin);
2163
2164 while (*node2 != this)
2165 node2 = &(*node2)->next_nested;
2166 *node2 = next_nested;
2167 origin = NULL;
2168 }
2169
2170 /* Return function availability. See cgraph.h for description of individual
2171 return values. */
2172 enum availability
2173 cgraph_node::get_availability (symtab_node *ref)
2174 {
2175 if (ref)
2176 {
2177 cgraph_node *cref = dyn_cast <cgraph_node *> (ref);
2178 if (cref)
2179 ref = cref->inlined_to;
2180 }
2181 enum availability avail;
2182 if (!analyzed)
2183 avail = AVAIL_NOT_AVAILABLE;
2184 else if (local)
2185 avail = AVAIL_LOCAL;
2186 else if (inlined_to)
2187 avail = AVAIL_AVAILABLE;
2188 else if (transparent_alias)
2189 ultimate_alias_target (&avail, ref);
2190 else if (ifunc_resolver
2191 || lookup_attribute ("noipa", DECL_ATTRIBUTES (decl)))
2192 avail = AVAIL_INTERPOSABLE;
2193 else if (!externally_visible)
2194 avail = AVAIL_AVAILABLE;
2195 /* If this is a reference from symbol itself and there are no aliases, we
2196 may be sure that the symbol was not interposed by something else because
2197 the symbol itself would be unreachable otherwise.
2198
2199 Also comdat groups are always resolved in groups. */
2200 else if ((this == ref && !has_aliases_p ())
2201 || (ref && get_comdat_group ()
2202 && get_comdat_group () == ref->get_comdat_group ()))
2203 avail = AVAIL_AVAILABLE;
2204 /* Inline functions are safe to be analyzed even if their symbol can
2205 be overwritten at runtime. It is not meaningful to enforce any sane
2206 behavior on replacing inline function by different body. */
2207 else if (DECL_DECLARED_INLINE_P (decl))
2208 avail = AVAIL_AVAILABLE;
2209
2210 /* If the function can be overwritten, return OVERWRITABLE. Take
2211 care at least of two notable extensions - the COMDAT functions
2212 used to share template instantiations in C++ (this is symmetric
2213 to code cp_cannot_inline_tree_fn and probably shall be shared and
2214 the inlinability hooks completely eliminated). */
2215
2216 else if (decl_replaceable_p (decl) && !DECL_EXTERNAL (decl))
2217 avail = AVAIL_INTERPOSABLE;
2218 else avail = AVAIL_AVAILABLE;
2219
2220 return avail;
2221 }
2222
2223 /* Worker for cgraph_node_can_be_local_p. */
2224 static bool
2225 cgraph_node_cannot_be_local_p_1 (cgraph_node *node, void *)
2226 {
2227 return !(!node->force_output
2228 && !node->ifunc_resolver
2229 && ((DECL_COMDAT (node->decl)
2230 && !node->forced_by_abi
2231 && !node->used_from_object_file_p ()
2232 && !node->same_comdat_group)
2233 || !node->externally_visible));
2234 }
2235
2236 /* Return true if cgraph_node can be made local for API change.
2237 Extern inline functions and C++ COMDAT functions can be made local
2238 at the expense of possible code size growth if function is used in multiple
2239 compilation units. */
2240 bool
2241 cgraph_node::can_be_local_p (void)
2242 {
2243 return (!address_taken
2244 && !call_for_symbol_thunks_and_aliases (cgraph_node_cannot_be_local_p_1,
2245 NULL, true));
2246 }
2247
2248 /* Call callback on cgraph_node, thunks and aliases associated to cgraph_node.
2249 When INCLUDE_OVERWRITABLE is false, overwritable symbols are
2250 skipped. When EXCLUDE_VIRTUAL_THUNKS is true, virtual thunks are
2251 skipped. */
2252 bool
2253 cgraph_node::call_for_symbol_thunks_and_aliases (bool (*callback)
2254 (cgraph_node *, void *),
2255 void *data,
2256 bool include_overwritable,
2257 bool exclude_virtual_thunks)
2258 {
2259 cgraph_edge *e;
2260 ipa_ref *ref;
2261 enum availability avail = AVAIL_AVAILABLE;
2262
2263 if (include_overwritable
2264 || (avail = get_availability ()) > AVAIL_INTERPOSABLE)
2265 {
2266 if (callback (this, data))
2267 return true;
2268 }
2269 FOR_EACH_ALIAS (this, ref)
2270 {
2271 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2272 if (include_overwritable
2273 || alias->get_availability () > AVAIL_INTERPOSABLE)
2274 if (alias->call_for_symbol_thunks_and_aliases (callback, data,
2275 include_overwritable,
2276 exclude_virtual_thunks))
2277 return true;
2278 }
2279 if (avail <= AVAIL_INTERPOSABLE)
2280 return false;
2281 for (e = callers; e; e = e->next_caller)
2282 if (e->caller->thunk.thunk_p
2283 && (include_overwritable
2284 || e->caller->get_availability () > AVAIL_INTERPOSABLE)
2285 && !(exclude_virtual_thunks
2286 && e->caller->thunk.virtual_offset_p))
2287 if (e->caller->call_for_symbol_thunks_and_aliases (callback, data,
2288 include_overwritable,
2289 exclude_virtual_thunks))
2290 return true;
2291
2292 return false;
2293 }
2294
2295 /* Worker to bring NODE local. */
2296
2297 bool
2298 cgraph_node::make_local (cgraph_node *node, void *)
2299 {
2300 gcc_checking_assert (node->can_be_local_p ());
2301 if (DECL_COMDAT (node->decl) || DECL_EXTERNAL (node->decl))
2302 {
2303 node->make_decl_local ();
2304 node->set_section (NULL);
2305 node->set_comdat_group (NULL);
2306 node->externally_visible = false;
2307 node->forced_by_abi = false;
2308 node->local = true;
2309 node->set_section (NULL);
2310 node->unique_name = ((node->resolution == LDPR_PREVAILING_DEF_IRONLY
2311 || node->resolution == LDPR_PREVAILING_DEF_IRONLY_EXP)
2312 && !flag_incremental_link);
2313 node->resolution = LDPR_PREVAILING_DEF_IRONLY;
2314 gcc_assert (node->get_availability () == AVAIL_LOCAL);
2315 }
2316 return false;
2317 }
2318
2319 /* Bring cgraph node local. */
2320
2321 void
2322 cgraph_node::make_local (void)
2323 {
2324 call_for_symbol_thunks_and_aliases (cgraph_node::make_local, NULL, true);
2325 }
2326
2327 /* Worker to set nothrow flag. */
2328
2329 static void
2330 set_nothrow_flag_1 (cgraph_node *node, bool nothrow, bool non_call,
2331 bool *changed)
2332 {
2333 cgraph_edge *e;
2334
2335 if (nothrow && !TREE_NOTHROW (node->decl))
2336 {
2337 /* With non-call exceptions we can't say for sure if other function body
2338 was not possibly optimized to still throw. */
2339 if (!non_call || node->binds_to_current_def_p ())
2340 {
2341 TREE_NOTHROW (node->decl) = true;
2342 *changed = true;
2343 for (e = node->callers; e; e = e->next_caller)
2344 e->can_throw_external = false;
2345 }
2346 }
2347 else if (!nothrow && TREE_NOTHROW (node->decl))
2348 {
2349 TREE_NOTHROW (node->decl) = false;
2350 *changed = true;
2351 }
2352 ipa_ref *ref;
2353 FOR_EACH_ALIAS (node, ref)
2354 {
2355 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2356 if (!nothrow || alias->get_availability () > AVAIL_INTERPOSABLE)
2357 set_nothrow_flag_1 (alias, nothrow, non_call, changed);
2358 }
2359 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2360 if (e->caller->thunk.thunk_p
2361 && (!nothrow || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2362 set_nothrow_flag_1 (e->caller, nothrow, non_call, changed);
2363 }
2364
2365 /* Set TREE_NOTHROW on NODE's decl and on aliases of NODE
2366 if any to NOTHROW. */
2367
2368 bool
2369 cgraph_node::set_nothrow_flag (bool nothrow)
2370 {
2371 bool changed = false;
2372 bool non_call = opt_for_fn (decl, flag_non_call_exceptions);
2373
2374 if (!nothrow || get_availability () > AVAIL_INTERPOSABLE)
2375 set_nothrow_flag_1 (this, nothrow, non_call, &changed);
2376 else
2377 {
2378 ipa_ref *ref;
2379
2380 FOR_EACH_ALIAS (this, ref)
2381 {
2382 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2383 if (!nothrow || alias->get_availability () > AVAIL_INTERPOSABLE)
2384 set_nothrow_flag_1 (alias, nothrow, non_call, &changed);
2385 }
2386 }
2387 return changed;
2388 }
2389
2390 /* Worker to set malloc flag. */
2391 static void
2392 set_malloc_flag_1 (cgraph_node *node, bool malloc_p, bool *changed)
2393 {
2394 if (malloc_p && !DECL_IS_MALLOC (node->decl))
2395 {
2396 DECL_IS_MALLOC (node->decl) = true;
2397 *changed = true;
2398 }
2399
2400 ipa_ref *ref;
2401 FOR_EACH_ALIAS (node, ref)
2402 {
2403 cgraph_node *alias = dyn_cast<cgraph_node *> (ref->referring);
2404 if (!malloc_p || alias->get_availability () > AVAIL_INTERPOSABLE)
2405 set_malloc_flag_1 (alias, malloc_p, changed);
2406 }
2407
2408 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2409 if (e->caller->thunk.thunk_p
2410 && (!malloc_p || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2411 set_malloc_flag_1 (e->caller, malloc_p, changed);
2412 }
2413
2414 /* Set DECL_IS_MALLOC on NODE's decl and on NODE's aliases if any. */
2415
2416 bool
2417 cgraph_node::set_malloc_flag (bool malloc_p)
2418 {
2419 bool changed = false;
2420
2421 if (!malloc_p || get_availability () > AVAIL_INTERPOSABLE)
2422 set_malloc_flag_1 (this, malloc_p, &changed);
2423 else
2424 {
2425 ipa_ref *ref;
2426
2427 FOR_EACH_ALIAS (this, ref)
2428 {
2429 cgraph_node *alias = dyn_cast<cgraph_node *> (ref->referring);
2430 if (!malloc_p || alias->get_availability () > AVAIL_INTERPOSABLE)
2431 set_malloc_flag_1 (alias, malloc_p, &changed);
2432 }
2433 }
2434 return changed;
2435 }
2436
2437 /* Worker to set_const_flag. */
2438
2439 static void
2440 set_const_flag_1 (cgraph_node *node, bool set_const, bool looping,
2441 bool *changed)
2442 {
2443 /* Static constructors and destructors without a side effect can be
2444 optimized out. */
2445 if (set_const && !looping)
2446 {
2447 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2448 {
2449 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2450 *changed = true;
2451 }
2452 if (DECL_STATIC_DESTRUCTOR (node->decl))
2453 {
2454 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2455 *changed = true;
2456 }
2457 }
2458 if (!set_const)
2459 {
2460 if (TREE_READONLY (node->decl))
2461 {
2462 TREE_READONLY (node->decl) = 0;
2463 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2464 *changed = true;
2465 }
2466 }
2467 else
2468 {
2469 /* Consider function:
2470
2471 bool a(int *p)
2472 {
2473 return *p==*p;
2474 }
2475
2476 During early optimization we will turn this into:
2477
2478 bool a(int *p)
2479 {
2480 return true;
2481 }
2482
2483 Now if this function will be detected as CONST however when interposed
2484 it may end up being just pure. We always must assume the worst
2485 scenario here. */
2486 if (TREE_READONLY (node->decl))
2487 {
2488 if (!looping && DECL_LOOPING_CONST_OR_PURE_P (node->decl))
2489 {
2490 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2491 *changed = true;
2492 }
2493 }
2494 else if (node->binds_to_current_def_p ())
2495 {
2496 TREE_READONLY (node->decl) = true;
2497 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = looping;
2498 DECL_PURE_P (node->decl) = false;
2499 *changed = true;
2500 }
2501 else
2502 {
2503 if (dump_file && (dump_flags & TDF_DETAILS))
2504 fprintf (dump_file, "Dropping state to PURE because function does "
2505 "not bind to current def.\n");
2506 if (!DECL_PURE_P (node->decl))
2507 {
2508 DECL_PURE_P (node->decl) = true;
2509 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = looping;
2510 *changed = true;
2511 }
2512 else if (!looping && DECL_LOOPING_CONST_OR_PURE_P (node->decl))
2513 {
2514 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2515 *changed = true;
2516 }
2517 }
2518 }
2519
2520 ipa_ref *ref;
2521 FOR_EACH_ALIAS (node, ref)
2522 {
2523 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2524 if (!set_const || alias->get_availability () > AVAIL_INTERPOSABLE)
2525 set_const_flag_1 (alias, set_const, looping, changed);
2526 }
2527 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
2528 if (e->caller->thunk.thunk_p
2529 && (!set_const || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2530 {
2531 /* Virtual thunks access virtual offset in the vtable, so they can
2532 only be pure, never const. */
2533 if (set_const
2534 && (e->caller->thunk.virtual_offset_p
2535 || !node->binds_to_current_def_p (e->caller)))
2536 *changed |= e->caller->set_pure_flag (true, looping);
2537 else
2538 set_const_flag_1 (e->caller, set_const, looping, changed);
2539 }
2540 }
2541
2542 /* If SET_CONST is true, mark function, aliases and thunks to be ECF_CONST.
2543 If SET_CONST if false, clear the flag.
2544
2545 When setting the flag be careful about possible interposition and
2546 do not set the flag for functions that can be interposed and set pure
2547 flag for functions that can bind to other definition.
2548
2549 Return true if any change was done. */
2550
2551 bool
2552 cgraph_node::set_const_flag (bool set_const, bool looping)
2553 {
2554 bool changed = false;
2555 if (!set_const || get_availability () > AVAIL_INTERPOSABLE)
2556 set_const_flag_1 (this, set_const, looping, &changed);
2557 else
2558 {
2559 ipa_ref *ref;
2560
2561 FOR_EACH_ALIAS (this, ref)
2562 {
2563 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2564 if (!set_const || alias->get_availability () > AVAIL_INTERPOSABLE)
2565 set_const_flag_1 (alias, set_const, looping, &changed);
2566 }
2567 }
2568 return changed;
2569 }
2570
2571 /* Info used by set_pure_flag_1. */
2572
2573 struct set_pure_flag_info
2574 {
2575 bool pure;
2576 bool looping;
2577 bool changed;
2578 };
2579
2580 /* Worker to set_pure_flag. */
2581
2582 static bool
2583 set_pure_flag_1 (cgraph_node *node, void *data)
2584 {
2585 struct set_pure_flag_info *info = (struct set_pure_flag_info *)data;
2586 /* Static constructors and destructors without a side effect can be
2587 optimized out. */
2588 if (info->pure && !info->looping)
2589 {
2590 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2591 {
2592 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2593 info->changed = true;
2594 }
2595 if (DECL_STATIC_DESTRUCTOR (node->decl))
2596 {
2597 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2598 info->changed = true;
2599 }
2600 }
2601 if (info->pure)
2602 {
2603 if (!DECL_PURE_P (node->decl) && !TREE_READONLY (node->decl))
2604 {
2605 DECL_PURE_P (node->decl) = true;
2606 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = info->looping;
2607 info->changed = true;
2608 }
2609 else if (DECL_LOOPING_CONST_OR_PURE_P (node->decl)
2610 && !info->looping)
2611 {
2612 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2613 info->changed = true;
2614 }
2615 }
2616 else
2617 {
2618 if (DECL_PURE_P (node->decl))
2619 {
2620 DECL_PURE_P (node->decl) = false;
2621 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = false;
2622 info->changed = true;
2623 }
2624 }
2625 return false;
2626 }
2627
2628 /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node
2629 if any to PURE.
2630
2631 When setting the flag, be careful about possible interposition.
2632 Return true if any change was done. */
2633
2634 bool
2635 cgraph_node::set_pure_flag (bool pure, bool looping)
2636 {
2637 struct set_pure_flag_info info = {pure, looping, false};
2638 call_for_symbol_thunks_and_aliases (set_pure_flag_1, &info, !pure, true);
2639 return info.changed;
2640 }
2641
2642 /* Return true when cgraph_node cannot return or throw and thus
2643 it is safe to ignore its side effects for IPA analysis. */
2644
2645 bool
2646 cgraph_node::cannot_return_p (void)
2647 {
2648 int flags = flags_from_decl_or_type (decl);
2649 if (!opt_for_fn (decl, flag_exceptions))
2650 return (flags & ECF_NORETURN) != 0;
2651 else
2652 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2653 == (ECF_NORETURN | ECF_NOTHROW));
2654 }
2655
2656 /* Return true when call of edge cannot lead to return from caller
2657 and thus it is safe to ignore its side effects for IPA analysis
2658 when computing side effects of the caller.
2659 FIXME: We could actually mark all edges that have no reaching
2660 patch to the exit block or throw to get better results. */
2661 bool
2662 cgraph_edge::cannot_lead_to_return_p (void)
2663 {
2664 if (caller->cannot_return_p ())
2665 return true;
2666 if (indirect_unknown_callee)
2667 {
2668 int flags = indirect_info->ecf_flags;
2669 if (!opt_for_fn (caller->decl, flag_exceptions))
2670 return (flags & ECF_NORETURN) != 0;
2671 else
2672 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2673 == (ECF_NORETURN | ECF_NOTHROW));
2674 }
2675 else
2676 return callee->cannot_return_p ();
2677 }
2678
2679 /* Return true if the edge may be considered hot. */
2680
2681 bool
2682 cgraph_edge::maybe_hot_p (void)
2683 {
2684 if (!maybe_hot_count_p (NULL, count.ipa ()))
2685 return false;
2686 if (caller->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED
2687 || (callee
2688 && callee->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED))
2689 return false;
2690 if (caller->frequency > NODE_FREQUENCY_UNLIKELY_EXECUTED
2691 && (callee
2692 && callee->frequency <= NODE_FREQUENCY_EXECUTED_ONCE))
2693 return false;
2694 if (opt_for_fn (caller->decl, optimize_size))
2695 return false;
2696 if (caller->frequency == NODE_FREQUENCY_HOT)
2697 return true;
2698 if (!count.initialized_p ())
2699 return true;
2700 cgraph_node *where = caller->inlined_to ? caller->inlined_to : caller;
2701 if (!where->count.initialized_p ())
2702 return false;
2703 if (caller->frequency == NODE_FREQUENCY_EXECUTED_ONCE)
2704 {
2705 if (count.apply_scale (2, 1) < where->count.apply_scale (3, 1))
2706 return false;
2707 }
2708 else if (count.apply_scale (param_hot_bb_frequency_fraction , 1)
2709 < where->count)
2710 return false;
2711 return true;
2712 }
2713
2714 /* Worker for cgraph_can_remove_if_no_direct_calls_p. */
2715
2716 static bool
2717 nonremovable_p (cgraph_node *node, void *)
2718 {
2719 return !node->can_remove_if_no_direct_calls_and_refs_p ();
2720 }
2721
2722 /* Return true if whole comdat group can be removed if there are no direct
2723 calls to THIS. */
2724
2725 bool
2726 cgraph_node::can_remove_if_no_direct_calls_p (bool will_inline)
2727 {
2728 struct ipa_ref *ref;
2729
2730 /* For local symbols or non-comdat group it is the same as
2731 can_remove_if_no_direct_calls_p. */
2732 if (!externally_visible || !same_comdat_group)
2733 {
2734 if (DECL_EXTERNAL (decl))
2735 return true;
2736 if (address_taken)
2737 return false;
2738 return !call_for_symbol_and_aliases (nonremovable_p, NULL, true);
2739 }
2740
2741 if (will_inline && address_taken)
2742 return false;
2743
2744 /* Otherwise check if we can remove the symbol itself and then verify
2745 that only uses of the comdat groups are direct call to THIS
2746 or its aliases. */
2747 if (!can_remove_if_no_direct_calls_and_refs_p ())
2748 return false;
2749
2750 /* Check that all refs come from within the comdat group. */
2751 for (int i = 0; iterate_referring (i, ref); i++)
2752 if (ref->referring->get_comdat_group () != get_comdat_group ())
2753 return false;
2754
2755 struct cgraph_node *target = ultimate_alias_target ();
2756 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
2757 next != this; next = dyn_cast<cgraph_node *> (next->same_comdat_group))
2758 {
2759 if (!externally_visible)
2760 continue;
2761 if (!next->alias
2762 && !next->can_remove_if_no_direct_calls_and_refs_p ())
2763 return false;
2764
2765 /* If we see different symbol than THIS, be sure to check calls. */
2766 if (next->ultimate_alias_target () != target)
2767 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
2768 if (e->caller->get_comdat_group () != get_comdat_group ()
2769 || will_inline)
2770 return false;
2771
2772 /* If function is not being inlined, we care only about
2773 references outside of the comdat group. */
2774 if (!will_inline)
2775 for (int i = 0; next->iterate_referring (i, ref); i++)
2776 if (ref->referring->get_comdat_group () != get_comdat_group ())
2777 return false;
2778 }
2779 return true;
2780 }
2781
2782 /* Return true when function cgraph_node can be expected to be removed
2783 from program when direct calls in this compilation unit are removed.
2784
2785 As a special case COMDAT functions are
2786 cgraph_can_remove_if_no_direct_calls_p while the are not
2787 cgraph_only_called_directly_p (it is possible they are called from other
2788 unit)
2789
2790 This function behaves as cgraph_only_called_directly_p because eliminating
2791 all uses of COMDAT function does not make it necessarily disappear from
2792 the program unless we are compiling whole program or we do LTO. In this
2793 case we know we win since dynamic linking will not really discard the
2794 linkonce section. */
2795
2796 bool
2797 cgraph_node::will_be_removed_from_program_if_no_direct_calls_p
2798 (bool will_inline)
2799 {
2800 gcc_assert (!inlined_to);
2801 if (DECL_EXTERNAL (decl))
2802 return true;
2803
2804 if (!in_lto_p && !flag_whole_program)
2805 {
2806 /* If the symbol is in comdat group, we need to verify that whole comdat
2807 group becomes unreachable. Technically we could skip references from
2808 within the group, too. */
2809 if (!only_called_directly_p ())
2810 return false;
2811 if (same_comdat_group && externally_visible)
2812 {
2813 struct cgraph_node *target = ultimate_alias_target ();
2814
2815 if (will_inline && address_taken)
2816 return true;
2817 for (cgraph_node *next = dyn_cast<cgraph_node *> (same_comdat_group);
2818 next != this;
2819 next = dyn_cast<cgraph_node *> (next->same_comdat_group))
2820 {
2821 if (!externally_visible)
2822 continue;
2823 if (!next->alias
2824 && !next->only_called_directly_p ())
2825 return false;
2826
2827 /* If we see different symbol than THIS,
2828 be sure to check calls. */
2829 if (next->ultimate_alias_target () != target)
2830 for (cgraph_edge *e = next->callers; e; e = e->next_caller)
2831 if (e->caller->get_comdat_group () != get_comdat_group ()
2832 || will_inline)
2833 return false;
2834 }
2835 }
2836 return true;
2837 }
2838 else
2839 return can_remove_if_no_direct_calls_p (will_inline);
2840 }
2841
2842
2843 /* Worker for cgraph_only_called_directly_p. */
2844
2845 static bool
2846 cgraph_not_only_called_directly_p_1 (cgraph_node *node, void *)
2847 {
2848 return !node->only_called_directly_or_aliased_p ();
2849 }
2850
2851 /* Return true when function cgraph_node and all its aliases are only called
2852 directly.
2853 i.e. it is not externally visible, address was not taken and
2854 it is not used in any other non-standard way. */
2855
2856 bool
2857 cgraph_node::only_called_directly_p (void)
2858 {
2859 gcc_assert (ultimate_alias_target () == this);
2860 return !call_for_symbol_and_aliases (cgraph_not_only_called_directly_p_1,
2861 NULL, true);
2862 }
2863
2864
2865 /* Collect all callers of NODE. Worker for collect_callers_of_node. */
2866
2867 static bool
2868 collect_callers_of_node_1 (cgraph_node *node, void *data)
2869 {
2870 vec<cgraph_edge *> *redirect_callers = (vec<cgraph_edge *> *)data;
2871 cgraph_edge *cs;
2872 enum availability avail;
2873 node->ultimate_alias_target (&avail);
2874
2875 if (avail > AVAIL_INTERPOSABLE)
2876 for (cs = node->callers; cs != NULL; cs = cs->next_caller)
2877 if (!cs->indirect_inlining_edge
2878 && !cs->caller->thunk.thunk_p)
2879 redirect_callers->safe_push (cs);
2880 return false;
2881 }
2882
2883 /* Collect all callers of cgraph_node and its aliases that are known to lead to
2884 cgraph_node (i.e. are not overwritable). */
2885
2886 vec<cgraph_edge *>
2887 cgraph_node::collect_callers (void)
2888 {
2889 vec<cgraph_edge *> redirect_callers = vNULL;
2890 call_for_symbol_thunks_and_aliases (collect_callers_of_node_1,
2891 &redirect_callers, false);
2892 return redirect_callers;
2893 }
2894
2895
2896 /* Return TRUE if NODE2 a clone of NODE or is equivalent to it. Return
2897 optimistically true if this cannot be determined. */
2898
2899 static bool
2900 clone_of_p (cgraph_node *node, cgraph_node *node2)
2901 {
2902 node = node->ultimate_alias_target ();
2903 node2 = node2->ultimate_alias_target ();
2904
2905 if (node2->clone_of == node
2906 || node2->former_clone_of == node->decl)
2907 return true;
2908
2909 if (!node->thunk.thunk_p && !node->former_thunk_p ())
2910 {
2911 while (node2 && node->decl != node2->decl)
2912 node2 = node2->clone_of;
2913 return node2 != NULL;
2914 }
2915
2916 /* There are no virtual clones of thunks so check former_clone_of or if we
2917 might have skipped thunks because this adjustments are no longer
2918 necessary. */
2919 while (node->thunk.thunk_p || node->former_thunk_p ())
2920 {
2921 if (!node->thunk.this_adjusting)
2922 return false;
2923 /* In case of instrumented expanded thunks, which can have multiple calls
2924 in them, we do not know how to continue and just have to be
2925 optimistic. */
2926 if (node->callees->next_callee)
2927 return true;
2928 node = node->callees->callee->ultimate_alias_target ();
2929
2930 if (!node2->clone.param_adjustments
2931 || node2->clone.param_adjustments->first_param_intact_p ())
2932 return false;
2933 if (node2->former_clone_of == node->decl)
2934 return true;
2935
2936 cgraph_node *n2 = node2;
2937 while (n2 && node->decl != n2->decl)
2938 n2 = n2->clone_of;
2939 if (n2)
2940 return true;
2941 }
2942
2943 return false;
2944 }
2945
2946 /* Verify edge count and frequency. */
2947
2948 bool
2949 cgraph_edge::verify_count ()
2950 {
2951 bool error_found = false;
2952 if (!count.verify ())
2953 {
2954 error ("caller edge count invalid");
2955 error_found = true;
2956 }
2957 return error_found;
2958 }
2959
2960 /* Switch to THIS_CFUN if needed and print STMT to stderr. */
2961 static void
2962 cgraph_debug_gimple_stmt (function *this_cfun, gimple *stmt)
2963 {
2964 bool fndecl_was_null = false;
2965 /* debug_gimple_stmt needs correct cfun */
2966 if (cfun != this_cfun)
2967 set_cfun (this_cfun);
2968 /* ...and an actual current_function_decl */
2969 if (!current_function_decl)
2970 {
2971 current_function_decl = this_cfun->decl;
2972 fndecl_was_null = true;
2973 }
2974 debug_gimple_stmt (stmt);
2975 if (fndecl_was_null)
2976 current_function_decl = NULL;
2977 }
2978
2979 /* Verify that call graph edge corresponds to DECL from the associated
2980 statement. Return true if the verification should fail. */
2981
2982 bool
2983 cgraph_edge::verify_corresponds_to_fndecl (tree decl)
2984 {
2985 cgraph_node *node;
2986
2987 if (!decl || callee->inlined_to)
2988 return false;
2989 if (symtab->state == LTO_STREAMING)
2990 return false;
2991 node = cgraph_node::get (decl);
2992
2993 /* We do not know if a node from a different partition is an alias or what it
2994 aliases and therefore cannot do the former_clone_of check reliably. When
2995 body_removed is set, we have lost all information about what was alias or
2996 thunk of and also cannot proceed. */
2997 if (!node
2998 || node->body_removed
2999 || node->in_other_partition
3000 || callee->icf_merged
3001 || callee->in_other_partition)
3002 return false;
3003
3004 node = node->ultimate_alias_target ();
3005
3006 /* Optimizers can redirect unreachable calls or calls triggering undefined
3007 behavior to builtin_unreachable. */
3008
3009 if (fndecl_built_in_p (callee->decl, BUILT_IN_UNREACHABLE))
3010 return false;
3011
3012 if (callee->former_clone_of != node->decl
3013 && (node != callee->ultimate_alias_target ())
3014 && !clone_of_p (node, callee))
3015 return true;
3016 else
3017 return false;
3018 }
3019
3020 /* Disable warnings about missing quoting in GCC diagnostics for
3021 the verification errors. Their format strings don't follow GCC
3022 diagnostic conventions and the calls are ultimately followed by
3023 one to internal_error. */
3024 #if __GNUC__ >= 10
3025 # pragma GCC diagnostic push
3026 # pragma GCC diagnostic ignored "-Wformat-diag"
3027 #endif
3028
3029 /* Verify cgraph nodes of given cgraph node. */
3030 DEBUG_FUNCTION void
3031 cgraph_node::verify_node (void)
3032 {
3033 cgraph_edge *e;
3034 function *this_cfun = DECL_STRUCT_FUNCTION (decl);
3035 basic_block this_block;
3036 gimple_stmt_iterator gsi;
3037 bool error_found = false;
3038
3039 if (seen_error ())
3040 return;
3041
3042 timevar_push (TV_CGRAPH_VERIFY);
3043 error_found |= verify_base ();
3044 for (e = callees; e; e = e->next_callee)
3045 if (e->aux)
3046 {
3047 error ("aux field set for edge %s->%s",
3048 identifier_to_locale (e->caller->name ()),
3049 identifier_to_locale (e->callee->name ()));
3050 error_found = true;
3051 }
3052 if (!count.verify ())
3053 {
3054 error ("cgraph count invalid");
3055 error_found = true;
3056 }
3057 if (inlined_to && same_comdat_group)
3058 {
3059 error ("inline clone in same comdat group list");
3060 error_found = true;
3061 }
3062 if (inlined_to && !count.compatible_p (inlined_to->count))
3063 {
3064 error ("inline clone count is not compatible");
3065 count.debug ();
3066 inlined_to->count.debug ();
3067 error_found = true;
3068 }
3069 if (tp_first_run < 0)
3070 {
3071 error ("tp_first_run must be non-negative");
3072 error_found = true;
3073 }
3074 if (!definition && !in_other_partition && local)
3075 {
3076 error ("local symbols must be defined");
3077 error_found = true;
3078 }
3079 if (inlined_to && externally_visible)
3080 {
3081 error ("externally visible inline clone");
3082 error_found = true;
3083 }
3084 if (inlined_to && address_taken)
3085 {
3086 error ("inline clone with address taken");
3087 error_found = true;
3088 }
3089 if (inlined_to && force_output)
3090 {
3091 error ("inline clone is forced to output");
3092 error_found = true;
3093 }
3094 if (calls_comdat_local && !same_comdat_group)
3095 {
3096 error ("calls_comdat_local is set outside of a comdat group");
3097 error_found = true;
3098 }
3099 for (e = indirect_calls; e; e = e->next_callee)
3100 {
3101 if (e->aux)
3102 {
3103 error ("aux field set for indirect edge from %s",
3104 identifier_to_locale (e->caller->name ()));
3105 error_found = true;
3106 }
3107 if (!e->count.compatible_p (count))
3108 {
3109 error ("edge count is not compatible with function count");
3110 e->count.debug ();
3111 count.debug ();
3112 error_found = true;
3113 }
3114 if (!e->indirect_unknown_callee
3115 || !e->indirect_info)
3116 {
3117 error ("An indirect edge from %s is not marked as indirect or has "
3118 "associated indirect_info, the corresponding statement is: ",
3119 identifier_to_locale (e->caller->name ()));
3120 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3121 error_found = true;
3122 }
3123 }
3124 bool check_comdat = comdat_local_p ();
3125 for (e = callers; e; e = e->next_caller)
3126 {
3127 if (e->verify_count ())
3128 error_found = true;
3129 if (check_comdat
3130 && !in_same_comdat_group_p (e->caller))
3131 {
3132 error ("comdat-local function called by %s outside its comdat",
3133 identifier_to_locale (e->caller->name ()));
3134 error_found = true;
3135 }
3136 if (!e->inline_failed)
3137 {
3138 if (inlined_to
3139 != (e->caller->inlined_to
3140 ? e->caller->inlined_to : e->caller))
3141 {
3142 error ("inlined_to pointer is wrong");
3143 error_found = true;
3144 }
3145 if (callers->next_caller)
3146 {
3147 error ("multiple inline callers");
3148 error_found = true;
3149 }
3150 }
3151 else
3152 if (inlined_to)
3153 {
3154 error ("inlined_to pointer set for noninline callers");
3155 error_found = true;
3156 }
3157 }
3158 for (e = callees; e; e = e->next_callee)
3159 {
3160 if (e->verify_count ())
3161 error_found = true;
3162 if (!e->count.compatible_p (count))
3163 {
3164 error ("edge count is not compatible with function count");
3165 e->count.debug ();
3166 count.debug ();
3167 error_found = true;
3168 }
3169 if (gimple_has_body_p (e->caller->decl)
3170 && !e->caller->inlined_to
3171 && !e->speculative
3172 /* Optimized out calls are redirected to __builtin_unreachable. */
3173 && (e->count.nonzero_p ()
3174 || ! e->callee->decl
3175 || !fndecl_built_in_p (e->callee->decl, BUILT_IN_UNREACHABLE))
3176 && count
3177 == ENTRY_BLOCK_PTR_FOR_FN (DECL_STRUCT_FUNCTION (decl))->count
3178 && (!e->count.ipa_p ()
3179 && e->count.differs_from_p (gimple_bb (e->call_stmt)->count)))
3180 {
3181 error ("caller edge count does not match BB count");
3182 fprintf (stderr, "edge count: ");
3183 e->count.dump (stderr);
3184 fprintf (stderr, "\n bb count: ");
3185 gimple_bb (e->call_stmt)->count.dump (stderr);
3186 fprintf (stderr, "\n");
3187 error_found = true;
3188 }
3189 }
3190 for (e = indirect_calls; e; e = e->next_callee)
3191 {
3192 if (e->verify_count ())
3193 error_found = true;
3194 if (gimple_has_body_p (e->caller->decl)
3195 && !e->caller->inlined_to
3196 && !e->speculative
3197 && e->count.ipa_p ()
3198 && count
3199 == ENTRY_BLOCK_PTR_FOR_FN (DECL_STRUCT_FUNCTION (decl))->count
3200 && (!e->count.ipa_p ()
3201 && e->count.differs_from_p (gimple_bb (e->call_stmt)->count)))
3202 {
3203 error ("indirect call count does not match BB count");
3204 fprintf (stderr, "edge count: ");
3205 e->count.dump (stderr);
3206 fprintf (stderr, "\n bb count: ");
3207 gimple_bb (e->call_stmt)->count.dump (stderr);
3208 fprintf (stderr, "\n");
3209 error_found = true;
3210 }
3211 }
3212 if (!callers && inlined_to)
3213 {
3214 error ("inlined_to pointer is set but no predecessors found");
3215 error_found = true;
3216 }
3217 if (inlined_to == this)
3218 {
3219 error ("inlined_to pointer refers to itself");
3220 error_found = true;
3221 }
3222
3223 if (clone_of)
3224 {
3225 cgraph_node *first_clone = clone_of->clones;
3226 if (first_clone != this)
3227 {
3228 if (prev_sibling_clone->clone_of != clone_of)
3229 {
3230 error ("cgraph_node has wrong clone_of");
3231 error_found = true;
3232 }
3233 }
3234 }
3235 if (clones)
3236 {
3237 cgraph_node *n;
3238 for (n = clones; n; n = n->next_sibling_clone)
3239 if (n->clone_of != this)
3240 break;
3241 if (n)
3242 {
3243 error ("cgraph_node has wrong clone list");
3244 error_found = true;
3245 }
3246 }
3247 if ((prev_sibling_clone || next_sibling_clone) && !clone_of)
3248 {
3249 error ("cgraph_node is in clone list but it is not clone");
3250 error_found = true;
3251 }
3252 if (!prev_sibling_clone && clone_of && clone_of->clones != this)
3253 {
3254 error ("cgraph_node has wrong prev_clone pointer");
3255 error_found = true;
3256 }
3257 if (prev_sibling_clone && prev_sibling_clone->next_sibling_clone != this)
3258 {
3259 error ("double linked list of clones corrupted");
3260 error_found = true;
3261 }
3262
3263 if (analyzed && alias)
3264 {
3265 bool ref_found = false;
3266 int i;
3267 ipa_ref *ref = NULL;
3268
3269 if (callees)
3270 {
3271 error ("Alias has call edges");
3272 error_found = true;
3273 }
3274 for (i = 0; iterate_reference (i, ref); i++)
3275 if (ref->use != IPA_REF_ALIAS)
3276 {
3277 error ("Alias has non-alias reference");
3278 error_found = true;
3279 }
3280 else if (ref_found)
3281 {
3282 error ("Alias has more than one alias reference");
3283 error_found = true;
3284 }
3285 else
3286 ref_found = true;
3287 if (!ref_found)
3288 {
3289 error ("Analyzed alias has no reference");
3290 error_found = true;
3291 }
3292 }
3293
3294 if (analyzed && thunk.thunk_p)
3295 {
3296 if (!callees)
3297 {
3298 error ("No edge out of thunk node");
3299 error_found = true;
3300 }
3301 else if (callees->next_callee)
3302 {
3303 error ("More than one edge out of thunk node");
3304 error_found = true;
3305 }
3306 if (gimple_has_body_p (decl) && !inlined_to)
3307 {
3308 error ("Thunk is not supposed to have body");
3309 error_found = true;
3310 }
3311 }
3312 else if (analyzed && gimple_has_body_p (decl)
3313 && !TREE_ASM_WRITTEN (decl)
3314 && (!DECL_EXTERNAL (decl) || inlined_to)
3315 && !flag_wpa)
3316 {
3317 if (this_cfun->cfg)
3318 {
3319 hash_set<gimple *> stmts;
3320 int i;
3321 ipa_ref *ref = NULL;
3322
3323 /* Reach the trees by walking over the CFG, and note the
3324 enclosing basic-blocks in the call edges. */
3325 FOR_EACH_BB_FN (this_block, this_cfun)
3326 {
3327 for (gsi = gsi_start_phis (this_block);
3328 !gsi_end_p (gsi); gsi_next (&gsi))
3329 stmts.add (gsi_stmt (gsi));
3330 for (gsi = gsi_start_bb (this_block);
3331 !gsi_end_p (gsi);
3332 gsi_next (&gsi))
3333 {
3334 gimple *stmt = gsi_stmt (gsi);
3335 stmts.add (stmt);
3336 if (is_gimple_call (stmt))
3337 {
3338 cgraph_edge *e = get_edge (stmt);
3339 tree decl = gimple_call_fndecl (stmt);
3340 if (e)
3341 {
3342 if (e->aux)
3343 {
3344 error ("shared call_stmt:");
3345 cgraph_debug_gimple_stmt (this_cfun, stmt);
3346 error_found = true;
3347 }
3348 if (!e->indirect_unknown_callee)
3349 {
3350 if (e->verify_corresponds_to_fndecl (decl))
3351 {
3352 error ("edge points to wrong declaration:");
3353 debug_tree (e->callee->decl);
3354 fprintf (stderr," Instead of:");
3355 debug_tree (decl);
3356 error_found = true;
3357 }
3358 }
3359 else if (decl)
3360 {
3361 error ("an indirect edge with unknown callee "
3362 "corresponding to a call_stmt with "
3363 "a known declaration:");
3364 error_found = true;
3365 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3366 }
3367 e->aux = (void *)1;
3368 }
3369 else if (decl)
3370 {
3371 error ("missing callgraph edge for call stmt:");
3372 cgraph_debug_gimple_stmt (this_cfun, stmt);
3373 error_found = true;
3374 }
3375 }
3376 }
3377 }
3378 for (i = 0; iterate_reference (i, ref); i++)
3379 if (ref->stmt && !stmts.contains (ref->stmt))
3380 {
3381 error ("reference to dead statement");
3382 cgraph_debug_gimple_stmt (this_cfun, ref->stmt);
3383 error_found = true;
3384 }
3385 }
3386 else
3387 /* No CFG available?! */
3388 gcc_unreachable ();
3389
3390 for (e = callees; e; e = e->next_callee)
3391 {
3392 if (!e->aux)
3393 {
3394 error ("edge %s->%s has no corresponding call_stmt",
3395 identifier_to_locale (e->caller->name ()),
3396 identifier_to_locale (e->callee->name ()));
3397 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3398 error_found = true;
3399 }
3400 e->aux = 0;
3401 }
3402 for (e = indirect_calls; e; e = e->next_callee)
3403 {
3404 if (!e->aux && !e->speculative)
3405 {
3406 error ("an indirect edge from %s has no corresponding call_stmt",
3407 identifier_to_locale (e->caller->name ()));
3408 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3409 error_found = true;
3410 }
3411 e->aux = 0;
3412 }
3413 }
3414
3415 if (nested != NULL)
3416 {
3417 for (cgraph_node *n = nested; n != NULL; n = n->next_nested)
3418 {
3419 if (n->origin == NULL)
3420 {
3421 error ("missing origin for a node in a nested list");
3422 error_found = true;
3423 }
3424 else if (n->origin != this)
3425 {
3426 error ("origin points to a different parent");
3427 error_found = true;
3428 break;
3429 }
3430 }
3431 }
3432 if (next_nested != NULL && origin == NULL)
3433 {
3434 error ("missing origin for a node in a nested list");
3435 error_found = true;
3436 }
3437
3438 if (error_found)
3439 {
3440 dump (stderr);
3441 internal_error ("verify_cgraph_node failed");
3442 }
3443 timevar_pop (TV_CGRAPH_VERIFY);
3444 }
3445
3446 /* Verify whole cgraph structure. */
3447 DEBUG_FUNCTION void
3448 cgraph_node::verify_cgraph_nodes (void)
3449 {
3450 cgraph_node *node;
3451
3452 if (seen_error ())
3453 return;
3454
3455 FOR_EACH_FUNCTION (node)
3456 node->verify ();
3457 }
3458
3459 #if __GNUC__ >= 10
3460 # pragma GCC diagnostic pop
3461 #endif
3462
3463 /* Walk the alias chain to return the function cgraph_node is alias of.
3464 Walk through thunks, too.
3465 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3466 When REF is non-NULL, assume that reference happens in symbol REF
3467 when determining the availability. */
3468
3469 cgraph_node *
3470 cgraph_node::function_symbol (enum availability *availability,
3471 struct symtab_node *ref)
3472 {
3473 cgraph_node *node = ultimate_alias_target (availability, ref);
3474
3475 while (node->thunk.thunk_p)
3476 {
3477 ref = node;
3478 node = node->callees->callee;
3479 if (availability)
3480 {
3481 enum availability a;
3482 a = node->get_availability (ref);
3483 if (a < *availability)
3484 *availability = a;
3485 }
3486 node = node->ultimate_alias_target (availability, ref);
3487 }
3488 return node;
3489 }
3490
3491 /* Walk the alias chain to return the function cgraph_node is alias of.
3492 Walk through non virtual thunks, too. Thus we return either a function
3493 or a virtual thunk node.
3494 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3495 When REF is non-NULL, assume that reference happens in symbol REF
3496 when determining the availability. */
3497
3498 cgraph_node *
3499 cgraph_node::function_or_virtual_thunk_symbol
3500 (enum availability *availability,
3501 struct symtab_node *ref)
3502 {
3503 cgraph_node *node = ultimate_alias_target (availability, ref);
3504
3505 while (node->thunk.thunk_p && !node->thunk.virtual_offset_p)
3506 {
3507 ref = node;
3508 node = node->callees->callee;
3509 if (availability)
3510 {
3511 enum availability a;
3512 a = node->get_availability (ref);
3513 if (a < *availability)
3514 *availability = a;
3515 }
3516 node = node->ultimate_alias_target (availability, ref);
3517 }
3518 return node;
3519 }
3520
3521 /* When doing LTO, read cgraph_node's body from disk if it is not already
3522 present. */
3523
3524 bool
3525 cgraph_node::get_untransformed_body (void)
3526 {
3527 lto_file_decl_data *file_data;
3528 const char *data, *name;
3529 size_t len;
3530 tree decl = this->decl;
3531
3532 /* Check if body is already there. Either we have gimple body or
3533 the function is thunk and in that case we set DECL_ARGUMENTS. */
3534 if (DECL_ARGUMENTS (decl) || gimple_has_body_p (decl))
3535 return false;
3536
3537 gcc_assert (in_lto_p && !DECL_RESULT (decl));
3538
3539 timevar_push (TV_IPA_LTO_GIMPLE_IN);
3540
3541 file_data = lto_file_data;
3542 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
3543
3544 /* We may have renamed the declaration, e.g., a static function. */
3545 name = lto_get_decl_name_mapping (file_data, name);
3546 struct lto_in_decl_state *decl_state
3547 = lto_get_function_in_decl_state (file_data, decl);
3548
3549 cgraph_node *origin = this;
3550 while (origin->clone_of)
3551 origin = origin->clone_of;
3552
3553 int stream_order = origin->order - file_data->order_base;
3554 data = lto_get_section_data (file_data, LTO_section_function_body,
3555 name, stream_order, &len,
3556 decl_state->compressed);
3557 if (!data)
3558 fatal_error (input_location, "%s: section %s.%d is missing",
3559 file_data->file_name, name, stream_order);
3560
3561 gcc_assert (DECL_STRUCT_FUNCTION (decl) == NULL);
3562
3563 if (!quiet_flag)
3564 fprintf (stderr, " in:%s", IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
3565 lto_input_function_body (file_data, this, data);
3566 lto_stats.num_function_bodies++;
3567 lto_free_section_data (file_data, LTO_section_function_body, name,
3568 data, len, decl_state->compressed);
3569 lto_free_function_in_decl_state_for_node (this);
3570 /* Keep lto file data so ipa-inline-analysis knows about cross module
3571 inlining. */
3572
3573 timevar_pop (TV_IPA_LTO_GIMPLE_IN);
3574
3575 return true;
3576 }
3577
3578 /* Prepare function body. When doing LTO, read cgraph_node's body from disk
3579 if it is not already present. When some IPA transformations are scheduled,
3580 apply them. */
3581
3582 bool
3583 cgraph_node::get_body (void)
3584 {
3585 bool updated;
3586
3587 updated = get_untransformed_body ();
3588
3589 /* Getting transformed body makes no sense for inline clones;
3590 we should never use this on real clones because they are materialized
3591 early.
3592 TODO: Materializing clones here will likely lead to smaller LTRANS
3593 footprint. */
3594 gcc_assert (!inlined_to && !clone_of);
3595 if (ipa_transforms_to_apply.exists ())
3596 {
3597 opt_pass *saved_current_pass = current_pass;
3598 FILE *saved_dump_file = dump_file;
3599 const char *saved_dump_file_name = dump_file_name;
3600 dump_flags_t saved_dump_flags = dump_flags;
3601 dump_file_name = NULL;
3602 set_dump_file (NULL);
3603
3604 push_cfun (DECL_STRUCT_FUNCTION (decl));
3605
3606 update_ssa (TODO_update_ssa_only_virtuals);
3607 execute_all_ipa_transforms (true);
3608 cgraph_edge::rebuild_edges ();
3609 free_dominance_info (CDI_DOMINATORS);
3610 free_dominance_info (CDI_POST_DOMINATORS);
3611 pop_cfun ();
3612 updated = true;
3613
3614 current_pass = saved_current_pass;
3615 set_dump_file (saved_dump_file);
3616 dump_file_name = saved_dump_file_name;
3617 dump_flags = saved_dump_flags;
3618 }
3619 return updated;
3620 }
3621
3622 /* Return the DECL_STRUCT_FUNCTION of the function. */
3623
3624 struct function *
3625 cgraph_node::get_fun () const
3626 {
3627 const cgraph_node *node = this;
3628 struct function *fun = DECL_STRUCT_FUNCTION (node->decl);
3629
3630 while (!fun && node->clone_of)
3631 {
3632 node = node->clone_of;
3633 fun = DECL_STRUCT_FUNCTION (node->decl);
3634 }
3635
3636 return fun;
3637 }
3638
3639 /* Reset all state within cgraph.c so that we can rerun the compiler
3640 within the same process. For use by toplev::finalize. */
3641
3642 void
3643 cgraph_c_finalize (void)
3644 {
3645 symtab = NULL;
3646
3647 x_cgraph_nodes_queue = NULL;
3648
3649 cgraph_fnver_htab = NULL;
3650 version_info_node = NULL;
3651 }
3652
3653 /* A worker for call_for_symbol_and_aliases. */
3654
3655 bool
3656 cgraph_node::call_for_symbol_and_aliases_1 (bool (*callback) (cgraph_node *,
3657 void *),
3658 void *data,
3659 bool include_overwritable)
3660 {
3661 ipa_ref *ref;
3662 FOR_EACH_ALIAS (this, ref)
3663 {
3664 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
3665 if (include_overwritable
3666 || alias->get_availability () > AVAIL_INTERPOSABLE)
3667 if (alias->call_for_symbol_and_aliases (callback, data,
3668 include_overwritable))
3669 return true;
3670 }
3671 return false;
3672 }
3673
3674 /* Return true if NODE has thunk. */
3675
3676 bool
3677 cgraph_node::has_thunk_p (cgraph_node *node, void *)
3678 {
3679 for (cgraph_edge *e = node->callers; e; e = e->next_caller)
3680 if (e->caller->thunk.thunk_p)
3681 return true;
3682 return false;
3683 }
3684
3685 /* Expected frequency of executions within the function. */
3686
3687 sreal
3688 cgraph_edge::sreal_frequency ()
3689 {
3690 return count.to_sreal_scale (caller->inlined_to
3691 ? caller->inlined_to->count
3692 : caller->count);
3693 }
3694
3695
3696 /* During LTO stream in this can be used to check whether call can possibly
3697 be internal to the current translation unit. */
3698
3699 bool
3700 cgraph_edge::possibly_call_in_translation_unit_p (void)
3701 {
3702 gcc_checking_assert (in_lto_p && caller->prevailing_p ());
3703
3704 /* While incremental linking we may end up getting function body later. */
3705 if (flag_incremental_link == INCREMENTAL_LINK_LTO)
3706 return true;
3707
3708 /* We may be smarter here and avoid streaming in indirect calls we can't
3709 track, but that would require arranging streaming the indirect call
3710 summary first. */
3711 if (!callee)
3712 return true;
3713
3714 /* If callee is local to the original translation unit, it will be
3715 defined. */
3716 if (!TREE_PUBLIC (callee->decl) && !DECL_EXTERNAL (callee->decl))
3717 return true;
3718
3719 /* Otherwise we need to lookup prevailing symbol (symbol table is not merged,
3720 yet) and see if it is a definition. In fact we may also resolve aliases,
3721 but that is probably not too important. */
3722 symtab_node *node = callee;
3723 for (int n = 10; node->previous_sharing_asm_name && n ; n--)
3724 node = node->previous_sharing_asm_name;
3725 if (node->previous_sharing_asm_name)
3726 node = symtab_node::get_for_asmname (DECL_ASSEMBLER_NAME (callee->decl));
3727 gcc_assert (TREE_PUBLIC (node->decl));
3728 return node->get_availability () >= AVAIL_INTERPOSABLE;
3729 }
3730
3731 /* A stashed copy of "symtab" for use by selftest::symbol_table_test.
3732 This needs to be a global so that it can be a GC root, and thus
3733 prevent the stashed copy from being garbage-collected if the GC runs
3734 during a symbol_table_test. */
3735
3736 symbol_table *saved_symtab;
3737
3738 #if CHECKING_P
3739
3740 namespace selftest {
3741
3742 /* class selftest::symbol_table_test. */
3743
3744 /* Constructor. Store the old value of symtab, and create a new one. */
3745
3746 symbol_table_test::symbol_table_test ()
3747 {
3748 gcc_assert (saved_symtab == NULL);
3749 saved_symtab = symtab;
3750 symtab = new (ggc_alloc<symbol_table> ()) symbol_table ();
3751 }
3752
3753 /* Destructor. Restore the old value of symtab. */
3754
3755 symbol_table_test::~symbol_table_test ()
3756 {
3757 gcc_assert (saved_symtab != NULL);
3758 symtab = saved_symtab;
3759 saved_symtab = NULL;
3760 }
3761
3762 /* Verify that symbol_table_test works. */
3763
3764 static void
3765 test_symbol_table_test ()
3766 {
3767 /* Simulate running two selftests involving symbol tables. */
3768 for (int i = 0; i < 2; i++)
3769 {
3770 symbol_table_test stt;
3771 tree test_decl = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL,
3772 get_identifier ("test_decl"),
3773 build_function_type_list (void_type_node,
3774 NULL_TREE));
3775 cgraph_node *node = cgraph_node::get_create (test_decl);
3776 gcc_assert (node);
3777
3778 /* Verify that the node has order 0 on both iterations,
3779 and thus that nodes have predictable dump names in selftests. */
3780 ASSERT_EQ (node->order, 0);
3781 ASSERT_STREQ (node->dump_name (), "test_decl/0");
3782 }
3783 }
3784
3785 /* Run all of the selftests within this file. */
3786
3787 void
3788 cgraph_c_tests ()
3789 {
3790 test_symbol_table_test ();
3791 }
3792
3793 } // namespace selftest
3794
3795 #endif /* CHECKING_P */
3796
3797 #include "gt-cgraph.h"