re PR tree-optimization/51737 (g++ crashes (internal compiler error: Segmentation...
[platform/upstream/gcc.git] / gcc / cgraph.c
1 /* Callgraph handling code.
2    Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
3    Free Software Foundation, Inc.
4    Contributed by Jan Hubicka
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.  */
21
22 /*  This file contains basic routines manipulating call graph
23
24 The callgraph:
25
26     The call-graph is data structure designed for intra-procedural optimization
27     but it is also used in non-unit-at-a-time compilation to allow easier code
28     sharing.
29
30     The call-graph consist of nodes and edges represented via linked lists.
31     Each function (external or not) corresponds to the unique node.
32
33     The mapping from declarations to call-graph nodes is done using hash table
34     based on DECL_UID.  The call-graph nodes are created lazily using
35     cgraph_node function when called for unknown declaration.
36
37     The callgraph at the moment does not represent all indirect calls or calls
38     from other compilation units.  Flag NEEDED is set for each node that may be
39     accessed in such an invisible way and it shall be considered an entry point
40     to the callgraph.
41
42     On the other hand, the callgraph currently does contain some edges for
43     indirect calls with unknown callees which can be accessed through
44     indirect_calls field of a node.  It should be noted however that at the
45     moment only calls which are potential candidates for indirect inlining are
46     added there.
47
48     Interprocedural information:
49
50       Callgraph is place to store data needed for interprocedural optimization.
51       All data structures are divided into three components: local_info that
52       is produced while analyzing the function, global_info that is result
53       of global walking of the callgraph on the end of compilation and
54       rtl_info used by RTL backend to propagate data from already compiled
55       functions to their callers.
56
57       Moreover, each node has a uid which can be used to keep information in
58       on-the-side arrays.  UIDs are reused and therefore reasonably dense.
59
60     Inlining plans:
61
62       The function inlining information is decided in advance and maintained
63       in the callgraph as so called inline plan.
64       For each inlined call, the callee's node is cloned to represent the
65       new function copy produced by inliner.
66       Each inlined call gets a unique corresponding clone node of the callee
67       and the data structure is updated while inlining is performed, so
68       the clones are eliminated and their callee edges redirected to the
69       caller.
70
71       Each edge has "inline_failed" field.  When the field is set to NULL,
72       the call will be inlined.  When it is non-NULL it contains a reason
73       why inlining wasn't performed.  */
74
75 #include "config.h"
76 #include "system.h"
77 #include "coretypes.h"
78 #include "tm.h"
79 #include "tree.h"
80 #include "tree-inline.h"
81 #include "langhooks.h"
82 #include "hashtab.h"
83 #include "toplev.h"
84 #include "flags.h"
85 #include "ggc.h"
86 #include "debug.h"
87 #include "target.h"
88 #include "basic-block.h"
89 #include "cgraph.h"
90 #include "output.h"
91 #include "intl.h"
92 #include "gimple.h"
93 #include "tree-dump.h"
94 #include "tree-flow.h"
95 #include "value-prof.h"
96 #include "except.h"
97 #include "diagnostic-core.h"
98 #include "rtl.h"
99 #include "ipa-utils.h"
100 #include "lto-streamer.h"
101 #include "ipa-inline.h"
102
103 const char * const ld_plugin_symbol_resolution_names[]=
104 {
105   "",
106   "undef",
107   "prevailing_def",
108   "prevailing_def_ironly",
109   "preempted_reg",
110   "preempted_ir",
111   "resolved_ir",
112   "resolved_exec",
113   "resolved_dyn",
114   "prevailing_def_ironly_exp"
115 };
116
117 static void cgraph_node_remove_callers (struct cgraph_node *node);
118 static inline void cgraph_edge_remove_caller (struct cgraph_edge *e);
119 static inline void cgraph_edge_remove_callee (struct cgraph_edge *e);
120
121 /* Hash table used to convert declarations into nodes.  */
122 static GTY((param_is (struct cgraph_node))) htab_t cgraph_hash;
123 /* Hash table used to convert assembler names into nodes.  */
124 static GTY((param_is (struct cgraph_node))) htab_t assembler_name_hash;
125
126 /* The linked list of cgraph nodes.  */
127 struct cgraph_node *cgraph_nodes;
128
129 /* Queue of cgraph nodes scheduled to be lowered.  */
130 struct cgraph_node *cgraph_nodes_queue;
131
132 /* Queue of cgraph nodes scheduled to be added into cgraph.  This is a
133    secondary queue used during optimization to accommodate passes that
134    may generate new functions that need to be optimized and expanded.  */
135 struct cgraph_node *cgraph_new_nodes;
136
137 /* Number of nodes in existence.  */
138 int cgraph_n_nodes;
139
140 /* Maximal uid used in cgraph nodes.  */
141 int cgraph_max_uid;
142
143 /* Maximal uid used in cgraph edges.  */
144 int cgraph_edge_max_uid;
145
146 /* Set when whole unit has been analyzed so we can access global info.  */
147 bool cgraph_global_info_ready = false;
148
149 /* What state callgraph is in right now.  */
150 enum cgraph_state cgraph_state = CGRAPH_STATE_CONSTRUCTION;
151
152 /* Set when the cgraph is fully build and the basic flags are computed.  */
153 bool cgraph_function_flags_ready = false;
154
155 /* Linked list of cgraph asm nodes.  */
156 struct cgraph_asm_node *cgraph_asm_nodes;
157
158 /* Last node in cgraph_asm_nodes.  */
159 static GTY(()) struct cgraph_asm_node *cgraph_asm_last_node;
160
161 /* The order index of the next cgraph node to be created.  This is
162    used so that we can sort the cgraph nodes in order by when we saw
163    them, to support -fno-toplevel-reorder.  */
164 int cgraph_order;
165
166 /* List of hooks triggered on cgraph_edge events.  */
167 struct cgraph_edge_hook_list {
168   cgraph_edge_hook hook;
169   void *data;
170   struct cgraph_edge_hook_list *next;
171 };
172
173 /* List of hooks triggered on cgraph_node events.  */
174 struct cgraph_node_hook_list {
175   cgraph_node_hook hook;
176   void *data;
177   struct cgraph_node_hook_list *next;
178 };
179
180 /* List of hooks triggered on events involving two cgraph_edges.  */
181 struct cgraph_2edge_hook_list {
182   cgraph_2edge_hook hook;
183   void *data;
184   struct cgraph_2edge_hook_list *next;
185 };
186
187 /* List of hooks triggered on events involving two cgraph_nodes.  */
188 struct cgraph_2node_hook_list {
189   cgraph_2node_hook hook;
190   void *data;
191   struct cgraph_2node_hook_list *next;
192 };
193
194 /* List of hooks triggered when an edge is removed.  */
195 struct cgraph_edge_hook_list *first_cgraph_edge_removal_hook;
196 /* List of hooks triggered when a node is removed.  */
197 struct cgraph_node_hook_list *first_cgraph_node_removal_hook;
198 /* List of hooks triggered when an edge is duplicated.  */
199 struct cgraph_2edge_hook_list *first_cgraph_edge_duplicated_hook;
200 /* List of hooks triggered when a node is duplicated.  */
201 struct cgraph_2node_hook_list *first_cgraph_node_duplicated_hook;
202 /* List of hooks triggered when an function is inserted.  */
203 struct cgraph_node_hook_list *first_cgraph_function_insertion_hook;
204
205 /* Head of a linked list of unused (freed) call graph nodes.
206    Do not GTY((delete)) this list so UIDs gets reliably recycled.  */
207 static GTY(()) struct cgraph_node *free_nodes;
208 /* Head of a linked list of unused (freed) call graph edges.
209    Do not GTY((delete)) this list so UIDs gets reliably recycled.  */
210 static GTY(()) struct cgraph_edge *free_edges;
211
212 /* Did procss_same_body_aliases run?  */
213 bool same_body_aliases_done;
214
215 /* Macros to access the next item in the list of free cgraph nodes and
216    edges. */
217 #define NEXT_FREE_NODE(NODE) (NODE)->next
218 #define NEXT_FREE_EDGE(EDGE) (EDGE)->prev_caller
219
220 /* Register HOOK to be called with DATA on each removed edge.  */
221 struct cgraph_edge_hook_list *
222 cgraph_add_edge_removal_hook (cgraph_edge_hook hook, void *data)
223 {
224   struct cgraph_edge_hook_list *entry;
225   struct cgraph_edge_hook_list **ptr = &first_cgraph_edge_removal_hook;
226
227   entry = (struct cgraph_edge_hook_list *) xmalloc (sizeof (*entry));
228   entry->hook = hook;
229   entry->data = data;
230   entry->next = NULL;
231   while (*ptr)
232     ptr = &(*ptr)->next;
233   *ptr = entry;
234   return entry;
235 }
236
237 /* Remove ENTRY from the list of hooks called on removing edges.  */
238 void
239 cgraph_remove_edge_removal_hook (struct cgraph_edge_hook_list *entry)
240 {
241   struct cgraph_edge_hook_list **ptr = &first_cgraph_edge_removal_hook;
242
243   while (*ptr != entry)
244     ptr = &(*ptr)->next;
245   *ptr = entry->next;
246   free (entry);
247 }
248
249 /* Call all edge removal hooks.  */
250 static void
251 cgraph_call_edge_removal_hooks (struct cgraph_edge *e)
252 {
253   struct cgraph_edge_hook_list *entry = first_cgraph_edge_removal_hook;
254   while (entry)
255   {
256     entry->hook (e, entry->data);
257     entry = entry->next;
258   }
259 }
260
261 /* Register HOOK to be called with DATA on each removed node.  */
262 struct cgraph_node_hook_list *
263 cgraph_add_node_removal_hook (cgraph_node_hook hook, void *data)
264 {
265   struct cgraph_node_hook_list *entry;
266   struct cgraph_node_hook_list **ptr = &first_cgraph_node_removal_hook;
267
268   entry = (struct cgraph_node_hook_list *) xmalloc (sizeof (*entry));
269   entry->hook = hook;
270   entry->data = data;
271   entry->next = NULL;
272   while (*ptr)
273     ptr = &(*ptr)->next;
274   *ptr = entry;
275   return entry;
276 }
277
278 /* Remove ENTRY from the list of hooks called on removing nodes.  */
279 void
280 cgraph_remove_node_removal_hook (struct cgraph_node_hook_list *entry)
281 {
282   struct cgraph_node_hook_list **ptr = &first_cgraph_node_removal_hook;
283
284   while (*ptr != entry)
285     ptr = &(*ptr)->next;
286   *ptr = entry->next;
287   free (entry);
288 }
289
290 /* Call all node removal hooks.  */
291 static void
292 cgraph_call_node_removal_hooks (struct cgraph_node *node)
293 {
294   struct cgraph_node_hook_list *entry = first_cgraph_node_removal_hook;
295   while (entry)
296   {
297     entry->hook (node, entry->data);
298     entry = entry->next;
299   }
300 }
301
302 /* Register HOOK to be called with DATA on each inserted node.  */
303 struct cgraph_node_hook_list *
304 cgraph_add_function_insertion_hook (cgraph_node_hook hook, void *data)
305 {
306   struct cgraph_node_hook_list *entry;
307   struct cgraph_node_hook_list **ptr = &first_cgraph_function_insertion_hook;
308
309   entry = (struct cgraph_node_hook_list *) xmalloc (sizeof (*entry));
310   entry->hook = hook;
311   entry->data = data;
312   entry->next = NULL;
313   while (*ptr)
314     ptr = &(*ptr)->next;
315   *ptr = entry;
316   return entry;
317 }
318
319 /* Remove ENTRY from the list of hooks called on inserted nodes.  */
320 void
321 cgraph_remove_function_insertion_hook (struct cgraph_node_hook_list *entry)
322 {
323   struct cgraph_node_hook_list **ptr = &first_cgraph_function_insertion_hook;
324
325   while (*ptr != entry)
326     ptr = &(*ptr)->next;
327   *ptr = entry->next;
328   free (entry);
329 }
330
331 /* Call all node insertion hooks.  */
332 void
333 cgraph_call_function_insertion_hooks (struct cgraph_node *node)
334 {
335   struct cgraph_node_hook_list *entry = first_cgraph_function_insertion_hook;
336   while (entry)
337   {
338     entry->hook (node, entry->data);
339     entry = entry->next;
340   }
341 }
342
343 /* Register HOOK to be called with DATA on each duplicated edge.  */
344 struct cgraph_2edge_hook_list *
345 cgraph_add_edge_duplication_hook (cgraph_2edge_hook hook, void *data)
346 {
347   struct cgraph_2edge_hook_list *entry;
348   struct cgraph_2edge_hook_list **ptr = &first_cgraph_edge_duplicated_hook;
349
350   entry = (struct cgraph_2edge_hook_list *) xmalloc (sizeof (*entry));
351   entry->hook = hook;
352   entry->data = data;
353   entry->next = NULL;
354   while (*ptr)
355     ptr = &(*ptr)->next;
356   *ptr = entry;
357   return entry;
358 }
359
360 /* Remove ENTRY from the list of hooks called on duplicating edges.  */
361 void
362 cgraph_remove_edge_duplication_hook (struct cgraph_2edge_hook_list *entry)
363 {
364   struct cgraph_2edge_hook_list **ptr = &first_cgraph_edge_duplicated_hook;
365
366   while (*ptr != entry)
367     ptr = &(*ptr)->next;
368   *ptr = entry->next;
369   free (entry);
370 }
371
372 /* Call all edge duplication hooks.  */
373 static void
374 cgraph_call_edge_duplication_hooks (struct cgraph_edge *cs1,
375                                     struct cgraph_edge *cs2)
376 {
377   struct cgraph_2edge_hook_list *entry = first_cgraph_edge_duplicated_hook;
378   while (entry)
379   {
380     entry->hook (cs1, cs2, entry->data);
381     entry = entry->next;
382   }
383 }
384
385 /* Register HOOK to be called with DATA on each duplicated node.  */
386 struct cgraph_2node_hook_list *
387 cgraph_add_node_duplication_hook (cgraph_2node_hook hook, void *data)
388 {
389   struct cgraph_2node_hook_list *entry;
390   struct cgraph_2node_hook_list **ptr = &first_cgraph_node_duplicated_hook;
391
392   entry = (struct cgraph_2node_hook_list *) xmalloc (sizeof (*entry));
393   entry->hook = hook;
394   entry->data = data;
395   entry->next = NULL;
396   while (*ptr)
397     ptr = &(*ptr)->next;
398   *ptr = entry;
399   return entry;
400 }
401
402 /* Remove ENTRY from the list of hooks called on duplicating nodes.  */
403 void
404 cgraph_remove_node_duplication_hook (struct cgraph_2node_hook_list *entry)
405 {
406   struct cgraph_2node_hook_list **ptr = &first_cgraph_node_duplicated_hook;
407
408   while (*ptr != entry)
409     ptr = &(*ptr)->next;
410   *ptr = entry->next;
411   free (entry);
412 }
413
414 /* Call all node duplication hooks.  */
415 void
416 cgraph_call_node_duplication_hooks (struct cgraph_node *node1,
417                                     struct cgraph_node *node2)
418 {
419   struct cgraph_2node_hook_list *entry = first_cgraph_node_duplicated_hook;
420   while (entry)
421   {
422     entry->hook (node1, node2, entry->data);
423     entry = entry->next;
424   }
425 }
426
427 /* Returns a hash code for P.  */
428
429 static hashval_t
430 hash_node (const void *p)
431 {
432   const struct cgraph_node *n = (const struct cgraph_node *) p;
433   return (hashval_t) DECL_UID (n->decl);
434 }
435
436
437 /* Returns nonzero if P1 and P2 are equal.  */
438
439 static int
440 eq_node (const void *p1, const void *p2)
441 {
442   const struct cgraph_node *n1 = (const struct cgraph_node *) p1;
443   const struct cgraph_node *n2 = (const struct cgraph_node *) p2;
444   return DECL_UID (n1->decl) == DECL_UID (n2->decl);
445 }
446
447 /* Allocate new callgraph node.  */
448
449 static inline struct cgraph_node *
450 cgraph_allocate_node (void)
451 {
452   struct cgraph_node *node;
453
454   if (free_nodes)
455     {
456       node = free_nodes;
457       free_nodes = NEXT_FREE_NODE (node);
458     }
459   else
460     {
461       node = ggc_alloc_cleared_cgraph_node ();
462       node->uid = cgraph_max_uid++;
463     }
464
465   return node;
466 }
467
468 /* Allocate new callgraph node and insert it into basic data structures.  */
469
470 static struct cgraph_node *
471 cgraph_create_node_1 (void)
472 {
473   struct cgraph_node *node = cgraph_allocate_node ();
474
475   node->next = cgraph_nodes;
476   node->order = cgraph_order++;
477   if (cgraph_nodes)
478     cgraph_nodes->previous = node;
479   node->previous = NULL;
480   node->frequency = NODE_FREQUENCY_NORMAL;
481   node->count_materialization_scale = REG_BR_PROB_BASE;
482   ipa_empty_ref_list (&node->ref_list);
483   cgraph_nodes = node;
484   cgraph_n_nodes++;
485   return node;
486 }
487
488 /* Return cgraph node assigned to DECL.  Create new one when needed.  */
489
490 struct cgraph_node *
491 cgraph_create_node (tree decl)
492 {
493   struct cgraph_node key, *node, **slot;
494
495   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
496
497   if (!cgraph_hash)
498     cgraph_hash = htab_create_ggc (10, hash_node, eq_node, NULL);
499
500   key.decl = decl;
501   slot = (struct cgraph_node **) htab_find_slot (cgraph_hash, &key, INSERT);
502   gcc_assert (!*slot);
503
504   node = cgraph_create_node_1 ();
505   node->decl = decl;
506   *slot = node;
507   if (DECL_CONTEXT (decl) && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL)
508     {
509       node->origin = cgraph_get_create_node (DECL_CONTEXT (decl));
510       node->next_nested = node->origin->nested;
511       node->origin->nested = node;
512     }
513   if (assembler_name_hash)
514     {
515       void **aslot;
516       tree name = DECL_ASSEMBLER_NAME (decl);
517
518       aslot = htab_find_slot_with_hash (assembler_name_hash, name,
519                                         decl_assembler_name_hash (name),
520                                         INSERT);
521       /* We can have multiple declarations with same assembler name. For C++
522          it is __builtin_strlen and strlen, for instance.  Do we need to
523          record them all?  Original implementation marked just first one
524          so lets hope for the best.  */
525       if (*aslot == NULL)
526         *aslot = node;
527     }
528   return node;
529 }
530
531 /* Try to find a call graph node for declaration DECL and if it does not exist,
532    create it.  */
533
534 struct cgraph_node *
535 cgraph_get_create_node (tree decl)
536 {
537   struct cgraph_node *node;
538
539   node = cgraph_get_node (decl);
540   if (node)
541     return node;
542
543   return cgraph_create_node (decl);
544 }
545
546 /* Mark ALIAS as an alias to DECL.  DECL_NODE is cgraph node representing
547    the function body is associated with (not neccesarily cgraph_node (DECL).  */
548
549 struct cgraph_node *
550 cgraph_create_function_alias (tree alias, tree decl)
551 {
552   struct cgraph_node *alias_node;
553
554   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
555   gcc_assert (TREE_CODE (alias) == FUNCTION_DECL);
556   alias_node = cgraph_get_create_node (alias);
557   gcc_assert (!alias_node->local.finalized);
558   alias_node->thunk.alias = decl;
559   alias_node->local.finalized = true;
560   alias_node->alias = 1;
561
562   if ((TREE_PUBLIC (alias) && !DECL_COMDAT (alias) && !DECL_EXTERNAL (alias))
563       || (DECL_VIRTUAL_P (alias)
564           && (DECL_COMDAT (alias) || DECL_EXTERNAL (alias))))
565     cgraph_mark_reachable_node (alias_node);
566   return alias_node;
567 }
568
569 /* Attempt to mark ALIAS as an alias to DECL.  Return alias node if successful
570    and NULL otherwise.
571    Same body aliases are output whenever the body of DECL is output,
572    and cgraph_get_node (ALIAS) transparently returns cgraph_get_node (DECL).  */
573
574 struct cgraph_node *
575 cgraph_same_body_alias (struct cgraph_node *decl_node ATTRIBUTE_UNUSED, tree alias, tree decl)
576 {
577   struct cgraph_node *n;
578 #ifndef ASM_OUTPUT_DEF
579   /* If aliases aren't supported by the assembler, fail.  */
580   return NULL;
581 #endif
582   /* Langhooks can create same body aliases of symbols not defined.
583      Those are useless. Drop them on the floor.  */
584   if (cgraph_global_info_ready)
585     return NULL;
586
587   n = cgraph_create_function_alias (alias, decl);
588   n->same_body_alias = true;
589   if (same_body_aliases_done)
590     ipa_record_reference (n, NULL, cgraph_get_node (decl), NULL, IPA_REF_ALIAS,
591                           NULL);
592   return n;
593 }
594
595 /* Add thunk alias into callgraph.  The alias declaration is ALIAS and it
596    aliases DECL with an adjustments made into the first parameter.
597    See comments in thunk_adjust for detail on the parameters.  */
598
599 struct cgraph_node *
600 cgraph_add_thunk (struct cgraph_node *decl_node ATTRIBUTE_UNUSED,
601                   tree alias, tree decl,
602                   bool this_adjusting,
603                   HOST_WIDE_INT fixed_offset, HOST_WIDE_INT virtual_value,
604                   tree virtual_offset,
605                   tree real_alias)
606 {
607   struct cgraph_node *node;
608
609   node = cgraph_get_node (alias);
610   if (node)
611     {
612       gcc_assert (node->local.finalized);
613       gcc_assert (!node->alias);
614       gcc_assert (!node->thunk.thunk_p);
615       cgraph_remove_node (node);
616     }
617   
618   node = cgraph_create_node (alias);
619   gcc_checking_assert (!virtual_offset
620                        || double_int_equal_p
621                             (tree_to_double_int (virtual_offset),
622                              shwi_to_double_int (virtual_value)));
623   node->thunk.fixed_offset = fixed_offset;
624   node->thunk.this_adjusting = this_adjusting;
625   node->thunk.virtual_value = virtual_value;
626   node->thunk.virtual_offset_p = virtual_offset != NULL;
627   node->thunk.alias = real_alias;
628   node->thunk.thunk_p = true;
629   node->local.finalized = true;
630
631   if (cgraph_decide_is_function_needed (node, decl))
632     cgraph_mark_needed_node (node);
633
634   if ((TREE_PUBLIC (decl) && !DECL_COMDAT (decl) && !DECL_EXTERNAL (decl))
635       || (DECL_VIRTUAL_P (decl)
636           && (DECL_COMDAT (decl) || DECL_EXTERNAL (decl))))
637     cgraph_mark_reachable_node (node);
638
639   return node;
640 }
641
642 /* Returns the cgraph node assigned to DECL or NULL if no cgraph node
643    is assigned.  */
644
645 struct cgraph_node *
646 cgraph_get_node (const_tree decl)
647 {
648   struct cgraph_node key, *node = NULL, **slot;
649
650   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
651
652   if (!cgraph_hash)
653     return NULL;
654
655   key.decl = CONST_CAST2 (tree, const_tree, decl);
656
657   slot = (struct cgraph_node **) htab_find_slot (cgraph_hash, &key,
658                                                  NO_INSERT);
659
660   if (slot && *slot)
661     node = *slot;
662   return node;
663 }
664
665 /* Insert already constructed node into hashtable.  */
666
667 void
668 cgraph_insert_node_to_hashtable (struct cgraph_node *node)
669 {
670   struct cgraph_node **slot;
671
672   slot = (struct cgraph_node **) htab_find_slot (cgraph_hash, node, INSERT);
673
674   gcc_assert (!*slot);
675   *slot = node;
676 }
677
678 /* Returns a hash code for P.  */
679
680 static hashval_t
681 hash_node_by_assembler_name (const void *p)
682 {
683   const struct cgraph_node *n = (const struct cgraph_node *) p;
684   return (hashval_t) decl_assembler_name_hash (DECL_ASSEMBLER_NAME (n->decl));
685 }
686
687 /* Returns nonzero if P1 and P2 are equal.  */
688
689 static int
690 eq_assembler_name (const void *p1, const void *p2)
691 {
692   const struct cgraph_node *n1 = (const struct cgraph_node *) p1;
693   const_tree name = (const_tree)p2;
694   return (decl_assembler_name_equal (n1->decl, name));
695 }
696
697 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
698    Return NULL if there's no such node.  */
699
700 struct cgraph_node *
701 cgraph_node_for_asm (tree asmname)
702 {
703   struct cgraph_node *node;
704   void **slot;
705
706   if (!assembler_name_hash)
707     {
708       assembler_name_hash =
709         htab_create_ggc (10, hash_node_by_assembler_name, eq_assembler_name,
710                          NULL);
711       for (node = cgraph_nodes; node; node = node->next)
712         if (!node->global.inlined_to)
713           {
714             tree name = DECL_ASSEMBLER_NAME (node->decl);
715             slot = htab_find_slot_with_hash (assembler_name_hash, name,
716                                              decl_assembler_name_hash (name),
717                                              INSERT);
718             /* We can have multiple declarations with same assembler name. For C++
719                it is __builtin_strlen and strlen, for instance.  Do we need to
720                record them all?  Original implementation marked just first one
721                so lets hope for the best.  */
722             if (!*slot)
723               *slot = node;
724           }
725     }
726
727   slot = htab_find_slot_with_hash (assembler_name_hash, asmname,
728                                    decl_assembler_name_hash (asmname),
729                                    NO_INSERT);
730
731   if (slot)
732     {
733       node = (struct cgraph_node *) *slot;
734       return node;
735     }
736   return NULL;
737 }
738
739 /* Returns a hash value for X (which really is a die_struct).  */
740
741 static hashval_t
742 edge_hash (const void *x)
743 {
744   return htab_hash_pointer (((const struct cgraph_edge *) x)->call_stmt);
745 }
746
747 /* Return nonzero if decl_id of die_struct X is the same as UID of decl *Y.  */
748
749 static int
750 edge_eq (const void *x, const void *y)
751 {
752   return ((const struct cgraph_edge *) x)->call_stmt == y;
753 }
754
755 /* Add call graph edge E to call site hash of its caller.  */
756
757 static inline void
758 cgraph_add_edge_to_call_site_hash (struct cgraph_edge *e)
759 {
760   void **slot;
761   slot = htab_find_slot_with_hash (e->caller->call_site_hash,
762                                    e->call_stmt,
763                                    htab_hash_pointer (e->call_stmt),
764                                    INSERT);
765   gcc_assert (!*slot);
766   *slot = e;
767 }
768
769 /* Return the callgraph edge representing the GIMPLE_CALL statement
770    CALL_STMT.  */
771
772 struct cgraph_edge *
773 cgraph_edge (struct cgraph_node *node, gimple call_stmt)
774 {
775   struct cgraph_edge *e, *e2;
776   int n = 0;
777
778   if (node->call_site_hash)
779     return (struct cgraph_edge *)
780       htab_find_with_hash (node->call_site_hash, call_stmt,
781                            htab_hash_pointer (call_stmt));
782
783   /* This loop may turn out to be performance problem.  In such case adding
784      hashtables into call nodes with very many edges is probably best
785      solution.  It is not good idea to add pointer into CALL_EXPR itself
786      because we want to make possible having multiple cgraph nodes representing
787      different clones of the same body before the body is actually cloned.  */
788   for (e = node->callees; e; e = e->next_callee)
789     {
790       if (e->call_stmt == call_stmt)
791         break;
792       n++;
793     }
794
795   if (!e)
796     for (e = node->indirect_calls; e; e = e->next_callee)
797       {
798         if (e->call_stmt == call_stmt)
799           break;
800         n++;
801       }
802
803   if (n > 100)
804     {
805       node->call_site_hash = htab_create_ggc (120, edge_hash, edge_eq, NULL);
806       for (e2 = node->callees; e2; e2 = e2->next_callee)
807         cgraph_add_edge_to_call_site_hash (e2);
808       for (e2 = node->indirect_calls; e2; e2 = e2->next_callee)
809         cgraph_add_edge_to_call_site_hash (e2);
810     }
811
812   return e;
813 }
814
815
816 /* Change field call_stmt of edge E to NEW_STMT.  */
817
818 void
819 cgraph_set_call_stmt (struct cgraph_edge *e, gimple new_stmt)
820 {
821   tree decl;
822
823   if (e->caller->call_site_hash)
824     {
825       htab_remove_elt_with_hash (e->caller->call_site_hash,
826                                  e->call_stmt,
827                                  htab_hash_pointer (e->call_stmt));
828     }
829
830   e->call_stmt = new_stmt;
831   if (e->indirect_unknown_callee
832       && (decl = gimple_call_fndecl (new_stmt)))
833     {
834       /* Constant propagation (and possibly also inlining?) can turn an
835          indirect call into a direct one.  */
836       struct cgraph_node *new_callee = cgraph_get_node (decl);
837
838       gcc_checking_assert (new_callee);
839       cgraph_make_edge_direct (e, new_callee);
840     }
841
842   push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
843   e->can_throw_external = stmt_can_throw_external (new_stmt);
844   pop_cfun ();
845   if (e->caller->call_site_hash)
846     cgraph_add_edge_to_call_site_hash (e);
847 }
848
849 /* Like cgraph_set_call_stmt but walk the clone tree and update all
850    clones sharing the same function body.  */
851
852 void
853 cgraph_set_call_stmt_including_clones (struct cgraph_node *orig,
854                                        gimple old_stmt, gimple new_stmt)
855 {
856   struct cgraph_node *node;
857   struct cgraph_edge *edge = cgraph_edge (orig, old_stmt);
858
859   if (edge)
860     cgraph_set_call_stmt (edge, new_stmt);
861
862   node = orig->clones;
863   if (node)
864     while (node != orig)
865       {
866         struct cgraph_edge *edge = cgraph_edge (node, old_stmt);
867         if (edge)
868           cgraph_set_call_stmt (edge, new_stmt);
869         if (node->clones)
870           node = node->clones;
871         else if (node->next_sibling_clone)
872           node = node->next_sibling_clone;
873         else
874           {
875             while (node != orig && !node->next_sibling_clone)
876               node = node->clone_of;
877             if (node != orig)
878               node = node->next_sibling_clone;
879           }
880       }
881 }
882
883 /* Like cgraph_create_edge walk the clone tree and update all clones sharing
884    same function body.  If clones already have edge for OLD_STMT; only
885    update the edge same way as cgraph_set_call_stmt_including_clones does.
886
887    TODO: COUNT and LOOP_DEPTH should be properly distributed based on relative
888    frequencies of the clones.  */
889
890 void
891 cgraph_create_edge_including_clones (struct cgraph_node *orig,
892                                      struct cgraph_node *callee,
893                                      gimple old_stmt,
894                                      gimple stmt, gcov_type count,
895                                      int freq,
896                                      cgraph_inline_failed_t reason)
897 {
898   struct cgraph_node *node;
899   struct cgraph_edge *edge;
900
901   if (!cgraph_edge (orig, stmt))
902     {
903       edge = cgraph_create_edge (orig, callee, stmt, count, freq);
904       edge->inline_failed = reason;
905     }
906
907   node = orig->clones;
908   if (node)
909     while (node != orig)
910       {
911         struct cgraph_edge *edge = cgraph_edge (node, old_stmt);
912
913         /* It is possible that clones already contain the edge while
914            master didn't.  Either we promoted indirect call into direct
915            call in the clone or we are processing clones of unreachable
916            master where edges has been removed.  */
917         if (edge)
918           cgraph_set_call_stmt (edge, stmt);
919         else if (!cgraph_edge (node, stmt))
920           {
921             edge = cgraph_create_edge (node, callee, stmt, count,
922                                        freq);
923             edge->inline_failed = reason;
924           }
925
926         if (node->clones)
927           node = node->clones;
928         else if (node->next_sibling_clone)
929           node = node->next_sibling_clone;
930         else
931           {
932             while (node != orig && !node->next_sibling_clone)
933               node = node->clone_of;
934             if (node != orig)
935               node = node->next_sibling_clone;
936           }
937       }
938 }
939
940 /* Allocate a cgraph_edge structure and fill it with data according to the
941    parameters of which only CALLEE can be NULL (when creating an indirect call
942    edge).  */
943
944 static struct cgraph_edge *
945 cgraph_create_edge_1 (struct cgraph_node *caller, struct cgraph_node *callee,
946                        gimple call_stmt, gcov_type count, int freq)
947 {
948   struct cgraph_edge *edge;
949
950   /* LTO does not actually have access to the call_stmt since these
951      have not been loaded yet.  */
952   if (call_stmt)
953     {
954       /* This is a rather expensive check possibly triggering
955          construction of call stmt hashtable.  */
956       gcc_checking_assert (!cgraph_edge (caller, call_stmt));
957
958       gcc_assert (is_gimple_call (call_stmt));
959     }
960
961   if (free_edges)
962     {
963       edge = free_edges;
964       free_edges = NEXT_FREE_EDGE (edge);
965     }
966   else
967     {
968       edge = ggc_alloc_cgraph_edge ();
969       edge->uid = cgraph_edge_max_uid++;
970     }
971
972   edge->aux = NULL;
973   edge->caller = caller;
974   edge->callee = callee;
975   edge->prev_caller = NULL;
976   edge->next_caller = NULL;
977   edge->prev_callee = NULL;
978   edge->next_callee = NULL;
979
980   edge->count = count;
981   gcc_assert (count >= 0);
982   edge->frequency = freq;
983   gcc_assert (freq >= 0);
984   gcc_assert (freq <= CGRAPH_FREQ_MAX);
985
986   edge->call_stmt = call_stmt;
987   push_cfun (DECL_STRUCT_FUNCTION (caller->decl));
988   edge->can_throw_external
989     = call_stmt ? stmt_can_throw_external (call_stmt) : false;
990   pop_cfun ();
991   if (call_stmt
992       && callee && callee->decl
993       && !gimple_check_call_matching_types (call_stmt, callee->decl))
994     edge->call_stmt_cannot_inline_p = true;
995   else
996     edge->call_stmt_cannot_inline_p = false;
997   if (call_stmt && caller->call_site_hash)
998     cgraph_add_edge_to_call_site_hash (edge);
999
1000   edge->indirect_info = NULL;
1001   edge->indirect_inlining_edge = 0;
1002
1003   return edge;
1004 }
1005
1006 /* Create edge from CALLER to CALLEE in the cgraph.  */
1007
1008 struct cgraph_edge *
1009 cgraph_create_edge (struct cgraph_node *caller, struct cgraph_node *callee,
1010                     gimple call_stmt, gcov_type count, int freq)
1011 {
1012   struct cgraph_edge *edge = cgraph_create_edge_1 (caller, callee, call_stmt,
1013                                                    count, freq);
1014
1015   edge->indirect_unknown_callee = 0;
1016   initialize_inline_failed (edge);
1017
1018   edge->next_caller = callee->callers;
1019   if (callee->callers)
1020     callee->callers->prev_caller = edge;
1021   edge->next_callee = caller->callees;
1022   if (caller->callees)
1023     caller->callees->prev_callee = edge;
1024   caller->callees = edge;
1025   callee->callers = edge;
1026
1027   return edge;
1028 }
1029
1030 /* Allocate cgraph_indirect_call_info and set its fields to default values. */
1031
1032 struct cgraph_indirect_call_info *
1033 cgraph_allocate_init_indirect_info (void)
1034 {
1035   struct cgraph_indirect_call_info *ii;
1036
1037   ii = ggc_alloc_cleared_cgraph_indirect_call_info ();
1038   ii->param_index = -1;
1039   return ii;
1040 }
1041
1042 /* Create an indirect edge with a yet-undetermined callee where the call
1043    statement destination is a formal parameter of the caller with index
1044    PARAM_INDEX. */
1045
1046 struct cgraph_edge *
1047 cgraph_create_indirect_edge (struct cgraph_node *caller, gimple call_stmt,
1048                              int ecf_flags,
1049                              gcov_type count, int freq)
1050 {
1051   struct cgraph_edge *edge = cgraph_create_edge_1 (caller, NULL, call_stmt,
1052                                                    count, freq);
1053
1054   edge->indirect_unknown_callee = 1;
1055   initialize_inline_failed (edge);
1056
1057   edge->indirect_info = cgraph_allocate_init_indirect_info ();
1058   edge->indirect_info->ecf_flags = ecf_flags;
1059
1060   edge->next_callee = caller->indirect_calls;
1061   if (caller->indirect_calls)
1062     caller->indirect_calls->prev_callee = edge;
1063   caller->indirect_calls = edge;
1064
1065   return edge;
1066 }
1067
1068 /* Remove the edge E from the list of the callers of the callee.  */
1069
1070 static inline void
1071 cgraph_edge_remove_callee (struct cgraph_edge *e)
1072 {
1073   gcc_assert (!e->indirect_unknown_callee);
1074   if (e->prev_caller)
1075     e->prev_caller->next_caller = e->next_caller;
1076   if (e->next_caller)
1077     e->next_caller->prev_caller = e->prev_caller;
1078   if (!e->prev_caller)
1079     e->callee->callers = e->next_caller;
1080 }
1081
1082 /* Remove the edge E from the list of the callees of the caller.  */
1083
1084 static inline void
1085 cgraph_edge_remove_caller (struct cgraph_edge *e)
1086 {
1087   if (e->prev_callee)
1088     e->prev_callee->next_callee = e->next_callee;
1089   if (e->next_callee)
1090     e->next_callee->prev_callee = e->prev_callee;
1091   if (!e->prev_callee)
1092     {
1093       if (e->indirect_unknown_callee)
1094         e->caller->indirect_calls = e->next_callee;
1095       else
1096         e->caller->callees = e->next_callee;
1097     }
1098   if (e->caller->call_site_hash)
1099     htab_remove_elt_with_hash (e->caller->call_site_hash,
1100                                e->call_stmt,
1101                                htab_hash_pointer (e->call_stmt));
1102 }
1103
1104 /* Put the edge onto the free list.  */
1105
1106 static void
1107 cgraph_free_edge (struct cgraph_edge *e)
1108 {
1109   int uid = e->uid;
1110
1111   /* Clear out the edge so we do not dangle pointers.  */
1112   memset (e, 0, sizeof (*e));
1113   e->uid = uid;
1114   NEXT_FREE_EDGE (e) = free_edges;
1115   free_edges = e;
1116 }
1117
1118 /* Remove the edge E in the cgraph.  */
1119
1120 void
1121 cgraph_remove_edge (struct cgraph_edge *e)
1122 {
1123   /* Call all edge removal hooks.  */
1124   cgraph_call_edge_removal_hooks (e);
1125
1126   if (!e->indirect_unknown_callee)
1127     /* Remove from callers list of the callee.  */
1128     cgraph_edge_remove_callee (e);
1129
1130   /* Remove from callees list of the callers.  */
1131   cgraph_edge_remove_caller (e);
1132
1133   /* Put the edge onto the free list.  */
1134   cgraph_free_edge (e);
1135 }
1136
1137 /* Set callee of call graph edge E and add it to the corresponding set of
1138    callers. */
1139
1140 static void
1141 cgraph_set_edge_callee (struct cgraph_edge *e, struct cgraph_node *n)
1142 {
1143   e->prev_caller = NULL;
1144   if (n->callers)
1145     n->callers->prev_caller = e;
1146   e->next_caller = n->callers;
1147   n->callers = e;
1148   e->callee = n;
1149 }
1150
1151 /* Redirect callee of E to N.  The function does not update underlying
1152    call expression.  */
1153
1154 void
1155 cgraph_redirect_edge_callee (struct cgraph_edge *e, struct cgraph_node *n)
1156 {
1157   /* Remove from callers list of the current callee.  */
1158   cgraph_edge_remove_callee (e);
1159
1160   /* Insert to callers list of the new callee.  */
1161   cgraph_set_edge_callee (e, n);
1162 }
1163
1164 /* Make an indirect EDGE with an unknown callee an ordinary edge leading to
1165    CALLEE.  DELTA is an integer constant that is to be added to the this
1166    pointer (first parameter) to compensate for skipping a thunk adjustment.  */
1167
1168 void
1169 cgraph_make_edge_direct (struct cgraph_edge *edge, struct cgraph_node *callee)
1170 {
1171   edge->indirect_unknown_callee = 0;
1172
1173   /* Get the edge out of the indirect edge list. */
1174   if (edge->prev_callee)
1175     edge->prev_callee->next_callee = edge->next_callee;
1176   if (edge->next_callee)
1177     edge->next_callee->prev_callee = edge->prev_callee;
1178   if (!edge->prev_callee)
1179     edge->caller->indirect_calls = edge->next_callee;
1180
1181   /* Put it into the normal callee list */
1182   edge->prev_callee = NULL;
1183   edge->next_callee = edge->caller->callees;
1184   if (edge->caller->callees)
1185     edge->caller->callees->prev_callee = edge;
1186   edge->caller->callees = edge;
1187
1188   /* Insert to callers list of the new callee.  */
1189   cgraph_set_edge_callee (edge, callee);
1190
1191   if (edge->call_stmt)
1192     edge->call_stmt_cannot_inline_p
1193       = !gimple_check_call_matching_types (edge->call_stmt, callee->decl);
1194
1195   /* We need to re-determine the inlining status of the edge.  */
1196   initialize_inline_failed (edge);
1197 }
1198
1199
1200 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1201    OLD_STMT changed into NEW_STMT.  OLD_CALL is gimple_call_fndecl
1202    of OLD_STMT if it was previously call statement.
1203    If NEW_STMT is NULL, the call has been dropped without any
1204    replacement.  */
1205
1206 static void
1207 cgraph_update_edges_for_call_stmt_node (struct cgraph_node *node,
1208                                         gimple old_stmt, tree old_call,
1209                                         gimple new_stmt)
1210 {
1211   tree new_call = (new_stmt && is_gimple_call (new_stmt))
1212                   ? gimple_call_fndecl (new_stmt) : 0;
1213
1214   /* We are seeing indirect calls, then there is nothing to update.  */
1215   if (!new_call && !old_call)
1216     return;
1217   /* See if we turned indirect call into direct call or folded call to one builtin
1218      into different builtin.  */
1219   if (old_call != new_call)
1220     {
1221       struct cgraph_edge *e = cgraph_edge (node, old_stmt);
1222       struct cgraph_edge *ne = NULL;
1223       gcov_type count;
1224       int frequency;
1225
1226       if (e)
1227         {
1228           /* See if the edge is already there and has the correct callee.  It
1229              might be so because of indirect inlining has already updated
1230              it.  We also might've cloned and redirected the edge.  */
1231           if (new_call && e->callee)
1232             {
1233               struct cgraph_node *callee = e->callee;
1234               while (callee)
1235                 {
1236                   if (callee->decl == new_call
1237                       || callee->former_clone_of == new_call)
1238                     return;
1239                   callee = callee->clone_of;
1240                 }
1241             }
1242
1243           /* Otherwise remove edge and create new one; we can't simply redirect
1244              since function has changed, so inline plan and other information
1245              attached to edge is invalid.  */
1246           count = e->count;
1247           frequency = e->frequency;
1248           cgraph_remove_edge (e);
1249         }
1250       else if (new_call)
1251         {
1252           /* We are seeing new direct call; compute profile info based on BB.  */
1253           basic_block bb = gimple_bb (new_stmt);
1254           count = bb->count;
1255           frequency = compute_call_stmt_bb_frequency (current_function_decl,
1256                                                       bb);
1257         }
1258
1259       if (new_call)
1260         {
1261           ne = cgraph_create_edge (node, cgraph_get_create_node (new_call),
1262                                    new_stmt, count, frequency);
1263           gcc_assert (ne->inline_failed);
1264         }
1265     }
1266   /* We only updated the call stmt; update pointer in cgraph edge..  */
1267   else if (old_stmt != new_stmt)
1268     cgraph_set_call_stmt (cgraph_edge (node, old_stmt), new_stmt);
1269 }
1270
1271 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1272    OLD_STMT changed into NEW_STMT.  OLD_DECL is gimple_call_fndecl
1273    of OLD_STMT before it was updated (updating can happen inplace).  */
1274
1275 void
1276 cgraph_update_edges_for_call_stmt (gimple old_stmt, tree old_decl, gimple new_stmt)
1277 {
1278   struct cgraph_node *orig = cgraph_get_node (cfun->decl);
1279   struct cgraph_node *node;
1280
1281   gcc_checking_assert (orig);
1282   cgraph_update_edges_for_call_stmt_node (orig, old_stmt, old_decl, new_stmt);
1283   if (orig->clones)
1284     for (node = orig->clones; node != orig;)
1285       {
1286         cgraph_update_edges_for_call_stmt_node (node, old_stmt, old_decl, new_stmt);
1287         if (node->clones)
1288           node = node->clones;
1289         else if (node->next_sibling_clone)
1290           node = node->next_sibling_clone;
1291         else
1292           {
1293             while (node != orig && !node->next_sibling_clone)
1294               node = node->clone_of;
1295             if (node != orig)
1296               node = node->next_sibling_clone;
1297           }
1298       }
1299 }
1300
1301
1302 /* Remove all callees from the node.  */
1303
1304 void
1305 cgraph_node_remove_callees (struct cgraph_node *node)
1306 {
1307   struct cgraph_edge *e, *f;
1308
1309   /* It is sufficient to remove the edges from the lists of callers of
1310      the callees.  The callee list of the node can be zapped with one
1311      assignment.  */
1312   for (e = node->callees; e; e = f)
1313     {
1314       f = e->next_callee;
1315       cgraph_call_edge_removal_hooks (e);
1316       if (!e->indirect_unknown_callee)
1317         cgraph_edge_remove_callee (e);
1318       cgraph_free_edge (e);
1319     }
1320   for (e = node->indirect_calls; e; e = f)
1321     {
1322       f = e->next_callee;
1323       cgraph_call_edge_removal_hooks (e);
1324       if (!e->indirect_unknown_callee)
1325         cgraph_edge_remove_callee (e);
1326       cgraph_free_edge (e);
1327     }
1328   node->indirect_calls = NULL;
1329   node->callees = NULL;
1330   if (node->call_site_hash)
1331     {
1332       htab_delete (node->call_site_hash);
1333       node->call_site_hash = NULL;
1334     }
1335 }
1336
1337 /* Remove all callers from the node.  */
1338
1339 static void
1340 cgraph_node_remove_callers (struct cgraph_node *node)
1341 {
1342   struct cgraph_edge *e, *f;
1343
1344   /* It is sufficient to remove the edges from the lists of callees of
1345      the callers.  The caller list of the node can be zapped with one
1346      assignment.  */
1347   for (e = node->callers; e; e = f)
1348     {
1349       f = e->next_caller;
1350       cgraph_call_edge_removal_hooks (e);
1351       cgraph_edge_remove_caller (e);
1352       cgraph_free_edge (e);
1353     }
1354   node->callers = NULL;
1355 }
1356
1357 /* Release memory used to represent body of function NODE.  */
1358
1359 void
1360 cgraph_release_function_body (struct cgraph_node *node)
1361 {
1362   if (DECL_STRUCT_FUNCTION (node->decl))
1363     {
1364       tree old_decl = current_function_decl;
1365       push_cfun (DECL_STRUCT_FUNCTION (node->decl));
1366       if (cfun->gimple_df)
1367         {
1368           current_function_decl = node->decl;
1369           delete_tree_ssa ();
1370           delete_tree_cfg_annotations ();
1371           cfun->eh = NULL;
1372           current_function_decl = old_decl;
1373         }
1374       if (cfun->cfg)
1375         {
1376           gcc_assert (dom_computed[0] == DOM_NONE);
1377           gcc_assert (dom_computed[1] == DOM_NONE);
1378           clear_edges ();
1379         }
1380       if (cfun->value_histograms)
1381         free_histograms ();
1382       gcc_assert (!current_loops);
1383       pop_cfun();
1384       gimple_set_body (node->decl, NULL);
1385       VEC_free (ipa_opt_pass, heap,
1386                 node->ipa_transforms_to_apply);
1387       /* Struct function hangs a lot of data that would leak if we didn't
1388          removed all pointers to it.   */
1389       ggc_free (DECL_STRUCT_FUNCTION (node->decl));
1390       DECL_STRUCT_FUNCTION (node->decl) = NULL;
1391     }
1392   DECL_SAVED_TREE (node->decl) = NULL;
1393   /* If the node is abstract and needed, then do not clear DECL_INITIAL
1394      of its associated function function declaration because it's
1395      needed to emit debug info later.  */
1396   if (!node->abstract_and_needed)
1397     DECL_INITIAL (node->decl) = error_mark_node;
1398 }
1399
1400 /* Remove the node from cgraph.  */
1401
1402 void
1403 cgraph_remove_node (struct cgraph_node *node)
1404 {
1405   void **slot;
1406   bool kill_body = false;
1407   struct cgraph_node *n;
1408   int uid = node->uid;
1409
1410   cgraph_call_node_removal_hooks (node);
1411   cgraph_node_remove_callers (node);
1412   cgraph_node_remove_callees (node);
1413   ipa_remove_all_references (&node->ref_list);
1414   ipa_remove_all_refering (&node->ref_list);
1415   VEC_free (ipa_opt_pass, heap,
1416             node->ipa_transforms_to_apply);
1417
1418   /* Incremental inlining access removed nodes stored in the postorder list.
1419      */
1420   node->needed = node->reachable = false;
1421   for (n = node->nested; n; n = n->next_nested)
1422     n->origin = NULL;
1423   node->nested = NULL;
1424   if (node->origin)
1425     {
1426       struct cgraph_node **node2 = &node->origin->nested;
1427
1428       while (*node2 != node)
1429         node2 = &(*node2)->next_nested;
1430       *node2 = node->next_nested;
1431     }
1432   if (node->previous)
1433     node->previous->next = node->next;
1434   else
1435     cgraph_nodes = node->next;
1436   if (node->next)
1437     node->next->previous = node->previous;
1438   node->next = NULL;
1439   node->previous = NULL;
1440   slot = htab_find_slot (cgraph_hash, node, NO_INSERT);
1441   if (*slot == node)
1442     {
1443       struct cgraph_node *next_inline_clone;
1444
1445       for (next_inline_clone = node->clones;
1446            next_inline_clone && next_inline_clone->decl != node->decl;
1447            next_inline_clone = next_inline_clone->next_sibling_clone)
1448         ;
1449
1450       /* If there is inline clone of the node being removed, we need
1451          to put it into the position of removed node and reorganize all
1452          other clones to be based on it.  */
1453       if (next_inline_clone)
1454         {
1455           struct cgraph_node *n;
1456           struct cgraph_node *new_clones;
1457
1458           *slot = next_inline_clone;
1459
1460           /* Unlink inline clone from the list of clones of removed node.  */
1461           if (next_inline_clone->next_sibling_clone)
1462             next_inline_clone->next_sibling_clone->prev_sibling_clone
1463               = next_inline_clone->prev_sibling_clone;
1464           if (next_inline_clone->prev_sibling_clone)
1465             {
1466               gcc_assert (node->clones != next_inline_clone);
1467               next_inline_clone->prev_sibling_clone->next_sibling_clone
1468                 = next_inline_clone->next_sibling_clone;
1469             }
1470           else
1471             {
1472               gcc_assert (node->clones == next_inline_clone);
1473               node->clones = next_inline_clone->next_sibling_clone;
1474             }
1475
1476           new_clones = node->clones;
1477           node->clones = NULL;
1478
1479           /* Copy clone info.  */
1480           next_inline_clone->clone = node->clone;
1481
1482           /* Now place it into clone tree at same level at NODE.  */
1483           next_inline_clone->clone_of = node->clone_of;
1484           next_inline_clone->prev_sibling_clone = NULL;
1485           next_inline_clone->next_sibling_clone = NULL;
1486           if (node->clone_of)
1487             {
1488               if (node->clone_of->clones)
1489                 node->clone_of->clones->prev_sibling_clone = next_inline_clone;
1490               next_inline_clone->next_sibling_clone = node->clone_of->clones;
1491               node->clone_of->clones = next_inline_clone;
1492             }
1493
1494           /* Merge the clone list.  */
1495           if (new_clones)
1496             {
1497               if (!next_inline_clone->clones)
1498                 next_inline_clone->clones = new_clones;
1499               else
1500                 {
1501                   n = next_inline_clone->clones;
1502                   while (n->next_sibling_clone)
1503                     n =  n->next_sibling_clone;
1504                   n->next_sibling_clone = new_clones;
1505                   new_clones->prev_sibling_clone = n;
1506                 }
1507             }
1508
1509           /* Update clone_of pointers.  */
1510           n = new_clones;
1511           while (n)
1512             {
1513               n->clone_of = next_inline_clone;
1514               n = n->next_sibling_clone;
1515             }
1516         }
1517       else
1518         {
1519           htab_clear_slot (cgraph_hash, slot);
1520           kill_body = true;
1521         }
1522
1523     }
1524   if (node->prev_sibling_clone)
1525     node->prev_sibling_clone->next_sibling_clone = node->next_sibling_clone;
1526   else if (node->clone_of)
1527     node->clone_of->clones = node->next_sibling_clone;
1528   if (node->next_sibling_clone)
1529     node->next_sibling_clone->prev_sibling_clone = node->prev_sibling_clone;
1530   if (node->clones)
1531     {
1532       struct cgraph_node *n, *next;
1533
1534       if (node->clone_of)
1535         {
1536           for (n = node->clones; n->next_sibling_clone; n = n->next_sibling_clone)
1537             n->clone_of = node->clone_of;
1538           n->clone_of = node->clone_of;
1539           n->next_sibling_clone = node->clone_of->clones;
1540           if (node->clone_of->clones)
1541             node->clone_of->clones->prev_sibling_clone = n;
1542           node->clone_of->clones = node->clones;
1543         }
1544       else
1545         {
1546           /* We are removing node with clones.  this makes clones inconsistent,
1547              but assume they will be removed subsequently and just keep clone
1548              tree intact.  This can happen in unreachable function removal since
1549              we remove unreachable functions in random order, not by bottom-up
1550              walk of clone trees.  */
1551           for (n = node->clones; n; n = next)
1552             {
1553                next = n->next_sibling_clone;
1554                n->next_sibling_clone = NULL;
1555                n->prev_sibling_clone = NULL;
1556                n->clone_of = NULL;
1557             }
1558         }
1559     }
1560
1561   if (node->same_comdat_group)
1562     {
1563       struct cgraph_node *prev;
1564       for (prev = node->same_comdat_group;
1565            prev->same_comdat_group != node;
1566            prev = prev->same_comdat_group)
1567         ;
1568       if (node->same_comdat_group == prev)
1569         prev->same_comdat_group = NULL;
1570       else
1571         prev->same_comdat_group = node->same_comdat_group;
1572       node->same_comdat_group = NULL;
1573     }
1574
1575   /* While all the clones are removed after being proceeded, the function
1576      itself is kept in the cgraph even after it is compiled.  Check whether
1577      we are done with this body and reclaim it proactively if this is the case.
1578      */
1579   if (!kill_body && *slot)
1580     {
1581       struct cgraph_node *n = (struct cgraph_node *) *slot;
1582       if (!n->clones && !n->clone_of && !n->global.inlined_to
1583           && (cgraph_global_info_ready
1584               && (TREE_ASM_WRITTEN (n->decl) || DECL_EXTERNAL (n->decl)
1585                   || n->in_other_partition)))
1586         kill_body = true;
1587     }
1588   if (assembler_name_hash)
1589     {
1590       tree name = DECL_ASSEMBLER_NAME (node->decl);
1591       slot = htab_find_slot_with_hash (assembler_name_hash, name,
1592                                        decl_assembler_name_hash (name),
1593                                        NO_INSERT);
1594       /* Inline clones are not hashed.  */
1595       if (slot && *slot == node)
1596         htab_clear_slot (assembler_name_hash, slot);
1597     }
1598
1599   if (kill_body)
1600     cgraph_release_function_body (node);
1601   node->decl = NULL;
1602   if (node->call_site_hash)
1603     {
1604       htab_delete (node->call_site_hash);
1605       node->call_site_hash = NULL;
1606     }
1607   cgraph_n_nodes--;
1608
1609   /* Clear out the node to NULL all pointers and add the node to the free
1610      list.  */
1611   memset (node, 0, sizeof(*node));
1612   node->uid = uid;
1613   NEXT_FREE_NODE (node) = free_nodes;
1614   free_nodes = node;
1615 }
1616
1617 /* Add NEW_ to the same comdat group that OLD is in.  */
1618
1619 void
1620 cgraph_add_to_same_comdat_group (struct cgraph_node *new_,
1621                                  struct cgraph_node *old)
1622 {
1623   gcc_assert (DECL_ONE_ONLY (old->decl));
1624   gcc_assert (!new_->same_comdat_group);
1625   gcc_assert (new_ != old);
1626
1627   DECL_COMDAT_GROUP (new_->decl) = DECL_COMDAT_GROUP (old->decl);
1628   new_->same_comdat_group = old;
1629   if (!old->same_comdat_group)
1630     old->same_comdat_group = new_;
1631   else
1632     {
1633       struct cgraph_node *n;
1634       for (n = old->same_comdat_group;
1635            n->same_comdat_group != old;
1636            n = n->same_comdat_group)
1637         ;
1638       n->same_comdat_group = new_;
1639     }
1640 }
1641
1642 /* Remove the node from cgraph and all inline clones inlined into it.
1643    Skip however removal of FORBIDDEN_NODE and return true if it needs to be
1644    removed.  This allows to call the function from outer loop walking clone
1645    tree.  */
1646
1647 bool
1648 cgraph_remove_node_and_inline_clones (struct cgraph_node *node, struct cgraph_node *forbidden_node)
1649 {
1650   struct cgraph_edge *e, *next;
1651   bool found = false;
1652
1653   if (node == forbidden_node)
1654     return true;
1655   for (e = node->callees; e; e = next)
1656     {
1657       next = e->next_callee;
1658       if (!e->inline_failed)
1659         found |= cgraph_remove_node_and_inline_clones (e->callee, forbidden_node);
1660     }
1661   cgraph_remove_node (node);
1662   return found;
1663 }
1664
1665 /* Notify finalize_compilation_unit that given node is reachable.  */
1666
1667 void
1668 cgraph_mark_reachable_node (struct cgraph_node *node)
1669 {
1670   if (!node->reachable && node->local.finalized)
1671     {
1672       if (cgraph_global_info_ready)
1673         {
1674           /* Verify that function does not appear to be needed out of blue
1675              during the optimization process.  This can happen for extern
1676              inlines when bodies was removed after inlining.  */
1677           gcc_assert ((node->analyzed || node->in_other_partition
1678                        || DECL_EXTERNAL (node->decl)));
1679         }
1680       else
1681         notice_global_symbol (node->decl);
1682       node->reachable = 1;
1683
1684       node->next_needed = cgraph_nodes_queue;
1685       cgraph_nodes_queue = node;
1686     }
1687 }
1688
1689 /* Likewise indicate that a node is needed, i.e. reachable via some
1690    external means.  */
1691
1692 void
1693 cgraph_mark_needed_node (struct cgraph_node *node)
1694 {
1695   node->needed = 1;
1696   gcc_assert (!node->global.inlined_to);
1697   cgraph_mark_reachable_node (node);
1698 }
1699
1700 /* Likewise indicate that a node is having address taken.  */
1701
1702 void
1703 cgraph_mark_address_taken_node (struct cgraph_node *node)
1704 {
1705   gcc_assert (!node->global.inlined_to);
1706   cgraph_mark_reachable_node (node);
1707   /* FIXME: address_taken flag is used both as a shortcut for testing whether
1708      IPA_REF_ADDR reference exists (and thus it should be set on node
1709      representing alias we take address of) and as a test whether address
1710      of the object was taken (and thus it should be set on node alias is
1711      referring to).  We should remove the first use and the remove the
1712      following set.  */
1713   node->address_taken = 1;
1714   node = cgraph_function_or_thunk_node (node, NULL);
1715   node->address_taken = 1;
1716 }
1717
1718 /* Return local info for the compiled function.  */
1719
1720 struct cgraph_local_info *
1721 cgraph_local_info (tree decl)
1722 {
1723   struct cgraph_node *node;
1724
1725   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1726   node = cgraph_get_node (decl);
1727   if (!node)
1728     return NULL;
1729   return &node->local;
1730 }
1731
1732 /* Return local info for the compiled function.  */
1733
1734 struct cgraph_global_info *
1735 cgraph_global_info (tree decl)
1736 {
1737   struct cgraph_node *node;
1738
1739   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL && cgraph_global_info_ready);
1740   node = cgraph_get_node (decl);
1741   if (!node)
1742     return NULL;
1743   return &node->global;
1744 }
1745
1746 /* Return local info for the compiled function.  */
1747
1748 struct cgraph_rtl_info *
1749 cgraph_rtl_info (tree decl)
1750 {
1751   struct cgraph_node *node;
1752
1753   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1754   node = cgraph_get_node (decl);
1755   if (!node
1756       || (decl != current_function_decl
1757           && !TREE_ASM_WRITTEN (node->decl)))
1758     return NULL;
1759   return &node->rtl;
1760 }
1761
1762 /* Return a string describing the failure REASON.  */
1763
1764 const char*
1765 cgraph_inline_failed_string (cgraph_inline_failed_t reason)
1766 {
1767 #undef DEFCIFCODE
1768 #define DEFCIFCODE(code, string)        string,
1769
1770   static const char *cif_string_table[CIF_N_REASONS] = {
1771 #include "cif-code.def"
1772   };
1773
1774   /* Signedness of an enum type is implementation defined, so cast it
1775      to unsigned before testing. */
1776   gcc_assert ((unsigned) reason < CIF_N_REASONS);
1777   return cif_string_table[reason];
1778 }
1779
1780 /* Return name of the node used in debug output.  */
1781 const char *
1782 cgraph_node_name (struct cgraph_node *node)
1783 {
1784   return lang_hooks.decl_printable_name (node->decl, 2);
1785 }
1786
1787 /* Names used to print out the availability enum.  */
1788 const char * const cgraph_availability_names[] =
1789   {"unset", "not_available", "overwritable", "available", "local"};
1790
1791
1792 /* Dump call graph node NODE to file F.  */
1793
1794 void
1795 dump_cgraph_node (FILE *f, struct cgraph_node *node)
1796 {
1797   struct cgraph_edge *edge;
1798   int indirect_calls_count = 0;
1799
1800   fprintf (f, "%s/%i", cgraph_node_name (node), node->uid);
1801   dump_addr (f, " @", (void *)node);
1802   if (DECL_ASSEMBLER_NAME_SET_P (node->decl))
1803     fprintf (f, " (asm: %s)", IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (node->decl)));
1804   if (node->global.inlined_to)
1805     fprintf (f, " (inline copy in %s/%i)",
1806              cgraph_node_name (node->global.inlined_to),
1807              node->global.inlined_to->uid);
1808   if (node->same_comdat_group)
1809     fprintf (f, " (same comdat group as %s/%i)",
1810              cgraph_node_name (node->same_comdat_group),
1811              node->same_comdat_group->uid);
1812   if (node->clone_of)
1813     fprintf (f, " (clone of %s/%i)",
1814              cgraph_node_name (node->clone_of),
1815              node->clone_of->uid);
1816   if (cgraph_function_flags_ready)
1817     fprintf (f, " availability:%s",
1818              cgraph_availability_names [cgraph_function_body_availability (node)]);
1819   if (node->analyzed)
1820     fprintf (f, " analyzed");
1821   if (node->in_other_partition)
1822     fprintf (f, " in_other_partition");
1823   if (node->count)
1824     fprintf (f, " executed "HOST_WIDEST_INT_PRINT_DEC"x",
1825              (HOST_WIDEST_INT)node->count);
1826   if (node->origin)
1827     fprintf (f, " nested in: %s", cgraph_node_name (node->origin));
1828   if (node->needed)
1829     fprintf (f, " needed");
1830   if (node->address_taken)
1831     fprintf (f, " address_taken");
1832   else if (node->reachable)
1833     fprintf (f, " reachable");
1834   else if (node->reachable_from_other_partition)
1835     fprintf (f, " reachable_from_other_partition");
1836   if (gimple_has_body_p (node->decl))
1837     fprintf (f, " body");
1838   if (node->process)
1839     fprintf (f, " process");
1840   if (node->local.local)
1841     fprintf (f, " local");
1842   if (node->local.externally_visible)
1843     fprintf (f, " externally_visible");
1844   if (node->resolution != LDPR_UNKNOWN)
1845     fprintf (f, " %s",
1846              ld_plugin_symbol_resolution_names[(int)node->resolution]);
1847   if (node->local.finalized)
1848     fprintf (f, " finalized");
1849   if (node->local.redefined_extern_inline)
1850     fprintf (f, " redefined_extern_inline");
1851   if (TREE_ASM_WRITTEN (node->decl))
1852     fprintf (f, " asm_written");
1853   if (node->only_called_at_startup)
1854     fprintf (f, " only_called_at_startup");
1855   if (node->only_called_at_exit)
1856     fprintf (f, " only_called_at_exit");
1857   else if (node->alias)
1858     fprintf (f, " alias");
1859   if (node->tm_clone)
1860     fprintf (f, " tm_clone");
1861
1862   fprintf (f, "\n");
1863
1864   if (node->thunk.thunk_p)
1865     {
1866       fprintf (f, "  thunk of %s (asm: %s) fixed offset %i virtual value %i has "
1867                "virtual offset %i)\n",
1868                lang_hooks.decl_printable_name (node->thunk.alias, 2),
1869                IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (node->thunk.alias)),
1870                (int)node->thunk.fixed_offset,
1871                (int)node->thunk.virtual_value,
1872                (int)node->thunk.virtual_offset_p);
1873     }
1874   if (node->alias && node->thunk.alias)
1875     {
1876       fprintf (f, "  alias of %s",
1877                lang_hooks.decl_printable_name (node->thunk.alias, 2));
1878       if (DECL_ASSEMBLER_NAME_SET_P (node->thunk.alias))
1879         fprintf (f, " (asm: %s)",
1880                  IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (node->thunk.alias)));
1881       fprintf (f, "\n");
1882     }
1883   
1884   fprintf (f, "  called by: ");
1885
1886   for (edge = node->callers; edge; edge = edge->next_caller)
1887     {
1888       fprintf (f, "%s/%i ", cgraph_node_name (edge->caller),
1889                edge->caller->uid);
1890       if (edge->count)
1891         fprintf (f, "("HOST_WIDEST_INT_PRINT_DEC"x) ",
1892                  (HOST_WIDEST_INT)edge->count);
1893       if (edge->frequency)
1894         fprintf (f, "(%.2f per call) ",
1895                  edge->frequency / (double)CGRAPH_FREQ_BASE);
1896       if (!edge->inline_failed)
1897         fprintf(f, "(inlined) ");
1898       if (edge->indirect_inlining_edge)
1899         fprintf(f, "(indirect_inlining) ");
1900       if (edge->can_throw_external)
1901         fprintf(f, "(can throw external) ");
1902     }
1903
1904   fprintf (f, "\n  calls: ");
1905   for (edge = node->callees; edge; edge = edge->next_callee)
1906     {
1907       fprintf (f, "%s/%i ", cgraph_node_name (edge->callee),
1908                edge->callee->uid);
1909       if (!edge->inline_failed)
1910         fprintf(f, "(inlined) ");
1911       if (edge->indirect_inlining_edge)
1912         fprintf(f, "(indirect_inlining) ");
1913       if (edge->count)
1914         fprintf (f, "("HOST_WIDEST_INT_PRINT_DEC"x) ",
1915                  (HOST_WIDEST_INT)edge->count);
1916       if (edge->frequency)
1917         fprintf (f, "(%.2f per call) ",
1918                  edge->frequency / (double)CGRAPH_FREQ_BASE);
1919       if (edge->can_throw_external)
1920         fprintf(f, "(can throw external) ");
1921     }
1922   fprintf (f, "\n");
1923   fprintf (f, "  References: ");
1924   ipa_dump_references (f, &node->ref_list);
1925   fprintf (f, "  Refering this function: ");
1926   ipa_dump_refering (f, &node->ref_list);
1927
1928   for (edge = node->indirect_calls; edge; edge = edge->next_callee)
1929     indirect_calls_count++;
1930   if (indirect_calls_count)
1931     fprintf (f, "  has %i outgoing edges for indirect calls.\n",
1932              indirect_calls_count);
1933 }
1934
1935
1936 /* Dump call graph node NODE to stderr.  */
1937
1938 DEBUG_FUNCTION void
1939 debug_cgraph_node (struct cgraph_node *node)
1940 {
1941   dump_cgraph_node (stderr, node);
1942 }
1943
1944
1945 /* Dump the callgraph to file F.  */
1946
1947 void
1948 dump_cgraph (FILE *f)
1949 {
1950   struct cgraph_node *node;
1951
1952   fprintf (f, "callgraph:\n\n");
1953   for (node = cgraph_nodes; node; node = node->next)
1954     dump_cgraph_node (f, node);
1955 }
1956
1957
1958 /* Dump the call graph to stderr.  */
1959
1960 DEBUG_FUNCTION void
1961 debug_cgraph (void)
1962 {
1963   dump_cgraph (stderr);
1964 }
1965
1966
1967 /* Set the DECL_ASSEMBLER_NAME and update cgraph hashtables.  */
1968
1969 void
1970 change_decl_assembler_name (tree decl, tree name)
1971 {
1972   struct cgraph_node *node;
1973   void **slot;
1974   if (!DECL_ASSEMBLER_NAME_SET_P (decl))
1975     SET_DECL_ASSEMBLER_NAME (decl, name);
1976   else
1977     {
1978       if (name == DECL_ASSEMBLER_NAME (decl))
1979         return;
1980
1981       if (assembler_name_hash
1982           && TREE_CODE (decl) == FUNCTION_DECL
1983           && (node = cgraph_get_node (decl)) != NULL)
1984         {
1985           tree old_name = DECL_ASSEMBLER_NAME (decl);
1986           slot = htab_find_slot_with_hash (assembler_name_hash, old_name,
1987                                            decl_assembler_name_hash (old_name),
1988                                            NO_INSERT);
1989           /* Inline clones are not hashed.  */
1990           if (slot && *slot == node)
1991             htab_clear_slot (assembler_name_hash, slot);
1992         }
1993       if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))
1994           && DECL_RTL_SET_P (decl))
1995         warning (0, "%D renamed after being referenced in assembly", decl);
1996
1997       SET_DECL_ASSEMBLER_NAME (decl, name);
1998     }
1999   if (assembler_name_hash
2000       && TREE_CODE (decl) == FUNCTION_DECL
2001       && (node = cgraph_get_node (decl)) != NULL)
2002     {
2003       slot = htab_find_slot_with_hash (assembler_name_hash, name,
2004                                        decl_assembler_name_hash (name),
2005                                        INSERT);
2006       gcc_assert (!*slot);
2007       *slot = node;
2008     }
2009 }
2010
2011 /* Add a top-level asm statement to the list.  */
2012
2013 struct cgraph_asm_node *
2014 cgraph_add_asm_node (tree asm_str)
2015 {
2016   struct cgraph_asm_node *node;
2017
2018   node = ggc_alloc_cleared_cgraph_asm_node ();
2019   node->asm_str = asm_str;
2020   node->order = cgraph_order++;
2021   node->next = NULL;
2022   if (cgraph_asm_nodes == NULL)
2023     cgraph_asm_nodes = node;
2024   else
2025     cgraph_asm_last_node->next = node;
2026   cgraph_asm_last_node = node;
2027   return node;
2028 }
2029
2030 /* Return true when the DECL can possibly be inlined.  */
2031 bool
2032 cgraph_function_possibly_inlined_p (tree decl)
2033 {
2034   if (!cgraph_global_info_ready)
2035     return !DECL_UNINLINABLE (decl);
2036   return DECL_POSSIBLY_INLINED (decl);
2037 }
2038
2039 /* Create clone of E in the node N represented by CALL_EXPR the callgraph.  */
2040 struct cgraph_edge *
2041 cgraph_clone_edge (struct cgraph_edge *e, struct cgraph_node *n,
2042                    gimple call_stmt, unsigned stmt_uid, gcov_type count_scale,
2043                    int freq_scale, bool update_original)
2044 {
2045   struct cgraph_edge *new_edge;
2046   gcov_type count = e->count * count_scale / REG_BR_PROB_BASE;
2047   gcov_type freq;
2048
2049   /* We do not want to ignore loop nest after frequency drops to 0.  */
2050   if (!freq_scale)
2051     freq_scale = 1;
2052   freq = e->frequency * (gcov_type) freq_scale / CGRAPH_FREQ_BASE;
2053   if (freq > CGRAPH_FREQ_MAX)
2054     freq = CGRAPH_FREQ_MAX;
2055
2056   if (e->indirect_unknown_callee)
2057     {
2058       tree decl;
2059
2060       if (call_stmt && (decl = gimple_call_fndecl (call_stmt)))
2061         {
2062           struct cgraph_node *callee = cgraph_get_node (decl);
2063           gcc_checking_assert (callee);
2064           new_edge = cgraph_create_edge (n, callee, call_stmt, count, freq);
2065         }
2066       else
2067         {
2068           new_edge = cgraph_create_indirect_edge (n, call_stmt,
2069                                                   e->indirect_info->ecf_flags,
2070                                                   count, freq);
2071           *new_edge->indirect_info = *e->indirect_info;
2072         }
2073     }
2074   else
2075     {
2076       new_edge = cgraph_create_edge (n, e->callee, call_stmt, count, freq);
2077       if (e->indirect_info)
2078         {
2079           new_edge->indirect_info
2080             = ggc_alloc_cleared_cgraph_indirect_call_info ();
2081           *new_edge->indirect_info = *e->indirect_info;
2082         }
2083     }
2084
2085   new_edge->inline_failed = e->inline_failed;
2086   new_edge->indirect_inlining_edge = e->indirect_inlining_edge;
2087   new_edge->lto_stmt_uid = stmt_uid;
2088   /* Clone flags that depend on call_stmt availability manually.  */
2089   new_edge->can_throw_external = e->can_throw_external;
2090   new_edge->call_stmt_cannot_inline_p = e->call_stmt_cannot_inline_p;
2091   if (update_original)
2092     {
2093       e->count -= new_edge->count;
2094       if (e->count < 0)
2095         e->count = 0;
2096     }
2097   cgraph_call_edge_duplication_hooks (e, new_edge);
2098   return new_edge;
2099 }
2100
2101
2102 /* Create node representing clone of N executed COUNT times.  Decrease
2103    the execution counts from original node too.
2104    The new clone will have decl set to DECL that may or may not be the same
2105    as decl of N.
2106
2107    When UPDATE_ORIGINAL is true, the counts are subtracted from the original
2108    function's profile to reflect the fact that part of execution is handled
2109    by node.  
2110    When CALL_DUPLICATOIN_HOOK is true, the ipa passes are acknowledged about
2111    the new clone. Otherwise the caller is responsible for doing so later.  */
2112
2113 struct cgraph_node *
2114 cgraph_clone_node (struct cgraph_node *n, tree decl, gcov_type count, int freq,
2115                    bool update_original,
2116                    VEC(cgraph_edge_p,heap) *redirect_callers,
2117                    bool call_duplication_hook)
2118 {
2119   struct cgraph_node *new_node = cgraph_create_node_1 ();
2120   struct cgraph_edge *e;
2121   gcov_type count_scale;
2122   unsigned i;
2123
2124   new_node->decl = decl;
2125   new_node->origin = n->origin;
2126   if (new_node->origin)
2127     {
2128       new_node->next_nested = new_node->origin->nested;
2129       new_node->origin->nested = new_node;
2130     }
2131   new_node->analyzed = n->analyzed;
2132   new_node->local = n->local;
2133   new_node->local.externally_visible = false;
2134   new_node->local.local = true;
2135   new_node->global = n->global;
2136   new_node->rtl = n->rtl;
2137   new_node->count = count;
2138   new_node->frequency = n->frequency;
2139   new_node->clone = n->clone;
2140   new_node->clone.tree_map = 0;
2141   if (n->count)
2142     {
2143       if (new_node->count > n->count)
2144         count_scale = REG_BR_PROB_BASE;
2145       else
2146         count_scale = new_node->count * REG_BR_PROB_BASE / n->count;
2147     }
2148   else
2149     count_scale = 0;
2150   if (update_original)
2151     {
2152       n->count -= count;
2153       if (n->count < 0)
2154         n->count = 0;
2155     }
2156
2157   FOR_EACH_VEC_ELT (cgraph_edge_p, redirect_callers, i, e)
2158     {
2159       /* Redirect calls to the old version node to point to its new
2160          version.  */
2161       cgraph_redirect_edge_callee (e, new_node);
2162     }
2163
2164
2165   for (e = n->callees;e; e=e->next_callee)
2166     cgraph_clone_edge (e, new_node, e->call_stmt, e->lto_stmt_uid,
2167                        count_scale, freq, update_original);
2168
2169   for (e = n->indirect_calls; e; e = e->next_callee)
2170     cgraph_clone_edge (e, new_node, e->call_stmt, e->lto_stmt_uid,
2171                        count_scale, freq, update_original);
2172   ipa_clone_references (new_node, NULL, &n->ref_list);
2173
2174   new_node->next_sibling_clone = n->clones;
2175   if (n->clones)
2176     n->clones->prev_sibling_clone = new_node;
2177   n->clones = new_node;
2178   new_node->clone_of = n;
2179
2180   if (n->decl != decl)
2181     {
2182       struct cgraph_node **slot;
2183       slot = (struct cgraph_node **) htab_find_slot (cgraph_hash, new_node, INSERT);
2184       gcc_assert (!*slot);
2185       *slot = new_node;
2186       if (assembler_name_hash)
2187         {
2188           void **aslot;
2189           tree name = DECL_ASSEMBLER_NAME (decl);
2190
2191           aslot = htab_find_slot_with_hash (assembler_name_hash, name,
2192                                             decl_assembler_name_hash (name),
2193                                             INSERT);
2194           gcc_assert (!*aslot);
2195           *aslot = new_node;
2196         }
2197     }
2198
2199   if (call_duplication_hook)
2200     cgraph_call_node_duplication_hooks (n, new_node);
2201   return new_node;
2202 }
2203
2204 /* Create a new name for clone of DECL, add SUFFIX.  Returns an identifier.  */
2205
2206 static GTY(()) unsigned int clone_fn_id_num;
2207
2208 tree
2209 clone_function_name (tree decl, const char *suffix)
2210 {
2211   tree name = DECL_ASSEMBLER_NAME (decl);
2212   size_t len = IDENTIFIER_LENGTH (name);
2213   char *tmp_name, *prefix;
2214
2215   prefix = XALLOCAVEC (char, len + strlen (suffix) + 2);
2216   memcpy (prefix, IDENTIFIER_POINTER (name), len);
2217   strcpy (prefix + len + 1, suffix);
2218 #ifndef NO_DOT_IN_LABEL
2219   prefix[len] = '.';
2220 #elif !defined NO_DOLLAR_IN_LABEL
2221   prefix[len] = '$';
2222 #else
2223   prefix[len] = '_';
2224 #endif
2225   ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix, clone_fn_id_num++);
2226   return get_identifier (tmp_name);
2227 }
2228
2229 /* Create callgraph node clone with new declaration.  The actual body will
2230    be copied later at compilation stage.
2231
2232    TODO: after merging in ipa-sra use function call notes instead of args_to_skip
2233    bitmap interface.
2234    */
2235 struct cgraph_node *
2236 cgraph_create_virtual_clone (struct cgraph_node *old_node,
2237                              VEC(cgraph_edge_p,heap) *redirect_callers,
2238                              VEC(ipa_replace_map_p,gc) *tree_map,
2239                              bitmap args_to_skip,
2240                              const char * suffix)
2241 {
2242   tree old_decl = old_node->decl;
2243   struct cgraph_node *new_node = NULL;
2244   tree new_decl;
2245   size_t i;
2246   struct ipa_replace_map *map;
2247
2248   if (!flag_wpa)
2249     gcc_checking_assert  (tree_versionable_function_p (old_decl));
2250
2251   gcc_assert (old_node->local.can_change_signature || !args_to_skip);
2252
2253   /* Make a new FUNCTION_DECL tree node */
2254   if (!args_to_skip)
2255     new_decl = copy_node (old_decl);
2256   else
2257     new_decl = build_function_decl_skip_args (old_decl, args_to_skip, false);
2258   DECL_STRUCT_FUNCTION (new_decl) = NULL;
2259
2260   /* Generate a new name for the new version. */
2261   DECL_NAME (new_decl) = clone_function_name (old_decl, suffix);
2262   SET_DECL_ASSEMBLER_NAME (new_decl, DECL_NAME (new_decl));
2263   SET_DECL_RTL (new_decl, NULL);
2264
2265   new_node = cgraph_clone_node (old_node, new_decl, old_node->count,
2266                                 CGRAPH_FREQ_BASE, false,
2267                                 redirect_callers, false);
2268   /* Update the properties.
2269      Make clone visible only within this translation unit.  Make sure
2270      that is not weak also.
2271      ??? We cannot use COMDAT linkage because there is no
2272      ABI support for this.  */
2273   DECL_EXTERNAL (new_node->decl) = 0;
2274   if (DECL_ONE_ONLY (old_decl))
2275     DECL_SECTION_NAME (new_node->decl) = NULL;
2276   DECL_COMDAT_GROUP (new_node->decl) = 0;
2277   TREE_PUBLIC (new_node->decl) = 0;
2278   DECL_COMDAT (new_node->decl) = 0;
2279   DECL_WEAK (new_node->decl) = 0;
2280   DECL_STATIC_CONSTRUCTOR (new_node->decl) = 0;
2281   DECL_STATIC_DESTRUCTOR (new_node->decl) = 0;
2282   new_node->clone.tree_map = tree_map;
2283   new_node->clone.args_to_skip = args_to_skip;
2284   FOR_EACH_VEC_ELT (ipa_replace_map_p, tree_map, i, map)
2285     {
2286       tree var = map->new_tree;
2287
2288       STRIP_NOPS (var);
2289       if (TREE_CODE (var) != ADDR_EXPR)
2290         continue;
2291       var = get_base_var (var);
2292       if (!var)
2293         continue;
2294
2295       /* Record references of the future statement initializing the constant
2296          argument.  */
2297       if (TREE_CODE (var) == FUNCTION_DECL)
2298         {
2299           struct cgraph_node *ref_node = cgraph_get_node (var);
2300           gcc_checking_assert (ref_node);
2301           ipa_record_reference (new_node, NULL, ref_node, NULL, IPA_REF_ADDR,
2302                                 NULL);
2303         }
2304       else if (TREE_CODE (var) == VAR_DECL)
2305         ipa_record_reference (new_node, NULL, NULL, varpool_node (var),
2306                               IPA_REF_ADDR, NULL);
2307     }
2308   if (!args_to_skip)
2309     new_node->clone.combined_args_to_skip = old_node->clone.combined_args_to_skip;
2310   else if (old_node->clone.combined_args_to_skip)
2311     {
2312       int newi = 0, oldi = 0;
2313       tree arg;
2314       bitmap new_args_to_skip = BITMAP_GGC_ALLOC ();
2315       struct cgraph_node *orig_node;
2316       for (orig_node = old_node; orig_node->clone_of; orig_node = orig_node->clone_of)
2317         ;
2318       for (arg = DECL_ARGUMENTS (orig_node->decl); arg; arg = DECL_CHAIN (arg), oldi++)
2319         {
2320           if (bitmap_bit_p (old_node->clone.combined_args_to_skip, oldi))
2321             {
2322               bitmap_set_bit (new_args_to_skip, oldi);
2323               continue;
2324             }
2325           if (bitmap_bit_p (args_to_skip, newi))
2326             bitmap_set_bit (new_args_to_skip, oldi);
2327           newi++;
2328         }
2329       new_node->clone.combined_args_to_skip = new_args_to_skip;
2330     }
2331   else
2332     new_node->clone.combined_args_to_skip = args_to_skip;
2333   new_node->local.externally_visible = 0;
2334   new_node->local.local = 1;
2335   new_node->lowered = true;
2336   new_node->reachable = true;
2337
2338   cgraph_call_node_duplication_hooks (old_node, new_node);
2339
2340
2341   return new_node;
2342 }
2343
2344 /* NODE is no longer nested function; update cgraph accordingly.  */
2345 void
2346 cgraph_unnest_node (struct cgraph_node *node)
2347 {
2348   struct cgraph_node **node2 = &node->origin->nested;
2349   gcc_assert (node->origin);
2350
2351   while (*node2 != node)
2352     node2 = &(*node2)->next_nested;
2353   *node2 = node->next_nested;
2354   node->origin = NULL;
2355 }
2356
2357 /* Return function availability.  See cgraph.h for description of individual
2358    return values.  */
2359 enum availability
2360 cgraph_function_body_availability (struct cgraph_node *node)
2361 {
2362   enum availability avail;
2363   gcc_assert (cgraph_function_flags_ready);
2364   if (!node->analyzed)
2365     avail = AVAIL_NOT_AVAILABLE;
2366   else if (node->local.local)
2367     avail = AVAIL_LOCAL;
2368   else if (!node->local.externally_visible)
2369     avail = AVAIL_AVAILABLE;
2370   /* Inline functions are safe to be analyzed even if their symbol can
2371      be overwritten at runtime.  It is not meaningful to enforce any sane
2372      behaviour on replacing inline function by different body.  */
2373   else if (DECL_DECLARED_INLINE_P (node->decl))
2374     avail = AVAIL_AVAILABLE;
2375
2376   /* If the function can be overwritten, return OVERWRITABLE.  Take
2377      care at least of two notable extensions - the COMDAT functions
2378      used to share template instantiations in C++ (this is symmetric
2379      to code cp_cannot_inline_tree_fn and probably shall be shared and
2380      the inlinability hooks completely eliminated).
2381
2382      ??? Does the C++ one definition rule allow us to always return
2383      AVAIL_AVAILABLE here?  That would be good reason to preserve this
2384      bit.  */
2385
2386   else if (decl_replaceable_p (node->decl) && !DECL_EXTERNAL (node->decl))
2387     avail = AVAIL_OVERWRITABLE;
2388   else avail = AVAIL_AVAILABLE;
2389
2390   return avail;
2391 }
2392
2393 /* Add the function FNDECL to the call graph.
2394    Unlike cgraph_finalize_function, this function is intended to be used
2395    by middle end and allows insertion of new function at arbitrary point
2396    of compilation.  The function can be either in high, low or SSA form
2397    GIMPLE.
2398
2399    The function is assumed to be reachable and have address taken (so no
2400    API breaking optimizations are performed on it).
2401
2402    Main work done by this function is to enqueue the function for later
2403    processing to avoid need the passes to be re-entrant.  */
2404
2405 void
2406 cgraph_add_new_function (tree fndecl, bool lowered)
2407 {
2408   struct cgraph_node *node;
2409   switch (cgraph_state)
2410     {
2411       case CGRAPH_STATE_CONSTRUCTION:
2412         /* Just enqueue function to be processed at nearest occurrence.  */
2413         node = cgraph_create_node (fndecl);
2414         node->next_needed = cgraph_new_nodes;
2415         if (lowered)
2416           node->lowered = true;
2417         cgraph_new_nodes = node;
2418         break;
2419
2420       case CGRAPH_STATE_IPA:
2421       case CGRAPH_STATE_IPA_SSA:
2422       case CGRAPH_STATE_EXPANSION:
2423         /* Bring the function into finalized state and enqueue for later
2424            analyzing and compilation.  */
2425         node = cgraph_get_create_node (fndecl);
2426         node->local.local = false;
2427         node->local.finalized = true;
2428         node->reachable = node->needed = true;
2429         if (!lowered && cgraph_state == CGRAPH_STATE_EXPANSION)
2430           {
2431             push_cfun (DECL_STRUCT_FUNCTION (fndecl));
2432             current_function_decl = fndecl;
2433             gimple_register_cfg_hooks ();
2434             tree_lowering_passes (fndecl);
2435             bitmap_obstack_initialize (NULL);
2436             if (!gimple_in_ssa_p (DECL_STRUCT_FUNCTION (fndecl)))
2437               execute_pass_list (pass_early_local_passes.pass.sub);
2438             bitmap_obstack_release (NULL);
2439             pop_cfun ();
2440             current_function_decl = NULL;
2441
2442             lowered = true;
2443           }
2444         if (lowered)
2445           node->lowered = true;
2446         node->next_needed = cgraph_new_nodes;
2447         cgraph_new_nodes = node;
2448         break;
2449
2450       case CGRAPH_STATE_FINISHED:
2451         /* At the very end of compilation we have to do all the work up
2452            to expansion.  */
2453         node = cgraph_create_node (fndecl);
2454         if (lowered)
2455           node->lowered = true;
2456         cgraph_analyze_function (node);
2457         push_cfun (DECL_STRUCT_FUNCTION (fndecl));
2458         current_function_decl = fndecl;
2459         gimple_register_cfg_hooks ();
2460         bitmap_obstack_initialize (NULL);
2461         if (!gimple_in_ssa_p (DECL_STRUCT_FUNCTION (fndecl)))
2462           execute_pass_list (pass_early_local_passes.pass.sub);
2463         bitmap_obstack_release (NULL);
2464         tree_rest_of_compilation (fndecl);
2465         pop_cfun ();
2466         current_function_decl = NULL;
2467         break;
2468     }
2469
2470   /* Set a personality if required and we already passed EH lowering.  */
2471   if (lowered
2472       && (function_needs_eh_personality (DECL_STRUCT_FUNCTION (fndecl))
2473           == eh_personality_lang))
2474     DECL_FUNCTION_PERSONALITY (fndecl) = lang_hooks.eh_personality ();
2475 }
2476
2477 /* Worker for cgraph_node_can_be_local_p.  */
2478 static bool
2479 cgraph_node_cannot_be_local_p_1 (struct cgraph_node *node,
2480                                  void *data ATTRIBUTE_UNUSED)
2481 {
2482   return !(!node->needed
2483            && ((DECL_COMDAT (node->decl) && !node->same_comdat_group)
2484                || !node->local.externally_visible));
2485 }
2486
2487 /* Return true if NODE can be made local for API change.
2488    Extern inline functions and C++ COMDAT functions can be made local
2489    at the expense of possible code size growth if function is used in multiple
2490    compilation units.  */
2491 bool
2492 cgraph_node_can_be_local_p (struct cgraph_node *node)
2493 {
2494   return (!node->address_taken
2495           && !cgraph_for_node_and_aliases (node,
2496                                            cgraph_node_cannot_be_local_p_1,
2497                                            NULL, true));
2498 }
2499
2500 /* Make DECL local.  FIXME: We shouldn't need to mess with rtl this early,
2501    but other code such as notice_global_symbol generates rtl.  */
2502 void
2503 cgraph_make_decl_local (tree decl)
2504 {
2505   rtx rtl, symbol;
2506
2507   if (TREE_CODE (decl) == VAR_DECL)
2508     DECL_COMMON (decl) = 0;
2509   else gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
2510
2511   if (DECL_ONE_ONLY (decl) || DECL_COMDAT (decl))
2512     {
2513       /* It is possible that we are linking against library defining same COMDAT
2514          function.  To avoid conflict we need to rename our local name of the
2515          function just in the case WHOPR partitioning decide to make it hidden
2516          to avoid cross partition references.  */
2517       if (flag_wpa)
2518         {
2519           const char *old_name;
2520
2521           old_name  = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2522           if (TREE_CODE (decl) == FUNCTION_DECL)
2523             {
2524               struct cgraph_node *node = cgraph_get_node (decl);
2525               change_decl_assembler_name (decl,
2526                                           clone_function_name (decl, "local"));
2527               if (node->local.lto_file_data)
2528                 lto_record_renamed_decl (node->local.lto_file_data,
2529                                          old_name,
2530                                          IDENTIFIER_POINTER
2531                                            (DECL_ASSEMBLER_NAME (decl)));
2532             }
2533           else if (TREE_CODE (decl) == VAR_DECL)
2534             {
2535               struct varpool_node *vnode = varpool_get_node (decl);
2536               /* change_decl_assembler_name will warn here on vtables because
2537                  C++ frontend still sets TREE_SYMBOL_REFERENCED on them.  */
2538               SET_DECL_ASSEMBLER_NAME (decl,
2539                                        clone_function_name (decl, "local"));
2540               if (vnode->lto_file_data)
2541                 lto_record_renamed_decl (vnode->lto_file_data,
2542                                          old_name,
2543                                          IDENTIFIER_POINTER
2544                                            (DECL_ASSEMBLER_NAME (decl)));
2545             }
2546         }
2547       DECL_SECTION_NAME (decl) = 0;
2548       DECL_COMDAT (decl) = 0;
2549     }
2550   DECL_COMDAT_GROUP (decl) = 0;
2551   DECL_WEAK (decl) = 0;
2552   DECL_EXTERNAL (decl) = 0;
2553   TREE_PUBLIC (decl) = 0;
2554   if (!DECL_RTL_SET_P (decl))
2555     return;
2556
2557   /* Update rtl flags.  */
2558   make_decl_rtl (decl);
2559
2560   rtl = DECL_RTL (decl);
2561   if (!MEM_P (rtl))
2562     return;
2563
2564   symbol = XEXP (rtl, 0);
2565   if (GET_CODE (symbol) != SYMBOL_REF)
2566     return;
2567
2568   SYMBOL_REF_WEAK (symbol) = DECL_WEAK (decl);
2569 }
2570
2571 /* Call calback on NODE, thunks and aliases asociated to NODE. 
2572    When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2573    skipped. */
2574
2575 bool
2576 cgraph_for_node_thunks_and_aliases (struct cgraph_node *node,
2577                                     bool (*callback) (struct cgraph_node *, void *),
2578                                     void *data,
2579                                     bool include_overwritable)
2580 {
2581   struct cgraph_edge *e;
2582   int i;
2583   struct ipa_ref *ref;
2584
2585   if (callback (node, data))
2586     return true;
2587   for (e = node->callers; e; e = e->next_caller)
2588     if (e->caller->thunk.thunk_p
2589         && (include_overwritable
2590             || cgraph_function_body_availability (e->caller) > AVAIL_OVERWRITABLE))
2591       if (cgraph_for_node_thunks_and_aliases (e->caller, callback, data,
2592                                               include_overwritable))
2593         return true;
2594   for (i = 0; ipa_ref_list_refering_iterate (&node->ref_list, i, ref); i++)
2595     if (ref->use == IPA_REF_ALIAS)
2596       {
2597         struct cgraph_node *alias = ipa_ref_refering_node (ref);
2598         if (include_overwritable
2599             || cgraph_function_body_availability (alias) > AVAIL_OVERWRITABLE)
2600           if (cgraph_for_node_thunks_and_aliases (alias, callback, data,
2601                                                   include_overwritable))
2602             return true;
2603       }
2604   return false;
2605 }
2606
2607 /* Call calback on NODE and aliases asociated to NODE. 
2608    When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2609    skipped. */
2610
2611 bool
2612 cgraph_for_node_and_aliases (struct cgraph_node *node,
2613                              bool (*callback) (struct cgraph_node *, void *),
2614                              void *data,
2615                              bool include_overwritable)
2616 {
2617   int i;
2618   struct ipa_ref *ref;
2619
2620   if (callback (node, data))
2621     return true;
2622   for (i = 0; ipa_ref_list_refering_iterate (&node->ref_list, i, ref); i++)
2623     if (ref->use == IPA_REF_ALIAS)
2624       {
2625         struct cgraph_node *alias = ipa_ref_refering_node (ref);
2626         if (include_overwritable
2627             || cgraph_function_body_availability (alias) > AVAIL_OVERWRITABLE)
2628           if (cgraph_for_node_and_aliases (alias, callback, data,
2629                                            include_overwritable))
2630             return true;
2631       }
2632   return false;
2633 }
2634
2635 /* Worker to bring NODE local.  */
2636
2637 static bool
2638 cgraph_make_node_local_1 (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
2639 {
2640   gcc_checking_assert (cgraph_node_can_be_local_p (node));
2641   if (DECL_COMDAT (node->decl) || DECL_EXTERNAL (node->decl))
2642     {
2643       cgraph_make_decl_local (node->decl);
2644
2645       node->local.externally_visible = false;
2646       node->local.local = true;
2647       node->resolution = LDPR_PREVAILING_DEF_IRONLY;
2648       gcc_assert (cgraph_function_body_availability (node) == AVAIL_LOCAL);
2649     }
2650   return false;
2651 }
2652
2653 /* Bring NODE local.  */
2654
2655 void
2656 cgraph_make_node_local (struct cgraph_node *node)
2657 {
2658   cgraph_for_node_thunks_and_aliases (node, cgraph_make_node_local_1,
2659                                       NULL, true);
2660 }
2661
2662 /* Worker to set nothrow flag.  */
2663
2664 static bool
2665 cgraph_set_nothrow_flag_1 (struct cgraph_node *node, void *data)
2666 {
2667   struct cgraph_edge *e;
2668
2669   TREE_NOTHROW (node->decl) = data != NULL;
2670
2671   if (data != NULL)
2672     for (e = node->callers; e; e = e->next_caller)
2673       e->can_throw_external = false;
2674   return false;
2675 }
2676
2677 /* Set TREE_NOTHROW on NODE's decl and on aliases of NODE
2678    if any to NOTHROW.  */
2679
2680 void
2681 cgraph_set_nothrow_flag (struct cgraph_node *node, bool nothrow)
2682 {
2683   cgraph_for_node_thunks_and_aliases (node, cgraph_set_nothrow_flag_1,
2684                                       (void *)(size_t)nothrow, false);
2685 }
2686
2687 /* Worker to set const flag.  */
2688
2689 static bool
2690 cgraph_set_const_flag_1 (struct cgraph_node *node, void *data)
2691 {
2692   /* Static constructors and destructors without a side effect can be
2693      optimized out.  */
2694   if (data && !((size_t)data & 2))
2695     {
2696       if (DECL_STATIC_CONSTRUCTOR (node->decl))
2697         DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2698       if (DECL_STATIC_DESTRUCTOR (node->decl))
2699         DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2700     }
2701   TREE_READONLY (node->decl) = data != NULL;
2702   DECL_LOOPING_CONST_OR_PURE_P (node->decl) = ((size_t)data & 2) != 0;
2703   return false;
2704 }
2705
2706 /* Set TREE_READONLY on NODE's decl and on aliases of NODE
2707    if any to READONLY.  */
2708
2709 void
2710 cgraph_set_const_flag (struct cgraph_node *node, bool readonly, bool looping)
2711 {
2712   cgraph_for_node_thunks_and_aliases (node, cgraph_set_const_flag_1,
2713                                       (void *)(size_t)(readonly + (int)looping * 2),
2714                                       false);
2715 }
2716
2717 /* Worker to set pure flag.  */
2718
2719 static bool
2720 cgraph_set_pure_flag_1 (struct cgraph_node *node, void *data)
2721 {
2722   /* Static pureructors and destructors without a side effect can be
2723      optimized out.  */
2724   if (data && !((size_t)data & 2))
2725     {
2726       if (DECL_STATIC_CONSTRUCTOR (node->decl))
2727         DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2728       if (DECL_STATIC_DESTRUCTOR (node->decl))
2729         DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2730     }
2731   DECL_PURE_P (node->decl) = data != NULL;
2732   DECL_LOOPING_CONST_OR_PURE_P (node->decl) = ((size_t)data & 2) != 0;
2733   return false;
2734 }
2735
2736 /* Set DECL_PURE_P on NODE's decl and on aliases of NODE
2737    if any to PURE.  */
2738
2739 void
2740 cgraph_set_pure_flag (struct cgraph_node *node, bool pure, bool looping)
2741 {
2742   cgraph_for_node_thunks_and_aliases (node, cgraph_set_pure_flag_1,
2743                                       (void *)(size_t)(pure + (int)looping * 2),
2744                                       false);
2745 }
2746
2747 /* Data used by cgraph_propagate_frequency.  */
2748
2749 struct cgraph_propagate_frequency_data
2750 {
2751   bool maybe_unlikely_executed;
2752   bool maybe_executed_once;
2753   bool only_called_at_startup;
2754   bool only_called_at_exit;
2755 };
2756
2757 /* Worker for cgraph_propagate_frequency_1.  */
2758
2759 static bool
2760 cgraph_propagate_frequency_1 (struct cgraph_node *node, void *data)
2761 {
2762   struct cgraph_propagate_frequency_data *d;
2763   struct cgraph_edge *edge;
2764
2765   d = (struct cgraph_propagate_frequency_data *)data;
2766   for (edge = node->callers;
2767        edge && (d->maybe_unlikely_executed || d->maybe_executed_once
2768                 || d->only_called_at_startup || d->only_called_at_exit);
2769        edge = edge->next_caller)
2770     {
2771       if (edge->caller != node)
2772         {
2773           d->only_called_at_startup &= edge->caller->only_called_at_startup;
2774           /* It makes sense to put main() together with the static constructors.
2775              It will be executed for sure, but rest of functions called from
2776              main are definitely not at startup only.  */
2777           if (MAIN_NAME_P (DECL_NAME (edge->caller->decl)))
2778             d->only_called_at_startup = 0;
2779           d->only_called_at_exit &= edge->caller->only_called_at_exit;
2780         }
2781       if (!edge->frequency)
2782         continue;
2783       switch (edge->caller->frequency)
2784         {
2785         case NODE_FREQUENCY_UNLIKELY_EXECUTED:
2786           break;
2787         case NODE_FREQUENCY_EXECUTED_ONCE:
2788           if (dump_file && (dump_flags & TDF_DETAILS))
2789             fprintf (dump_file, "  Called by %s that is executed once\n",
2790                      cgraph_node_name (edge->caller));
2791           d->maybe_unlikely_executed = false;
2792           if (inline_edge_summary (edge)->loop_depth)
2793             {
2794               d->maybe_executed_once = false;
2795               if (dump_file && (dump_flags & TDF_DETAILS))
2796                 fprintf (dump_file, "  Called in loop\n");
2797             }
2798           break;
2799         case NODE_FREQUENCY_HOT:
2800         case NODE_FREQUENCY_NORMAL:
2801           if (dump_file && (dump_flags & TDF_DETAILS))
2802             fprintf (dump_file, "  Called by %s that is normal or hot\n",
2803                      cgraph_node_name (edge->caller));
2804           d->maybe_unlikely_executed = false;
2805           d->maybe_executed_once = false;
2806           break;
2807         }
2808     }
2809   return edge != NULL;
2810 }
2811
2812 /* See if the frequency of NODE can be updated based on frequencies of its
2813    callers.  */
2814 bool
2815 cgraph_propagate_frequency (struct cgraph_node *node)
2816 {
2817   struct cgraph_propagate_frequency_data d = {true, true, true, true};
2818   bool changed = false;
2819
2820   if (!node->local.local)
2821     return false;
2822   gcc_assert (node->analyzed);
2823   if (dump_file && (dump_flags & TDF_DETAILS))
2824     fprintf (dump_file, "Processing frequency %s\n", cgraph_node_name (node));
2825
2826   cgraph_for_node_and_aliases (node, cgraph_propagate_frequency_1, &d, true);
2827
2828   if ((d.only_called_at_startup && !d.only_called_at_exit)
2829       && !node->only_called_at_startup)
2830     {
2831        node->only_called_at_startup = true;
2832        if (dump_file)
2833          fprintf (dump_file, "Node %s promoted to only called at startup.\n",
2834                   cgraph_node_name (node));
2835        changed = true;
2836     }
2837   if ((d.only_called_at_exit && !d.only_called_at_startup)
2838       && !node->only_called_at_exit)
2839     {
2840        node->only_called_at_exit = true;
2841        if (dump_file)
2842          fprintf (dump_file, "Node %s promoted to only called at exit.\n",
2843                   cgraph_node_name (node));
2844        changed = true;
2845     }
2846   /* These come either from profile or user hints; never update them.  */
2847   if (node->frequency == NODE_FREQUENCY_HOT
2848       || node->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED)
2849     return changed;
2850   if (d.maybe_unlikely_executed)
2851     {
2852       node->frequency = NODE_FREQUENCY_UNLIKELY_EXECUTED;
2853       if (dump_file)
2854         fprintf (dump_file, "Node %s promoted to unlikely executed.\n",
2855                  cgraph_node_name (node));
2856       changed = true;
2857     }
2858   else if (d.maybe_executed_once && node->frequency != NODE_FREQUENCY_EXECUTED_ONCE)
2859     {
2860       node->frequency = NODE_FREQUENCY_EXECUTED_ONCE;
2861       if (dump_file)
2862         fprintf (dump_file, "Node %s promoted to executed once.\n",
2863                  cgraph_node_name (node));
2864       changed = true;
2865     }
2866   return changed;
2867 }
2868
2869 /* Return true when NODE can not return or throw and thus
2870    it is safe to ignore its side effects for IPA analysis.  */
2871
2872 bool
2873 cgraph_node_cannot_return (struct cgraph_node *node)
2874 {
2875   int flags = flags_from_decl_or_type (node->decl);
2876   if (!flag_exceptions)
2877     return (flags & ECF_NORETURN) != 0;
2878   else
2879     return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2880              == (ECF_NORETURN | ECF_NOTHROW));
2881 }
2882
2883 /* Return true when call of E can not lead to return from caller
2884    and thus it is safe to ignore its side effects for IPA analysis
2885    when computing side effects of the caller.
2886    FIXME: We could actually mark all edges that have no reaching
2887    patch to EXIT_BLOCK_PTR or throw to get better results.  */
2888 bool
2889 cgraph_edge_cannot_lead_to_return (struct cgraph_edge *e)
2890 {
2891   if (cgraph_node_cannot_return (e->caller))
2892     return true;
2893   if (e->indirect_unknown_callee)
2894     {
2895       int flags = e->indirect_info->ecf_flags;
2896       if (!flag_exceptions)
2897         return (flags & ECF_NORETURN) != 0;
2898       else
2899         return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2900                  == (ECF_NORETURN | ECF_NOTHROW));
2901     }
2902   else
2903     return cgraph_node_cannot_return (e->callee);
2904 }
2905
2906 /* Return true when function NODE can be removed from callgraph
2907    if all direct calls are eliminated.  */
2908
2909 bool
2910 cgraph_can_remove_if_no_direct_calls_and_refs_p (struct cgraph_node *node)
2911 {
2912   gcc_assert (!node->global.inlined_to);
2913   /* Extern inlines can always go, we will use the external definition.  */
2914   if (DECL_EXTERNAL (node->decl))
2915     return true;
2916   /* When function is needed, we can not remove it.  */
2917   if (node->needed || node->reachable_from_other_partition)
2918     return false;
2919   if (DECL_STATIC_CONSTRUCTOR (node->decl)
2920       || DECL_STATIC_DESTRUCTOR (node->decl))
2921     return false;
2922   /* Only COMDAT functions can be removed if externally visible.  */
2923   if (node->local.externally_visible
2924       && (!DECL_COMDAT (node->decl)
2925           || cgraph_used_from_object_file_p (node)))
2926     return false;
2927   return true;
2928 }
2929
2930 /* Worker for cgraph_can_remove_if_no_direct_calls_p.  */
2931
2932 static bool
2933 nonremovable_p (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
2934 {
2935   return !cgraph_can_remove_if_no_direct_calls_and_refs_p (node);
2936 }
2937
2938 /* Return true when function NODE and its aliases can be removed from callgraph
2939    if all direct calls are eliminated.  */
2940
2941 bool
2942 cgraph_can_remove_if_no_direct_calls_p (struct cgraph_node *node)
2943 {
2944   /* Extern inlines can always go, we will use the external definition.  */
2945   if (DECL_EXTERNAL (node->decl))
2946     return true;
2947   if (node->address_taken)
2948     return false;
2949   return !cgraph_for_node_and_aliases (node, nonremovable_p, NULL, true);
2950 }
2951
2952 /* Worker for cgraph_can_remove_if_no_direct_calls_p.  */
2953
2954 static bool
2955 used_from_object_file_p (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
2956 {
2957   return cgraph_used_from_object_file_p (node);
2958 }
2959
2960 /* Return true when function NODE can be expected to be removed
2961    from program when direct calls in this compilation unit are removed.
2962
2963    As a special case COMDAT functions are
2964    cgraph_can_remove_if_no_direct_calls_p while the are not
2965    cgraph_only_called_directly_p (it is possible they are called from other
2966    unit)
2967
2968    This function behaves as cgraph_only_called_directly_p because eliminating
2969    all uses of COMDAT function does not make it necessarily disappear from
2970    the program unless we are compiling whole program or we do LTO.  In this
2971    case we know we win since dynamic linking will not really discard the
2972    linkonce section.  */
2973
2974 bool
2975 cgraph_will_be_removed_from_program_if_no_direct_calls (struct cgraph_node *node)
2976 {
2977   gcc_assert (!node->global.inlined_to);
2978   if (cgraph_for_node_and_aliases (node, used_from_object_file_p, NULL, true))
2979     return false;
2980   if (!in_lto_p && !flag_whole_program)
2981     return cgraph_only_called_directly_p (node);
2982   else
2983     {
2984        if (DECL_EXTERNAL (node->decl))
2985          return true;
2986       return cgraph_can_remove_if_no_direct_calls_p (node);
2987     }
2988 }
2989
2990 /* Return true when RESOLUTION indicate that linker will use
2991    the symbol from non-LTO object files.  */
2992
2993 bool
2994 resolution_used_from_other_file_p (enum ld_plugin_symbol_resolution resolution)
2995 {
2996   return (resolution == LDPR_PREVAILING_DEF
2997           || resolution == LDPR_PREEMPTED_REG
2998           || resolution == LDPR_RESOLVED_EXEC
2999           || resolution == LDPR_RESOLVED_DYN);
3000 }
3001
3002
3003 /* Return true when NODE is known to be used from other (non-LTO) object file.
3004    Known only when doing LTO via linker plugin.  */
3005
3006 bool
3007 cgraph_used_from_object_file_p (struct cgraph_node *node)
3008 {
3009   gcc_assert (!node->global.inlined_to);
3010   if (!TREE_PUBLIC (node->decl) || DECL_EXTERNAL (node->decl))
3011     return false;
3012   if (resolution_used_from_other_file_p (node->resolution))
3013     return true;
3014   return false;
3015 }
3016
3017 /* Worker for cgraph_only_called_directly_p.  */
3018
3019 static bool
3020 cgraph_not_only_called_directly_p_1 (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
3021 {
3022   return !cgraph_only_called_directly_or_aliased_p (node);
3023 }
3024
3025 /* Return true when function NODE and all its aliases are only called
3026    directly.
3027    i.e. it is not externally visible, address was not taken and
3028    it is not used in any other non-standard way.  */
3029
3030 bool
3031 cgraph_only_called_directly_p (struct cgraph_node *node)
3032 {
3033   gcc_assert (cgraph_function_or_thunk_node (node, NULL) == node);
3034   return !cgraph_for_node_and_aliases (node, cgraph_not_only_called_directly_p_1,
3035                                        NULL, true);
3036 }
3037
3038
3039 /* Collect all callers of NODE.  Worker for collect_callers_of_node.  */
3040
3041 static bool
3042 collect_callers_of_node_1 (struct cgraph_node *node, void *data)
3043 {
3044   VEC (cgraph_edge_p, heap) ** redirect_callers = (VEC (cgraph_edge_p, heap) **)data;
3045   struct cgraph_edge *cs;
3046   enum availability avail;
3047   cgraph_function_or_thunk_node (node, &avail);
3048
3049   if (avail > AVAIL_OVERWRITABLE)
3050     for (cs = node->callers; cs != NULL; cs = cs->next_caller)
3051       if (!cs->indirect_inlining_edge)
3052         VEC_safe_push (cgraph_edge_p, heap, *redirect_callers, cs);
3053   return false;
3054 }
3055
3056 /* Collect all callers of NODE and its aliases that are known to lead to NODE
3057    (i.e. are not overwritable).  */
3058
3059 VEC (cgraph_edge_p, heap) *
3060 collect_callers_of_node (struct cgraph_node *node)
3061 {
3062   VEC (cgraph_edge_p, heap) * redirect_callers = NULL;
3063   cgraph_for_node_and_aliases (node, collect_callers_of_node_1,
3064                                &redirect_callers, false);
3065   return redirect_callers;
3066 }
3067
3068 #include "gt-cgraph.h"