* config/sh/lib1funcs-Os-4-200.asm: Guard entire file with
[official-gcc.git] / gcc / cgraphunit.c
blob00351d257796853a0d644e469350229dc28f5e10
1 /* Callgraph based intraprocedural optimizations.
2 Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
3 Contributed by Jan Hubicka
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
20 02110-1301, USA. */
22 /* This module implements main driver of compilation process as well as
23 few basic intraprocedural optimizers.
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)
28 The front-end is supposed to use following functionality:
30 - cgraph_finalize_function
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.
35 (There is one exception needed for implementing GCC extern inline function.)
37 - cgraph_varpool_finalize_variable
39 This function has same behavior as the above but is used for static
40 variables.
42 - cgraph_finalize_compilation_unit
44 This function is called once compilation unit is finalized and it will
45 no longer change.
47 In the unit-at-a-time the call-graph construction and local function
48 analysis takes place here. Bodies of unreachable functions are released
49 to conserve memory usage.
51 ??? The compilation unit in this point of view should be compilation
52 unit as defined by the language - for instance C frontend allows multiple
53 compilation units to be parsed at once and it should call function each
54 time parsing is done so we save memory.
56 - cgraph_optimize
58 In this unit-at-a-time compilation the intra procedural analysis takes
59 place here. In particular the static functions whose address is never
60 taken are marked as local. Backend can then use this information to
61 modify calling conventions, do better inlining or similar optimizations.
63 - cgraph_assemble_pending_functions
64 - cgraph_varpool_assemble_pending_variables
66 In non-unit-at-a-time mode these functions can be used to force compilation
67 of functions or variables that are known to be needed at given stage
68 of compilation
70 - cgraph_mark_needed_node
71 - cgraph_varpool_mark_needed_node
73 When function or variable is referenced by some hidden way (for instance
74 via assembly code and marked by attribute "used"), the call-graph data structure
75 must be updated accordingly by this function.
77 - analyze_expr callback
79 This function is responsible for lowering tree nodes not understood by
80 generic code into understandable ones or alternatively marking
81 callgraph and varpool nodes referenced by the as needed.
83 ??? On the tree-ssa genericizing should take place here and we will avoid
84 need for these hooks (replacing them by genericizing hook)
86 - expand_function callback
88 This function is used to expand function and pass it into RTL back-end.
89 Front-end should not make any assumptions about when this function can be
90 called. In particular cgraph_assemble_pending_functions,
91 cgraph_varpool_assemble_pending_variables, cgraph_finalize_function,
92 cgraph_varpool_finalize_function, cgraph_optimize can cause arbitrarily
93 previously finalized functions to be expanded.
95 We implement two compilation modes.
97 - unit-at-a-time: In this mode analyzing of all functions is deferred
98 to cgraph_finalize_compilation_unit and expansion into cgraph_optimize.
100 In cgraph_finalize_compilation_unit the reachable functions are
101 analyzed. During analysis the call-graph edges from reachable
102 functions are constructed and their destinations are marked as
103 reachable. References to functions and variables are discovered too
104 and variables found to be needed output to the assembly file. Via
105 mark_referenced call in assemble_variable functions referenced by
106 static variables are noticed too.
108 The intra-procedural information is produced and its existence
109 indicated by global_info_ready. Once this flag is set it is impossible
110 to change function from !reachable to reachable and thus
111 assemble_variable no longer call mark_referenced.
113 Finally the call-graph is topologically sorted and all reachable functions
114 that has not been completely inlined or are not external are output.
116 ??? It is possible that reference to function or variable is optimized
117 out. We can not deal with this nicely because topological order is not
118 suitable for it. For tree-ssa we may consider another pass doing
119 optimization and re-discovering reachable functions.
121 ??? Reorganize code so variables are output very last and only if they
122 really has been referenced by produced code, so we catch more cases
123 where reference has been optimized out.
125 - non-unit-at-a-time
127 All functions are variables are output as early as possible to conserve
128 memory consumption. This may or may not result in less memory used but
129 it is still needed for some legacy code that rely on particular ordering
130 of things output from the compiler.
132 Varpool data structures are not used and variables are output directly.
134 Functions are output early using call of
135 cgraph_assemble_pending_function from cgraph_finalize_function. The
136 decision on whether function is needed is made more conservative so
137 uninlininable static functions are needed too. During the call-graph
138 construction the edge destinations are not marked as reachable and it
139 is completely relied upn assemble_variable to mark them. */
142 #include "config.h"
143 #include "system.h"
144 #include "coretypes.h"
145 #include "tm.h"
146 #include "tree.h"
147 #include "rtl.h"
148 #include "tree-flow.h"
149 #include "tree-inline.h"
150 #include "langhooks.h"
151 #include "pointer-set.h"
152 #include "toplev.h"
153 #include "flags.h"
154 #include "ggc.h"
155 #include "debug.h"
156 #include "target.h"
157 #include "cgraph.h"
158 #include "diagnostic.h"
159 #include "timevar.h"
160 #include "params.h"
161 #include "fibheap.h"
162 #include "c-common.h"
163 #include "intl.h"
164 #include "function.h"
165 #include "ipa-prop.h"
166 #include "tree-gimple.h"
167 #include "tree-pass.h"
168 #include "output.h"
170 static void cgraph_expand_all_functions (void);
171 static void cgraph_mark_functions_to_output (void);
172 static void cgraph_expand_function (struct cgraph_node *);
173 static tree record_reference (tree *, int *, void *);
174 static void cgraph_output_pending_asms (void);
175 static void cgraph_increase_alignment (void);
177 /* Records tree nodes seen in record_reference. Simply using
178 walk_tree_without_duplicates doesn't guarantee each node is visited
179 once because it gets a new htab upon each recursive call from
180 record_reference itself. */
181 static struct pointer_set_t *visited_nodes;
183 static FILE *cgraph_dump_file;
185 /* Determine if function DECL is needed. That is, visible to something
186 either outside this translation unit, something magic in the system
187 configury, or (if not doing unit-at-a-time) to something we havn't
188 seen yet. */
190 static bool
191 decide_is_function_needed (struct cgraph_node *node, tree decl)
193 tree origin;
194 if (MAIN_NAME_P (DECL_NAME (decl))
195 && TREE_PUBLIC (decl))
197 node->local.externally_visible = true;
198 return true;
201 /* If the user told us it is used, then it must be so. */
202 if (node->local.externally_visible)
203 return true;
205 if (!flag_unit_at_a_time && lookup_attribute ("used", DECL_ATTRIBUTES (decl)))
206 return true;
208 /* ??? If the assembler name is set by hand, it is possible to assemble
209 the name later after finalizing the function and the fact is noticed
210 in assemble_name then. This is arguably a bug. */
211 if (DECL_ASSEMBLER_NAME_SET_P (decl)
212 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
213 return true;
215 /* If we decided it was needed before, but at the time we didn't have
216 the body of the function available, then it's still needed. We have
217 to go back and re-check its dependencies now. */
218 if (node->needed)
219 return true;
221 /* Externally visible functions must be output. The exception is
222 COMDAT functions that must be output only when they are needed.
224 When not optimizing, also output the static functions. (see
225 PR24561), but don't do so for always_inline functions, functions
226 declared inline and nested functions. These was optimized out
227 in the original implementation and it is unclear whether we want
228 to change the behavior here. */
229 if (((TREE_PUBLIC (decl)
230 || (!optimize && !node->local.disregard_inline_limits
231 && !DECL_DECLARED_INLINE_P (decl)
232 && !node->origin))
233 && !flag_whole_program)
234 && !DECL_COMDAT (decl) && !DECL_EXTERNAL (decl))
235 return true;
237 /* Constructors and destructors are reachable from the runtime by
238 some mechanism. */
239 if (DECL_STATIC_CONSTRUCTOR (decl) || DECL_STATIC_DESTRUCTOR (decl))
240 return true;
242 if (flag_unit_at_a_time)
243 return false;
245 /* If not doing unit at a time, then we'll only defer this function
246 if its marked for inlining. Otherwise we want to emit it now. */
248 /* "extern inline" functions are never output locally. */
249 if (DECL_EXTERNAL (decl))
250 return false;
251 /* Nested functions of extern inline function shall not be emit unless
252 we inlined the origin. */
253 for (origin = decl_function_context (decl); origin;
254 origin = decl_function_context (origin))
255 if (DECL_EXTERNAL (origin))
256 return false;
257 /* We want to emit COMDAT functions only when absolutely necessary. */
258 if (DECL_COMDAT (decl))
259 return false;
260 if (!DECL_INLINE (decl)
261 || (!node->local.disregard_inline_limits
262 /* When declared inline, defer even the uninlinable functions.
263 This allows them to be eliminated when unused. */
264 && !DECL_DECLARED_INLINE_P (decl)
265 && (!node->local.inlinable || !cgraph_default_inline_p (node, NULL))))
266 return true;
268 return false;
271 /* Walk the decls we marked as necessary and see if they reference new
272 variables or functions and add them into the worklists. */
273 static bool
274 cgraph_varpool_analyze_pending_decls (void)
276 bool changed = false;
277 timevar_push (TV_CGRAPH);
279 while (cgraph_varpool_first_unanalyzed_node)
281 tree decl = cgraph_varpool_first_unanalyzed_node->decl;
283 cgraph_varpool_first_unanalyzed_node->analyzed = true;
285 cgraph_varpool_first_unanalyzed_node = cgraph_varpool_first_unanalyzed_node->next_needed;
287 /* Compute the alignment early so function body expanders are
288 already informed about increased alignment. */
289 align_variable (decl, 0);
291 if (DECL_INITIAL (decl))
293 visited_nodes = pointer_set_create ();
294 walk_tree (&DECL_INITIAL (decl), record_reference, NULL, visited_nodes);
295 pointer_set_destroy (visited_nodes);
296 visited_nodes = NULL;
298 changed = true;
300 timevar_pop (TV_CGRAPH);
301 return changed;
304 /* Optimization of function bodies might've rendered some variables as
305 unnecessary so we want to avoid these from being compiled.
307 This is done by pruning the queue and keeping only the variables that
308 really appear needed (ie they are either externally visible or referenced
309 by compiled function). Re-doing the reachability analysis on variables
310 brings back the remaining variables referenced by these. */
311 static void
312 cgraph_varpool_remove_unreferenced_decls (void)
314 struct cgraph_varpool_node *next, *node = cgraph_varpool_nodes_queue;
316 cgraph_varpool_reset_queue ();
318 if (errorcount || sorrycount)
319 return;
321 while (node)
323 tree decl = node->decl;
324 next = node->next_needed;
325 node->needed = 0;
327 if (node->finalized
328 && ((DECL_ASSEMBLER_NAME_SET_P (decl)
329 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
330 || node->force_output
331 || decide_is_variable_needed (node, decl)
332 /* ??? Cgraph does not yet rule the world with an iron hand,
333 and does not control the emission of debug information.
334 After a variable has its DECL_RTL set, we must assume that
335 it may be referenced by the debug information, and we can
336 no longer elide it. */
337 || DECL_RTL_SET_P (decl)))
338 cgraph_varpool_mark_needed_node (node);
340 node = next;
342 /* Make sure we mark alias targets as used targets. */
343 finish_aliases_1 ();
344 cgraph_varpool_analyze_pending_decls ();
348 /* When not doing unit-at-a-time, output all functions enqueued.
349 Return true when such a functions were found. */
351 bool
352 cgraph_assemble_pending_functions (void)
354 bool output = false;
356 if (flag_unit_at_a_time)
357 return false;
359 cgraph_output_pending_asms ();
361 while (cgraph_nodes_queue)
363 struct cgraph_node *n = cgraph_nodes_queue;
365 cgraph_nodes_queue = cgraph_nodes_queue->next_needed;
366 n->next_needed = NULL;
367 if (!n->global.inlined_to
368 && !n->alias
369 && !DECL_EXTERNAL (n->decl))
371 cgraph_expand_function (n);
372 output = true;
376 /* Process CGRAPH_EXPAND_QUEUE, these are functions created during
377 the expansion process. Note that this queue may grow as its
378 being processed, as the new functions may generate new ones. */
379 while (cgraph_expand_queue)
381 struct cgraph_node *n = cgraph_expand_queue;
382 cgraph_expand_queue = cgraph_expand_queue->next_needed;
383 n->next_needed = NULL;
384 cgraph_finalize_function (n->decl, false);
385 output = true;
388 return output;
392 /* As an GCC extension we allow redefinition of the function. The
393 semantics when both copies of bodies differ is not well defined.
394 We replace the old body with new body so in unit at a time mode
395 we always use new body, while in normal mode we may end up with
396 old body inlined into some functions and new body expanded and
397 inlined in others.
399 ??? It may make more sense to use one body for inlining and other
400 body for expanding the function but this is difficult to do. */
402 static void
403 cgraph_reset_node (struct cgraph_node *node)
405 /* If node->output is set, then this is a unit-at-a-time compilation
406 and we have already begun whole-unit analysis. This is *not*
407 testing for whether we've already emitted the function. That
408 case can be sort-of legitimately seen with real function
409 redefinition errors. I would argue that the front end should
410 never present us with such a case, but don't enforce that for now. */
411 gcc_assert (!node->output);
413 /* Reset our data structures so we can analyze the function again. */
414 memset (&node->local, 0, sizeof (node->local));
415 memset (&node->global, 0, sizeof (node->global));
416 memset (&node->rtl, 0, sizeof (node->rtl));
417 node->analyzed = false;
418 node->local.redefined_extern_inline = true;
419 node->local.finalized = false;
421 if (!flag_unit_at_a_time)
423 struct cgraph_node *n, *next;
425 for (n = cgraph_nodes; n; n = next)
427 next = n->next;
428 if (n->global.inlined_to == node)
429 cgraph_remove_node (n);
433 cgraph_node_remove_callees (node);
435 /* We may need to re-queue the node for assembling in case
436 we already proceeded it and ignored as not needed. */
437 if (node->reachable && !flag_unit_at_a_time)
439 struct cgraph_node *n;
441 for (n = cgraph_nodes_queue; n; n = n->next_needed)
442 if (n == node)
443 break;
444 if (!n)
445 node->reachable = 0;
449 static void
450 cgraph_lower_function (struct cgraph_node *node)
452 if (node->lowered)
453 return;
454 tree_lowering_passes (node->decl);
455 node->lowered = true;
458 /* DECL has been parsed. Take it, queue it, compile it at the whim of the
459 logic in effect. If NESTED is true, then our caller cannot stand to have
460 the garbage collector run at the moment. We would need to either create
461 a new GC context, or just not compile right now. */
463 void
464 cgraph_finalize_function (tree decl, bool nested)
466 struct cgraph_node *node = cgraph_node (decl);
468 if (node->local.finalized)
469 cgraph_reset_node (node);
471 notice_global_symbol (decl);
472 node->decl = decl;
473 node->local.finalized = true;
474 node->lowered = DECL_STRUCT_FUNCTION (decl)->cfg != NULL;
475 if (node->nested)
476 lower_nested_functions (decl);
477 gcc_assert (!node->nested);
479 /* If not unit at a time, then we need to create the call graph
480 now, so that called functions can be queued and emitted now. */
481 if (!flag_unit_at_a_time)
483 cgraph_analyze_function (node);
484 cgraph_decide_inlining_incrementally (node, false);
487 if (decide_is_function_needed (node, decl))
488 cgraph_mark_needed_node (node);
490 /* Since we reclaim unreachable nodes at the end of every language
491 level unit, we need to be conservative about possible entry points
492 there. */
493 if ((TREE_PUBLIC (decl) && !DECL_COMDAT (decl) && !DECL_EXTERNAL (decl)))
494 cgraph_mark_reachable_node (node);
496 /* If not unit at a time, go ahead and emit everything we've found
497 to be reachable at this time. */
498 if (!nested)
500 if (!cgraph_assemble_pending_functions ())
501 ggc_collect ();
504 /* If we've not yet emitted decl, tell the debug info about it. */
505 if (!TREE_ASM_WRITTEN (decl))
506 (*debug_hooks->deferred_inline_function) (decl);
508 /* Possibly warn about unused parameters. */
509 if (warn_unused_parameter)
510 do_warn_unused_parameter (decl);
513 /* Walk tree and record all calls. Called via walk_tree. */
514 static tree
515 record_reference (tree *tp, int *walk_subtrees, void *data)
517 tree t = *tp;
519 switch (TREE_CODE (t))
521 case VAR_DECL:
522 /* ??? Really, we should mark this decl as *potentially* referenced
523 by this function and re-examine whether the decl is actually used
524 after rtl has been generated. */
525 if (TREE_STATIC (t) || DECL_EXTERNAL (t))
527 cgraph_varpool_mark_needed_node (cgraph_varpool_node (t));
528 if (lang_hooks.callgraph.analyze_expr)
529 return lang_hooks.callgraph.analyze_expr (tp, walk_subtrees,
530 data);
532 break;
534 case FDESC_EXPR:
535 case ADDR_EXPR:
536 if (flag_unit_at_a_time)
538 /* Record dereferences to the functions. This makes the
539 functions reachable unconditionally. */
540 tree decl = TREE_OPERAND (*tp, 0);
541 if (TREE_CODE (decl) == FUNCTION_DECL)
542 cgraph_mark_needed_node (cgraph_node (decl));
544 break;
546 default:
547 /* Save some cycles by not walking types and declaration as we
548 won't find anything useful there anyway. */
549 if (IS_TYPE_OR_DECL_P (*tp))
551 *walk_subtrees = 0;
552 break;
555 if ((unsigned int) TREE_CODE (t) >= LAST_AND_UNUSED_TREE_CODE)
556 return lang_hooks.callgraph.analyze_expr (tp, walk_subtrees, data);
557 break;
560 return NULL;
563 /* Create cgraph edges for function calls inside BODY from NODE. */
565 static void
566 cgraph_create_edges (struct cgraph_node *node, tree body)
568 basic_block bb;
570 struct function *this_cfun = DECL_STRUCT_FUNCTION (body);
571 block_stmt_iterator bsi;
572 tree step;
573 visited_nodes = pointer_set_create ();
575 /* Reach the trees by walking over the CFG, and note the
576 enclosing basic-blocks in the call edges. */
577 FOR_EACH_BB_FN (bb, this_cfun)
578 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
580 tree stmt = bsi_stmt (bsi);
581 tree call = get_call_expr_in (stmt);
582 tree decl;
584 if (call && (decl = get_callee_fndecl (call)))
586 cgraph_create_edge (node, cgraph_node (decl), stmt,
587 bb->count,
588 bb->loop_depth);
589 walk_tree (&TREE_OPERAND (call, 1),
590 record_reference, node, visited_nodes);
591 if (TREE_CODE (stmt) == MODIFY_EXPR)
592 walk_tree (&TREE_OPERAND (stmt, 0),
593 record_reference, node, visited_nodes);
595 else
596 walk_tree (bsi_stmt_ptr (bsi), record_reference, node, visited_nodes);
599 /* Look for initializers of constant variables and private statics. */
600 for (step = DECL_STRUCT_FUNCTION (body)->unexpanded_var_list;
601 step;
602 step = TREE_CHAIN (step))
604 tree decl = TREE_VALUE (step);
605 if (TREE_CODE (decl) == VAR_DECL
606 && (TREE_STATIC (decl) && !DECL_EXTERNAL (decl))
607 && flag_unit_at_a_time)
608 cgraph_varpool_finalize_decl (decl);
609 else if (TREE_CODE (decl) == VAR_DECL && DECL_INITIAL (decl))
610 walk_tree (&DECL_INITIAL (decl), record_reference, node, visited_nodes);
613 pointer_set_destroy (visited_nodes);
614 visited_nodes = NULL;
617 /* Give initial reasons why inlining would fail. Those gets
618 either NULLified or usually overwritten by more precise reason
619 later. */
620 static void
621 initialize_inline_failed (struct cgraph_node *node)
623 struct cgraph_edge *e;
625 for (e = node->callers; e; e = e->next_caller)
627 gcc_assert (!e->callee->global.inlined_to);
628 gcc_assert (e->inline_failed);
629 if (node->local.redefined_extern_inline)
630 e->inline_failed = N_("redefined extern inline functions are not "
631 "considered for inlining");
632 else if (!node->local.inlinable)
633 e->inline_failed = N_("function not inlinable");
634 else
635 e->inline_failed = N_("function not considered for inlining");
639 /* Rebuild call edges from current function after a passes not aware
640 of cgraph updating. */
641 static unsigned int
642 rebuild_cgraph_edges (void)
644 basic_block bb;
645 struct cgraph_node *node = cgraph_node (current_function_decl);
646 block_stmt_iterator bsi;
648 cgraph_node_remove_callees (node);
650 node->count = ENTRY_BLOCK_PTR->count;
652 FOR_EACH_BB (bb)
653 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
655 tree stmt = bsi_stmt (bsi);
656 tree call = get_call_expr_in (stmt);
657 tree decl;
659 if (call && (decl = get_callee_fndecl (call)))
660 cgraph_create_edge (node, cgraph_node (decl), stmt,
661 bb->count,
662 bb->loop_depth);
664 initialize_inline_failed (node);
665 gcc_assert (!node->global.inlined_to);
666 return 0;
669 struct tree_opt_pass pass_rebuild_cgraph_edges =
671 NULL, /* name */
672 NULL, /* gate */
673 rebuild_cgraph_edges, /* execute */
674 NULL, /* sub */
675 NULL, /* next */
676 0, /* static_pass_number */
677 0, /* tv_id */
678 PROP_cfg, /* properties_required */
679 0, /* properties_provided */
680 0, /* properties_destroyed */
681 0, /* todo_flags_start */
682 0, /* todo_flags_finish */
683 0 /* letter */
686 /* Verify cgraph nodes of given cgraph node. */
687 void
688 verify_cgraph_node (struct cgraph_node *node)
690 struct cgraph_edge *e;
691 struct cgraph_node *main_clone;
692 struct function *this_cfun = DECL_STRUCT_FUNCTION (node->decl);
693 basic_block this_block;
694 block_stmt_iterator bsi;
695 bool error_found = false;
697 timevar_push (TV_CGRAPH_VERIFY);
698 for (e = node->callees; e; e = e->next_callee)
699 if (e->aux)
701 error ("aux field set for edge %s->%s",
702 cgraph_node_name (e->caller), cgraph_node_name (e->callee));
703 error_found = true;
705 if (node->count < 0)
707 error ("Execution count is negative");
708 error_found = true;
710 for (e = node->callers; e; e = e->next_caller)
712 if (e->count < 0)
714 error ("caller edge count is negative");
715 error_found = true;
717 if (!e->inline_failed)
719 if (node->global.inlined_to
720 != (e->caller->global.inlined_to
721 ? e->caller->global.inlined_to : e->caller))
723 error ("inlined_to pointer is wrong");
724 error_found = true;
726 if (node->callers->next_caller)
728 error ("multiple inline callers");
729 error_found = true;
732 else
733 if (node->global.inlined_to)
735 error ("inlined_to pointer set for noninline callers");
736 error_found = true;
739 if (!node->callers && node->global.inlined_to)
741 error ("inlined_to pointer is set but no predecessors found");
742 error_found = true;
744 if (node->global.inlined_to == node)
746 error ("inlined_to pointer refers to itself");
747 error_found = true;
750 for (main_clone = cgraph_node (node->decl); main_clone;
751 main_clone = main_clone->next_clone)
752 if (main_clone == node)
753 break;
754 if (!cgraph_node (node->decl))
756 error ("node not found in cgraph_hash");
757 error_found = true;
760 if (node->analyzed
761 && DECL_SAVED_TREE (node->decl) && !TREE_ASM_WRITTEN (node->decl)
762 && (!DECL_EXTERNAL (node->decl) || node->global.inlined_to))
764 if (this_cfun->cfg)
766 /* The nodes we're interested in are never shared, so walk
767 the tree ignoring duplicates. */
768 visited_nodes = pointer_set_create ();
769 /* Reach the trees by walking over the CFG, and note the
770 enclosing basic-blocks in the call edges. */
771 FOR_EACH_BB_FN (this_block, this_cfun)
772 for (bsi = bsi_start (this_block); !bsi_end_p (bsi); bsi_next (&bsi))
774 tree stmt = bsi_stmt (bsi);
775 tree call = get_call_expr_in (stmt);
776 tree decl;
777 if (call && (decl = get_callee_fndecl (call)))
779 struct cgraph_edge *e = cgraph_edge (node, stmt);
780 if (e)
782 if (e->aux)
784 error ("shared call_stmt:");
785 debug_generic_stmt (stmt);
786 error_found = true;
788 if (e->callee->decl != cgraph_node (decl)->decl
789 && e->inline_failed)
791 error ("edge points to wrong declaration:");
792 debug_tree (e->callee->decl);
793 fprintf (stderr," Instead of:");
794 debug_tree (decl);
796 e->aux = (void *)1;
798 else
800 error ("missing callgraph edge for call stmt:");
801 debug_generic_stmt (stmt);
802 error_found = true;
806 pointer_set_destroy (visited_nodes);
807 visited_nodes = NULL;
809 else
810 /* No CFG available?! */
811 gcc_unreachable ();
813 for (e = node->callees; e; e = e->next_callee)
815 if (!e->aux)
817 error ("edge %s->%s has no corresponding call_stmt",
818 cgraph_node_name (e->caller),
819 cgraph_node_name (e->callee));
820 debug_generic_stmt (e->call_stmt);
821 error_found = true;
823 e->aux = 0;
826 if (error_found)
828 dump_cgraph_node (stderr, node);
829 internal_error ("verify_cgraph_node failed");
831 timevar_pop (TV_CGRAPH_VERIFY);
834 /* Verify whole cgraph structure. */
835 void
836 verify_cgraph (void)
838 struct cgraph_node *node;
840 if (sorrycount || errorcount)
841 return;
843 for (node = cgraph_nodes; node; node = node->next)
844 verify_cgraph_node (node);
847 /* Output one variable, if necessary. Return whether we output it. */
848 static bool
849 cgraph_varpool_assemble_decl (struct cgraph_varpool_node *node)
851 tree decl = node->decl;
853 if (!TREE_ASM_WRITTEN (decl)
854 && !node->alias
855 && !DECL_EXTERNAL (decl)
856 && (TREE_CODE (decl) != VAR_DECL || !DECL_HAS_VALUE_EXPR_P (decl)))
858 assemble_variable (decl, 0, 1, 0);
859 /* Local static variables are never seen by check_global_declarations
860 so we need to output debug info by hand. */
861 if (DECL_CONTEXT (decl)
862 && (TREE_CODE (DECL_CONTEXT (decl)) == BLOCK
863 || TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL)
864 && errorcount == 0 && sorrycount == 0)
866 timevar_push (TV_SYMOUT);
867 (*debug_hooks->global_decl) (decl);
868 timevar_pop (TV_SYMOUT);
870 return true;
873 return false;
876 /* Output all variables enqueued to be assembled. */
877 bool
878 cgraph_varpool_assemble_pending_decls (void)
880 bool changed = false;
882 if (errorcount || sorrycount)
883 return false;
885 /* EH might mark decls as needed during expansion. This should be safe since
886 we don't create references to new function, but it should not be used
887 elsewhere. */
888 cgraph_varpool_analyze_pending_decls ();
890 while (cgraph_varpool_nodes_queue)
892 struct cgraph_varpool_node *node = cgraph_varpool_nodes_queue;
894 cgraph_varpool_nodes_queue = cgraph_varpool_nodes_queue->next_needed;
895 if (cgraph_varpool_assemble_decl (node))
896 changed = true;
897 node->next_needed = NULL;
899 return changed;
902 /* Output all asm statements we have stored up to be output. */
904 static void
905 cgraph_output_pending_asms (void)
907 struct cgraph_asm_node *can;
909 if (errorcount || sorrycount)
910 return;
912 for (can = cgraph_asm_nodes; can; can = can->next)
913 assemble_asm (can->asm_str);
914 cgraph_asm_nodes = NULL;
917 /* Analyze the function scheduled to be output. */
918 void
919 cgraph_analyze_function (struct cgraph_node *node)
921 tree decl = node->decl;
923 current_function_decl = decl;
924 push_cfun (DECL_STRUCT_FUNCTION (decl));
925 cgraph_lower_function (node);
927 /* First kill forward declaration so reverse inlining works properly. */
928 cgraph_create_edges (node, decl);
930 node->local.inlinable = tree_inlinable_function_p (decl);
931 if (!flag_unit_at_a_time)
932 node->local.self_insns = estimate_num_insns (decl);
933 if (node->local.inlinable)
934 node->local.disregard_inline_limits
935 = lang_hooks.tree_inlining.disregard_inline_limits (decl);
936 initialize_inline_failed (node);
937 if (flag_really_no_inline && !node->local.disregard_inline_limits)
938 node->local.inlinable = 0;
939 /* Inlining characteristics are maintained by the cgraph_mark_inline. */
940 node->global.insns = node->local.self_insns;
942 node->analyzed = true;
943 pop_cfun ();
944 current_function_decl = NULL;
947 /* Look for externally_visible and used attributes and mark cgraph nodes
948 accordingly.
950 We cannot mark the nodes at the point the attributes are processed (in
951 handle_*_attribute) because the copy of the declarations available at that
952 point may not be canonical. For example, in:
954 void f();
955 void f() __attribute__((used));
957 the declaration we see in handle_used_attribute will be the second
958 declaration -- but the front end will subsequently merge that declaration
959 with the original declaration and discard the second declaration.
961 Furthermore, we can't mark these nodes in cgraph_finalize_function because:
963 void f() {}
964 void f() __attribute__((externally_visible));
966 is valid.
968 So, we walk the nodes at the end of the translation unit, applying the
969 attributes at that point. */
971 static void
972 process_function_and_variable_attributes (struct cgraph_node *first,
973 struct cgraph_varpool_node *first_var)
975 struct cgraph_node *node;
976 struct cgraph_varpool_node *vnode;
978 for (node = cgraph_nodes; node != first; node = node->next)
980 tree decl = node->decl;
981 if (lookup_attribute ("used", DECL_ATTRIBUTES (decl)))
983 mark_decl_referenced (decl);
984 if (node->local.finalized)
985 cgraph_mark_needed_node (node);
987 if (lookup_attribute ("externally_visible", DECL_ATTRIBUTES (decl)))
989 if (! TREE_PUBLIC (node->decl))
990 warning (OPT_Wattributes,
991 "%J%<externally_visible%> attribute have effect only on public objects",
992 node->decl);
993 else
995 if (node->local.finalized)
996 cgraph_mark_needed_node (node);
997 node->local.externally_visible = true;
1001 for (vnode = cgraph_varpool_nodes; vnode != first_var; vnode = vnode->next)
1003 tree decl = vnode->decl;
1004 if (lookup_attribute ("used", DECL_ATTRIBUTES (decl)))
1006 mark_decl_referenced (decl);
1007 if (vnode->finalized)
1008 cgraph_varpool_mark_needed_node (vnode);
1010 if (lookup_attribute ("externally_visible", DECL_ATTRIBUTES (decl)))
1012 if (! TREE_PUBLIC (vnode->decl))
1013 warning (OPT_Wattributes,
1014 "%J%<externally_visible%> attribute have effect only on public objects",
1015 vnode->decl);
1016 else
1018 if (vnode->finalized)
1019 cgraph_varpool_mark_needed_node (vnode);
1020 vnode->externally_visible = true;
1026 /* Analyze the whole compilation unit once it is parsed completely. */
1028 void
1029 cgraph_finalize_compilation_unit (void)
1031 struct cgraph_node *node, *next;
1032 /* Keep track of already processed nodes when called multiple times for
1033 intermodule optimization. */
1034 static struct cgraph_node *first_analyzed;
1035 static struct cgraph_varpool_node *first_analyzed_var;
1037 if (errorcount || sorrycount)
1038 return;
1040 finish_aliases_1 ();
1042 if (!flag_unit_at_a_time)
1044 cgraph_output_pending_asms ();
1045 cgraph_assemble_pending_functions ();
1046 return;
1049 if (!quiet_flag)
1051 fprintf (stderr, "\nAnalyzing compilation unit");
1052 fflush (stderr);
1055 timevar_push (TV_CGRAPH);
1056 process_function_and_variable_attributes (first_analyzed, first_analyzed_var);
1057 cgraph_varpool_analyze_pending_decls ();
1058 if (cgraph_dump_file)
1060 fprintf (cgraph_dump_file, "Initial entry points:");
1061 for (node = cgraph_nodes; node != first_analyzed; node = node->next)
1062 if (node->needed && DECL_SAVED_TREE (node->decl))
1063 fprintf (cgraph_dump_file, " %s", cgraph_node_name (node));
1064 fprintf (cgraph_dump_file, "\n");
1067 /* Propagate reachability flag and lower representation of all reachable
1068 functions. In the future, lowering will introduce new functions and
1069 new entry points on the way (by template instantiation and virtual
1070 method table generation for instance). */
1071 while (cgraph_nodes_queue)
1073 struct cgraph_edge *edge;
1074 tree decl = cgraph_nodes_queue->decl;
1076 node = cgraph_nodes_queue;
1077 cgraph_nodes_queue = cgraph_nodes_queue->next_needed;
1078 node->next_needed = NULL;
1080 /* ??? It is possible to create extern inline function and later using
1081 weak alias attribute to kill its body. See
1082 gcc.c-torture/compile/20011119-1.c */
1083 if (!DECL_SAVED_TREE (decl))
1085 cgraph_reset_node (node);
1086 continue;
1089 gcc_assert (!node->analyzed && node->reachable);
1090 gcc_assert (DECL_SAVED_TREE (decl));
1092 cgraph_analyze_function (node);
1094 for (edge = node->callees; edge; edge = edge->next_callee)
1095 if (!edge->callee->reachable)
1096 cgraph_mark_reachable_node (edge->callee);
1098 cgraph_varpool_analyze_pending_decls ();
1101 /* Collect entry points to the unit. */
1103 if (cgraph_dump_file)
1105 fprintf (cgraph_dump_file, "Unit entry points:");
1106 for (node = cgraph_nodes; node != first_analyzed; node = node->next)
1107 if (node->needed && DECL_SAVED_TREE (node->decl))
1108 fprintf (cgraph_dump_file, " %s", cgraph_node_name (node));
1109 fprintf (cgraph_dump_file, "\n\nInitial ");
1110 dump_cgraph (cgraph_dump_file);
1113 if (cgraph_dump_file)
1114 fprintf (cgraph_dump_file, "\nReclaiming functions:");
1116 for (node = cgraph_nodes; node != first_analyzed; node = next)
1118 tree decl = node->decl;
1119 next = node->next;
1121 if (node->local.finalized && !DECL_SAVED_TREE (decl))
1122 cgraph_reset_node (node);
1124 if (!node->reachable && DECL_SAVED_TREE (decl))
1126 if (cgraph_dump_file)
1127 fprintf (cgraph_dump_file, " %s", cgraph_node_name (node));
1128 cgraph_remove_node (node);
1129 continue;
1131 else
1132 node->next_needed = NULL;
1133 gcc_assert (!node->local.finalized || DECL_SAVED_TREE (decl));
1134 gcc_assert (node->analyzed == node->local.finalized);
1136 if (cgraph_dump_file)
1138 fprintf (cgraph_dump_file, "\n\nReclaimed ");
1139 dump_cgraph (cgraph_dump_file);
1141 first_analyzed = cgraph_nodes;
1142 first_analyzed_var = cgraph_varpool_nodes;
1143 ggc_collect ();
1144 timevar_pop (TV_CGRAPH);
1146 /* Figure out what functions we want to assemble. */
1148 static void
1149 cgraph_mark_functions_to_output (void)
1151 struct cgraph_node *node;
1153 for (node = cgraph_nodes; node; node = node->next)
1155 tree decl = node->decl;
1156 struct cgraph_edge *e;
1158 gcc_assert (!node->output);
1160 for (e = node->callers; e; e = e->next_caller)
1161 if (e->inline_failed)
1162 break;
1164 /* We need to output all local functions that are used and not
1165 always inlined, as well as those that are reachable from
1166 outside the current compilation unit. */
1167 if (DECL_SAVED_TREE (decl)
1168 && !node->global.inlined_to
1169 && (node->needed
1170 || (e && node->reachable))
1171 && !TREE_ASM_WRITTEN (decl)
1172 && !DECL_EXTERNAL (decl))
1173 node->output = 1;
1174 else
1176 /* We should've reclaimed all functions that are not needed. */
1177 #ifdef ENABLE_CHECKING
1178 if (!node->global.inlined_to && DECL_SAVED_TREE (decl)
1179 && !DECL_EXTERNAL (decl))
1181 dump_cgraph_node (stderr, node);
1182 internal_error ("failed to reclaim unneeded function");
1184 #endif
1185 gcc_assert (node->global.inlined_to || !DECL_SAVED_TREE (decl)
1186 || DECL_EXTERNAL (decl));
1193 /* Expand function specified by NODE. */
1195 static void
1196 cgraph_expand_function (struct cgraph_node *node)
1198 tree decl = node->decl;
1200 /* We ought to not compile any inline clones. */
1201 gcc_assert (!node->global.inlined_to);
1203 if (flag_unit_at_a_time)
1204 announce_function (decl);
1206 cgraph_lower_function (node);
1208 /* Generate RTL for the body of DECL. */
1209 lang_hooks.callgraph.expand_function (decl);
1211 /* Make sure that BE didn't give up on compiling. */
1212 /* ??? Can happen with nested function of extern inline. */
1213 gcc_assert (TREE_ASM_WRITTEN (node->decl));
1215 current_function_decl = NULL;
1216 if (!cgraph_preserve_function_body_p (node->decl))
1218 DECL_SAVED_TREE (node->decl) = NULL;
1219 DECL_STRUCT_FUNCTION (node->decl) = NULL;
1220 DECL_INITIAL (node->decl) = error_mark_node;
1221 /* Eliminate all call edges. This is important so the call_expr no longer
1222 points to the dead function body. */
1223 cgraph_node_remove_callees (node);
1226 cgraph_function_flags_ready = true;
1229 /* Return true when CALLER_DECL should be inlined into CALLEE_DECL. */
1231 bool
1232 cgraph_inline_p (struct cgraph_edge *e, const char **reason)
1234 *reason = e->inline_failed;
1235 return !e->inline_failed;
1240 /* Expand all functions that must be output.
1242 Attempt to topologically sort the nodes so function is output when
1243 all called functions are already assembled to allow data to be
1244 propagated across the callgraph. Use a stack to get smaller distance
1245 between a function and its callees (later we may choose to use a more
1246 sophisticated algorithm for function reordering; we will likely want
1247 to use subsections to make the output functions appear in top-down
1248 order). */
1250 static void
1251 cgraph_expand_all_functions (void)
1253 struct cgraph_node *node;
1254 struct cgraph_node **order = XCNEWVEC (struct cgraph_node *, cgraph_n_nodes);
1255 int order_pos = 0, new_order_pos = 0;
1256 int i;
1258 order_pos = cgraph_postorder (order);
1259 gcc_assert (order_pos == cgraph_n_nodes);
1261 /* Garbage collector may remove inline clones we eliminate during
1262 optimization. So we must be sure to not reference them. */
1263 for (i = 0; i < order_pos; i++)
1264 if (order[i]->output)
1265 order[new_order_pos++] = order[i];
1267 for (i = new_order_pos - 1; i >= 0; i--)
1269 node = order[i];
1270 if (node->output)
1272 gcc_assert (node->reachable);
1273 node->output = 0;
1274 cgraph_expand_function (node);
1278 free (order);
1280 /* Process CGRAPH_EXPAND_QUEUE, these are functions created during
1281 the expansion process. Note that this queue may grow as its
1282 being processed, as the new functions may generate new ones. */
1283 while (cgraph_expand_queue)
1285 node = cgraph_expand_queue;
1286 cgraph_expand_queue = cgraph_expand_queue->next_needed;
1287 node->next_needed = NULL;
1288 node->output = 0;
1289 node->lowered = DECL_STRUCT_FUNCTION (node->decl)->cfg != NULL;
1290 cgraph_expand_function (node);
1294 /* This is used to sort the node types by the cgraph order number. */
1296 struct cgraph_order_sort
1298 enum { ORDER_UNDEFINED = 0, ORDER_FUNCTION, ORDER_VAR, ORDER_ASM } kind;
1299 union
1301 struct cgraph_node *f;
1302 struct cgraph_varpool_node *v;
1303 struct cgraph_asm_node *a;
1304 } u;
1307 /* Output all functions, variables, and asm statements in the order
1308 according to their order fields, which is the order in which they
1309 appeared in the file. This implements -fno-toplevel-reorder. In
1310 this mode we may output functions and variables which don't really
1311 need to be output. */
1313 static void
1314 cgraph_output_in_order (void)
1316 int max;
1317 size_t size;
1318 struct cgraph_order_sort *nodes;
1319 int i;
1320 struct cgraph_node *pf;
1321 struct cgraph_varpool_node *pv;
1322 struct cgraph_asm_node *pa;
1324 max = cgraph_order;
1325 size = max * sizeof (struct cgraph_order_sort);
1326 nodes = (struct cgraph_order_sort *) alloca (size);
1327 memset (nodes, 0, size);
1329 cgraph_varpool_analyze_pending_decls ();
1331 for (pf = cgraph_nodes; pf; pf = pf->next)
1333 if (pf->output)
1335 i = pf->order;
1336 gcc_assert (nodes[i].kind == ORDER_UNDEFINED);
1337 nodes[i].kind = ORDER_FUNCTION;
1338 nodes[i].u.f = pf;
1342 for (pv = cgraph_varpool_nodes_queue; pv; pv = pv->next_needed)
1344 i = pv->order;
1345 gcc_assert (nodes[i].kind == ORDER_UNDEFINED);
1346 nodes[i].kind = ORDER_VAR;
1347 nodes[i].u.v = pv;
1350 for (pa = cgraph_asm_nodes; pa; pa = pa->next)
1352 i = pa->order;
1353 gcc_assert (nodes[i].kind == ORDER_UNDEFINED);
1354 nodes[i].kind = ORDER_ASM;
1355 nodes[i].u.a = pa;
1358 for (i = 0; i < max; ++i)
1360 switch (nodes[i].kind)
1362 case ORDER_FUNCTION:
1363 nodes[i].u.f->output = 0;
1364 cgraph_expand_function (nodes[i].u.f);
1365 break;
1367 case ORDER_VAR:
1368 cgraph_varpool_assemble_decl (nodes[i].u.v);
1369 break;
1371 case ORDER_ASM:
1372 assemble_asm (nodes[i].u.a->asm_str);
1373 break;
1375 case ORDER_UNDEFINED:
1376 break;
1378 default:
1379 gcc_unreachable ();
1383 cgraph_asm_nodes = NULL;
1386 /* Mark visibility of all functions.
1388 A local function is one whose calls can occur only in the current
1389 compilation unit and all its calls are explicit, so we can change
1390 its calling convention. We simply mark all static functions whose
1391 address is not taken as local.
1393 We also change the TREE_PUBLIC flag of all declarations that are public
1394 in language point of view but we want to overwrite this default
1395 via visibilities for the backend point of view. */
1397 static void
1398 cgraph_function_and_variable_visibility (void)
1400 struct cgraph_node *node;
1401 struct cgraph_varpool_node *vnode;
1403 for (node = cgraph_nodes; node; node = node->next)
1405 if (node->reachable
1406 && (DECL_COMDAT (node->decl)
1407 || (!flag_whole_program
1408 && TREE_PUBLIC (node->decl) && !DECL_EXTERNAL (node->decl))))
1409 node->local.externally_visible = true;
1410 if (!node->local.externally_visible && node->analyzed
1411 && !DECL_EXTERNAL (node->decl))
1413 gcc_assert (flag_whole_program || !TREE_PUBLIC (node->decl));
1414 TREE_PUBLIC (node->decl) = 0;
1416 node->local.local = (!node->needed
1417 && node->analyzed
1418 && !DECL_EXTERNAL (node->decl)
1419 && !node->local.externally_visible);
1421 for (vnode = cgraph_varpool_nodes_queue; vnode; vnode = vnode->next_needed)
1423 if (vnode->needed
1424 && !flag_whole_program
1425 && (DECL_COMDAT (vnode->decl) || TREE_PUBLIC (vnode->decl)))
1426 vnode->externally_visible = 1;
1427 if (!vnode->externally_visible)
1429 gcc_assert (flag_whole_program || !TREE_PUBLIC (vnode->decl));
1430 TREE_PUBLIC (vnode->decl) = 0;
1432 gcc_assert (TREE_STATIC (vnode->decl));
1435 /* Because we have to be conservative on the boundaries of source
1436 level units, it is possible that we marked some functions in
1437 reachable just because they might be used later via external
1438 linkage, but after making them local they are really unreachable
1439 now. */
1440 cgraph_remove_unreachable_nodes (true, cgraph_dump_file);
1442 if (cgraph_dump_file)
1444 fprintf (cgraph_dump_file, "\nMarking local functions:");
1445 for (node = cgraph_nodes; node; node = node->next)
1446 if (node->local.local)
1447 fprintf (cgraph_dump_file, " %s", cgraph_node_name (node));
1448 fprintf (cgraph_dump_file, "\n\n");
1449 fprintf (cgraph_dump_file, "\nMarking externally visible functions:");
1450 for (node = cgraph_nodes; node; node = node->next)
1451 if (node->local.externally_visible)
1452 fprintf (cgraph_dump_file, " %s", cgraph_node_name (node));
1453 fprintf (cgraph_dump_file, "\n\n");
1455 cgraph_function_flags_ready = true;
1458 /* Return true when function body of DECL still needs to be kept around
1459 for later re-use. */
1460 bool
1461 cgraph_preserve_function_body_p (tree decl)
1463 struct cgraph_node *node;
1464 if (!cgraph_global_info_ready)
1465 return (DECL_INLINE (decl) && !flag_really_no_inline);
1466 /* Look if there is any clone around. */
1467 for (node = cgraph_node (decl); node; node = node->next_clone)
1468 if (node->global.inlined_to)
1469 return true;
1470 return false;
1473 static void
1474 ipa_passes (void)
1476 cfun = NULL;
1477 tree_register_cfg_hooks ();
1478 bitmap_obstack_initialize (NULL);
1479 execute_ipa_pass_list (all_ipa_passes);
1480 bitmap_obstack_release (NULL);
1483 /* Perform simple optimizations based on callgraph. */
1485 void
1486 cgraph_optimize (void)
1488 if (errorcount || sorrycount)
1489 return;
1491 #ifdef ENABLE_CHECKING
1492 verify_cgraph ();
1493 #endif
1494 if (!flag_unit_at_a_time)
1496 cgraph_output_pending_asms ();
1497 cgraph_varpool_assemble_pending_decls ();
1498 return;
1501 process_pending_assemble_externals ();
1503 /* Frontend may output common variables after the unit has been finalized.
1504 It is safe to deal with them here as they are always zero initialized. */
1505 cgraph_varpool_analyze_pending_decls ();
1507 timevar_push (TV_CGRAPHOPT);
1508 if (!quiet_flag)
1509 fprintf (stderr, "Performing intraprocedural optimizations\n");
1511 cgraph_function_and_variable_visibility ();
1512 if (cgraph_dump_file)
1514 fprintf (cgraph_dump_file, "Marked ");
1515 dump_cgraph (cgraph_dump_file);
1518 /* Don't run the IPA passes if there was any error or sorry messages. */
1519 if (errorcount == 0 && sorrycount == 0)
1520 ipa_passes ();
1522 /* This pass remove bodies of extern inline functions we never inlined.
1523 Do this later so other IPA passes see what is really going on. */
1524 cgraph_remove_unreachable_nodes (false, dump_file);
1525 cgraph_increase_alignment ();
1526 cgraph_global_info_ready = true;
1527 if (cgraph_dump_file)
1529 fprintf (cgraph_dump_file, "Optimized ");
1530 dump_cgraph (cgraph_dump_file);
1531 dump_varpool (cgraph_dump_file);
1533 timevar_pop (TV_CGRAPHOPT);
1535 /* Output everything. */
1536 if (!quiet_flag)
1537 fprintf (stderr, "Assembling functions:\n");
1538 #ifdef ENABLE_CHECKING
1539 verify_cgraph ();
1540 #endif
1542 cgraph_mark_functions_to_output ();
1544 if (!flag_toplevel_reorder)
1545 cgraph_output_in_order ();
1546 else
1548 cgraph_output_pending_asms ();
1550 cgraph_expand_all_functions ();
1551 cgraph_varpool_remove_unreferenced_decls ();
1553 cgraph_varpool_assemble_pending_decls ();
1556 if (cgraph_dump_file)
1558 fprintf (cgraph_dump_file, "\nFinal ");
1559 dump_cgraph (cgraph_dump_file);
1561 #ifdef ENABLE_CHECKING
1562 verify_cgraph ();
1563 /* Double check that all inline clones are gone and that all
1564 function bodies have been released from memory. */
1565 if (flag_unit_at_a_time
1566 && !(sorrycount || errorcount))
1568 struct cgraph_node *node;
1569 bool error_found = false;
1571 for (node = cgraph_nodes; node; node = node->next)
1572 if (node->analyzed
1573 && (node->global.inlined_to
1574 || DECL_SAVED_TREE (node->decl)))
1576 error_found = true;
1577 dump_cgraph_node (stderr, node);
1579 if (error_found)
1580 internal_error ("nodes with no released memory found");
1582 #endif
1585 /* Increase alignment of global arrays to improve vectorization potential.
1586 TODO:
1587 - Consider also structs that have an array field.
1588 - Use ipa analysis to prune arrays that can't be vectorized?
1589 This should involve global alignment analysis and in the future also
1590 array padding. */
1592 static void
1593 cgraph_increase_alignment (void)
1595 if (flag_section_anchors && flag_tree_vectorize)
1597 struct cgraph_varpool_node *vnode;
1599 /* Increase the alignment of all global arrays for vectorization. */
1600 for (vnode = cgraph_varpool_nodes_queue;
1601 vnode;
1602 vnode = vnode->next_needed)
1604 tree vectype, decl = vnode->decl;
1605 unsigned int alignment;
1607 if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
1608 continue;
1609 vectype = get_vectype_for_scalar_type (TREE_TYPE (TREE_TYPE (decl)));
1610 if (!vectype)
1611 continue;
1612 alignment = TYPE_ALIGN (vectype);
1613 if (DECL_ALIGN (decl) >= alignment)
1614 continue;
1616 if (vect_can_force_dr_alignment_p (decl, alignment))
1618 DECL_ALIGN (decl) = TYPE_ALIGN (vectype);
1619 DECL_USER_ALIGN (decl) = 1;
1620 if (cgraph_dump_file)
1622 fprintf (cgraph_dump_file, "Increasing alignment of decl: ");
1623 print_generic_expr (cgraph_dump_file, decl, TDF_SLIM);
1630 /* Generate and emit a static constructor or destructor. WHICH must be
1631 one of 'I' or 'D'. BODY should be a STATEMENT_LIST containing
1632 GENERIC statements. */
1634 void
1635 cgraph_build_static_cdtor (char which, tree body, int priority)
1637 static int counter = 0;
1638 char which_buf[16];
1639 tree decl, name, resdecl;
1641 sprintf (which_buf, "%c_%d", which, counter++);
1642 name = get_file_function_name_long (which_buf);
1644 decl = build_decl (FUNCTION_DECL, name,
1645 build_function_type (void_type_node, void_list_node));
1646 current_function_decl = decl;
1648 resdecl = build_decl (RESULT_DECL, NULL_TREE, void_type_node);
1649 DECL_ARTIFICIAL (resdecl) = 1;
1650 DECL_IGNORED_P (resdecl) = 1;
1651 DECL_RESULT (decl) = resdecl;
1653 allocate_struct_function (decl);
1655 TREE_STATIC (decl) = 1;
1656 TREE_USED (decl) = 1;
1657 DECL_ARTIFICIAL (decl) = 1;
1658 DECL_IGNORED_P (decl) = 1;
1659 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (decl) = 1;
1660 DECL_SAVED_TREE (decl) = body;
1661 TREE_PUBLIC (decl) = ! targetm.have_ctors_dtors;
1662 DECL_UNINLINABLE (decl) = 1;
1664 DECL_INITIAL (decl) = make_node (BLOCK);
1665 TREE_USED (DECL_INITIAL (decl)) = 1;
1667 DECL_SOURCE_LOCATION (decl) = input_location;
1668 cfun->function_end_locus = input_location;
1670 switch (which)
1672 case 'I':
1673 DECL_STATIC_CONSTRUCTOR (decl) = 1;
1674 break;
1675 case 'D':
1676 DECL_STATIC_DESTRUCTOR (decl) = 1;
1677 break;
1678 default:
1679 gcc_unreachable ();
1682 gimplify_function_tree (decl);
1684 /* ??? We will get called LATE in the compilation process. */
1685 if (cgraph_global_info_ready)
1687 tree_lowering_passes (decl);
1688 tree_rest_of_compilation (decl);
1690 else
1691 cgraph_finalize_function (decl, 0);
1693 if (targetm.have_ctors_dtors)
1695 void (*fn) (rtx, int);
1697 if (which == 'I')
1698 fn = targetm.asm_out.constructor;
1699 else
1700 fn = targetm.asm_out.destructor;
1701 fn (XEXP (DECL_RTL (decl), 0), priority);
1705 void
1706 init_cgraph (void)
1708 cgraph_dump_file = dump_begin (TDI_cgraph, NULL);
1711 /* The edges representing the callers of the NEW_VERSION node were
1712 fixed by cgraph_function_versioning (), now the call_expr in their
1713 respective tree code should be updated to call the NEW_VERSION. */
1715 static void
1716 update_call_expr (struct cgraph_node *new_version)
1718 struct cgraph_edge *e;
1720 gcc_assert (new_version);
1721 for (e = new_version->callers; e; e = e->next_caller)
1722 /* Update the call expr on the edges
1723 to call the new version. */
1724 TREE_OPERAND (TREE_OPERAND (get_call_expr_in (e->call_stmt), 0), 0) = new_version->decl;
1728 /* Create a new cgraph node which is the new version of
1729 OLD_VERSION node. REDIRECT_CALLERS holds the callers
1730 edges which should be redirected to point to
1731 NEW_VERSION. ALL the callees edges of OLD_VERSION
1732 are cloned to the new version node. Return the new
1733 version node. */
1735 static struct cgraph_node *
1736 cgraph_copy_node_for_versioning (struct cgraph_node *old_version,
1737 tree new_decl,
1738 VEC(cgraph_edge_p,heap) *redirect_callers)
1740 struct cgraph_node *new_version;
1741 struct cgraph_edge *e, *new_e;
1742 struct cgraph_edge *next_callee;
1743 unsigned i;
1745 gcc_assert (old_version);
1747 new_version = cgraph_node (new_decl);
1749 new_version->analyzed = true;
1750 new_version->local = old_version->local;
1751 new_version->global = old_version->global;
1752 new_version->rtl = new_version->rtl;
1753 new_version->reachable = true;
1754 new_version->count = old_version->count;
1756 /* Clone the old node callees. Recursive calls are
1757 also cloned. */
1758 for (e = old_version->callees;e; e=e->next_callee)
1760 new_e = cgraph_clone_edge (e, new_version, e->call_stmt, 0, e->loop_nest, true);
1761 new_e->count = e->count;
1763 /* Fix recursive calls.
1764 If OLD_VERSION has a recursive call after the
1765 previous edge cloning, the new version will have an edge
1766 pointing to the old version, which is wrong;
1767 Redirect it to point to the new version. */
1768 for (e = new_version->callees ; e; e = next_callee)
1770 next_callee = e->next_callee;
1771 if (e->callee == old_version)
1772 cgraph_redirect_edge_callee (e, new_version);
1774 if (!next_callee)
1775 break;
1777 for (i = 0; VEC_iterate (cgraph_edge_p, redirect_callers, i, e); i++)
1779 /* Redirect calls to the old version node to point to its new
1780 version. */
1781 cgraph_redirect_edge_callee (e, new_version);
1784 return new_version;
1787 /* Perform function versioning.
1788 Function versioning includes copying of the tree and
1789 a callgraph update (creating a new cgraph node and updating
1790 its callees and callers).
1792 REDIRECT_CALLERS varray includes the edges to be redirected
1793 to the new version.
1795 TREE_MAP is a mapping of tree nodes we want to replace with
1796 new ones (according to results of prior analysis).
1797 OLD_VERSION_NODE is the node that is versioned.
1798 It returns the new version's cgraph node. */
1800 struct cgraph_node *
1801 cgraph_function_versioning (struct cgraph_node *old_version_node,
1802 VEC(cgraph_edge_p,heap) *redirect_callers,
1803 varray_type tree_map)
1805 tree old_decl = old_version_node->decl;
1806 struct cgraph_node *new_version_node = NULL;
1807 tree new_decl;
1809 if (!tree_versionable_function_p (old_decl))
1810 return NULL;
1812 /* Make a new FUNCTION_DECL tree node for the
1813 new version. */
1814 new_decl = copy_node (old_decl);
1816 /* Create the new version's call-graph node.
1817 and update the edges of the new node. */
1818 new_version_node =
1819 cgraph_copy_node_for_versioning (old_version_node, new_decl,
1820 redirect_callers);
1822 /* Copy the OLD_VERSION_NODE function tree to the new version. */
1823 tree_function_versioning (old_decl, new_decl, tree_map, false);
1824 /* Update the call_expr on the edges to call the new version node. */
1825 update_call_expr (new_version_node);
1827 /* Update the new version's properties.
1828 Make The new version visible only within this translation unit.
1829 ??? We cannot use COMDAT linkage because there is no
1830 ABI support for this. */
1831 DECL_EXTERNAL (new_version_node->decl) = 0;
1832 DECL_ONE_ONLY (new_version_node->decl) = 0;
1833 TREE_PUBLIC (new_version_node->decl) = 0;
1834 DECL_COMDAT (new_version_node->decl) = 0;
1835 new_version_node->local.externally_visible = 0;
1836 new_version_node->local.local = 1;
1837 new_version_node->lowered = true;
1838 return new_version_node;
1841 /* Produce separate function body for inline clones so the offline copy can be
1842 modified without affecting them. */
1843 struct cgraph_node *
1844 save_inline_function_body (struct cgraph_node *node)
1846 struct cgraph_node *first_clone;
1848 gcc_assert (node == cgraph_node (node->decl));
1850 cgraph_lower_function (node);
1852 /* In non-unit-at-a-time we construct full fledged clone we never output to
1853 assembly file. This clone is pointed out by inline_decl of original function
1854 and inlining infrastructure knows how to deal with this. */
1855 if (!flag_unit_at_a_time)
1857 struct cgraph_edge *e;
1859 first_clone = cgraph_clone_node (node, node->count, 0, false);
1860 first_clone->needed = 0;
1861 first_clone->reachable = 1;
1862 /* Recursively clone all bodies. */
1863 for (e = first_clone->callees; e; e = e->next_callee)
1864 if (!e->inline_failed)
1865 cgraph_clone_inlined_nodes (e, true, false);
1867 else
1868 first_clone = node->next_clone;
1870 first_clone->decl = copy_node (node->decl);
1871 node->next_clone = NULL;
1872 if (!flag_unit_at_a_time)
1873 node->inline_decl = first_clone->decl;
1874 first_clone->prev_clone = NULL;
1875 cgraph_insert_node_to_hashtable (first_clone);
1876 gcc_assert (first_clone == cgraph_node (first_clone->decl));
1878 /* Copy the OLD_VERSION_NODE function tree to the new version. */
1879 tree_function_versioning (node->decl, first_clone->decl, NULL, true);
1881 DECL_EXTERNAL (first_clone->decl) = 0;
1882 DECL_ONE_ONLY (first_clone->decl) = 0;
1883 TREE_PUBLIC (first_clone->decl) = 0;
1884 DECL_COMDAT (first_clone->decl) = 0;
1886 for (node = first_clone->next_clone; node; node = node->next_clone)
1887 node->decl = first_clone->decl;
1888 #ifdef ENABLE_CHECKING
1889 verify_cgraph_node (first_clone);
1890 #endif
1891 return first_clone;