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