OSDN Git Service

2011-11-08 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.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 static 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   edge->call_stmt_cannot_inline_p =
992     (call_stmt ? gimple_call_cannot_inline_p (call_stmt) : false);
993   if (call_stmt && caller->call_site_hash)
994     cgraph_add_edge_to_call_site_hash (edge);
995
996   edge->indirect_info = NULL;
997   edge->indirect_inlining_edge = 0;
998
999   return edge;
1000 }
1001
1002 /* Create edge from CALLER to CALLEE in the cgraph.  */
1003
1004 struct cgraph_edge *
1005 cgraph_create_edge (struct cgraph_node *caller, struct cgraph_node *callee,
1006                     gimple call_stmt, gcov_type count, int freq)
1007 {
1008   struct cgraph_edge *edge = cgraph_create_edge_1 (caller, callee, call_stmt,
1009                                                    count, freq);
1010
1011   edge->indirect_unknown_callee = 0;
1012   initialize_inline_failed (edge);
1013
1014   edge->next_caller = callee->callers;
1015   if (callee->callers)
1016     callee->callers->prev_caller = edge;
1017   edge->next_callee = caller->callees;
1018   if (caller->callees)
1019     caller->callees->prev_callee = edge;
1020   caller->callees = edge;
1021   callee->callers = edge;
1022
1023   return edge;
1024 }
1025
1026 /* Allocate cgraph_indirect_call_info and set its fields to default values. */
1027
1028 struct cgraph_indirect_call_info *
1029 cgraph_allocate_init_indirect_info (void)
1030 {
1031   struct cgraph_indirect_call_info *ii;
1032
1033   ii = ggc_alloc_cleared_cgraph_indirect_call_info ();
1034   ii->param_index = -1;
1035   return ii;
1036 }
1037
1038 /* Create an indirect edge with a yet-undetermined callee where the call
1039    statement destination is a formal parameter of the caller with index
1040    PARAM_INDEX. */
1041
1042 struct cgraph_edge *
1043 cgraph_create_indirect_edge (struct cgraph_node *caller, gimple call_stmt,
1044                              int ecf_flags,
1045                              gcov_type count, int freq)
1046 {
1047   struct cgraph_edge *edge = cgraph_create_edge_1 (caller, NULL, call_stmt,
1048                                                    count, freq);
1049
1050   edge->indirect_unknown_callee = 1;
1051   initialize_inline_failed (edge);
1052
1053   edge->indirect_info = cgraph_allocate_init_indirect_info ();
1054   edge->indirect_info->ecf_flags = ecf_flags;
1055
1056   edge->next_callee = caller->indirect_calls;
1057   if (caller->indirect_calls)
1058     caller->indirect_calls->prev_callee = edge;
1059   caller->indirect_calls = edge;
1060
1061   return edge;
1062 }
1063
1064 /* Remove the edge E from the list of the callers of the callee.  */
1065
1066 static inline void
1067 cgraph_edge_remove_callee (struct cgraph_edge *e)
1068 {
1069   gcc_assert (!e->indirect_unknown_callee);
1070   if (e->prev_caller)
1071     e->prev_caller->next_caller = e->next_caller;
1072   if (e->next_caller)
1073     e->next_caller->prev_caller = e->prev_caller;
1074   if (!e->prev_caller)
1075     e->callee->callers = e->next_caller;
1076 }
1077
1078 /* Remove the edge E from the list of the callees of the caller.  */
1079
1080 static inline void
1081 cgraph_edge_remove_caller (struct cgraph_edge *e)
1082 {
1083   if (e->prev_callee)
1084     e->prev_callee->next_callee = e->next_callee;
1085   if (e->next_callee)
1086     e->next_callee->prev_callee = e->prev_callee;
1087   if (!e->prev_callee)
1088     {
1089       if (e->indirect_unknown_callee)
1090         e->caller->indirect_calls = e->next_callee;
1091       else
1092         e->caller->callees = e->next_callee;
1093     }
1094   if (e->caller->call_site_hash)
1095     htab_remove_elt_with_hash (e->caller->call_site_hash,
1096                                e->call_stmt,
1097                                htab_hash_pointer (e->call_stmt));
1098 }
1099
1100 /* Put the edge onto the free list.  */
1101
1102 static void
1103 cgraph_free_edge (struct cgraph_edge *e)
1104 {
1105   int uid = e->uid;
1106
1107   /* Clear out the edge so we do not dangle pointers.  */
1108   memset (e, 0, sizeof (*e));
1109   e->uid = uid;
1110   NEXT_FREE_EDGE (e) = free_edges;
1111   free_edges = e;
1112 }
1113
1114 /* Remove the edge E in the cgraph.  */
1115
1116 void
1117 cgraph_remove_edge (struct cgraph_edge *e)
1118 {
1119   /* Call all edge removal hooks.  */
1120   cgraph_call_edge_removal_hooks (e);
1121
1122   if (!e->indirect_unknown_callee)
1123     /* Remove from callers list of the callee.  */
1124     cgraph_edge_remove_callee (e);
1125
1126   /* Remove from callees list of the callers.  */
1127   cgraph_edge_remove_caller (e);
1128
1129   /* Put the edge onto the free list.  */
1130   cgraph_free_edge (e);
1131 }
1132
1133 /* Set callee of call graph edge E and add it to the corresponding set of
1134    callers. */
1135
1136 static void
1137 cgraph_set_edge_callee (struct cgraph_edge *e, struct cgraph_node *n)
1138 {
1139   e->prev_caller = NULL;
1140   if (n->callers)
1141     n->callers->prev_caller = e;
1142   e->next_caller = n->callers;
1143   n->callers = e;
1144   e->callee = n;
1145 }
1146
1147 /* Redirect callee of E to N.  The function does not update underlying
1148    call expression.  */
1149
1150 void
1151 cgraph_redirect_edge_callee (struct cgraph_edge *e, struct cgraph_node *n)
1152 {
1153   /* Remove from callers list of the current callee.  */
1154   cgraph_edge_remove_callee (e);
1155
1156   /* Insert to callers list of the new callee.  */
1157   cgraph_set_edge_callee (e, n);
1158 }
1159
1160 /* Make an indirect EDGE with an unknown callee an ordinary edge leading to
1161    CALLEE.  DELTA is an integer constant that is to be added to the this
1162    pointer (first parameter) to compensate for skipping a thunk adjustment.  */
1163
1164 void
1165 cgraph_make_edge_direct (struct cgraph_edge *edge, struct cgraph_node *callee)
1166 {
1167   edge->indirect_unknown_callee = 0;
1168
1169   /* Get the edge out of the indirect edge list. */
1170   if (edge->prev_callee)
1171     edge->prev_callee->next_callee = edge->next_callee;
1172   if (edge->next_callee)
1173     edge->next_callee->prev_callee = edge->prev_callee;
1174   if (!edge->prev_callee)
1175     edge->caller->indirect_calls = edge->next_callee;
1176
1177   /* Put it into the normal callee list */
1178   edge->prev_callee = NULL;
1179   edge->next_callee = edge->caller->callees;
1180   if (edge->caller->callees)
1181     edge->caller->callees->prev_callee = edge;
1182   edge->caller->callees = edge;
1183
1184   /* Insert to callers list of the new callee.  */
1185   cgraph_set_edge_callee (edge, callee);
1186
1187   if (edge->call_stmt
1188       && !gimple_check_call_matching_types (edge->call_stmt, callee->decl))
1189     {
1190       gimple_call_set_cannot_inline (edge->call_stmt, true);
1191       edge->call_stmt_cannot_inline_p = true;
1192     }
1193
1194   /* We need to re-determine the inlining status of the edge.  */
1195   initialize_inline_failed (edge);
1196 }
1197
1198
1199 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1200    OLD_STMT changed into NEW_STMT.  OLD_CALL is gimple_call_fndecl
1201    of OLD_STMT if it was previously call statement.
1202    If NEW_STMT is NULL, the call has been dropped without any
1203    replacement.  */
1204
1205 static void
1206 cgraph_update_edges_for_call_stmt_node (struct cgraph_node *node,
1207                                         gimple old_stmt, tree old_call,
1208                                         gimple new_stmt)
1209 {
1210   tree new_call = (new_stmt && is_gimple_call (new_stmt))
1211                   ? gimple_call_fndecl (new_stmt) : 0;
1212
1213   /* We are seeing indirect calls, then there is nothing to update.  */
1214   if (!new_call && !old_call)
1215     return;
1216   /* See if we turned indirect call into direct call or folded call to one builtin
1217      into different builtin.  */
1218   if (old_call != new_call)
1219     {
1220       struct cgraph_edge *e = cgraph_edge (node, old_stmt);
1221       struct cgraph_edge *ne = NULL;
1222       gcov_type count;
1223       int frequency;
1224
1225       if (e)
1226         {
1227           /* See if the edge is already there and has the correct callee.  It
1228              might be so because of indirect inlining has already updated
1229              it.  We also might've cloned and redirected the edge.  */
1230           if (new_call && e->callee)
1231             {
1232               struct cgraph_node *callee = e->callee;
1233               while (callee)
1234                 {
1235                   if (callee->decl == new_call
1236                       || callee->former_clone_of == new_call)
1237                     return;
1238                   callee = callee->clone_of;
1239                 }
1240             }
1241
1242           /* Otherwise remove edge and create new one; we can't simply redirect
1243              since function has changed, so inline plan and other information
1244              attached to edge is invalid.  */
1245           count = e->count;
1246           frequency = e->frequency;
1247           cgraph_remove_edge (e);
1248         }
1249       else if (new_call)
1250         {
1251           /* We are seeing new direct call; compute profile info based on BB.  */
1252           basic_block bb = gimple_bb (new_stmt);
1253           count = bb->count;
1254           frequency = compute_call_stmt_bb_frequency (current_function_decl,
1255                                                       bb);
1256         }
1257
1258       if (new_call)
1259         {
1260           ne = cgraph_create_edge (node, cgraph_get_create_node (new_call),
1261                                    new_stmt, count, frequency);
1262           gcc_assert (ne->inline_failed);
1263         }
1264     }
1265   /* We only updated the call stmt; update pointer in cgraph edge..  */
1266   else if (old_stmt != new_stmt)
1267     cgraph_set_call_stmt (cgraph_edge (node, old_stmt), new_stmt);
1268 }
1269
1270 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1271    OLD_STMT changed into NEW_STMT.  OLD_DECL is gimple_call_fndecl
1272    of OLD_STMT before it was updated (updating can happen inplace).  */
1273
1274 void
1275 cgraph_update_edges_for_call_stmt (gimple old_stmt, tree old_decl, gimple new_stmt)
1276 {
1277   struct cgraph_node *orig = cgraph_get_node (cfun->decl);
1278   struct cgraph_node *node;
1279
1280   gcc_checking_assert (orig);
1281   cgraph_update_edges_for_call_stmt_node (orig, old_stmt, old_decl, new_stmt);
1282   if (orig->clones)
1283     for (node = orig->clones; node != orig;)
1284       {
1285         cgraph_update_edges_for_call_stmt_node (node, old_stmt, old_decl, new_stmt);
1286         if (node->clones)
1287           node = node->clones;
1288         else if (node->next_sibling_clone)
1289           node = node->next_sibling_clone;
1290         else
1291           {
1292             while (node != orig && !node->next_sibling_clone)
1293               node = node->clone_of;
1294             if (node != orig)
1295               node = node->next_sibling_clone;
1296           }
1297       }
1298 }
1299
1300
1301 /* Remove all callees from the node.  */
1302
1303 void
1304 cgraph_node_remove_callees (struct cgraph_node *node)
1305 {
1306   struct cgraph_edge *e, *f;
1307
1308   /* It is sufficient to remove the edges from the lists of callers of
1309      the callees.  The callee list of the node can be zapped with one
1310      assignment.  */
1311   for (e = node->callees; e; e = f)
1312     {
1313       f = e->next_callee;
1314       cgraph_call_edge_removal_hooks (e);
1315       if (!e->indirect_unknown_callee)
1316         cgraph_edge_remove_callee (e);
1317       cgraph_free_edge (e);
1318     }
1319   for (e = node->indirect_calls; e; e = f)
1320     {
1321       f = e->next_callee;
1322       cgraph_call_edge_removal_hooks (e);
1323       if (!e->indirect_unknown_callee)
1324         cgraph_edge_remove_callee (e);
1325       cgraph_free_edge (e);
1326     }
1327   node->indirect_calls = NULL;
1328   node->callees = NULL;
1329   if (node->call_site_hash)
1330     {
1331       htab_delete (node->call_site_hash);
1332       node->call_site_hash = NULL;
1333     }
1334 }
1335
1336 /* Remove all callers from the node.  */
1337
1338 static void
1339 cgraph_node_remove_callers (struct cgraph_node *node)
1340 {
1341   struct cgraph_edge *e, *f;
1342
1343   /* It is sufficient to remove the edges from the lists of callees of
1344      the callers.  The caller list of the node can be zapped with one
1345      assignment.  */
1346   for (e = node->callers; e; e = f)
1347     {
1348       f = e->next_caller;
1349       cgraph_call_edge_removal_hooks (e);
1350       cgraph_edge_remove_caller (e);
1351       cgraph_free_edge (e);
1352     }
1353   node->callers = NULL;
1354 }
1355
1356 /* Release memory used to represent body of function NODE.  */
1357
1358 void
1359 cgraph_release_function_body (struct cgraph_node *node)
1360 {
1361   if (DECL_STRUCT_FUNCTION (node->decl))
1362     {
1363       tree old_decl = current_function_decl;
1364       push_cfun (DECL_STRUCT_FUNCTION (node->decl));
1365       if (cfun->gimple_df)
1366         {
1367           current_function_decl = node->decl;
1368           delete_tree_ssa ();
1369           delete_tree_cfg_annotations ();
1370           cfun->eh = NULL;
1371           current_function_decl = old_decl;
1372         }
1373       if (cfun->cfg)
1374         {
1375           gcc_assert (dom_computed[0] == DOM_NONE);
1376           gcc_assert (dom_computed[1] == DOM_NONE);
1377           clear_edges ();
1378         }
1379       if (cfun->value_histograms)
1380         free_histograms ();
1381       gcc_assert (!current_loops);
1382       pop_cfun();
1383       gimple_set_body (node->decl, NULL);
1384       VEC_free (ipa_opt_pass, heap,
1385                 node->ipa_transforms_to_apply);
1386       /* Struct function hangs a lot of data that would leak if we didn't
1387          removed all pointers to it.   */
1388       ggc_free (DECL_STRUCT_FUNCTION (node->decl));
1389       DECL_STRUCT_FUNCTION (node->decl) = NULL;
1390     }
1391   DECL_SAVED_TREE (node->decl) = NULL;
1392   /* If the node is abstract and needed, then do not clear DECL_INITIAL
1393      of its associated function function declaration because it's
1394      needed to emit debug info later.  */
1395   if (!node->abstract_and_needed)
1396     DECL_INITIAL (node->decl) = error_mark_node;
1397 }
1398
1399 /* Remove the node from cgraph.  */
1400
1401 void
1402 cgraph_remove_node (struct cgraph_node *node)
1403 {
1404   void **slot;
1405   bool kill_body = false;
1406   struct cgraph_node *n;
1407   int uid = node->uid;
1408
1409   cgraph_call_node_removal_hooks (node);
1410   cgraph_node_remove_callers (node);
1411   cgraph_node_remove_callees (node);
1412   ipa_remove_all_references (&node->ref_list);
1413   ipa_remove_all_refering (&node->ref_list);
1414   VEC_free (ipa_opt_pass, heap,
1415             node->ipa_transforms_to_apply);
1416
1417   /* Incremental inlining access removed nodes stored in the postorder list.
1418      */
1419   node->needed = node->reachable = false;
1420   for (n = node->nested; n; n = n->next_nested)
1421     n->origin = NULL;
1422   node->nested = NULL;
1423   if (node->origin)
1424     {
1425       struct cgraph_node **node2 = &node->origin->nested;
1426
1427       while (*node2 != node)
1428         node2 = &(*node2)->next_nested;
1429       *node2 = node->next_nested;
1430     }
1431   if (node->previous)
1432     node->previous->next = node->next;
1433   else
1434     cgraph_nodes = node->next;
1435   if (node->next)
1436     node->next->previous = node->previous;
1437   node->next = NULL;
1438   node->previous = NULL;
1439   slot = htab_find_slot (cgraph_hash, node, NO_INSERT);
1440   if (*slot == node)
1441     {
1442       struct cgraph_node *next_inline_clone;
1443
1444       for (next_inline_clone = node->clones;
1445            next_inline_clone && next_inline_clone->decl != node->decl;
1446            next_inline_clone = next_inline_clone->next_sibling_clone)
1447         ;
1448
1449       /* If there is inline clone of the node being removed, we need
1450          to put it into the position of removed node and reorganize all
1451          other clones to be based on it.  */
1452       if (next_inline_clone)
1453         {
1454           struct cgraph_node *n;
1455           struct cgraph_node *new_clones;
1456
1457           *slot = next_inline_clone;
1458
1459           /* Unlink inline clone from the list of clones of removed node.  */
1460           if (next_inline_clone->next_sibling_clone)
1461             next_inline_clone->next_sibling_clone->prev_sibling_clone
1462               = next_inline_clone->prev_sibling_clone;
1463           if (next_inline_clone->prev_sibling_clone)
1464             {
1465               gcc_assert (node->clones != next_inline_clone);
1466               next_inline_clone->prev_sibling_clone->next_sibling_clone
1467                 = next_inline_clone->next_sibling_clone;
1468             }
1469           else
1470             {
1471               gcc_assert (node->clones == next_inline_clone);
1472               node->clones = next_inline_clone->next_sibling_clone;
1473             }
1474
1475           new_clones = node->clones;
1476           node->clones = NULL;
1477
1478           /* Copy clone info.  */
1479           next_inline_clone->clone = node->clone;
1480
1481           /* Now place it into clone tree at same level at NODE.  */
1482           next_inline_clone->clone_of = node->clone_of;
1483           next_inline_clone->prev_sibling_clone = NULL;
1484           next_inline_clone->next_sibling_clone = NULL;
1485           if (node->clone_of)
1486             {
1487               if (node->clone_of->clones)
1488                 node->clone_of->clones->prev_sibling_clone = next_inline_clone;
1489               next_inline_clone->next_sibling_clone = node->clone_of->clones;
1490               node->clone_of->clones = next_inline_clone;
1491             }
1492
1493           /* Merge the clone list.  */
1494           if (new_clones)
1495             {
1496               if (!next_inline_clone->clones)
1497                 next_inline_clone->clones = new_clones;
1498               else
1499                 {
1500                   n = next_inline_clone->clones;
1501                   while (n->next_sibling_clone)
1502                     n =  n->next_sibling_clone;
1503                   n->next_sibling_clone = new_clones;
1504                   new_clones->prev_sibling_clone = n;
1505                 }
1506             }
1507
1508           /* Update clone_of pointers.  */
1509           n = new_clones;
1510           while (n)
1511             {
1512               n->clone_of = next_inline_clone;
1513               n = n->next_sibling_clone;
1514             }
1515         }
1516       else
1517         {
1518           htab_clear_slot (cgraph_hash, slot);
1519           kill_body = true;
1520         }
1521
1522     }
1523   if (node->prev_sibling_clone)
1524     node->prev_sibling_clone->next_sibling_clone = node->next_sibling_clone;
1525   else if (node->clone_of)
1526     node->clone_of->clones = node->next_sibling_clone;
1527   if (node->next_sibling_clone)
1528     node->next_sibling_clone->prev_sibling_clone = node->prev_sibling_clone;
1529   if (node->clones)
1530     {
1531       struct cgraph_node *n, *next;
1532
1533       if (node->clone_of)
1534         {
1535           for (n = node->clones; n->next_sibling_clone; n = n->next_sibling_clone)
1536             n->clone_of = node->clone_of;
1537           n->clone_of = node->clone_of;
1538           n->next_sibling_clone = node->clone_of->clones;
1539           if (node->clone_of->clones)
1540             node->clone_of->clones->prev_sibling_clone = n;
1541           node->clone_of->clones = node->clones;
1542         }
1543       else
1544         {
1545           /* We are removing node with clones.  this makes clones inconsistent,
1546              but assume they will be removed subsequently and just keep clone
1547              tree intact.  This can happen in unreachable function removal since
1548              we remove unreachable functions in random order, not by bottom-up
1549              walk of clone trees.  */
1550           for (n = node->clones; n; n = next)
1551             {
1552                next = n->next_sibling_clone;
1553                n->next_sibling_clone = NULL;
1554                n->prev_sibling_clone = NULL;
1555                n->clone_of = NULL;
1556             }
1557         }
1558     }
1559
1560   if (node->same_comdat_group)
1561     {
1562       struct cgraph_node *prev;
1563       for (prev = node->same_comdat_group;
1564            prev->same_comdat_group != node;
1565            prev = prev->same_comdat_group)
1566         ;
1567       if (node->same_comdat_group == prev)
1568         prev->same_comdat_group = NULL;
1569       else
1570         prev->same_comdat_group = node->same_comdat_group;
1571       node->same_comdat_group = NULL;
1572     }
1573
1574   /* While all the clones are removed after being proceeded, the function
1575      itself is kept in the cgraph even after it is compiled.  Check whether
1576      we are done with this body and reclaim it proactively if this is the case.
1577      */
1578   if (!kill_body && *slot)
1579     {
1580       struct cgraph_node *n = (struct cgraph_node *) *slot;
1581       if (!n->clones && !n->clone_of && !n->global.inlined_to
1582           && (cgraph_global_info_ready
1583               && (TREE_ASM_WRITTEN (n->decl) || DECL_EXTERNAL (n->decl)
1584                   || n->in_other_partition)))
1585         kill_body = true;
1586     }
1587   if (assembler_name_hash)
1588     {
1589       tree name = DECL_ASSEMBLER_NAME (node->decl);
1590       slot = htab_find_slot_with_hash (assembler_name_hash, name,
1591                                        decl_assembler_name_hash (name),
1592                                        NO_INSERT);
1593       /* Inline clones are not hashed.  */
1594       if (slot && *slot == node)
1595         htab_clear_slot (assembler_name_hash, slot);
1596     }
1597
1598   if (kill_body)
1599     cgraph_release_function_body (node);
1600   node->decl = NULL;
1601   if (node->call_site_hash)
1602     {
1603       htab_delete (node->call_site_hash);
1604       node->call_site_hash = NULL;
1605     }
1606   cgraph_n_nodes--;
1607
1608   /* Clear out the node to NULL all pointers and add the node to the free
1609      list.  */
1610   memset (node, 0, sizeof(*node));
1611   node->uid = uid;
1612   NEXT_FREE_NODE (node) = free_nodes;
1613   free_nodes = node;
1614 }
1615
1616 /* Add NEW_ to the same comdat group that OLD is in.  */
1617
1618 void
1619 cgraph_add_to_same_comdat_group (struct cgraph_node *new_,
1620                                  struct cgraph_node *old)
1621 {
1622   gcc_assert (DECL_ONE_ONLY (old->decl));
1623   gcc_assert (!new_->same_comdat_group);
1624   gcc_assert (new_ != old);
1625
1626   DECL_COMDAT_GROUP (new_->decl) = DECL_COMDAT_GROUP (old->decl);
1627   new_->same_comdat_group = old;
1628   if (!old->same_comdat_group)
1629     old->same_comdat_group = new_;
1630   else
1631     {
1632       struct cgraph_node *n;
1633       for (n = old->same_comdat_group;
1634            n->same_comdat_group != old;
1635            n = n->same_comdat_group)
1636         ;
1637       n->same_comdat_group = new_;
1638     }
1639 }
1640
1641 /* Remove the node from cgraph.  */
1642
1643 void
1644 cgraph_remove_node_and_inline_clones (struct cgraph_node *node)
1645 {
1646   struct cgraph_edge *e, *next;
1647   for (e = node->callees; e; e = next)
1648     {
1649       next = e->next_callee;
1650       if (!e->inline_failed)
1651         cgraph_remove_node_and_inline_clones (e->callee);
1652     }
1653   cgraph_remove_node (node);
1654 }
1655
1656 /* Notify finalize_compilation_unit that given node is reachable.  */
1657
1658 void
1659 cgraph_mark_reachable_node (struct cgraph_node *node)
1660 {
1661   if (!node->reachable && node->local.finalized)
1662     {
1663       if (cgraph_global_info_ready)
1664         {
1665           /* Verify that function does not appear to be needed out of blue
1666              during the optimization process.  This can happen for extern
1667              inlines when bodies was removed after inlining.  */
1668           gcc_assert ((node->analyzed || node->in_other_partition
1669                        || DECL_EXTERNAL (node->decl)));
1670         }
1671       else
1672         notice_global_symbol (node->decl);
1673       node->reachable = 1;
1674
1675       node->next_needed = cgraph_nodes_queue;
1676       cgraph_nodes_queue = node;
1677     }
1678 }
1679
1680 /* Likewise indicate that a node is needed, i.e. reachable via some
1681    external means.  */
1682
1683 void
1684 cgraph_mark_needed_node (struct cgraph_node *node)
1685 {
1686   node->needed = 1;
1687   gcc_assert (!node->global.inlined_to);
1688   cgraph_mark_reachable_node (node);
1689 }
1690
1691 /* Likewise indicate that a node is having address taken.  */
1692
1693 void
1694 cgraph_mark_address_taken_node (struct cgraph_node *node)
1695 {
1696   gcc_assert (!node->global.inlined_to);
1697   cgraph_mark_reachable_node (node);
1698   /* FIXME: address_taken flag is used both as a shortcut for testing whether
1699      IPA_REF_ADDR reference exists (and thus it should be set on node
1700      representing alias we take address of) and as a test whether address
1701      of the object was taken (and thus it should be set on node alias is
1702      referring to).  We should remove the first use and the remove the
1703      following set.  */
1704   node->address_taken = 1;
1705   node = cgraph_function_or_thunk_node (node, NULL);
1706   node->address_taken = 1;
1707 }
1708
1709 /* Return local info for the compiled function.  */
1710
1711 struct cgraph_local_info *
1712 cgraph_local_info (tree decl)
1713 {
1714   struct cgraph_node *node;
1715
1716   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1717   node = cgraph_get_node (decl);
1718   if (!node)
1719     return NULL;
1720   return &node->local;
1721 }
1722
1723 /* Return local info for the compiled function.  */
1724
1725 struct cgraph_global_info *
1726 cgraph_global_info (tree decl)
1727 {
1728   struct cgraph_node *node;
1729
1730   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL && cgraph_global_info_ready);
1731   node = cgraph_get_node (decl);
1732   if (!node)
1733     return NULL;
1734   return &node->global;
1735 }
1736
1737 /* Return local info for the compiled function.  */
1738
1739 struct cgraph_rtl_info *
1740 cgraph_rtl_info (tree decl)
1741 {
1742   struct cgraph_node *node;
1743
1744   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1745   node = cgraph_get_node (decl);
1746   if (!node
1747       || (decl != current_function_decl
1748           && !TREE_ASM_WRITTEN (node->decl)))
1749     return NULL;
1750   return &node->rtl;
1751 }
1752
1753 /* Return a string describing the failure REASON.  */
1754
1755 const char*
1756 cgraph_inline_failed_string (cgraph_inline_failed_t reason)
1757 {
1758 #undef DEFCIFCODE
1759 #define DEFCIFCODE(code, string)        string,
1760
1761   static const char *cif_string_table[CIF_N_REASONS] = {
1762 #include "cif-code.def"
1763   };
1764
1765   /* Signedness of an enum type is implementation defined, so cast it
1766      to unsigned before testing. */
1767   gcc_assert ((unsigned) reason < CIF_N_REASONS);
1768   return cif_string_table[reason];
1769 }
1770
1771 /* Return name of the node used in debug output.  */
1772 const char *
1773 cgraph_node_name (struct cgraph_node *node)
1774 {
1775   return lang_hooks.decl_printable_name (node->decl, 2);
1776 }
1777
1778 /* Names used to print out the availability enum.  */
1779 const char * const cgraph_availability_names[] =
1780   {"unset", "not_available", "overwritable", "available", "local"};
1781
1782
1783 /* Dump call graph node NODE to file F.  */
1784
1785 void
1786 dump_cgraph_node (FILE *f, struct cgraph_node *node)
1787 {
1788   struct cgraph_edge *edge;
1789   int indirect_calls_count = 0;
1790
1791   fprintf (f, "%s/%i", cgraph_node_name (node), node->uid);
1792   dump_addr (f, " @", (void *)node);
1793   if (DECL_ASSEMBLER_NAME_SET_P (node->decl))
1794     fprintf (f, " (asm: %s)", IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (node->decl)));
1795   if (node->global.inlined_to)
1796     fprintf (f, " (inline copy in %s/%i)",
1797              cgraph_node_name (node->global.inlined_to),
1798              node->global.inlined_to->uid);
1799   if (node->same_comdat_group)
1800     fprintf (f, " (same comdat group as %s/%i)",
1801              cgraph_node_name (node->same_comdat_group),
1802              node->same_comdat_group->uid);
1803   if (node->clone_of)
1804     fprintf (f, " (clone of %s/%i)",
1805              cgraph_node_name (node->clone_of),
1806              node->clone_of->uid);
1807   if (cgraph_function_flags_ready)
1808     fprintf (f, " availability:%s",
1809              cgraph_availability_names [cgraph_function_body_availability (node)]);
1810   if (node->analyzed)
1811     fprintf (f, " analyzed");
1812   if (node->in_other_partition)
1813     fprintf (f, " in_other_partition");
1814   if (node->count)
1815     fprintf (f, " executed "HOST_WIDEST_INT_PRINT_DEC"x",
1816              (HOST_WIDEST_INT)node->count);
1817   if (node->origin)
1818     fprintf (f, " nested in: %s", cgraph_node_name (node->origin));
1819   if (node->needed)
1820     fprintf (f, " needed");
1821   if (node->address_taken)
1822     fprintf (f, " address_taken");
1823   else if (node->reachable)
1824     fprintf (f, " reachable");
1825   else if (node->reachable_from_other_partition)
1826     fprintf (f, " reachable_from_other_partition");
1827   if (gimple_has_body_p (node->decl))
1828     fprintf (f, " body");
1829   if (node->process)
1830     fprintf (f, " process");
1831   if (node->local.local)
1832     fprintf (f, " local");
1833   if (node->local.externally_visible)
1834     fprintf (f, " externally_visible");
1835   if (node->resolution != LDPR_UNKNOWN)
1836     fprintf (f, " %s",
1837              ld_plugin_symbol_resolution_names[(int)node->resolution]);
1838   if (node->local.finalized)
1839     fprintf (f, " finalized");
1840   if (node->local.redefined_extern_inline)
1841     fprintf (f, " redefined_extern_inline");
1842   if (TREE_ASM_WRITTEN (node->decl))
1843     fprintf (f, " asm_written");
1844   if (node->only_called_at_startup)
1845     fprintf (f, " only_called_at_startup");
1846   if (node->only_called_at_exit)
1847     fprintf (f, " only_called_at_exit");
1848   else if (node->alias)
1849     fprintf (f, " alias");
1850   if (node->tm_clone)
1851     fprintf (f, " tm_clone");
1852
1853   fprintf (f, "\n");
1854
1855   if (node->thunk.thunk_p)
1856     {
1857       fprintf (f, "  thunk of %s (asm: %s) fixed offset %i virtual value %i has "
1858                "virtual offset %i)\n",
1859                lang_hooks.decl_printable_name (node->thunk.alias, 2),
1860                IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (node->thunk.alias)),
1861                (int)node->thunk.fixed_offset,
1862                (int)node->thunk.virtual_value,
1863                (int)node->thunk.virtual_offset_p);
1864     }
1865   if (node->alias && node->thunk.alias)
1866     {
1867       fprintf (f, "  alias of %s",
1868                lang_hooks.decl_printable_name (node->thunk.alias, 2));
1869       if (DECL_ASSEMBLER_NAME_SET_P (node->thunk.alias))
1870         fprintf (f, " (asm: %s)",
1871                  IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (node->thunk.alias)));
1872       fprintf (f, "\n");
1873     }
1874   
1875   fprintf (f, "  called by: ");
1876
1877   for (edge = node->callers; edge; edge = edge->next_caller)
1878     {
1879       fprintf (f, "%s/%i ", cgraph_node_name (edge->caller),
1880                edge->caller->uid);
1881       if (edge->count)
1882         fprintf (f, "("HOST_WIDEST_INT_PRINT_DEC"x) ",
1883                  (HOST_WIDEST_INT)edge->count);
1884       if (edge->frequency)
1885         fprintf (f, "(%.2f per call) ",
1886                  edge->frequency / (double)CGRAPH_FREQ_BASE);
1887       if (!edge->inline_failed)
1888         fprintf(f, "(inlined) ");
1889       if (edge->indirect_inlining_edge)
1890         fprintf(f, "(indirect_inlining) ");
1891       if (edge->can_throw_external)
1892         fprintf(f, "(can throw external) ");
1893     }
1894
1895   fprintf (f, "\n  calls: ");
1896   for (edge = node->callees; edge; edge = edge->next_callee)
1897     {
1898       fprintf (f, "%s/%i ", cgraph_node_name (edge->callee),
1899                edge->callee->uid);
1900       if (!edge->inline_failed)
1901         fprintf(f, "(inlined) ");
1902       if (edge->indirect_inlining_edge)
1903         fprintf(f, "(indirect_inlining) ");
1904       if (edge->count)
1905         fprintf (f, "("HOST_WIDEST_INT_PRINT_DEC"x) ",
1906                  (HOST_WIDEST_INT)edge->count);
1907       if (edge->frequency)
1908         fprintf (f, "(%.2f per call) ",
1909                  edge->frequency / (double)CGRAPH_FREQ_BASE);
1910       if (edge->can_throw_external)
1911         fprintf(f, "(can throw external) ");
1912     }
1913   fprintf (f, "\n");
1914   fprintf (f, "  References: ");
1915   ipa_dump_references (f, &node->ref_list);
1916   fprintf (f, "  Refering this function: ");
1917   ipa_dump_refering (f, &node->ref_list);
1918
1919   for (edge = node->indirect_calls; edge; edge = edge->next_callee)
1920     indirect_calls_count++;
1921   if (indirect_calls_count)
1922     fprintf (f, "  has %i outgoing edges for indirect calls.\n",
1923              indirect_calls_count);
1924 }
1925
1926
1927 /* Dump call graph node NODE to stderr.  */
1928
1929 DEBUG_FUNCTION void
1930 debug_cgraph_node (struct cgraph_node *node)
1931 {
1932   dump_cgraph_node (stderr, node);
1933 }
1934
1935
1936 /* Dump the callgraph to file F.  */
1937
1938 void
1939 dump_cgraph (FILE *f)
1940 {
1941   struct cgraph_node *node;
1942
1943   fprintf (f, "callgraph:\n\n");
1944   for (node = cgraph_nodes; node; node = node->next)
1945     dump_cgraph_node (f, node);
1946 }
1947
1948
1949 /* Dump the call graph to stderr.  */
1950
1951 DEBUG_FUNCTION void
1952 debug_cgraph (void)
1953 {
1954   dump_cgraph (stderr);
1955 }
1956
1957
1958 /* Set the DECL_ASSEMBLER_NAME and update cgraph hashtables.  */
1959
1960 void
1961 change_decl_assembler_name (tree decl, tree name)
1962 {
1963   struct cgraph_node *node;
1964   void **slot;
1965   if (!DECL_ASSEMBLER_NAME_SET_P (decl))
1966     SET_DECL_ASSEMBLER_NAME (decl, name);
1967   else
1968     {
1969       if (name == DECL_ASSEMBLER_NAME (decl))
1970         return;
1971
1972       if (assembler_name_hash
1973           && TREE_CODE (decl) == FUNCTION_DECL
1974           && (node = cgraph_get_node (decl)) != NULL)
1975         {
1976           tree old_name = DECL_ASSEMBLER_NAME (decl);
1977           slot = htab_find_slot_with_hash (assembler_name_hash, old_name,
1978                                            decl_assembler_name_hash (old_name),
1979                                            NO_INSERT);
1980           /* Inline clones are not hashed.  */
1981           if (slot && *slot == node)
1982             htab_clear_slot (assembler_name_hash, slot);
1983         }
1984       if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))
1985           && DECL_RTL_SET_P (decl))
1986         warning (0, "%D renamed after being referenced in assembly", decl);
1987
1988       SET_DECL_ASSEMBLER_NAME (decl, name);
1989     }
1990   if (assembler_name_hash
1991       && TREE_CODE (decl) == FUNCTION_DECL
1992       && (node = cgraph_get_node (decl)) != NULL)
1993     {
1994       slot = htab_find_slot_with_hash (assembler_name_hash, name,
1995                                        decl_assembler_name_hash (name),
1996                                        INSERT);
1997       gcc_assert (!*slot);
1998       *slot = node;
1999     }
2000 }
2001
2002 /* Add a top-level asm statement to the list.  */
2003
2004 struct cgraph_asm_node *
2005 cgraph_add_asm_node (tree asm_str)
2006 {
2007   struct cgraph_asm_node *node;
2008
2009   node = ggc_alloc_cleared_cgraph_asm_node ();
2010   node->asm_str = asm_str;
2011   node->order = cgraph_order++;
2012   node->next = NULL;
2013   if (cgraph_asm_nodes == NULL)
2014     cgraph_asm_nodes = node;
2015   else
2016     cgraph_asm_last_node->next = node;
2017   cgraph_asm_last_node = node;
2018   return node;
2019 }
2020
2021 /* Return true when the DECL can possibly be inlined.  */
2022 bool
2023 cgraph_function_possibly_inlined_p (tree decl)
2024 {
2025   if (!cgraph_global_info_ready)
2026     return !DECL_UNINLINABLE (decl);
2027   return DECL_POSSIBLY_INLINED (decl);
2028 }
2029
2030 /* Create clone of E in the node N represented by CALL_EXPR the callgraph.  */
2031 struct cgraph_edge *
2032 cgraph_clone_edge (struct cgraph_edge *e, struct cgraph_node *n,
2033                    gimple call_stmt, unsigned stmt_uid, gcov_type count_scale,
2034                    int freq_scale, bool update_original)
2035 {
2036   struct cgraph_edge *new_edge;
2037   gcov_type count = e->count * count_scale / REG_BR_PROB_BASE;
2038   gcov_type freq;
2039
2040   /* We do not want to ignore loop nest after frequency drops to 0.  */
2041   if (!freq_scale)
2042     freq_scale = 1;
2043   freq = e->frequency * (gcov_type) freq_scale / CGRAPH_FREQ_BASE;
2044   if (freq > CGRAPH_FREQ_MAX)
2045     freq = CGRAPH_FREQ_MAX;
2046
2047   if (e->indirect_unknown_callee)
2048     {
2049       tree decl;
2050
2051       if (call_stmt && (decl = gimple_call_fndecl (call_stmt)))
2052         {
2053           struct cgraph_node *callee = cgraph_get_node (decl);
2054           gcc_checking_assert (callee);
2055           new_edge = cgraph_create_edge (n, callee, call_stmt, count, freq);
2056         }
2057       else
2058         {
2059           new_edge = cgraph_create_indirect_edge (n, call_stmt,
2060                                                   e->indirect_info->ecf_flags,
2061                                                   count, freq);
2062           *new_edge->indirect_info = *e->indirect_info;
2063         }
2064     }
2065   else
2066     {
2067       new_edge = cgraph_create_edge (n, e->callee, call_stmt, count, freq);
2068       if (e->indirect_info)
2069         {
2070           new_edge->indirect_info
2071             = ggc_alloc_cleared_cgraph_indirect_call_info ();
2072           *new_edge->indirect_info = *e->indirect_info;
2073         }
2074     }
2075
2076   new_edge->inline_failed = e->inline_failed;
2077   new_edge->indirect_inlining_edge = e->indirect_inlining_edge;
2078   new_edge->lto_stmt_uid = stmt_uid;
2079   /* Clone flags that depend on call_stmt availability manually.  */
2080   new_edge->can_throw_external = e->can_throw_external;
2081   new_edge->call_stmt_cannot_inline_p = e->call_stmt_cannot_inline_p;
2082   if (update_original)
2083     {
2084       e->count -= new_edge->count;
2085       if (e->count < 0)
2086         e->count = 0;
2087     }
2088   cgraph_call_edge_duplication_hooks (e, new_edge);
2089   return new_edge;
2090 }
2091
2092
2093 /* Create node representing clone of N executed COUNT times.  Decrease
2094    the execution counts from original node too.
2095    The new clone will have decl set to DECL that may or may not be the same
2096    as decl of N.
2097
2098    When UPDATE_ORIGINAL is true, the counts are subtracted from the original
2099    function's profile to reflect the fact that part of execution is handled
2100    by node.  
2101    When CALL_DUPLICATOIN_HOOK is true, the ipa passes are acknowledged about
2102    the new clone. Otherwise the caller is responsible for doing so later.  */
2103
2104 struct cgraph_node *
2105 cgraph_clone_node (struct cgraph_node *n, tree decl, gcov_type count, int freq,
2106                    bool update_original,
2107                    VEC(cgraph_edge_p,heap) *redirect_callers,
2108                    bool call_duplication_hook)
2109 {
2110   struct cgraph_node *new_node = cgraph_create_node_1 ();
2111   struct cgraph_edge *e;
2112   gcov_type count_scale;
2113   unsigned i;
2114
2115   new_node->decl = decl;
2116   new_node->origin = n->origin;
2117   if (new_node->origin)
2118     {
2119       new_node->next_nested = new_node->origin->nested;
2120       new_node->origin->nested = new_node;
2121     }
2122   new_node->analyzed = n->analyzed;
2123   new_node->local = n->local;
2124   new_node->local.externally_visible = false;
2125   new_node->local.local = true;
2126   new_node->global = n->global;
2127   new_node->rtl = n->rtl;
2128   new_node->count = count;
2129   new_node->frequency = n->frequency;
2130   new_node->clone = n->clone;
2131   new_node->clone.tree_map = 0;
2132   if (n->count)
2133     {
2134       if (new_node->count > n->count)
2135         count_scale = REG_BR_PROB_BASE;
2136       else
2137         count_scale = new_node->count * REG_BR_PROB_BASE / n->count;
2138     }
2139   else
2140     count_scale = 0;
2141   if (update_original)
2142     {
2143       n->count -= count;
2144       if (n->count < 0)
2145         n->count = 0;
2146     }
2147
2148   FOR_EACH_VEC_ELT (cgraph_edge_p, redirect_callers, i, e)
2149     {
2150       /* Redirect calls to the old version node to point to its new
2151          version.  */
2152       cgraph_redirect_edge_callee (e, new_node);
2153     }
2154
2155
2156   for (e = n->callees;e; e=e->next_callee)
2157     cgraph_clone_edge (e, new_node, e->call_stmt, e->lto_stmt_uid,
2158                        count_scale, freq, update_original);
2159
2160   for (e = n->indirect_calls; e; e = e->next_callee)
2161     cgraph_clone_edge (e, new_node, e->call_stmt, e->lto_stmt_uid,
2162                        count_scale, freq, update_original);
2163   ipa_clone_references (new_node, NULL, &n->ref_list);
2164
2165   new_node->next_sibling_clone = n->clones;
2166   if (n->clones)
2167     n->clones->prev_sibling_clone = new_node;
2168   n->clones = new_node;
2169   new_node->clone_of = n;
2170
2171   if (n->decl != decl)
2172     {
2173       struct cgraph_node **slot;
2174       slot = (struct cgraph_node **) htab_find_slot (cgraph_hash, new_node, INSERT);
2175       gcc_assert (!*slot);
2176       *slot = new_node;
2177       if (assembler_name_hash)
2178         {
2179           void **aslot;
2180           tree name = DECL_ASSEMBLER_NAME (decl);
2181
2182           aslot = htab_find_slot_with_hash (assembler_name_hash, name,
2183                                             decl_assembler_name_hash (name),
2184                                             INSERT);
2185           gcc_assert (!*aslot);
2186           *aslot = new_node;
2187         }
2188     }
2189
2190   if (call_duplication_hook)
2191     cgraph_call_node_duplication_hooks (n, new_node);
2192   return new_node;
2193 }
2194
2195 /* Create a new name for clone of DECL, add SUFFIX.  Returns an identifier.  */
2196
2197 static GTY(()) unsigned int clone_fn_id_num;
2198
2199 tree
2200 clone_function_name (tree decl, const char *suffix)
2201 {
2202   tree name = DECL_ASSEMBLER_NAME (decl);
2203   size_t len = IDENTIFIER_LENGTH (name);
2204   char *tmp_name, *prefix;
2205
2206   prefix = XALLOCAVEC (char, len + strlen (suffix) + 2);
2207   memcpy (prefix, IDENTIFIER_POINTER (name), len);
2208   strcpy (prefix + len + 1, suffix);
2209 #ifndef NO_DOT_IN_LABEL
2210   prefix[len] = '.';
2211 #elif !defined NO_DOLLAR_IN_LABEL
2212   prefix[len] = '$';
2213 #else
2214   prefix[len] = '_';
2215 #endif
2216   ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix, clone_fn_id_num++);
2217   return get_identifier (tmp_name);
2218 }
2219
2220 /* Create callgraph node clone with new declaration.  The actual body will
2221    be copied later at compilation stage.
2222
2223    TODO: after merging in ipa-sra use function call notes instead of args_to_skip
2224    bitmap interface.
2225    */
2226 struct cgraph_node *
2227 cgraph_create_virtual_clone (struct cgraph_node *old_node,
2228                              VEC(cgraph_edge_p,heap) *redirect_callers,
2229                              VEC(ipa_replace_map_p,gc) *tree_map,
2230                              bitmap args_to_skip,
2231                              const char * suffix)
2232 {
2233   tree old_decl = old_node->decl;
2234   struct cgraph_node *new_node = NULL;
2235   tree new_decl;
2236   size_t i;
2237   struct ipa_replace_map *map;
2238
2239   if (!flag_wpa)
2240     gcc_checking_assert  (tree_versionable_function_p (old_decl));
2241
2242   gcc_assert (old_node->local.can_change_signature || !args_to_skip);
2243
2244   /* Make a new FUNCTION_DECL tree node */
2245   if (!args_to_skip)
2246     new_decl = copy_node (old_decl);
2247   else
2248     new_decl = build_function_decl_skip_args (old_decl, args_to_skip);
2249   DECL_STRUCT_FUNCTION (new_decl) = NULL;
2250
2251   /* Generate a new name for the new version. */
2252   DECL_NAME (new_decl) = clone_function_name (old_decl, suffix);
2253   SET_DECL_ASSEMBLER_NAME (new_decl, DECL_NAME (new_decl));
2254   SET_DECL_RTL (new_decl, NULL);
2255
2256   new_node = cgraph_clone_node (old_node, new_decl, old_node->count,
2257                                 CGRAPH_FREQ_BASE, false,
2258                                 redirect_callers, false);
2259   /* Update the properties.
2260      Make clone visible only within this translation unit.  Make sure
2261      that is not weak also.
2262      ??? We cannot use COMDAT linkage because there is no
2263      ABI support for this.  */
2264   DECL_EXTERNAL (new_node->decl) = 0;
2265   if (DECL_ONE_ONLY (old_decl))
2266     DECL_SECTION_NAME (new_node->decl) = NULL;
2267   DECL_COMDAT_GROUP (new_node->decl) = 0;
2268   TREE_PUBLIC (new_node->decl) = 0;
2269   DECL_COMDAT (new_node->decl) = 0;
2270   DECL_WEAK (new_node->decl) = 0;
2271   DECL_STATIC_CONSTRUCTOR (new_node->decl) = 0;
2272   DECL_STATIC_DESTRUCTOR (new_node->decl) = 0;
2273   new_node->clone.tree_map = tree_map;
2274   new_node->clone.args_to_skip = args_to_skip;
2275   FOR_EACH_VEC_ELT (ipa_replace_map_p, tree_map, i, map)
2276     {
2277       tree var = map->new_tree;
2278
2279       STRIP_NOPS (var);
2280       if (TREE_CODE (var) != ADDR_EXPR)
2281         continue;
2282       var = get_base_var (var);
2283       if (!var)
2284         continue;
2285
2286       /* Record references of the future statement initializing the constant
2287          argument.  */
2288       if (TREE_CODE (var) == FUNCTION_DECL)
2289         {
2290           struct cgraph_node *ref_node = cgraph_get_node (var);
2291           gcc_checking_assert (ref_node);
2292           ipa_record_reference (new_node, NULL, ref_node, NULL, IPA_REF_ADDR,
2293                                 NULL);
2294         }
2295       else if (TREE_CODE (var) == VAR_DECL)
2296         ipa_record_reference (new_node, NULL, NULL, varpool_node (var),
2297                               IPA_REF_ADDR, NULL);
2298     }
2299   if (!args_to_skip)
2300     new_node->clone.combined_args_to_skip = old_node->clone.combined_args_to_skip;
2301   else if (old_node->clone.combined_args_to_skip)
2302     {
2303       int newi = 0, oldi = 0;
2304       tree arg;
2305       bitmap new_args_to_skip = BITMAP_GGC_ALLOC ();
2306       struct cgraph_node *orig_node;
2307       for (orig_node = old_node; orig_node->clone_of; orig_node = orig_node->clone_of)
2308         ;
2309       for (arg = DECL_ARGUMENTS (orig_node->decl); arg; arg = DECL_CHAIN (arg), oldi++)
2310         {
2311           if (bitmap_bit_p (old_node->clone.combined_args_to_skip, oldi))
2312             {
2313               bitmap_set_bit (new_args_to_skip, oldi);
2314               continue;
2315             }
2316           if (bitmap_bit_p (args_to_skip, newi))
2317             bitmap_set_bit (new_args_to_skip, oldi);
2318           newi++;
2319         }
2320       new_node->clone.combined_args_to_skip = new_args_to_skip;
2321     }
2322   else
2323     new_node->clone.combined_args_to_skip = args_to_skip;
2324   new_node->local.externally_visible = 0;
2325   new_node->local.local = 1;
2326   new_node->lowered = true;
2327   new_node->reachable = true;
2328
2329   cgraph_call_node_duplication_hooks (old_node, new_node);
2330
2331
2332   return new_node;
2333 }
2334
2335 /* NODE is no longer nested function; update cgraph accordingly.  */
2336 void
2337 cgraph_unnest_node (struct cgraph_node *node)
2338 {
2339   struct cgraph_node **node2 = &node->origin->nested;
2340   gcc_assert (node->origin);
2341
2342   while (*node2 != node)
2343     node2 = &(*node2)->next_nested;
2344   *node2 = node->next_nested;
2345   node->origin = NULL;
2346 }
2347
2348 /* Return function availability.  See cgraph.h for description of individual
2349    return values.  */
2350 enum availability
2351 cgraph_function_body_availability (struct cgraph_node *node)
2352 {
2353   enum availability avail;
2354   gcc_assert (cgraph_function_flags_ready);
2355   if (!node->analyzed)
2356     avail = AVAIL_NOT_AVAILABLE;
2357   else if (node->local.local)
2358     avail = AVAIL_LOCAL;
2359   else if (!node->local.externally_visible)
2360     avail = AVAIL_AVAILABLE;
2361   /* Inline functions are safe to be analyzed even if their symbol can
2362      be overwritten at runtime.  It is not meaningful to enforce any sane
2363      behaviour on replacing inline function by different body.  */
2364   else if (DECL_DECLARED_INLINE_P (node->decl))
2365     avail = AVAIL_AVAILABLE;
2366
2367   /* If the function can be overwritten, return OVERWRITABLE.  Take
2368      care at least of two notable extensions - the COMDAT functions
2369      used to share template instantiations in C++ (this is symmetric
2370      to code cp_cannot_inline_tree_fn and probably shall be shared and
2371      the inlinability hooks completely eliminated).
2372
2373      ??? Does the C++ one definition rule allow us to always return
2374      AVAIL_AVAILABLE here?  That would be good reason to preserve this
2375      bit.  */
2376
2377   else if (decl_replaceable_p (node->decl) && !DECL_EXTERNAL (node->decl))
2378     avail = AVAIL_OVERWRITABLE;
2379   else avail = AVAIL_AVAILABLE;
2380
2381   return avail;
2382 }
2383
2384 /* Add the function FNDECL to the call graph.
2385    Unlike cgraph_finalize_function, this function is intended to be used
2386    by middle end and allows insertion of new function at arbitrary point
2387    of compilation.  The function can be either in high, low or SSA form
2388    GIMPLE.
2389
2390    The function is assumed to be reachable and have address taken (so no
2391    API breaking optimizations are performed on it).
2392
2393    Main work done by this function is to enqueue the function for later
2394    processing to avoid need the passes to be re-entrant.  */
2395
2396 void
2397 cgraph_add_new_function (tree fndecl, bool lowered)
2398 {
2399   struct cgraph_node *node;
2400   switch (cgraph_state)
2401     {
2402       case CGRAPH_STATE_CONSTRUCTION:
2403         /* Just enqueue function to be processed at nearest occurrence.  */
2404         node = cgraph_create_node (fndecl);
2405         node->next_needed = cgraph_new_nodes;
2406         if (lowered)
2407           node->lowered = true;
2408         cgraph_new_nodes = node;
2409         break;
2410
2411       case CGRAPH_STATE_IPA:
2412       case CGRAPH_STATE_IPA_SSA:
2413       case CGRAPH_STATE_EXPANSION:
2414         /* Bring the function into finalized state and enqueue for later
2415            analyzing and compilation.  */
2416         node = cgraph_get_create_node (fndecl);
2417         node->local.local = false;
2418         node->local.finalized = true;
2419         node->reachable = node->needed = true;
2420         if (!lowered && cgraph_state == CGRAPH_STATE_EXPANSION)
2421           {
2422             push_cfun (DECL_STRUCT_FUNCTION (fndecl));
2423             current_function_decl = fndecl;
2424             gimple_register_cfg_hooks ();
2425             tree_lowering_passes (fndecl);
2426             bitmap_obstack_initialize (NULL);
2427             if (!gimple_in_ssa_p (DECL_STRUCT_FUNCTION (fndecl)))
2428               execute_pass_list (pass_early_local_passes.pass.sub);
2429             bitmap_obstack_release (NULL);
2430             pop_cfun ();
2431             current_function_decl = NULL;
2432
2433             lowered = true;
2434           }
2435         if (lowered)
2436           node->lowered = true;
2437         node->next_needed = cgraph_new_nodes;
2438         cgraph_new_nodes = node;
2439         break;
2440
2441       case CGRAPH_STATE_FINISHED:
2442         /* At the very end of compilation we have to do all the work up
2443            to expansion.  */
2444         node = cgraph_create_node (fndecl);
2445         if (lowered)
2446           node->lowered = true;
2447         cgraph_analyze_function (node);
2448         push_cfun (DECL_STRUCT_FUNCTION (fndecl));
2449         current_function_decl = fndecl;
2450         gimple_register_cfg_hooks ();
2451         bitmap_obstack_initialize (NULL);
2452         if (!gimple_in_ssa_p (DECL_STRUCT_FUNCTION (fndecl)))
2453           execute_pass_list (pass_early_local_passes.pass.sub);
2454         bitmap_obstack_release (NULL);
2455         tree_rest_of_compilation (fndecl);
2456         pop_cfun ();
2457         current_function_decl = NULL;
2458         break;
2459     }
2460
2461   /* Set a personality if required and we already passed EH lowering.  */
2462   if (lowered
2463       && (function_needs_eh_personality (DECL_STRUCT_FUNCTION (fndecl))
2464           == eh_personality_lang))
2465     DECL_FUNCTION_PERSONALITY (fndecl) = lang_hooks.eh_personality ();
2466 }
2467
2468 /* Worker for cgraph_node_can_be_local_p.  */
2469 static bool
2470 cgraph_node_cannot_be_local_p_1 (struct cgraph_node *node,
2471                                  void *data ATTRIBUTE_UNUSED)
2472 {
2473   return !(!node->needed
2474            && ((DECL_COMDAT (node->decl) && !node->same_comdat_group)
2475                || !node->local.externally_visible));
2476 }
2477
2478 /* Return true if NODE can be made local for API change.
2479    Extern inline functions and C++ COMDAT functions can be made local
2480    at the expense of possible code size growth if function is used in multiple
2481    compilation units.  */
2482 bool
2483 cgraph_node_can_be_local_p (struct cgraph_node *node)
2484 {
2485   return (!node->address_taken
2486           && !cgraph_for_node_and_aliases (node,
2487                                            cgraph_node_cannot_be_local_p_1,
2488                                            NULL, true));
2489 }
2490
2491 /* Make DECL local.  FIXME: We shouldn't need to mess with rtl this early,
2492    but other code such as notice_global_symbol generates rtl.  */
2493 void
2494 cgraph_make_decl_local (tree decl)
2495 {
2496   rtx rtl, symbol;
2497
2498   if (TREE_CODE (decl) == VAR_DECL)
2499     DECL_COMMON (decl) = 0;
2500   else gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
2501
2502   if (DECL_ONE_ONLY (decl) || DECL_COMDAT (decl))
2503     {
2504       /* It is possible that we are linking against library defining same COMDAT
2505          function.  To avoid conflict we need to rename our local name of the
2506          function just in the case WHOPR partitioning decide to make it hidden
2507          to avoid cross partition references.  */
2508       if (flag_wpa)
2509         {
2510           const char *old_name;
2511
2512           old_name  = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2513           if (TREE_CODE (decl) == FUNCTION_DECL)
2514             {
2515               struct cgraph_node *node = cgraph_get_node (decl);
2516               change_decl_assembler_name (decl,
2517                                           clone_function_name (decl, "local"));
2518               if (node->local.lto_file_data)
2519                 lto_record_renamed_decl (node->local.lto_file_data,
2520                                          old_name,
2521                                          IDENTIFIER_POINTER
2522                                            (DECL_ASSEMBLER_NAME (decl)));
2523             }
2524           else if (TREE_CODE (decl) == VAR_DECL)
2525             {
2526               struct varpool_node *vnode = varpool_get_node (decl);
2527               /* change_decl_assembler_name will warn here on vtables because
2528                  C++ frontend still sets TREE_SYMBOL_REFERENCED on them.  */
2529               SET_DECL_ASSEMBLER_NAME (decl,
2530                                        clone_function_name (decl, "local"));
2531               if (vnode->lto_file_data)
2532                 lto_record_renamed_decl (vnode->lto_file_data,
2533                                          old_name,
2534                                          IDENTIFIER_POINTER
2535                                            (DECL_ASSEMBLER_NAME (decl)));
2536             }
2537         }
2538       DECL_SECTION_NAME (decl) = 0;
2539       DECL_COMDAT (decl) = 0;
2540     }
2541   DECL_COMDAT_GROUP (decl) = 0;
2542   DECL_WEAK (decl) = 0;
2543   DECL_EXTERNAL (decl) = 0;
2544   TREE_PUBLIC (decl) = 0;
2545   if (!DECL_RTL_SET_P (decl))
2546     return;
2547
2548   /* Update rtl flags.  */
2549   make_decl_rtl (decl);
2550
2551   rtl = DECL_RTL (decl);
2552   if (!MEM_P (rtl))
2553     return;
2554
2555   symbol = XEXP (rtl, 0);
2556   if (GET_CODE (symbol) != SYMBOL_REF)
2557     return;
2558
2559   SYMBOL_REF_WEAK (symbol) = DECL_WEAK (decl);
2560 }
2561
2562 /* Call calback on NODE, thunks and aliases asociated to NODE. 
2563    When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2564    skipped. */
2565
2566 bool
2567 cgraph_for_node_thunks_and_aliases (struct cgraph_node *node,
2568                                     bool (*callback) (struct cgraph_node *, void *),
2569                                     void *data,
2570                                     bool include_overwritable)
2571 {
2572   struct cgraph_edge *e;
2573   int i;
2574   struct ipa_ref *ref;
2575
2576   if (callback (node, data))
2577     return true;
2578   for (e = node->callers; e; e = e->next_caller)
2579     if (e->caller->thunk.thunk_p
2580         && (include_overwritable
2581             || cgraph_function_body_availability (e->caller) > AVAIL_OVERWRITABLE))
2582       if (cgraph_for_node_thunks_and_aliases (e->caller, callback, data,
2583                                               include_overwritable))
2584         return true;
2585   for (i = 0; ipa_ref_list_refering_iterate (&node->ref_list, i, ref); i++)
2586     if (ref->use == IPA_REF_ALIAS)
2587       {
2588         struct cgraph_node *alias = ipa_ref_refering_node (ref);
2589         if (include_overwritable
2590             || cgraph_function_body_availability (alias) > AVAIL_OVERWRITABLE)
2591           if (cgraph_for_node_thunks_and_aliases (alias, callback, data,
2592                                                   include_overwritable))
2593             return true;
2594       }
2595   return false;
2596 }
2597
2598 /* Call calback on NODE and aliases asociated to NODE. 
2599    When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2600    skipped. */
2601
2602 bool
2603 cgraph_for_node_and_aliases (struct cgraph_node *node,
2604                              bool (*callback) (struct cgraph_node *, void *),
2605                              void *data,
2606                              bool include_overwritable)
2607 {
2608   int i;
2609   struct ipa_ref *ref;
2610
2611   if (callback (node, data))
2612     return true;
2613   for (i = 0; ipa_ref_list_refering_iterate (&node->ref_list, i, ref); i++)
2614     if (ref->use == IPA_REF_ALIAS)
2615       {
2616         struct cgraph_node *alias = ipa_ref_refering_node (ref);
2617         if (include_overwritable
2618             || cgraph_function_body_availability (alias) > AVAIL_OVERWRITABLE)
2619           if (cgraph_for_node_and_aliases (alias, callback, data,
2620                                            include_overwritable))
2621             return true;
2622       }
2623   return false;
2624 }
2625
2626 /* Worker to bring NODE local.  */
2627
2628 static bool
2629 cgraph_make_node_local_1 (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
2630 {
2631   gcc_checking_assert (cgraph_node_can_be_local_p (node));
2632   if (DECL_COMDAT (node->decl) || DECL_EXTERNAL (node->decl))
2633     {
2634       cgraph_make_decl_local (node->decl);
2635
2636       node->local.externally_visible = false;
2637       node->local.local = true;
2638       node->resolution = LDPR_PREVAILING_DEF_IRONLY;
2639       gcc_assert (cgraph_function_body_availability (node) == AVAIL_LOCAL);
2640     }
2641   return false;
2642 }
2643
2644 /* Bring NODE local.  */
2645
2646 void
2647 cgraph_make_node_local (struct cgraph_node *node)
2648 {
2649   cgraph_for_node_thunks_and_aliases (node, cgraph_make_node_local_1,
2650                                       NULL, true);
2651 }
2652
2653 /* Worker to set nothrow flag.  */
2654
2655 static bool
2656 cgraph_set_nothrow_flag_1 (struct cgraph_node *node, void *data)
2657 {
2658   struct cgraph_edge *e;
2659
2660   TREE_NOTHROW (node->decl) = data != NULL;
2661
2662   if (data != NULL)
2663     for (e = node->callers; e; e = e->next_caller)
2664       e->can_throw_external = false;
2665   return false;
2666 }
2667
2668 /* Set TREE_NOTHROW on NODE's decl and on aliases of NODE
2669    if any to NOTHROW.  */
2670
2671 void
2672 cgraph_set_nothrow_flag (struct cgraph_node *node, bool nothrow)
2673 {
2674   cgraph_for_node_thunks_and_aliases (node, cgraph_set_nothrow_flag_1,
2675                                       (void *)(size_t)nothrow, false);
2676 }
2677
2678 /* Worker to set const flag.  */
2679
2680 static bool
2681 cgraph_set_const_flag_1 (struct cgraph_node *node, void *data)
2682 {
2683   /* Static constructors and destructors without a side effect can be
2684      optimized out.  */
2685   if (data && !((size_t)data & 2))
2686     {
2687       if (DECL_STATIC_CONSTRUCTOR (node->decl))
2688         DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2689       if (DECL_STATIC_DESTRUCTOR (node->decl))
2690         DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2691     }
2692   TREE_READONLY (node->decl) = data != NULL;
2693   DECL_LOOPING_CONST_OR_PURE_P (node->decl) = ((size_t)data & 2) != 0;
2694   return false;
2695 }
2696
2697 /* Set TREE_READONLY on NODE's decl and on aliases of NODE
2698    if any to READONLY.  */
2699
2700 void
2701 cgraph_set_const_flag (struct cgraph_node *node, bool readonly, bool looping)
2702 {
2703   cgraph_for_node_thunks_and_aliases (node, cgraph_set_const_flag_1,
2704                                       (void *)(size_t)(readonly + (int)looping * 2),
2705                                       false);
2706 }
2707
2708 /* Worker to set pure flag.  */
2709
2710 static bool
2711 cgraph_set_pure_flag_1 (struct cgraph_node *node, void *data)
2712 {
2713   /* Static pureructors and destructors without a side effect can be
2714      optimized out.  */
2715   if (data && !((size_t)data & 2))
2716     {
2717       if (DECL_STATIC_CONSTRUCTOR (node->decl))
2718         DECL_STATIC_CONSTRUCTOR (node->decl) = 0;
2719       if (DECL_STATIC_DESTRUCTOR (node->decl))
2720         DECL_STATIC_DESTRUCTOR (node->decl) = 0;
2721     }
2722   DECL_PURE_P (node->decl) = data != NULL;
2723   DECL_LOOPING_CONST_OR_PURE_P (node->decl) = ((size_t)data & 2) != 0;
2724   return false;
2725 }
2726
2727 /* Set DECL_PURE_P on NODE's decl and on aliases of NODE
2728    if any to PURE.  */
2729
2730 void
2731 cgraph_set_pure_flag (struct cgraph_node *node, bool pure, bool looping)
2732 {
2733   cgraph_for_node_thunks_and_aliases (node, cgraph_set_pure_flag_1,
2734                                       (void *)(size_t)(pure + (int)looping * 2),
2735                                       false);
2736 }
2737
2738 /* Data used by cgraph_propagate_frequency.  */
2739
2740 struct cgraph_propagate_frequency_data
2741 {
2742   bool maybe_unlikely_executed;
2743   bool maybe_executed_once;
2744   bool only_called_at_startup;
2745   bool only_called_at_exit;
2746 };
2747
2748 /* Worker for cgraph_propagate_frequency_1.  */
2749
2750 static bool
2751 cgraph_propagate_frequency_1 (struct cgraph_node *node, void *data)
2752 {
2753   struct cgraph_propagate_frequency_data *d;
2754   struct cgraph_edge *edge;
2755
2756   d = (struct cgraph_propagate_frequency_data *)data;
2757   for (edge = node->callers;
2758        edge && (d->maybe_unlikely_executed || d->maybe_executed_once
2759                 || d->only_called_at_startup || d->only_called_at_exit);
2760        edge = edge->next_caller)
2761     {
2762       if (edge->caller != node)
2763         {
2764           d->only_called_at_startup &= edge->caller->only_called_at_startup;
2765           /* It makes sense to put main() together with the static constructors.
2766              It will be executed for sure, but rest of functions called from
2767              main are definitely not at startup only.  */
2768           if (MAIN_NAME_P (DECL_NAME (edge->caller->decl)))
2769             d->only_called_at_startup = 0;
2770           d->only_called_at_exit &= edge->caller->only_called_at_exit;
2771         }
2772       if (!edge->frequency)
2773         continue;
2774       switch (edge->caller->frequency)
2775         {
2776         case NODE_FREQUENCY_UNLIKELY_EXECUTED:
2777           break;
2778         case NODE_FREQUENCY_EXECUTED_ONCE:
2779           if (dump_file && (dump_flags & TDF_DETAILS))
2780             fprintf (dump_file, "  Called by %s that is executed once\n",
2781                      cgraph_node_name (edge->caller));
2782           d->maybe_unlikely_executed = false;
2783           if (inline_edge_summary (edge)->loop_depth)
2784             {
2785               d->maybe_executed_once = false;
2786               if (dump_file && (dump_flags & TDF_DETAILS))
2787                 fprintf (dump_file, "  Called in loop\n");
2788             }
2789           break;
2790         case NODE_FREQUENCY_HOT:
2791         case NODE_FREQUENCY_NORMAL:
2792           if (dump_file && (dump_flags & TDF_DETAILS))
2793             fprintf (dump_file, "  Called by %s that is normal or hot\n",
2794                      cgraph_node_name (edge->caller));
2795           d->maybe_unlikely_executed = false;
2796           d->maybe_executed_once = false;
2797           break;
2798         }
2799     }
2800   return edge != NULL;
2801 }
2802
2803 /* See if the frequency of NODE can be updated based on frequencies of its
2804    callers.  */
2805 bool
2806 cgraph_propagate_frequency (struct cgraph_node *node)
2807 {
2808   struct cgraph_propagate_frequency_data d = {true, true, true, true};
2809   bool changed = false;
2810
2811   if (!node->local.local)
2812     return false;
2813   gcc_assert (node->analyzed);
2814   if (dump_file && (dump_flags & TDF_DETAILS))
2815     fprintf (dump_file, "Processing frequency %s\n", cgraph_node_name (node));
2816
2817   cgraph_for_node_and_aliases (node, cgraph_propagate_frequency_1, &d, true);
2818
2819   if ((d.only_called_at_startup && !d.only_called_at_exit)
2820       && !node->only_called_at_startup)
2821     {
2822        node->only_called_at_startup = true;
2823        if (dump_file)
2824          fprintf (dump_file, "Node %s promoted to only called at startup.\n",
2825                   cgraph_node_name (node));
2826        changed = true;
2827     }
2828   if ((d.only_called_at_exit && !d.only_called_at_startup)
2829       && !node->only_called_at_exit)
2830     {
2831        node->only_called_at_exit = true;
2832        if (dump_file)
2833          fprintf (dump_file, "Node %s promoted to only called at exit.\n",
2834                   cgraph_node_name (node));
2835        changed = true;
2836     }
2837   /* These come either from profile or user hints; never update them.  */
2838   if (node->frequency == NODE_FREQUENCY_HOT
2839       || node->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED)
2840     return changed;
2841   if (d.maybe_unlikely_executed)
2842     {
2843       node->frequency = NODE_FREQUENCY_UNLIKELY_EXECUTED;
2844       if (dump_file)
2845         fprintf (dump_file, "Node %s promoted to unlikely executed.\n",
2846                  cgraph_node_name (node));
2847       changed = true;
2848     }
2849   else if (d.maybe_executed_once && node->frequency != NODE_FREQUENCY_EXECUTED_ONCE)
2850     {
2851       node->frequency = NODE_FREQUENCY_EXECUTED_ONCE;
2852       if (dump_file)
2853         fprintf (dump_file, "Node %s promoted to executed once.\n",
2854                  cgraph_node_name (node));
2855       changed = true;
2856     }
2857   return changed;
2858 }
2859
2860 /* Return true when NODE can not return or throw and thus
2861    it is safe to ignore its side effects for IPA analysis.  */
2862
2863 bool
2864 cgraph_node_cannot_return (struct cgraph_node *node)
2865 {
2866   int flags = flags_from_decl_or_type (node->decl);
2867   if (!flag_exceptions)
2868     return (flags & ECF_NORETURN) != 0;
2869   else
2870     return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2871              == (ECF_NORETURN | ECF_NOTHROW));
2872 }
2873
2874 /* Return true when call of E can not lead to return from caller
2875    and thus it is safe to ignore its side effects for IPA analysis
2876    when computing side effects of the caller.
2877    FIXME: We could actually mark all edges that have no reaching
2878    patch to EXIT_BLOCK_PTR or throw to get better results.  */
2879 bool
2880 cgraph_edge_cannot_lead_to_return (struct cgraph_edge *e)
2881 {
2882   if (cgraph_node_cannot_return (e->caller))
2883     return true;
2884   if (e->indirect_unknown_callee)
2885     {
2886       int flags = e->indirect_info->ecf_flags;
2887       if (!flag_exceptions)
2888         return (flags & ECF_NORETURN) != 0;
2889       else
2890         return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2891                  == (ECF_NORETURN | ECF_NOTHROW));
2892     }
2893   else
2894     return cgraph_node_cannot_return (e->callee);
2895 }
2896
2897 /* Return true when function NODE can be removed from callgraph
2898    if all direct calls are eliminated.  */
2899
2900 bool
2901 cgraph_can_remove_if_no_direct_calls_and_refs_p (struct cgraph_node *node)
2902 {
2903   gcc_assert (!node->global.inlined_to);
2904   /* Extern inlines can always go, we will use the external definition.  */
2905   if (DECL_EXTERNAL (node->decl))
2906     return true;
2907   /* When function is needed, we can not remove it.  */
2908   if (node->needed || node->reachable_from_other_partition)
2909     return false;
2910   if (DECL_STATIC_CONSTRUCTOR (node->decl)
2911       || DECL_STATIC_DESTRUCTOR (node->decl))
2912     return false;
2913   /* Only COMDAT functions can be removed if externally visible.  */
2914   if (node->local.externally_visible
2915       && (!DECL_COMDAT (node->decl)
2916           || cgraph_used_from_object_file_p (node)))
2917     return false;
2918   return true;
2919 }
2920
2921 /* Worker for cgraph_can_remove_if_no_direct_calls_p.  */
2922
2923 static bool
2924 nonremovable_p (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
2925 {
2926   return !cgraph_can_remove_if_no_direct_calls_and_refs_p (node);
2927 }
2928
2929 /* Return true when function NODE and its aliases can be removed from callgraph
2930    if all direct calls are eliminated.  */
2931
2932 bool
2933 cgraph_can_remove_if_no_direct_calls_p (struct cgraph_node *node)
2934 {
2935   /* Extern inlines can always go, we will use the external definition.  */
2936   if (DECL_EXTERNAL (node->decl))
2937     return true;
2938   if (node->address_taken)
2939     return false;
2940   return !cgraph_for_node_and_aliases (node, nonremovable_p, NULL, true);
2941 }
2942
2943 /* Worker for cgraph_can_remove_if_no_direct_calls_p.  */
2944
2945 static bool
2946 used_from_object_file_p (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
2947 {
2948   return cgraph_used_from_object_file_p (node);
2949 }
2950
2951 /* Return true when function NODE can be expected to be removed
2952    from program when direct calls in this compilation unit are removed.
2953
2954    As a special case COMDAT functions are
2955    cgraph_can_remove_if_no_direct_calls_p while the are not
2956    cgraph_only_called_directly_p (it is possible they are called from other
2957    unit)
2958
2959    This function behaves as cgraph_only_called_directly_p because eliminating
2960    all uses of COMDAT function does not make it necessarily disappear from
2961    the program unless we are compiling whole program or we do LTO.  In this
2962    case we know we win since dynamic linking will not really discard the
2963    linkonce section.  */
2964
2965 bool
2966 cgraph_will_be_removed_from_program_if_no_direct_calls (struct cgraph_node *node)
2967 {
2968   gcc_assert (!node->global.inlined_to);
2969   if (cgraph_for_node_and_aliases (node, used_from_object_file_p, NULL, true))
2970     return false;
2971   if (!in_lto_p && !flag_whole_program)
2972     return cgraph_only_called_directly_p (node);
2973   else
2974     {
2975        if (DECL_EXTERNAL (node->decl))
2976          return true;
2977       return cgraph_can_remove_if_no_direct_calls_p (node);
2978     }
2979 }
2980
2981 /* Return true when RESOLUTION indicate that linker will use
2982    the symbol from non-LTO object files.  */
2983
2984 bool
2985 resolution_used_from_other_file_p (enum ld_plugin_symbol_resolution resolution)
2986 {
2987   return (resolution == LDPR_PREVAILING_DEF
2988           || resolution == LDPR_PREEMPTED_REG
2989           || resolution == LDPR_RESOLVED_EXEC
2990           || resolution == LDPR_RESOLVED_DYN);
2991 }
2992
2993
2994 /* Return true when NODE is known to be used from other (non-LTO) object file.
2995    Known only when doing LTO via linker plugin.  */
2996
2997 bool
2998 cgraph_used_from_object_file_p (struct cgraph_node *node)
2999 {
3000   gcc_assert (!node->global.inlined_to);
3001   if (!TREE_PUBLIC (node->decl) || DECL_EXTERNAL (node->decl))
3002     return false;
3003   if (resolution_used_from_other_file_p (node->resolution))
3004     return true;
3005   return false;
3006 }
3007
3008 /* Worker for cgraph_only_called_directly_p.  */
3009
3010 static bool
3011 cgraph_not_only_called_directly_p_1 (struct cgraph_node *node, void *data ATTRIBUTE_UNUSED)
3012 {
3013   return !cgraph_only_called_directly_or_aliased_p (node);
3014 }
3015
3016 /* Return true when function NODE and all its aliases are only called
3017    directly.
3018    i.e. it is not externally visible, address was not taken and
3019    it is not used in any other non-standard way.  */
3020
3021 bool
3022 cgraph_only_called_directly_p (struct cgraph_node *node)
3023 {
3024   gcc_assert (cgraph_function_or_thunk_node (node, NULL) == node);
3025   return !cgraph_for_node_and_aliases (node, cgraph_not_only_called_directly_p_1,
3026                                        NULL, true);
3027 }
3028
3029
3030 /* Collect all callers of NODE.  Worker for collect_callers_of_node.  */
3031
3032 static bool
3033 collect_callers_of_node_1 (struct cgraph_node *node, void *data)
3034 {
3035   VEC (cgraph_edge_p, heap) ** redirect_callers = (VEC (cgraph_edge_p, heap) **)data;
3036   struct cgraph_edge *cs;
3037   enum availability avail;
3038   cgraph_function_or_thunk_node (node, &avail);
3039
3040   if (avail > AVAIL_OVERWRITABLE)
3041     for (cs = node->callers; cs != NULL; cs = cs->next_caller)
3042       if (!cs->indirect_inlining_edge)
3043         VEC_safe_push (cgraph_edge_p, heap, *redirect_callers, cs);
3044   return false;
3045 }
3046
3047 /* Collect all callers of NODE and its aliases that are known to lead to NODE
3048    (i.e. are not overwritable).  */
3049
3050 VEC (cgraph_edge_p, heap) *
3051 collect_callers_of_node (struct cgraph_node *node)
3052 {
3053   VEC (cgraph_edge_p, heap) * redirect_callers = NULL;
3054   cgraph_for_node_and_aliases (node, collect_callers_of_node_1,
3055                                &redirect_callers, false);
3056   return redirect_callers;
3057 }
3058
3059 #include "gt-cgraph.h"