Merger of git branch "gimple-classes-v2-option-3"
[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 calback on cgraph_node, thunks and aliases associated to cgraph_node.
2197 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2198 skipped. */
2199
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 {
2206 cgraph_edge *e;
2207 ipa_ref *ref;
2208
2209 if (callback (this, data))
2210 return true;
2211 for (e = callers; e; e = e->next_caller)
2212 if (e->caller->thunk.thunk_p
2213 && (include_overwritable
2214 || e->caller->get_availability () > AVAIL_INTERPOSABLE))
2215 if (e->caller->call_for_symbol_thunks_and_aliases (callback, data,
2216 include_overwritable))
2217 return true;
2218
2219 FOR_EACH_ALIAS (this, ref)
2220 {
2221 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2222 if (include_overwritable
2223 || alias->get_availability () > AVAIL_INTERPOSABLE)
2224 if (alias->call_for_symbol_thunks_and_aliases (callback, data,
2225 include_overwritable))
2226 return true;
2227 }
2228 return false;
2229 }
2230
2231 /* Call calback on function and aliases associated to the function.
2232 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2233 skipped. */
2234
2235 bool
2236 cgraph_node::call_for_symbol_and_aliases (bool (*callback) (cgraph_node *,
2237 void *),
2238 void *data,
2239 bool include_overwritable)
2240 {
2241 ipa_ref *ref;
2242
2243 if (callback (this, data))
2244 return true;
2245
2246 FOR_EACH_ALIAS (this, ref)
2247 {
2248 cgraph_node *alias = dyn_cast <cgraph_node *> (ref->referring);
2249 if (include_overwritable
2250 || alias->get_availability () > AVAIL_INTERPOSABLE)
2251 if (alias->call_for_symbol_and_aliases (callback, data,
2252 include_overwritable))
2253 return true;
2254 }
2255 return false;
2256 }
2257
2258 /* Worker to bring NODE local. */
2259
2260 bool
2261 cgraph_node::make_local (cgraph_node *node, void *)
2262 {
2263 gcc_checking_assert (node->can_be_local_p ());
2264 if (DECL_COMDAT (node->decl) || DECL_EXTERNAL (node->decl))
2265 {
2266 node->make_decl_local ();
2267 node->set_section (NULL);
2268 node->set_comdat_group (NULL);
2269 node->externally_visible = false;
2270 node->forced_by_abi = false;
2271 node->local.local = true;
2272 node->set_section (NULL);
2273 node->unique_name = (node->resolution == LDPR_PREVAILING_DEF_IRONLY
2274 || node->resolution == LDPR_PREVAILING_DEF_IRONLY_EXP);
2275 node->resolution = LDPR_PREVAILING_DEF_IRONLY;
2276 gcc_assert (node->get_availability () == AVAIL_LOCAL);
2277 }
2278 return false;
2279 }
2280
2281 /* Bring cgraph node local. */
2282
2283 void
2284 cgraph_node::make_local (void)
2285 {
2286 call_for_symbol_thunks_and_aliases (cgraph_node::make_local, NULL, true);
2287 }
2288
2289 /* Worker to set nothrow flag. */
2290
2291 static bool
2292 cgraph_set_nothrow_flag_1 (cgraph_node *node, void *data)
2293 {
2294 cgraph_edge *e;
2295
2296 TREE_NOTHROW (node->decl) = data != NULL;
2297
2298 if (data != NULL)
2299 for (e = node->callers; e; e = e->next_caller)
2300 e->can_throw_external = false;
2301 return false;
2302 }
2303
2304 /* Set TREE_NOTHROW on NODE's decl and on aliases of NODE
2305 if any to NOTHROW. */
2306
2307 void
2308 cgraph_node::set_nothrow_flag (bool nothrow)
2309 {
2310 call_for_symbol_thunks_and_aliases (cgraph_set_nothrow_flag_1,
2311 (void *)(size_t)nothrow, false);
2312 }
2313
2314 /* Worker to set const flag. */
2315
2316 static bool
2317 cgraph_set_const_flag_1 (cgraph_node *node, void *data)
2318 {
2319 /* Static constructors and destructors without a side effect can be
2320 optimized out. */
2321 if (data && !((size_t)data & 2))
2322 {
2323 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2324 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2325 if (DECL_STATIC_DESTRUCTOR (node->decl))
2326 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2327 }
2328 TREE_READONLY (node->decl) = data != NULL;
2329 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = ((size_t)data & 2) != 0;
2330 return false;
2331 }
2332
2333 /* Set TREE_READONLY on cgraph_node's decl and on aliases of the node
2334 if any to READONLY. */
2335
2336 void
2337 cgraph_node::set_const_flag (bool readonly, bool looping)
2338 {
2339 call_for_symbol_thunks_and_aliases (cgraph_set_const_flag_1,
2340 (void *)(size_t)(readonly + (int)looping * 2),
2341 false);
2342 }
2343
2344 /* Worker to set pure flag. */
2345
2346 static bool
2347 cgraph_set_pure_flag_1 (cgraph_node *node, void *data)
2348 {
2349 /* Static constructors and destructors without a side effect can be
2350 optimized out. */
2351 if (data && !((size_t)data & 2))
2352 {
2353 if (DECL_STATIC_CONSTRUCTOR (node->decl))
2354 DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2355 if (DECL_STATIC_DESTRUCTOR (node->decl))
2356 DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2357 }
2358 DECL_PURE_P (node->decl) = data != NULL;
2359 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = ((size_t)data & 2) != 0;
2360 return false;
2361 }
2362
2363 /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node
2364 if any to PURE. */
2365
2366 void
2367 cgraph_node::set_pure_flag (bool pure, bool looping)
2368 {
2369 call_for_symbol_thunks_and_aliases (cgraph_set_pure_flag_1,
2370 (void *)(size_t)(pure + (int)looping * 2),
2371 false);
2372 }
2373
2374 /* Return true when cgraph_node can not return or throw and thus
2375 it is safe to ignore its side effects for IPA analysis. */
2376
2377 bool
2378 cgraph_node::cannot_return_p (void)
2379 {
2380 int flags = flags_from_decl_or_type (decl);
2381 if (!opt_for_fn (decl, flag_exceptions))
2382 return (flags & ECF_NORETURN) != 0;
2383 else
2384 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2385 == (ECF_NORETURN | ECF_NOTHROW));
2386 }
2387
2388 /* Return true when call of edge can not lead to return from caller
2389 and thus it is safe to ignore its side effects for IPA analysis
2390 when computing side effects of the caller.
2391 FIXME: We could actually mark all edges that have no reaching
2392 patch to the exit block or throw to get better results. */
2393 bool
2394 cgraph_edge::cannot_lead_to_return_p (void)
2395 {
2396 if (caller->cannot_return_p ())
2397 return true;
2398 if (indirect_unknown_callee)
2399 {
2400 int flags = indirect_info->ecf_flags;
2401 if (!opt_for_fn (caller->decl, flag_exceptions))
2402 return (flags & ECF_NORETURN) != 0;
2403 else
2404 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2405 == (ECF_NORETURN | ECF_NOTHROW));
2406 }
2407 else
2408 return callee->cannot_return_p ();
2409 }
2410
2411 /* Return true if the call can be hot. */
2412
2413 bool
2414 cgraph_edge::maybe_hot_p (void)
2415 {
2416 /* TODO: Export profile_status from cfun->cfg to cgraph_node. */
2417 if (profile_info
2418 && opt_for_fn (caller->decl, flag_branch_probabilities)
2419 && !maybe_hot_count_p (NULL, count))
2420 return false;
2421 if (caller->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED
2422 || (callee
2423 && callee->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED))
2424 return false;
2425 if (caller->frequency > NODE_FREQUENCY_UNLIKELY_EXECUTED
2426 && (callee
2427 && callee->frequency <= NODE_FREQUENCY_EXECUTED_ONCE))
2428 return false;
2429 if (opt_for_fn (caller->decl, optimize_size))
2430 return false;
2431 if (caller->frequency == NODE_FREQUENCY_HOT)
2432 return true;
2433 if (caller->frequency == NODE_FREQUENCY_EXECUTED_ONCE
2434 && frequency < CGRAPH_FREQ_BASE * 3 / 2)
2435 return false;
2436 if (opt_for_fn (caller->decl, flag_guess_branch_prob))
2437 {
2438 if (PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION) == 0
2439 || frequency <= (CGRAPH_FREQ_BASE
2440 / PARAM_VALUE (HOT_BB_FREQUENCY_FRACTION)))
2441 return false;
2442 }
2443 return true;
2444 }
2445
2446 /* Return true when function can be removed from callgraph
2447 if all direct calls are eliminated. */
2448
2449 bool
2450 cgraph_node::can_remove_if_no_direct_calls_and_refs_p (void)
2451 {
2452 gcc_assert (!global.inlined_to);
2453 /* Instrumentation clones should not be removed before
2454 instrumentation happens. New callers may appear after
2455 instrumentation. */
2456 if (instrumentation_clone
2457 && !chkp_function_instrumented_p (decl))
2458 return false;
2459 /* Extern inlines can always go, we will use the external definition. */
2460 if (DECL_EXTERNAL (decl))
2461 return true;
2462 /* When function is needed, we can not remove it. */
2463 if (force_output || used_from_other_partition)
2464 return false;
2465 if (DECL_STATIC_CONSTRUCTOR (decl)
2466 || DECL_STATIC_DESTRUCTOR (decl))
2467 return false;
2468 /* Only COMDAT functions can be removed if externally visible. */
2469 if (externally_visible
2470 && (!DECL_COMDAT (decl)
2471 || forced_by_abi
2472 || used_from_object_file_p ()))
2473 return false;
2474 return true;
2475 }
2476
2477 /* Worker for cgraph_can_remove_if_no_direct_calls_p. */
2478
2479 static bool
2480 nonremovable_p (cgraph_node *node, void *)
2481 {
2482 return !node->can_remove_if_no_direct_calls_and_refs_p ();
2483 }
2484
2485 /* Return true when function cgraph_node and its aliases can be removed from
2486 callgraph if all direct calls are eliminated. */
2487
2488 bool
2489 cgraph_node::can_remove_if_no_direct_calls_p (void)
2490 {
2491 /* Extern inlines can always go, we will use the external definition. */
2492 if (DECL_EXTERNAL (decl))
2493 return true;
2494 if (address_taken)
2495 return false;
2496 return !call_for_symbol_and_aliases (nonremovable_p, NULL, true);
2497 }
2498
2499 /* Return true when function cgraph_node can be expected to be removed
2500 from program when direct calls in this compilation unit are removed.
2501
2502 As a special case COMDAT functions are
2503 cgraph_can_remove_if_no_direct_calls_p while the are not
2504 cgraph_only_called_directly_p (it is possible they are called from other
2505 unit)
2506
2507 This function behaves as cgraph_only_called_directly_p because eliminating
2508 all uses of COMDAT function does not make it necessarily disappear from
2509 the program unless we are compiling whole program or we do LTO. In this
2510 case we know we win since dynamic linking will not really discard the
2511 linkonce section. */
2512
2513 bool
2514 cgraph_node::will_be_removed_from_program_if_no_direct_calls_p (void)
2515 {
2516 gcc_assert (!global.inlined_to);
2517
2518 if (call_for_symbol_and_aliases (used_from_object_file_p_worker,
2519 NULL, true))
2520 return false;
2521 if (!in_lto_p && !flag_whole_program)
2522 return only_called_directly_p ();
2523 else
2524 {
2525 if (DECL_EXTERNAL (decl))
2526 return true;
2527 return can_remove_if_no_direct_calls_p ();
2528 }
2529 }
2530
2531
2532 /* Worker for cgraph_only_called_directly_p. */
2533
2534 static bool
2535 cgraph_not_only_called_directly_p_1 (cgraph_node *node, void *)
2536 {
2537 return !node->only_called_directly_or_aliased_p ();
2538 }
2539
2540 /* Return true when function cgraph_node and all its aliases are only called
2541 directly.
2542 i.e. it is not externally visible, address was not taken and
2543 it is not used in any other non-standard way. */
2544
2545 bool
2546 cgraph_node::only_called_directly_p (void)
2547 {
2548 gcc_assert (ultimate_alias_target () == this);
2549 return !call_for_symbol_and_aliases (cgraph_not_only_called_directly_p_1,
2550 NULL, true);
2551 }
2552
2553
2554 /* Collect all callers of NODE. Worker for collect_callers_of_node. */
2555
2556 static bool
2557 collect_callers_of_node_1 (cgraph_node *node, void *data)
2558 {
2559 vec<cgraph_edge *> *redirect_callers = (vec<cgraph_edge *> *)data;
2560 cgraph_edge *cs;
2561 enum availability avail;
2562 node->ultimate_alias_target (&avail);
2563
2564 if (avail > AVAIL_INTERPOSABLE)
2565 for (cs = node->callers; cs != NULL; cs = cs->next_caller)
2566 if (!cs->indirect_inlining_edge)
2567 redirect_callers->safe_push (cs);
2568 return false;
2569 }
2570
2571 /* Collect all callers of cgraph_node and its aliases that are known to lead to
2572 cgraph_node (i.e. are not overwritable). */
2573
2574 vec<cgraph_edge *>
2575 cgraph_node::collect_callers (void)
2576 {
2577 vec<cgraph_edge *> redirect_callers = vNULL;
2578 call_for_symbol_thunks_and_aliases (collect_callers_of_node_1,
2579 &redirect_callers, false);
2580 return redirect_callers;
2581 }
2582
2583 /* Return TRUE if NODE2 a clone of NODE or is equivalent to it. */
2584
2585 static bool
2586 clone_of_p (cgraph_node *node, cgraph_node *node2)
2587 {
2588 bool skipped_thunk = false;
2589 node = node->ultimate_alias_target ();
2590 node2 = node2->ultimate_alias_target ();
2591
2592 /* There are no virtual clones of thunks so check former_clone_of or if we
2593 might have skipped thunks because this adjustments are no longer
2594 necessary. */
2595 while (node->thunk.thunk_p)
2596 {
2597 if (node2->former_clone_of == node->decl)
2598 return true;
2599 if (!node->thunk.this_adjusting)
2600 return false;
2601 node = node->callees->callee->ultimate_alias_target ();
2602 skipped_thunk = true;
2603 }
2604
2605 if (skipped_thunk)
2606 {
2607 if (!node2->clone.args_to_skip
2608 || !bitmap_bit_p (node2->clone.args_to_skip, 0))
2609 return false;
2610 if (node2->former_clone_of == node->decl)
2611 return true;
2612 else if (!node2->clone_of)
2613 return false;
2614 }
2615
2616 while (node != node2 && node2)
2617 node2 = node2->clone_of;
2618 return node2 != NULL;
2619 }
2620
2621 /* Verify edge E count and frequency. */
2622
2623 static bool
2624 verify_edge_count_and_frequency (cgraph_edge *e)
2625 {
2626 bool error_found = false;
2627 if (e->count < 0)
2628 {
2629 error ("caller edge count is negative");
2630 error_found = true;
2631 }
2632 if (e->frequency < 0)
2633 {
2634 error ("caller edge frequency is negative");
2635 error_found = true;
2636 }
2637 if (e->frequency > CGRAPH_FREQ_MAX)
2638 {
2639 error ("caller edge frequency is too large");
2640 error_found = true;
2641 }
2642 if (gimple_has_body_p (e->caller->decl)
2643 && !e->caller->global.inlined_to
2644 && !e->speculative
2645 /* FIXME: Inline-analysis sets frequency to 0 when edge is optimized out.
2646 Remove this once edges are actually removed from the function at that time. */
2647 && (e->frequency
2648 || (inline_edge_summary_vec.exists ()
2649 && ((inline_edge_summary_vec.length () <= (unsigned) e->uid)
2650 || !inline_edge_summary (e)->predicate)))
2651 && (e->frequency
2652 != compute_call_stmt_bb_frequency (e->caller->decl,
2653 gimple_bb (e->call_stmt))))
2654 {
2655 error ("caller edge frequency %i does not match BB frequency %i",
2656 e->frequency,
2657 compute_call_stmt_bb_frequency (e->caller->decl,
2658 gimple_bb (e->call_stmt)));
2659 error_found = true;
2660 }
2661 return error_found;
2662 }
2663
2664 /* Switch to THIS_CFUN if needed and print STMT to stderr. */
2665 static void
2666 cgraph_debug_gimple_stmt (function *this_cfun, gimple stmt)
2667 {
2668 bool fndecl_was_null = false;
2669 /* debug_gimple_stmt needs correct cfun */
2670 if (cfun != this_cfun)
2671 set_cfun (this_cfun);
2672 /* ...and an actual current_function_decl */
2673 if (!current_function_decl)
2674 {
2675 current_function_decl = this_cfun->decl;
2676 fndecl_was_null = true;
2677 }
2678 debug_gimple_stmt (stmt);
2679 if (fndecl_was_null)
2680 current_function_decl = NULL;
2681 }
2682
2683 /* Verify that call graph edge E corresponds to DECL from the associated
2684 statement. Return true if the verification should fail. */
2685
2686 static bool
2687 verify_edge_corresponds_to_fndecl (cgraph_edge *e, tree decl)
2688 {
2689 cgraph_node *node;
2690
2691 if (!decl || e->callee->global.inlined_to)
2692 return false;
2693 if (symtab->state == LTO_STREAMING)
2694 return false;
2695 node = cgraph_node::get (decl);
2696
2697 /* We do not know if a node from a different partition is an alias or what it
2698 aliases and therefore cannot do the former_clone_of check reliably. When
2699 body_removed is set, we have lost all information about what was alias or
2700 thunk of and also cannot proceed. */
2701 if (!node
2702 || node->body_removed
2703 || node->in_other_partition
2704 || node->icf_merged
2705 || e->callee->in_other_partition)
2706 return false;
2707
2708 node = node->ultimate_alias_target ();
2709
2710 /* Optimizers can redirect unreachable calls or calls triggering undefined
2711 behaviour to builtin_unreachable. */
2712 if (DECL_BUILT_IN_CLASS (e->callee->decl) == BUILT_IN_NORMAL
2713 && DECL_FUNCTION_CODE (e->callee->decl) == BUILT_IN_UNREACHABLE)
2714 return false;
2715
2716 if (e->callee->former_clone_of != node->decl
2717 && (node != e->callee->ultimate_alias_target ())
2718 && !clone_of_p (node, e->callee))
2719 return true;
2720 else
2721 return false;
2722 }
2723
2724 /* Verify cgraph nodes of given cgraph node. */
2725 DEBUG_FUNCTION void
2726 cgraph_node::verify_node (void)
2727 {
2728 cgraph_edge *e;
2729 function *this_cfun = DECL_STRUCT_FUNCTION (decl);
2730 basic_block this_block;
2731 gimple_stmt_iterator gsi;
2732 bool error_found = false;
2733
2734 if (seen_error ())
2735 return;
2736
2737 timevar_push (TV_CGRAPH_VERIFY);
2738 error_found |= verify_base ();
2739 for (e = callees; e; e = e->next_callee)
2740 if (e->aux)
2741 {
2742 error ("aux field set for edge %s->%s",
2743 identifier_to_locale (e->caller->name ()),
2744 identifier_to_locale (e->callee->name ()));
2745 error_found = true;
2746 }
2747 if (count < 0)
2748 {
2749 error ("execution count is negative");
2750 error_found = true;
2751 }
2752 if (global.inlined_to && same_comdat_group)
2753 {
2754 error ("inline clone in same comdat group list");
2755 error_found = true;
2756 }
2757 if (!definition && !in_other_partition && local.local)
2758 {
2759 error ("local symbols must be defined");
2760 error_found = true;
2761 }
2762 if (global.inlined_to && externally_visible)
2763 {
2764 error ("externally visible inline clone");
2765 error_found = true;
2766 }
2767 if (global.inlined_to && address_taken)
2768 {
2769 error ("inline clone with address taken");
2770 error_found = true;
2771 }
2772 if (global.inlined_to && force_output)
2773 {
2774 error ("inline clone is forced to output");
2775 error_found = true;
2776 }
2777 for (e = indirect_calls; e; e = e->next_callee)
2778 {
2779 if (e->aux)
2780 {
2781 error ("aux field set for indirect edge from %s",
2782 identifier_to_locale (e->caller->name ()));
2783 error_found = true;
2784 }
2785 if (!e->indirect_unknown_callee
2786 || !e->indirect_info)
2787 {
2788 error ("An indirect edge from %s is not marked as indirect or has "
2789 "associated indirect_info, the corresponding statement is: ",
2790 identifier_to_locale (e->caller->name ()));
2791 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
2792 error_found = true;
2793 }
2794 }
2795 bool check_comdat = comdat_local_p ();
2796 for (e = callers; e; e = e->next_caller)
2797 {
2798 if (verify_edge_count_and_frequency (e))
2799 error_found = true;
2800 if (check_comdat
2801 && !in_same_comdat_group_p (e->caller))
2802 {
2803 error ("comdat-local function called by %s outside its comdat",
2804 identifier_to_locale (e->caller->name ()));
2805 error_found = true;
2806 }
2807 if (!e->inline_failed)
2808 {
2809 if (global.inlined_to
2810 != (e->caller->global.inlined_to
2811 ? e->caller->global.inlined_to : e->caller))
2812 {
2813 error ("inlined_to pointer is wrong");
2814 error_found = true;
2815 }
2816 if (callers->next_caller)
2817 {
2818 error ("multiple inline callers");
2819 error_found = true;
2820 }
2821 }
2822 else
2823 if (global.inlined_to)
2824 {
2825 error ("inlined_to pointer set for noninline callers");
2826 error_found = true;
2827 }
2828 }
2829 for (e = indirect_calls; e; e = e->next_callee)
2830 if (verify_edge_count_and_frequency (e))
2831 error_found = true;
2832 if (!callers && global.inlined_to)
2833 {
2834 error ("inlined_to pointer is set but no predecessors found");
2835 error_found = true;
2836 }
2837 if (global.inlined_to == this)
2838 {
2839 error ("inlined_to pointer refers to itself");
2840 error_found = true;
2841 }
2842
2843 if (clone_of)
2844 {
2845 cgraph_node *n;
2846 for (n = clone_of->clones; n; n = n->next_sibling_clone)
2847 if (n == this)
2848 break;
2849 if (!n)
2850 {
2851 error ("cgraph_node has wrong clone_of");
2852 error_found = true;
2853 }
2854 }
2855 if (clones)
2856 {
2857 cgraph_node *n;
2858 for (n = clones; n; n = n->next_sibling_clone)
2859 if (n->clone_of != this)
2860 break;
2861 if (n)
2862 {
2863 error ("cgraph_node has wrong clone list");
2864 error_found = true;
2865 }
2866 }
2867 if ((prev_sibling_clone || next_sibling_clone) && !clone_of)
2868 {
2869 error ("cgraph_node is in clone list but it is not clone");
2870 error_found = true;
2871 }
2872 if (!prev_sibling_clone && clone_of && clone_of->clones != this)
2873 {
2874 error ("cgraph_node has wrong prev_clone pointer");
2875 error_found = true;
2876 }
2877 if (prev_sibling_clone && prev_sibling_clone->next_sibling_clone != this)
2878 {
2879 error ("double linked list of clones corrupted");
2880 error_found = true;
2881 }
2882
2883 if (analyzed && alias)
2884 {
2885 bool ref_found = false;
2886 int i;
2887 ipa_ref *ref = NULL;
2888
2889 if (callees)
2890 {
2891 error ("Alias has call edges");
2892 error_found = true;
2893 }
2894 for (i = 0; iterate_reference (i, ref); i++)
2895 if (ref->use == IPA_REF_CHKP)
2896 ;
2897 else if (ref->use != IPA_REF_ALIAS)
2898 {
2899 error ("Alias has non-alias reference");
2900 error_found = true;
2901 }
2902 else if (ref_found)
2903 {
2904 error ("Alias has more than one alias reference");
2905 error_found = true;
2906 }
2907 else
2908 ref_found = true;
2909 if (!ref_found)
2910 {
2911 error ("Analyzed alias has no reference");
2912 error_found = true;
2913 }
2914 }
2915
2916 /* Check instrumented version reference. */
2917 if (instrumented_version
2918 && instrumented_version->instrumented_version != this)
2919 {
2920 error ("Instrumentation clone does not reference original node");
2921 error_found = true;
2922 }
2923
2924 /* Cannot have orig_decl for not instrumented nodes. */
2925 if (!instrumentation_clone && orig_decl)
2926 {
2927 error ("Not instrumented node has non-NULL original declaration");
2928 error_found = true;
2929 }
2930
2931 /* If original not instrumented node still exists then we may check
2932 original declaration is set properly. */
2933 if (instrumented_version
2934 && orig_decl
2935 && orig_decl != instrumented_version->decl)
2936 {
2937 error ("Instrumented node has wrong original declaration");
2938 error_found = true;
2939 }
2940
2941 /* Check all nodes have chkp reference to their instrumented versions. */
2942 if (analyzed
2943 && instrumented_version
2944 && !instrumentation_clone)
2945 {
2946 bool ref_found = false;
2947 int i;
2948 struct ipa_ref *ref;
2949
2950 for (i = 0; iterate_reference (i, ref); i++)
2951 if (ref->use == IPA_REF_CHKP)
2952 {
2953 if (ref_found)
2954 {
2955 error ("Node has more than one chkp reference");
2956 error_found = true;
2957 }
2958 if (ref->referred != instrumented_version)
2959 {
2960 error ("Wrong node is referenced with chkp reference");
2961 error_found = true;
2962 }
2963 ref_found = true;
2964 }
2965
2966 if (!ref_found)
2967 {
2968 error ("Analyzed node has no reference to instrumented version");
2969 error_found = true;
2970 }
2971 }
2972
2973 if (analyzed && thunk.thunk_p)
2974 {
2975 if (!callees)
2976 {
2977 error ("No edge out of thunk node");
2978 error_found = true;
2979 }
2980 else if (callees->next_callee)
2981 {
2982 error ("More than one edge out of thunk node");
2983 error_found = true;
2984 }
2985 if (gimple_has_body_p (decl))
2986 {
2987 error ("Thunk is not supposed to have body");
2988 error_found = true;
2989 }
2990 if (thunk.add_pointer_bounds_args
2991 && !instrumented_version->semantically_equivalent_p (callees->callee))
2992 {
2993 error ("Instrumentation thunk has wrong edge callee");
2994 error_found = true;
2995 }
2996 }
2997 else if (analyzed && gimple_has_body_p (decl)
2998 && !TREE_ASM_WRITTEN (decl)
2999 && (!DECL_EXTERNAL (decl) || global.inlined_to)
3000 && !flag_wpa)
3001 {
3002 if (this_cfun->cfg)
3003 {
3004 hash_set<gimple> stmts;
3005 int i;
3006 ipa_ref *ref = NULL;
3007
3008 /* Reach the trees by walking over the CFG, and note the
3009 enclosing basic-blocks in the call edges. */
3010 FOR_EACH_BB_FN (this_block, this_cfun)
3011 {
3012 for (gsi = gsi_start_phis (this_block);
3013 !gsi_end_p (gsi); gsi_next (&gsi))
3014 stmts.add (gsi_stmt (gsi));
3015 for (gsi = gsi_start_bb (this_block);
3016 !gsi_end_p (gsi);
3017 gsi_next (&gsi))
3018 {
3019 gimple stmt = gsi_stmt (gsi);
3020 stmts.add (stmt);
3021 if (is_gimple_call (stmt))
3022 {
3023 cgraph_edge *e = get_edge (stmt);
3024 tree decl = gimple_call_fndecl (stmt);
3025 if (e)
3026 {
3027 if (e->aux)
3028 {
3029 error ("shared call_stmt:");
3030 cgraph_debug_gimple_stmt (this_cfun, stmt);
3031 error_found = true;
3032 }
3033 if (!e->indirect_unknown_callee)
3034 {
3035 if (verify_edge_corresponds_to_fndecl (e, decl))
3036 {
3037 error ("edge points to wrong declaration:");
3038 debug_tree (e->callee->decl);
3039 fprintf (stderr," Instead of:");
3040 debug_tree (decl);
3041 error_found = true;
3042 }
3043 }
3044 else if (decl)
3045 {
3046 error ("an indirect edge with unknown callee "
3047 "corresponding to a call_stmt with "
3048 "a known declaration:");
3049 error_found = true;
3050 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3051 }
3052 e->aux = (void *)1;
3053 }
3054 else if (decl)
3055 {
3056 error ("missing callgraph edge for call stmt:");
3057 cgraph_debug_gimple_stmt (this_cfun, stmt);
3058 error_found = true;
3059 }
3060 }
3061 }
3062 }
3063 for (i = 0; iterate_reference (i, ref); i++)
3064 if (ref->stmt && !stmts.contains (ref->stmt))
3065 {
3066 error ("reference to dead statement");
3067 cgraph_debug_gimple_stmt (this_cfun, ref->stmt);
3068 error_found = true;
3069 }
3070 }
3071 else
3072 /* No CFG available?! */
3073 gcc_unreachable ();
3074
3075 for (e = callees; e; e = e->next_callee)
3076 {
3077 if (!e->aux)
3078 {
3079 error ("edge %s->%s has no corresponding call_stmt",
3080 identifier_to_locale (e->caller->name ()),
3081 identifier_to_locale (e->callee->name ()));
3082 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3083 error_found = true;
3084 }
3085 e->aux = 0;
3086 }
3087 for (e = indirect_calls; e; e = e->next_callee)
3088 {
3089 if (!e->aux && !e->speculative)
3090 {
3091 error ("an indirect edge from %s has no corresponding call_stmt",
3092 identifier_to_locale (e->caller->name ()));
3093 cgraph_debug_gimple_stmt (this_cfun, e->call_stmt);
3094 error_found = true;
3095 }
3096 e->aux = 0;
3097 }
3098 }
3099 if (error_found)
3100 {
3101 dump (stderr);
3102 internal_error ("verify_cgraph_node failed");
3103 }
3104 timevar_pop (TV_CGRAPH_VERIFY);
3105 }
3106
3107 /* Verify whole cgraph structure. */
3108 DEBUG_FUNCTION void
3109 cgraph_node::verify_cgraph_nodes (void)
3110 {
3111 cgraph_node *node;
3112
3113 if (seen_error ())
3114 return;
3115
3116 FOR_EACH_FUNCTION (node)
3117 node->verify ();
3118 }
3119
3120 /* Walk the alias chain to return the function cgraph_node is alias of.
3121 Walk through thunk, too.
3122 When AVAILABILITY is non-NULL, get minimal availability in the chain. */
3123
3124 cgraph_node *
3125 cgraph_node::function_symbol (enum availability *availability)
3126 {
3127 cgraph_node *node = this;
3128
3129 do
3130 {
3131 node = node->ultimate_alias_target (availability);
3132 if (node->thunk.thunk_p)
3133 {
3134 node = node->callees->callee;
3135 if (availability)
3136 {
3137 enum availability a;
3138 a = node->get_availability ();
3139 if (a < *availability)
3140 *availability = a;
3141 }
3142 node = node->ultimate_alias_target (availability);
3143 }
3144 } while (node && node->thunk.thunk_p);
3145 return node;
3146 }
3147
3148 /* When doing LTO, read cgraph_node's body from disk if it is not already
3149 present. */
3150
3151 bool
3152 cgraph_node::get_untransformed_body (void)
3153 {
3154 lto_file_decl_data *file_data;
3155 const char *data, *name;
3156 size_t len;
3157 tree decl = this->decl;
3158
3159 if (DECL_RESULT (decl))
3160 return false;
3161
3162 gcc_assert (in_lto_p);
3163
3164 timevar_push (TV_IPA_LTO_GIMPLE_IN);
3165
3166 file_data = lto_file_data;
3167 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
3168
3169 /* We may have renamed the declaration, e.g., a static function. */
3170 name = lto_get_decl_name_mapping (file_data, name);
3171
3172 data = lto_get_section_data (file_data, LTO_section_function_body,
3173 name, &len);
3174 if (!data)
3175 fatal_error ("%s: section %s is missing",
3176 file_data->file_name,
3177 name);
3178
3179 gcc_assert (DECL_STRUCT_FUNCTION (decl) == NULL);
3180
3181 lto_input_function_body (file_data, this, data);
3182 lto_stats.num_function_bodies++;
3183 lto_free_section_data (file_data, LTO_section_function_body, name,
3184 data, len);
3185 lto_free_function_in_decl_state_for_node (this);
3186
3187 timevar_pop (TV_IPA_LTO_GIMPLE_IN);
3188
3189 return true;
3190 }
3191
3192 /* Prepare function body. When doing LTO, read cgraph_node's body from disk
3193 if it is not already present. When some IPA transformations are scheduled,
3194 apply them. */
3195
3196 bool
3197 cgraph_node::get_body (void)
3198 {
3199 bool updated;
3200
3201 updated = get_untransformed_body ();
3202
3203 /* Getting transformed body makes no sense for inline clones;
3204 we should never use this on real clones becuase they are materialized
3205 early.
3206 TODO: Materializing clones here will likely lead to smaller LTRANS
3207 footprint. */
3208 gcc_assert (!global.inlined_to && !clone_of);
3209 if (ipa_transforms_to_apply.exists ())
3210 {
3211 opt_pass *saved_current_pass = current_pass;
3212 FILE *saved_dump_file = dump_file;
3213 int saved_dump_flags = dump_flags;
3214
3215 push_cfun (DECL_STRUCT_FUNCTION (decl));
3216 execute_all_ipa_transforms ();
3217 cgraph_edge::rebuild_edges ();
3218 free_dominance_info (CDI_DOMINATORS);
3219 free_dominance_info (CDI_POST_DOMINATORS);
3220 pop_cfun ();
3221 updated = true;
3222
3223 current_pass = saved_current_pass;
3224 dump_file = saved_dump_file;
3225 dump_flags = saved_dump_flags;
3226 }
3227 return updated;
3228 }
3229
3230 /* Return the DECL_STRUCT_FUNCTION of the function. */
3231
3232 struct function *
3233 cgraph_node::get_fun (void)
3234 {
3235 cgraph_node *node = this;
3236 struct function *fun = DECL_STRUCT_FUNCTION (node->decl);
3237
3238 while (!fun && node->clone_of)
3239 {
3240 node = node->clone_of;
3241 fun = DECL_STRUCT_FUNCTION (node->decl);
3242 }
3243
3244 return fun;
3245 }
3246
3247 /* Verify if the type of the argument matches that of the function
3248 declaration. If we cannot verify this or there is a mismatch,
3249 return false. */
3250
3251 static bool
3252 gimple_check_call_args (gimple stmt, tree fndecl, bool args_count_match)
3253 {
3254 tree parms, p;
3255 unsigned int i, nargs;
3256
3257 /* Calls to internal functions always match their signature. */
3258 if (gimple_call_internal_p (stmt))
3259 return true;
3260
3261 nargs = gimple_call_num_args (stmt);
3262
3263 /* Get argument types for verification. */
3264 if (fndecl)
3265 parms = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
3266 else
3267 parms = TYPE_ARG_TYPES (gimple_call_fntype (stmt));
3268
3269 /* Verify if the type of the argument matches that of the function
3270 declaration. If we cannot verify this or there is a mismatch,
3271 return false. */
3272 if (fndecl && DECL_ARGUMENTS (fndecl))
3273 {
3274 for (i = 0, p = DECL_ARGUMENTS (fndecl);
3275 i < nargs;
3276 i++, p = DECL_CHAIN (p))
3277 {
3278 tree arg;
3279 /* We cannot distinguish a varargs function from the case
3280 of excess parameters, still deferring the inlining decision
3281 to the callee is possible. */
3282 if (!p)
3283 break;
3284 arg = gimple_call_arg (stmt, i);
3285 if (p == error_mark_node
3286 || DECL_ARG_TYPE (p) == error_mark_node
3287 || arg == error_mark_node
3288 || (!types_compatible_p (DECL_ARG_TYPE (p), TREE_TYPE (arg))
3289 && !fold_convertible_p (DECL_ARG_TYPE (p), arg)))
3290 return false;
3291 }
3292 if (args_count_match && p)
3293 return false;
3294 }
3295 else if (parms)
3296 {
3297 for (i = 0, p = parms; i < nargs; i++, p = TREE_CHAIN (p))
3298 {
3299 tree arg;
3300 /* If this is a varargs function defer inlining decision
3301 to callee. */
3302 if (!p)
3303 break;
3304 arg = gimple_call_arg (stmt, i);
3305 if (TREE_VALUE (p) == error_mark_node
3306 || arg == error_mark_node
3307 || TREE_CODE (TREE_VALUE (p)) == VOID_TYPE
3308 || (!types_compatible_p (TREE_VALUE (p), TREE_TYPE (arg))
3309 && !fold_convertible_p (TREE_VALUE (p), arg)))
3310 return false;
3311 }
3312 }
3313 else
3314 {
3315 if (nargs != 0)
3316 return false;
3317 }
3318 return true;
3319 }
3320
3321 /* Verify if the type of the argument and lhs of CALL_STMT matches
3322 that of the function declaration CALLEE. If ARGS_COUNT_MATCH is
3323 true, the arg count needs to be the same.
3324 If we cannot verify this or there is a mismatch, return false. */
3325
3326 bool
3327 gimple_check_call_matching_types (gimple call_stmt, tree callee,
3328 bool args_count_match)
3329 {
3330 tree lhs;
3331
3332 if ((DECL_RESULT (callee)
3333 && !DECL_BY_REFERENCE (DECL_RESULT (callee))
3334 && (lhs = gimple_call_lhs (call_stmt)) != NULL_TREE
3335 && !useless_type_conversion_p (TREE_TYPE (DECL_RESULT (callee)),
3336 TREE_TYPE (lhs))
3337 && !fold_convertible_p (TREE_TYPE (DECL_RESULT (callee)), lhs))
3338 || !gimple_check_call_args (call_stmt, callee, args_count_match))
3339 return false;
3340 return true;
3341 }
3342
3343 /* Reset all state within cgraph.c so that we can rerun the compiler
3344 within the same process. For use by toplev::finalize. */
3345
3346 void
3347 cgraph_c_finalize (void)
3348 {
3349 symtab = NULL;
3350
3351 x_cgraph_nodes_queue = NULL;
3352
3353 cgraph_fnver_htab = NULL;
3354 version_info_node = NULL;
3355 }
3356
3357 #include "gt-cgraph.h"