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