* gnu/regexp/CharIndexedReader.java: Removed.
[official-gcc.git] / gcc / cgraphunit.c
blobc079e404ee5abc9d1110966d39d72c9f779c15d4
1 /* Callgraph based intraprocedural optimizations.
2 Copyright (C) 2003, 2004 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, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, 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 it's 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.
141 Inlining decision heuristics
142 ??? Move this to separate file after tree-ssa merge.
144 We separate inlining decisions from the inliner itself and store it
145 inside callgraph as so called inline plan. Reffer to cgraph.c
146 documentation about particular representation of inline plans in the
147 callgraph
149 The implementation of particular heuristics is separated from
150 the rest of code to make it easier to replace it with more complicated
151 implementation in the future. The rest of inlining code acts as a
152 library aimed to modify the callgraph and verify that the parameters
153 on code size growth fits.
155 To mark given call inline, use cgraph_mark_inline function, the
156 verification is performed by cgraph_default_inline_p and
157 cgraph_check_inline_limits.
159 The heuristics implements simple knapsack style algorithm ordering
160 all functions by their "profitability" (estimated by code size growth)
161 and inlining them in priority order.
163 cgraph_decide_inlining implements heuristics taking whole callgraph
164 into account, while cgraph_decide_inlining_incrementally considers
165 only one function at a time and is used in non-unit-at-a-time mode. */
166 #include "config.h"
167 #include "system.h"
168 #include "coretypes.h"
169 #include "tm.h"
170 #include "tree.h"
171 #include "tree-inline.h"
172 #include "langhooks.h"
173 #include "hashtab.h"
174 #include "toplev.h"
175 #include "flags.h"
176 #include "ggc.h"
177 #include "debug.h"
178 #include "target.h"
179 #include "cgraph.h"
180 #include "diagnostic.h"
181 #include "timevar.h"
182 #include "params.h"
183 #include "fibheap.h"
184 #include "c-common.h"
185 #include "intl.h"
186 #include "function.h"
188 #define INSNS_PER_CALL 10
190 static void cgraph_expand_all_functions (void);
191 static void cgraph_mark_functions_to_output (void);
192 static void cgraph_expand_function (struct cgraph_node *);
193 static tree record_call_1 (tree *, int *, void *);
194 static void cgraph_mark_local_functions (void);
195 static bool cgraph_default_inline_p (struct cgraph_node *n);
196 static void cgraph_analyze_function (struct cgraph_node *node);
197 static void cgraph_decide_inlining_incrementally (struct cgraph_node *);
199 /* Statistics we collect about inlining algorithm. */
200 static int ncalls_inlined;
201 static int nfunctions_inlined;
202 static int initial_insns;
203 static int overall_insns;
205 /* Records tree nodes seen in cgraph_create_edges. Simply using
206 walk_tree_without_duplicates doesn't guarantee each node is visited
207 once because it gets a new htab upon each recursive call from
208 record_calls_1. */
209 static htab_t visited_nodes;
211 /* Determine if function DECL is needed. That is, visible to something
212 either outside this translation unit, something magic in the system
213 configury, or (if not doing unit-at-a-time) to something we havn't
214 seen yet. */
216 static bool
217 decide_is_function_needed (struct cgraph_node *node, tree decl)
219 struct cgraph_node *origin;
221 /* If we decided it was needed before, but at the time we didn't have
222 the body of the function available, then it's still needed. We have
223 to go back and re-check its dependencies now. */
224 if (node->needed)
225 return true;
227 /* Externally visible functions must be output. The exception is
228 COMDAT functions that must be output only when they are needed. */
229 if (TREE_PUBLIC (decl) && !DECL_COMDAT (decl) && !DECL_EXTERNAL (decl))
230 return true;
232 /* Constructors and destructors are reachable from the runtime by
233 some mechanism. */
234 if (DECL_STATIC_CONSTRUCTOR (decl) || DECL_STATIC_DESTRUCTOR (decl))
235 return true;
237 /* If the user told us it is used, then it must be so. */
238 if (lookup_attribute ("used", DECL_ATTRIBUTES (decl)))
239 return true;
241 /* ??? If the assembler name is set by hand, it is possible to assemble
242 the name later after finalizing the function and the fact is noticed
243 in assemble_name then. This is arguably a bug. */
244 if (DECL_ASSEMBLER_NAME_SET_P (decl)
245 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
246 return true;
248 if (flag_unit_at_a_time)
249 return false;
251 /* If not doing unit at a time, then we'll only defer this function
252 if its marked for inlining. Otherwise we want to emit it now. */
254 /* "extern inline" functions are never output locally. */
255 if (DECL_EXTERNAL (decl))
256 return false;
257 /* Nested functions of extern inline function shall not be emit unless
258 we inlined the origin. */
259 for (origin = node->origin; origin; origin = origin->origin)
260 if (DECL_EXTERNAL (origin->decl))
261 return false;
262 /* We want to emit COMDAT functions only when absolutely necessary. */
263 if (DECL_COMDAT (decl))
264 return false;
265 if (!DECL_INLINE (decl)
266 || (!node->local.disregard_inline_limits
267 /* When declared inline, defer even the uninlinable functions.
268 This allows them to be eliminated when unused. */
269 && !DECL_DECLARED_INLINE_P (decl)
270 && (!node->local.inlinable || !cgraph_default_inline_p (node))))
271 return true;
273 return false;
276 /* When not doing unit-at-a-time, output all functions enqueued.
277 Return true when such a functions were found. */
279 bool
280 cgraph_assemble_pending_functions (void)
282 bool output = false;
284 if (flag_unit_at_a_time)
285 return false;
287 while (cgraph_nodes_queue)
289 struct cgraph_node *n = cgraph_nodes_queue;
291 cgraph_nodes_queue = cgraph_nodes_queue->next_needed;
292 n->next_needed = NULL;
293 if (!n->global.inlined_to && !DECL_EXTERNAL (n->decl))
295 cgraph_expand_function (n);
296 output = true;
300 return output;
303 /* DECL has been parsed. Take it, queue it, compile it at the whim of the
304 logic in effect. If NESTED is true, then our caller cannot stand to have
305 the garbage collector run at the moment. We would need to either create
306 a new GC context, or just not compile right now. */
308 void
309 cgraph_finalize_function (tree decl, bool nested)
311 struct cgraph_node *node = cgraph_node (decl);
313 if (node->local.finalized)
315 /* As an GCC extension we allow redefinition of the function. The
316 semantics when both copies of bodies differ is not well defined.
317 We replace the old body with new body so in unit at a time mode
318 we always use new body, while in normal mode we may end up with
319 old body inlined into some functions and new body expanded and
320 inlined in others.
322 ??? It may make more sense to use one body for inlining and other
323 body for expanding the function but this is difficult to do. */
325 /* If node->output is set, then this is a unit-at-a-time compilation
326 and we have already begun whole-unit analysis. This is *not*
327 testing for whether we've already emitted the function. That
328 case can be sort-of legitimately seen with real function
329 redefinition errors. I would argue that the front end should
330 never present us with such a case, but don't enforce that for now. */
331 if (node->output)
332 abort ();
334 /* Reset our data structures so we can analyze the function again. */
335 memset (&node->local, 0, sizeof (node->local));
336 memset (&node->global, 0, sizeof (node->global));
337 memset (&node->rtl, 0, sizeof (node->rtl));
338 node->analyzed = false;
339 node->local.redefined_extern_inline = true;
340 while (node->callees)
341 cgraph_remove_edge (node->callees);
343 /* We may need to re-queue the node for assembling in case
344 we already proceeded it and ignored as not needed. */
345 if (node->reachable && !flag_unit_at_a_time)
347 struct cgraph_node *n;
349 for (n = cgraph_nodes_queue; n; n = n->next_needed)
350 if (n == node)
351 break;
352 if (!n)
353 node->reachable = 0;
357 notice_global_symbol (decl);
358 node->decl = decl;
359 node->local.finalized = true;
361 /* If not unit at a time, then we need to create the call graph
362 now, so that called functions can be queued and emitted now. */
363 if (!flag_unit_at_a_time)
365 cgraph_analyze_function (node);
366 cgraph_decide_inlining_incrementally (node);
369 if (decide_is_function_needed (node, decl))
370 cgraph_mark_needed_node (node);
372 /* If not unit at a time, go ahead and emit everything we've found
373 to be reachable at this time. */
374 if (!nested)
376 if (!cgraph_assemble_pending_functions ())
377 ggc_collect ();
380 /* If we've not yet emitted decl, tell the debug info about it. */
381 if (!TREE_ASM_WRITTEN (decl))
382 (*debug_hooks->deferred_inline_function) (decl);
384 /* Possibly warn about unused parameters. */
385 if (warn_unused_parameter)
386 do_warn_unused_parameter (decl);
389 /* Walk tree and record all calls. Called via walk_tree. */
390 static tree
391 record_call_1 (tree *tp, int *walk_subtrees, void *data)
393 tree t = *tp;
395 switch (TREE_CODE (t))
397 case VAR_DECL:
398 /* ??? Really, we should mark this decl as *potentially* referenced
399 by this function and re-examine whether the decl is actually used
400 after rtl has been generated. */
401 if (TREE_STATIC (t))
402 cgraph_varpool_mark_needed_node (cgraph_varpool_node (t));
403 break;
405 case ADDR_EXPR:
406 if (flag_unit_at_a_time)
408 /* Record dereferences to the functions. This makes the
409 functions reachable unconditionally. */
410 tree decl = TREE_OPERAND (*tp, 0);
411 if (TREE_CODE (decl) == FUNCTION_DECL)
412 cgraph_mark_needed_node (cgraph_node (decl));
414 break;
416 case CALL_EXPR:
418 tree decl = get_callee_fndecl (*tp);
419 if (decl && TREE_CODE (decl) == FUNCTION_DECL)
421 cgraph_create_edge (data, cgraph_node (decl), *tp);
423 /* When we see a function call, we don't want to look at the
424 function reference in the ADDR_EXPR that is hanging from
425 the CALL_EXPR we're examining here, because we would
426 conclude incorrectly that the function's address could be
427 taken by something that is not a function call. So only
428 walk the function parameter list, skip the other subtrees. */
430 walk_tree (&TREE_OPERAND (*tp, 1), record_call_1, data,
431 visited_nodes);
432 *walk_subtrees = 0;
434 break;
437 default:
438 /* Save some cycles by not walking types and declaration as we
439 won't find anything useful there anyway. */
440 if (DECL_P (*tp) || TYPE_P (*tp))
442 *walk_subtrees = 0;
443 break;
446 if ((unsigned int) TREE_CODE (t) >= LAST_AND_UNUSED_TREE_CODE)
447 return lang_hooks.callgraph.analyze_expr (tp, walk_subtrees, data);
448 break;
451 return NULL;
454 /* Create cgraph edges for function calls inside BODY from NODE. */
456 void
457 cgraph_create_edges (struct cgraph_node *node, tree body)
459 /* The nodes we're interested in are never shared, so walk
460 the tree ignoring duplicates. */
461 visited_nodes = htab_create (37, htab_hash_pointer,
462 htab_eq_pointer, NULL);
463 walk_tree (&body, record_call_1, node, visited_nodes);
464 htab_delete (visited_nodes);
465 visited_nodes = NULL;
468 static bool error_found;
470 /* Callbrack of verify_cgraph_node. Check that all call_exprs have cgraph nodes. */
471 static tree
472 verify_cgraph_node_1 (tree *tp, int *walk_subtrees, void *data)
474 tree t = *tp;
475 tree decl;
477 if (TREE_CODE (t) == CALL_EXPR && (decl = get_callee_fndecl (t)))
479 struct cgraph_edge *e = cgraph_edge (data, t);
480 if (e)
482 if (e->aux)
484 error ("Shared call_expr:");
485 debug_tree (t);
486 error_found = true;
488 if (e->callee->decl != cgraph_node (decl)->decl)
490 error ("Edge points to wrong declaration:");
491 debug_tree (e->callee->decl);
492 fprintf (stderr," Instead of:");
493 debug_tree (decl);
495 e->aux = (void *)1;
497 else
499 error ("Missing callgraph edge for call expr:");
500 debug_tree (t);
501 error_found = true;
504 /* Save some cycles by not walking types and declaration as we
505 won't find anything useful there anyway. */
506 if (DECL_P (*tp) || TYPE_P (*tp))
508 *walk_subtrees = 0;
510 return NULL_TREE;
513 /* Verify cgraph nodes of given cgraph node. */
514 void
515 verify_cgraph_node (struct cgraph_node *node)
517 struct cgraph_edge *e;
518 struct cgraph_node *main_clone;
520 timevar_push (TV_CGRAPH_VERIFY);
521 error_found = false;
522 for (e = node->callees; e; e = e->next_callee)
523 if (e->aux)
525 error ("Aux field set for edge %s->%s",
526 cgraph_node_name (e->caller), cgraph_node_name (e->callee));
527 error_found = true;
529 for (e = node->callers; e; e = e->next_caller)
531 if (!e->inline_failed)
533 if (node->global.inlined_to
534 != (e->caller->global.inlined_to
535 ? e->caller->global.inlined_to : e->caller))
537 error ("Inlined_to pointer is wrong");
538 error_found = true;
540 if (node->callers->next_caller)
542 error ("Multiple inline callers");
543 error_found = true;
546 else
547 if (node->global.inlined_to)
549 error ("Inlined_to pointer set for noninline callers");
550 error_found = true;
553 if (!node->callers && node->global.inlined_to)
555 error ("Inlined_to pointer is set but no predecesors found");
556 error_found = true;
558 if (node->global.inlined_to == node)
560 error ("Inlined_to pointer reffers to itself");
561 error_found = true;
564 for (main_clone = cgraph_node (node->decl); main_clone;
565 main_clone = main_clone->next_clone)
566 if (main_clone == node)
567 break;
568 if (!node)
570 error ("Node not found in DECL_ASSEMBLER_NAME hash");
571 error_found = true;
574 if (node->analyzed
575 && DECL_SAVED_TREE (node->decl) && !TREE_ASM_WRITTEN (node->decl)
576 && (!DECL_EXTERNAL (node->decl) || node->global.inlined_to))
578 walk_tree_without_duplicates (&DECL_SAVED_TREE (node->decl),
579 verify_cgraph_node_1, node);
580 for (e = node->callees; e; e = e->next_callee)
582 if (!e->aux)
584 error ("Edge %s->%s has no corresponding call_expr",
585 cgraph_node_name (e->caller),
586 cgraph_node_name (e->callee));
587 error_found = true;
589 e->aux = 0;
592 if (error_found)
594 dump_cgraph_node (stderr, node);
595 internal_error ("verify_cgraph_node failed.");
597 timevar_pop (TV_CGRAPH_VERIFY);
600 /* Verify whole cgraph structure. */
601 void
602 verify_cgraph (void)
604 struct cgraph_node *node;
606 for (node = cgraph_nodes; node; node = node->next)
607 verify_cgraph_node (node);
610 /* Analyze the function scheduled to be output. */
611 static void
612 cgraph_analyze_function (struct cgraph_node *node)
614 tree decl = node->decl;
615 struct cgraph_edge *e;
617 current_function_decl = decl;
619 /* First kill forward declaration so reverse inlining works properly. */
620 cgraph_create_edges (node, DECL_SAVED_TREE (decl));
622 node->local.inlinable = tree_inlinable_function_p (decl);
623 node->local.self_insns = estimate_num_insns (DECL_SAVED_TREE (decl));
624 if (node->local.inlinable)
625 node->local.disregard_inline_limits
626 = lang_hooks.tree_inlining.disregard_inline_limits (decl);
627 for (e = node->callers; e; e = e->next_caller)
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");
637 if (flag_really_no_inline && !node->local.disregard_inline_limits)
638 node->local.inlinable = 0;
639 /* Inlining characteristics are maintained by the cgraph_mark_inline. */
640 node->global.insns = node->local.self_insns;
642 node->analyzed = true;
643 current_function_decl = NULL;
646 /* Analyze the whole compilation unit once it is parsed completely. */
648 void
649 cgraph_finalize_compilation_unit (void)
651 struct cgraph_node *node;
653 if (!flag_unit_at_a_time)
655 cgraph_assemble_pending_functions ();
656 return;
659 cgraph_varpool_assemble_pending_decls ();
660 if (!quiet_flag)
661 fprintf (stderr, "\nAnalyzing compilation unit\n");
663 timevar_push (TV_CGRAPH);
664 if (cgraph_dump_file)
666 fprintf (cgraph_dump_file, "Initial entry points:");
667 for (node = cgraph_nodes; node; node = node->next)
668 if (node->needed && DECL_SAVED_TREE (node->decl))
669 fprintf (cgraph_dump_file, " %s", cgraph_node_name (node));
670 fprintf (cgraph_dump_file, "\n");
673 /* Propagate reachability flag and lower representation of all reachable
674 functions. In the future, lowering will introduce new functions and
675 new entry points on the way (by template instantiation and virtual
676 method table generation for instance). */
677 while (cgraph_nodes_queue)
679 struct cgraph_edge *edge;
680 tree decl = cgraph_nodes_queue->decl;
682 node = cgraph_nodes_queue;
683 cgraph_nodes_queue = cgraph_nodes_queue->next_needed;
684 node->next_needed = NULL;
686 /* ??? It is possible to create extern inline function and later using
687 weak alas attribute to kill its body. See
688 gcc.c-torture/compile/20011119-1.c */
689 if (!DECL_SAVED_TREE (decl))
690 continue;
692 if (node->analyzed || !node->reachable || !DECL_SAVED_TREE (decl))
693 abort ();
695 cgraph_analyze_function (node);
697 for (edge = node->callees; edge; edge = edge->next_callee)
698 if (!edge->callee->reachable)
699 cgraph_mark_reachable_node (edge->callee);
701 cgraph_varpool_assemble_pending_decls ();
704 /* Collect entry points to the unit. */
706 if (cgraph_dump_file)
708 fprintf (cgraph_dump_file, "Unit entry points:");
709 for (node = cgraph_nodes; node; node = node->next)
710 if (node->needed && DECL_SAVED_TREE (node->decl))
711 fprintf (cgraph_dump_file, " %s", cgraph_node_name (node));
712 fprintf (cgraph_dump_file, "\n\nInitial ");
713 dump_cgraph (cgraph_dump_file);
716 if (cgraph_dump_file)
717 fprintf (cgraph_dump_file, "\nReclaiming functions:");
719 for (node = cgraph_nodes; node; node = node->next)
721 tree decl = node->decl;
723 if (!node->reachable && DECL_SAVED_TREE (decl))
725 if (cgraph_dump_file)
726 fprintf (cgraph_dump_file, " %s", cgraph_node_name (node));
727 cgraph_remove_node (node);
729 else
730 node->next_needed = NULL;
732 if (cgraph_dump_file)
734 fprintf (cgraph_dump_file, "\n\nReclaimed ");
735 dump_cgraph (cgraph_dump_file);
737 ggc_collect ();
738 timevar_pop (TV_CGRAPH);
740 /* Figure out what functions we want to assemble. */
742 static void
743 cgraph_mark_functions_to_output (void)
745 struct cgraph_node *node;
747 for (node = cgraph_nodes; node; node = node->next)
749 tree decl = node->decl;
750 struct cgraph_edge *e;
751 if (node->output)
752 abort ();
754 for (e = node->callers; e; e = e->next_caller)
755 if (e->inline_failed)
756 break;
758 /* We need to output all local functions that are used and not
759 always inlined, as well as those that are reachable from
760 outside the current compilation unit. */
761 if (DECL_SAVED_TREE (decl)
762 && !node->global.inlined_to
763 && (node->needed
764 || (e && node->reachable))
765 && !TREE_ASM_WRITTEN (decl)
766 && !DECL_EXTERNAL (decl))
767 node->output = 1;
768 /* We should've reclaimed all functions that are not needed. */
769 else if (!node->global.inlined_to && DECL_SAVED_TREE (decl)
770 && !DECL_EXTERNAL (decl))
772 dump_cgraph_node (stderr, node);
773 abort ();
778 /* Expand function specified by NODE. */
780 static void
781 cgraph_expand_function (struct cgraph_node *node)
783 tree decl = node->decl;
785 /* We ought to not compile any inline clones. */
786 if (node->global.inlined_to)
787 abort ();
789 if (flag_unit_at_a_time)
790 announce_function (decl);
792 /* Generate RTL for the body of DECL. Nested functions are expanded
793 via lang_expand_decl_stmt. */
794 lang_hooks.callgraph.expand_function (decl);
796 /* Make sure that BE didn't give up on compiling. */
797 /* ??? Can happen with nested function of extern inline. */
798 if (!TREE_ASM_WRITTEN (node->decl))
799 abort ();
801 current_function_decl = NULL;
802 if (DECL_SAVED_TREE (node->decl)
803 && !cgraph_preserve_function_body_p (node->decl))
805 DECL_SAVED_TREE (node->decl) = NULL;
806 DECL_STRUCT_FUNCTION (node->decl) = NULL;
807 DECL_ARGUMENTS (node->decl) = NULL;
808 DECL_INITIAL (node->decl) = error_mark_node;
812 /* Fill array order with all nodes with output flag set in the reverse
813 topological order. */
815 static int
816 cgraph_postorder (struct cgraph_node **order)
818 struct cgraph_node *node, *node2;
819 int stack_size = 0;
820 int order_pos = 0;
821 struct cgraph_edge *edge, last;
823 struct cgraph_node **stack =
824 xcalloc (cgraph_n_nodes, sizeof (struct cgraph_node *));
826 /* We have to deal with cycles nicely, so use a depth first traversal
827 output algorithm. Ignore the fact that some functions won't need
828 to be output and put them into order as well, so we get dependencies
829 right through intline functions. */
830 for (node = cgraph_nodes; node; node = node->next)
831 node->aux = NULL;
832 for (node = cgraph_nodes; node; node = node->next)
833 if (!node->aux)
835 node2 = node;
836 if (!node->callers)
837 node->aux = &last;
838 else
839 node->aux = node->callers;
840 while (node2)
842 while (node2->aux != &last)
844 edge = node2->aux;
845 if (edge->next_caller)
846 node2->aux = edge->next_caller;
847 else
848 node2->aux = &last;
849 if (!edge->caller->aux)
851 if (!edge->caller->callers)
852 edge->caller->aux = &last;
853 else
854 edge->caller->aux = edge->caller->callers;
855 stack[stack_size++] = node2;
856 node2 = edge->caller;
857 break;
860 if (node2->aux == &last)
862 order[order_pos++] = node2;
863 if (stack_size)
864 node2 = stack[--stack_size];
865 else
866 node2 = NULL;
870 free (stack);
871 return order_pos;
874 /* Perform reachability analysis and reclaim all unreachable nodes.
875 This function also remove unneeded bodies of extern inline functions
876 and thus needs to be done only after inlining decisions has been made. */
877 static bool
878 cgraph_remove_unreachable_nodes (void)
880 struct cgraph_node *first = (void *) 1;
881 struct cgraph_node *node;
882 bool changed = false;
883 int insns = 0;
885 #ifdef ENABLE_CHECKING
886 verify_cgraph ();
887 #endif
888 if (cgraph_dump_file)
889 fprintf (cgraph_dump_file, "\nReclaiming functions:");
890 #ifdef ENABLE_CHECKING
891 for (node = cgraph_nodes; node; node = node->next)
892 if (node->aux)
893 abort ();
894 #endif
895 for (node = cgraph_nodes; node; node = node->next)
896 if (node->needed && !node->global.inlined_to
897 && (!DECL_EXTERNAL (node->decl) || !node->analyzed))
899 node->aux = first;
900 first = node;
902 else if (node->aux)
903 abort ();
905 /* Perform reachability analysis. As a special case do not consider
906 extern inline functions not inlined as live because we won't output
907 them at all. */
908 while (first != (void *) 1)
910 struct cgraph_edge *e;
911 node = first;
912 first = first->aux;
914 for (e = node->callees; e; e = e->next_callee)
915 if (!e->callee->aux
916 && node->analyzed
917 && (!e->inline_failed || !e->callee->analyzed
918 || !DECL_EXTERNAL (e->callee->decl)))
920 e->callee->aux = first;
921 first = e->callee;
925 /* Remove unreachable nodes. Extern inline functions need special care;
926 Unreachable extern inline functions shall be removed.
927 Reachable extern inline functions we never inlined shall get their bodies
928 eliminated.
929 Reachable extern inline functions we sometimes inlined will be turned into
930 unanalyzed nodes so they look like for true extern functions to the rest
931 of code. Body of such functions is released via remove_node once the
932 inline clones are eliminated. */
933 for (node = cgraph_nodes; node; node = node->next)
935 if (!node->aux)
937 int local_insns;
938 tree decl = node->decl;
940 node->global.inlined_to = NULL;
941 if (DECL_STRUCT_FUNCTION (decl))
942 local_insns = node->local.self_insns;
943 else
944 local_insns = 0;
945 if (cgraph_dump_file)
946 fprintf (cgraph_dump_file, " %s", cgraph_node_name (node));
947 if (!node->analyzed || !DECL_EXTERNAL (node->decl))
948 cgraph_remove_node (node);
949 else
951 struct cgraph_edge *e;
953 for (e = node->callers; e; e = e->next_caller)
954 if (e->caller->aux)
955 break;
956 if (e || node->needed)
958 struct cgraph_node *clone;
960 for (clone = node->next_clone; clone;
961 clone = clone->next_clone)
962 if (clone->aux)
963 break;
964 if (!clone)
966 DECL_SAVED_TREE (node->decl) = NULL;
967 DECL_STRUCT_FUNCTION (node->decl) = NULL;
968 DECL_ARGUMENTS (node->decl) = NULL;
969 DECL_INITIAL (node->decl) = error_mark_node;
971 while (node->callees)
972 cgraph_remove_edge (node->callees);
973 node->analyzed = false;
975 else
976 cgraph_remove_node (node);
978 if (!DECL_SAVED_TREE (decl))
979 insns += local_insns;
980 changed = true;
983 for (node = cgraph_nodes; node; node = node->next)
984 node->aux = NULL;
985 if (cgraph_dump_file)
986 fprintf (cgraph_dump_file, "\nReclaimed %i insns", insns);
987 return changed;
990 /* Estimate size of the function after inlining WHAT into TO. */
992 static int
993 cgraph_estimate_size_after_inlining (int times, struct cgraph_node *to,
994 struct cgraph_node *what)
996 return (what->global.insns - INSNS_PER_CALL) * times + to->global.insns;
999 /* Estimate the growth caused by inlining NODE into all callees. */
1001 static int
1002 cgraph_estimate_growth (struct cgraph_node *node)
1004 int growth = 0;
1005 struct cgraph_edge *e;
1007 for (e = node->callers; e; e = e->next_caller)
1008 if (e->inline_failed)
1009 growth += (cgraph_estimate_size_after_inlining (1, e->caller, node)
1010 - e->caller->global.insns);
1012 /* ??? Wrong for self recursive functions or cases where we decide to not
1013 inline for different reasons, but it is not big deal as in that case
1014 we will keep the body around, but we will also avoid some inlining. */
1015 if (!node->needed && !DECL_EXTERNAL (node->decl))
1016 growth -= node->global.insns;
1018 return growth;
1021 /* E is expected to be an edge being inlined. Clone destination node of
1022 the edge and redirect it to the new clone.
1023 DUPLICATE is used for bookeeping on whether we are actually creating new
1024 clones or re-using node originally representing out-of-line function call.
1026 void
1027 cgraph_clone_inlined_nodes (struct cgraph_edge *e, bool duplicate)
1029 struct cgraph_node *n;
1031 /* We may eliminate the need for out-of-line copy to be output. In that
1032 case just go ahead and re-use it. */
1033 if (!e->callee->callers->next_caller
1034 && (!e->callee->needed || DECL_EXTERNAL (e->callee->decl))
1035 && duplicate
1036 && flag_unit_at_a_time)
1038 if (e->callee->global.inlined_to)
1039 abort ();
1040 if (!DECL_EXTERNAL (e->callee->decl))
1041 overall_insns -= e->callee->global.insns, nfunctions_inlined++;
1042 duplicate = 0;
1044 else if (duplicate)
1046 n = cgraph_clone_node (e->callee);
1047 cgraph_redirect_edge_callee (e, n);
1050 if (e->caller->global.inlined_to)
1051 e->callee->global.inlined_to = e->caller->global.inlined_to;
1052 else
1053 e->callee->global.inlined_to = e->caller;
1055 /* Recursively clone all bodies. */
1056 for (e = e->callee->callees; e; e = e->next_callee)
1057 if (!e->inline_failed)
1058 cgraph_clone_inlined_nodes (e, duplicate);
1061 /* Mark edge E as inlined and update callgraph accordingly. */
1063 void
1064 cgraph_mark_inline_edge (struct cgraph_edge *e)
1066 int old_insns = 0, new_insns = 0;
1067 struct cgraph_node *to = NULL, *what;
1069 if (!e->inline_failed)
1070 abort ();
1071 e->inline_failed = NULL;
1073 if (!e->callee->global.inlined && flag_unit_at_a_time)
1075 void **slot;
1076 if (!cgraph_inline_hash)
1077 cgraph_inline_hash = htab_create_ggc (42, htab_hash_pointer,
1078 htab_eq_pointer, NULL);
1079 slot = htab_find_slot (cgraph_inline_hash,
1080 DECL_ASSEMBLER_NAME (e->callee->decl), INSERT);
1081 *slot = DECL_ASSEMBLER_NAME (e->callee->decl);
1083 e->callee->global.inlined = true;
1085 cgraph_clone_inlined_nodes (e, true);
1087 what = e->callee;
1089 /* Now update size of caller and all functions caller is inlined into. */
1090 for (;e && !e->inline_failed; e = e->caller->callers)
1092 old_insns = e->caller->global.insns;
1093 new_insns = cgraph_estimate_size_after_inlining (1, e->caller,
1094 what);
1095 if (new_insns < 0)
1096 abort ();
1097 to = e->caller;
1098 to->global.insns = new_insns;
1100 if (what->global.inlined_to != to)
1101 abort ();
1102 overall_insns += new_insns - old_insns;
1103 ncalls_inlined++;
1106 /* Mark all calls of EDGE->CALLEE inlined into EDGE->CALLER.
1107 Return following unredirected edge in the list of callers
1108 of EDGE->CALLEE */
1110 static struct cgraph_edge *
1111 cgraph_mark_inline (struct cgraph_edge *edge)
1113 struct cgraph_node *to = edge->caller;
1114 struct cgraph_node *what = edge->callee;
1115 struct cgraph_edge *e, *next;
1116 int times = 0;
1118 /* Look for all calls, mark them inline and clone recursively
1119 all inlined functions. */
1120 for (e = what->callers; e; e = next)
1122 next = e->next_caller;
1123 if (e->caller == to && e->inline_failed)
1125 cgraph_mark_inline_edge (e);
1126 if (e == edge)
1127 edge = next;
1128 times ++;
1131 if (!times)
1132 abort ();
1133 return edge;
1136 /* Return false when inlining WHAT into TO is not good idea
1137 as it would cause too large growth of function bodies. */
1139 static bool
1140 cgraph_check_inline_limits (struct cgraph_node *to, struct cgraph_node *what,
1141 const char **reason)
1143 int times = 0;
1144 struct cgraph_edge *e;
1145 int newsize;
1146 int limit;
1148 if (to->global.inlined_to)
1149 to = to->global.inlined_to;
1151 for (e = to->callees; e; e = e->next_callee)
1152 if (e->callee == what)
1153 times++;
1155 /* When inlining large function body called once into small function,
1156 take the inlined function as base for limiting the growth. */
1157 if (to->local.self_insns > what->local.self_insns)
1158 limit = to->local.self_insns;
1159 else
1160 limit = what->local.self_insns;
1162 limit += limit * PARAM_VALUE (PARAM_LARGE_FUNCTION_GROWTH) / 100;
1164 newsize = cgraph_estimate_size_after_inlining (times, to, what);
1165 if (newsize > PARAM_VALUE (PARAM_LARGE_FUNCTION_INSNS)
1166 && newsize > limit)
1168 if (reason)
1169 *reason = N_("--param large-function-growth limit reached");
1170 return false;
1172 return true;
1175 /* Return true when function N is small enough to be inlined. */
1177 static bool
1178 cgraph_default_inline_p (struct cgraph_node *n)
1180 if (!DECL_INLINE (n->decl) || !DECL_SAVED_TREE (n->decl))
1181 return false;
1182 if (DECL_DECLARED_INLINE_P (n->decl))
1183 return n->global.insns < MAX_INLINE_INSNS_SINGLE;
1184 else
1185 return n->global.insns < MAX_INLINE_INSNS_AUTO;
1188 /* Return true when inlining WHAT would create recursive inlining.
1189 We call recursive inlining all cases where same function appears more than
1190 once in the single recursion nest path in the inline graph. */
1192 static bool
1193 cgraph_recursive_inlining_p (struct cgraph_node *to,
1194 struct cgraph_node *what,
1195 const char **reason)
1197 bool recursive;
1198 if (to->global.inlined_to)
1199 recursive = what->decl == to->global.inlined_to->decl;
1200 else
1201 recursive = what->decl == to->decl;
1202 /* Marking recursive function inlinine has sane semantic and thus we should
1203 not warn on it. */
1204 if (recursive && reason)
1205 *reason = (what->local.disregard_inline_limits
1206 ? N_("recursive inlining") : "");
1207 return recursive;
1210 /* Recompute heap nodes for each of callees. */
1211 static void
1212 update_callee_keys (fibheap_t heap, struct fibnode **heap_node,
1213 struct cgraph_node *node)
1215 struct cgraph_edge *e;
1217 for (e = node->callees; e; e = e->next_callee)
1218 if (e->inline_failed && heap_node[e->callee->uid])
1219 fibheap_replace_key (heap, heap_node[e->callee->uid],
1220 cgraph_estimate_growth (e->callee));
1221 else if (!e->inline_failed)
1222 update_callee_keys (heap, heap_node, e->callee);
1225 /* Enqueue all recursive calls from NODE into queue linked via aux pointers
1226 in between FIRST and LAST. WHERE is used for bookkeeping while looking
1227 int calls inlined within NODE. */
1228 static void
1229 lookup_recursive_calls (struct cgraph_node *node, struct cgraph_node *where,
1230 struct cgraph_edge **first, struct cgraph_edge **last)
1232 struct cgraph_edge *e;
1233 for (e = where->callees; e; e = e->next_callee)
1234 if (e->callee == node)
1236 if (!*first)
1237 *first = e;
1238 else
1239 (*last)->aux = e;
1240 *last = e;
1242 for (e = where->callees; e; e = e->next_callee)
1243 if (!e->inline_failed)
1244 lookup_recursive_calls (node, e->callee, first, last);
1247 /* Decide on recursive inlining: in the case function has recursive calls,
1248 inline until body size reaches given argument. */
1249 static void
1250 cgraph_decide_recursive_inlining (struct cgraph_node *node)
1252 int limit = PARAM_VALUE (PARAM_MAX_INLINE_INSNS_RECURSIVE_AUTO);
1253 int max_depth = PARAM_VALUE (PARAM_MAX_INLINE_RECURSIVE_DEPTH_AUTO);
1254 struct cgraph_edge *first_call = NULL, *last_call = NULL;
1255 struct cgraph_edge *last_in_current_depth;
1256 struct cgraph_edge *e;
1257 struct cgraph_node *master_clone;
1258 int depth = 0;
1259 int n = 0;
1261 if (DECL_DECLARED_INLINE_P (node->decl))
1263 limit = PARAM_VALUE (PARAM_MAX_INLINE_INSNS_RECURSIVE);
1264 max_depth = PARAM_VALUE (PARAM_MAX_INLINE_RECURSIVE_DEPTH);
1267 /* Make sure that function is small enought to be considered for inlining. */
1268 if (!max_depth
1269 || cgraph_estimate_size_after_inlining (1, node, node) >= limit)
1270 return;
1271 lookup_recursive_calls (node, node, &first_call, &last_call);
1272 if (!first_call)
1273 return;
1275 if (cgraph_dump_file)
1276 fprintf (cgraph_dump_file,
1277 "\nPerforming recursive inlining on %s\n",
1278 cgraph_node_name (node));
1280 /* We need original clone to copy around. */
1281 master_clone = cgraph_clone_node (node);
1282 master_clone->needed = true;
1283 for (e = master_clone->callees; e; e = e->next_callee)
1284 if (!e->inline_failed)
1285 cgraph_clone_inlined_nodes (e, true);
1287 /* Do the inlining and update list of recursive call during process. */
1288 last_in_current_depth = last_call;
1289 while (first_call
1290 && cgraph_estimate_size_after_inlining (1, node, master_clone) <= limit)
1292 struct cgraph_edge *curr = first_call;
1294 first_call = first_call->aux;
1295 curr->aux = NULL;
1297 cgraph_redirect_edge_callee (curr, master_clone);
1298 cgraph_mark_inline_edge (curr);
1299 lookup_recursive_calls (node, curr->callee, &first_call, &last_call);
1301 if (last_in_current_depth
1302 && ++depth >= max_depth)
1303 break;
1304 n++;
1307 /* Cleanup queue pointers. */
1308 while (first_call)
1310 struct cgraph_edge *next = first_call->aux;
1311 first_call->aux = NULL;
1312 first_call = next;
1314 if (cgraph_dump_file)
1315 fprintf (cgraph_dump_file,
1316 "\n Inlined %i times, body grown from %i to %i insns\n", n,
1317 master_clone->global.insns, node->global.insns);
1319 /* Remove master clone we used for inlining. We rely that clones inlined
1320 into master clone gets queued just before master clone so we don't
1321 need recursion. */
1322 for (node = cgraph_nodes; node != master_clone;
1323 node = node->next)
1324 if (node->global.inlined_to == master_clone)
1325 cgraph_remove_node (node);
1326 cgraph_remove_node (master_clone);
1329 /* Set inline_failed for all callers of given function to REASON. */
1331 static void
1332 cgraph_set_inline_failed (struct cgraph_node *node, const char *reason)
1334 struct cgraph_edge *e;
1336 if (cgraph_dump_file)
1337 fprintf (cgraph_dump_file, "Inlining failed: %s\n", reason);
1338 for (e = node->callers; e; e = e->next_caller)
1339 if (e->inline_failed)
1340 e->inline_failed = reason;
1343 /* We use greedy algorithm for inlining of small functions:
1344 All inline candidates are put into prioritized heap based on estimated
1345 growth of the overall number of instructions and then update the estimates.
1347 INLINED and INLINED_CALEES are just pointers to arrays large enough
1348 to be passed to cgraph_inlined_into and cgraph_inlined_callees. */
1350 static void
1351 cgraph_decide_inlining_of_small_functions (void)
1353 struct cgraph_node *node;
1354 fibheap_t heap = fibheap_new ();
1355 struct fibnode **heap_node =
1356 xcalloc (cgraph_max_uid, sizeof (struct fibnode *));
1357 int max_insns = ((HOST_WIDEST_INT) initial_insns
1358 * (100 + PARAM_VALUE (PARAM_INLINE_UNIT_GROWTH)) / 100);
1360 /* Put all inline candidates into the heap. */
1362 for (node = cgraph_nodes; node; node = node->next)
1364 if (!node->local.inlinable || !node->callers
1365 || node->local.disregard_inline_limits)
1366 continue;
1368 if (!cgraph_default_inline_p (node))
1370 cgraph_set_inline_failed (node,
1371 N_("--param max-inline-insns-single limit reached"));
1372 continue;
1374 heap_node[node->uid] =
1375 fibheap_insert (heap, cgraph_estimate_growth (node), node);
1378 if (cgraph_dump_file)
1379 fprintf (cgraph_dump_file, "\nDeciding on smaller functions:\n");
1380 while (overall_insns <= max_insns && (node = fibheap_extract_min (heap)))
1382 struct cgraph_edge *e, *next;
1383 int old_insns = overall_insns;
1385 heap_node[node->uid] = NULL;
1386 if (cgraph_dump_file)
1387 fprintf (cgraph_dump_file,
1388 "\nConsidering %s with %i insns\n"
1389 " Estimated growth is %+i insns.\n",
1390 cgraph_node_name (node), node->global.insns,
1391 cgraph_estimate_growth (node));
1392 if (!cgraph_default_inline_p (node))
1394 cgraph_set_inline_failed (node,
1395 N_("--param max-inline-insns-single limit reached after inlining into the callee"));
1396 continue;
1398 for (e = node->callers; e; e = next)
1400 next = e->next_caller;
1401 if (e->inline_failed)
1403 struct cgraph_node *where;
1405 if (cgraph_recursive_inlining_p (e->caller, e->callee,
1406 &e->inline_failed)
1407 || !cgraph_check_inline_limits (e->caller, e->callee,
1408 &e->inline_failed))
1410 if (cgraph_dump_file)
1411 fprintf (cgraph_dump_file, " Not inlining into %s:%s.\n",
1412 cgraph_node_name (e->caller), e->inline_failed);
1413 continue;
1415 next = cgraph_mark_inline (e);
1416 where = e->caller;
1417 if (where->global.inlined_to)
1418 where = where->global.inlined_to;
1420 if (heap_node[where->uid])
1421 fibheap_replace_key (heap, heap_node[where->uid],
1422 cgraph_estimate_growth (where));
1424 if (cgraph_dump_file)
1425 fprintf (cgraph_dump_file,
1426 " Inlined into %s which now has %i insns.\n",
1427 cgraph_node_name (e->caller),
1428 e->caller->global.insns);
1432 cgraph_decide_recursive_inlining (node);
1434 /* Similarly all functions called by the function we just inlined
1435 are now called more times; update keys. */
1436 update_callee_keys (heap, heap_node, node);
1438 if (cgraph_dump_file)
1439 fprintf (cgraph_dump_file,
1440 " Inlined for a net change of %+i insns.\n",
1441 overall_insns - old_insns);
1443 while ((node = fibheap_extract_min (heap)) != NULL)
1444 if (!node->local.disregard_inline_limits)
1445 cgraph_set_inline_failed (node, N_("--param inline-unit-growth limit reached"));
1446 fibheap_delete (heap);
1447 free (heap_node);
1450 /* Decide on the inlining. We do so in the topological order to avoid
1451 expenses on updating data structures. */
1453 static void
1454 cgraph_decide_inlining (void)
1456 struct cgraph_node *node;
1457 int nnodes;
1458 struct cgraph_node **order =
1459 xcalloc (cgraph_n_nodes, sizeof (struct cgraph_node *));
1460 int old_insns = 0;
1461 int i;
1463 for (node = cgraph_nodes; node; node = node->next)
1464 initial_insns += node->local.self_insns;
1465 overall_insns = initial_insns;
1467 nnodes = cgraph_postorder (order);
1469 if (cgraph_dump_file)
1470 fprintf (cgraph_dump_file,
1471 "\nDeciding on inlining. Starting with %i insns.\n",
1472 initial_insns);
1474 for (node = cgraph_nodes; node; node = node->next)
1475 node->aux = 0;
1477 if (cgraph_dump_file)
1478 fprintf (cgraph_dump_file, "\nInlining always_inline functions:\n");
1480 /* In the first pass mark all always_inline edges. Do this with a priority
1481 so none of our later choices will make this impossible. */
1482 for (i = nnodes - 1; i >= 0; i--)
1484 struct cgraph_edge *e, *next;
1486 node = order[i];
1488 if (!node->local.disregard_inline_limits)
1489 continue;
1490 if (cgraph_dump_file)
1491 fprintf (cgraph_dump_file,
1492 "\nConsidering %s %i insns (always inline)\n",
1493 cgraph_node_name (e->callee), e->callee->global.insns);
1494 old_insns = overall_insns;
1495 for (e = node->callers; e; e = next)
1497 next = e->next_caller;
1498 if (!e->inline_failed)
1499 continue;
1500 if (cgraph_recursive_inlining_p (e->caller, e->callee,
1501 &e->inline_failed))
1502 continue;
1503 cgraph_mark_inline_edge (e);
1504 if (cgraph_dump_file)
1505 fprintf (cgraph_dump_file,
1506 " Inlined into %s which now has %i insns.\n",
1507 cgraph_node_name (node->callees->caller),
1508 node->callees->caller->global.insns);
1510 if (cgraph_dump_file)
1511 fprintf (cgraph_dump_file,
1512 " Inlined for a net change of %+i insns.\n",
1513 overall_insns - old_insns);
1516 if (!flag_really_no_inline)
1518 cgraph_decide_inlining_of_small_functions ();
1520 if (cgraph_dump_file)
1521 fprintf (cgraph_dump_file, "\nDeciding on functions called once:\n");
1523 /* And finally decide what functions are called once. */
1525 for (i = nnodes - 1; i >= 0; i--)
1527 node = order[i];
1529 if (node->callers && !node->callers->next_caller && !node->needed
1530 && node->local.inlinable && node->callers->inline_failed
1531 && !DECL_EXTERNAL (node->decl) && !DECL_COMDAT (node->decl))
1533 bool ok = true;
1534 struct cgraph_node *node1;
1536 /* Verify that we won't duplicate the caller. */
1537 for (node1 = node->callers->caller;
1538 node1->callers && !node1->callers->inline_failed
1539 && ok; node1 = node1->callers->caller)
1540 if (node1->callers->next_caller || node1->needed)
1541 ok = false;
1542 if (ok)
1544 if (cgraph_dump_file)
1545 fprintf (cgraph_dump_file,
1546 "\nConsidering %s %i insns.\n"
1547 " Called once from %s %i insns.\n",
1548 cgraph_node_name (node), node->global.insns,
1549 cgraph_node_name (node->callers->caller),
1550 node->callers->caller->global.insns);
1552 old_insns = overall_insns;
1554 if (cgraph_check_inline_limits (node->callers->caller, node,
1555 NULL))
1557 cgraph_mark_inline (node->callers);
1558 if (cgraph_dump_file)
1559 fprintf (cgraph_dump_file,
1560 " Inlined into %s which now has %i insns"
1561 " for a net change of %+i insns.\n",
1562 cgraph_node_name (node->callers->caller),
1563 node->callers->caller->global.insns,
1564 overall_insns - old_insns);
1566 else
1568 if (cgraph_dump_file)
1569 fprintf (cgraph_dump_file,
1570 " Inline limit reached, not inlined.\n");
1577 /* We will never output extern functions we didn't inline.
1578 ??? Perhaps we can prevent accounting of growth of external
1579 inline functions. */
1580 cgraph_remove_unreachable_nodes ();
1582 if (cgraph_dump_file)
1583 fprintf (cgraph_dump_file,
1584 "\nInlined %i calls, eliminated %i functions, "
1585 "%i insns turned to %i insns.\n\n",
1586 ncalls_inlined, nfunctions_inlined, initial_insns,
1587 overall_insns);
1588 free (order);
1591 /* Decide on the inlining. We do so in the topological order to avoid
1592 expenses on updating data structures. */
1594 static void
1595 cgraph_decide_inlining_incrementally (struct cgraph_node *node)
1597 struct cgraph_edge *e;
1599 /* First of all look for always inline functions. */
1600 for (e = node->callees; e; e = e->next_callee)
1601 if (e->callee->local.disregard_inline_limits
1602 && e->inline_failed
1603 && !cgraph_recursive_inlining_p (node, e->callee, &e->inline_failed)
1604 /* ??? It is possible that renaming variable removed the function body
1605 in duplicate_decls. See gcc.c-torture/compile/20011119-2.c */
1606 && DECL_SAVED_TREE (e->callee->decl))
1607 cgraph_mark_inline (e);
1609 /* Now do the automatic inlining. */
1610 if (!flag_really_no_inline)
1611 for (e = node->callees; e; e = e->next_callee)
1612 if (e->callee->local.inlinable
1613 && e->inline_failed
1614 && !e->callee->local.disregard_inline_limits
1615 && !cgraph_recursive_inlining_p (node, e->callee, &e->inline_failed)
1616 && cgraph_check_inline_limits (node, e->callee, &e->inline_failed)
1617 && DECL_SAVED_TREE (e->callee->decl))
1619 if (cgraph_default_inline_p (e->callee))
1620 cgraph_mark_inline (e);
1621 else
1622 e->inline_failed
1623 = N_("--param max-inline-insns-single limit reached");
1628 /* Return true when CALLER_DECL should be inlined into CALLEE_DECL. */
1630 bool
1631 cgraph_inline_p (struct cgraph_edge *e, const char **reason)
1633 *reason = e->inline_failed;
1634 return !e->inline_failed;
1637 /* Expand all functions that must be output.
1639 Attempt to topologically sort the nodes so function is output when
1640 all called functions are already assembled to allow data to be
1641 propagated across the callgraph. Use a stack to get smaller distance
1642 between a function and its callees (later we may choose to use a more
1643 sophisticated algorithm for function reordering; we will likely want
1644 to use subsections to make the output functions appear in top-down
1645 order). */
1647 static void
1648 cgraph_expand_all_functions (void)
1650 struct cgraph_node *node;
1651 struct cgraph_node **order =
1652 xcalloc (cgraph_n_nodes, sizeof (struct cgraph_node *));
1653 int order_pos = 0, new_order_pos = 0;
1654 int i;
1656 cgraph_mark_functions_to_output ();
1658 order_pos = cgraph_postorder (order);
1659 if (order_pos != cgraph_n_nodes)
1660 abort ();
1662 /* Garbage collector may remove inline clones we eliminate during
1663 optimization. So we must be sure to not reference them. */
1664 for (i = 0; i < order_pos; i++)
1665 if (order[i]->output)
1666 order[new_order_pos++] = order[i];
1668 for (i = new_order_pos - 1; i >= 0; i--)
1670 node = order[i];
1671 if (node->output)
1673 if (!node->reachable)
1674 abort ();
1675 node->output = 0;
1676 cgraph_expand_function (node);
1679 free (order);
1682 /* Mark all local functions.
1684 A local function is one whose calls can occur only in the
1685 current compilation unit and all its calls are explicit,
1686 so we can change its calling convention.
1687 We simply mark all static functions whose address is not taken
1688 as local. */
1690 static void
1691 cgraph_mark_local_functions (void)
1693 struct cgraph_node *node;
1695 if (cgraph_dump_file)
1696 fprintf (cgraph_dump_file, "\nMarking local functions:");
1698 /* Figure out functions we want to assemble. */
1699 for (node = cgraph_nodes; node; node = node->next)
1701 node->local.local = (!node->needed
1702 && DECL_SAVED_TREE (node->decl)
1703 && !TREE_PUBLIC (node->decl));
1704 if (cgraph_dump_file && node->local.local)
1705 fprintf (cgraph_dump_file, " %s", cgraph_node_name (node));
1707 if (cgraph_dump_file)
1708 fprintf (cgraph_dump_file, "\n\n");
1711 /* Return true when function body of DECL still needs to be kept around
1712 for later re-use. */
1713 bool
1714 cgraph_preserve_function_body_p (tree decl)
1716 struct cgraph_node *node;
1717 /* Keep the body; we're going to dump it. */
1718 if (dump_enabled_p (TDI_all))
1719 return true;
1720 if (!cgraph_global_info_ready)
1721 return (DECL_INLINE (decl) && !flag_really_no_inline);
1722 /* Look if there is any clone around. */
1723 for (node = cgraph_node (decl); node; node = node->next_clone)
1724 if (node->global.inlined_to)
1725 return true;
1726 return false;
1729 /* Perform simple optimizations based on callgraph. */
1731 void
1732 cgraph_optimize (void)
1734 #ifdef ENABLE_CHECKING
1735 verify_cgraph ();
1736 #endif
1737 if (!flag_unit_at_a_time)
1738 return;
1739 timevar_push (TV_CGRAPHOPT);
1740 if (!quiet_flag)
1741 fprintf (stderr, "Performing intraprocedural optimizations\n");
1743 cgraph_mark_local_functions ();
1744 if (cgraph_dump_file)
1746 fprintf (cgraph_dump_file, "Marked ");
1747 dump_cgraph (cgraph_dump_file);
1750 if (flag_inline_trees)
1751 cgraph_decide_inlining ();
1752 cgraph_global_info_ready = true;
1753 if (cgraph_dump_file)
1755 fprintf (cgraph_dump_file, "Optimized ");
1756 dump_cgraph (cgraph_dump_file);
1758 timevar_pop (TV_CGRAPHOPT);
1760 /* Output everything. */
1761 if (!quiet_flag)
1762 fprintf (stderr, "Assembling functions:\n");
1763 #ifdef ENABLE_CHECKING
1764 verify_cgraph ();
1765 #endif
1766 cgraph_expand_all_functions ();
1767 if (cgraph_dump_file)
1769 fprintf (cgraph_dump_file, "\nFinal ");
1770 dump_cgraph (cgraph_dump_file);
1772 #ifdef ENABLE_CHECKING
1773 verify_cgraph ();
1774 /* Double check that all inline clones are gone and that all
1775 function bodies have been released from memory. */
1776 if (flag_unit_at_a_time
1777 && !dump_enabled_p (TDI_all)
1778 && !(sorrycount || errorcount))
1780 struct cgraph_node *node;
1781 bool error_found = false;
1783 for (node = cgraph_nodes; node; node = node->next)
1784 if (node->analyzed
1785 && (node->global.inlined_to
1786 || DECL_SAVED_TREE (node->decl)))
1788 error_found = true;
1789 dump_cgraph_node (stderr, node);
1791 if (error_found)
1792 internal_error ("Nodes with no released memory found.");
1794 #endif