2 Copyright 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
3 Contributed by Alexandre Oliva <aoliva@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License 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
19 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
24 #include "coretypes.h"
28 #include "tree-inline.h"
34 #include "insn-config.h"
37 #include "langhooks.h"
38 #include "basic-block.h"
39 #include "tree-iterator.h"
42 #include "tree-mudflap.h"
43 #include "tree-flow.h"
46 #include "tree-flow.h"
47 #include "diagnostic.h"
50 #include "pointer-set.h"
53 /* I'm not real happy about this, but we need to handle gimple and
55 #include "tree-gimple.h"
57 /* Inlining, Cloning, Versioning, Parallelization
59 Inlining: a function body is duplicated, but the PARM_DECLs are
60 remapped into VAR_DECLs, and non-void RETURN_EXPRs become
61 MODIFY_EXPRs that store to a dedicated returned-value variable.
62 The duplicated eh_region info of the copy will later be appended
63 to the info for the caller; the eh_region info in copied throwing
64 statements and RESX_EXPRs is adjusted accordingly.
66 Cloning: (only in C++) We have one body for a con/de/structor, and
67 multiple function decls, each with a unique parameter list.
68 Duplicate the body, using the given splay tree; some parameters
69 will become constants (like 0 or 1).
71 Versioning: a function body is duplicated and the result is a new
72 function rather than into blocks of an existing function as with
73 inlining. Some parameters will become constants.
75 Parallelization: a region of a function is duplicated resulting in
76 a new function. Variables may be replaced with complex expressions
77 to enable shared variable semantics.
79 All of these will simultaneously lookup any callgraph edges. If
80 we're going to inline the duplicated function body, and the given
81 function has some cloned callgraph nodes (one for each place this
82 function will be inlined) those callgraph edges will be duplicated.
83 If we're cloning the body, those callgraph edges will be
84 updated to point into the new body. (Note that the original
85 callgraph node and edge list will not be altered.)
87 See the CALL_EXPR handling case in copy_body_r (). */
89 /* 0 if we should not perform inlining.
90 1 if we should expand functions calls inline at the tree level.
91 2 if we should consider *all* functions to be inline
94 int flag_inline_trees
= 0;
98 o In order to make inlining-on-trees work, we pessimized
99 function-local static constants. In particular, they are now
100 always output, even when not addressed. Fix this by treating
101 function-local static constants just like global static
102 constants; the back-end already knows not to output them if they
105 o Provide heuristics to clamp inlining of recursive template
110 static tree
declare_return_variable (copy_body_data
*, tree
, tree
, tree
*);
111 static tree
copy_generic_body (copy_body_data
*);
112 static bool inlinable_function_p (tree
);
113 static void remap_block (tree
*, copy_body_data
*);
114 static tree
remap_decls (tree
, copy_body_data
*);
115 static void copy_bind_expr (tree
*, int *, copy_body_data
*);
116 static tree
mark_local_for_remap_r (tree
*, int *, void *);
117 static void unsave_expr_1 (tree
);
118 static tree
unsave_r (tree
*, int *, void *);
119 static void declare_inline_vars (tree
, tree
);
120 static void remap_save_expr (tree
*, void *, int *);
121 static void add_lexical_block (tree current_block
, tree new_block
);
122 static tree
copy_decl_to_var (tree
, copy_body_data
*);
123 static tree
copy_decl_no_change (tree
, copy_body_data
*);
124 static tree
copy_decl_maybe_to_var (tree
, copy_body_data
*);
126 /* Insert a tree->tree mapping for ID. Despite the name suggests
127 that the trees should be variables, it is used for more than that. */
130 insert_decl_map (copy_body_data
*id
, tree key
, tree value
)
132 splay_tree_insert (id
->decl_map
, (splay_tree_key
) key
,
133 (splay_tree_value
) value
);
135 /* Always insert an identity map as well. If we see this same new
136 node again, we won't want to duplicate it a second time. */
138 splay_tree_insert (id
->decl_map
, (splay_tree_key
) value
,
139 (splay_tree_value
) value
);
142 /* Remap DECL during the copying of the BLOCK tree for the function. */
145 remap_decl (tree decl
, copy_body_data
*id
)
150 /* We only remap local variables in the current function. */
153 /* See if we have remapped this declaration. */
155 n
= splay_tree_lookup (id
->decl_map
, (splay_tree_key
) decl
);
157 /* If we didn't already have an equivalent for this declaration,
161 /* Make a copy of the variable or label. */
162 tree t
= id
->copy_decl (decl
, id
);
164 /* Remember it, so that if we encounter this local entity again
165 we can reuse this copy. Do this early because remap_type may
166 need this decl for TYPE_STUB_DECL. */
167 insert_decl_map (id
, decl
, t
);
172 /* Remap types, if necessary. */
173 TREE_TYPE (t
) = remap_type (TREE_TYPE (t
), id
);
174 if (TREE_CODE (t
) == TYPE_DECL
)
175 DECL_ORIGINAL_TYPE (t
) = remap_type (DECL_ORIGINAL_TYPE (t
), id
);
177 /* Remap sizes as necessary. */
178 walk_tree (&DECL_SIZE (t
), copy_body_r
, id
, NULL
);
179 walk_tree (&DECL_SIZE_UNIT (t
), copy_body_r
, id
, NULL
);
181 /* If fields, do likewise for offset and qualifier. */
182 if (TREE_CODE (t
) == FIELD_DECL
)
184 walk_tree (&DECL_FIELD_OFFSET (t
), copy_body_r
, id
, NULL
);
185 if (TREE_CODE (DECL_CONTEXT (t
)) == QUAL_UNION_TYPE
)
186 walk_tree (&DECL_QUALIFIER (t
), copy_body_r
, id
, NULL
);
192 return unshare_expr ((tree
) n
->value
);
196 remap_type_1 (tree type
, copy_body_data
*id
)
198 splay_tree_node node
;
204 /* See if we have remapped this type. */
205 node
= splay_tree_lookup (id
->decl_map
, (splay_tree_key
) type
);
207 return (tree
) node
->value
;
209 /* The type only needs remapping if it's variably modified. */
210 if (! variably_modified_type_p (type
, id
->src_fn
))
212 insert_decl_map (id
, type
, type
);
216 /* We do need a copy. build and register it now. If this is a pointer or
217 reference type, remap the designated type and make a new pointer or
219 if (TREE_CODE (type
) == POINTER_TYPE
)
221 new = build_pointer_type_for_mode (remap_type (TREE_TYPE (type
), id
),
223 TYPE_REF_CAN_ALIAS_ALL (type
));
224 insert_decl_map (id
, type
, new);
227 else if (TREE_CODE (type
) == REFERENCE_TYPE
)
229 new = build_reference_type_for_mode (remap_type (TREE_TYPE (type
), id
),
231 TYPE_REF_CAN_ALIAS_ALL (type
));
232 insert_decl_map (id
, type
, new);
236 new = copy_node (type
);
238 insert_decl_map (id
, type
, new);
240 /* This is a new type, not a copy of an old type. Need to reassociate
241 variants. We can handle everything except the main variant lazily. */
242 t
= TYPE_MAIN_VARIANT (type
);
245 t
= remap_type (t
, id
);
246 TYPE_MAIN_VARIANT (new) = t
;
247 TYPE_NEXT_VARIANT (new) = TYPE_MAIN_VARIANT (t
);
248 TYPE_NEXT_VARIANT (t
) = new;
252 TYPE_MAIN_VARIANT (new) = new;
253 TYPE_NEXT_VARIANT (new) = NULL
;
256 if (TYPE_STUB_DECL (type
))
257 TYPE_STUB_DECL (new) = remap_decl (TYPE_STUB_DECL (type
), id
);
259 /* Lazily create pointer and reference types. */
260 TYPE_POINTER_TO (new) = NULL
;
261 TYPE_REFERENCE_TO (new) = NULL
;
263 switch (TREE_CODE (new))
269 t
= TYPE_MIN_VALUE (new);
270 if (t
&& TREE_CODE (t
) != INTEGER_CST
)
271 walk_tree (&TYPE_MIN_VALUE (new), copy_body_r
, id
, NULL
);
273 t
= TYPE_MAX_VALUE (new);
274 if (t
&& TREE_CODE (t
) != INTEGER_CST
)
275 walk_tree (&TYPE_MAX_VALUE (new), copy_body_r
, id
, NULL
);
279 TREE_TYPE (new) = remap_type (TREE_TYPE (new), id
);
280 walk_tree (&TYPE_ARG_TYPES (new), copy_body_r
, id
, NULL
);
284 TREE_TYPE (new) = remap_type (TREE_TYPE (new), id
);
285 TYPE_DOMAIN (new) = remap_type (TYPE_DOMAIN (new), id
);
290 case QUAL_UNION_TYPE
:
294 for (f
= TYPE_FIELDS (new); f
; f
= TREE_CHAIN (f
))
296 t
= remap_decl (f
, id
);
297 DECL_CONTEXT (t
) = new;
301 TYPE_FIELDS (new) = nreverse (nf
);
307 /* Shouldn't have been thought variable sized. */
311 walk_tree (&TYPE_SIZE (new), copy_body_r
, id
, NULL
);
312 walk_tree (&TYPE_SIZE_UNIT (new), copy_body_r
, id
, NULL
);
318 remap_type (tree type
, copy_body_data
*id
)
320 splay_tree_node node
;
325 /* See if we have remapped this type. */
326 node
= splay_tree_lookup (id
->decl_map
, (splay_tree_key
) type
);
328 return (tree
) node
->value
;
330 /* The type only needs remapping if it's variably modified. */
331 if (! variably_modified_type_p (type
, id
->src_fn
))
333 insert_decl_map (id
, type
, type
);
337 return remap_type_1 (type
, id
);
341 remap_decls (tree decls
, copy_body_data
*id
)
344 tree new_decls
= NULL_TREE
;
346 /* Remap its variables. */
347 for (old_var
= decls
; old_var
; old_var
= TREE_CHAIN (old_var
))
351 /* We can not chain the local static declarations into the unexpanded_var_list
352 as we can't duplicate them or break one decl rule. Go ahead and link
353 them into unexpanded_var_list. */
354 if (!lang_hooks
.tree_inlining
.auto_var_in_fn_p (old_var
, id
->src_fn
)
355 && !DECL_EXTERNAL (old_var
))
357 cfun
->unexpanded_var_list
= tree_cons (NULL_TREE
, old_var
,
358 cfun
->unexpanded_var_list
);
362 /* Remap the variable. */
363 new_var
= remap_decl (old_var
, id
);
365 /* If we didn't remap this variable, so we can't mess with its
366 TREE_CHAIN. If we remapped this variable to the return slot, it's
367 already declared somewhere else, so don't declare it here. */
368 if (!new_var
|| new_var
== id
->retvar
)
372 gcc_assert (DECL_P (new_var
));
373 TREE_CHAIN (new_var
) = new_decls
;
378 return nreverse (new_decls
);
381 /* Copy the BLOCK to contain remapped versions of the variables
382 therein. And hook the new block into the block-tree. */
385 remap_block (tree
*block
, copy_body_data
*id
)
391 /* Make the new block. */
393 new_block
= make_node (BLOCK
);
394 TREE_USED (new_block
) = TREE_USED (old_block
);
395 BLOCK_ABSTRACT_ORIGIN (new_block
) = old_block
;
396 BLOCK_SOURCE_LOCATION (new_block
) = BLOCK_SOURCE_LOCATION (old_block
);
399 /* Remap its variables. */
400 BLOCK_VARS (new_block
) = remap_decls (BLOCK_VARS (old_block
), id
);
404 if (id
->transform_lang_insert_block
)
405 lang_hooks
.decls
.insert_block (new_block
);
407 /* Remember the remapped block. */
408 insert_decl_map (id
, old_block
, new_block
);
411 /* Copy the whole block tree and root it in id->block. */
413 remap_blocks (tree block
, copy_body_data
*id
)
421 remap_block (&new, id
);
422 gcc_assert (new != block
);
423 for (t
= BLOCK_SUBBLOCKS (block
); t
; t
= BLOCK_CHAIN (t
))
424 add_lexical_block (new, remap_blocks (t
, id
));
429 copy_statement_list (tree
*tp
)
431 tree_stmt_iterator oi
, ni
;
434 new = alloc_stmt_list ();
435 ni
= tsi_start (new);
436 oi
= tsi_start (*tp
);
439 for (; !tsi_end_p (oi
); tsi_next (&oi
))
440 tsi_link_after (&ni
, tsi_stmt (oi
), TSI_NEW_STMT
);
444 copy_bind_expr (tree
*tp
, int *walk_subtrees
, copy_body_data
*id
)
446 tree block
= BIND_EXPR_BLOCK (*tp
);
447 /* Copy (and replace) the statement. */
448 copy_tree_r (tp
, walk_subtrees
, NULL
);
451 remap_block (&block
, id
);
452 BIND_EXPR_BLOCK (*tp
) = block
;
455 if (BIND_EXPR_VARS (*tp
))
456 /* This will remap a lot of the same decls again, but this should be
458 BIND_EXPR_VARS (*tp
) = remap_decls (BIND_EXPR_VARS (*tp
), id
);
461 /* Called from copy_body_id via walk_tree. DATA is really an
462 `copy_body_data *'. */
465 copy_body_r (tree
*tp
, int *walk_subtrees
, void *data
)
467 copy_body_data
*id
= (copy_body_data
*) data
;
468 tree fn
= id
->src_fn
;
471 /* Begin by recognizing trees that we'll completely rewrite for the
472 inlining context. Our output for these trees is completely
473 different from out input (e.g. RETURN_EXPR is deleted, and morphs
474 into an edge). Further down, we'll handle trees that get
475 duplicated and/or tweaked. */
477 /* When requested, RETURN_EXPRs should be transformed to just the
478 contained MODIFY_EXPR. The branch semantics of the return will
479 be handled elsewhere by manipulating the CFG rather than a statement. */
480 if (TREE_CODE (*tp
) == RETURN_EXPR
&& id
->transform_return_to_modify
)
482 tree assignment
= TREE_OPERAND (*tp
, 0);
484 /* If we're returning something, just turn that into an
485 assignment into the equivalent of the original RESULT_DECL.
486 If the "assignment" is just the result decl, the result
487 decl has already been set (e.g. a recent "foo (&result_decl,
488 ...)"); just toss the entire RETURN_EXPR. */
489 if (assignment
&& TREE_CODE (assignment
) == MODIFY_EXPR
)
491 /* Replace the RETURN_EXPR with (a copy of) the
492 MODIFY_EXPR hanging underneath. */
493 *tp
= copy_node (assignment
);
495 else /* Else the RETURN_EXPR returns no value. */
498 return (tree
) (void *)1;
502 /* Local variables and labels need to be replaced by equivalent
503 variables. We don't want to copy static variables; there's only
504 one of those, no matter how many times we inline the containing
505 function. Similarly for globals from an outer function. */
506 else if (lang_hooks
.tree_inlining
.auto_var_in_fn_p (*tp
, fn
))
510 /* Remap the declaration. */
511 new_decl
= remap_decl (*tp
, id
);
512 gcc_assert (new_decl
);
513 /* Replace this variable with the copy. */
514 STRIP_TYPE_NOPS (new_decl
);
518 else if (TREE_CODE (*tp
) == STATEMENT_LIST
)
519 copy_statement_list (tp
);
520 else if (TREE_CODE (*tp
) == SAVE_EXPR
)
521 remap_save_expr (tp
, id
->decl_map
, walk_subtrees
);
522 else if (TREE_CODE (*tp
) == LABEL_DECL
523 && (! DECL_CONTEXT (*tp
)
524 || decl_function_context (*tp
) == id
->src_fn
))
525 /* These may need to be remapped for EH handling. */
526 *tp
= remap_decl (*tp
, id
);
527 else if (TREE_CODE (*tp
) == BIND_EXPR
)
528 copy_bind_expr (tp
, walk_subtrees
, id
);
529 /* Types may need remapping as well. */
530 else if (TYPE_P (*tp
))
531 *tp
= remap_type (*tp
, id
);
533 /* If this is a constant, we have to copy the node iff the type will be
534 remapped. copy_tree_r will not copy a constant. */
535 else if (CONSTANT_CLASS_P (*tp
))
537 tree new_type
= remap_type (TREE_TYPE (*tp
), id
);
539 if (new_type
== TREE_TYPE (*tp
))
542 else if (TREE_CODE (*tp
) == INTEGER_CST
)
543 *tp
= build_int_cst_wide (new_type
, TREE_INT_CST_LOW (*tp
),
544 TREE_INT_CST_HIGH (*tp
));
547 *tp
= copy_node (*tp
);
548 TREE_TYPE (*tp
) = new_type
;
552 /* Otherwise, just copy the node. Note that copy_tree_r already
553 knows not to copy VAR_DECLs, etc., so this is safe. */
556 /* Here we handle trees that are not completely rewritten.
557 First we detect some inlining-induced bogosities for
559 if (TREE_CODE (*tp
) == MODIFY_EXPR
560 && TREE_OPERAND (*tp
, 0) == TREE_OPERAND (*tp
, 1)
561 && (lang_hooks
.tree_inlining
.auto_var_in_fn_p
562 (TREE_OPERAND (*tp
, 0), fn
)))
564 /* Some assignments VAR = VAR; don't generate any rtl code
565 and thus don't count as variable modification. Avoid
566 keeping bogosities like 0 = 0. */
567 tree decl
= TREE_OPERAND (*tp
, 0), value
;
570 n
= splay_tree_lookup (id
->decl_map
, (splay_tree_key
) decl
);
573 value
= (tree
) n
->value
;
574 STRIP_TYPE_NOPS (value
);
575 if (TREE_CONSTANT (value
) || TREE_READONLY_DECL_P (value
))
577 *tp
= build_empty_stmt ();
578 return copy_body_r (tp
, walk_subtrees
, data
);
582 else if (TREE_CODE (*tp
) == INDIRECT_REF
)
584 /* Get rid of *& from inline substitutions that can happen when a
585 pointer argument is an ADDR_EXPR. */
586 tree decl
= TREE_OPERAND (*tp
, 0);
589 n
= splay_tree_lookup (id
->decl_map
, (splay_tree_key
) decl
);
594 /* If we happen to get an ADDR_EXPR in n->value, strip
595 it manually here as we'll eventually get ADDR_EXPRs
596 which lie about their types pointed to. In this case
597 build_fold_indirect_ref wouldn't strip the INDIRECT_REF,
598 but we absolutely rely on that. As fold_indirect_ref
599 does other useful transformations, try that first, though. */
600 tree type
= TREE_TYPE (TREE_TYPE ((tree
)n
->value
));
601 new = unshare_expr ((tree
)n
->value
);
603 *tp
= fold_indirect_ref_1 (type
, new);
606 if (TREE_CODE (new) == ADDR_EXPR
)
607 *tp
= TREE_OPERAND (new, 0);
610 *tp
= build1 (INDIRECT_REF
, type
, new);
611 TREE_THIS_VOLATILE (*tp
) = TREE_THIS_VOLATILE (old
);
619 /* Here is the "usual case". Copy this tree node, and then
620 tweak some special cases. */
621 copy_tree_r (tp
, walk_subtrees
, NULL
);
623 /* If EXPR has block defined, map it to newly constructed block.
624 When inlining we want EXPRs without block appear in the block
626 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (TREE_CODE (*tp
))))
628 new_block
= id
->block
;
629 if (TREE_BLOCK (*tp
))
632 n
= splay_tree_lookup (id
->decl_map
,
633 (splay_tree_key
) TREE_BLOCK (*tp
));
635 new_block
= (tree
) n
->value
;
637 TREE_BLOCK (*tp
) = new_block
;
640 if (TREE_CODE (*tp
) == RESX_EXPR
&& id
->eh_region_offset
)
641 TREE_OPERAND (*tp
, 0) =
644 id
->eh_region_offset
+ TREE_INT_CST_LOW (TREE_OPERAND (*tp
, 0)));
646 TREE_TYPE (*tp
) = remap_type (TREE_TYPE (*tp
), id
);
648 /* The copied TARGET_EXPR has never been expanded, even if the
649 original node was expanded already. */
650 if (TREE_CODE (*tp
) == TARGET_EXPR
&& TREE_OPERAND (*tp
, 3))
652 TREE_OPERAND (*tp
, 1) = TREE_OPERAND (*tp
, 3);
653 TREE_OPERAND (*tp
, 3) = NULL_TREE
;
656 /* Variable substitution need not be simple. In particular, the
657 INDIRECT_REF substitution above. Make sure that TREE_CONSTANT
658 and friends are up-to-date. */
659 else if (TREE_CODE (*tp
) == ADDR_EXPR
)
661 walk_tree (&TREE_OPERAND (*tp
, 0), copy_body_r
, id
, NULL
);
662 recompute_tree_invariant_for_addr_expr (*tp
);
667 /* Keep iterating. */
671 /* Copy basic block, scale profile accordingly. Edges will be taken care of
675 copy_bb (copy_body_data
*id
, basic_block bb
, int frequency_scale
, int count_scale
)
677 block_stmt_iterator bsi
, copy_bsi
;
678 basic_block copy_basic_block
;
680 /* create_basic_block() will append every new block to
681 basic_block_info automatically. */
682 copy_basic_block
= create_basic_block (NULL
, (void *) 0,
683 (basic_block
) bb
->prev_bb
->aux
);
684 copy_basic_block
->count
= bb
->count
* count_scale
/ REG_BR_PROB_BASE
;
685 copy_basic_block
->frequency
= (bb
->frequency
686 * frequency_scale
/ REG_BR_PROB_BASE
);
687 copy_bsi
= bsi_start (copy_basic_block
);
689 for (bsi
= bsi_start (bb
);
690 !bsi_end_p (bsi
); bsi_next (&bsi
))
692 tree stmt
= bsi_stmt (bsi
);
693 tree orig_stmt
= stmt
;
695 walk_tree (&stmt
, copy_body_r
, id
, NULL
);
697 /* RETURN_EXPR might be removed,
698 this is signalled by making stmt pointer NULL. */
702 bsi_insert_after (©_bsi
, stmt
, BSI_NEW_STMT
);
703 call
= get_call_expr_in (stmt
);
704 /* We're duplicating a CALL_EXPR. Find any corresponding
705 callgraph edges and update or duplicate them. */
706 if (call
&& (decl
= get_callee_fndecl (call
)))
708 struct cgraph_node
*node
;
709 struct cgraph_edge
*edge
;
711 switch (id
->transform_call_graph_edges
)
713 case CB_CGE_DUPLICATE
:
714 edge
= cgraph_edge (id
->src_node
, orig_stmt
);
716 cgraph_clone_edge (edge
, id
->dst_node
, stmt
,
717 REG_BR_PROB_BASE
, 1, true);
720 case CB_CGE_MOVE_CLONES
:
721 for (node
= id
->dst_node
->next_clone
;
723 node
= node
->next_clone
)
725 edge
= cgraph_edge (node
, orig_stmt
);
727 edge
->call_stmt
= stmt
;
732 edge
= cgraph_edge (id
->dst_node
, orig_stmt
);
734 edge
->call_stmt
= stmt
;
741 /* If you think we can abort here, you are wrong.
742 There is no region 0 in tree land. */
743 gcc_assert (lookup_stmt_eh_region_fn (id
->src_cfun
, orig_stmt
)
746 if (tree_could_throw_p (stmt
))
748 int region
= lookup_stmt_eh_region_fn (id
->src_cfun
, orig_stmt
);
749 /* Add an entry for the copied tree in the EH hashtable.
750 When cloning or versioning, use the hashtable in
751 cfun, and just copy the EH number. When inlining, use the
752 hashtable in the caller, and adjust the region number. */
754 add_stmt_to_eh_region (stmt
, region
+ id
->eh_region_offset
);
756 /* If this tree doesn't have a region associated with it,
757 and there is a "current region,"
758 then associate this tree with the current region
759 and add edges associated with this region. */
760 if ((lookup_stmt_eh_region_fn (id
->src_cfun
,
762 && id
->eh_region
> 0)
763 && tree_could_throw_p (stmt
))
764 add_stmt_to_eh_region (stmt
, id
->eh_region
);
768 return copy_basic_block
;
771 /* Copy edges from BB into its copy constructed earlier, scale profile
772 accordingly. Edges will be taken care of later. Assume aux
773 pointers to point to the copies of each BB. */
775 copy_edges_for_bb (basic_block bb
, int count_scale
)
777 basic_block new_bb
= (basic_block
) bb
->aux
;
780 block_stmt_iterator bsi
;
783 /* Use the indices from the original blocks to create edges for the
785 FOR_EACH_EDGE (old_edge
, ei
, bb
->succs
)
786 if (!(old_edge
->flags
& EDGE_EH
))
790 flags
= old_edge
->flags
;
792 /* Return edges do get a FALLTHRU flag when the get inlined. */
793 if (old_edge
->dest
->index
== EXIT_BLOCK
&& !old_edge
->flags
794 && old_edge
->dest
->aux
!= EXIT_BLOCK_PTR
)
795 flags
|= EDGE_FALLTHRU
;
796 new = make_edge (new_bb
, (basic_block
) old_edge
->dest
->aux
, flags
);
797 new->count
= old_edge
->count
* count_scale
/ REG_BR_PROB_BASE
;
798 new->probability
= old_edge
->probability
;
801 if (bb
->index
== ENTRY_BLOCK
|| bb
->index
== EXIT_BLOCK
)
804 for (bsi
= bsi_start (new_bb
); !bsi_end_p (bsi
);)
808 copy_stmt
= bsi_stmt (bsi
);
809 update_stmt (copy_stmt
);
810 /* Do this before the possible split_block. */
813 /* If this tree could throw an exception, there are two
814 cases where we need to add abnormal edge(s): the
815 tree wasn't in a region and there is a "current
816 region" in the caller; or the original tree had
817 EH edges. In both cases split the block after the tree,
818 and add abnormal edge(s) as needed; we need both
819 those from the callee and the caller.
820 We check whether the copy can throw, because the const
821 propagation can change an INDIRECT_REF which throws
822 into a COMPONENT_REF which doesn't. If the copy
823 can throw, the original could also throw. */
825 if (tree_can_throw_internal (copy_stmt
))
827 if (!bsi_end_p (bsi
))
828 /* Note that bb's predecessor edges aren't necessarily
829 right at this point; split_block doesn't care. */
831 edge e
= split_block (new_bb
, copy_stmt
);
833 bsi
= bsi_start (new_bb
);
836 make_eh_edges (copy_stmt
);
841 /* Wrapper for remap_decl so it can be used as a callback. */
843 remap_decl_1 (tree decl
, void *data
)
845 return remap_decl (decl
, (copy_body_data
*) data
);
848 /* Make a copy of the body of FN so that it can be inserted inline in
849 another function. Walks FN via CFG, returns new fndecl. */
852 copy_cfg_body (copy_body_data
* id
, gcov_type count
, int frequency
,
853 basic_block entry_block_map
, basic_block exit_block_map
)
855 tree callee_fndecl
= id
->src_fn
;
856 /* Original cfun for the callee, doesn't change. */
857 struct function
*src_cfun
= DECL_STRUCT_FUNCTION (callee_fndecl
);
858 /* Copy, built by this function. */
859 struct function
*new_cfun
;
860 /* Place to copy from; when a copy of the function was saved off earlier,
861 use that instead of the main copy. */
862 struct function
*cfun_to_copy
=
863 (struct function
*) ggc_alloc_cleared (sizeof (struct function
));
865 tree new_fndecl
= NULL
;
866 int count_scale
, frequency_scale
;
868 if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun
)->count
)
869 count_scale
= (REG_BR_PROB_BASE
* count
870 / ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun
)->count
);
874 if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun
)->frequency
)
875 frequency_scale
= (REG_BR_PROB_BASE
* frequency
877 ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun
)->frequency
);
879 frequency_scale
= count_scale
;
881 /* Register specific tree functions. */
882 tree_register_cfg_hooks ();
884 /* Must have a CFG here at this point. */
885 gcc_assert (ENTRY_BLOCK_PTR_FOR_FUNCTION
886 (DECL_STRUCT_FUNCTION (callee_fndecl
)));
888 *cfun_to_copy
= *DECL_STRUCT_FUNCTION (callee_fndecl
);
890 id
->src_cfun
= cfun_to_copy
;
892 /* If requested, create new basic_block_info and label_to_block_maps.
893 Otherwise, insert our new blocks and labels into the existing cfg. */
894 if (id
->transform_new_cfg
)
897 (struct function
*) ggc_alloc_cleared (sizeof (struct function
));
898 *new_cfun
= *DECL_STRUCT_FUNCTION (callee_fndecl
);
899 new_cfun
->cfg
= NULL
;
900 new_cfun
->decl
= new_fndecl
= copy_node (callee_fndecl
);
901 new_cfun
->ib_boundaries_block
= NULL
;
902 DECL_STRUCT_FUNCTION (new_fndecl
) = new_cfun
;
903 push_cfun (new_cfun
);
904 init_empty_tree_cfg ();
906 ENTRY_BLOCK_PTR
->count
=
907 (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun
)->count
* count_scale
/
909 ENTRY_BLOCK_PTR
->frequency
=
910 (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun
)->frequency
*
911 frequency_scale
/ REG_BR_PROB_BASE
);
912 EXIT_BLOCK_PTR
->count
=
913 (EXIT_BLOCK_PTR_FOR_FUNCTION (src_cfun
)->count
* count_scale
/
915 EXIT_BLOCK_PTR
->frequency
=
916 (EXIT_BLOCK_PTR_FOR_FUNCTION (src_cfun
)->frequency
*
917 frequency_scale
/ REG_BR_PROB_BASE
);
919 entry_block_map
= ENTRY_BLOCK_PTR
;
920 exit_block_map
= EXIT_BLOCK_PTR
;
923 ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy
)->aux
= entry_block_map
;
924 EXIT_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy
)->aux
= exit_block_map
;
926 /* Duplicate any exception-handling regions. */
929 if (id
->transform_new_cfg
)
930 init_eh_for_function ();
932 = duplicate_eh_regions (cfun_to_copy
, remap_decl_1
, id
,
935 /* Use aux pointers to map the original blocks to copy. */
936 FOR_EACH_BB_FN (bb
, cfun_to_copy
)
937 bb
->aux
= copy_bb (id
, bb
, frequency_scale
, count_scale
);
938 /* Now that we've duplicated the blocks, duplicate their edges. */
939 FOR_ALL_BB_FN (bb
, cfun_to_copy
)
940 copy_edges_for_bb (bb
, count_scale
);
941 FOR_ALL_BB_FN (bb
, cfun_to_copy
)
944 if (id
->transform_new_cfg
)
950 /* Make a copy of the body of FN so that it can be inserted inline in
954 copy_generic_body (copy_body_data
*id
)
957 tree fndecl
= id
->src_fn
;
959 body
= DECL_SAVED_TREE (fndecl
);
960 walk_tree (&body
, copy_body_r
, id
, NULL
);
966 copy_body (copy_body_data
*id
, gcov_type count
, int frequency
,
967 basic_block entry_block_map
, basic_block exit_block_map
)
969 tree fndecl
= id
->src_fn
;
972 /* If this body has a CFG, walk CFG and copy. */
973 gcc_assert (ENTRY_BLOCK_PTR_FOR_FUNCTION (DECL_STRUCT_FUNCTION (fndecl
)));
974 body
= copy_cfg_body (id
, count
, frequency
, entry_block_map
, exit_block_map
);
979 /* Return true if VALUE is an ADDR_EXPR of an automatic variable
980 defined in function FN, or of a data member thereof. */
983 self_inlining_addr_expr (tree value
, tree fn
)
987 if (TREE_CODE (value
) != ADDR_EXPR
)
990 var
= get_base_address (TREE_OPERAND (value
, 0));
992 return var
&& lang_hooks
.tree_inlining
.auto_var_in_fn_p (var
, fn
);
996 setup_one_parameter (copy_body_data
*id
, tree p
, tree value
, tree fn
,
997 basic_block bb
, tree
*vars
)
1003 /* If the parameter is never assigned to, we may not need to
1004 create a new variable here at all. Instead, we may be able
1005 to just use the argument value. */
1006 if (TREE_READONLY (p
)
1007 && !TREE_ADDRESSABLE (p
)
1008 && value
&& !TREE_SIDE_EFFECTS (value
))
1010 /* We may produce non-gimple trees by adding NOPs or introduce
1011 invalid sharing when operand is not really constant.
1012 It is not big deal to prohibit constant propagation here as
1013 we will constant propagate in DOM1 pass anyway. */
1014 if (is_gimple_min_invariant (value
)
1015 && lang_hooks
.types_compatible_p (TREE_TYPE (value
), TREE_TYPE (p
))
1016 /* We have to be very careful about ADDR_EXPR. Make sure
1017 the base variable isn't a local variable of the inlined
1018 function, e.g., when doing recursive inlining, direct or
1019 mutually-recursive or whatever, which is why we don't
1020 just test whether fn == current_function_decl. */
1021 && ! self_inlining_addr_expr (value
, fn
))
1023 insert_decl_map (id
, p
, value
);
1028 /* Make an equivalent VAR_DECL. Note that we must NOT remap the type
1029 here since the type of this decl must be visible to the calling
1031 var
= copy_decl_to_var (p
, id
);
1033 /* See if the frontend wants to pass this by invisible reference. If
1034 so, our new VAR_DECL will have REFERENCE_TYPE, and we need to
1035 replace uses of the PARM_DECL with dereferences. */
1036 if (TREE_TYPE (var
) != TREE_TYPE (p
)
1037 && POINTER_TYPE_P (TREE_TYPE (var
))
1038 && TREE_TYPE (TREE_TYPE (var
)) == TREE_TYPE (p
))
1040 insert_decl_map (id
, var
, var
);
1041 var_sub
= build_fold_indirect_ref (var
);
1046 /* Register the VAR_DECL as the equivalent for the PARM_DECL;
1047 that way, when the PARM_DECL is encountered, it will be
1048 automatically replaced by the VAR_DECL. */
1049 insert_decl_map (id
, p
, var_sub
);
1051 /* Declare this new variable. */
1052 TREE_CHAIN (var
) = *vars
;
1055 /* Make gimplifier happy about this variable. */
1056 DECL_SEEN_IN_BIND_EXPR_P (var
) = 1;
1058 /* Even if P was TREE_READONLY, the new VAR should not be.
1059 In the original code, we would have constructed a
1060 temporary, and then the function body would have never
1061 changed the value of P. However, now, we will be
1062 constructing VAR directly. The constructor body may
1063 change its value multiple times as it is being
1064 constructed. Therefore, it must not be TREE_READONLY;
1065 the back-end assumes that TREE_READONLY variable is
1066 assigned to only once. */
1067 if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (p
)))
1068 TREE_READONLY (var
) = 0;
1070 /* Initialize this VAR_DECL from the equivalent argument. Convert
1071 the argument to the proper type in case it was promoted. */
1074 tree rhs
= fold_convert (TREE_TYPE (var
), value
);
1075 block_stmt_iterator bsi
= bsi_last (bb
);
1077 if (rhs
== error_mark_node
)
1080 /* We want to use MODIFY_EXPR, not INIT_EXPR here so that we
1081 keep our trees in gimple form. */
1082 init_stmt
= build2 (MODIFY_EXPR
, TREE_TYPE (var
), var
, rhs
);
1084 /* If we did not create a gimple value and we did not create a gimple
1085 cast of a gimple value, then we will need to gimplify INIT_STMTS
1086 at the end. Note that is_gimple_cast only checks the outer
1087 tree code, not its operand. Thus the explicit check that its
1088 operand is a gimple value. */
1089 if (!is_gimple_val (rhs
)
1090 && (!is_gimple_cast (rhs
)
1091 || !is_gimple_val (TREE_OPERAND (rhs
, 0))))
1092 gimplify_stmt (&init_stmt
);
1094 /* If VAR represents a zero-sized variable, it's possible that the
1095 assignment statment may result in no gimple statements. */
1097 bsi_insert_after (&bsi
, init_stmt
, BSI_NEW_STMT
);
1101 /* Generate code to initialize the parameters of the function at the
1102 top of the stack in ID from the ARGS (presented as a TREE_LIST). */
1105 initialize_inlined_parameters (copy_body_data
*id
, tree args
, tree static_chain
,
1106 tree fn
, basic_block bb
)
1111 tree vars
= NULL_TREE
;
1114 /* Figure out what the parameters are. */
1115 parms
= DECL_ARGUMENTS (fn
);
1117 /* Loop through the parameter declarations, replacing each with an
1118 equivalent VAR_DECL, appropriately initialized. */
1119 for (p
= parms
, a
= args
; p
;
1120 a
= a
? TREE_CHAIN (a
) : a
, p
= TREE_CHAIN (p
))
1126 /* Find the initializer. */
1127 value
= lang_hooks
.tree_inlining
.convert_parm_for_inlining
1128 (p
, a
? TREE_VALUE (a
) : NULL_TREE
, fn
, argnum
);
1130 setup_one_parameter (id
, p
, value
, fn
, bb
, &vars
);
1133 /* Initialize the static chain. */
1134 p
= DECL_STRUCT_FUNCTION (fn
)->static_chain_decl
;
1135 gcc_assert (fn
!= current_function_decl
);
1138 /* No static chain? Seems like a bug in tree-nested.c. */
1139 gcc_assert (static_chain
);
1141 setup_one_parameter (id
, p
, static_chain
, fn
, bb
, &vars
);
1144 declare_inline_vars (id
->block
, vars
);
1147 /* Declare a return variable to replace the RESULT_DECL for the
1148 function we are calling. An appropriate DECL_STMT is returned.
1149 The USE_STMT is filled to contain a use of the declaration to
1150 indicate the return value of the function.
1152 RETURN_SLOT_ADDR, if non-null, was a fake parameter that
1153 took the address of the result. MODIFY_DEST, if non-null, was the LHS of
1154 the MODIFY_EXPR to which this call is the RHS.
1156 The return value is a (possibly null) value that is the result of the
1157 function as seen by the callee. *USE_P is a (possibly null) value that
1158 holds the result as seen by the caller. */
1161 declare_return_variable (copy_body_data
*id
, tree return_slot_addr
,
1162 tree modify_dest
, tree
*use_p
)
1164 tree callee
= id
->src_fn
;
1165 tree caller
= id
->dst_fn
;
1166 tree result
= DECL_RESULT (callee
);
1167 tree callee_type
= TREE_TYPE (result
);
1168 tree caller_type
= TREE_TYPE (TREE_TYPE (callee
));
1171 /* We don't need to do anything for functions that don't return
1173 if (!result
|| VOID_TYPE_P (callee_type
))
1179 /* If there was a return slot, then the return value is the
1180 dereferenced address of that object. */
1181 if (return_slot_addr
)
1183 /* The front end shouldn't have used both return_slot_addr and
1184 a modify expression. */
1185 gcc_assert (!modify_dest
);
1186 if (DECL_BY_REFERENCE (result
))
1187 var
= return_slot_addr
;
1189 var
= build_fold_indirect_ref (return_slot_addr
);
1190 if (TREE_CODE (TREE_TYPE (result
)) == COMPLEX_TYPE
1191 && !DECL_COMPLEX_GIMPLE_REG_P (result
)
1193 DECL_COMPLEX_GIMPLE_REG_P (var
) = 0;
1198 /* All types requiring non-trivial constructors should have been handled. */
1199 gcc_assert (!TREE_ADDRESSABLE (callee_type
));
1201 /* Attempt to avoid creating a new temporary variable. */
1204 bool use_it
= false;
1206 /* We can't use MODIFY_DEST if there's type promotion involved. */
1207 if (!lang_hooks
.types_compatible_p (caller_type
, callee_type
))
1210 /* ??? If we're assigning to a variable sized type, then we must
1211 reuse the destination variable, because we've no good way to
1212 create variable sized temporaries at this point. */
1213 else if (TREE_CODE (TYPE_SIZE_UNIT (caller_type
)) != INTEGER_CST
)
1216 /* If the callee cannot possibly modify MODIFY_DEST, then we can
1217 reuse it as the result of the call directly. Don't do this if
1218 it would promote MODIFY_DEST to addressable. */
1219 else if (TREE_ADDRESSABLE (result
))
1223 tree base_m
= get_base_address (modify_dest
);
1225 /* If the base isn't a decl, then it's a pointer, and we don't
1226 know where that's going to go. */
1227 if (!DECL_P (base_m
))
1229 else if (is_global_var (base_m
))
1231 else if (TREE_CODE (TREE_TYPE (result
)) == COMPLEX_TYPE
1232 && !DECL_COMPLEX_GIMPLE_REG_P (result
)
1233 && DECL_COMPLEX_GIMPLE_REG_P (base_m
))
1235 else if (!TREE_ADDRESSABLE (base_m
))
1247 gcc_assert (TREE_CODE (TYPE_SIZE_UNIT (callee_type
)) == INTEGER_CST
);
1249 var
= copy_decl_to_var (result
, id
);
1251 DECL_SEEN_IN_BIND_EXPR_P (var
) = 1;
1252 DECL_STRUCT_FUNCTION (caller
)->unexpanded_var_list
1253 = tree_cons (NULL_TREE
, var
,
1254 DECL_STRUCT_FUNCTION (caller
)->unexpanded_var_list
);
1256 /* Do not have the rest of GCC warn about this variable as it should
1257 not be visible to the user. */
1258 TREE_NO_WARNING (var
) = 1;
1260 /* Build the use expr. If the return type of the function was
1261 promoted, convert it back to the expected type. */
1263 if (!lang_hooks
.types_compatible_p (TREE_TYPE (var
), caller_type
))
1264 use
= fold_convert (caller_type
, var
);
1267 /* Register the VAR_DECL as the equivalent for the RESULT_DECL; that
1268 way, when the RESULT_DECL is encountered, it will be
1269 automatically replaced by the VAR_DECL. */
1270 insert_decl_map (id
, result
, var
);
1272 /* Remember this so we can ignore it in remap_decls. */
1279 /* Returns nonzero if a function can be inlined as a tree. */
1282 tree_inlinable_function_p (tree fn
)
1284 return inlinable_function_p (fn
);
1287 static const char *inline_forbidden_reason
;
1290 inline_forbidden_p_1 (tree
*nodep
, int *walk_subtrees ATTRIBUTE_UNUSED
,
1294 tree fn
= (tree
) fnp
;
1297 switch (TREE_CODE (node
))
1300 /* Refuse to inline alloca call unless user explicitly forced so as
1301 this may change program's memory overhead drastically when the
1302 function using alloca is called in loop. In GCC present in
1303 SPEC2000 inlining into schedule_block cause it to require 2GB of
1304 RAM instead of 256MB. */
1305 if (alloca_call_p (node
)
1306 && !lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn
)))
1308 inline_forbidden_reason
1309 = G_("function %q+F can never be inlined because it uses "
1310 "alloca (override using the always_inline attribute)");
1313 t
= get_callee_fndecl (node
);
1317 /* We cannot inline functions that call setjmp. */
1318 if (setjmp_call_p (t
))
1320 inline_forbidden_reason
1321 = G_("function %q+F can never be inlined because it uses setjmp");
1325 if (DECL_BUILT_IN_CLASS (t
) == BUILT_IN_NORMAL
)
1326 switch (DECL_FUNCTION_CODE (t
))
1328 /* We cannot inline functions that take a variable number of
1330 case BUILT_IN_VA_START
:
1331 case BUILT_IN_STDARG_START
:
1332 case BUILT_IN_NEXT_ARG
:
1333 case BUILT_IN_VA_END
:
1334 inline_forbidden_reason
1335 = G_("function %q+F can never be inlined because it "
1336 "uses variable argument lists");
1339 case BUILT_IN_LONGJMP
:
1340 /* We can't inline functions that call __builtin_longjmp at
1341 all. The non-local goto machinery really requires the
1342 destination be in a different function. If we allow the
1343 function calling __builtin_longjmp to be inlined into the
1344 function calling __builtin_setjmp, Things will Go Awry. */
1345 inline_forbidden_reason
1346 = G_("function %q+F can never be inlined because "
1347 "it uses setjmp-longjmp exception handling");
1350 case BUILT_IN_NONLOCAL_GOTO
:
1352 inline_forbidden_reason
1353 = G_("function %q+F can never be inlined because "
1354 "it uses non-local goto");
1357 case BUILT_IN_RETURN
:
1358 case BUILT_IN_APPLY_ARGS
:
1359 /* If a __builtin_apply_args caller would be inlined,
1360 it would be saving arguments of the function it has
1361 been inlined into. Similarly __builtin_return would
1362 return from the function the inline has been inlined into. */
1363 inline_forbidden_reason
1364 = G_("function %q+F can never be inlined because "
1365 "it uses __builtin_return or __builtin_apply_args");
1374 t
= TREE_OPERAND (node
, 0);
1376 /* We will not inline a function which uses computed goto. The
1377 addresses of its local labels, which may be tucked into
1378 global storage, are of course not constant across
1379 instantiations, which causes unexpected behavior. */
1380 if (TREE_CODE (t
) != LABEL_DECL
)
1382 inline_forbidden_reason
1383 = G_("function %q+F can never be inlined "
1384 "because it contains a computed goto");
1390 t
= TREE_OPERAND (node
, 0);
1391 if (DECL_NONLOCAL (t
))
1393 /* We cannot inline a function that receives a non-local goto
1394 because we cannot remap the destination label used in the
1395 function that is performing the non-local goto. */
1396 inline_forbidden_reason
1397 = G_("function %q+F can never be inlined "
1398 "because it receives a non-local goto");
1405 /* We cannot inline a function of the form
1407 void F (int i) { struct S { int ar[i]; } s; }
1409 Attempting to do so produces a catch-22.
1410 If walk_tree examines the TYPE_FIELDS chain of RECORD_TYPE/
1411 UNION_TYPE nodes, then it goes into infinite recursion on a
1412 structure containing a pointer to its own type. If it doesn't,
1413 then the type node for S doesn't get adjusted properly when
1416 ??? This is likely no longer true, but it's too late in the 4.0
1417 cycle to try to find out. This should be checked for 4.1. */
1418 for (t
= TYPE_FIELDS (node
); t
; t
= TREE_CHAIN (t
))
1419 if (variably_modified_type_p (TREE_TYPE (t
), NULL
))
1421 inline_forbidden_reason
1422 = G_("function %q+F can never be inlined "
1423 "because it uses variable sized variables");
1434 /* Return subexpression representing possible alloca call, if any. */
1436 inline_forbidden_p (tree fndecl
)
1438 location_t saved_loc
= input_location
;
1439 block_stmt_iterator bsi
;
1441 tree ret
= NULL_TREE
;
1443 FOR_EACH_BB_FN (bb
, DECL_STRUCT_FUNCTION (fndecl
))
1444 for (bsi
= bsi_start (bb
); !bsi_end_p (bsi
); bsi_next (&bsi
))
1446 ret
= walk_tree_without_duplicates (bsi_stmt_ptr (bsi
),
1447 inline_forbidden_p_1
, fndecl
);
1453 input_location
= saved_loc
;
1457 /* Returns nonzero if FN is a function that does not have any
1458 fundamental inline blocking properties. */
1461 inlinable_function_p (tree fn
)
1463 bool inlinable
= true;
1465 /* If we've already decided this function shouldn't be inlined,
1466 there's no need to check again. */
1467 if (DECL_UNINLINABLE (fn
))
1470 /* See if there is any language-specific reason it cannot be
1471 inlined. (It is important that this hook be called early because
1472 in C++ it may result in template instantiation.)
1473 If the function is not inlinable for language-specific reasons,
1474 it is left up to the langhook to explain why. */
1475 inlinable
= !lang_hooks
.tree_inlining
.cannot_inline_tree_fn (&fn
);
1477 /* If we don't have the function body available, we can't inline it.
1478 However, this should not be recorded since we also get here for
1479 forward declared inline functions. Therefore, return at once. */
1480 if (!DECL_SAVED_TREE (fn
))
1483 /* If we're not inlining at all, then we cannot inline this function. */
1484 else if (!flag_inline_trees
)
1487 /* Only try to inline functions if DECL_INLINE is set. This should be
1488 true for all functions declared `inline', and for all other functions
1489 as well with -finline-functions.
1491 Don't think of disregarding DECL_INLINE when flag_inline_trees == 2;
1492 it's the front-end that must set DECL_INLINE in this case, because
1493 dwarf2out loses if a function that does not have DECL_INLINE set is
1494 inlined anyway. That is why we have both DECL_INLINE and
1495 DECL_DECLARED_INLINE_P. */
1496 /* FIXME: When flag_inline_trees dies, the check for flag_unit_at_a_time
1497 here should be redundant. */
1498 else if (!DECL_INLINE (fn
) && !flag_unit_at_a_time
)
1501 else if (inline_forbidden_p (fn
))
1503 /* See if we should warn about uninlinable functions. Previously,
1504 some of these warnings would be issued while trying to expand
1505 the function inline, but that would cause multiple warnings
1506 about functions that would for example call alloca. But since
1507 this a property of the function, just one warning is enough.
1508 As a bonus we can now give more details about the reason why a
1509 function is not inlinable.
1510 We only warn for functions declared `inline' by the user. */
1511 bool do_warning
= (warn_inline
1513 && DECL_DECLARED_INLINE_P (fn
)
1514 && !DECL_IN_SYSTEM_HEADER (fn
));
1516 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn
)))
1517 sorry (inline_forbidden_reason
, fn
);
1518 else if (do_warning
)
1519 warning (OPT_Winline
, inline_forbidden_reason
, fn
);
1524 /* Squirrel away the result so that we don't have to check again. */
1525 DECL_UNINLINABLE (fn
) = !inlinable
;
1530 /* Estimate the cost of a memory move. Use machine dependent
1531 word size and take possible memcpy call into account. */
1534 estimate_move_cost (tree type
)
1538 size
= int_size_in_bytes (type
);
1540 if (size
< 0 || size
> MOVE_MAX_PIECES
* MOVE_RATIO
)
1541 /* Cost of a memcpy call, 3 arguments and the call. */
1544 return ((size
+ MOVE_MAX_PIECES
- 1) / MOVE_MAX_PIECES
);
1547 /* Used by estimate_num_insns. Estimate number of instructions seen
1548 by given statement. */
1551 estimate_num_insns_1 (tree
*tp
, int *walk_subtrees
, void *data
)
1553 int *count
= (int *) data
;
1556 if (IS_TYPE_OR_DECL_P (x
))
1561 /* Assume that constants and references counts nothing. These should
1562 be majorized by amount of operations among them we count later
1563 and are common target of CSE and similar optimizations. */
1564 else if (CONSTANT_CLASS_P (x
) || REFERENCE_CLASS_P (x
))
1567 switch (TREE_CODE (x
))
1569 /* Containers have no cost. */
1576 case ALIGN_INDIRECT_REF
:
1577 case MISALIGNED_INDIRECT_REF
:
1579 case ARRAY_RANGE_REF
:
1581 case EXC_PTR_EXPR
: /* ??? */
1582 case FILTER_EXPR
: /* ??? */
1585 case WITH_CLEANUP_EXPR
:
1587 case VIEW_CONVERT_EXPR
:
1592 case CASE_LABEL_EXPR
:
1595 case EH_FILTER_EXPR
:
1596 case STATEMENT_LIST
:
1598 case NON_LVALUE_EXPR
:
1601 case TRY_CATCH_EXPR
:
1602 case TRY_FINALLY_EXPR
:
1609 case WITH_SIZE_EXPR
:
1615 /* We don't account constants for now. Assume that the cost is amortized
1616 by operations that do use them. We may re-consider this decision once
1617 we are able to optimize the tree before estimating its size and break
1618 out static initializers. */
1619 case IDENTIFIER_NODE
:
1628 /* Try to estimate the cost of assignments. We have three cases to
1630 1) Simple assignments to registers;
1631 2) Stores to things that must live in memory. This includes
1632 "normal" stores to scalars, but also assignments of large
1633 structures, or constructors of big arrays;
1636 Let us look at the first two cases, assuming we have "a = b + C":
1637 <modify_expr <var_decl "a"> <plus_expr <var_decl "b"> <constant C>>
1638 If "a" is a GIMPLE register, the assignment to it is free on almost
1639 any target, because "a" usually ends up in a real register. Hence
1640 the only cost of this expression comes from the PLUS_EXPR, and we
1641 can ignore the MODIFY_EXPR.
1642 If "a" is not a GIMPLE register, the assignment to "a" will most
1643 likely be a real store, so the cost of the MODIFY_EXPR is the cost
1644 of moving something into "a", which we compute using the function
1647 The third case deals with TARGET_EXPRs, for which the semantics are
1648 that a temporary is assigned, unless the TARGET_EXPR itself is being
1649 assigned to something else. In the latter case we do not need the
1650 temporary. E.g. in <modify_expr <var_decl "a"> <target_expr>>, the
1651 MODIFY_EXPR is free. */
1654 /* Is the right and side a TARGET_EXPR? */
1655 if (TREE_CODE (TREE_OPERAND (x
, 1)) == TARGET_EXPR
)
1657 /* ... fall through ... */
1660 x
= TREE_OPERAND (x
, 0);
1661 /* Is this an assignments to a register? */
1662 if (is_gimple_reg (x
))
1664 /* Otherwise it's a store, so fall through to compute the move cost. */
1667 *count
+= estimate_move_cost (TREE_TYPE (x
));
1670 /* Assign cost of 1 to usual operations.
1671 ??? We may consider mapping RTL costs to this. */
1679 case FIX_TRUNC_EXPR
:
1681 case FIX_FLOOR_EXPR
:
1682 case FIX_ROUND_EXPR
:
1694 case VEC_LSHIFT_EXPR
:
1695 case VEC_RSHIFT_EXPR
:
1702 case TRUTH_ANDIF_EXPR
:
1703 case TRUTH_ORIF_EXPR
:
1704 case TRUTH_AND_EXPR
:
1706 case TRUTH_XOR_EXPR
:
1707 case TRUTH_NOT_EXPR
:
1716 case UNORDERED_EXPR
:
1729 case PREDECREMENT_EXPR
:
1730 case PREINCREMENT_EXPR
:
1731 case POSTDECREMENT_EXPR
:
1732 case POSTINCREMENT_EXPR
:
1738 case REALIGN_LOAD_EXPR
:
1740 case REDUC_MAX_EXPR
:
1741 case REDUC_MIN_EXPR
:
1742 case REDUC_PLUS_EXPR
:
1743 case WIDEN_SUM_EXPR
:
1746 case WIDEN_MULT_EXPR
:
1752 /* Few special cases of expensive operations. This is useful
1753 to avoid inlining on functions having too many of these. */
1754 case TRUNC_DIV_EXPR
:
1756 case FLOOR_DIV_EXPR
:
1757 case ROUND_DIV_EXPR
:
1758 case EXACT_DIV_EXPR
:
1759 case TRUNC_MOD_EXPR
:
1761 case FLOOR_MOD_EXPR
:
1762 case ROUND_MOD_EXPR
:
1768 tree decl
= get_callee_fndecl (x
);
1771 if (decl
&& DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
)
1772 switch (DECL_FUNCTION_CODE (decl
))
1774 case BUILT_IN_CONSTANT_P
:
1777 case BUILT_IN_EXPECT
:
1783 /* Our cost must be kept in sync with cgraph_estimate_size_after_inlining
1784 that does use function declaration to figure out the arguments. */
1787 for (arg
= TREE_OPERAND (x
, 1); arg
; arg
= TREE_CHAIN (arg
))
1788 *count
+= estimate_move_cost (TREE_TYPE (TREE_VALUE (arg
)));
1792 for (arg
= DECL_ARGUMENTS (decl
); arg
; arg
= TREE_CHAIN (arg
))
1793 *count
+= estimate_move_cost (TREE_TYPE (arg
));
1796 *count
+= PARAM_VALUE (PARAM_INLINE_CALL_COST
);
1809 /* OpenMP directives are generally very expensive. */
1819 /* Estimate number of instructions that will be created by expanding EXPR. */
1822 estimate_num_insns (tree expr
)
1825 struct pointer_set_t
*visited_nodes
;
1827 block_stmt_iterator bsi
;
1828 struct function
*my_function
;
1830 /* If we're given an entire function, walk the CFG. */
1831 if (TREE_CODE (expr
) == FUNCTION_DECL
)
1833 my_function
= DECL_STRUCT_FUNCTION (expr
);
1834 gcc_assert (my_function
&& my_function
->cfg
);
1835 visited_nodes
= pointer_set_create ();
1836 FOR_EACH_BB_FN (bb
, my_function
)
1838 for (bsi
= bsi_start (bb
);
1842 walk_tree (bsi_stmt_ptr (bsi
), estimate_num_insns_1
,
1843 &num
, visited_nodes
);
1846 pointer_set_destroy (visited_nodes
);
1849 walk_tree_without_duplicates (&expr
, estimate_num_insns_1
, &num
);
1854 typedef struct function
*function_p
;
1856 DEF_VEC_P(function_p
);
1857 DEF_VEC_ALLOC_P(function_p
,heap
);
1859 /* Initialized with NOGC, making this poisonous to the garbage collector. */
1860 static VEC(function_p
,heap
) *cfun_stack
;
1863 push_cfun (struct function
*new_cfun
)
1865 VEC_safe_push (function_p
, heap
, cfun_stack
, cfun
);
1872 cfun
= VEC_pop (function_p
, cfun_stack
);
1875 /* Install new lexical TREE_BLOCK underneath 'current_block'. */
1877 add_lexical_block (tree current_block
, tree new_block
)
1881 /* Walk to the last sub-block. */
1882 for (blk_p
= &BLOCK_SUBBLOCKS (current_block
);
1884 blk_p
= &TREE_CHAIN (*blk_p
))
1887 BLOCK_SUPERCONTEXT (new_block
) = current_block
;
1890 /* If *TP is a CALL_EXPR, replace it with its inline expansion. */
1893 expand_call_inline (basic_block bb
, tree stmt
, tree
*tp
, void *data
)
1901 tree return_slot_addr
;
1903 location_t saved_location
;
1904 struct cgraph_edge
*cg_edge
;
1906 basic_block return_block
;
1908 block_stmt_iterator bsi
, stmt_bsi
;
1909 bool successfully_inlined
= FALSE
;
1914 /* See what we've got. */
1915 id
= (copy_body_data
*) data
;
1918 /* Set input_location here so we get the right instantiation context
1919 if we call instantiate_decl from inlinable_function_p. */
1920 saved_location
= input_location
;
1921 if (EXPR_HAS_LOCATION (t
))
1922 input_location
= EXPR_LOCATION (t
);
1924 /* From here on, we're only interested in CALL_EXPRs. */
1925 if (TREE_CODE (t
) != CALL_EXPR
)
1928 /* First, see if we can figure out what function is being called.
1929 If we cannot, then there is no hope of inlining the function. */
1930 fn
= get_callee_fndecl (t
);
1934 /* Turn forward declarations into real ones. */
1935 fn
= cgraph_node (fn
)->decl
;
1937 /* If fn is a declaration of a function in a nested scope that was
1938 globally declared inline, we don't set its DECL_INITIAL.
1939 However, we can't blindly follow DECL_ABSTRACT_ORIGIN because the
1940 C++ front-end uses it for cdtors to refer to their internal
1941 declarations, that are not real functions. Fortunately those
1942 don't have trees to be saved, so we can tell by checking their
1944 if (! DECL_INITIAL (fn
)
1945 && DECL_ABSTRACT_ORIGIN (fn
)
1946 && DECL_SAVED_TREE (DECL_ABSTRACT_ORIGIN (fn
)))
1947 fn
= DECL_ABSTRACT_ORIGIN (fn
);
1949 /* Objective C and fortran still calls tree_rest_of_compilation directly.
1950 Kill this check once this is fixed. */
1951 if (!id
->dst_node
->analyzed
)
1954 cg_edge
= cgraph_edge (id
->dst_node
, stmt
);
1956 /* Constant propagation on argument done during previous inlining
1957 may create new direct call. Produce an edge for it. */
1960 struct cgraph_node
*dest
= cgraph_node (fn
);
1962 /* We have missing edge in the callgraph. This can happen in one case
1963 where previous inlining turned indirect call into direct call by
1964 constant propagating arguments. In all other cases we hit a bug
1965 (incorrect node sharing is most common reason for missing edges. */
1966 gcc_assert (dest
->needed
|| !flag_unit_at_a_time
);
1967 cgraph_create_edge (id
->dst_node
, dest
, stmt
,
1968 bb
->count
, bb
->loop_depth
)->inline_failed
1969 = N_("originally indirect function call not considered for inlining");
1973 /* Don't try to inline functions that are not well-suited to
1975 if (!cgraph_inline_p (cg_edge
, &reason
))
1977 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn
))
1978 /* Avoid warnings during early inline pass. */
1979 && (!flag_unit_at_a_time
|| cgraph_global_info_ready
))
1981 sorry ("inlining failed in call to %q+F: %s", fn
, reason
);
1982 sorry ("called from here");
1984 else if (warn_inline
&& DECL_DECLARED_INLINE_P (fn
)
1985 && !DECL_IN_SYSTEM_HEADER (fn
)
1987 && !lookup_attribute ("noinline", DECL_ATTRIBUTES (fn
))
1988 /* Avoid warnings during early inline pass. */
1989 && (!flag_unit_at_a_time
|| cgraph_global_info_ready
))
1991 warning (OPT_Winline
, "inlining failed in call to %q+F: %s",
1993 warning (OPT_Winline
, "called from here");
1997 fn
= cg_edge
->callee
->decl
;
1999 #ifdef ENABLE_CHECKING
2000 if (cg_edge
->callee
->decl
!= id
->dst_node
->decl
)
2001 verify_cgraph_node (cg_edge
->callee
);
2004 /* We will be inlining this callee. */
2006 id
->eh_region
= lookup_stmt_eh_region (stmt
);
2008 /* Split the block holding the CALL_EXPR. */
2010 e
= split_block (bb
, stmt
);
2012 return_block
= e
->dest
;
2015 /* split_block splits before the statement, work around this by moving
2016 the call into the first half_bb. Not pretty, but seems easier than
2017 doing the CFG manipulation by hand when the CALL_EXPR is in the last
2019 stmt_bsi
= bsi_last (bb
);
2020 bsi
= bsi_start (return_block
);
2021 if (!bsi_end_p (bsi
))
2022 bsi_move_before (&stmt_bsi
, &bsi
);
2025 tree stmt
= bsi_stmt (stmt_bsi
);
2026 bsi_remove (&stmt_bsi
, false);
2027 bsi_insert_after (&bsi
, stmt
, BSI_NEW_STMT
);
2029 stmt_bsi
= bsi_start (return_block
);
2031 /* Build a block containing code to initialize the arguments, the
2032 actual inline expansion of the body, and a label for the return
2033 statements within the function to jump to. The type of the
2034 statement expression is the return type of the function call. */
2035 id
->block
= make_node (BLOCK
);
2036 BLOCK_ABSTRACT_ORIGIN (id
->block
) = fn
;
2037 BLOCK_SOURCE_LOCATION (id
->block
) = input_location
;
2038 add_lexical_block (TREE_BLOCK (stmt
), id
->block
);
2040 /* Local declarations will be replaced by their equivalents in this
2043 id
->decl_map
= splay_tree_new (splay_tree_compare_pointers
,
2046 /* Initialize the parameters. */
2047 args
= TREE_OPERAND (t
, 1);
2049 /* Record the function we are about to inline. */
2051 id
->src_node
= cg_edge
->callee
;
2053 initialize_inlined_parameters (id
, args
, TREE_OPERAND (t
, 2), fn
, bb
);
2055 if (DECL_INITIAL (fn
))
2056 add_lexical_block (id
->block
, remap_blocks (DECL_INITIAL (fn
), id
));
2058 /* Return statements in the function body will be replaced by jumps
2059 to the RET_LABEL. */
2061 gcc_assert (DECL_INITIAL (fn
));
2062 gcc_assert (TREE_CODE (DECL_INITIAL (fn
)) == BLOCK
);
2064 /* Find the lhs to which the result of this call is assigned. */
2065 return_slot_addr
= NULL
;
2066 if (TREE_CODE (stmt
) == MODIFY_EXPR
)
2068 modify_dest
= TREE_OPERAND (stmt
, 0);
2070 /* The function which we are inlining might not return a value,
2071 in which case we should issue a warning that the function
2072 does not return a value. In that case the optimizers will
2073 see that the variable to which the value is assigned was not
2074 initialized. We do not want to issue a warning about that
2075 uninitialized variable. */
2076 if (DECL_P (modify_dest
))
2077 TREE_NO_WARNING (modify_dest
) = 1;
2078 if (CALL_EXPR_RETURN_SLOT_OPT (t
))
2080 return_slot_addr
= build_fold_addr_expr (modify_dest
);
2081 STRIP_USELESS_TYPE_CONVERSION (return_slot_addr
);
2088 /* Declare the return variable for the function. */
2089 decl
= declare_return_variable (id
, return_slot_addr
,
2090 modify_dest
, &use_retvar
);
2091 /* Do this only if declare_return_variable created a new one. */
2092 if (decl
&& !return_slot_addr
&& decl
!= modify_dest
)
2093 declare_inline_vars (id
->block
, decl
);
2095 /* This is it. Duplicate the callee body. Assume callee is
2096 pre-gimplified. Note that we must not alter the caller
2097 function in any way before this point, as this CALL_EXPR may be
2098 a self-referential call; if we're calling ourselves, we need to
2099 duplicate our body before altering anything. */
2100 copy_body (id
, bb
->count
, bb
->frequency
, bb
, return_block
);
2102 /* Add local vars in this inlined callee to caller. */
2103 t_step
= id
->src_cfun
->unexpanded_var_list
;
2104 for (; t_step
; t_step
= TREE_CHAIN (t_step
))
2106 var
= TREE_VALUE (t_step
);
2107 if (TREE_STATIC (var
) && !TREE_ASM_WRITTEN (var
))
2108 cfun
->unexpanded_var_list
= tree_cons (NULL_TREE
, var
,
2109 cfun
->unexpanded_var_list
);
2111 cfun
->unexpanded_var_list
= tree_cons (NULL_TREE
, remap_decl (var
, id
),
2112 cfun
->unexpanded_var_list
);
2116 splay_tree_delete (id
->decl_map
);
2119 /* If the inlined function returns a result that we care about,
2120 clobber the CALL_EXPR with a reference to the return variable. */
2121 if (use_retvar
&& (TREE_CODE (bsi_stmt (stmt_bsi
)) != CALL_EXPR
))
2124 maybe_clean_or_replace_eh_stmt (stmt
, stmt
);
2127 /* We're modifying a TSI owned by gimple_expand_calls_inline();
2128 tsi_delink() will leave the iterator in a sane state. */
2129 bsi_remove (&stmt_bsi
, true);
2132 if (bsi_end_p (bsi
))
2133 tree_purge_dead_eh_edges (return_block
);
2135 /* If the value of the new expression is ignored, that's OK. We
2136 don't warn about this for CALL_EXPRs, so we shouldn't warn about
2137 the equivalent inlined version either. */
2138 TREE_USED (*tp
) = 1;
2140 /* Output the inlining info for this abstract function, since it has been
2141 inlined. If we don't do this now, we can lose the information about the
2142 variables in the function when the blocks get blown away as soon as we
2143 remove the cgraph node. */
2144 (*debug_hooks
->outlining_inline_function
) (cg_edge
->callee
->decl
);
2146 /* Update callgraph if needed. */
2147 cgraph_remove_node (cg_edge
->callee
);
2149 /* Declare the 'auto' variables added with this inlined body. */
2150 record_vars (BLOCK_VARS (id
->block
));
2151 id
->block
= NULL_TREE
;
2152 successfully_inlined
= TRUE
;
2155 input_location
= saved_location
;
2156 return successfully_inlined
;
2159 /* Expand call statements reachable from STMT_P.
2160 We can only have CALL_EXPRs as the "toplevel" tree code or nested
2161 in a MODIFY_EXPR. See tree-gimple.c:get_call_expr_in(). We can
2162 unfortunately not use that function here because we need a pointer
2163 to the CALL_EXPR, not the tree itself. */
2166 gimple_expand_calls_inline (basic_block bb
, copy_body_data
*id
)
2168 block_stmt_iterator bsi
;
2170 /* Register specific tree functions. */
2171 tree_register_cfg_hooks ();
2172 for (bsi
= bsi_start (bb
); !bsi_end_p (bsi
); bsi_next (&bsi
))
2174 tree
*expr_p
= bsi_stmt_ptr (bsi
);
2175 tree stmt
= *expr_p
;
2177 if (TREE_CODE (*expr_p
) == MODIFY_EXPR
)
2178 expr_p
= &TREE_OPERAND (*expr_p
, 1);
2179 if (TREE_CODE (*expr_p
) == WITH_SIZE_EXPR
)
2180 expr_p
= &TREE_OPERAND (*expr_p
, 0);
2181 if (TREE_CODE (*expr_p
) == CALL_EXPR
)
2182 if (expand_call_inline (bb
, stmt
, expr_p
, id
))
2188 /* Expand calls to inline functions in the body of FN. */
2191 optimize_inline_calls (tree fn
)
2196 /* There is no point in performing inlining if errors have already
2197 occurred -- and we might crash if we try to inline invalid
2199 if (errorcount
|| sorrycount
)
2203 memset (&id
, 0, sizeof (id
));
2205 id
.src_node
= id
.dst_node
= cgraph_node (fn
);
2207 /* Or any functions that aren't finished yet. */
2208 prev_fn
= NULL_TREE
;
2209 if (current_function_decl
)
2211 id
.dst_fn
= current_function_decl
;
2212 prev_fn
= current_function_decl
;
2215 id
.copy_decl
= copy_decl_maybe_to_var
;
2216 id
.transform_call_graph_edges
= CB_CGE_DUPLICATE
;
2217 id
.transform_new_cfg
= false;
2218 id
.transform_return_to_modify
= true;
2219 id
.transform_lang_insert_block
= false;
2221 push_gimplify_context ();
2223 /* Reach the trees by walking over the CFG, and note the
2224 enclosing basic-blocks in the call edges. */
2225 /* We walk the blocks going forward, because inlined function bodies
2226 will split id->current_basic_block, and the new blocks will
2227 follow it; we'll trudge through them, processing their CALL_EXPRs
2230 gimple_expand_calls_inline (bb
, &id
);
2232 pop_gimplify_context (NULL
);
2233 /* Renumber the (code) basic_blocks consecutively. */
2235 /* Renumber the lexical scoping (non-code) blocks consecutively. */
2238 #ifdef ENABLE_CHECKING
2240 struct cgraph_edge
*e
;
2242 verify_cgraph_node (id
.dst_node
);
2244 /* Double check that we inlined everything we are supposed to inline. */
2245 for (e
= id
.dst_node
->callees
; e
; e
= e
->next_callee
)
2246 gcc_assert (e
->inline_failed
);
2249 /* We need to rescale frequencies again to peak at REG_BR_PROB_BASE
2250 as inlining loops might increase the maximum. */
2251 if (ENTRY_BLOCK_PTR
->count
)
2253 fold_cond_expr_cond ();
2256 /* FN is a function that has a complete body, and CLONE is a function whose
2257 body is to be set to a copy of FN, mapping argument declarations according
2258 to the ARG_MAP splay_tree. */
2261 clone_body (tree clone
, tree fn
, void *arg_map
)
2265 /* Clone the body, as if we were making an inline call. But, remap the
2266 parameters in the callee to the parameters of caller. */
2267 memset (&id
, 0, sizeof (id
));
2270 id
.src_cfun
= DECL_STRUCT_FUNCTION (fn
);
2271 id
.decl_map
= (splay_tree
)arg_map
;
2273 id
.copy_decl
= copy_decl_no_change
;
2274 id
.transform_call_graph_edges
= CB_CGE_DUPLICATE
;
2275 id
.transform_new_cfg
= true;
2276 id
.transform_return_to_modify
= false;
2277 id
.transform_lang_insert_block
= true;
2279 /* We're not inside any EH region. */
2282 /* Actually copy the body. */
2283 append_to_statement_list_force (copy_generic_body (&id
), &DECL_SAVED_TREE (clone
));
2286 /* Passed to walk_tree. Copies the node pointed to, if appropriate. */
2289 copy_tree_r (tree
*tp
, int *walk_subtrees
, void *data ATTRIBUTE_UNUSED
)
2291 enum tree_code code
= TREE_CODE (*tp
);
2293 /* We make copies of most nodes. */
2294 if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code
))
2295 || code
== TREE_LIST
2297 || code
== TYPE_DECL
2298 || code
== OMP_CLAUSE
)
2300 /* Because the chain gets clobbered when we make a copy, we save it
2302 tree chain
= TREE_CHAIN (*tp
);
2305 /* Copy the node. */
2306 new = copy_node (*tp
);
2308 /* Propagate mudflap marked-ness. */
2309 if (flag_mudflap
&& mf_marked_p (*tp
))
2314 /* Now, restore the chain, if appropriate. That will cause
2315 walk_tree to walk into the chain as well. */
2316 if (code
== PARM_DECL
2317 || code
== TREE_LIST
2318 || code
== OMP_CLAUSE
)
2319 TREE_CHAIN (*tp
) = chain
;
2321 /* For now, we don't update BLOCKs when we make copies. So, we
2322 have to nullify all BIND_EXPRs. */
2323 if (TREE_CODE (*tp
) == BIND_EXPR
)
2324 BIND_EXPR_BLOCK (*tp
) = NULL_TREE
;
2326 else if (code
== CONSTRUCTOR
)
2328 /* CONSTRUCTOR nodes need special handling because
2329 we need to duplicate the vector of elements. */
2332 new = copy_node (*tp
);
2334 /* Propagate mudflap marked-ness. */
2335 if (flag_mudflap
&& mf_marked_p (*tp
))
2338 CONSTRUCTOR_ELTS (new) = VEC_copy (constructor_elt
, gc
,
2339 CONSTRUCTOR_ELTS (*tp
));
2342 else if (TREE_CODE_CLASS (code
) == tcc_type
)
2344 else if (TREE_CODE_CLASS (code
) == tcc_declaration
)
2346 else if (TREE_CODE_CLASS (code
) == tcc_constant
)
2349 gcc_assert (code
!= STATEMENT_LIST
);
2353 /* The SAVE_EXPR pointed to by TP is being copied. If ST contains
2354 information indicating to what new SAVE_EXPR this one should be mapped,
2355 use that one. Otherwise, create a new node and enter it in ST. FN is
2356 the function into which the copy will be placed. */
2359 remap_save_expr (tree
*tp
, void *st_
, int *walk_subtrees
)
2361 splay_tree st
= (splay_tree
) st_
;
2365 /* See if we already encountered this SAVE_EXPR. */
2366 n
= splay_tree_lookup (st
, (splay_tree_key
) *tp
);
2368 /* If we didn't already remap this SAVE_EXPR, do so now. */
2371 t
= copy_node (*tp
);
2373 /* Remember this SAVE_EXPR. */
2374 splay_tree_insert (st
, (splay_tree_key
) *tp
, (splay_tree_value
) t
);
2375 /* Make sure we don't remap an already-remapped SAVE_EXPR. */
2376 splay_tree_insert (st
, (splay_tree_key
) t
, (splay_tree_value
) t
);
2380 /* We've already walked into this SAVE_EXPR; don't do it again. */
2382 t
= (tree
) n
->value
;
2385 /* Replace this SAVE_EXPR with the copy. */
2389 /* Called via walk_tree. If *TP points to a DECL_STMT for a local label,
2390 copies the declaration and enters it in the splay_tree in DATA (which is
2391 really an `copy_body_data *'). */
2394 mark_local_for_remap_r (tree
*tp
, int *walk_subtrees ATTRIBUTE_UNUSED
,
2397 copy_body_data
*id
= (copy_body_data
*) data
;
2399 /* Don't walk into types. */
2403 else if (TREE_CODE (*tp
) == LABEL_EXPR
)
2405 tree decl
= TREE_OPERAND (*tp
, 0);
2407 /* Copy the decl and remember the copy. */
2408 insert_decl_map (id
, decl
, id
->copy_decl (decl
, id
));
2414 /* Perform any modifications to EXPR required when it is unsaved. Does
2415 not recurse into EXPR's subtrees. */
2418 unsave_expr_1 (tree expr
)
2420 switch (TREE_CODE (expr
))
2423 /* Don't mess with a TARGET_EXPR that hasn't been expanded.
2424 It's OK for this to happen if it was part of a subtree that
2425 isn't immediately expanded, such as operand 2 of another
2427 if (TREE_OPERAND (expr
, 1))
2430 TREE_OPERAND (expr
, 1) = TREE_OPERAND (expr
, 3);
2431 TREE_OPERAND (expr
, 3) = NULL_TREE
;
2439 /* Called via walk_tree when an expression is unsaved. Using the
2440 splay_tree pointed to by ST (which is really a `splay_tree'),
2441 remaps all local declarations to appropriate replacements. */
2444 unsave_r (tree
*tp
, int *walk_subtrees
, void *data
)
2446 copy_body_data
*id
= (copy_body_data
*) data
;
2447 splay_tree st
= id
->decl_map
;
2450 /* Only a local declaration (variable or label). */
2451 if ((TREE_CODE (*tp
) == VAR_DECL
&& !TREE_STATIC (*tp
))
2452 || TREE_CODE (*tp
) == LABEL_DECL
)
2454 /* Lookup the declaration. */
2455 n
= splay_tree_lookup (st
, (splay_tree_key
) *tp
);
2457 /* If it's there, remap it. */
2459 *tp
= (tree
) n
->value
;
2462 else if (TREE_CODE (*tp
) == STATEMENT_LIST
)
2463 copy_statement_list (tp
);
2464 else if (TREE_CODE (*tp
) == BIND_EXPR
)
2465 copy_bind_expr (tp
, walk_subtrees
, id
);
2466 else if (TREE_CODE (*tp
) == SAVE_EXPR
)
2467 remap_save_expr (tp
, st
, walk_subtrees
);
2470 copy_tree_r (tp
, walk_subtrees
, NULL
);
2472 /* Do whatever unsaving is required. */
2473 unsave_expr_1 (*tp
);
2476 /* Keep iterating. */
2480 /* Copies everything in EXPR and replaces variables, labels
2481 and SAVE_EXPRs local to EXPR. */
2484 unsave_expr_now (tree expr
)
2488 /* There's nothing to do for NULL_TREE. */
2493 memset (&id
, 0, sizeof (id
));
2494 id
.src_fn
= current_function_decl
;
2495 id
.dst_fn
= current_function_decl
;
2496 id
.decl_map
= splay_tree_new (splay_tree_compare_pointers
, NULL
, NULL
);
2498 id
.copy_decl
= copy_decl_no_change
;
2499 id
.transform_call_graph_edges
= CB_CGE_DUPLICATE
;
2500 id
.transform_new_cfg
= false;
2501 id
.transform_return_to_modify
= false;
2502 id
.transform_lang_insert_block
= false;
2504 /* Walk the tree once to find local labels. */
2505 walk_tree_without_duplicates (&expr
, mark_local_for_remap_r
, &id
);
2507 /* Walk the tree again, copying, remapping, and unsaving. */
2508 walk_tree (&expr
, unsave_r
, &id
, NULL
);
2511 splay_tree_delete (id
.decl_map
);
2516 /* Allow someone to determine if SEARCH is a child of TOP from gdb. */
2519 debug_find_tree_1 (tree
*tp
, int *walk_subtrees ATTRIBUTE_UNUSED
, void *data
)
2528 debug_find_tree (tree top
, tree search
)
2530 return walk_tree_without_duplicates (&top
, debug_find_tree_1
, search
) != 0;
2534 /* Declare the variables created by the inliner. Add all the variables in
2535 VARS to BIND_EXPR. */
2538 declare_inline_vars (tree block
, tree vars
)
2541 for (t
= vars
; t
; t
= TREE_CHAIN (t
))
2542 DECL_SEEN_IN_BIND_EXPR_P (t
) = 1;
2545 BLOCK_VARS (block
) = chainon (BLOCK_VARS (block
), vars
);
2549 /* Copy NODE (which must be a DECL). The DECL originally was in the FROM_FN,
2550 but now it will be in the TO_FN. PARM_TO_VAR means enable PARM_DECL to
2551 VAR_DECL translation. */
2554 copy_decl_for_dup_finish (copy_body_data
*id
, tree decl
, tree copy
)
2556 /* Don't generate debug information for the copy if we wouldn't have
2557 generated it for the copy either. */
2558 DECL_ARTIFICIAL (copy
) = DECL_ARTIFICIAL (decl
);
2559 DECL_IGNORED_P (copy
) = DECL_IGNORED_P (decl
);
2561 /* Set the DECL_ABSTRACT_ORIGIN so the debugging routines know what
2562 declaration inspired this copy. */
2563 DECL_ABSTRACT_ORIGIN (copy
) = DECL_ORIGIN (decl
);
2565 /* The new variable/label has no RTL, yet. */
2566 if (CODE_CONTAINS_STRUCT (TREE_CODE (copy
), TS_DECL_WRTL
)
2567 && !TREE_STATIC (copy
) && !DECL_EXTERNAL (copy
))
2568 SET_DECL_RTL (copy
, NULL_RTX
);
2570 /* These args would always appear unused, if not for this. */
2571 TREE_USED (copy
) = 1;
2573 /* Set the context for the new declaration. */
2574 if (!DECL_CONTEXT (decl
))
2575 /* Globals stay global. */
2577 else if (DECL_CONTEXT (decl
) != id
->src_fn
)
2578 /* Things that weren't in the scope of the function we're inlining
2579 from aren't in the scope we're inlining to, either. */
2581 else if (TREE_STATIC (decl
))
2582 /* Function-scoped static variables should stay in the original
2586 /* Ordinary automatic local variables are now in the scope of the
2588 DECL_CONTEXT (copy
) = id
->dst_fn
;
2594 copy_decl_to_var (tree decl
, copy_body_data
*id
)
2598 gcc_assert (TREE_CODE (decl
) == PARM_DECL
2599 || TREE_CODE (decl
) == RESULT_DECL
);
2601 type
= TREE_TYPE (decl
);
2603 copy
= build_decl (VAR_DECL
, DECL_NAME (decl
), type
);
2604 TREE_ADDRESSABLE (copy
) = TREE_ADDRESSABLE (decl
);
2605 TREE_READONLY (copy
) = TREE_READONLY (decl
);
2606 TREE_THIS_VOLATILE (copy
) = TREE_THIS_VOLATILE (decl
);
2607 DECL_COMPLEX_GIMPLE_REG_P (copy
) = DECL_COMPLEX_GIMPLE_REG_P (decl
);
2609 return copy_decl_for_dup_finish (id
, decl
, copy
);
2613 copy_decl_no_change (tree decl
, copy_body_data
*id
)
2617 copy
= copy_node (decl
);
2619 /* The COPY is not abstract; it will be generated in DST_FN. */
2620 DECL_ABSTRACT (copy
) = 0;
2621 lang_hooks
.dup_lang_specific_decl (copy
);
2623 /* TREE_ADDRESSABLE isn't used to indicate that a label's address has
2624 been taken; it's for internal bookkeeping in expand_goto_internal. */
2625 if (TREE_CODE (copy
) == LABEL_DECL
)
2627 TREE_ADDRESSABLE (copy
) = 0;
2628 LABEL_DECL_UID (copy
) = -1;
2631 return copy_decl_for_dup_finish (id
, decl
, copy
);
2635 copy_decl_maybe_to_var (tree decl
, copy_body_data
*id
)
2637 if (TREE_CODE (decl
) == PARM_DECL
|| TREE_CODE (decl
) == RESULT_DECL
)
2638 return copy_decl_to_var (decl
, id
);
2640 return copy_decl_no_change (decl
, id
);
2643 /* Return a copy of the function's argument tree. */
2645 copy_arguments_for_versioning (tree orig_parm
, copy_body_data
* id
)
2647 tree
*arg_copy
, *parg
;
2649 arg_copy
= &orig_parm
;
2650 for (parg
= arg_copy
; *parg
; parg
= &TREE_CHAIN (*parg
))
2652 tree
new = remap_decl (*parg
, id
);
2653 lang_hooks
.dup_lang_specific_decl (new);
2654 TREE_CHAIN (new) = TREE_CHAIN (*parg
);
2660 /* Return a copy of the function's static chain. */
2662 copy_static_chain (tree static_chain
, copy_body_data
* id
)
2664 tree
*chain_copy
, *pvar
;
2666 chain_copy
= &static_chain
;
2667 for (pvar
= chain_copy
; *pvar
; pvar
= &TREE_CHAIN (*pvar
))
2669 tree
new = remap_decl (*pvar
, id
);
2670 lang_hooks
.dup_lang_specific_decl (new);
2671 TREE_CHAIN (new) = TREE_CHAIN (*pvar
);
2674 return static_chain
;
2677 /* Return true if the function is allowed to be versioned.
2678 This is a guard for the versioning functionality. */
2680 tree_versionable_function_p (tree fndecl
)
2682 if (fndecl
== NULL_TREE
)
2684 /* ??? There are cases where a function is
2685 uninlinable but can be versioned. */
2686 if (!tree_inlinable_function_p (fndecl
))
2692 /* Create a copy of a function's tree.
2693 OLD_DECL and NEW_DECL are FUNCTION_DECL tree nodes
2694 of the original function and the new copied function
2695 respectively. In case we want to replace a DECL
2696 tree with another tree while duplicating the function's
2697 body, TREE_MAP represents the mapping between these
2698 trees. If UPDATE_CLONES is set, the call_stmt fields
2699 of edges of clones of the function will be updated. */
2701 tree_function_versioning (tree old_decl
, tree new_decl
, varray_type tree_map
,
2704 struct cgraph_node
*old_version_node
;
2705 struct cgraph_node
*new_version_node
;
2709 struct ipa_replace_map
*replace_info
;
2710 basic_block old_entry_block
;
2713 gcc_assert (TREE_CODE (old_decl
) == FUNCTION_DECL
2714 && TREE_CODE (new_decl
) == FUNCTION_DECL
);
2715 DECL_POSSIBLY_INLINED (old_decl
) = 1;
2717 old_version_node
= cgraph_node (old_decl
);
2718 new_version_node
= cgraph_node (new_decl
);
2720 allocate_struct_function (new_decl
);
2721 /* Cfun points to the new allocated function struct at this point. */
2722 cfun
->function_end_locus
= DECL_SOURCE_LOCATION (new_decl
);
2724 DECL_ARTIFICIAL (new_decl
) = 1;
2725 DECL_ABSTRACT_ORIGIN (new_decl
) = DECL_ORIGIN (old_decl
);
2727 /* Generate a new name for the new version. */
2729 DECL_NAME (new_decl
) = create_tmp_var_name (NULL
);
2730 /* Create a new SYMBOL_REF rtx for the new name. */
2731 if (DECL_RTL (old_decl
) != NULL
)
2733 SET_DECL_RTL (new_decl
, copy_rtx (DECL_RTL (old_decl
)));
2734 XEXP (DECL_RTL (new_decl
), 0) =
2735 gen_rtx_SYMBOL_REF (GET_MODE (XEXP (DECL_RTL (old_decl
), 0)),
2736 IDENTIFIER_POINTER (DECL_NAME (new_decl
)));
2739 /* Prepare the data structures for the tree copy. */
2740 memset (&id
, 0, sizeof (id
));
2742 id
.decl_map
= splay_tree_new (splay_tree_compare_pointers
, NULL
, NULL
);
2743 id
.src_fn
= old_decl
;
2744 id
.dst_fn
= new_decl
;
2745 id
.src_node
= old_version_node
;
2746 id
.dst_node
= new_version_node
;
2747 id
.src_cfun
= DECL_STRUCT_FUNCTION (old_decl
);
2749 id
.copy_decl
= copy_decl_no_change
;
2750 id
.transform_call_graph_edges
2751 = update_clones
? CB_CGE_MOVE_CLONES
: CB_CGE_MOVE
;
2752 id
.transform_new_cfg
= true;
2753 id
.transform_return_to_modify
= false;
2754 id
.transform_lang_insert_block
= false;
2756 current_function_decl
= new_decl
;
2758 /* Copy the function's static chain. */
2759 p
= DECL_STRUCT_FUNCTION (old_decl
)->static_chain_decl
;
2761 DECL_STRUCT_FUNCTION (new_decl
)->static_chain_decl
=
2762 copy_static_chain (DECL_STRUCT_FUNCTION (old_decl
)->static_chain_decl
,
2764 /* Copy the function's arguments. */
2765 if (DECL_ARGUMENTS (old_decl
) != NULL_TREE
)
2766 DECL_ARGUMENTS (new_decl
) =
2767 copy_arguments_for_versioning (DECL_ARGUMENTS (old_decl
), &id
);
2769 /* If there's a tree_map, prepare for substitution. */
2771 for (i
= 0; i
< VARRAY_ACTIVE_SIZE (tree_map
); i
++)
2773 replace_info
= VARRAY_GENERIC_PTR (tree_map
, i
);
2774 if (replace_info
->replace_p
)
2775 insert_decl_map (&id
, replace_info
->old_tree
,
2776 replace_info
->new_tree
);
2779 DECL_INITIAL (new_decl
) = remap_blocks (DECL_INITIAL (id
.src_fn
), &id
);
2781 /* Renumber the lexical scoping (non-code) blocks consecutively. */
2782 number_blocks (id
.dst_fn
);
2784 if (DECL_STRUCT_FUNCTION (old_decl
)->unexpanded_var_list
!= NULL_TREE
)
2785 /* Add local vars. */
2786 for (t_step
= DECL_STRUCT_FUNCTION (old_decl
)->unexpanded_var_list
;
2787 t_step
; t_step
= TREE_CHAIN (t_step
))
2789 tree var
= TREE_VALUE (t_step
);
2790 if (TREE_STATIC (var
) && !TREE_ASM_WRITTEN (var
))
2791 cfun
->unexpanded_var_list
= tree_cons (NULL_TREE
, var
,
2792 cfun
->unexpanded_var_list
);
2794 cfun
->unexpanded_var_list
=
2795 tree_cons (NULL_TREE
, remap_decl (var
, &id
),
2796 cfun
->unexpanded_var_list
);
2799 /* Copy the Function's body. */
2800 old_entry_block
= ENTRY_BLOCK_PTR_FOR_FUNCTION
2801 (DECL_STRUCT_FUNCTION (old_decl
));
2802 new_fndecl
= copy_body (&id
,
2803 old_entry_block
->count
,
2804 old_entry_block
->frequency
, NULL
, NULL
);
2806 DECL_SAVED_TREE (new_decl
) = DECL_SAVED_TREE (new_fndecl
);
2808 DECL_STRUCT_FUNCTION (new_decl
)->cfg
=
2809 DECL_STRUCT_FUNCTION (new_fndecl
)->cfg
;
2810 DECL_STRUCT_FUNCTION (new_decl
)->eh
= DECL_STRUCT_FUNCTION (new_fndecl
)->eh
;
2811 DECL_STRUCT_FUNCTION (new_decl
)->ib_boundaries_block
=
2812 DECL_STRUCT_FUNCTION (new_fndecl
)->ib_boundaries_block
;
2813 DECL_STRUCT_FUNCTION (new_decl
)->last_label_uid
=
2814 DECL_STRUCT_FUNCTION (new_fndecl
)->last_label_uid
;
2816 if (DECL_RESULT (old_decl
) != NULL_TREE
)
2818 tree
*res_decl
= &DECL_RESULT (old_decl
);
2819 DECL_RESULT (new_decl
) = remap_decl (*res_decl
, &id
);
2820 lang_hooks
.dup_lang_specific_decl (DECL_RESULT (new_decl
));
2823 current_function_decl
= NULL
;
2824 /* Renumber the lexical scoping (non-code) blocks consecutively. */
2825 number_blocks (new_decl
);
2828 splay_tree_delete (id
.decl_map
);
2829 fold_cond_expr_cond ();
2833 /* Duplicate a type, fields and all. */
2836 build_duplicate_type (tree type
)
2838 struct copy_body_data id
;
2840 memset (&id
, 0, sizeof (id
));
2841 id
.src_fn
= current_function_decl
;
2842 id
.dst_fn
= current_function_decl
;
2844 id
.decl_map
= splay_tree_new (splay_tree_compare_pointers
, NULL
, NULL
);
2846 type
= remap_type_1 (type
, &id
);
2848 splay_tree_delete (id
.decl_map
);