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