OSDN Git Service

PR tree-optimization/45605
[pf3gnuchains/gcc-fork.git] / gcc / cgraphunit.c
1 /* Callgraph based interprocedural optimizations.
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 module implements main driver of compilation process as well as
23    few basic interprocedural optimizers.
24
25    The main scope of this file is to act as an interface in between
26    tree based frontends and the backend (and middle end)
27
28    The front-end is supposed to use following functionality:
29
30     - cgraph_finalize_function
31
32       This function is called once front-end has parsed whole body of function
33       and it is certain that the function body nor the declaration will change.
34
35       (There is one exception needed for implementing GCC extern inline
36         function.)
37
38     - varpool_finalize_variable
39
40       This function has same behavior as the above but is used for static
41       variables.
42
43     - cgraph_finalize_compilation_unit
44
45       This function is called once (source level) compilation unit is finalized
46       and it will no longer change.
47
48       In the the call-graph construction and local function
49       analysis takes place here.  Bodies of unreachable functions are released
50       to conserve memory usage.
51
52       The function can be called multiple times when multiple source level
53       compilation units are combined (such as in C frontend)
54
55     - cgraph_optimize
56
57       In this unit-at-a-time compilation the intra procedural analysis takes
58       place here.  In particular the static functions whose address is never
59       taken are marked as local.  Backend can then use this information to
60       modify calling conventions, do better inlining or similar optimizations.
61
62     - cgraph_mark_needed_node
63     - varpool_mark_needed_node
64
65       When function or variable is referenced by some hidden way the call-graph
66       data structure must be updated accordingly by this function.
67       There should be little need to call this function and all the references
68       should be made explicit to cgraph code.  At present these functions are
69       used by C++ frontend to explicitly mark the keyed methods.
70
71     - analyze_expr callback
72
73       This function is responsible for lowering tree nodes not understood by
74       generic code into understandable ones or alternatively marking
75       callgraph and varpool nodes referenced by the as needed.
76
77       ??? On the tree-ssa genericizing should take place here and we will avoid
78       need for these hooks (replacing them by genericizing hook)
79
80         Analyzing of all functions is deferred
81         to cgraph_finalize_compilation_unit and expansion into cgraph_optimize.
82
83         In cgraph_finalize_compilation_unit the reachable functions are
84         analyzed.  During analysis the call-graph edges from reachable
85         functions are constructed and their destinations are marked as
86         reachable.  References to functions and variables are discovered too
87         and variables found to be needed output to the assembly file.  Via
88         mark_referenced call in assemble_variable functions referenced by
89         static variables are noticed too.
90
91         The intra-procedural information is produced and its existence
92         indicated by global_info_ready.  Once this flag is set it is impossible
93         to change function from !reachable to reachable and thus
94         assemble_variable no longer call mark_referenced.
95
96         Finally the call-graph is topologically sorted and all reachable functions
97         that has not been completely inlined or are not external are output.
98
99         ??? It is possible that reference to function or variable is optimized
100         out.  We can not deal with this nicely because topological order is not
101         suitable for it.  For tree-ssa we may consider another pass doing
102         optimization and re-discovering reachable functions.
103
104         ??? Reorganize code so variables are output very last and only if they
105         really has been referenced by produced code, so we catch more cases
106         where reference has been optimized out.  */
107
108
109 #include "config.h"
110 #include "system.h"
111 #include "coretypes.h"
112 #include "tm.h"
113 #include "tree.h"
114 #include "rtl.h"
115 #include "tree-flow.h"
116 #include "tree-inline.h"
117 #include "langhooks.h"
118 #include "pointer-set.h"
119 #include "toplev.h"
120 #include "flags.h"
121 #include "ggc.h"
122 #include "debug.h"
123 #include "target.h"
124 #include "cgraph.h"
125 #include "diagnostic.h"
126 #include "tree-pretty-print.h"
127 #include "gimple-pretty-print.h"
128 #include "timevar.h"
129 #include "params.h"
130 #include "fibheap.h"
131 #include "intl.h"
132 #include "function.h"
133 #include "ipa-prop.h"
134 #include "gimple.h"
135 #include "tree-iterator.h"
136 #include "tree-pass.h"
137 #include "tree-dump.h"
138 #include "output.h"
139 #include "coverage.h"
140 #include "plugin.h"
141
142 static void cgraph_expand_all_functions (void);
143 static void cgraph_mark_functions_to_output (void);
144 static void cgraph_expand_function (struct cgraph_node *);
145 static void cgraph_output_pending_asms (void);
146 static void cgraph_analyze_function (struct cgraph_node *);
147
148 FILE *cgraph_dump_file;
149
150 /* Used for vtable lookup in thunk adjusting.  */
151 static GTY (()) tree vtable_entry_type;
152
153 /* Determine if function DECL is needed.  That is, visible to something
154    either outside this translation unit, something magic in the system
155    configury.  */
156
157 bool
158 cgraph_decide_is_function_needed (struct cgraph_node *node, tree decl)
159 {
160   /* If the user told us it is used, then it must be so.  */
161   if (node->local.externally_visible)
162     return true;
163
164   /* ??? If the assembler name is set by hand, it is possible to assemble
165      the name later after finalizing the function and the fact is noticed
166      in assemble_name then.  This is arguably a bug.  */
167   if (DECL_ASSEMBLER_NAME_SET_P (decl)
168       && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
169     return true;
170
171   /* With -fkeep-inline-functions we are keeping all inline functions except
172      for extern inline ones.  */
173   if (flag_keep_inline_functions
174       && DECL_DECLARED_INLINE_P (decl)
175       && !DECL_EXTERNAL (decl)
176       && !lookup_attribute ("always_inline", DECL_ATTRIBUTES (decl)))
177      return true;
178
179   /* If we decided it was needed before, but at the time we didn't have
180      the body of the function available, then it's still needed.  We have
181      to go back and re-check its dependencies now.  */
182   if (node->needed)
183     return true;
184
185   /* Externally visible functions must be output.  The exception is
186      COMDAT functions that must be output only when they are needed.
187
188      When not optimizing, also output the static functions. (see
189      PR24561), but don't do so for always_inline functions, functions
190      declared inline and nested functions.  These were optimized out
191      in the original implementation and it is unclear whether we want
192      to change the behavior here.  */
193   if (((TREE_PUBLIC (decl)
194         || (!optimize
195             && !node->local.disregard_inline_limits
196             && !DECL_DECLARED_INLINE_P (decl)
197             && !(DECL_CONTEXT (decl)
198                  && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL)))
199        && !flag_whole_program
200        && !flag_lto
201        && !flag_whopr)
202       && !DECL_COMDAT (decl) && !DECL_EXTERNAL (decl))
203     return true;
204
205   return false;
206 }
207
208 /* Process CGRAPH_NEW_FUNCTIONS and perform actions necessary to add these
209    functions into callgraph in a way so they look like ordinary reachable
210    functions inserted into callgraph already at construction time.  */
211
212 bool
213 cgraph_process_new_functions (void)
214 {
215   bool output = false;
216   tree fndecl;
217   struct cgraph_node *node;
218
219   varpool_analyze_pending_decls ();
220   /*  Note that this queue may grow as its being processed, as the new
221       functions may generate new ones.  */
222   while (cgraph_new_nodes)
223     {
224       node = cgraph_new_nodes;
225       fndecl = node->decl;
226       cgraph_new_nodes = cgraph_new_nodes->next_needed;
227       switch (cgraph_state)
228         {
229         case CGRAPH_STATE_CONSTRUCTION:
230           /* At construction time we just need to finalize function and move
231              it into reachable functions list.  */
232
233           node->next_needed = NULL;
234           cgraph_finalize_function (fndecl, false);
235           cgraph_mark_reachable_node (node);
236           output = true;
237           break;
238
239         case CGRAPH_STATE_IPA:
240         case CGRAPH_STATE_IPA_SSA:
241           /* When IPA optimization already started, do all essential
242              transformations that has been already performed on the whole
243              cgraph but not on this function.  */
244
245           gimple_register_cfg_hooks ();
246           if (!node->analyzed)
247             cgraph_analyze_function (node);
248           push_cfun (DECL_STRUCT_FUNCTION (fndecl));
249           current_function_decl = fndecl;
250           compute_inline_parameters (node);
251           if ((cgraph_state == CGRAPH_STATE_IPA_SSA
252               && !gimple_in_ssa_p (DECL_STRUCT_FUNCTION (fndecl)))
253               /* When not optimizing, be sure we run early local passes anyway
254                  to expand OMP.  */
255               || !optimize)
256             execute_pass_list (pass_early_local_passes.pass.sub);
257           free_dominance_info (CDI_POST_DOMINATORS);
258           free_dominance_info (CDI_DOMINATORS);
259           pop_cfun ();
260           current_function_decl = NULL;
261           break;
262
263         case CGRAPH_STATE_EXPANSION:
264           /* Functions created during expansion shall be compiled
265              directly.  */
266           node->process = 0;
267           cgraph_expand_function (node);
268           break;
269
270         default:
271           gcc_unreachable ();
272           break;
273         }
274       cgraph_call_function_insertion_hooks (node);
275       varpool_analyze_pending_decls ();
276     }
277   return output;
278 }
279
280 /* As an GCC extension we allow redefinition of the function.  The
281    semantics when both copies of bodies differ is not well defined.
282    We replace the old body with new body so in unit at a time mode
283    we always use new body, while in normal mode we may end up with
284    old body inlined into some functions and new body expanded and
285    inlined in others.
286
287    ??? It may make more sense to use one body for inlining and other
288    body for expanding the function but this is difficult to do.  */
289
290 static void
291 cgraph_reset_node (struct cgraph_node *node)
292 {
293   /* If node->process is set, then we have already begun whole-unit analysis.
294      This is *not* testing for whether we've already emitted the function.
295      That case can be sort-of legitimately seen with real function redefinition
296      errors.  I would argue that the front end should never present us with
297      such a case, but don't enforce that for now.  */
298   gcc_assert (!node->process);
299
300   /* Reset our data structures so we can analyze the function again.  */
301   memset (&node->local, 0, sizeof (node->local));
302   memset (&node->global, 0, sizeof (node->global));
303   memset (&node->rtl, 0, sizeof (node->rtl));
304   node->analyzed = false;
305   node->local.redefined_extern_inline = true;
306   node->local.finalized = false;
307
308   cgraph_node_remove_callees (node);
309
310   /* We may need to re-queue the node for assembling in case
311      we already proceeded it and ignored as not needed or got
312      a re-declaration in IMA mode.  */
313   if (node->reachable)
314     {
315       struct cgraph_node *n;
316
317       for (n = cgraph_nodes_queue; n; n = n->next_needed)
318         if (n == node)
319           break;
320       if (!n)
321         node->reachable = 0;
322     }
323 }
324
325 static void
326 cgraph_lower_function (struct cgraph_node *node)
327 {
328   if (node->lowered)
329     return;
330
331   if (node->nested)
332     lower_nested_functions (node->decl);
333   gcc_assert (!node->nested);
334
335   tree_lowering_passes (node->decl);
336   node->lowered = true;
337 }
338
339 /* DECL has been parsed.  Take it, queue it, compile it at the whim of the
340    logic in effect.  If NESTED is true, then our caller cannot stand to have
341    the garbage collector run at the moment.  We would need to either create
342    a new GC context, or just not compile right now.  */
343
344 void
345 cgraph_finalize_function (tree decl, bool nested)
346 {
347   struct cgraph_node *node = cgraph_node (decl);
348
349   if (node->local.finalized)
350     cgraph_reset_node (node);
351
352   node->pid = cgraph_max_pid ++;
353   notice_global_symbol (decl);
354   node->local.finalized = true;
355   node->lowered = DECL_STRUCT_FUNCTION (decl)->cfg != NULL;
356   node->finalized_by_frontend = true;
357
358   if (cgraph_decide_is_function_needed (node, decl))
359     cgraph_mark_needed_node (node);
360
361   /* Since we reclaim unreachable nodes at the end of every language
362      level unit, we need to be conservative about possible entry points
363      there.  */
364   if ((TREE_PUBLIC (decl) && !DECL_COMDAT (decl) && !DECL_EXTERNAL (decl))
365       || DECL_STATIC_CONSTRUCTOR (decl)
366       || DECL_STATIC_DESTRUCTOR (decl))
367     cgraph_mark_reachable_node (node);
368
369   /* If we've not yet emitted decl, tell the debug info about it.  */
370   if (!TREE_ASM_WRITTEN (decl))
371     (*debug_hooks->deferred_inline_function) (decl);
372
373   /* Possibly warn about unused parameters.  */
374   if (warn_unused_parameter)
375     do_warn_unused_parameter (decl);
376
377   if (!nested)
378     ggc_collect ();
379 }
380
381 /* C99 extern inline keywords allow changing of declaration after function
382    has been finalized.  We need to re-decide if we want to mark the function as
383    needed then.   */
384
385 void
386 cgraph_mark_if_needed (tree decl)
387 {
388   struct cgraph_node *node = cgraph_node (decl);
389   if (node->local.finalized && cgraph_decide_is_function_needed (node, decl))
390     cgraph_mark_needed_node (node);
391 }
392
393 #ifdef ENABLE_CHECKING
394 /* Return TRUE if NODE2 is equivalent to NODE or its clone.  */
395 static bool
396 clone_of_p (struct cgraph_node *node, struct cgraph_node *node2)
397 {
398   while (node != node2 && node2)
399     node2 = node2->clone_of;
400   return node2 != NULL;
401 }
402 #endif
403
404 /* Verify edge E count and frequency.  */
405
406 static bool
407 verify_edge_count_and_frequency (struct cgraph_edge *e)
408 {
409   bool error_found = false;
410   if (e->count < 0)
411     {
412       error ("caller edge count is negative");
413       error_found = true;
414     }
415   if (e->frequency < 0)
416     {
417       error ("caller edge frequency is negative");
418       error_found = true;
419     }
420   if (e->frequency > CGRAPH_FREQ_MAX)
421     {
422       error ("caller edge frequency is too large");
423       error_found = true;
424     }
425   if (gimple_has_body_p (e->caller->decl)
426       && !e->caller->global.inlined_to
427       && (e->frequency
428           != compute_call_stmt_bb_frequency (e->caller->decl,
429                                              gimple_bb (e->call_stmt))))
430     {
431       error ("caller edge frequency %i does not match BB freqency %i",
432              e->frequency,
433              compute_call_stmt_bb_frequency (e->caller->decl,
434                                              gimple_bb (e->call_stmt)));
435       error_found = true;
436     }
437   return error_found;
438 }
439
440 /* Verify cgraph nodes of given cgraph node.  */
441 DEBUG_FUNCTION void
442 verify_cgraph_node (struct cgraph_node *node)
443 {
444   struct cgraph_edge *e;
445   struct function *this_cfun = DECL_STRUCT_FUNCTION (node->decl);
446   struct function *saved_cfun = cfun;
447   basic_block this_block;
448   gimple_stmt_iterator gsi;
449   bool error_found = false;
450
451   if (seen_error ())
452     return;
453
454   timevar_push (TV_CGRAPH_VERIFY);
455   /* debug_generic_stmt needs correct cfun */
456   set_cfun (this_cfun);
457   for (e = node->callees; e; e = e->next_callee)
458     if (e->aux)
459       {
460         error ("aux field set for edge %s->%s",
461                identifier_to_locale (cgraph_node_name (e->caller)),
462                identifier_to_locale (cgraph_node_name (e->callee)));
463         error_found = true;
464       }
465   if (node->count < 0)
466     {
467       error ("Execution count is negative");
468       error_found = true;
469     }
470   if (node->global.inlined_to && node->local.externally_visible)
471     {
472       error ("Externally visible inline clone");
473       error_found = true;
474     }
475   if (node->global.inlined_to && node->address_taken)
476     {
477       error ("Inline clone with address taken");
478       error_found = true;
479     }
480   if (node->global.inlined_to && node->needed)
481     {
482       error ("Inline clone is needed");
483       error_found = true;
484     }
485   for (e = node->indirect_calls; e; e = e->next_callee)
486     {
487       if (e->aux)
488         {
489           error ("aux field set for indirect edge from %s",
490                  identifier_to_locale (cgraph_node_name (e->caller)));
491           error_found = true;
492         }
493       if (!e->indirect_unknown_callee
494           || !e->indirect_info)
495         {
496           error ("An indirect edge from %s is not marked as indirect or has "
497                  "associated indirect_info, the corresponding statement is: ",
498                  identifier_to_locale (cgraph_node_name (e->caller)));
499           debug_gimple_stmt (e->call_stmt);
500           error_found = true;
501         }
502     }
503   for (e = node->callers; e; e = e->next_caller)
504     {
505       if (verify_edge_count_and_frequency (e))
506         error_found = true;
507       if (!e->inline_failed)
508         {
509           if (node->global.inlined_to
510               != (e->caller->global.inlined_to
511                   ? e->caller->global.inlined_to : e->caller))
512             {
513               error ("inlined_to pointer is wrong");
514               error_found = true;
515             }
516           if (node->callers->next_caller)
517             {
518               error ("multiple inline callers");
519               error_found = true;
520             }
521         }
522       else
523         if (node->global.inlined_to)
524           {
525             error ("inlined_to pointer set for noninline callers");
526             error_found = true;
527           }
528     }
529   for (e = node->indirect_calls; e; e = e->next_callee)
530     if (verify_edge_count_and_frequency (e))
531       error_found = true;
532   if (!node->callers && node->global.inlined_to)
533     {
534       error ("inlined_to pointer is set but no predecessors found");
535       error_found = true;
536     }
537   if (node->global.inlined_to == node)
538     {
539       error ("inlined_to pointer refers to itself");
540       error_found = true;
541     }
542
543   if (!cgraph_node (node->decl))
544     {
545       error ("node not found in cgraph_hash");
546       error_found = true;
547     }
548
549   if (node->clone_of)
550     {
551       struct cgraph_node *n;
552       for (n = node->clone_of->clones; n; n = n->next_sibling_clone)
553         if (n == node)
554           break;
555       if (!n)
556         {
557           error ("node has wrong clone_of");
558           error_found = true;
559         }
560     }
561   if (node->clones)
562     {
563       struct cgraph_node *n;
564       for (n = node->clones; n; n = n->next_sibling_clone)
565         if (n->clone_of != node)
566           break;
567       if (n)
568         {
569           error ("node has wrong clone list");
570           error_found = true;
571         }
572     }
573   if ((node->prev_sibling_clone || node->next_sibling_clone) && !node->clone_of)
574     {
575        error ("node is in clone list but it is not clone");
576        error_found = true;
577     }
578   if (!node->prev_sibling_clone && node->clone_of && node->clone_of->clones != node)
579     {
580       error ("node has wrong prev_clone pointer");
581       error_found = true;
582     }
583   if (node->prev_sibling_clone && node->prev_sibling_clone->next_sibling_clone != node)
584     {
585       error ("double linked list of clones corrupted");
586       error_found = true;
587     }
588   if (node->same_comdat_group)
589     {
590       struct cgraph_node *n = node->same_comdat_group;
591
592       if (!DECL_ONE_ONLY (node->decl))
593         {
594           error ("non-DECL_ONE_ONLY node in a same_comdat_group list");
595           error_found = true;
596         }
597       if (n == node)
598         {
599           error ("node is alone in a comdat group");
600           error_found = true;
601         }
602       do
603         {
604           if (!n->same_comdat_group)
605             {
606               error ("same_comdat_group is not a circular list");
607               error_found = true;
608               break;
609             }
610           n = n->same_comdat_group;
611         }
612       while (n != node);
613     }
614
615   if (node->analyzed && gimple_has_body_p (node->decl)
616       && !TREE_ASM_WRITTEN (node->decl)
617       && (!DECL_EXTERNAL (node->decl) || node->global.inlined_to)
618       && !flag_wpa)
619     {
620       if (this_cfun->cfg)
621         {
622           /* The nodes we're interested in are never shared, so walk
623              the tree ignoring duplicates.  */
624           struct pointer_set_t *visited_nodes = pointer_set_create ();
625           /* Reach the trees by walking over the CFG, and note the
626              enclosing basic-blocks in the call edges.  */
627           FOR_EACH_BB_FN (this_block, this_cfun)
628             for (gsi = gsi_start_bb (this_block);
629                  !gsi_end_p (gsi);
630                  gsi_next (&gsi))
631               {
632                 gimple stmt = gsi_stmt (gsi);
633                 if (is_gimple_call (stmt))
634                   {
635                     struct cgraph_edge *e = cgraph_edge (node, stmt);
636                     tree decl = gimple_call_fndecl (stmt);
637                     if (e)
638                       {
639                         if (e->aux)
640                           {
641                             error ("shared call_stmt:");
642                             debug_gimple_stmt (stmt);
643                             error_found = true;
644                           }
645                         if (!e->indirect_unknown_callee)
646                           {
647                             if (e->callee->same_body_alias)
648                               {
649                                 error ("edge points to same body alias:");
650                                 debug_tree (e->callee->decl);
651                                 error_found = true;
652                               }
653 #ifdef ENABLE_CHECKING
654                             else if (!e->callee->global.inlined_to
655                                      && decl
656                                      && cgraph_get_node (decl)
657                                      && (e->callee->former_clone_of
658                                          != cgraph_get_node (decl)->decl)
659                                      && !clone_of_p (cgraph_node (decl),
660                                                      e->callee))
661                               {
662                                 error ("edge points to wrong declaration:");
663                                 debug_tree (e->callee->decl);
664                                 fprintf (stderr," Instead of:");
665                                 debug_tree (decl);
666                                 error_found = true;
667                               }
668 #endif
669                           }
670                         else if (decl)
671                           {
672                             error ("an indirect edge with unknown callee "
673                                    "corresponding to a call_stmt with "
674                                    "a known declaration:");
675                             error_found = true;
676                             debug_gimple_stmt (e->call_stmt);
677                           }
678                         e->aux = (void *)1;
679                       }
680                     else if (decl)
681                       {
682                         error ("missing callgraph edge for call stmt:");
683                         debug_gimple_stmt (stmt);
684                         error_found = true;
685                       }
686                   }
687               }
688           pointer_set_destroy (visited_nodes);
689         }
690       else
691         /* No CFG available?!  */
692         gcc_unreachable ();
693
694       for (e = node->callees; e; e = e->next_callee)
695         {
696           if (!e->aux)
697             {
698               error ("edge %s->%s has no corresponding call_stmt",
699                      identifier_to_locale (cgraph_node_name (e->caller)),
700                      identifier_to_locale (cgraph_node_name (e->callee)));
701               debug_gimple_stmt (e->call_stmt);
702               error_found = true;
703             }
704           e->aux = 0;
705         }
706       for (e = node->indirect_calls; e; e = e->next_callee)
707         {
708           if (!e->aux)
709             {
710               error ("an indirect edge from %s has no corresponding call_stmt",
711                      identifier_to_locale (cgraph_node_name (e->caller)));
712               debug_gimple_stmt (e->call_stmt);
713               error_found = true;
714             }
715           e->aux = 0;
716         }
717     }
718   if (error_found)
719     {
720       dump_cgraph_node (stderr, node);
721       internal_error ("verify_cgraph_node failed");
722     }
723   set_cfun (saved_cfun);
724   timevar_pop (TV_CGRAPH_VERIFY);
725 }
726
727 /* Verify whole cgraph structure.  */
728 DEBUG_FUNCTION void
729 verify_cgraph (void)
730 {
731   struct cgraph_node *node;
732
733   if (seen_error ())
734     return;
735
736   for (node = cgraph_nodes; node; node = node->next)
737     verify_cgraph_node (node);
738 }
739
740 /* Output all asm statements we have stored up to be output.  */
741
742 static void
743 cgraph_output_pending_asms (void)
744 {
745   struct cgraph_asm_node *can;
746
747   if (seen_error ())
748     return;
749
750   for (can = cgraph_asm_nodes; can; can = can->next)
751     assemble_asm (can->asm_str);
752   cgraph_asm_nodes = NULL;
753 }
754
755 /* Analyze the function scheduled to be output.  */
756 static void
757 cgraph_analyze_function (struct cgraph_node *node)
758 {
759   tree save = current_function_decl;
760   tree decl = node->decl;
761
762   current_function_decl = decl;
763   push_cfun (DECL_STRUCT_FUNCTION (decl));
764
765   assign_assembler_name_if_neeeded (node->decl);
766
767   /* Make sure to gimplify bodies only once.  During analyzing a
768      function we lower it, which will require gimplified nested
769      functions, so we can end up here with an already gimplified
770      body.  */
771   if (!gimple_body (decl))
772     gimplify_function_tree (decl);
773   dump_function (TDI_generic, decl);
774
775   cgraph_lower_function (node);
776   node->analyzed = true;
777
778   pop_cfun ();
779   current_function_decl = save;
780 }
781
782 /* Look for externally_visible and used attributes and mark cgraph nodes
783    accordingly.
784
785    We cannot mark the nodes at the point the attributes are processed (in
786    handle_*_attribute) because the copy of the declarations available at that
787    point may not be canonical.  For example, in:
788
789     void f();
790     void f() __attribute__((used));
791
792    the declaration we see in handle_used_attribute will be the second
793    declaration -- but the front end will subsequently merge that declaration
794    with the original declaration and discard the second declaration.
795
796    Furthermore, we can't mark these nodes in cgraph_finalize_function because:
797
798     void f() {}
799     void f() __attribute__((externally_visible));
800
801    is valid.
802
803    So, we walk the nodes at the end of the translation unit, applying the
804    attributes at that point.  */
805
806 static void
807 process_function_and_variable_attributes (struct cgraph_node *first,
808                                           struct varpool_node *first_var)
809 {
810   struct cgraph_node *node;
811   struct varpool_node *vnode;
812
813   for (node = cgraph_nodes; node != first; node = node->next)
814     {
815       tree decl = node->decl;
816       if (DECL_PRESERVE_P (decl))
817         cgraph_mark_needed_node (node);
818       if (lookup_attribute ("externally_visible", DECL_ATTRIBUTES (decl)))
819         {
820           if (! TREE_PUBLIC (node->decl))
821             warning_at (DECL_SOURCE_LOCATION (node->decl), OPT_Wattributes,
822                         "%<externally_visible%>"
823                         " attribute have effect only on public objects");
824           else if (node->local.finalized)
825              cgraph_mark_needed_node (node);
826         }
827     }
828   for (vnode = varpool_nodes; vnode != first_var; vnode = vnode->next)
829     {
830       tree decl = vnode->decl;
831       if (DECL_PRESERVE_P (decl))
832         {
833           vnode->force_output = true;
834           if (vnode->finalized)
835             varpool_mark_needed_node (vnode);
836         }
837       if (lookup_attribute ("externally_visible", DECL_ATTRIBUTES (decl)))
838         {
839           if (! TREE_PUBLIC (vnode->decl))
840             warning_at (DECL_SOURCE_LOCATION (vnode->decl), OPT_Wattributes,
841                         "%<externally_visible%>"
842                         " attribute have effect only on public objects");
843           else if (vnode->finalized)
844             varpool_mark_needed_node (vnode);
845         }
846     }
847 }
848
849 /* Process CGRAPH_NODES_NEEDED queue, analyze each function (and transitively
850    each reachable functions) and build cgraph.
851    The function can be called multiple times after inserting new nodes
852    into beginning of queue.  Just the new part of queue is re-scanned then.  */
853
854 static void
855 cgraph_analyze_functions (void)
856 {
857   /* Keep track of already processed nodes when called multiple times for
858      intermodule optimization.  */
859   static struct cgraph_node *first_analyzed;
860   struct cgraph_node *first_processed = first_analyzed;
861   static struct varpool_node *first_analyzed_var;
862   struct cgraph_node *node, *next;
863
864   bitmap_obstack_initialize (NULL);
865   process_function_and_variable_attributes (first_processed,
866                                             first_analyzed_var);
867   first_processed = cgraph_nodes;
868   first_analyzed_var = varpool_nodes;
869   varpool_analyze_pending_decls ();
870   if (cgraph_dump_file)
871     {
872       fprintf (cgraph_dump_file, "Initial entry points:");
873       for (node = cgraph_nodes; node != first_analyzed; node = node->next)
874         if (node->needed)
875           fprintf (cgraph_dump_file, " %s", cgraph_node_name (node));
876       fprintf (cgraph_dump_file, "\n");
877     }
878   cgraph_process_new_functions ();
879
880   /* Propagate reachability flag and lower representation of all reachable
881      functions.  In the future, lowering will introduce new functions and
882      new entry points on the way (by template instantiation and virtual
883      method table generation for instance).  */
884   while (cgraph_nodes_queue)
885     {
886       struct cgraph_edge *edge;
887       tree decl = cgraph_nodes_queue->decl;
888
889       node = cgraph_nodes_queue;
890       cgraph_nodes_queue = cgraph_nodes_queue->next_needed;
891       node->next_needed = NULL;
892
893       /* ??? It is possible to create extern inline function and later using
894          weak alias attribute to kill its body. See
895          gcc.c-torture/compile/20011119-1.c  */
896       if (!DECL_STRUCT_FUNCTION (decl))
897         {
898           cgraph_reset_node (node);
899           continue;
900         }
901
902       if (!node->analyzed)
903         cgraph_analyze_function (node);
904
905       for (edge = node->callees; edge; edge = edge->next_callee)
906         if (!edge->callee->reachable)
907           cgraph_mark_reachable_node (edge->callee);
908
909       if (node->same_comdat_group)
910         {
911           for (next = node->same_comdat_group;
912                next != node;
913                next = next->same_comdat_group)
914             cgraph_mark_reachable_node (next);
915         }
916
917       /* If decl is a clone of an abstract function, mark that abstract
918          function so that we don't release its body. The DECL_INITIAL() of that
919          abstract function declaration will be later needed to output debug info.  */
920       if (DECL_ABSTRACT_ORIGIN (decl))
921         {
922           struct cgraph_node *origin_node = cgraph_node (DECL_ABSTRACT_ORIGIN (decl));
923           origin_node->abstract_and_needed = true;
924         }
925
926       /* We finalize local static variables during constructing callgraph
927          edges.  Process their attributes too.  */
928       process_function_and_variable_attributes (first_processed,
929                                                 first_analyzed_var);
930       first_processed = cgraph_nodes;
931       first_analyzed_var = varpool_nodes;
932       varpool_analyze_pending_decls ();
933       cgraph_process_new_functions ();
934     }
935
936   /* Collect entry points to the unit.  */
937   if (cgraph_dump_file)
938     {
939       fprintf (cgraph_dump_file, "Unit entry points:");
940       for (node = cgraph_nodes; node != first_analyzed; node = node->next)
941         if (node->needed)
942           fprintf (cgraph_dump_file, " %s", cgraph_node_name (node));
943       fprintf (cgraph_dump_file, "\n\nInitial ");
944       dump_cgraph (cgraph_dump_file);
945     }
946
947   if (cgraph_dump_file)
948     fprintf (cgraph_dump_file, "\nReclaiming functions:");
949
950   for (node = cgraph_nodes; node != first_analyzed; node = next)
951     {
952       tree decl = node->decl;
953       next = node->next;
954
955       if (node->local.finalized && !gimple_has_body_p (decl))
956         cgraph_reset_node (node);
957
958       if (!node->reachable && gimple_has_body_p (decl))
959         {
960           if (cgraph_dump_file)
961             fprintf (cgraph_dump_file, " %s", cgraph_node_name (node));
962           cgraph_remove_node (node);
963           continue;
964         }
965       else
966         node->next_needed = NULL;
967       gcc_assert (!node->local.finalized || gimple_has_body_p (decl));
968       gcc_assert (node->analyzed == node->local.finalized);
969     }
970   if (cgraph_dump_file)
971     {
972       fprintf (cgraph_dump_file, "\n\nReclaimed ");
973       dump_cgraph (cgraph_dump_file);
974     }
975   bitmap_obstack_release (NULL);
976   first_analyzed = cgraph_nodes;
977   ggc_collect ();
978 }
979
980
981 /* Analyze the whole compilation unit once it is parsed completely.  */
982
983 void
984 cgraph_finalize_compilation_unit (void)
985 {
986   timevar_push (TV_CGRAPH);
987
988   /* Do not skip analyzing the functions if there were errors, we
989      miss diagnostics for following functions otherwise.  */
990
991   /* Emit size functions we didn't inline.  */
992   finalize_size_functions ();
993
994   /* Mark alias targets necessary and emit diagnostics.  */
995   finish_aliases_1 ();
996
997   if (!quiet_flag)
998     {
999       fprintf (stderr, "\nAnalyzing compilation unit\n");
1000       fflush (stderr);
1001     }
1002
1003   /* Gimplify and lower all functions, compute reachability and
1004      remove unreachable nodes.  */
1005   cgraph_analyze_functions ();
1006
1007   /* Mark alias targets necessary and emit diagnostics.  */
1008   finish_aliases_1 ();
1009
1010   /* Gimplify and lower thunks.  */
1011   cgraph_analyze_functions ();
1012
1013   /* Finally drive the pass manager.  */
1014   cgraph_optimize ();
1015
1016   timevar_pop (TV_CGRAPH);
1017 }
1018
1019
1020 /* Figure out what functions we want to assemble.  */
1021
1022 static void
1023 cgraph_mark_functions_to_output (void)
1024 {
1025   struct cgraph_node *node;
1026 #ifdef ENABLE_CHECKING
1027   bool check_same_comdat_groups = false;
1028
1029   for (node = cgraph_nodes; node; node = node->next)
1030     gcc_assert (!node->process);
1031 #endif
1032
1033   for (node = cgraph_nodes; node; node = node->next)
1034     {
1035       tree decl = node->decl;
1036       struct cgraph_edge *e;
1037
1038       gcc_assert (!node->process || node->same_comdat_group);
1039       if (node->process)
1040         continue;
1041
1042       for (e = node->callers; e; e = e->next_caller)
1043         if (e->inline_failed)
1044           break;
1045
1046       /* We need to output all local functions that are used and not
1047          always inlined, as well as those that are reachable from
1048          outside the current compilation unit.  */
1049       if (node->analyzed
1050           && !node->global.inlined_to
1051           && (!cgraph_only_called_directly_p (node)
1052               || (e && node->reachable))
1053           && !TREE_ASM_WRITTEN (decl)
1054           && !DECL_EXTERNAL (decl))
1055         {
1056           node->process = 1;
1057           if (node->same_comdat_group)
1058             {
1059               struct cgraph_node *next;
1060               for (next = node->same_comdat_group;
1061                    next != node;
1062                    next = next->same_comdat_group)
1063                 next->process = 1;
1064             }
1065         }
1066       else if (node->same_comdat_group)
1067         {
1068 #ifdef ENABLE_CHECKING
1069           check_same_comdat_groups = true;
1070 #endif
1071         }
1072       else
1073         {
1074           /* We should've reclaimed all functions that are not needed.  */
1075 #ifdef ENABLE_CHECKING
1076           if (!node->global.inlined_to
1077               && gimple_has_body_p (decl)
1078               /* FIXME: in ltrans unit when offline copy is outside partition but inline copies
1079                  are inside partition, we can end up not removing the body since we no longer
1080                  have analyzed node pointing to it.  */
1081               && !node->in_other_partition
1082               && !DECL_EXTERNAL (decl))
1083             {
1084               dump_cgraph_node (stderr, node);
1085               internal_error ("failed to reclaim unneeded function");
1086             }
1087 #endif
1088           gcc_assert (node->global.inlined_to
1089                       || !gimple_has_body_p (decl)
1090                       || node->in_other_partition
1091                       || DECL_EXTERNAL (decl));
1092
1093         }
1094
1095     }
1096 #ifdef ENABLE_CHECKING
1097   if (check_same_comdat_groups)
1098     for (node = cgraph_nodes; node; node = node->next)
1099       if (node->same_comdat_group && !node->process)
1100         {
1101           tree decl = node->decl;
1102           if (!node->global.inlined_to
1103               && gimple_has_body_p (decl)
1104               /* FIXME: in ltrans unit when offline copy is outside partition but inline copies
1105                  are inside partition, we can end up not removing the body since we no longer
1106                  have analyzed node pointing to it.  */
1107               && !node->in_other_partition
1108               && !DECL_EXTERNAL (decl))
1109             {
1110               dump_cgraph_node (stderr, node);
1111               internal_error ("failed to reclaim unneeded function");
1112             }
1113         }
1114 #endif
1115 }
1116
1117 /* DECL is FUNCTION_DECL.  Initialize datastructures so DECL is a function
1118    in lowered gimple form.
1119    
1120    Set current_function_decl and cfun to newly constructed empty function body.
1121    return basic block in the function body.  */
1122
1123 static basic_block
1124 init_lowered_empty_function (tree decl)
1125 {
1126   basic_block bb;
1127
1128   current_function_decl = decl;
1129   allocate_struct_function (decl, false);
1130   gimple_register_cfg_hooks ();
1131   init_empty_tree_cfg ();
1132   init_tree_ssa (cfun);
1133   init_ssa_operands ();
1134   cfun->gimple_df->in_ssa_p = true;
1135   DECL_INITIAL (decl) = make_node (BLOCK);
1136
1137   DECL_SAVED_TREE (decl) = error_mark_node;
1138   cfun->curr_properties |=
1139     (PROP_gimple_lcf | PROP_gimple_leh | PROP_cfg | PROP_referenced_vars |
1140      PROP_ssa);
1141
1142   /* Create BB for body of the function and connect it properly.  */
1143   bb = create_basic_block (NULL, (void *) 0, ENTRY_BLOCK_PTR);
1144   make_edge (ENTRY_BLOCK_PTR, bb, 0);
1145   make_edge (bb, EXIT_BLOCK_PTR, 0);
1146
1147   return bb;
1148 }
1149
1150 /* Adjust PTR by the constant FIXED_OFFSET, and by the vtable
1151    offset indicated by VIRTUAL_OFFSET, if that is
1152    non-null. THIS_ADJUSTING is nonzero for a this adjusting thunk and
1153    zero for a result adjusting thunk.  */
1154
1155 static tree
1156 thunk_adjust (gimple_stmt_iterator * bsi,
1157               tree ptr, bool this_adjusting,
1158               HOST_WIDE_INT fixed_offset, tree virtual_offset)
1159 {
1160   gimple stmt;
1161   tree ret;
1162
1163   if (this_adjusting
1164       && fixed_offset != 0)
1165     {
1166       stmt = gimple_build_assign (ptr,
1167                                   fold_build2_loc (input_location,
1168                                                    POINTER_PLUS_EXPR,
1169                                                    TREE_TYPE (ptr), ptr,
1170                                                    size_int (fixed_offset)));
1171       gsi_insert_after (bsi, stmt, GSI_NEW_STMT);
1172     }
1173
1174   /* If there's a virtual offset, look up that value in the vtable and
1175      adjust the pointer again.  */
1176   if (virtual_offset)
1177     {
1178       tree vtabletmp;
1179       tree vtabletmp2;
1180       tree vtabletmp3;
1181       tree offsettmp;
1182
1183       if (!vtable_entry_type)
1184         {
1185           tree vfunc_type = make_node (FUNCTION_TYPE);
1186           TREE_TYPE (vfunc_type) = integer_type_node;
1187           TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
1188           layout_type (vfunc_type);
1189
1190           vtable_entry_type = build_pointer_type (vfunc_type);
1191         }
1192
1193       vtabletmp =
1194         create_tmp_var (build_pointer_type
1195                         (build_pointer_type (vtable_entry_type)), "vptr");
1196
1197       /* The vptr is always at offset zero in the object.  */
1198       stmt = gimple_build_assign (vtabletmp,
1199                                   build1 (NOP_EXPR, TREE_TYPE (vtabletmp),
1200                                           ptr));
1201       gsi_insert_after (bsi, stmt, GSI_NEW_STMT);
1202       mark_symbols_for_renaming (stmt);
1203       find_referenced_vars_in (stmt);
1204
1205       /* Form the vtable address.  */
1206       vtabletmp2 = create_tmp_var (TREE_TYPE (TREE_TYPE (vtabletmp)),
1207                                    "vtableaddr");
1208       stmt = gimple_build_assign (vtabletmp2,
1209                                   build_simple_mem_ref (vtabletmp));
1210       gsi_insert_after (bsi, stmt, GSI_NEW_STMT);
1211       mark_symbols_for_renaming (stmt);
1212       find_referenced_vars_in (stmt);
1213
1214       /* Find the entry with the vcall offset.  */
1215       stmt = gimple_build_assign (vtabletmp2,
1216                                   fold_build2_loc (input_location,
1217                                                    POINTER_PLUS_EXPR,
1218                                                    TREE_TYPE (vtabletmp2),
1219                                                    vtabletmp2,
1220                                                    fold_convert (sizetype,
1221                                                                  virtual_offset)));
1222       gsi_insert_after (bsi, stmt, GSI_NEW_STMT);
1223
1224       /* Get the offset itself.  */
1225       vtabletmp3 = create_tmp_var (TREE_TYPE (TREE_TYPE (vtabletmp2)),
1226                                    "vcalloffset");
1227       stmt = gimple_build_assign (vtabletmp3,
1228                                   build_simple_mem_ref (vtabletmp2));
1229       gsi_insert_after (bsi, stmt, GSI_NEW_STMT);
1230       mark_symbols_for_renaming (stmt);
1231       find_referenced_vars_in (stmt);
1232
1233       /* Cast to sizetype.  */
1234       offsettmp = create_tmp_var (sizetype, "offset");
1235       stmt = gimple_build_assign (offsettmp, fold_convert (sizetype, vtabletmp3));
1236       gsi_insert_after (bsi, stmt, GSI_NEW_STMT);
1237       mark_symbols_for_renaming (stmt);
1238       find_referenced_vars_in (stmt);
1239
1240       /* Adjust the `this' pointer.  */
1241       ptr = fold_build2_loc (input_location,
1242                              POINTER_PLUS_EXPR, TREE_TYPE (ptr), ptr,
1243                              offsettmp);
1244     }
1245
1246   if (!this_adjusting
1247       && fixed_offset != 0)
1248     /* Adjust the pointer by the constant.  */
1249     {
1250       tree ptrtmp;
1251
1252       if (TREE_CODE (ptr) == VAR_DECL)
1253         ptrtmp = ptr;
1254       else
1255         {
1256           ptrtmp = create_tmp_var (TREE_TYPE (ptr), "ptr");
1257           stmt = gimple_build_assign (ptrtmp, ptr);
1258           gsi_insert_after (bsi, stmt, GSI_NEW_STMT);
1259           mark_symbols_for_renaming (stmt);
1260           find_referenced_vars_in (stmt);
1261         }
1262       ptr = fold_build2_loc (input_location,
1263                              POINTER_PLUS_EXPR, TREE_TYPE (ptrtmp), ptrtmp,
1264                              size_int (fixed_offset));
1265     }
1266
1267   /* Emit the statement and gimplify the adjustment expression.  */
1268   ret = create_tmp_var (TREE_TYPE (ptr), "adjusted_this");
1269   stmt = gimple_build_assign (ret, ptr);
1270   mark_symbols_for_renaming (stmt);
1271   find_referenced_vars_in (stmt);
1272   gsi_insert_after (bsi, stmt, GSI_NEW_STMT);
1273
1274   return ret;
1275 }
1276
1277 /* Produce assembler for thunk NODE.  */
1278
1279 static void
1280 assemble_thunk (struct cgraph_node *node)
1281 {
1282   bool this_adjusting = node->thunk.this_adjusting;
1283   HOST_WIDE_INT fixed_offset = node->thunk.fixed_offset;
1284   HOST_WIDE_INT virtual_value = node->thunk.virtual_value;
1285   tree virtual_offset = NULL;
1286   tree alias = node->thunk.alias;
1287   tree thunk_fndecl = node->decl;
1288   tree a = DECL_ARGUMENTS (thunk_fndecl);
1289
1290   current_function_decl = thunk_fndecl;
1291
1292   if (this_adjusting
1293       && targetm.asm_out.can_output_mi_thunk (thunk_fndecl, fixed_offset,
1294                                               virtual_value, alias))
1295     {
1296       const char *fnname;
1297       tree fn_block;
1298       
1299       DECL_RESULT (thunk_fndecl)
1300         = build_decl (DECL_SOURCE_LOCATION (thunk_fndecl),
1301                       RESULT_DECL, 0, integer_type_node);
1302       fnname = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (thunk_fndecl));
1303
1304       /* The back end expects DECL_INITIAL to contain a BLOCK, so we
1305          create one.  */
1306       fn_block = make_node (BLOCK);
1307       BLOCK_VARS (fn_block) = a;
1308       DECL_INITIAL (thunk_fndecl) = fn_block;
1309       init_function_start (thunk_fndecl);
1310       cfun->is_thunk = 1;
1311       assemble_start_function (thunk_fndecl, fnname);
1312
1313       targetm.asm_out.output_mi_thunk (asm_out_file, thunk_fndecl,
1314                                        fixed_offset, virtual_value, alias);
1315
1316       assemble_end_function (thunk_fndecl, fnname);
1317       init_insn_lengths ();
1318       free_after_compilation (cfun);
1319       set_cfun (NULL);
1320       TREE_ASM_WRITTEN (thunk_fndecl) = 1;
1321     }
1322   else
1323     {
1324       tree restype;
1325       basic_block bb, then_bb, else_bb, return_bb;
1326       gimple_stmt_iterator bsi;
1327       int nargs = 0;
1328       tree arg;
1329       int i;
1330       tree resdecl;
1331       tree restmp = NULL;
1332       VEC(tree, heap) *vargs;
1333
1334       gimple call;
1335       gimple ret;
1336
1337       DECL_IGNORED_P (thunk_fndecl) = 1;
1338       bitmap_obstack_initialize (NULL);
1339
1340       if (node->thunk.virtual_offset_p)
1341         virtual_offset = size_int (virtual_value);
1342
1343       /* Build the return declaration for the function.  */
1344       restype = TREE_TYPE (TREE_TYPE (thunk_fndecl));
1345       if (DECL_RESULT (thunk_fndecl) == NULL_TREE)
1346         {
1347           resdecl = build_decl (input_location, RESULT_DECL, 0, restype);
1348           DECL_ARTIFICIAL (resdecl) = 1;
1349           DECL_IGNORED_P (resdecl) = 1;
1350           DECL_RESULT (thunk_fndecl) = resdecl;
1351         }
1352       else
1353         resdecl = DECL_RESULT (thunk_fndecl);
1354
1355       bb = then_bb = else_bb = return_bb = init_lowered_empty_function (thunk_fndecl);
1356
1357       bsi = gsi_start_bb (bb);
1358
1359       /* Build call to the function being thunked.  */
1360       if (!VOID_TYPE_P (restype))
1361         {
1362           if (!is_gimple_reg_type (restype))
1363             {
1364               restmp = resdecl;
1365               add_local_decl (cfun, restmp);
1366               BLOCK_VARS (DECL_INITIAL (current_function_decl)) = restmp;
1367             }
1368           else
1369             restmp = create_tmp_var_raw (restype, "retval");
1370         }
1371
1372       for (arg = a; arg; arg = DECL_CHAIN (arg))
1373         nargs++;
1374       vargs = VEC_alloc (tree, heap, nargs);
1375       if (this_adjusting)
1376         VEC_quick_push (tree, vargs,
1377                         thunk_adjust (&bsi,
1378                                       a, 1, fixed_offset,
1379                                       virtual_offset));
1380       else
1381         VEC_quick_push (tree, vargs, a);
1382       for (i = 1, arg = DECL_CHAIN (a); i < nargs; i++, arg = DECL_CHAIN (arg))
1383         VEC_quick_push (tree, vargs, arg);
1384       call = gimple_build_call_vec (build_fold_addr_expr_loc (0, alias), vargs);
1385       VEC_free (tree, heap, vargs);
1386       gimple_call_set_cannot_inline (call, true);
1387       gimple_call_set_from_thunk (call, true);
1388       if (restmp)
1389         gimple_call_set_lhs (call, restmp);
1390       gsi_insert_after (&bsi, call, GSI_NEW_STMT);
1391       mark_symbols_for_renaming (call);
1392       find_referenced_vars_in (call);
1393       update_stmt (call);
1394
1395       if (restmp && !this_adjusting)
1396         {
1397           tree true_label = NULL_TREE;
1398
1399           if (TREE_CODE (TREE_TYPE (restmp)) == POINTER_TYPE)
1400             {
1401               gimple stmt;
1402               /* If the return type is a pointer, we need to
1403                  protect against NULL.  We know there will be an
1404                  adjustment, because that's why we're emitting a
1405                  thunk.  */
1406               then_bb = create_basic_block (NULL, (void *) 0, bb);
1407               return_bb = create_basic_block (NULL, (void *) 0, then_bb);
1408               else_bb = create_basic_block (NULL, (void *) 0, else_bb);
1409               remove_edge (single_succ_edge (bb));
1410               true_label = gimple_block_label (then_bb);
1411               stmt = gimple_build_cond (NE_EXPR, restmp,
1412                                         fold_convert (TREE_TYPE (restmp),
1413                                                       integer_zero_node),
1414                                         NULL_TREE, NULL_TREE);
1415               gsi_insert_after (&bsi, stmt, GSI_NEW_STMT);
1416               make_edge (bb, then_bb, EDGE_TRUE_VALUE);
1417               make_edge (bb, else_bb, EDGE_FALSE_VALUE);
1418               make_edge (return_bb, EXIT_BLOCK_PTR, 0);
1419               make_edge (then_bb, return_bb, EDGE_FALLTHRU);
1420               make_edge (else_bb, return_bb, EDGE_FALLTHRU);
1421               bsi = gsi_last_bb (then_bb);
1422             }
1423
1424           restmp = thunk_adjust (&bsi, restmp, /*this_adjusting=*/0,
1425                                  fixed_offset, virtual_offset);
1426           if (true_label)
1427             {
1428               gimple stmt;
1429               bsi = gsi_last_bb (else_bb);
1430               stmt = gimple_build_assign (restmp, fold_convert (TREE_TYPE (restmp),
1431                                                                 integer_zero_node));
1432               gsi_insert_after (&bsi, stmt, GSI_NEW_STMT);
1433               bsi = gsi_last_bb (return_bb);
1434             }
1435         }
1436       else
1437         gimple_call_set_tail (call, true);
1438
1439       /* Build return value.  */
1440       ret = gimple_build_return (restmp);
1441       gsi_insert_after (&bsi, ret, GSI_NEW_STMT);
1442
1443       delete_unreachable_blocks ();
1444       update_ssa (TODO_update_ssa);
1445
1446       cgraph_remove_same_body_alias (node);
1447       /* Since we want to emit the thunk, we explicitly mark its name as
1448          referenced.  */
1449       cgraph_add_new_function (thunk_fndecl, true);
1450       bitmap_obstack_release (NULL);
1451     }
1452   current_function_decl = NULL;
1453 }
1454
1455 /* Expand function specified by NODE.  */
1456
1457 static void
1458 cgraph_expand_function (struct cgraph_node *node)
1459 {
1460   tree decl = node->decl;
1461
1462   /* We ought to not compile any inline clones.  */
1463   gcc_assert (!node->global.inlined_to);
1464
1465   announce_function (decl);
1466   node->process = 0;
1467
1468   gcc_assert (node->lowered);
1469
1470   /* Generate RTL for the body of DECL.  */
1471   tree_rest_of_compilation (decl);
1472
1473   /* Make sure that BE didn't give up on compiling.  */
1474   gcc_assert (TREE_ASM_WRITTEN (decl));
1475   current_function_decl = NULL;
1476   if (node->same_body)
1477     {
1478       struct cgraph_node *alias, *next;
1479       bool saved_alias = node->alias;
1480       for (alias = node->same_body;
1481            alias && alias->next; alias = alias->next)
1482         ;
1483       /* Walk aliases in the order they were created; it is possible that
1484          thunks reffers to the aliases made earlier.  */
1485       for (; alias; alias = next)
1486         {
1487           next = alias->previous;
1488           if (!alias->thunk.thunk_p)
1489             assemble_alias (alias->decl,
1490                             DECL_ASSEMBLER_NAME (alias->thunk.alias));
1491           else
1492             assemble_thunk (alias);
1493         }
1494       node->alias = saved_alias;
1495     }
1496   gcc_assert (!cgraph_preserve_function_body_p (decl));
1497   cgraph_release_function_body (node);
1498   /* Eliminate all call edges.  This is important so the GIMPLE_CALL no longer
1499      points to the dead function body.  */
1500   cgraph_node_remove_callees (node);
1501
1502   cgraph_function_flags_ready = true;
1503 }
1504
1505 /* Return true when CALLER_DECL should be inlined into CALLEE_DECL.  */
1506
1507 bool
1508 cgraph_inline_p (struct cgraph_edge *e, cgraph_inline_failed_t *reason)
1509 {
1510   *reason = e->inline_failed;
1511   return !e->inline_failed;
1512 }
1513
1514
1515
1516 /* Expand all functions that must be output.
1517
1518    Attempt to topologically sort the nodes so function is output when
1519    all called functions are already assembled to allow data to be
1520    propagated across the callgraph.  Use a stack to get smaller distance
1521    between a function and its callees (later we may choose to use a more
1522    sophisticated algorithm for function reordering; we will likely want
1523    to use subsections to make the output functions appear in top-down
1524    order).  */
1525
1526 static void
1527 cgraph_expand_all_functions (void)
1528 {
1529   struct cgraph_node *node;
1530   struct cgraph_node **order = XCNEWVEC (struct cgraph_node *, cgraph_n_nodes);
1531   int order_pos, new_order_pos = 0;
1532   int i;
1533
1534   order_pos = cgraph_postorder (order);
1535   gcc_assert (order_pos == cgraph_n_nodes);
1536
1537   /* Garbage collector may remove inline clones we eliminate during
1538      optimization.  So we must be sure to not reference them.  */
1539   for (i = 0; i < order_pos; i++)
1540     if (order[i]->process)
1541       order[new_order_pos++] = order[i];
1542
1543   for (i = new_order_pos - 1; i >= 0; i--)
1544     {
1545       node = order[i];
1546       if (node->process)
1547         {
1548           gcc_assert (node->reachable);
1549           node->process = 0;
1550           cgraph_expand_function (node);
1551         }
1552     }
1553   cgraph_process_new_functions ();
1554
1555   free (order);
1556
1557 }
1558
1559 /* This is used to sort the node types by the cgraph order number.  */
1560
1561 enum cgraph_order_sort_kind
1562 {
1563   ORDER_UNDEFINED = 0,
1564   ORDER_FUNCTION,
1565   ORDER_VAR,
1566   ORDER_ASM
1567 };
1568
1569 struct cgraph_order_sort
1570 {
1571   enum cgraph_order_sort_kind kind;
1572   union
1573   {
1574     struct cgraph_node *f;
1575     struct varpool_node *v;
1576     struct cgraph_asm_node *a;
1577   } u;
1578 };
1579
1580 /* Output all functions, variables, and asm statements in the order
1581    according to their order fields, which is the order in which they
1582    appeared in the file.  This implements -fno-toplevel-reorder.  In
1583    this mode we may output functions and variables which don't really
1584    need to be output.  */
1585
1586 static void
1587 cgraph_output_in_order (void)
1588 {
1589   int max;
1590   struct cgraph_order_sort *nodes;
1591   int i;
1592   struct cgraph_node *pf;
1593   struct varpool_node *pv;
1594   struct cgraph_asm_node *pa;
1595
1596   max = cgraph_order;
1597   nodes = XCNEWVEC (struct cgraph_order_sort, max);
1598
1599   varpool_analyze_pending_decls ();
1600
1601   for (pf = cgraph_nodes; pf; pf = pf->next)
1602     {
1603       if (pf->process)
1604         {
1605           i = pf->order;
1606           gcc_assert (nodes[i].kind == ORDER_UNDEFINED);
1607           nodes[i].kind = ORDER_FUNCTION;
1608           nodes[i].u.f = pf;
1609         }
1610     }
1611
1612   for (pv = varpool_nodes_queue; pv; pv = pv->next_needed)
1613     {
1614       i = pv->order;
1615       gcc_assert (nodes[i].kind == ORDER_UNDEFINED);
1616       nodes[i].kind = ORDER_VAR;
1617       nodes[i].u.v = pv;
1618     }
1619
1620   for (pa = cgraph_asm_nodes; pa; pa = pa->next)
1621     {
1622       i = pa->order;
1623       gcc_assert (nodes[i].kind == ORDER_UNDEFINED);
1624       nodes[i].kind = ORDER_ASM;
1625       nodes[i].u.a = pa;
1626     }
1627
1628   /* In toplevel reorder mode we output all statics; mark them as needed.  */
1629   for (i = 0; i < max; ++i)
1630     {
1631       if (nodes[i].kind == ORDER_VAR)
1632         {
1633           varpool_mark_needed_node (nodes[i].u.v);
1634         }
1635     }
1636   varpool_empty_needed_queue ();
1637
1638   for (i = 0; i < max; ++i)
1639     {
1640       switch (nodes[i].kind)
1641         {
1642         case ORDER_FUNCTION:
1643           nodes[i].u.f->process = 0;
1644           cgraph_expand_function (nodes[i].u.f);
1645           break;
1646
1647         case ORDER_VAR:
1648           varpool_assemble_decl (nodes[i].u.v);
1649           break;
1650
1651         case ORDER_ASM:
1652           assemble_asm (nodes[i].u.a->asm_str);
1653           break;
1654
1655         case ORDER_UNDEFINED:
1656           break;
1657
1658         default:
1659           gcc_unreachable ();
1660         }
1661     }
1662
1663   cgraph_asm_nodes = NULL;
1664   free (nodes);
1665 }
1666
1667 /* Return true when function body of DECL still needs to be kept around
1668    for later re-use.  */
1669 bool
1670 cgraph_preserve_function_body_p (tree decl)
1671 {
1672   struct cgraph_node *node;
1673
1674   gcc_assert (cgraph_global_info_ready);
1675   /* Look if there is any clone around.  */
1676   node = cgraph_node (decl);
1677   if (node->clones)
1678     return true;
1679   return false;
1680 }
1681
1682 static void
1683 ipa_passes (void)
1684 {
1685   set_cfun (NULL);
1686   current_function_decl = NULL;
1687   gimple_register_cfg_hooks ();
1688   bitmap_obstack_initialize (NULL);
1689
1690   invoke_plugin_callbacks (PLUGIN_ALL_IPA_PASSES_START, NULL);
1691
1692   if (!in_lto_p)
1693     execute_ipa_pass_list (all_small_ipa_passes);
1694
1695   /* If pass_all_early_optimizations was not scheduled, the state of
1696      the cgraph will not be properly updated.  Update it now.  */
1697   if (cgraph_state < CGRAPH_STATE_IPA_SSA)
1698     cgraph_state = CGRAPH_STATE_IPA_SSA;
1699
1700   if (!in_lto_p)
1701     {
1702       /* Generate coverage variables and constructors.  */
1703       coverage_finish ();
1704
1705       /* Process new functions added.  */
1706       set_cfun (NULL);
1707       current_function_decl = NULL;
1708       cgraph_process_new_functions ();
1709
1710       execute_ipa_summary_passes
1711         ((struct ipa_opt_pass_d *) all_regular_ipa_passes);
1712     }
1713
1714   /* Some targets need to handle LTO assembler output specially.  */
1715   if (flag_generate_lto)
1716     targetm.asm_out.lto_start ();
1717
1718   execute_ipa_summary_passes ((struct ipa_opt_pass_d *) all_lto_gen_passes);
1719
1720   if (!in_lto_p)
1721     ipa_write_summaries ();
1722
1723   if (flag_generate_lto)
1724     targetm.asm_out.lto_end ();
1725
1726   if (!flag_ltrans)
1727     execute_ipa_pass_list (all_regular_ipa_passes);
1728   invoke_plugin_callbacks (PLUGIN_ALL_IPA_PASSES_END, NULL);
1729
1730   bitmap_obstack_release (NULL);
1731 }
1732
1733
1734 /* Perform simple optimizations based on callgraph.  */
1735
1736 void
1737 cgraph_optimize (void)
1738 {
1739   if (seen_error ())
1740     return;
1741
1742 #ifdef ENABLE_CHECKING
1743   verify_cgraph ();
1744 #endif
1745
1746   /* Frontend may output common variables after the unit has been finalized.
1747      It is safe to deal with them here as they are always zero initialized.  */
1748   varpool_analyze_pending_decls ();
1749
1750   timevar_push (TV_CGRAPHOPT);
1751   if (pre_ipa_mem_report)
1752     {
1753       fprintf (stderr, "Memory consumption before IPA\n");
1754       dump_memory_report (false);
1755     }
1756   if (!quiet_flag)
1757     fprintf (stderr, "Performing interprocedural optimizations\n");
1758   cgraph_state = CGRAPH_STATE_IPA;
1759
1760   /* Don't run the IPA passes if there was any error or sorry messages.  */
1761   if (!seen_error ())
1762     ipa_passes ();
1763
1764   /* Do nothing else if any IPA pass found errors.  */
1765   if (seen_error ())
1766     {
1767       timevar_pop (TV_CGRAPHOPT);
1768       return;
1769     }
1770
1771   /* This pass remove bodies of extern inline functions we never inlined.
1772      Do this later so other IPA passes see what is really going on.  */
1773   cgraph_remove_unreachable_nodes (false, dump_file);
1774   cgraph_global_info_ready = true;
1775   if (cgraph_dump_file)
1776     {
1777       fprintf (cgraph_dump_file, "Optimized ");
1778       dump_cgraph (cgraph_dump_file);
1779       dump_varpool (cgraph_dump_file);
1780     }
1781   if (post_ipa_mem_report)
1782     {
1783       fprintf (stderr, "Memory consumption after IPA\n");
1784       dump_memory_report (false);
1785     }
1786   timevar_pop (TV_CGRAPHOPT);
1787
1788   /* Output everything.  */
1789   (*debug_hooks->assembly_start) ();
1790   if (!quiet_flag)
1791     fprintf (stderr, "Assembling functions:\n");
1792 #ifdef ENABLE_CHECKING
1793   verify_cgraph ();
1794 #endif
1795
1796   cgraph_materialize_all_clones ();
1797   cgraph_mark_functions_to_output ();
1798
1799   cgraph_state = CGRAPH_STATE_EXPANSION;
1800   if (!flag_toplevel_reorder)
1801     cgraph_output_in_order ();
1802   else
1803     {
1804       cgraph_output_pending_asms ();
1805
1806       cgraph_expand_all_functions ();
1807       varpool_remove_unreferenced_decls ();
1808
1809       varpool_assemble_pending_decls ();
1810     }
1811   cgraph_process_new_functions ();
1812   cgraph_state = CGRAPH_STATE_FINISHED;
1813
1814   if (cgraph_dump_file)
1815     {
1816       fprintf (cgraph_dump_file, "\nFinal ");
1817       dump_cgraph (cgraph_dump_file);
1818     }
1819 #ifdef ENABLE_CHECKING
1820   verify_cgraph ();
1821   /* Double check that all inline clones are gone and that all
1822      function bodies have been released from memory.  */
1823   if (!seen_error ())
1824     {
1825       struct cgraph_node *node;
1826       bool error_found = false;
1827
1828       for (node = cgraph_nodes; node; node = node->next)
1829         if (node->analyzed
1830             && (node->global.inlined_to
1831                 || gimple_has_body_p (node->decl)))
1832           {
1833             error_found = true;
1834             dump_cgraph_node (stderr, node);
1835           }
1836       if (error_found)
1837         internal_error ("nodes with unreleased memory found");
1838     }
1839 #endif
1840 }
1841
1842 void
1843 init_cgraph (void)
1844 {
1845   if (!cgraph_dump_file)
1846     cgraph_dump_file = dump_begin (TDI_cgraph, NULL);
1847 }
1848
1849 /* The edges representing the callers of the NEW_VERSION node were
1850    fixed by cgraph_function_versioning (), now the call_expr in their
1851    respective tree code should be updated to call the NEW_VERSION.  */
1852
1853 static void
1854 update_call_expr (struct cgraph_node *new_version)
1855 {
1856   struct cgraph_edge *e;
1857
1858   gcc_assert (new_version);
1859
1860   /* Update the call expr on the edges to call the new version.  */
1861   for (e = new_version->callers; e; e = e->next_caller)
1862     {
1863       struct function *inner_function = DECL_STRUCT_FUNCTION (e->caller->decl);
1864       gimple_call_set_fndecl (e->call_stmt, new_version->decl);
1865       maybe_clean_eh_stmt_fn (inner_function, e->call_stmt);
1866     }
1867 }
1868
1869
1870 /* Create a new cgraph node which is the new version of
1871    OLD_VERSION node.  REDIRECT_CALLERS holds the callers
1872    edges which should be redirected to point to
1873    NEW_VERSION.  ALL the callees edges of OLD_VERSION
1874    are cloned to the new version node.  Return the new
1875    version node. 
1876
1877    If non-NULL BLOCK_TO_COPY determine what basic blocks 
1878    was copied to prevent duplications of calls that are dead
1879    in the clone.  */
1880
1881 static struct cgraph_node *
1882 cgraph_copy_node_for_versioning (struct cgraph_node *old_version,
1883                                  tree new_decl,
1884                                  VEC(cgraph_edge_p,heap) *redirect_callers,
1885                                  bitmap bbs_to_copy)
1886  {
1887    struct cgraph_node *new_version;
1888    struct cgraph_edge *e;
1889    unsigned i;
1890
1891    gcc_assert (old_version);
1892
1893    new_version = cgraph_node (new_decl);
1894
1895    new_version->analyzed = true;
1896    new_version->local = old_version->local;
1897    new_version->local.externally_visible = false;
1898    new_version->local.local = true;
1899    new_version->local.vtable_method = false;
1900    new_version->global = old_version->global;
1901    new_version->rtl = old_version->rtl;
1902    new_version->reachable = true;
1903    new_version->count = old_version->count;
1904
1905    for (e = old_version->callees; e; e=e->next_callee)
1906      if (!bbs_to_copy
1907          || bitmap_bit_p (bbs_to_copy, gimple_bb (e->call_stmt)->index))
1908        cgraph_clone_edge (e, new_version, e->call_stmt,
1909                           e->lto_stmt_uid, REG_BR_PROB_BASE,
1910                           CGRAPH_FREQ_BASE,
1911                           e->loop_nest, true);
1912    for (e = old_version->indirect_calls; e; e=e->next_callee)
1913      if (!bbs_to_copy
1914          || bitmap_bit_p (bbs_to_copy, gimple_bb (e->call_stmt)->index))
1915        cgraph_clone_edge (e, new_version, e->call_stmt,
1916                           e->lto_stmt_uid, REG_BR_PROB_BASE,
1917                           CGRAPH_FREQ_BASE,
1918                           e->loop_nest, true);
1919    FOR_EACH_VEC_ELT (cgraph_edge_p, redirect_callers, i, e)
1920      {
1921        /* Redirect calls to the old version node to point to its new
1922           version.  */
1923        cgraph_redirect_edge_callee (e, new_version);
1924      }
1925
1926    return new_version;
1927  }
1928
1929  /* Perform function versioning.
1930     Function versioning includes copying of the tree and
1931     a callgraph update (creating a new cgraph node and updating
1932     its callees and callers).
1933
1934     REDIRECT_CALLERS varray includes the edges to be redirected
1935     to the new version.
1936
1937     TREE_MAP is a mapping of tree nodes we want to replace with
1938     new ones (according to results of prior analysis).
1939     OLD_VERSION_NODE is the node that is versioned.
1940     It returns the new version's cgraph node.
1941     If non-NULL ARGS_TO_SKIP determine function parameters to remove
1942     from new version.
1943     If non-NULL BLOCK_TO_COPY determine what basic blocks to copy.
1944     If non_NULL NEW_ENTRY determine new entry BB of the clone.  */
1945
1946 struct cgraph_node *
1947 cgraph_function_versioning (struct cgraph_node *old_version_node,
1948                             VEC(cgraph_edge_p,heap) *redirect_callers,
1949                             VEC (ipa_replace_map_p,gc)* tree_map,
1950                             bitmap args_to_skip,
1951                             bitmap bbs_to_copy,
1952                             basic_block new_entry_block,
1953                             const char *clone_name)
1954 {
1955   tree old_decl = old_version_node->decl;
1956   struct cgraph_node *new_version_node = NULL;
1957   tree new_decl;
1958
1959   if (!tree_versionable_function_p (old_decl))
1960     return NULL;
1961
1962   /* Make a new FUNCTION_DECL tree node for the
1963      new version. */
1964   if (!args_to_skip)
1965     new_decl = copy_node (old_decl);
1966   else
1967     new_decl = build_function_decl_skip_args (old_decl, args_to_skip);
1968
1969   /* Generate a new name for the new version. */
1970   DECL_NAME (new_decl) = clone_function_name (old_decl, clone_name);
1971   SET_DECL_ASSEMBLER_NAME (new_decl, DECL_NAME (new_decl));
1972   SET_DECL_RTL (new_decl, NULL);
1973
1974   /* Create the new version's call-graph node.
1975      and update the edges of the new node. */
1976   new_version_node =
1977     cgraph_copy_node_for_versioning (old_version_node, new_decl,
1978                                      redirect_callers, bbs_to_copy);
1979
1980   /* Copy the OLD_VERSION_NODE function tree to the new version.  */
1981   tree_function_versioning (old_decl, new_decl, tree_map, false, args_to_skip,
1982                             bbs_to_copy, new_entry_block);
1983
1984   /* Update the new version's properties.
1985      Make The new version visible only within this translation unit.  Make sure
1986      that is not weak also.
1987      ??? We cannot use COMDAT linkage because there is no
1988      ABI support for this.  */
1989   cgraph_make_decl_local (new_version_node->decl);
1990   DECL_VIRTUAL_P (new_version_node->decl) = 0;
1991   new_version_node->local.externally_visible = 0;
1992   new_version_node->local.local = 1;
1993   new_version_node->lowered = true;
1994
1995   /* Update the call_expr on the edges to call the new version node. */
1996   update_call_expr (new_version_node);
1997
1998   cgraph_call_function_insertion_hooks (new_version_node);
1999   return new_version_node;
2000 }
2001
2002 /* Produce separate function body for inline clones so the offline copy can be
2003    modified without affecting them.  */
2004 struct cgraph_node *
2005 save_inline_function_body (struct cgraph_node *node)
2006 {
2007   struct cgraph_node *first_clone, *n;
2008
2009   gcc_assert (node == cgraph_node (node->decl));
2010
2011   cgraph_lower_function (node);
2012
2013   first_clone = node->clones;
2014
2015   first_clone->decl = copy_node (node->decl);
2016   cgraph_insert_node_to_hashtable (first_clone);
2017   gcc_assert (first_clone == cgraph_node (first_clone->decl));
2018   if (first_clone->next_sibling_clone)
2019     {
2020       for (n = first_clone->next_sibling_clone; n->next_sibling_clone; n = n->next_sibling_clone)
2021         n->clone_of = first_clone;
2022       n->clone_of = first_clone;
2023       n->next_sibling_clone = first_clone->clones;
2024       if (first_clone->clones)
2025         first_clone->clones->prev_sibling_clone = n;
2026       first_clone->clones = first_clone->next_sibling_clone;
2027       first_clone->next_sibling_clone->prev_sibling_clone = NULL;
2028       first_clone->next_sibling_clone = NULL;
2029       gcc_assert (!first_clone->prev_sibling_clone);
2030     }
2031   first_clone->clone_of = NULL;
2032   node->clones = NULL;
2033
2034   if (first_clone->clones)
2035     for (n = first_clone->clones; n != first_clone;)
2036       {
2037         gcc_assert (n->decl == node->decl);
2038         n->decl = first_clone->decl;
2039         if (n->clones)
2040           n = n->clones;
2041         else if (n->next_sibling_clone)
2042           n = n->next_sibling_clone;
2043         else
2044           {
2045             while (n != first_clone && !n->next_sibling_clone)
2046               n = n->clone_of;
2047             if (n != first_clone)
2048               n = n->next_sibling_clone;
2049           }
2050       }
2051
2052   /* Copy the OLD_VERSION_NODE function tree to the new version.  */
2053   tree_function_versioning (node->decl, first_clone->decl, NULL, true, NULL,
2054                             NULL, NULL);
2055
2056   DECL_EXTERNAL (first_clone->decl) = 0;
2057   DECL_COMDAT_GROUP (first_clone->decl) = NULL_TREE;
2058   TREE_PUBLIC (first_clone->decl) = 0;
2059   DECL_COMDAT (first_clone->decl) = 0;
2060   VEC_free (ipa_opt_pass, heap,
2061             first_clone->ipa_transforms_to_apply);
2062   first_clone->ipa_transforms_to_apply = NULL;
2063
2064 #ifdef ENABLE_CHECKING
2065   verify_cgraph_node (first_clone);
2066 #endif
2067   return first_clone;
2068 }
2069
2070 /* Given virtual clone, turn it into actual clone.  */
2071 static void
2072 cgraph_materialize_clone (struct cgraph_node *node)
2073 {
2074   bitmap_obstack_initialize (NULL);
2075 #ifdef ENABLE_CHECKING
2076   node->former_clone_of = node->clone_of->decl;
2077   if (node->clone_of->former_clone_of)
2078     node->former_clone_of = node->clone_of->former_clone_of;
2079 #endif
2080   /* Copy the OLD_VERSION_NODE function tree to the new version.  */
2081   tree_function_versioning (node->clone_of->decl, node->decl,
2082                             node->clone.tree_map, true,
2083                             node->clone.args_to_skip, NULL, NULL);
2084   if (cgraph_dump_file)
2085     {
2086       dump_function_to_file (node->clone_of->decl, cgraph_dump_file, dump_flags);
2087       dump_function_to_file (node->decl, cgraph_dump_file, dump_flags);
2088     }
2089
2090   /* Function is no longer clone.  */
2091   if (node->next_sibling_clone)
2092     node->next_sibling_clone->prev_sibling_clone = node->prev_sibling_clone;
2093   if (node->prev_sibling_clone)
2094     node->prev_sibling_clone->next_sibling_clone = node->next_sibling_clone;
2095   else
2096     node->clone_of->clones = node->next_sibling_clone;
2097   node->next_sibling_clone = NULL;
2098   node->prev_sibling_clone = NULL;
2099   if (!node->clone_of->analyzed && !node->clone_of->clones)
2100     {
2101       cgraph_release_function_body (node->clone_of);
2102       cgraph_node_remove_callees (node->clone_of);
2103       ipa_remove_all_references (&node->clone_of->ref_list);
2104     }
2105   node->clone_of = NULL;
2106   bitmap_obstack_release (NULL);
2107 }
2108
2109 /* If necessary, change the function declaration in the call statement
2110    associated with E so that it corresponds to the edge callee.  */
2111
2112 gimple
2113 cgraph_redirect_edge_call_stmt_to_callee (struct cgraph_edge *e)
2114 {
2115   tree decl = gimple_call_fndecl (e->call_stmt);
2116   gimple new_stmt;
2117 #ifdef ENABLE_CHECKING
2118   struct cgraph_node *node;
2119 #endif
2120
2121   if (e->indirect_unknown_callee
2122       || decl == e->callee->decl
2123       /* Don't update call from same body alias to the real function.  */
2124       || (decl && cgraph_get_node (decl) == cgraph_get_node (e->callee->decl)))
2125     return e->call_stmt;
2126
2127 #ifdef ENABLE_CHECKING
2128   if (decl)
2129     {
2130       node = cgraph_get_node (decl);
2131       gcc_assert (!node || !node->clone.combined_args_to_skip);
2132     }
2133 #endif
2134
2135   if (cgraph_dump_file)
2136     {
2137       fprintf (cgraph_dump_file, "updating call of %s/%i -> %s/%i: ",
2138                cgraph_node_name (e->caller), e->caller->uid,
2139                cgraph_node_name (e->callee), e->callee->uid);
2140       print_gimple_stmt (cgraph_dump_file, e->call_stmt, 0, dump_flags);
2141       if (e->callee->clone.combined_args_to_skip)
2142         {
2143           fprintf (cgraph_dump_file, " combined args to skip: ");
2144           dump_bitmap (cgraph_dump_file,
2145                        e->callee->clone.combined_args_to_skip);
2146         }
2147     }
2148
2149   if (e->callee->clone.combined_args_to_skip)
2150     {
2151       gimple_stmt_iterator gsi;
2152
2153       new_stmt
2154         = gimple_call_copy_skip_args (e->call_stmt,
2155                                       e->callee->clone.combined_args_to_skip);
2156
2157       if (gimple_vdef (new_stmt)
2158           && TREE_CODE (gimple_vdef (new_stmt)) == SSA_NAME)
2159         SSA_NAME_DEF_STMT (gimple_vdef (new_stmt)) = new_stmt;
2160
2161       gsi = gsi_for_stmt (e->call_stmt);
2162       gsi_replace (&gsi, new_stmt, true);
2163     }
2164   else
2165     new_stmt = e->call_stmt;
2166
2167   gimple_call_set_fndecl (new_stmt, e->callee->decl);
2168   update_stmt (new_stmt);
2169
2170   cgraph_set_call_stmt_including_clones (e->caller, e->call_stmt, new_stmt);
2171
2172   if (cgraph_dump_file)
2173     {
2174       fprintf (cgraph_dump_file, "  updated to:");
2175       print_gimple_stmt (cgraph_dump_file, e->call_stmt, 0, dump_flags);
2176     }
2177   return new_stmt;
2178 }
2179
2180 /* Once all functions from compilation unit are in memory, produce all clones
2181    and update all calls.  We might also do this on demand if we don't want to
2182    bring all functions to memory prior compilation, but current WHOPR
2183    implementation does that and it is is bit easier to keep everything right in
2184    this order.  */
2185 void
2186 cgraph_materialize_all_clones (void)
2187 {
2188   struct cgraph_node *node;
2189   bool stabilized = false;
2190
2191   if (cgraph_dump_file)
2192     fprintf (cgraph_dump_file, "Materializing clones\n");
2193 #ifdef ENABLE_CHECKING
2194   verify_cgraph ();
2195 #endif
2196
2197   /* We can also do topological order, but number of iterations should be
2198      bounded by number of IPA passes since single IPA pass is probably not
2199      going to create clones of clones it created itself.  */
2200   while (!stabilized)
2201     {
2202       stabilized = true;
2203       for (node = cgraph_nodes; node; node = node->next)
2204         {
2205           if (node->clone_of && node->decl != node->clone_of->decl
2206               && !gimple_has_body_p (node->decl))
2207             {
2208               if (gimple_has_body_p (node->clone_of->decl))
2209                 {
2210                   if (cgraph_dump_file)
2211                     {
2212                       fprintf (cgraph_dump_file, "clonning %s to %s\n",
2213                                cgraph_node_name (node->clone_of),
2214                                cgraph_node_name (node));
2215                       if (node->clone.tree_map)
2216                         {
2217                           unsigned int i;
2218                           fprintf (cgraph_dump_file, "   replace map: ");
2219                           for (i = 0; i < VEC_length (ipa_replace_map_p,
2220                                                       node->clone.tree_map);
2221                                                       i++)
2222                             {
2223                               struct ipa_replace_map *replace_info;
2224                               replace_info = VEC_index (ipa_replace_map_p,
2225                                                         node->clone.tree_map,
2226                                                         i);
2227                               print_generic_expr (cgraph_dump_file, replace_info->old_tree, 0);
2228                               fprintf (cgraph_dump_file, " -> ");
2229                               print_generic_expr (cgraph_dump_file, replace_info->new_tree, 0);
2230                               fprintf (cgraph_dump_file, "%s%s;",
2231                                        replace_info->replace_p ? "(replace)":"",
2232                                        replace_info->ref_p ? "(ref)":"");
2233                             }
2234                           fprintf (cgraph_dump_file, "\n");
2235                         }
2236                       if (node->clone.args_to_skip)
2237                         {
2238                           fprintf (cgraph_dump_file, "   args_to_skip: ");
2239                           dump_bitmap (cgraph_dump_file, node->clone.args_to_skip);
2240                         }
2241                       if (node->clone.args_to_skip)
2242                         {
2243                           fprintf (cgraph_dump_file, "   combined_args_to_skip:");
2244                           dump_bitmap (cgraph_dump_file, node->clone.combined_args_to_skip);
2245                         }
2246                     }
2247                   cgraph_materialize_clone (node);
2248                   stabilized = false;
2249                 }
2250             }
2251         }
2252     }
2253   for (node = cgraph_nodes; node; node = node->next)
2254     if (!node->analyzed && node->callees)
2255       cgraph_node_remove_callees (node);
2256   if (cgraph_dump_file)
2257     fprintf (cgraph_dump_file, "Materialization Call site updates done.\n");
2258 #ifdef ENABLE_CHECKING
2259   verify_cgraph ();
2260 #endif
2261   cgraph_remove_unreachable_nodes (false, cgraph_dump_file);
2262 }
2263
2264 #include "gt-cgraphunit.h"