OSDN Git Service

2009-09-01 Diego Novillo <dnovillo@google.com>
[pf3gnuchains/gcc-fork.git] / gcc / cgraph.c
1 /* Callgraph handling code.
2    Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009
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 indirect calls or calls
38     from other compilation unit.  Flag NEEDED is set for each node that may
39     be accessed in such an invisible way and it shall be considered an
40     entry point to the callgraph.
41
42     Interprocedural information:
43
44       Callgraph is place to store data needed for interprocedural optimization.
45       All data structures are divided into three components: local_info that
46       is produced while analyzing the function, global_info that is result
47       of global walking of the callgraph on the end of compilation and
48       rtl_info used by RTL backend to propagate data from already compiled
49       functions to their callers.
50
51     Inlining plans:
52
53       The function inlining information is decided in advance and maintained
54       in the callgraph as so called inline plan.
55       For each inlined call, the callee's node is cloned to represent the
56       new function copy produced by inliner.
57       Each inlined call gets a unique corresponding clone node of the callee
58       and the data structure is updated while inlining is performed, so
59       the clones are eliminated and their callee edges redirected to the
60       caller.
61
62       Each edge has "inline_failed" field.  When the field is set to NULL,
63       the call will be inlined.  When it is non-NULL it contains a reason
64       why inlining wasn't performed.  */
65
66 #include "config.h"
67 #include "system.h"
68 #include "coretypes.h"
69 #include "tm.h"
70 #include "tree.h"
71 #include "tree-inline.h"
72 #include "langhooks.h"
73 #include "hashtab.h"
74 #include "toplev.h"
75 #include "flags.h"
76 #include "ggc.h"
77 #include "debug.h"
78 #include "target.h"
79 #include "basic-block.h"
80 #include "cgraph.h"
81 #include "output.h"
82 #include "intl.h"
83 #include "gimple.h"
84 #include "tree-dump.h"
85 #include "tree-flow.h"
86 #include "value-prof.h"
87
88 static void cgraph_node_remove_callers (struct cgraph_node *node);
89 static inline void cgraph_edge_remove_caller (struct cgraph_edge *e);
90 static inline void cgraph_edge_remove_callee (struct cgraph_edge *e);
91
92 /* Hash table used to convert declarations into nodes.  */
93 static GTY((param_is (struct cgraph_node))) htab_t cgraph_hash;
94 /* Hash table used to convert assembler names into nodes.  */
95 static GTY((param_is (struct cgraph_node))) htab_t assembler_name_hash;
96
97 /* The linked list of cgraph nodes.  */
98 struct cgraph_node *cgraph_nodes;
99
100 /* Queue of cgraph nodes scheduled to be lowered.  */
101 struct cgraph_node *cgraph_nodes_queue;
102
103 /* Queue of cgraph nodes scheduled to be added into cgraph.  This is a
104    secondary queue used during optimization to accommodate passes that
105    may generate new functions that need to be optimized and expanded.  */
106 struct cgraph_node *cgraph_new_nodes;
107
108 /* Number of nodes in existence.  */
109 int cgraph_n_nodes;
110
111 /* Maximal uid used in cgraph nodes.  */
112 int cgraph_max_uid;
113
114 /* Maximal uid used in cgraph edges.  */
115 int cgraph_edge_max_uid;
116
117 /* Maximal pid used for profiling */
118 int cgraph_max_pid;
119
120 /* Set when whole unit has been analyzed so we can access global info.  */
121 bool cgraph_global_info_ready = false;
122
123 /* What state callgraph is in right now.  */
124 enum cgraph_state cgraph_state = CGRAPH_STATE_CONSTRUCTION;
125
126 /* Set when the cgraph is fully build and the basic flags are computed.  */
127 bool cgraph_function_flags_ready = false;
128
129 /* Linked list of cgraph asm nodes.  */
130 struct cgraph_asm_node *cgraph_asm_nodes;
131
132 /* Last node in cgraph_asm_nodes.  */
133 static GTY(()) struct cgraph_asm_node *cgraph_asm_last_node;
134
135 /* The order index of the next cgraph node to be created.  This is
136    used so that we can sort the cgraph nodes in order by when we saw
137    them, to support -fno-toplevel-reorder.  */
138 int cgraph_order;
139
140 /* List of hooks trigerred on cgraph_edge events.  */
141 struct cgraph_edge_hook_list {
142   cgraph_edge_hook hook;
143   void *data;
144   struct cgraph_edge_hook_list *next;
145 };
146
147 /* List of hooks trigerred on cgraph_node events.  */
148 struct cgraph_node_hook_list {
149   cgraph_node_hook hook;
150   void *data;
151   struct cgraph_node_hook_list *next;
152 };
153
154 /* List of hooks trigerred on events involving two cgraph_edges.  */
155 struct cgraph_2edge_hook_list {
156   cgraph_2edge_hook hook;
157   void *data;
158   struct cgraph_2edge_hook_list *next;
159 };
160
161 /* List of hooks trigerred on events involving two cgraph_nodes.  */
162 struct cgraph_2node_hook_list {
163   cgraph_2node_hook hook;
164   void *data;
165   struct cgraph_2node_hook_list *next;
166 };
167
168 /* List of hooks triggered when an edge is removed.  */
169 struct cgraph_edge_hook_list *first_cgraph_edge_removal_hook;
170 /* List of hooks triggered when a node is removed.  */
171 struct cgraph_node_hook_list *first_cgraph_node_removal_hook;
172 /* List of hooks triggered when an edge is duplicated.  */
173 struct cgraph_2edge_hook_list *first_cgraph_edge_duplicated_hook;
174 /* List of hooks triggered when a node is duplicated.  */
175 struct cgraph_2node_hook_list *first_cgraph_node_duplicated_hook;
176 /* List of hooks triggered when an function is inserted.  */
177 struct cgraph_node_hook_list *first_cgraph_function_insertion_hook;
178
179 /* Head of a linked list of unused (freed) call graph nodes.
180    Do not GTY((delete)) this list so UIDs gets reliably recycled.  */
181 static GTY(()) struct cgraph_node *free_nodes;
182 /* Head of a linked list of unused (freed) call graph edges.
183    Do not GTY((delete)) this list so UIDs gets reliably recycled.  */
184 static GTY(()) struct cgraph_edge *free_edges;
185
186 /* Macros to access the next item in the list of free cgraph nodes and
187    edges. */
188 #define NEXT_FREE_NODE(NODE) (NODE)->next
189 #define NEXT_FREE_EDGE(EDGE) (EDGE)->prev_caller
190
191 /* Register HOOK to be called with DATA on each removed edge.  */
192 struct cgraph_edge_hook_list *
193 cgraph_add_edge_removal_hook (cgraph_edge_hook hook, void *data)
194 {
195   struct cgraph_edge_hook_list *entry;
196   struct cgraph_edge_hook_list **ptr = &first_cgraph_edge_removal_hook;
197
198   entry = (struct cgraph_edge_hook_list *) xmalloc (sizeof (*entry));
199   entry->hook = hook;
200   entry->data = data;
201   entry->next = NULL;
202   while (*ptr)
203     ptr = &(*ptr)->next;
204   *ptr = entry;
205   return entry;
206 }
207
208 /* Remove ENTRY from the list of hooks called on removing edges.  */
209 void
210 cgraph_remove_edge_removal_hook (struct cgraph_edge_hook_list *entry)
211 {
212   struct cgraph_edge_hook_list **ptr = &first_cgraph_edge_removal_hook;
213
214   while (*ptr != entry)
215     ptr = &(*ptr)->next;
216   *ptr = entry->next;
217   free (entry);
218 }
219
220 /* Call all edge removal hooks.  */
221 static void
222 cgraph_call_edge_removal_hooks (struct cgraph_edge *e)
223 {
224   struct cgraph_edge_hook_list *entry = first_cgraph_edge_removal_hook;
225   while (entry)
226   {
227     entry->hook (e, entry->data);
228     entry = entry->next;
229   }
230 }
231
232 /* Register HOOK to be called with DATA on each removed node.  */
233 struct cgraph_node_hook_list *
234 cgraph_add_node_removal_hook (cgraph_node_hook hook, void *data)
235 {
236   struct cgraph_node_hook_list *entry;
237   struct cgraph_node_hook_list **ptr = &first_cgraph_node_removal_hook;
238
239   entry = (struct cgraph_node_hook_list *) xmalloc (sizeof (*entry));
240   entry->hook = hook;
241   entry->data = data;
242   entry->next = NULL;
243   while (*ptr)
244     ptr = &(*ptr)->next;
245   *ptr = entry;
246   return entry;
247 }
248
249 /* Remove ENTRY from the list of hooks called on removing nodes.  */
250 void
251 cgraph_remove_node_removal_hook (struct cgraph_node_hook_list *entry)
252 {
253   struct cgraph_node_hook_list **ptr = &first_cgraph_node_removal_hook;
254
255   while (*ptr != entry)
256     ptr = &(*ptr)->next;
257   *ptr = entry->next;
258   free (entry);
259 }
260
261 /* Call all node removal hooks.  */
262 static void
263 cgraph_call_node_removal_hooks (struct cgraph_node *node)
264 {
265   struct cgraph_node_hook_list *entry = first_cgraph_node_removal_hook;
266   while (entry)
267   {
268     entry->hook (node, entry->data);
269     entry = entry->next;
270   }
271 }
272
273 /* Register HOOK to be called with DATA on each removed node.  */
274 struct cgraph_node_hook_list *
275 cgraph_add_function_insertion_hook (cgraph_node_hook hook, void *data)
276 {
277   struct cgraph_node_hook_list *entry;
278   struct cgraph_node_hook_list **ptr = &first_cgraph_function_insertion_hook;
279
280   entry = (struct cgraph_node_hook_list *) xmalloc (sizeof (*entry));
281   entry->hook = hook;
282   entry->data = data;
283   entry->next = NULL;
284   while (*ptr)
285     ptr = &(*ptr)->next;
286   *ptr = entry;
287   return entry;
288 }
289
290 /* Remove ENTRY from the list of hooks called on removing nodes.  */
291 void
292 cgraph_remove_function_insertion_hook (struct cgraph_node_hook_list *entry)
293 {
294   struct cgraph_node_hook_list **ptr = &first_cgraph_function_insertion_hook;
295
296   while (*ptr != entry)
297     ptr = &(*ptr)->next;
298   *ptr = entry->next;
299   free (entry);
300 }
301
302 /* Call all node removal hooks.  */
303 void
304 cgraph_call_function_insertion_hooks (struct cgraph_node *node)
305 {
306   struct cgraph_node_hook_list *entry = first_cgraph_function_insertion_hook;
307   while (entry)
308   {
309     entry->hook (node, entry->data);
310     entry = entry->next;
311   }
312 }
313
314 /* Register HOOK to be called with DATA on each duplicated edge.  */
315 struct cgraph_2edge_hook_list *
316 cgraph_add_edge_duplication_hook (cgraph_2edge_hook hook, void *data)
317 {
318   struct cgraph_2edge_hook_list *entry;
319   struct cgraph_2edge_hook_list **ptr = &first_cgraph_edge_duplicated_hook;
320
321   entry = (struct cgraph_2edge_hook_list *) xmalloc (sizeof (*entry));
322   entry->hook = hook;
323   entry->data = data;
324   entry->next = NULL;
325   while (*ptr)
326     ptr = &(*ptr)->next;
327   *ptr = entry;
328   return entry;
329 }
330
331 /* Remove ENTRY from the list of hooks called on duplicating edges.  */
332 void
333 cgraph_remove_edge_duplication_hook (struct cgraph_2edge_hook_list *entry)
334 {
335   struct cgraph_2edge_hook_list **ptr = &first_cgraph_edge_duplicated_hook;
336
337   while (*ptr != entry)
338     ptr = &(*ptr)->next;
339   *ptr = entry->next;
340   free (entry);
341 }
342
343 /* Call all edge duplication hooks.  */
344 static void
345 cgraph_call_edge_duplication_hooks (struct cgraph_edge *cs1,
346                                     struct cgraph_edge *cs2)
347 {
348   struct cgraph_2edge_hook_list *entry = first_cgraph_edge_duplicated_hook;
349   while (entry)
350   {
351     entry->hook (cs1, cs2, entry->data);
352     entry = entry->next;
353   }
354 }
355
356 /* Register HOOK to be called with DATA on each duplicated node.  */
357 struct cgraph_2node_hook_list *
358 cgraph_add_node_duplication_hook (cgraph_2node_hook hook, void *data)
359 {
360   struct cgraph_2node_hook_list *entry;
361   struct cgraph_2node_hook_list **ptr = &first_cgraph_node_duplicated_hook;
362
363   entry = (struct cgraph_2node_hook_list *) xmalloc (sizeof (*entry));
364   entry->hook = hook;
365   entry->data = data;
366   entry->next = NULL;
367   while (*ptr)
368     ptr = &(*ptr)->next;
369   *ptr = entry;
370   return entry;
371 }
372
373 /* Remove ENTRY from the list of hooks called on duplicating nodes.  */
374 void
375 cgraph_remove_node_duplication_hook (struct cgraph_2node_hook_list *entry)
376 {
377   struct cgraph_2node_hook_list **ptr = &first_cgraph_node_duplicated_hook;
378
379   while (*ptr != entry)
380     ptr = &(*ptr)->next;
381   *ptr = entry->next;
382   free (entry);
383 }
384
385 /* Call all node duplication hooks.  */
386 static void
387 cgraph_call_node_duplication_hooks (struct cgraph_node *node1,
388                                     struct cgraph_node *node2)
389 {
390   struct cgraph_2node_hook_list *entry = first_cgraph_node_duplicated_hook;
391   while (entry)
392   {
393     entry->hook (node1, node2, entry->data);
394     entry = entry->next;
395   }
396 }
397
398 /* Returns a hash code for P.  */
399
400 static hashval_t
401 hash_node (const void *p)
402 {
403   const struct cgraph_node *n = (const struct cgraph_node *) p;
404   return (hashval_t) DECL_UID (n->decl);
405 }
406
407
408 /* Return the cgraph node associated with function DECL.  If none
409    exists, return NULL.  */
410
411 struct cgraph_node *
412 cgraph_node_for_decl (tree decl)
413 {
414   struct cgraph_node *node;
415   void **slot;
416
417   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
418
419   node = NULL;
420   if (cgraph_hash)
421     {
422       struct cgraph_node key;
423
424       key.decl = decl;
425       slot = htab_find_slot (cgraph_hash, &key, NO_INSERT);
426       if (slot && *slot)
427         node = (struct cgraph_node *) *slot;
428     }
429
430   return node;
431 }
432
433
434 /* Returns nonzero if P1 and P2 are equal.  */
435
436 static int
437 eq_node (const void *p1, const void *p2)
438 {
439   const struct cgraph_node *n1 = (const struct cgraph_node *) p1;
440   const struct cgraph_node *n2 = (const struct cgraph_node *) p2;
441   return DECL_UID (n1->decl) == DECL_UID (n2->decl);
442 }
443
444 /* Allocate new callgraph node and insert it into basic data structures.  */
445
446 static struct cgraph_node *
447 cgraph_create_node (void)
448 {
449   struct cgraph_node *node;
450
451   if (free_nodes)
452     {
453       node = free_nodes;
454       free_nodes = NEXT_FREE_NODE (node);
455     }
456   else
457     {
458       node = GGC_CNEW (struct cgraph_node);
459       node->uid = cgraph_max_uid++;
460     }
461
462   node->next = cgraph_nodes;
463   node->pid = -1;
464   node->order = cgraph_order++;
465   if (cgraph_nodes)
466     cgraph_nodes->previous = node;
467   node->previous = NULL;
468   node->global.estimated_growth = INT_MIN;
469   cgraph_nodes = node;
470   cgraph_n_nodes++;
471   return node;
472 }
473
474 /* Return cgraph node assigned to DECL.  Create new one when needed.  */
475
476 struct cgraph_node *
477 cgraph_node (tree decl)
478 {
479   struct cgraph_node key, *node, **slot;
480
481   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
482
483   if (!cgraph_hash)
484     cgraph_hash = htab_create_ggc (10, hash_node, eq_node, NULL);
485
486   key.decl = decl;
487
488   slot = (struct cgraph_node **) htab_find_slot (cgraph_hash, &key, INSERT);
489
490   if (*slot)
491     {
492       node = *slot;
493       return node;
494     }
495
496   node = cgraph_create_node ();
497   node->decl = decl;
498   *slot = node;
499   if (DECL_CONTEXT (decl) && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL)
500     {
501       node->origin = cgraph_node (DECL_CONTEXT (decl));
502       node->next_nested = node->origin->nested;
503       node->origin->nested = node;
504     }
505   if (assembler_name_hash)
506     {
507       void **aslot;
508       tree name = DECL_ASSEMBLER_NAME (decl);
509
510       aslot = htab_find_slot_with_hash (assembler_name_hash, name,
511                                         decl_assembler_name_hash (name),
512                                         INSERT);
513       /* We can have multiple declarations with same assembler name. For C++
514          it is __builtin_strlen and strlen, for instance.  Do we need to
515          record them all?  Original implementation marked just first one
516          so lets hope for the best.  */
517       if (*aslot == NULL)
518         *aslot = node;
519     }
520   return node;
521 }
522
523 /* Returns the cgraph node assigned to DECL or NULL if no cgraph node
524    is assigned.  */
525
526 struct cgraph_node *
527 cgraph_get_node (tree decl)
528 {
529   struct cgraph_node key, *node = NULL, **slot;
530
531   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
532
533   if (!cgraph_hash)
534     cgraph_hash = htab_create_ggc (10, hash_node, eq_node, NULL);
535
536   key.decl = decl;
537
538   slot = (struct cgraph_node **) htab_find_slot (cgraph_hash, &key,
539                                                  NO_INSERT);
540
541   if (slot && *slot)
542     node = *slot;
543   return node;
544 }
545
546 /* Insert already constructed node into hashtable.  */
547
548 void
549 cgraph_insert_node_to_hashtable (struct cgraph_node *node)
550 {
551   struct cgraph_node **slot;
552
553   slot = (struct cgraph_node **) htab_find_slot (cgraph_hash, node, INSERT);
554
555   gcc_assert (!*slot);
556   *slot = node;
557 }
558
559 /* Returns a hash code for P.  */
560
561 static hashval_t
562 hash_node_by_assembler_name (const void *p)
563 {
564   const struct cgraph_node *n = (const struct cgraph_node *) p;
565   return (hashval_t) decl_assembler_name_hash (DECL_ASSEMBLER_NAME (n->decl));
566 }
567
568 /* Returns nonzero if P1 and P2 are equal.  */
569
570 static int
571 eq_assembler_name (const void *p1, const void *p2)
572 {
573   const struct cgraph_node *n1 = (const struct cgraph_node *) p1;
574   const_tree name = (const_tree)p2;
575   return (decl_assembler_name_equal (n1->decl, name));
576 }
577
578 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
579    Return NULL if there's no such node.  */
580
581 struct cgraph_node *
582 cgraph_node_for_asm (tree asmname)
583 {
584   struct cgraph_node *node;
585   void **slot;
586
587   if (!assembler_name_hash)
588     {
589       assembler_name_hash =
590         htab_create_ggc (10, hash_node_by_assembler_name, eq_assembler_name,
591                          NULL);
592       for (node = cgraph_nodes; node; node = node->next)
593         if (!node->global.inlined_to)
594           {
595             tree name = DECL_ASSEMBLER_NAME (node->decl);
596             slot = htab_find_slot_with_hash (assembler_name_hash, name,
597                                              decl_assembler_name_hash (name),
598                                              INSERT);
599             /* We can have multiple declarations with same assembler name. For C++
600                it is __builtin_strlen and strlen, for instance.  Do we need to
601                record them all?  Original implementation marked just first one
602                so lets hope for the best.  */
603             if (*slot)
604               continue;
605             *slot = node;
606           }
607     }
608
609   slot = htab_find_slot_with_hash (assembler_name_hash, asmname,
610                                    decl_assembler_name_hash (asmname),
611                                    NO_INSERT);
612
613   if (slot)
614     return (struct cgraph_node *) *slot;
615   return NULL;
616 }
617
618 /* Returns a hash value for X (which really is a die_struct).  */
619
620 static hashval_t
621 edge_hash (const void *x)
622 {
623   return htab_hash_pointer (((const struct cgraph_edge *) x)->call_stmt);
624 }
625
626 /* Return nonzero if decl_id of die_struct X is the same as UID of decl *Y.  */
627
628 static int
629 edge_eq (const void *x, const void *y)
630 {
631   return ((const struct cgraph_edge *) x)->call_stmt == y;
632 }
633
634
635 /* Return the callgraph edge representing the GIMPLE_CALL statement
636    CALL_STMT.  */
637
638 struct cgraph_edge *
639 cgraph_edge (struct cgraph_node *node, gimple call_stmt)
640 {
641   struct cgraph_edge *e, *e2;
642   int n = 0;
643
644   if (node->call_site_hash)
645     return (struct cgraph_edge *)
646       htab_find_with_hash (node->call_site_hash, call_stmt,
647                            htab_hash_pointer (call_stmt));
648
649   /* This loop may turn out to be performance problem.  In such case adding
650      hashtables into call nodes with very many edges is probably best
651      solution.  It is not good idea to add pointer into CALL_EXPR itself
652      because we want to make possible having multiple cgraph nodes representing
653      different clones of the same body before the body is actually cloned.  */
654   for (e = node->callees; e; e= e->next_callee)
655     {
656       if (e->call_stmt == call_stmt)
657         break;
658       n++;
659     }
660
661   if (n > 100)
662     {
663       node->call_site_hash = htab_create_ggc (120, edge_hash, edge_eq, NULL);
664       for (e2 = node->callees; e2; e2 = e2->next_callee)
665         {
666           void **slot;
667           slot = htab_find_slot_with_hash (node->call_site_hash,
668                                            e2->call_stmt,
669                                            htab_hash_pointer (e2->call_stmt),
670                                            INSERT);
671           gcc_assert (!*slot);
672           *slot = e2;
673         }
674     }
675
676   return e;
677 }
678
679
680 /* Change field call_stmt of edge E to NEW_STMT.  */
681
682 void
683 cgraph_set_call_stmt (struct cgraph_edge *e, gimple new_stmt)
684 {
685   if (e->caller->call_site_hash)
686     {
687       htab_remove_elt_with_hash (e->caller->call_site_hash,
688                                  e->call_stmt,
689                                  htab_hash_pointer (e->call_stmt));
690     }
691   e->call_stmt = new_stmt;
692   push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
693   e->can_throw_external = stmt_can_throw_external (new_stmt);
694   pop_cfun ();
695   if (e->caller->call_site_hash)
696     {
697       void **slot;
698       slot = htab_find_slot_with_hash (e->caller->call_site_hash,
699                                        e->call_stmt,
700                                        htab_hash_pointer
701                                        (e->call_stmt), INSERT);
702       gcc_assert (!*slot);
703       *slot = e;
704     }
705 }
706
707 /* Like cgraph_set_call_stmt but walk the clone tree and update all
708    clones sharing the same function body.  */
709
710 void
711 cgraph_set_call_stmt_including_clones (struct cgraph_node *orig,
712                                        gimple old_stmt, gimple new_stmt)
713 {
714   struct cgraph_node *node;
715   struct cgraph_edge *edge = cgraph_edge (orig, old_stmt);
716
717   if (edge)
718     cgraph_set_call_stmt (edge, new_stmt);
719
720   node = orig->clones;
721   if (node)
722     while (node != orig)
723       {
724         struct cgraph_edge *edge = cgraph_edge (node, old_stmt);
725         if (edge)
726           cgraph_set_call_stmt (edge, new_stmt);
727         if (node->clones)
728           node = node->clones;
729         else if (node->next_sibling_clone)
730           node = node->next_sibling_clone;
731         else
732           {
733             while (node != orig && !node->next_sibling_clone)
734               node = node->clone_of;
735             if (node != orig)
736               node = node->next_sibling_clone;
737           }
738       }
739 }
740
741 /* Like cgraph_create_edge walk the clone tree and update all clones sharing
742    same function body.  
743    
744    TODO: COUNT and LOOP_DEPTH should be properly distributed based on relative
745    frequencies of the clones.  */
746
747 void
748 cgraph_create_edge_including_clones (struct cgraph_node *orig,
749                                      struct cgraph_node *callee,
750                                      gimple stmt, gcov_type count,
751                                      int freq, int loop_depth,
752                                      cgraph_inline_failed_t reason)
753 {
754   struct cgraph_node *node;
755   struct cgraph_edge *edge;
756
757   if (!cgraph_edge (orig, stmt))
758     {
759       edge = cgraph_create_edge (orig, callee, stmt, count, freq, loop_depth);
760       edge->inline_failed = reason;
761     }
762
763   node = orig->clones;
764   if (node)
765     while (node != orig)
766       {
767         /* It is possible that we already constant propagated into the clone
768            and turned indirect call into dirrect call.  */
769         if (!cgraph_edge (node, stmt))
770           {
771             edge = cgraph_create_edge (node, callee, stmt, count,
772                                        freq, loop_depth);
773             edge->inline_failed = reason;
774           }
775
776         if (node->clones)
777           node = node->clones;
778         else if (node->next_sibling_clone)
779           node = node->next_sibling_clone;
780         else
781           {
782             while (node != orig && !node->next_sibling_clone)
783               node = node->clone_of;
784             if (node != orig)
785               node = node->next_sibling_clone;
786           }
787       }
788 }
789
790 /* Give initial reasons why inlining would fail on EDGE.  This gets either
791    nullified or usually overwritten by more precise reasons later.  */
792
793 static void
794 initialize_inline_failed (struct cgraph_edge *e)
795 {
796   struct cgraph_node *callee = e->callee;
797
798   if (!callee->analyzed)
799     e->inline_failed = CIF_BODY_NOT_AVAILABLE;
800   else if (callee->local.redefined_extern_inline)
801     e->inline_failed = CIF_REDEFINED_EXTERN_INLINE;
802   else if (!callee->local.inlinable)
803     e->inline_failed = CIF_FUNCTION_NOT_INLINABLE;
804   else if (gimple_call_cannot_inline_p (e->call_stmt))
805     e->inline_failed = CIF_MISMATCHED_ARGUMENTS;
806   else
807     e->inline_failed = CIF_FUNCTION_NOT_CONSIDERED;
808 }
809
810 /* Create edge from CALLER to CALLEE in the cgraph.  */
811
812 struct cgraph_edge *
813 cgraph_create_edge (struct cgraph_node *caller, struct cgraph_node *callee,
814                     gimple call_stmt, gcov_type count, int freq, int nest)
815 {
816   struct cgraph_edge *edge;
817
818 #ifdef ENABLE_CHECKING
819   /* This is rather pricely check possibly trigerring construction of call stmt
820      hashtable.  */
821   gcc_assert (!cgraph_edge (caller, call_stmt));
822 #endif
823
824   gcc_assert (is_gimple_call (call_stmt));
825
826   if (free_edges)
827     {
828       edge = free_edges;
829       free_edges = NEXT_FREE_EDGE (edge);
830     }
831   else
832     {
833       edge = GGC_NEW (struct cgraph_edge);
834       edge->uid = cgraph_edge_max_uid++;
835     }
836
837   edge->aux = NULL;
838
839   edge->caller = caller;
840   edge->callee = callee;
841   edge->call_stmt = call_stmt;
842   push_cfun (DECL_STRUCT_FUNCTION (caller->decl));
843   edge->can_throw_external = stmt_can_throw_external (call_stmt);
844   pop_cfun ();
845   edge->prev_caller = NULL;
846   edge->next_caller = callee->callers;
847   if (callee->callers)
848     callee->callers->prev_caller = edge;
849   edge->prev_callee = NULL;
850   edge->next_callee = caller->callees;
851   if (caller->callees)
852     caller->callees->prev_callee = edge;
853   caller->callees = edge;
854   callee->callers = edge;
855   edge->count = count;
856   gcc_assert (count >= 0);
857   edge->frequency = freq;
858   gcc_assert (freq >= 0);
859   gcc_assert (freq <= CGRAPH_FREQ_MAX);
860   edge->loop_nest = nest;
861   edge->indirect_call = 0;
862   if (caller->call_site_hash)
863     {
864       void **slot;
865       slot = htab_find_slot_with_hash (caller->call_site_hash,
866                                        edge->call_stmt,
867                                        htab_hash_pointer
868                                          (edge->call_stmt),
869                                        INSERT);
870       gcc_assert (!*slot);
871       *slot = edge;
872     }
873
874   initialize_inline_failed (edge);
875
876   return edge;
877 }
878
879 /* Remove the edge E from the list of the callers of the callee.  */
880
881 static inline void
882 cgraph_edge_remove_callee (struct cgraph_edge *e)
883 {
884   if (e->prev_caller)
885     e->prev_caller->next_caller = e->next_caller;
886   if (e->next_caller)
887     e->next_caller->prev_caller = e->prev_caller;
888   if (!e->prev_caller)
889     e->callee->callers = e->next_caller;
890 }
891
892 /* Remove the edge E from the list of the callees of the caller.  */
893
894 static inline void
895 cgraph_edge_remove_caller (struct cgraph_edge *e)
896 {
897   if (e->prev_callee)
898     e->prev_callee->next_callee = e->next_callee;
899   if (e->next_callee)
900     e->next_callee->prev_callee = e->prev_callee;
901   if (!e->prev_callee)
902     e->caller->callees = e->next_callee;
903   if (e->caller->call_site_hash)
904     htab_remove_elt_with_hash (e->caller->call_site_hash,
905                                e->call_stmt,
906                                htab_hash_pointer (e->call_stmt));
907 }
908
909 /* Put the edge onto the free list.  */
910
911 static void
912 cgraph_free_edge (struct cgraph_edge *e)
913 {
914   int uid = e->uid;
915
916   /* Clear out the edge so we do not dangle pointers.  */
917   memset (e, 0, sizeof (*e));
918   e->uid = uid;
919   NEXT_FREE_EDGE (e) = free_edges;
920   free_edges = e;
921 }
922
923 /* Remove the edge E in the cgraph.  */
924
925 void
926 cgraph_remove_edge (struct cgraph_edge *e)
927 {
928   /* Call all edge removal hooks.  */
929   cgraph_call_edge_removal_hooks (e);
930
931   /* Remove from callers list of the callee.  */
932   cgraph_edge_remove_callee (e);
933
934   /* Remove from callees list of the callers.  */
935   cgraph_edge_remove_caller (e);
936
937   /* Put the edge onto the free list.  */
938   cgraph_free_edge (e);
939 }
940
941 /* Redirect callee of E to N.  The function does not update underlying
942    call expression.  */
943
944 void
945 cgraph_redirect_edge_callee (struct cgraph_edge *e, struct cgraph_node *n)
946 {
947   /* Remove from callers list of the current callee.  */
948   cgraph_edge_remove_callee (e);
949
950   /* Insert to callers list of the new callee.  */
951   e->prev_caller = NULL;
952   if (n->callers)
953     n->callers->prev_caller = e;
954   e->next_caller = n->callers;
955   n->callers = e;
956   e->callee = n;
957 }
958
959
960 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
961    OLD_STMT changed into NEW_STMT.  OLD_CALL is gimple_call_fndecl
962    of OLD_STMT if it was previously call statement.  */
963
964 static void
965 cgraph_update_edges_for_call_stmt_node (struct cgraph_node *node,
966                                         gimple old_stmt, tree old_call, gimple new_stmt)
967 {
968   tree new_call = (is_gimple_call (new_stmt)) ? gimple_call_fndecl (new_stmt) : 0;
969
970   /* We are seeing indirect calls, then there is nothing to update.  */
971   if (!new_call && !old_call)
972     return;
973   /* See if we turned indirect call into direct call or folded call to one builtin
974      into different bultin.  */
975   if (old_call != new_call)
976     {
977       struct cgraph_edge *e = cgraph_edge (node, old_stmt);
978       struct cgraph_edge *ne = NULL;
979       gcov_type count;
980       int frequency;
981       int loop_nest;
982
983       if (e)
984         {
985           /* See if the call is already there.  It might be because of indirect
986              inlining already found it.  */
987           if (new_call && e->callee->decl == new_call)
988             return;
989
990           /* Otherwise remove edge and create new one; we can't simply redirect
991              since function has changed, so inline plan and other information
992              attached to edge is invalid.  */
993           cgraph_remove_edge (e);
994           count = e->count;
995           frequency = e->frequency;
996           loop_nest = e->loop_nest;
997         }
998       else
999         {
1000           /* We are seeing new direct call; compute profile info based on BB.  */
1001           basic_block bb = gimple_bb (new_stmt);
1002           count = bb->count;
1003           frequency = compute_call_stmt_bb_frequency (current_function_decl,
1004                                                       bb);
1005           loop_nest = bb->loop_depth;
1006         }
1007
1008       if (new_call)
1009         {
1010           ne = cgraph_create_edge (node, cgraph_node (new_call),
1011                                    new_stmt, count, frequency,
1012                                    loop_nest);
1013           gcc_assert (ne->inline_failed);
1014         }
1015     }
1016   /* We only updated the call stmt; update pointer in cgraph edge..  */
1017   else if (old_stmt != new_stmt)
1018     cgraph_set_call_stmt (cgraph_edge (node, old_stmt), new_stmt);
1019 }
1020
1021 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1022    OLD_STMT changed into NEW_STMT.  OLD_DECL is gimple_call_fndecl
1023    of OLD_STMT before it was updated (updating can happen inplace).  */
1024
1025 void
1026 cgraph_update_edges_for_call_stmt (gimple old_stmt, tree old_decl, gimple new_stmt)
1027 {
1028   struct cgraph_node *orig = cgraph_node (cfun->decl);
1029   struct cgraph_node *node;
1030
1031   cgraph_update_edges_for_call_stmt_node (orig, old_stmt, old_decl, new_stmt);
1032   if (orig->clones)
1033     for (node = orig->clones; node != orig;)
1034       {
1035         cgraph_update_edges_for_call_stmt_node (node, old_stmt, old_decl, new_stmt);
1036         if (node->clones)
1037           node = node->clones;
1038         else if (node->next_sibling_clone)
1039           node = node->next_sibling_clone;
1040         else
1041           {
1042             while (node != orig && !node->next_sibling_clone)
1043               node = node->clone_of;
1044             if (node != orig)
1045               node = node->next_sibling_clone;
1046           }
1047       }
1048 }
1049
1050
1051 /* Remove all callees from the node.  */
1052
1053 void
1054 cgraph_node_remove_callees (struct cgraph_node *node)
1055 {
1056   struct cgraph_edge *e, *f;
1057
1058   /* It is sufficient to remove the edges from the lists of callers of
1059      the callees.  The callee list of the node can be zapped with one
1060      assignment.  */
1061   for (e = node->callees; e; e = f)
1062     {
1063       f = e->next_callee;
1064       cgraph_call_edge_removal_hooks (e);
1065       cgraph_edge_remove_callee (e);
1066       cgraph_free_edge (e);
1067     }
1068   node->callees = NULL;
1069   if (node->call_site_hash)
1070     {
1071       htab_delete (node->call_site_hash);
1072       node->call_site_hash = NULL;
1073     }
1074 }
1075
1076 /* Remove all callers from the node.  */
1077
1078 static void
1079 cgraph_node_remove_callers (struct cgraph_node *node)
1080 {
1081   struct cgraph_edge *e, *f;
1082
1083   /* It is sufficient to remove the edges from the lists of callees of
1084      the callers.  The caller list of the node can be zapped with one
1085      assignment.  */
1086   for (e = node->callers; e; e = f)
1087     {
1088       f = e->next_caller;
1089       cgraph_call_edge_removal_hooks (e);
1090       cgraph_edge_remove_caller (e);
1091       cgraph_free_edge (e);
1092     }
1093   node->callers = NULL;
1094 }
1095
1096 /* Release memory used to represent body of function NODE.  */
1097
1098 void
1099 cgraph_release_function_body (struct cgraph_node *node)
1100 {
1101   if (DECL_STRUCT_FUNCTION (node->decl))
1102     {
1103       tree old_decl = current_function_decl;
1104       push_cfun (DECL_STRUCT_FUNCTION (node->decl));
1105       if (cfun->gimple_df)
1106         {
1107           current_function_decl = node->decl;
1108           delete_tree_ssa ();
1109           delete_tree_cfg_annotations ();
1110           cfun->eh = NULL;
1111           current_function_decl = old_decl;
1112         }
1113       if (cfun->cfg)
1114         {
1115           gcc_assert (dom_computed[0] == DOM_NONE);
1116           gcc_assert (dom_computed[1] == DOM_NONE);
1117           clear_edges ();
1118         }
1119       if (cfun->value_histograms)
1120         free_histograms ();
1121       gcc_assert (!current_loops);
1122       pop_cfun();
1123       gimple_set_body (node->decl, NULL);
1124       VEC_free (ipa_opt_pass, heap,
1125                 DECL_STRUCT_FUNCTION (node->decl)->ipa_transforms_to_apply);
1126       /* Struct function hangs a lot of data that would leak if we didn't
1127          removed all pointers to it.   */
1128       ggc_free (DECL_STRUCT_FUNCTION (node->decl));
1129       DECL_STRUCT_FUNCTION (node->decl) = NULL;
1130     }
1131   DECL_SAVED_TREE (node->decl) = NULL;
1132   /* If the node is abstract and needed, then do not clear DECL_INITIAL
1133      of its associated function function declaration because it's
1134      needed to emit debug info later.  */
1135   if (!node->abstract_and_needed)
1136     DECL_INITIAL (node->decl) = error_mark_node;
1137 }
1138
1139 /* Remove the node from cgraph.  */
1140
1141 void
1142 cgraph_remove_node (struct cgraph_node *node)
1143 {
1144   void **slot;
1145   bool kill_body = false;
1146   struct cgraph_node *n;
1147   int uid = node->uid;
1148
1149   cgraph_call_node_removal_hooks (node);
1150   cgraph_node_remove_callers (node);
1151   cgraph_node_remove_callees (node);
1152
1153   /* Incremental inlining access removed nodes stored in the postorder list.
1154      */
1155   node->needed = node->reachable = false;
1156   for (n = node->nested; n; n = n->next_nested)
1157     n->origin = NULL;
1158   node->nested = NULL;
1159   if (node->origin)
1160     {
1161       struct cgraph_node **node2 = &node->origin->nested;
1162
1163       while (*node2 != node)
1164         node2 = &(*node2)->next_nested;
1165       *node2 = node->next_nested;
1166     }
1167   if (node->previous)
1168     node->previous->next = node->next;
1169   else
1170     cgraph_nodes = node->next;
1171   if (node->next)
1172     node->next->previous = node->previous;
1173   node->next = NULL;
1174   node->previous = NULL;
1175   slot = htab_find_slot (cgraph_hash, node, NO_INSERT);
1176   if (*slot == node)
1177     {
1178       struct cgraph_node *next_inline_clone;
1179
1180       for (next_inline_clone = node->clones;
1181            next_inline_clone && next_inline_clone->decl != node->decl;
1182            next_inline_clone = next_inline_clone->next_sibling_clone)
1183         ;
1184
1185       /* If there is inline clone of the node being removed, we need
1186          to put it into the position of removed node and reorganize all
1187          other clones to be based on it.  */
1188       if (next_inline_clone)
1189         {
1190           struct cgraph_node *n;
1191           struct cgraph_node *new_clones;
1192
1193           *slot = next_inline_clone;
1194
1195           /* Unlink inline clone from the list of clones of removed node.  */
1196           if (next_inline_clone->next_sibling_clone)
1197             next_inline_clone->next_sibling_clone->prev_sibling_clone
1198               = next_inline_clone->prev_sibling_clone;
1199           if (next_inline_clone->prev_sibling_clone)
1200             {
1201               next_inline_clone->prev_sibling_clone->next_sibling_clone
1202                 = next_inline_clone->next_sibling_clone;
1203             }
1204           else
1205            node->clones = next_inline_clone->next_sibling_clone;
1206
1207           new_clones = node->clones;
1208           node->clones = NULL;
1209
1210           /* Copy clone info.  */
1211           next_inline_clone->clone = node->clone;
1212
1213           /* Now place it into clone tree at same level at NODE.  */
1214           next_inline_clone->clone_of = node->clone_of;
1215           next_inline_clone->prev_sibling_clone = NULL;
1216           next_inline_clone->next_sibling_clone = NULL;
1217           if (node->clone_of)
1218             {
1219               next_inline_clone->next_sibling_clone = node->clone_of->clones;
1220               node->clone_of->clones = next_inline_clone;
1221             }
1222
1223           /* Merge the clone list.  */
1224           if (new_clones)
1225             {
1226               if (!next_inline_clone->clones)
1227                 next_inline_clone->clones = new_clones;
1228               else
1229                 {
1230                   n = next_inline_clone->clones;
1231                   while (n->next_sibling_clone)
1232                     n =  n->next_sibling_clone;
1233                   n->next_sibling_clone = new_clones;
1234                   new_clones->prev_sibling_clone = n;
1235                 }
1236             }
1237
1238           /* Update clone_of pointers.  */
1239           n = new_clones;
1240           while (n)
1241             {
1242               n->clone_of = next_inline_clone;
1243               n = n->next_sibling_clone;
1244             }
1245         }
1246       else
1247         {
1248           htab_clear_slot (cgraph_hash, slot);
1249           kill_body = true;
1250         }
1251
1252     }
1253   else
1254     gcc_assert (node->clone_of);
1255   if (node->prev_sibling_clone)
1256     node->prev_sibling_clone->next_sibling_clone = node->next_sibling_clone;
1257   else if (node->clone_of)
1258     node->clone_of->clones = node->next_sibling_clone;
1259   if (node->next_sibling_clone)
1260     node->next_sibling_clone->prev_sibling_clone = node->prev_sibling_clone;
1261   if (node->clones)
1262     {
1263       struct cgraph_node *n;
1264
1265       for (n = node->clones; n->next_sibling_clone; n = n->next_sibling_clone)
1266         n->clone_of = node->clone_of;
1267       n->clone_of = node->clone_of;
1268       n->next_sibling_clone = node->clone_of->clones;
1269       if (node->clone_of->clones)
1270         node->clone_of->clones->prev_sibling_clone = n;
1271       node->clone_of->clones = node->clones;
1272     }
1273
1274   /* While all the clones are removed after being proceeded, the function
1275      itself is kept in the cgraph even after it is compiled.  Check whether
1276      we are done with this body and reclaim it proactively if this is the case.
1277      */
1278   if (!kill_body && *slot)
1279     {
1280       struct cgraph_node *n = (struct cgraph_node *) *slot;
1281       if (!n->clones && !n->clone_of && !n->global.inlined_to
1282           && (cgraph_global_info_ready
1283               && (TREE_ASM_WRITTEN (n->decl) || DECL_EXTERNAL (n->decl))))
1284         kill_body = true;
1285     }
1286   if (assembler_name_hash)
1287     {
1288       tree name = DECL_ASSEMBLER_NAME (node->decl);
1289       slot = htab_find_slot_with_hash (assembler_name_hash, name,
1290                                        decl_assembler_name_hash (name),
1291                                        NO_INSERT);
1292       /* Inline clones are not hashed.  */
1293       if (slot && *slot == node)
1294         htab_clear_slot (assembler_name_hash, slot);
1295     }
1296
1297   if (kill_body)
1298     cgraph_release_function_body (node);
1299   node->decl = NULL;
1300   if (node->call_site_hash)
1301     {
1302       htab_delete (node->call_site_hash);
1303       node->call_site_hash = NULL;
1304     }
1305   cgraph_n_nodes--;
1306
1307   /* Clear out the node to NULL all pointers and add the node to the free
1308      list.  */
1309   memset (node, 0, sizeof(*node));
1310   node->uid = uid;
1311   NEXT_FREE_NODE (node) = free_nodes;
1312   free_nodes = node;
1313 }
1314
1315 /* Remove the node from cgraph.  */
1316
1317 void
1318 cgraph_remove_node_and_inline_clones (struct cgraph_node *node)
1319 {
1320   struct cgraph_edge *e, *next;
1321   for (e = node->callees; e; e = next)
1322     {
1323       next = e->next_callee;
1324       if (!e->inline_failed)
1325         cgraph_remove_node_and_inline_clones (e->callee);
1326     }
1327   cgraph_remove_node (node);
1328 }
1329
1330 /* Notify finalize_compilation_unit that given node is reachable.  */
1331
1332 void
1333 cgraph_mark_reachable_node (struct cgraph_node *node)
1334 {
1335   if (!node->reachable && node->local.finalized)
1336     {
1337       notice_global_symbol (node->decl);
1338       node->reachable = 1;
1339       gcc_assert (!cgraph_global_info_ready);
1340
1341       node->next_needed = cgraph_nodes_queue;
1342       cgraph_nodes_queue = node;
1343     }
1344 }
1345
1346 /* Likewise indicate that a node is needed, i.e. reachable via some
1347    external means.  */
1348
1349 void
1350 cgraph_mark_needed_node (struct cgraph_node *node)
1351 {
1352   node->needed = 1;
1353   cgraph_mark_reachable_node (node);
1354 }
1355
1356 /* Likewise indicate that a node is having address taken.  */
1357
1358 void
1359 cgraph_mark_address_taken_node (struct cgraph_node *node)
1360 {
1361   node->address_taken = 1;
1362   cgraph_mark_needed_node (node);
1363 }
1364
1365 /* Return local info for the compiled function.  */
1366
1367 struct cgraph_local_info *
1368 cgraph_local_info (tree decl)
1369 {
1370   struct cgraph_node *node;
1371
1372   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1373   node = cgraph_node (decl);
1374   return &node->local;
1375 }
1376
1377 /* Return local info for the compiled function.  */
1378
1379 struct cgraph_global_info *
1380 cgraph_global_info (tree decl)
1381 {
1382   struct cgraph_node *node;
1383
1384   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL && cgraph_global_info_ready);
1385   node = cgraph_node (decl);
1386   return &node->global;
1387 }
1388
1389 /* Return local info for the compiled function.  */
1390
1391 struct cgraph_rtl_info *
1392 cgraph_rtl_info (tree decl)
1393 {
1394   struct cgraph_node *node;
1395
1396   gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1397   node = cgraph_node (decl);
1398   if (decl != current_function_decl
1399       && !TREE_ASM_WRITTEN (node->decl))
1400     return NULL;
1401   return &node->rtl;
1402 }
1403
1404 /* Return a string describing the failure REASON.  */
1405
1406 const char*
1407 cgraph_inline_failed_string (cgraph_inline_failed_t reason)
1408 {
1409 #undef DEFCIFCODE
1410 #define DEFCIFCODE(code, string)        string,
1411
1412   static const char *cif_string_table[CIF_N_REASONS] = {
1413 #include "cif-code.def"
1414   };
1415
1416   /* Signedness of an enum type is implementation defined, so cast it
1417      to unsigned before testing. */
1418   gcc_assert ((unsigned) reason < CIF_N_REASONS);
1419   return cif_string_table[reason];
1420 }
1421
1422 /* Return name of the node used in debug output.  */
1423 const char *
1424 cgraph_node_name (struct cgraph_node *node)
1425 {
1426   return lang_hooks.decl_printable_name (node->decl, 2);
1427 }
1428
1429 /* Names used to print out the availability enum.  */
1430 const char * const cgraph_availability_names[] =
1431   {"unset", "not_available", "overwritable", "available", "local"};
1432
1433
1434 /* Dump call graph node NODE to file F.  */
1435
1436 void
1437 dump_cgraph_node (FILE *f, struct cgraph_node *node)
1438 {
1439   struct cgraph_edge *edge;
1440   fprintf (f, "%s/%i(%i)", cgraph_node_name (node), node->uid,
1441            node->pid);
1442   dump_addr (f, " @", (void *)node);
1443   if (node->global.inlined_to)
1444     fprintf (f, " (inline copy in %s/%i)",
1445              cgraph_node_name (node->global.inlined_to),
1446              node->global.inlined_to->uid);
1447   if (node->clone_of)
1448     fprintf (f, " (clone of %s/%i)",
1449              cgraph_node_name (node->clone_of),
1450              node->clone_of->uid);
1451   if (cgraph_function_flags_ready)
1452     fprintf (f, " availability:%s",
1453              cgraph_availability_names [cgraph_function_body_availability (node)]);
1454   if (node->count)
1455     fprintf (f, " executed "HOST_WIDEST_INT_PRINT_DEC"x",
1456              (HOST_WIDEST_INT)node->count);
1457   if (node->local.inline_summary.self_time)
1458     fprintf (f, " %i time, %i benefit", node->local.inline_summary.self_time,
1459                                         node->local.inline_summary.time_inlining_benefit);
1460   if (node->global.time && node->global.time
1461       != node->local.inline_summary.self_time)
1462     fprintf (f, " (%i after inlining)", node->global.time);
1463   if (node->local.inline_summary.self_size)
1464     fprintf (f, " %i size, %i benefit", node->local.inline_summary.self_size,
1465                                         node->local.inline_summary.size_inlining_benefit);
1466   if (node->global.size && node->global.size
1467       != node->local.inline_summary.self_size)
1468     fprintf (f, " (%i after inlining)", node->global.size);
1469   if (node->local.inline_summary.estimated_self_stack_size)
1470     fprintf (f, " %i bytes stack usage", (int)node->local.inline_summary.estimated_self_stack_size);
1471   if (node->global.estimated_stack_size != node->local.inline_summary.estimated_self_stack_size)
1472     fprintf (f, " %i bytes after inlining", (int)node->global.estimated_stack_size);
1473   if (node->origin)
1474     fprintf (f, " nested in: %s", cgraph_node_name (node->origin));
1475   if (node->needed)
1476     fprintf (f, " needed");
1477   if (node->address_taken)
1478     fprintf (f, " address_taken");
1479   else if (node->reachable)
1480     fprintf (f, " reachable");
1481   if (gimple_has_body_p (node->decl))
1482     fprintf (f, " body");
1483   if (node->process)
1484     fprintf (f, " process");
1485   if (node->local.local)
1486     fprintf (f, " local");
1487   if (node->local.externally_visible)
1488     fprintf (f, " externally_visible");
1489   if (node->local.finalized)
1490     fprintf (f, " finalized");
1491   if (node->local.disregard_inline_limits)
1492     fprintf (f, " always_inline");
1493   else if (node->local.inlinable)
1494     fprintf (f, " inlinable");
1495   if (node->local.redefined_extern_inline)
1496     fprintf (f, " redefined_extern_inline");
1497   if (TREE_ASM_WRITTEN (node->decl))
1498     fprintf (f, " asm_written");
1499
1500   fprintf (f, "\n  called by: ");
1501   for (edge = node->callers; edge; edge = edge->next_caller)
1502     {
1503       fprintf (f, "%s/%i ", cgraph_node_name (edge->caller),
1504                edge->caller->uid);
1505       if (edge->count)
1506         fprintf (f, "("HOST_WIDEST_INT_PRINT_DEC"x) ",
1507                  (HOST_WIDEST_INT)edge->count);
1508       if (edge->frequency)
1509         fprintf (f, "(%.2f per call) ",
1510                  edge->frequency / (double)CGRAPH_FREQ_BASE);
1511       if (!edge->inline_failed)
1512         fprintf(f, "(inlined) ");
1513       if (edge->indirect_call)
1514         fprintf(f, "(indirect) ");
1515       if (edge->can_throw_external)
1516         fprintf(f, "(can throw external) ");
1517     }
1518
1519   fprintf (f, "\n  calls: ");
1520   for (edge = node->callees; edge; edge = edge->next_callee)
1521     {
1522       fprintf (f, "%s/%i ", cgraph_node_name (edge->callee),
1523                edge->callee->uid);
1524       if (!edge->inline_failed)
1525         fprintf(f, "(inlined) ");
1526       if (edge->indirect_call)
1527         fprintf(f, "(indirect) ");
1528       if (edge->count)
1529         fprintf (f, "("HOST_WIDEST_INT_PRINT_DEC"x) ",
1530                  (HOST_WIDEST_INT)edge->count);
1531       if (edge->frequency)
1532         fprintf (f, "(%.2f per call) ",
1533                  edge->frequency / (double)CGRAPH_FREQ_BASE);
1534       if (edge->loop_nest)
1535         fprintf (f, "(nested in %i loops) ", edge->loop_nest);
1536       if (edge->can_throw_external)
1537         fprintf(f, "(can throw external) ");
1538     }
1539   fprintf (f, "\n");
1540 }
1541
1542
1543 /* Dump call graph node NODE to stderr.  */
1544
1545 void
1546 debug_cgraph_node (struct cgraph_node *node)
1547 {
1548   dump_cgraph_node (stderr, node);
1549 }
1550
1551
1552 /* Dump the callgraph to file F.  */
1553
1554 void
1555 dump_cgraph (FILE *f)
1556 {
1557   struct cgraph_node *node;
1558
1559   fprintf (f, "callgraph:\n\n");
1560   for (node = cgraph_nodes; node; node = node->next)
1561     dump_cgraph_node (f, node);
1562 }
1563
1564
1565 /* Dump the call graph to stderr.  */
1566
1567 void
1568 debug_cgraph (void)
1569 {
1570   dump_cgraph (stderr);
1571 }
1572
1573
1574 /* Set the DECL_ASSEMBLER_NAME and update cgraph hashtables.  */
1575
1576 void
1577 change_decl_assembler_name (tree decl, tree name)
1578 {
1579   gcc_assert (!assembler_name_hash);
1580   if (!DECL_ASSEMBLER_NAME_SET_P (decl))
1581     {
1582       SET_DECL_ASSEMBLER_NAME (decl, name);
1583       return;
1584     }
1585   if (name == DECL_ASSEMBLER_NAME (decl))
1586     return;
1587
1588   if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))
1589       && DECL_RTL_SET_P (decl))
1590     warning (0, "%D renamed after being referenced in assembly", decl);
1591
1592   SET_DECL_ASSEMBLER_NAME (decl, name);
1593 }
1594
1595 /* Add a top-level asm statement to the list.  */
1596
1597 struct cgraph_asm_node *
1598 cgraph_add_asm_node (tree asm_str)
1599 {
1600   struct cgraph_asm_node *node;
1601
1602   node = GGC_CNEW (struct cgraph_asm_node);
1603   node->asm_str = asm_str;
1604   node->order = cgraph_order++;
1605   node->next = NULL;
1606   if (cgraph_asm_nodes == NULL)
1607     cgraph_asm_nodes = node;
1608   else
1609     cgraph_asm_last_node->next = node;
1610   cgraph_asm_last_node = node;
1611   return node;
1612 }
1613
1614 /* Return true when the DECL can possibly be inlined.  */
1615 bool
1616 cgraph_function_possibly_inlined_p (tree decl)
1617 {
1618   if (!cgraph_global_info_ready)
1619     return !DECL_UNINLINABLE (decl);
1620   return DECL_POSSIBLY_INLINED (decl);
1621 }
1622
1623 /* Create clone of E in the node N represented by CALL_EXPR the callgraph.  */
1624 struct cgraph_edge *
1625 cgraph_clone_edge (struct cgraph_edge *e, struct cgraph_node *n,
1626                    gimple call_stmt, gcov_type count_scale, int freq_scale,
1627                    int loop_nest, bool update_original)
1628 {
1629   struct cgraph_edge *new_edge;
1630   gcov_type count = e->count * count_scale / REG_BR_PROB_BASE;
1631   gcov_type freq = e->frequency * (gcov_type) freq_scale / CGRAPH_FREQ_BASE;
1632
1633   if (freq > CGRAPH_FREQ_MAX)
1634     freq = CGRAPH_FREQ_MAX;
1635   new_edge = cgraph_create_edge (n, e->callee, call_stmt, count, freq,
1636                             e->loop_nest + loop_nest);
1637
1638   new_edge->inline_failed = e->inline_failed;
1639   new_edge->indirect_call = e->indirect_call;
1640   if (update_original)
1641     {
1642       e->count -= new_edge->count;
1643       if (e->count < 0)
1644         e->count = 0;
1645     }
1646   cgraph_call_edge_duplication_hooks (e, new_edge);
1647   return new_edge;
1648 }
1649
1650 /* Create node representing clone of N executed COUNT times.  Decrease
1651    the execution counts from original node too.
1652
1653    When UPDATE_ORIGINAL is true, the counts are subtracted from the original
1654    function's profile to reflect the fact that part of execution is handled
1655    by node.  */
1656 struct cgraph_node *
1657 cgraph_clone_node (struct cgraph_node *n, gcov_type count, int freq,
1658                    int loop_nest, bool update_original)
1659 {
1660   struct cgraph_node *new_node = cgraph_create_node ();
1661   struct cgraph_edge *e;
1662   gcov_type count_scale;
1663
1664   new_node->decl = n->decl;
1665   new_node->origin = n->origin;
1666   if (new_node->origin)
1667     {
1668       new_node->next_nested = new_node->origin->nested;
1669       new_node->origin->nested = new_node;
1670     }
1671   new_node->analyzed = n->analyzed;
1672   new_node->local = n->local;
1673   new_node->global = n->global;
1674   new_node->rtl = n->rtl;
1675   new_node->count = count;
1676   new_node->clone = n->clone;
1677   if (n->count)
1678     {
1679       if (new_node->count > n->count)
1680         count_scale = REG_BR_PROB_BASE;
1681       else
1682         count_scale = new_node->count * REG_BR_PROB_BASE / n->count;
1683     }
1684   else
1685     count_scale = 0;
1686   if (update_original)
1687     {
1688       n->count -= count;
1689       if (n->count < 0)
1690         n->count = 0;
1691     }
1692
1693   for (e = n->callees;e; e=e->next_callee)
1694     cgraph_clone_edge (e, new_node, e->call_stmt, count_scale, freq, loop_nest,
1695                        update_original);
1696
1697   new_node->next_sibling_clone = n->clones;
1698   if (n->clones)
1699     n->clones->prev_sibling_clone = new_node;
1700   n->clones = new_node;
1701   new_node->clone_of = n;
1702
1703   cgraph_call_node_duplication_hooks (n, new_node);
1704   return new_node;
1705 }
1706
1707 /* Create a new name for omp child function.  Returns an identifier.  */
1708
1709 static GTY(()) unsigned int clone_fn_id_num;
1710
1711 static tree
1712 clone_function_name (tree decl)
1713 {
1714   tree name = DECL_ASSEMBLER_NAME (decl);
1715   size_t len = IDENTIFIER_LENGTH (name);
1716   char *tmp_name, *prefix;
1717
1718   prefix = XALLOCAVEC (char, len + strlen ("_clone") + 1);
1719   memcpy (prefix, IDENTIFIER_POINTER (name), len);
1720   strcpy (prefix + len, "_clone");
1721 #ifndef NO_DOT_IN_LABEL
1722   prefix[len] = '.';
1723 #elif !defined NO_DOLLAR_IN_LABEL
1724   prefix[len] = '$';
1725 #endif
1726   ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix, clone_fn_id_num++);
1727   return get_identifier (tmp_name);
1728 }
1729
1730 /* Create callgraph node clone with new declaration.  The actual body will
1731    be copied later at compilation stage.  
1732
1733    TODO: after merging in ipa-sra use function call notes instead of args_to_skip
1734    bitmap interface.
1735    */
1736 struct cgraph_node *
1737 cgraph_create_virtual_clone (struct cgraph_node *old_node,
1738                              VEC(cgraph_edge_p,heap) *redirect_callers,
1739                              VEC(ipa_replace_map_p,gc) *tree_map,
1740                              bitmap args_to_skip)
1741 {
1742   tree old_decl = old_node->decl;
1743   struct cgraph_node *new_node = NULL;
1744   tree new_decl;
1745   struct cgraph_node key, **slot;
1746   unsigned i;
1747   struct cgraph_edge *e;
1748
1749   gcc_assert  (tree_versionable_function_p (old_decl));
1750
1751   /* Make a new FUNCTION_DECL tree node */
1752   if (!args_to_skip)
1753     new_decl = copy_node (old_decl);
1754   else
1755     new_decl = build_function_decl_skip_args (old_decl, args_to_skip);
1756   DECL_STRUCT_FUNCTION (new_decl) = NULL;
1757
1758   /* Generate a new name for the new version. */
1759   DECL_NAME (new_decl) = clone_function_name (old_decl);
1760   SET_DECL_ASSEMBLER_NAME (new_decl, DECL_NAME (new_decl));
1761   SET_DECL_RTL (new_decl, NULL);
1762
1763   new_node = cgraph_clone_node (old_node, old_node->count,
1764                                 CGRAPH_FREQ_BASE, 0, false);
1765   new_node->decl = new_decl;
1766   /* Update the properties.
1767      Make clone visible only within this translation unit.  Make sure
1768      that is not weak also.
1769      ??? We cannot use COMDAT linkage because there is no
1770      ABI support for this.  */
1771   DECL_EXTERNAL (new_node->decl) = 0;
1772   DECL_COMDAT_GROUP (new_node->decl) = 0;
1773   TREE_PUBLIC (new_node->decl) = 0;
1774   DECL_COMDAT (new_node->decl) = 0;
1775   DECL_WEAK (new_node->decl) = 0;
1776   new_node->clone.tree_map = tree_map;
1777   new_node->clone.args_to_skip = args_to_skip;
1778   if (!args_to_skip)
1779     new_node->clone.combined_args_to_skip = old_node->clone.combined_args_to_skip;
1780   else if (old_node->clone.combined_args_to_skip)
1781     {
1782       int newi = 0, oldi = 0;
1783       tree arg;
1784       bitmap new_args_to_skip = BITMAP_GGC_ALLOC ();
1785       struct cgraph_node *orig_node;
1786       for (orig_node = old_node; orig_node->clone_of; orig_node = orig_node->clone_of)
1787         ;
1788       for (arg = DECL_ARGUMENTS (orig_node->decl); arg; arg = TREE_CHAIN (arg), oldi++)
1789         {
1790           if (bitmap_bit_p (old_node->clone.combined_args_to_skip, oldi))
1791             {
1792               bitmap_set_bit (new_args_to_skip, oldi);
1793               continue;
1794             }
1795           if (bitmap_bit_p (args_to_skip, newi))
1796             bitmap_set_bit (new_args_to_skip, oldi);
1797           newi++;
1798         }
1799       new_node->clone.combined_args_to_skip = new_args_to_skip;
1800     }
1801   else
1802     new_node->clone.combined_args_to_skip = args_to_skip;
1803   new_node->local.externally_visible = 0;
1804   new_node->local.local = 1;
1805   new_node->lowered = true;
1806   new_node->reachable = true;
1807
1808   key.decl = new_decl;
1809   slot = (struct cgraph_node **) htab_find_slot (cgraph_hash, &key, INSERT);
1810   gcc_assert (!*slot);
1811   *slot = new_node;
1812   if (assembler_name_hash)
1813     {
1814       void **aslot;
1815       tree name = DECL_ASSEMBLER_NAME (new_decl);
1816
1817       aslot = htab_find_slot_with_hash (assembler_name_hash, name,
1818                                         decl_assembler_name_hash (name),
1819                                         INSERT);
1820       gcc_assert (!*aslot);
1821       *aslot = new_node;
1822     }
1823    for (i = 0; VEC_iterate (cgraph_edge_p, redirect_callers, i, e); i++)
1824      {
1825        /* Redirect calls to the old version node to point to its new
1826           version.  */
1827        cgraph_redirect_edge_callee (e, new_node);
1828      }
1829   
1830   return new_node;
1831 }
1832
1833 /* NODE is no longer nested function; update cgraph accordingly.  */
1834 void
1835 cgraph_unnest_node (struct cgraph_node *node)
1836 {
1837   struct cgraph_node **node2 = &node->origin->nested;
1838   gcc_assert (node->origin);
1839
1840   while (*node2 != node)
1841     node2 = &(*node2)->next_nested;
1842   *node2 = node->next_nested;
1843   node->origin = NULL;
1844 }
1845
1846 /* Return function availability.  See cgraph.h for description of individual
1847    return values.  */
1848 enum availability
1849 cgraph_function_body_availability (struct cgraph_node *node)
1850 {
1851   enum availability avail;
1852   gcc_assert (cgraph_function_flags_ready);
1853   if (!node->analyzed)
1854     avail = AVAIL_NOT_AVAILABLE;
1855   else if (node->local.local)
1856     avail = AVAIL_LOCAL;
1857   else if (!node->local.externally_visible)
1858     avail = AVAIL_AVAILABLE;
1859   /* Inline functions are safe to be analyzed even if their sybol can
1860      be overwritten at runtime.  It is not meaningful to enfore any sane
1861      behaviour on replacing inline function by different body.  */
1862   else if (DECL_DECLARED_INLINE_P (node->decl))
1863     avail = AVAIL_AVAILABLE;
1864
1865   /* If the function can be overwritten, return OVERWRITABLE.  Take
1866      care at least of two notable extensions - the COMDAT functions
1867      used to share template instantiations in C++ (this is symmetric
1868      to code cp_cannot_inline_tree_fn and probably shall be shared and
1869      the inlinability hooks completely eliminated).
1870
1871      ??? Does the C++ one definition rule allow us to always return
1872      AVAIL_AVAILABLE here?  That would be good reason to preserve this
1873      bit.  */
1874
1875   else if (DECL_REPLACEABLE_P (node->decl) && !DECL_EXTERNAL (node->decl))
1876     avail = AVAIL_OVERWRITABLE;
1877   else avail = AVAIL_AVAILABLE;
1878
1879   return avail;
1880 }
1881
1882 /* Add the function FNDECL to the call graph.
1883    Unlike cgraph_finalize_function, this function is intended to be used
1884    by middle end and allows insertion of new function at arbitrary point
1885    of compilation.  The function can be either in high, low or SSA form
1886    GIMPLE.
1887
1888    The function is assumed to be reachable and have address taken (so no
1889    API breaking optimizations are performed on it).  
1890
1891    Main work done by this function is to enqueue the function for later
1892    processing to avoid need the passes to be re-entrant.  */
1893
1894 void
1895 cgraph_add_new_function (tree fndecl, bool lowered)
1896 {
1897   struct cgraph_node *node;
1898   switch (cgraph_state)
1899     {
1900       case CGRAPH_STATE_CONSTRUCTION:
1901         /* Just enqueue function to be processed at nearest occurrence.  */
1902         node = cgraph_node (fndecl);
1903         node->next_needed = cgraph_new_nodes;
1904         if (lowered)
1905           node->lowered = true;
1906         cgraph_new_nodes = node;
1907         break;
1908
1909       case CGRAPH_STATE_IPA:
1910       case CGRAPH_STATE_IPA_SSA:
1911       case CGRAPH_STATE_EXPANSION:
1912         /* Bring the function into finalized state and enqueue for later
1913            analyzing and compilation.  */
1914         node = cgraph_node (fndecl);
1915         node->local.local = false;
1916         node->local.finalized = true;
1917         node->reachable = node->needed = true;
1918         if (!lowered && cgraph_state == CGRAPH_STATE_EXPANSION)
1919           {
1920             push_cfun (DECL_STRUCT_FUNCTION (fndecl));
1921             current_function_decl = fndecl;
1922             gimple_register_cfg_hooks ();
1923             tree_lowering_passes (fndecl);
1924             bitmap_obstack_initialize (NULL);
1925             if (!gimple_in_ssa_p (DECL_STRUCT_FUNCTION (fndecl)))
1926               execute_pass_list (pass_early_local_passes.pass.sub);
1927             bitmap_obstack_release (NULL);
1928             pop_cfun ();
1929             current_function_decl = NULL;
1930
1931             lowered = true;
1932           }
1933         if (lowered)
1934           node->lowered = true;
1935         node->next_needed = cgraph_new_nodes;
1936         cgraph_new_nodes = node;
1937         break;
1938
1939       case CGRAPH_STATE_FINISHED:
1940         /* At the very end of compilation we have to do all the work up
1941            to expansion.  */
1942         push_cfun (DECL_STRUCT_FUNCTION (fndecl));
1943         current_function_decl = fndecl;
1944         gimple_register_cfg_hooks ();
1945         if (!lowered)
1946           tree_lowering_passes (fndecl);
1947         bitmap_obstack_initialize (NULL);
1948         if (!gimple_in_ssa_p (DECL_STRUCT_FUNCTION (fndecl)))
1949           execute_pass_list (pass_early_local_passes.pass.sub);
1950         bitmap_obstack_release (NULL);
1951         tree_rest_of_compilation (fndecl);
1952         pop_cfun ();
1953         current_function_decl = NULL;
1954         break;
1955     }
1956 }
1957
1958 /* Return true if NODE can be made local for API change.
1959    Extern inline functions and C++ COMDAT functions can be made local
1960    at the expense of possible code size growth if function is used in multiple
1961    compilation units.  */
1962 bool
1963 cgraph_node_can_be_local_p (struct cgraph_node *node)
1964 {
1965   return !node->needed;
1966 }
1967
1968 /* Bring NODE local.  */
1969 void
1970 cgraph_make_node_local (struct cgraph_node *node)
1971 {
1972   gcc_assert (cgraph_node_can_be_local_p (node));
1973   if (DECL_COMDAT (node->decl) || DECL_EXTERNAL (node->decl))
1974     {
1975       DECL_COMDAT (node->decl) = 0;
1976       DECL_COMDAT_GROUP (node->decl) = 0;
1977       TREE_PUBLIC (node->decl) = 0;
1978       DECL_WEAK (node->decl) = 0;
1979       DECL_EXTERNAL (node->decl) = 0;
1980       node->local.externally_visible = false;
1981       node->local.local = true;
1982       gcc_assert (cgraph_function_body_availability (node) == AVAIL_LOCAL);
1983     }
1984 }
1985
1986 #include "gt-cgraph.h"