1 /* Callgraph based interprocedural optimizations.
2 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008
3 Free Software Foundation, Inc.
4 Contributed by Jan Hubicka
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* This module implements main driver of compilation process as well as
23 few basic interprocedural 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
38 - varpool_finalize_variable
40 This function has same behavior as the above but is used for static
43 - cgraph_finalize_compilation_unit
45 This function is called once (source level) compilation unit is finalized
46 and it will no longer change.
48 In the unit-at-a-time the call-graph construction and local function
49 analysis takes place here. Bodies of unreachable functions are released
50 to conserve memory usage.
52 The function can be called multiple times when multiple source level
53 compilation units are combined (such as in C frontend)
57 In this unit-at-a-time compilation the intra procedural analysis takes
58 place here. In particular the static functions whose address is never
59 taken are marked as local. Backend can then use this information to
60 modify calling conventions, do better inlining or similar optimizations.
62 - cgraph_mark_needed_node
63 - varpool_mark_needed_node
65 When function or variable is referenced by some hidden way the call-graph
66 data structure must be updated accordingly by this function.
67 There should be little need to call this function and all the references
68 should be made explicit to cgraph code. At present these functions are
69 used by C++ frontend to explicitly mark the keyed methods.
71 - analyze_expr callback
73 This function is responsible for lowering tree nodes not understood by
74 generic code into understandable ones or alternatively marking
75 callgraph and varpool nodes referenced by the as needed.
77 ??? On the tree-ssa genericizing should take place here and we will avoid
78 need for these hooks (replacing them by genericizing hook)
80 We implement two compilation modes.
82 - unit-at-a-time: In this mode analyzing of all functions is deferred
83 to cgraph_finalize_compilation_unit and expansion into cgraph_optimize.
85 In cgraph_finalize_compilation_unit the reachable functions are
86 analyzed. During analysis the call-graph edges from reachable
87 functions are constructed and their destinations are marked as
88 reachable. References to functions and variables are discovered too
89 and variables found to be needed output to the assembly file. Via
90 mark_referenced call in assemble_variable functions referenced by
91 static variables are noticed too.
93 The intra-procedural information is produced and its existence
94 indicated by global_info_ready. Once this flag is set it is impossible
95 to change function from !reachable to reachable and thus
96 assemble_variable no longer call mark_referenced.
98 Finally the call-graph is topologically sorted and all reachable functions
99 that has not been completely inlined or are not external are output.
101 ??? It is possible that reference to function or variable is optimized
102 out. We can not deal with this nicely because topological order is not
103 suitable for it. For tree-ssa we may consider another pass doing
104 optimization and re-discovering reachable functions.
106 ??? Reorganize code so variables are output very last and only if they
107 really has been referenced by produced code, so we catch more cases
108 where reference has been optimized out.
112 All functions are variables are output as early as possible to conserve
113 memory consumption. This may or may not result in less memory used but
114 it is still needed for some legacy code that rely on particular ordering
115 of things output from the compiler.
117 Varpool data structures are not used and variables are output directly.
119 Functions are output early using call of
120 cgraph_assemble_pending_function from cgraph_finalize_function. The
121 decision on whether function is needed is made more conservative so
122 uninlininable static functions are needed too. During the call-graph
123 construction the edge destinations are not marked as reachable and it
124 is completely relied upn assemble_variable to mark them. */
129 #include "coretypes.h"
133 #include "tree-flow.h"
134 #include "tree-inline.h"
135 #include "langhooks.h"
136 #include "pointer-set.h"
143 #include "diagnostic.h"
147 #include "c-common.h"
149 #include "function.h"
150 #include "ipa-prop.h"
151 #include "tree-gimple.h"
152 #include "tree-pass.h"
155 static void cgraph_expand_all_functions (void);
156 static void cgraph_mark_functions_to_output (void);
157 static void cgraph_expand_function (struct cgraph_node
*);
158 static void cgraph_output_pending_asms (void);
160 static FILE *cgraph_dump_file
;
162 /* A vector of FUNCTION_DECLs declared as static constructors. */
163 static GTY (()) VEC(tree
, gc
) *static_ctors
;
164 /* A vector of FUNCTION_DECLs declared as static destructors. */
165 static GTY (()) VEC(tree
, gc
) *static_dtors
;
167 /* When target does not have ctors and dtors, we call all constructor
168 and destructor by special initialization/destruction function
169 recognized by collect2.
171 When we are going to build this function, collect all constructors and
172 destructors and turn them into normal functions. */
175 record_cdtor_fn (tree fndecl
)
177 struct cgraph_node
*node
;
178 if (targetm
.have_ctors_dtors
179 || (!DECL_STATIC_CONSTRUCTOR (fndecl
)
180 && !DECL_STATIC_DESTRUCTOR (fndecl
)))
183 if (DECL_STATIC_CONSTRUCTOR (fndecl
))
185 VEC_safe_push (tree
, gc
, static_ctors
, fndecl
);
186 DECL_STATIC_CONSTRUCTOR (fndecl
) = 0;
188 if (DECL_STATIC_DESTRUCTOR (fndecl
))
190 VEC_safe_push (tree
, gc
, static_dtors
, fndecl
);
191 DECL_STATIC_DESTRUCTOR (fndecl
) = 0;
193 DECL_INLINE (fndecl
) = 1;
194 node
= cgraph_node (fndecl
);
195 node
->local
.disregard_inline_limits
= 1;
196 cgraph_mark_reachable_node (node
);
199 /* Define global constructors/destructor functions for the CDTORS, of
200 which they are LEN. The CDTORS are sorted by initialization
201 priority. If CTOR_P is true, these are constructors; otherwise,
202 they are destructors. */
205 build_cdtor (bool ctor_p
, tree
*cdtors
, size_t len
)
214 priority_type priority
;
218 /* Find the next batch of constructors/destructors with the same
219 initialization priority. */
224 p
= ctor_p
? DECL_INIT_PRIORITY (fn
) : DECL_FINI_PRIORITY (fn
);
227 else if (p
!= priority
)
229 append_to_statement_list (build_function_call_expr (fn
, 0),
234 gcc_assert (body
!= NULL_TREE
);
235 /* Generate a function to call all the function of like
237 cgraph_build_static_cdtor (ctor_p
? 'I' : 'D', body
, priority
);
241 /* Comparison function for qsort. P1 and P2 are actually of type
242 "tree *" and point to static constructors. DECL_INIT_PRIORITY is
243 used to determine the sort order. */
246 compare_ctor (const void *p1
, const void *p2
)
253 f1
= *(const tree
*)p1
;
254 f2
= *(const tree
*)p2
;
255 priority1
= DECL_INIT_PRIORITY (f1
);
256 priority2
= DECL_INIT_PRIORITY (f2
);
258 if (priority1
< priority2
)
260 else if (priority1
> priority2
)
263 /* Ensure a stable sort. */
264 return (const tree
*)p1
- (const tree
*)p2
;
267 /* Comparison function for qsort. P1 and P2 are actually of type
268 "tree *" and point to static destructors. DECL_FINI_PRIORITY is
269 used to determine the sort order. */
272 compare_dtor (const void *p1
, const void *p2
)
279 f1
= *(const tree
*)p1
;
280 f2
= *(const tree
*)p2
;
281 priority1
= DECL_FINI_PRIORITY (f1
);
282 priority2
= DECL_FINI_PRIORITY (f2
);
284 if (priority1
< priority2
)
286 else if (priority1
> priority2
)
289 /* Ensure a stable sort. */
290 return (const tree
*)p1
- (const tree
*)p2
;
293 /* Generate functions to call static constructors and destructors
294 for targets that do not support .ctors/.dtors sections. These
295 functions have magic names which are detected by collect2. */
298 cgraph_build_cdtor_fns (void)
300 if (!VEC_empty (tree
, static_ctors
))
302 gcc_assert (!targetm
.have_ctors_dtors
);
303 qsort (VEC_address (tree
, static_ctors
),
304 VEC_length (tree
, static_ctors
),
307 build_cdtor (/*ctor_p=*/true,
308 VEC_address (tree
, static_ctors
),
309 VEC_length (tree
, static_ctors
));
310 VEC_truncate (tree
, static_ctors
, 0);
313 if (!VEC_empty (tree
, static_dtors
))
315 gcc_assert (!targetm
.have_ctors_dtors
);
316 qsort (VEC_address (tree
, static_dtors
),
317 VEC_length (tree
, static_dtors
),
320 build_cdtor (/*ctor_p=*/false,
321 VEC_address (tree
, static_dtors
),
322 VEC_length (tree
, static_dtors
));
323 VEC_truncate (tree
, static_dtors
, 0);
327 /* Determine if function DECL is needed. That is, visible to something
328 either outside this translation unit, something magic in the system
329 configury, or (if not doing unit-at-a-time) to something we havn't
333 decide_is_function_needed (struct cgraph_node
*node
, tree decl
)
336 if (MAIN_NAME_P (DECL_NAME (decl
))
337 && TREE_PUBLIC (decl
))
339 node
->local
.externally_visible
= true;
343 /* If the user told us it is used, then it must be so. */
344 if (node
->local
.externally_visible
)
347 if (!flag_unit_at_a_time
&& lookup_attribute ("used", DECL_ATTRIBUTES (decl
)))
350 /* ??? If the assembler name is set by hand, it is possible to assemble
351 the name later after finalizing the function and the fact is noticed
352 in assemble_name then. This is arguably a bug. */
353 if (DECL_ASSEMBLER_NAME_SET_P (decl
)
354 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
)))
357 /* With -fkeep-inline-functions we are keeping all inline functions except
358 for extern inline ones. */
359 if (flag_keep_inline_functions
360 && DECL_DECLARED_INLINE_P (decl
)
361 && !DECL_EXTERNAL (decl
)
362 && !lookup_attribute ("always_inline", DECL_ATTRIBUTES (decl
)))
365 /* If we decided it was needed before, but at the time we didn't have
366 the body of the function available, then it's still needed. We have
367 to go back and re-check its dependencies now. */
371 /* Externally visible functions must be output. The exception is
372 COMDAT functions that must be output only when they are needed.
374 When not optimizing, also output the static functions. (see
375 PR24561), but don't do so for always_inline functions, functions
376 declared inline and nested functions. These was optimized out
377 in the original implementation and it is unclear whether we want
378 to change the behavior here. */
379 if (((TREE_PUBLIC (decl
)
380 || (!optimize
&& !node
->local
.disregard_inline_limits
381 && !DECL_DECLARED_INLINE_P (decl
)
383 && !flag_whole_program
)
384 && !DECL_COMDAT (decl
) && !DECL_EXTERNAL (decl
))
387 /* Constructors and destructors are reachable from the runtime by
389 if (DECL_STATIC_CONSTRUCTOR (decl
) || DECL_STATIC_DESTRUCTOR (decl
))
392 if (flag_unit_at_a_time
)
395 /* If not doing unit at a time, then we'll only defer this function
396 if its marked for inlining. Otherwise we want to emit it now. */
398 /* "extern inline" functions are never output locally. */
399 if (DECL_EXTERNAL (decl
))
401 /* Nested functions of extern inline function shall not be emit unless
402 we inlined the origin. */
403 for (origin
= decl_function_context (decl
); origin
;
404 origin
= decl_function_context (origin
))
405 if (DECL_EXTERNAL (origin
))
407 /* We want to emit COMDAT functions only when absolutely necessary. */
408 if (DECL_COMDAT (decl
))
410 if (!DECL_INLINE (decl
)
411 || (!node
->local
.disregard_inline_limits
412 /* When declared inline, defer even the uninlinable functions.
413 This allows them to be eliminated when unused. */
414 && !DECL_DECLARED_INLINE_P (decl
)
415 && (!node
->local
.inlinable
|| !cgraph_default_inline_p (node
, NULL
))))
421 /* Process CGRAPH_NEW_FUNCTIONS and perform actions necessary to add these
422 functions into callgraph in a way so they look like ordinary reachable
423 functions inserted into callgraph already at construction time. */
426 cgraph_process_new_functions (void)
430 struct cgraph_node
*node
;
432 /* Note that this queue may grow as its being processed, as the new
433 functions may generate new ones. */
434 while (cgraph_new_nodes
)
436 node
= cgraph_new_nodes
;
438 cgraph_new_nodes
= cgraph_new_nodes
->next_needed
;
439 switch (cgraph_state
)
441 case CGRAPH_STATE_CONSTRUCTION
:
442 /* At construction time we just need to finalize function and move
443 it into reachable functions list. */
445 node
->next_needed
= NULL
;
446 node
->needed
= node
->reachable
= false;
447 cgraph_finalize_function (fndecl
, false);
448 cgraph_mark_reachable_node (node
);
452 case CGRAPH_STATE_IPA
:
453 case CGRAPH_STATE_IPA_SSA
:
454 /* When IPA optimization already started, do all essential
455 transformations that has been already performed on the whole
456 cgraph but not on this function. */
458 tree_register_cfg_hooks ();
460 cgraph_analyze_function (node
);
461 push_cfun (DECL_STRUCT_FUNCTION (fndecl
));
462 current_function_decl
= fndecl
;
463 node
->local
.inlinable
= tree_inlinable_function_p (fndecl
);
464 node
->local
.self_insns
= estimate_num_insns (fndecl
,
465 &eni_inlining_weights
);
466 node
->local
.disregard_inline_limits
467 |= DECL_DISREGARD_INLINE_LIMITS (fndecl
);
468 /* Inlining characteristics are maintained by the
469 cgraph_mark_inline. */
470 node
->global
.insns
= node
->local
.self_insns
;
471 if (flag_really_no_inline
&& !node
->local
.disregard_inline_limits
)
472 node
->local
.inlinable
= 0;
473 if ((cgraph_state
== CGRAPH_STATE_IPA_SSA
474 && !gimple_in_ssa_p (DECL_STRUCT_FUNCTION (fndecl
)))
475 /* When not optimizing, be sure we run early local passes anyway
478 execute_pass_list (pass_early_local_passes
.sub
);
479 free_dominance_info (CDI_POST_DOMINATORS
);
480 free_dominance_info (CDI_DOMINATORS
);
482 current_function_decl
= NULL
;
485 case CGRAPH_STATE_EXPANSION
:
486 /* Functions created during expansion shall be compiled
489 cgraph_expand_function (node
);
500 /* When not doing unit-at-a-time, output all functions enqueued.
501 Return true when such a functions were found. */
504 cgraph_assemble_pending_functions (void)
508 if (flag_unit_at_a_time
)
511 cgraph_output_pending_asms ();
513 while (cgraph_nodes_queue
)
515 struct cgraph_node
*n
= cgraph_nodes_queue
;
517 cgraph_nodes_queue
= cgraph_nodes_queue
->next_needed
;
518 n
->next_needed
= NULL
;
519 if (!n
->global
.inlined_to
521 && !DECL_EXTERNAL (n
->decl
))
523 cgraph_expand_function (n
);
526 output
|= cgraph_process_new_functions ();
533 /* As an GCC extension we allow redefinition of the function. The
534 semantics when both copies of bodies differ is not well defined.
535 We replace the old body with new body so in unit at a time mode
536 we always use new body, while in normal mode we may end up with
537 old body inlined into some functions and new body expanded and
540 ??? It may make more sense to use one body for inlining and other
541 body for expanding the function but this is difficult to do. */
544 cgraph_reset_node (struct cgraph_node
*node
)
546 /* If node->output is set, then this is a unit-at-a-time compilation
547 and we have already begun whole-unit analysis. This is *not*
548 testing for whether we've already emitted the function. That
549 case can be sort-of legitimately seen with real function
550 redefinition errors. I would argue that the front end should
551 never present us with such a case, but don't enforce that for now. */
552 gcc_assert (!node
->output
);
554 /* Reset our data structures so we can analyze the function again. */
555 memset (&node
->local
, 0, sizeof (node
->local
));
556 memset (&node
->global
, 0, sizeof (node
->global
));
557 memset (&node
->rtl
, 0, sizeof (node
->rtl
));
558 node
->analyzed
= false;
559 node
->local
.redefined_extern_inline
= true;
560 node
->local
.finalized
= false;
562 if (!flag_unit_at_a_time
)
564 struct cgraph_node
*n
, *next
;
566 for (n
= cgraph_nodes
; n
; n
= next
)
569 if (n
->global
.inlined_to
== node
)
570 cgraph_remove_node (n
);
574 cgraph_node_remove_callees (node
);
576 /* We may need to re-queue the node for assembling in case
577 we already proceeded it and ignored as not needed. */
578 if (node
->reachable
&& !flag_unit_at_a_time
)
580 struct cgraph_node
*n
;
582 for (n
= cgraph_nodes_queue
; n
; n
= n
->next_needed
)
591 cgraph_lower_function (struct cgraph_node
*node
)
595 tree_lowering_passes (node
->decl
);
596 node
->lowered
= true;
599 /* DECL has been parsed. Take it, queue it, compile it at the whim of the
600 logic in effect. If NESTED is true, then our caller cannot stand to have
601 the garbage collector run at the moment. We would need to either create
602 a new GC context, or just not compile right now. */
605 cgraph_finalize_function (tree decl
, bool nested
)
607 struct cgraph_node
*node
= cgraph_node (decl
);
609 if (node
->local
.finalized
)
610 cgraph_reset_node (node
);
612 node
->pid
= cgraph_max_pid
++;
613 notice_global_symbol (decl
);
615 node
->local
.finalized
= true;
616 node
->lowered
= DECL_STRUCT_FUNCTION (decl
)->cfg
!= NULL
;
617 record_cdtor_fn (node
->decl
);
619 lower_nested_functions (decl
);
620 gcc_assert (!node
->nested
);
622 /* If not unit at a time, then we need to create the call graph
623 now, so that called functions can be queued and emitted now. */
624 if (!flag_unit_at_a_time
)
625 cgraph_analyze_function (node
);
627 if (decide_is_function_needed (node
, decl
))
628 cgraph_mark_needed_node (node
);
630 /* Since we reclaim unreachable nodes at the end of every language
631 level unit, we need to be conservative about possible entry points
633 if ((TREE_PUBLIC (decl
) && !DECL_COMDAT (decl
) && !DECL_EXTERNAL (decl
)))
634 cgraph_mark_reachable_node (node
);
636 /* If not unit at a time, go ahead and emit everything we've found
637 to be reachable at this time. */
640 if (!cgraph_assemble_pending_functions ())
644 /* If we've not yet emitted decl, tell the debug info about it. */
645 if (!TREE_ASM_WRITTEN (decl
))
646 (*debug_hooks
->deferred_inline_function
) (decl
);
648 /* Possibly warn about unused parameters. */
649 if (warn_unused_parameter
)
650 do_warn_unused_parameter (decl
);
653 /* Verify cgraph nodes of given cgraph node. */
655 verify_cgraph_node (struct cgraph_node
*node
)
657 struct cgraph_edge
*e
;
658 struct cgraph_node
*main_clone
;
659 struct function
*this_cfun
= DECL_STRUCT_FUNCTION (node
->decl
);
660 basic_block this_block
;
661 block_stmt_iterator bsi
;
662 bool error_found
= false;
664 if (errorcount
|| sorrycount
)
667 timevar_push (TV_CGRAPH_VERIFY
);
668 for (e
= node
->callees
; e
; e
= e
->next_callee
)
671 error ("aux field set for edge %s->%s",
672 cgraph_node_name (e
->caller
), cgraph_node_name (e
->callee
));
677 error ("Execution count is negative");
680 for (e
= node
->callers
; e
; e
= e
->next_caller
)
684 error ("caller edge count is negative");
687 if (e
->frequency
< 0)
689 error ("caller edge frequency is negative");
692 if (e
->frequency
> CGRAPH_FREQ_MAX
)
694 error ("caller edge frequency is too large");
697 if (!e
->inline_failed
)
699 if (node
->global
.inlined_to
700 != (e
->caller
->global
.inlined_to
701 ? e
->caller
->global
.inlined_to
: e
->caller
))
703 error ("inlined_to pointer is wrong");
706 if (node
->callers
->next_caller
)
708 error ("multiple inline callers");
713 if (node
->global
.inlined_to
)
715 error ("inlined_to pointer set for noninline callers");
719 if (!node
->callers
&& node
->global
.inlined_to
)
721 error ("inlined_to pointer is set but no predecessors found");
724 if (node
->global
.inlined_to
== node
)
726 error ("inlined_to pointer refers to itself");
730 for (main_clone
= cgraph_node (node
->decl
); main_clone
;
731 main_clone
= main_clone
->next_clone
)
732 if (main_clone
== node
)
734 if (!cgraph_node (node
->decl
))
736 error ("node not found in cgraph_hash");
741 && DECL_SAVED_TREE (node
->decl
) && !TREE_ASM_WRITTEN (node
->decl
)
742 && (!DECL_EXTERNAL (node
->decl
) || node
->global
.inlined_to
))
746 /* The nodes we're interested in are never shared, so walk
747 the tree ignoring duplicates. */
748 struct pointer_set_t
*visited_nodes
= pointer_set_create ();
749 /* Reach the trees by walking over the CFG, and note the
750 enclosing basic-blocks in the call edges. */
751 FOR_EACH_BB_FN (this_block
, this_cfun
)
752 for (bsi
= bsi_start (this_block
); !bsi_end_p (bsi
); bsi_next (&bsi
))
754 tree stmt
= bsi_stmt (bsi
);
755 tree call
= get_call_expr_in (stmt
);
757 if (call
&& (decl
= get_callee_fndecl (call
)))
759 struct cgraph_edge
*e
= cgraph_edge (node
, stmt
);
764 error ("shared call_stmt:");
765 debug_generic_stmt (stmt
);
768 if (e
->callee
->decl
!= cgraph_node (decl
)->decl
771 error ("edge points to wrong declaration:");
772 debug_tree (e
->callee
->decl
);
773 fprintf (stderr
," Instead of:");
780 error ("missing callgraph edge for call stmt:");
781 debug_generic_stmt (stmt
);
786 pointer_set_destroy (visited_nodes
);
789 /* No CFG available?! */
792 for (e
= node
->callees
; e
; e
= e
->next_callee
)
796 error ("edge %s->%s has no corresponding call_stmt",
797 cgraph_node_name (e
->caller
),
798 cgraph_node_name (e
->callee
));
799 debug_generic_stmt (e
->call_stmt
);
807 dump_cgraph_node (stderr
, node
);
808 internal_error ("verify_cgraph_node failed");
810 timevar_pop (TV_CGRAPH_VERIFY
);
813 /* Verify whole cgraph structure. */
817 struct cgraph_node
*node
;
819 if (sorrycount
|| errorcount
)
822 for (node
= cgraph_nodes
; node
; node
= node
->next
)
823 verify_cgraph_node (node
);
826 /* Output all asm statements we have stored up to be output. */
829 cgraph_output_pending_asms (void)
831 struct cgraph_asm_node
*can
;
833 if (errorcount
|| sorrycount
)
836 for (can
= cgraph_asm_nodes
; can
; can
= can
->next
)
837 assemble_asm (can
->asm_str
);
838 cgraph_asm_nodes
= NULL
;
841 /* Analyze the function scheduled to be output. */
843 cgraph_analyze_function (struct cgraph_node
*node
)
845 tree decl
= node
->decl
;
847 current_function_decl
= decl
;
848 push_cfun (DECL_STRUCT_FUNCTION (decl
));
849 cgraph_lower_function (node
);
850 node
->analyzed
= true;
852 if (!flag_unit_at_a_time
)
854 bitmap_obstack_initialize (NULL
);
855 tree_register_cfg_hooks ();
856 execute_pass_list (pass_early_local_passes
.sub
);
857 free_dominance_info (CDI_POST_DOMINATORS
);
858 free_dominance_info (CDI_DOMINATORS
);
859 bitmap_obstack_release (NULL
);
863 current_function_decl
= NULL
;
866 /* Look for externally_visible and used attributes and mark cgraph nodes
869 We cannot mark the nodes at the point the attributes are processed (in
870 handle_*_attribute) because the copy of the declarations available at that
871 point may not be canonical. For example, in:
874 void f() __attribute__((used));
876 the declaration we see in handle_used_attribute will be the second
877 declaration -- but the front end will subsequently merge that declaration
878 with the original declaration and discard the second declaration.
880 Furthermore, we can't mark these nodes in cgraph_finalize_function because:
883 void f() __attribute__((externally_visible));
887 So, we walk the nodes at the end of the translation unit, applying the
888 attributes at that point. */
891 process_function_and_variable_attributes (struct cgraph_node
*first
,
892 struct varpool_node
*first_var
)
894 struct cgraph_node
*node
;
895 struct varpool_node
*vnode
;
897 for (node
= cgraph_nodes
; node
!= first
; node
= node
->next
)
899 tree decl
= node
->decl
;
900 if (lookup_attribute ("used", DECL_ATTRIBUTES (decl
)))
902 mark_decl_referenced (decl
);
903 if (node
->local
.finalized
)
904 cgraph_mark_needed_node (node
);
906 if (lookup_attribute ("externally_visible", DECL_ATTRIBUTES (decl
)))
908 if (! TREE_PUBLIC (node
->decl
))
909 warning (OPT_Wattributes
,
910 "%J%<externally_visible%> attribute have effect only on public objects",
914 if (node
->local
.finalized
)
915 cgraph_mark_needed_node (node
);
916 node
->local
.externally_visible
= true;
920 for (vnode
= varpool_nodes
; vnode
!= first_var
; vnode
= vnode
->next
)
922 tree decl
= vnode
->decl
;
923 if (lookup_attribute ("used", DECL_ATTRIBUTES (decl
)))
925 mark_decl_referenced (decl
);
926 if (vnode
->finalized
)
927 varpool_mark_needed_node (vnode
);
929 if (lookup_attribute ("externally_visible", DECL_ATTRIBUTES (decl
)))
931 if (! TREE_PUBLIC (vnode
->decl
))
932 warning (OPT_Wattributes
,
933 "%J%<externally_visible%> attribute have effect only on public objects",
937 if (vnode
->finalized
)
938 varpool_mark_needed_node (vnode
);
939 vnode
->externally_visible
= true;
945 /* Process CGRAPH_NODES_NEEDED queue, analyze each function (and transitively
946 each reachable functions) and build cgraph.
947 The function can be called multiple times after inserting new nodes
948 into beginning of queue. Just the new part of queue is re-scanned then. */
951 cgraph_analyze_functions (void)
953 /* Keep track of already processed nodes when called multiple times for
954 intermodule optimization. */
955 static struct cgraph_node
*first_analyzed
;
956 struct cgraph_node
*first_processed
= first_analyzed
;
957 static struct varpool_node
*first_analyzed_var
;
958 struct cgraph_node
*node
, *next
;
960 process_function_and_variable_attributes (first_processed
,
962 first_processed
= cgraph_nodes
;
963 first_analyzed_var
= varpool_nodes
;
964 varpool_analyze_pending_decls ();
965 if (cgraph_dump_file
)
967 fprintf (cgraph_dump_file
, "Initial entry points:");
968 for (node
= cgraph_nodes
; node
!= first_analyzed
; node
= node
->next
)
969 if (node
->needed
&& DECL_SAVED_TREE (node
->decl
))
970 fprintf (cgraph_dump_file
, " %s", cgraph_node_name (node
));
971 fprintf (cgraph_dump_file
, "\n");
973 cgraph_process_new_functions ();
975 /* Propagate reachability flag and lower representation of all reachable
976 functions. In the future, lowering will introduce new functions and
977 new entry points on the way (by template instantiation and virtual
978 method table generation for instance). */
979 while (cgraph_nodes_queue
)
981 struct cgraph_edge
*edge
;
982 tree decl
= cgraph_nodes_queue
->decl
;
984 node
= cgraph_nodes_queue
;
985 cgraph_nodes_queue
= cgraph_nodes_queue
->next_needed
;
986 node
->next_needed
= NULL
;
988 /* ??? It is possible to create extern inline function and later using
989 weak alias attribute to kill its body. See
990 gcc.c-torture/compile/20011119-1.c */
991 if (!DECL_SAVED_TREE (decl
))
993 cgraph_reset_node (node
);
997 gcc_assert (!node
->analyzed
&& node
->reachable
);
998 gcc_assert (DECL_SAVED_TREE (decl
));
1000 cgraph_analyze_function (node
);
1002 for (edge
= node
->callees
; edge
; edge
= edge
->next_callee
)
1003 if (!edge
->callee
->reachable
)
1004 cgraph_mark_reachable_node (edge
->callee
);
1006 /* We finalize local static variables during constructing callgraph
1007 edges. Process their attributes too. */
1008 process_function_and_variable_attributes (first_processed
,
1009 first_analyzed_var
);
1010 first_processed
= cgraph_nodes
;
1011 first_analyzed_var
= varpool_nodes
;
1012 varpool_analyze_pending_decls ();
1013 cgraph_process_new_functions ();
1016 /* Collect entry points to the unit. */
1017 if (cgraph_dump_file
)
1019 fprintf (cgraph_dump_file
, "Unit entry points:");
1020 for (node
= cgraph_nodes
; node
!= first_analyzed
; node
= node
->next
)
1021 if (node
->needed
&& DECL_SAVED_TREE (node
->decl
))
1022 fprintf (cgraph_dump_file
, " %s", cgraph_node_name (node
));
1023 fprintf (cgraph_dump_file
, "\n\nInitial ");
1024 dump_cgraph (cgraph_dump_file
);
1027 if (cgraph_dump_file
)
1028 fprintf (cgraph_dump_file
, "\nReclaiming functions:");
1030 for (node
= cgraph_nodes
; node
!= first_analyzed
; node
= next
)
1032 tree decl
= node
->decl
;
1035 if (node
->local
.finalized
&& !DECL_SAVED_TREE (decl
))
1036 cgraph_reset_node (node
);
1038 if (!node
->reachable
&& DECL_SAVED_TREE (decl
))
1040 if (cgraph_dump_file
)
1041 fprintf (cgraph_dump_file
, " %s", cgraph_node_name (node
));
1042 cgraph_remove_node (node
);
1046 node
->next_needed
= NULL
;
1047 gcc_assert (!node
->local
.finalized
|| DECL_SAVED_TREE (decl
));
1048 gcc_assert (node
->analyzed
== node
->local
.finalized
);
1050 if (cgraph_dump_file
)
1052 fprintf (cgraph_dump_file
, "\n\nReclaimed ");
1053 dump_cgraph (cgraph_dump_file
);
1055 first_analyzed
= cgraph_nodes
;
1059 /* Analyze the whole compilation unit once it is parsed completely. */
1062 cgraph_finalize_compilation_unit (void)
1064 if (errorcount
|| sorrycount
)
1067 finish_aliases_1 ();
1069 if (!flag_unit_at_a_time
)
1071 cgraph_output_pending_asms ();
1072 cgraph_assemble_pending_functions ();
1073 varpool_output_debug_info ();
1079 fprintf (stderr
, "\nAnalyzing compilation unit\n");
1083 timevar_push (TV_CGRAPH
);
1084 cgraph_analyze_functions ();
1085 timevar_pop (TV_CGRAPH
);
1087 /* Figure out what functions we want to assemble. */
1090 cgraph_mark_functions_to_output (void)
1092 struct cgraph_node
*node
;
1094 for (node
= cgraph_nodes
; node
; node
= node
->next
)
1096 tree decl
= node
->decl
;
1097 struct cgraph_edge
*e
;
1099 gcc_assert (!node
->output
);
1101 for (e
= node
->callers
; e
; e
= e
->next_caller
)
1102 if (e
->inline_failed
)
1105 /* We need to output all local functions that are used and not
1106 always inlined, as well as those that are reachable from
1107 outside the current compilation unit. */
1108 if (DECL_SAVED_TREE (decl
)
1109 && !node
->global
.inlined_to
1111 || (e
&& node
->reachable
))
1112 && !TREE_ASM_WRITTEN (decl
)
1113 && !DECL_EXTERNAL (decl
))
1117 /* We should've reclaimed all functions that are not needed. */
1118 #ifdef ENABLE_CHECKING
1119 if (!node
->global
.inlined_to
&& DECL_SAVED_TREE (decl
)
1120 && !DECL_EXTERNAL (decl
))
1122 dump_cgraph_node (stderr
, node
);
1123 internal_error ("failed to reclaim unneeded function");
1126 gcc_assert (node
->global
.inlined_to
|| !DECL_SAVED_TREE (decl
)
1127 || DECL_EXTERNAL (decl
));
1134 /* Expand function specified by NODE. */
1137 cgraph_expand_function (struct cgraph_node
*node
)
1139 tree decl
= node
->decl
;
1141 /* We ought to not compile any inline clones. */
1142 gcc_assert (!node
->global
.inlined_to
);
1144 if (flag_unit_at_a_time
)
1145 announce_function (decl
);
1147 gcc_assert (node
->lowered
);
1149 /* Generate RTL for the body of DECL. */
1150 if (lang_hooks
.callgraph
.emit_associated_thunks
)
1151 lang_hooks
.callgraph
.emit_associated_thunks (decl
);
1152 tree_rest_of_compilation (decl
);
1154 /* Make sure that BE didn't give up on compiling. */
1155 /* ??? Can happen with nested function of extern inline. */
1156 gcc_assert (TREE_ASM_WRITTEN (node
->decl
));
1158 current_function_decl
= NULL
;
1159 if (!cgraph_preserve_function_body_p (node
->decl
))
1161 cgraph_release_function_body (node
);
1162 /* Eliminate all call edges. This is important so the call_expr no longer
1163 points to the dead function body. */
1164 cgraph_node_remove_callees (node
);
1167 cgraph_function_flags_ready
= true;
1170 /* Return true when CALLER_DECL should be inlined into CALLEE_DECL. */
1173 cgraph_inline_p (struct cgraph_edge
*e
, const char **reason
)
1175 *reason
= e
->inline_failed
;
1176 return !e
->inline_failed
;
1181 /* Expand all functions that must be output.
1183 Attempt to topologically sort the nodes so function is output when
1184 all called functions are already assembled to allow data to be
1185 propagated across the callgraph. Use a stack to get smaller distance
1186 between a function and its callees (later we may choose to use a more
1187 sophisticated algorithm for function reordering; we will likely want
1188 to use subsections to make the output functions appear in top-down
1192 cgraph_expand_all_functions (void)
1194 struct cgraph_node
*node
;
1195 struct cgraph_node
**order
= XCNEWVEC (struct cgraph_node
*, cgraph_n_nodes
);
1196 int order_pos
= 0, new_order_pos
= 0;
1199 order_pos
= cgraph_postorder (order
);
1200 gcc_assert (order_pos
== cgraph_n_nodes
);
1202 /* Garbage collector may remove inline clones we eliminate during
1203 optimization. So we must be sure to not reference them. */
1204 for (i
= 0; i
< order_pos
; i
++)
1205 if (order
[i
]->output
)
1206 order
[new_order_pos
++] = order
[i
];
1208 for (i
= new_order_pos
- 1; i
>= 0; i
--)
1213 gcc_assert (node
->reachable
);
1215 cgraph_expand_function (node
);
1218 cgraph_process_new_functions ();
1224 /* This is used to sort the node types by the cgraph order number. */
1226 struct cgraph_order_sort
1228 enum { ORDER_UNDEFINED
= 0, ORDER_FUNCTION
, ORDER_VAR
, ORDER_ASM
} kind
;
1231 struct cgraph_node
*f
;
1232 struct varpool_node
*v
;
1233 struct cgraph_asm_node
*a
;
1237 /* Output all functions, variables, and asm statements in the order
1238 according to their order fields, which is the order in which they
1239 appeared in the file. This implements -fno-toplevel-reorder. In
1240 this mode we may output functions and variables which don't really
1241 need to be output. */
1244 cgraph_output_in_order (void)
1248 struct cgraph_order_sort
*nodes
;
1250 struct cgraph_node
*pf
;
1251 struct varpool_node
*pv
;
1252 struct cgraph_asm_node
*pa
;
1255 size
= max
* sizeof (struct cgraph_order_sort
);
1256 nodes
= (struct cgraph_order_sort
*) alloca (size
);
1257 memset (nodes
, 0, size
);
1259 varpool_analyze_pending_decls ();
1261 for (pf
= cgraph_nodes
; pf
; pf
= pf
->next
)
1266 gcc_assert (nodes
[i
].kind
== ORDER_UNDEFINED
);
1267 nodes
[i
].kind
= ORDER_FUNCTION
;
1272 for (pv
= varpool_nodes_queue
; pv
; pv
= pv
->next_needed
)
1275 gcc_assert (nodes
[i
].kind
== ORDER_UNDEFINED
);
1276 nodes
[i
].kind
= ORDER_VAR
;
1280 for (pa
= cgraph_asm_nodes
; pa
; pa
= pa
->next
)
1283 gcc_assert (nodes
[i
].kind
== ORDER_UNDEFINED
);
1284 nodes
[i
].kind
= ORDER_ASM
;
1288 for (i
= 0; i
< max
; ++i
)
1290 switch (nodes
[i
].kind
)
1292 case ORDER_FUNCTION
:
1293 nodes
[i
].u
.f
->output
= 0;
1294 cgraph_expand_function (nodes
[i
].u
.f
);
1298 varpool_assemble_decl (nodes
[i
].u
.v
);
1302 assemble_asm (nodes
[i
].u
.a
->asm_str
);
1305 case ORDER_UNDEFINED
:
1313 cgraph_asm_nodes
= NULL
;
1316 /* Return true when function body of DECL still needs to be kept around
1317 for later re-use. */
1319 cgraph_preserve_function_body_p (tree decl
)
1321 struct cgraph_node
*node
;
1322 if (!cgraph_global_info_ready
)
1323 return (flag_really_no_inline
1324 ? DECL_DISREGARD_INLINE_LIMITS (decl
)
1325 : DECL_INLINE (decl
));
1326 /* Look if there is any clone around. */
1327 for (node
= cgraph_node (decl
); node
; node
= node
->next_clone
)
1328 if (node
->global
.inlined_to
)
1337 current_function_decl
= NULL
;
1338 tree_register_cfg_hooks ();
1339 bitmap_obstack_initialize (NULL
);
1340 execute_ipa_pass_list (all_ipa_passes
);
1341 bitmap_obstack_release (NULL
);
1344 /* Perform simple optimizations based on callgraph. */
1347 cgraph_optimize (void)
1349 if (errorcount
|| sorrycount
)
1352 #ifdef ENABLE_CHECKING
1356 /* Call functions declared with the "constructor" or "destructor"
1358 cgraph_build_cdtor_fns ();
1359 if (!flag_unit_at_a_time
)
1361 cgraph_assemble_pending_functions ();
1362 cgraph_process_new_functions ();
1363 cgraph_state
= CGRAPH_STATE_FINISHED
;
1364 cgraph_output_pending_asms ();
1365 varpool_assemble_pending_decls ();
1366 varpool_output_debug_info ();
1370 /* Frontend may output common variables after the unit has been finalized.
1371 It is safe to deal with them here as they are always zero initialized. */
1372 varpool_analyze_pending_decls ();
1373 cgraph_analyze_functions ();
1375 timevar_push (TV_CGRAPHOPT
);
1376 if (pre_ipa_mem_report
)
1378 fprintf (stderr
, "Memory consumption before IPA\n");
1379 dump_memory_report (false);
1382 fprintf (stderr
, "Performing interprocedural optimizations\n");
1383 cgraph_state
= CGRAPH_STATE_IPA
;
1385 /* Don't run the IPA passes if there was any error or sorry messages. */
1386 if (errorcount
== 0 && sorrycount
== 0)
1389 /* This pass remove bodies of extern inline functions we never inlined.
1390 Do this later so other IPA passes see what is really going on. */
1391 cgraph_remove_unreachable_nodes (false, dump_file
);
1392 cgraph_global_info_ready
= true;
1393 if (cgraph_dump_file
)
1395 fprintf (cgraph_dump_file
, "Optimized ");
1396 dump_cgraph (cgraph_dump_file
);
1397 dump_varpool (cgraph_dump_file
);
1399 if (post_ipa_mem_report
)
1401 fprintf (stderr
, "Memory consumption after IPA\n");
1402 dump_memory_report (false);
1404 timevar_pop (TV_CGRAPHOPT
);
1406 /* Output everything. */
1408 fprintf (stderr
, "Assembling functions:\n");
1409 #ifdef ENABLE_CHECKING
1413 cgraph_mark_functions_to_output ();
1415 cgraph_state
= CGRAPH_STATE_EXPANSION
;
1416 if (!flag_toplevel_reorder
)
1417 cgraph_output_in_order ();
1420 cgraph_output_pending_asms ();
1422 cgraph_expand_all_functions ();
1423 varpool_remove_unreferenced_decls ();
1425 varpool_assemble_pending_decls ();
1426 varpool_output_debug_info ();
1428 cgraph_process_new_functions ();
1429 cgraph_state
= CGRAPH_STATE_FINISHED
;
1431 if (cgraph_dump_file
)
1433 fprintf (cgraph_dump_file
, "\nFinal ");
1434 dump_cgraph (cgraph_dump_file
);
1436 #ifdef ENABLE_CHECKING
1438 /* Double check that all inline clones are gone and that all
1439 function bodies have been released from memory. */
1440 if (flag_unit_at_a_time
1441 && !(sorrycount
|| errorcount
))
1443 struct cgraph_node
*node
;
1444 bool error_found
= false;
1446 for (node
= cgraph_nodes
; node
; node
= node
->next
)
1448 && (node
->global
.inlined_to
1449 || DECL_SAVED_TREE (node
->decl
)))
1452 dump_cgraph_node (stderr
, node
);
1455 internal_error ("nodes with no released memory found");
1459 /* Generate and emit a static constructor or destructor. WHICH must
1460 be one of 'I' (for a constructor) or 'D' (for a destructor). BODY
1461 is a STATEMENT_LIST containing GENERIC statements. PRIORITY is the
1462 initialization priority fot this constructor or destructor. */
1465 cgraph_build_static_cdtor (char which
, tree body
, int priority
)
1467 static int counter
= 0;
1469 tree decl
, name
, resdecl
;
1471 /* The priority is encoded in the constructor or destructor name.
1472 collect2 will sort the names and arrange that they are called at
1474 sprintf (which_buf
, "%c_%.5d_%d", which
, priority
, counter
++);
1475 name
= get_file_function_name (which_buf
);
1477 decl
= build_decl (FUNCTION_DECL
, name
,
1478 build_function_type (void_type_node
, void_list_node
));
1479 current_function_decl
= decl
;
1481 resdecl
= build_decl (RESULT_DECL
, NULL_TREE
, void_type_node
);
1482 DECL_ARTIFICIAL (resdecl
) = 1;
1483 DECL_RESULT (decl
) = resdecl
;
1485 allocate_struct_function (decl
, false);
1487 TREE_STATIC (decl
) = 1;
1488 TREE_USED (decl
) = 1;
1489 DECL_ARTIFICIAL (decl
) = 1;
1490 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (decl
) = 1;
1491 DECL_SAVED_TREE (decl
) = body
;
1492 TREE_PUBLIC (decl
) = ! targetm
.have_ctors_dtors
;
1493 DECL_UNINLINABLE (decl
) = 1;
1495 DECL_INITIAL (decl
) = make_node (BLOCK
);
1496 TREE_USED (DECL_INITIAL (decl
)) = 1;
1498 DECL_SOURCE_LOCATION (decl
) = input_location
;
1499 cfun
->function_end_locus
= input_location
;
1504 DECL_STATIC_CONSTRUCTOR (decl
) = 1;
1505 decl_init_priority_insert (decl
, priority
);
1508 DECL_STATIC_DESTRUCTOR (decl
) = 1;
1509 decl_fini_priority_insert (decl
, priority
);
1515 gimplify_function_tree (decl
);
1517 cgraph_add_new_function (decl
, false);
1518 cgraph_mark_needed_node (cgraph_node (decl
));
1525 cgraph_dump_file
= dump_begin (TDI_cgraph
, NULL
);
1528 /* The edges representing the callers of the NEW_VERSION node were
1529 fixed by cgraph_function_versioning (), now the call_expr in their
1530 respective tree code should be updated to call the NEW_VERSION. */
1533 update_call_expr (struct cgraph_node
*new_version
)
1535 struct cgraph_edge
*e
;
1537 gcc_assert (new_version
);
1538 for (e
= new_version
->callers
; e
; e
= e
->next_caller
)
1539 /* Update the call expr on the edges
1540 to call the new version. */
1541 TREE_OPERAND (CALL_EXPR_FN (get_call_expr_in (e
->call_stmt
)), 0) = new_version
->decl
;
1545 /* Create a new cgraph node which is the new version of
1546 OLD_VERSION node. REDIRECT_CALLERS holds the callers
1547 edges which should be redirected to point to
1548 NEW_VERSION. ALL the callees edges of OLD_VERSION
1549 are cloned to the new version node. Return the new
1552 static struct cgraph_node
*
1553 cgraph_copy_node_for_versioning (struct cgraph_node
*old_version
,
1555 VEC(cgraph_edge_p
,heap
) *redirect_callers
)
1557 struct cgraph_node
*new_version
;
1558 struct cgraph_edge
*e
, *new_e
;
1559 struct cgraph_edge
*next_callee
;
1562 gcc_assert (old_version
);
1564 new_version
= cgraph_node (new_decl
);
1566 new_version
->analyzed
= true;
1567 new_version
->local
= old_version
->local
;
1568 new_version
->global
= old_version
->global
;
1569 new_version
->rtl
= new_version
->rtl
;
1570 new_version
->reachable
= true;
1571 new_version
->count
= old_version
->count
;
1573 /* Clone the old node callees. Recursive calls are
1575 for (e
= old_version
->callees
;e
; e
=e
->next_callee
)
1577 new_e
= cgraph_clone_edge (e
, new_version
, e
->call_stmt
, 0, e
->frequency
,
1578 e
->loop_nest
, true);
1579 new_e
->count
= e
->count
;
1581 /* Fix recursive calls.
1582 If OLD_VERSION has a recursive call after the
1583 previous edge cloning, the new version will have an edge
1584 pointing to the old version, which is wrong;
1585 Redirect it to point to the new version. */
1586 for (e
= new_version
->callees
; e
; e
= next_callee
)
1588 next_callee
= e
->next_callee
;
1589 if (e
->callee
== old_version
)
1590 cgraph_redirect_edge_callee (e
, new_version
);
1595 for (i
= 0; VEC_iterate (cgraph_edge_p
, redirect_callers
, i
, e
); i
++)
1597 /* Redirect calls to the old version node to point to its new
1599 cgraph_redirect_edge_callee (e
, new_version
);
1605 /* Perform function versioning.
1606 Function versioning includes copying of the tree and
1607 a callgraph update (creating a new cgraph node and updating
1608 its callees and callers).
1610 REDIRECT_CALLERS varray includes the edges to be redirected
1613 TREE_MAP is a mapping of tree nodes we want to replace with
1614 new ones (according to results of prior analysis).
1615 OLD_VERSION_NODE is the node that is versioned.
1616 It returns the new version's cgraph node. */
1618 struct cgraph_node
*
1619 cgraph_function_versioning (struct cgraph_node
*old_version_node
,
1620 VEC(cgraph_edge_p
,heap
) *redirect_callers
,
1621 varray_type tree_map
)
1623 tree old_decl
= old_version_node
->decl
;
1624 struct cgraph_node
*new_version_node
= NULL
;
1627 if (!tree_versionable_function_p (old_decl
))
1630 /* Make a new FUNCTION_DECL tree node for the
1632 new_decl
= copy_node (old_decl
);
1634 /* Create the new version's call-graph node.
1635 and update the edges of the new node. */
1637 cgraph_copy_node_for_versioning (old_version_node
, new_decl
,
1640 /* Copy the OLD_VERSION_NODE function tree to the new version. */
1641 tree_function_versioning (old_decl
, new_decl
, tree_map
, false);
1642 /* Update the call_expr on the edges to call the new version node. */
1643 update_call_expr (new_version_node
);
1645 /* Update the new version's properties.
1646 Make The new version visible only within this translation unit.
1647 ??? We cannot use COMDAT linkage because there is no
1648 ABI support for this. */
1649 DECL_EXTERNAL (new_version_node
->decl
) = 0;
1650 DECL_ONE_ONLY (new_version_node
->decl
) = 0;
1651 TREE_PUBLIC (new_version_node
->decl
) = 0;
1652 DECL_COMDAT (new_version_node
->decl
) = 0;
1653 new_version_node
->local
.externally_visible
= 0;
1654 new_version_node
->local
.local
= 1;
1655 new_version_node
->lowered
= true;
1656 return new_version_node
;
1659 /* Produce separate function body for inline clones so the offline copy can be
1660 modified without affecting them. */
1661 struct cgraph_node
*
1662 save_inline_function_body (struct cgraph_node
*node
)
1664 struct cgraph_node
*first_clone
;
1666 gcc_assert (node
== cgraph_node (node
->decl
));
1668 cgraph_lower_function (node
);
1670 /* In non-unit-at-a-time we construct full fledged clone we never output to
1671 assembly file. This clone is pointed out by inline_decl of original function
1672 and inlining infrastructure knows how to deal with this. */
1673 if (!flag_unit_at_a_time
)
1675 struct cgraph_edge
*e
;
1677 first_clone
= cgraph_clone_node (node
, node
->count
, 0, CGRAPH_FREQ_BASE
,
1679 first_clone
->needed
= 0;
1680 first_clone
->reachable
= 1;
1681 /* Recursively clone all bodies. */
1682 for (e
= first_clone
->callees
; e
; e
= e
->next_callee
)
1683 if (!e
->inline_failed
)
1684 cgraph_clone_inlined_nodes (e
, true, false);
1687 first_clone
= node
->next_clone
;
1689 first_clone
->decl
= copy_node (node
->decl
);
1690 node
->next_clone
= NULL
;
1691 if (!flag_unit_at_a_time
)
1692 node
->inline_decl
= first_clone
->decl
;
1693 first_clone
->prev_clone
= NULL
;
1694 cgraph_insert_node_to_hashtable (first_clone
);
1695 gcc_assert (first_clone
== cgraph_node (first_clone
->decl
));
1697 /* Copy the OLD_VERSION_NODE function tree to the new version. */
1698 tree_function_versioning (node
->decl
, first_clone
->decl
, NULL
, true);
1700 DECL_EXTERNAL (first_clone
->decl
) = 0;
1701 DECL_ONE_ONLY (first_clone
->decl
) = 0;
1702 TREE_PUBLIC (first_clone
->decl
) = 0;
1703 DECL_COMDAT (first_clone
->decl
) = 0;
1705 for (node
= first_clone
->next_clone
; node
; node
= node
->next_clone
)
1706 node
->decl
= first_clone
->decl
;
1707 #ifdef ENABLE_CHECKING
1708 verify_cgraph_node (first_clone
);
1713 #include "gt-cgraphunit.h"