OSDN Git Service

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