2 Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
4 Contributed by Alexandre Oliva <aoliva@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
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/>. */
24 #include "coretypes.h"
26 #include "diagnostic-core.h"
28 #include "tree-inline.h"
32 #include "insn-config.h"
34 #include "langhooks.h"
35 #include "basic-block.h"
36 #include "tree-iterator.h"
39 #include "tree-mudflap.h"
40 #include "tree-flow.h"
42 #include "tree-flow.h"
43 #include "tree-pretty-print.h"
46 #include "pointer-set.h"
48 #include "value-prof.h"
49 #include "tree-pass.h"
51 #include "integrate.h"
53 #include "rtl.h" /* FIXME: For asm_str_count. */
55 /* I'm not real happy about this, but we need to handle gimple and
59 /* Inlining, Cloning, Versioning, Parallelization
61 Inlining: a function body is duplicated, but the PARM_DECLs are
62 remapped into VAR_DECLs, and non-void RETURN_EXPRs become
63 MODIFY_EXPRs that store to a dedicated returned-value variable.
64 The duplicated eh_region info of the copy will later be appended
65 to the info for the caller; the eh_region info in copied throwing
66 statements and RESX statements are adjusted accordingly.
68 Cloning: (only in C++) We have one body for a con/de/structor, and
69 multiple function decls, each with a unique parameter list.
70 Duplicate the body, using the given splay tree; some parameters
71 will become constants (like 0 or 1).
73 Versioning: a function body is duplicated and the result is a new
74 function rather than into blocks of an existing function as with
75 inlining. Some parameters will become constants.
77 Parallelization: a region of a function is duplicated resulting in
78 a new function. Variables may be replaced with complex expressions
79 to enable shared variable semantics.
81 All of these will simultaneously lookup any callgraph edges. If
82 we're going to inline the duplicated function body, and the given
83 function has some cloned callgraph nodes (one for each place this
84 function will be inlined) those callgraph edges will be duplicated.
85 If we're cloning the body, those callgraph edges will be
86 updated to point into the new body. (Note that the original
87 callgraph node and edge list will not be altered.)
89 See the CALL_EXPR handling case in copy_tree_body_r (). */
93 o In order to make inlining-on-trees work, we pessimized
94 function-local static constants. In particular, they are now
95 always output, even when not addressed. Fix this by treating
96 function-local static constants just like global static
97 constants; the back-end already knows not to output them if they
100 o Provide heuristics to clamp inlining of recursive template
104 /* Weights that estimate_num_insns uses to estimate the size of the
107 eni_weights eni_size_weights
;
109 /* Weights that estimate_num_insns uses to estimate the time necessary
110 to execute the produced code. */
112 eni_weights eni_time_weights
;
116 static tree
declare_return_variable (copy_body_data
*, tree
, tree
, basic_block
);
117 static void remap_block (tree
*, copy_body_data
*);
118 static void copy_bind_expr (tree
*, int *, copy_body_data
*);
119 static tree
mark_local_for_remap_r (tree
*, int *, void *);
120 static void unsave_expr_1 (tree
);
121 static tree
unsave_r (tree
*, int *, void *);
122 static void declare_inline_vars (tree
, tree
);
123 static void remap_save_expr (tree
*, void *, int *);
124 static void prepend_lexical_block (tree current_block
, tree new_block
);
125 static tree
copy_decl_to_var (tree
, copy_body_data
*);
126 static tree
copy_result_decl_to_var (tree
, copy_body_data
*);
127 static tree
copy_decl_maybe_to_var (tree
, copy_body_data
*);
128 static gimple
remap_gimple_stmt (gimple
, copy_body_data
*);
129 static bool delete_unreachable_blocks_update_callgraph (copy_body_data
*id
);
131 /* Insert a tree->tree mapping for ID. Despite the name suggests
132 that the trees should be variables, it is used for more than that. */
135 insert_decl_map (copy_body_data
*id
, tree key
, tree value
)
137 *pointer_map_insert (id
->decl_map
, key
) = value
;
139 /* Always insert an identity map as well. If we see this same new
140 node again, we won't want to duplicate it a second time. */
142 *pointer_map_insert (id
->decl_map
, value
) = value
;
145 /* Insert a tree->tree mapping for ID. This is only used for
149 insert_debug_decl_map (copy_body_data
*id
, tree key
, tree value
)
151 if (!gimple_in_ssa_p (id
->src_cfun
))
154 if (!MAY_HAVE_DEBUG_STMTS
)
157 if (!target_for_debug_bind (key
))
160 gcc_assert (TREE_CODE (key
) == PARM_DECL
);
161 gcc_assert (TREE_CODE (value
) == VAR_DECL
);
164 id
->debug_map
= pointer_map_create ();
166 *pointer_map_insert (id
->debug_map
, key
) = value
;
169 /* If nonzero, we're remapping the contents of inlined debug
170 statements. If negative, an error has occurred, such as a
171 reference to a variable that isn't available in the inlined
173 static int processing_debug_stmt
= 0;
175 /* Construct new SSA name for old NAME. ID is the inline context. */
178 remap_ssa_name (tree name
, copy_body_data
*id
)
183 gcc_assert (TREE_CODE (name
) == SSA_NAME
);
185 n
= (tree
*) pointer_map_contains (id
->decl_map
, name
);
187 return unshare_expr (*n
);
189 if (processing_debug_stmt
)
191 processing_debug_stmt
= -1;
195 /* Do not set DEF_STMT yet as statement is not copied yet. We do that
197 new_tree
= remap_decl (SSA_NAME_VAR (name
), id
);
199 /* We might've substituted constant or another SSA_NAME for
202 Replace the SSA name representing RESULT_DECL by variable during
203 inlining: this saves us from need to introduce PHI node in a case
204 return value is just partly initialized. */
205 if ((TREE_CODE (new_tree
) == VAR_DECL
|| TREE_CODE (new_tree
) == PARM_DECL
)
206 && (TREE_CODE (SSA_NAME_VAR (name
)) != RESULT_DECL
207 || !id
->transform_return_to_modify
))
209 struct ptr_info_def
*pi
;
210 new_tree
= make_ssa_name (new_tree
, NULL
);
211 insert_decl_map (id
, name
, new_tree
);
212 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (new_tree
)
213 = SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name
);
214 TREE_TYPE (new_tree
) = TREE_TYPE (SSA_NAME_VAR (new_tree
));
215 /* At least IPA points-to info can be directly transferred. */
216 if (id
->src_cfun
->gimple_df
217 && id
->src_cfun
->gimple_df
->ipa_pta
218 && (pi
= SSA_NAME_PTR_INFO (name
))
221 struct ptr_info_def
*new_pi
= get_ptr_info (new_tree
);
224 if (gimple_nop_p (SSA_NAME_DEF_STMT (name
)))
226 /* By inlining function having uninitialized variable, we might
227 extend the lifetime (variable might get reused). This cause
228 ICE in the case we end up extending lifetime of SSA name across
229 abnormal edge, but also increase register pressure.
231 We simply initialize all uninitialized vars by 0 except
232 for case we are inlining to very first BB. We can avoid
233 this for all BBs that are not inside strongly connected
234 regions of the CFG, but this is expensive to test. */
236 && is_gimple_reg (SSA_NAME_VAR (name
))
237 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name
)
238 && TREE_CODE (SSA_NAME_VAR (name
)) != PARM_DECL
239 && (id
->entry_bb
!= EDGE_SUCC (ENTRY_BLOCK_PTR
, 0)->dest
240 || EDGE_COUNT (id
->entry_bb
->preds
) != 1))
242 gimple_stmt_iterator gsi
= gsi_last_bb (id
->entry_bb
);
244 tree zero
= build_zero_cst (TREE_TYPE (new_tree
));
246 init_stmt
= gimple_build_assign (new_tree
, zero
);
247 gsi_insert_after (&gsi
, init_stmt
, GSI_NEW_STMT
);
248 SSA_NAME_IS_DEFAULT_DEF (new_tree
) = 0;
252 SSA_NAME_DEF_STMT (new_tree
) = gimple_build_nop ();
253 if (gimple_default_def (id
->src_cfun
, SSA_NAME_VAR (name
))
255 set_default_def (SSA_NAME_VAR (new_tree
), new_tree
);
260 insert_decl_map (id
, name
, new_tree
);
264 /* Remap DECL during the copying of the BLOCK tree for the function. */
267 remap_decl (tree decl
, copy_body_data
*id
)
271 /* We only remap local variables in the current function. */
273 /* See if we have remapped this declaration. */
275 n
= (tree
*) pointer_map_contains (id
->decl_map
, decl
);
277 if (!n
&& processing_debug_stmt
)
279 processing_debug_stmt
= -1;
283 /* If we didn't already have an equivalent for this declaration,
287 /* Make a copy of the variable or label. */
288 tree t
= id
->copy_decl (decl
, id
);
290 /* Remember it, so that if we encounter this local entity again
291 we can reuse this copy. Do this early because remap_type may
292 need this decl for TYPE_STUB_DECL. */
293 insert_decl_map (id
, decl
, t
);
298 /* Remap types, if necessary. */
299 TREE_TYPE (t
) = remap_type (TREE_TYPE (t
), id
);
300 if (TREE_CODE (t
) == TYPE_DECL
)
301 DECL_ORIGINAL_TYPE (t
) = remap_type (DECL_ORIGINAL_TYPE (t
), id
);
303 /* Remap sizes as necessary. */
304 walk_tree (&DECL_SIZE (t
), copy_tree_body_r
, id
, NULL
);
305 walk_tree (&DECL_SIZE_UNIT (t
), copy_tree_body_r
, id
, NULL
);
307 /* If fields, do likewise for offset and qualifier. */
308 if (TREE_CODE (t
) == FIELD_DECL
)
310 walk_tree (&DECL_FIELD_OFFSET (t
), copy_tree_body_r
, id
, NULL
);
311 if (TREE_CODE (DECL_CONTEXT (t
)) == QUAL_UNION_TYPE
)
312 walk_tree (&DECL_QUALIFIER (t
), copy_tree_body_r
, id
, NULL
);
315 if (cfun
&& gimple_in_ssa_p (cfun
)
316 && (TREE_CODE (t
) == VAR_DECL
317 || TREE_CODE (t
) == RESULT_DECL
|| TREE_CODE (t
) == PARM_DECL
))
320 add_referenced_var (t
);
325 if (id
->do_not_unshare
)
328 return unshare_expr (*n
);
332 remap_type_1 (tree type
, copy_body_data
*id
)
336 /* We do need a copy. build and register it now. If this is a pointer or
337 reference type, remap the designated type and make a new pointer or
339 if (TREE_CODE (type
) == POINTER_TYPE
)
341 new_tree
= build_pointer_type_for_mode (remap_type (TREE_TYPE (type
), id
),
343 TYPE_REF_CAN_ALIAS_ALL (type
));
344 if (TYPE_ATTRIBUTES (type
) || TYPE_QUALS (type
))
345 new_tree
= build_type_attribute_qual_variant (new_tree
,
346 TYPE_ATTRIBUTES (type
),
348 insert_decl_map (id
, type
, new_tree
);
351 else if (TREE_CODE (type
) == REFERENCE_TYPE
)
353 new_tree
= build_reference_type_for_mode (remap_type (TREE_TYPE (type
), id
),
355 TYPE_REF_CAN_ALIAS_ALL (type
));
356 if (TYPE_ATTRIBUTES (type
) || TYPE_QUALS (type
))
357 new_tree
= build_type_attribute_qual_variant (new_tree
,
358 TYPE_ATTRIBUTES (type
),
360 insert_decl_map (id
, type
, new_tree
);
364 new_tree
= copy_node (type
);
366 insert_decl_map (id
, type
, new_tree
);
368 /* This is a new type, not a copy of an old type. Need to reassociate
369 variants. We can handle everything except the main variant lazily. */
370 t
= TYPE_MAIN_VARIANT (type
);
373 t
= remap_type (t
, id
);
374 TYPE_MAIN_VARIANT (new_tree
) = t
;
375 TYPE_NEXT_VARIANT (new_tree
) = TYPE_NEXT_VARIANT (t
);
376 TYPE_NEXT_VARIANT (t
) = new_tree
;
380 TYPE_MAIN_VARIANT (new_tree
) = new_tree
;
381 TYPE_NEXT_VARIANT (new_tree
) = NULL
;
384 if (TYPE_STUB_DECL (type
))
385 TYPE_STUB_DECL (new_tree
) = remap_decl (TYPE_STUB_DECL (type
), id
);
387 /* Lazily create pointer and reference types. */
388 TYPE_POINTER_TO (new_tree
) = NULL
;
389 TYPE_REFERENCE_TO (new_tree
) = NULL
;
391 switch (TREE_CODE (new_tree
))
395 case FIXED_POINT_TYPE
:
398 t
= TYPE_MIN_VALUE (new_tree
);
399 if (t
&& TREE_CODE (t
) != INTEGER_CST
)
400 walk_tree (&TYPE_MIN_VALUE (new_tree
), copy_tree_body_r
, id
, NULL
);
402 t
= TYPE_MAX_VALUE (new_tree
);
403 if (t
&& TREE_CODE (t
) != INTEGER_CST
)
404 walk_tree (&TYPE_MAX_VALUE (new_tree
), copy_tree_body_r
, id
, NULL
);
408 TREE_TYPE (new_tree
) = remap_type (TREE_TYPE (new_tree
), id
);
409 walk_tree (&TYPE_ARG_TYPES (new_tree
), copy_tree_body_r
, id
, NULL
);
413 TREE_TYPE (new_tree
) = remap_type (TREE_TYPE (new_tree
), id
);
414 TYPE_DOMAIN (new_tree
) = remap_type (TYPE_DOMAIN (new_tree
), id
);
419 case QUAL_UNION_TYPE
:
423 for (f
= TYPE_FIELDS (new_tree
); f
; f
= DECL_CHAIN (f
))
425 t
= remap_decl (f
, id
);
426 DECL_CONTEXT (t
) = new_tree
;
430 TYPE_FIELDS (new_tree
) = nreverse (nf
);
436 /* Shouldn't have been thought variable sized. */
440 walk_tree (&TYPE_SIZE (new_tree
), copy_tree_body_r
, id
, NULL
);
441 walk_tree (&TYPE_SIZE_UNIT (new_tree
), copy_tree_body_r
, id
, NULL
);
447 remap_type (tree type
, copy_body_data
*id
)
455 /* See if we have remapped this type. */
456 node
= (tree
*) pointer_map_contains (id
->decl_map
, type
);
460 /* The type only needs remapping if it's variably modified. */
461 if (! variably_modified_type_p (type
, id
->src_fn
))
463 insert_decl_map (id
, type
, type
);
467 id
->remapping_type_depth
++;
468 tmp
= remap_type_1 (type
, id
);
469 id
->remapping_type_depth
--;
474 /* Return previously remapped type of TYPE in ID. Return NULL if TYPE
475 is NULL or TYPE has not been remapped before. */
478 remapped_type (tree type
, copy_body_data
*id
)
485 /* See if we have remapped this type. */
486 node
= (tree
*) pointer_map_contains (id
->decl_map
, type
);
493 /* The type only needs remapping if it's variably modified. */
494 /* Decide if DECL can be put into BLOCK_NONLOCAL_VARs. */
497 can_be_nonlocal (tree decl
, copy_body_data
*id
)
499 /* We can not duplicate function decls. */
500 if (TREE_CODE (decl
) == FUNCTION_DECL
)
503 /* Local static vars must be non-local or we get multiple declaration
505 if (TREE_CODE (decl
) == VAR_DECL
506 && !auto_var_in_fn_p (decl
, id
->src_fn
))
509 /* At the moment dwarf2out can handle only these types of nodes. We
510 can support more later. */
511 if (TREE_CODE (decl
) != VAR_DECL
&& TREE_CODE (decl
) != PARM_DECL
)
514 /* We must use global type. We call remapped_type instead of
515 remap_type since we don't want to remap this type here if it
516 hasn't been remapped before. */
517 if (TREE_TYPE (decl
) != remapped_type (TREE_TYPE (decl
), id
))
520 /* Wihtout SSA we can't tell if variable is used. */
521 if (!gimple_in_ssa_p (cfun
))
524 /* Live variables must be copied so we can attach DECL_RTL. */
532 remap_decls (tree decls
, VEC(tree
,gc
) **nonlocalized_list
, copy_body_data
*id
)
535 tree new_decls
= NULL_TREE
;
537 /* Remap its variables. */
538 for (old_var
= decls
; old_var
; old_var
= DECL_CHAIN (old_var
))
542 if (can_be_nonlocal (old_var
, id
))
544 if (TREE_CODE (old_var
) == VAR_DECL
545 && ! DECL_EXTERNAL (old_var
)
546 && (var_ann (old_var
) || !gimple_in_ssa_p (cfun
)))
547 add_local_decl (cfun
, old_var
);
548 if ((!optimize
|| debug_info_level
> DINFO_LEVEL_TERSE
)
549 && !DECL_IGNORED_P (old_var
)
550 && nonlocalized_list
)
551 VEC_safe_push (tree
, gc
, *nonlocalized_list
, old_var
);
555 /* Remap the variable. */
556 new_var
= remap_decl (old_var
, id
);
558 /* If we didn't remap this variable, we can't mess with its
559 TREE_CHAIN. If we remapped this variable to the return slot, it's
560 already declared somewhere else, so don't declare it here. */
562 if (new_var
== id
->retvar
)
566 if ((!optimize
|| debug_info_level
> DINFO_LEVEL_TERSE
)
567 && !DECL_IGNORED_P (old_var
)
568 && nonlocalized_list
)
569 VEC_safe_push (tree
, gc
, *nonlocalized_list
, old_var
);
573 gcc_assert (DECL_P (new_var
));
574 DECL_CHAIN (new_var
) = new_decls
;
577 /* Also copy value-expressions. */
578 if (TREE_CODE (new_var
) == VAR_DECL
579 && DECL_HAS_VALUE_EXPR_P (new_var
))
581 tree tem
= DECL_VALUE_EXPR (new_var
);
582 bool old_regimplify
= id
->regimplify
;
583 id
->remapping_type_depth
++;
584 walk_tree (&tem
, copy_tree_body_r
, id
, NULL
);
585 id
->remapping_type_depth
--;
586 id
->regimplify
= old_regimplify
;
587 SET_DECL_VALUE_EXPR (new_var
, tem
);
592 return nreverse (new_decls
);
595 /* Copy the BLOCK to contain remapped versions of the variables
596 therein. And hook the new block into the block-tree. */
599 remap_block (tree
*block
, copy_body_data
*id
)
604 /* Make the new block. */
606 new_block
= make_node (BLOCK
);
607 TREE_USED (new_block
) = TREE_USED (old_block
);
608 BLOCK_ABSTRACT_ORIGIN (new_block
) = old_block
;
609 BLOCK_SOURCE_LOCATION (new_block
) = BLOCK_SOURCE_LOCATION (old_block
);
610 BLOCK_NONLOCALIZED_VARS (new_block
)
611 = VEC_copy (tree
, gc
, BLOCK_NONLOCALIZED_VARS (old_block
));
614 /* Remap its variables. */
615 BLOCK_VARS (new_block
) = remap_decls (BLOCK_VARS (old_block
),
616 &BLOCK_NONLOCALIZED_VARS (new_block
),
619 if (id
->transform_lang_insert_block
)
620 id
->transform_lang_insert_block (new_block
);
622 /* Remember the remapped block. */
623 insert_decl_map (id
, old_block
, new_block
);
626 /* Copy the whole block tree and root it in id->block. */
628 remap_blocks (tree block
, copy_body_data
*id
)
631 tree new_tree
= block
;
636 remap_block (&new_tree
, id
);
637 gcc_assert (new_tree
!= block
);
638 for (t
= BLOCK_SUBBLOCKS (block
); t
; t
= BLOCK_CHAIN (t
))
639 prepend_lexical_block (new_tree
, remap_blocks (t
, id
));
640 /* Blocks are in arbitrary order, but make things slightly prettier and do
641 not swap order when producing a copy. */
642 BLOCK_SUBBLOCKS (new_tree
) = blocks_nreverse (BLOCK_SUBBLOCKS (new_tree
));
647 copy_statement_list (tree
*tp
)
649 tree_stmt_iterator oi
, ni
;
652 new_tree
= alloc_stmt_list ();
653 ni
= tsi_start (new_tree
);
654 oi
= tsi_start (*tp
);
655 TREE_TYPE (new_tree
) = TREE_TYPE (*tp
);
658 for (; !tsi_end_p (oi
); tsi_next (&oi
))
660 tree stmt
= tsi_stmt (oi
);
661 if (TREE_CODE (stmt
) == STATEMENT_LIST
)
662 copy_statement_list (&stmt
);
663 tsi_link_after (&ni
, stmt
, TSI_CONTINUE_LINKING
);
668 copy_bind_expr (tree
*tp
, int *walk_subtrees
, copy_body_data
*id
)
670 tree block
= BIND_EXPR_BLOCK (*tp
);
671 /* Copy (and replace) the statement. */
672 copy_tree_r (tp
, walk_subtrees
, NULL
);
675 remap_block (&block
, id
);
676 BIND_EXPR_BLOCK (*tp
) = block
;
679 if (BIND_EXPR_VARS (*tp
))
680 /* This will remap a lot of the same decls again, but this should be
682 BIND_EXPR_VARS (*tp
) = remap_decls (BIND_EXPR_VARS (*tp
), NULL
, id
);
686 /* Create a new gimple_seq by remapping all the statements in BODY
687 using the inlining information in ID. */
690 remap_gimple_seq (gimple_seq body
, copy_body_data
*id
)
692 gimple_stmt_iterator si
;
693 gimple_seq new_body
= NULL
;
695 for (si
= gsi_start (body
); !gsi_end_p (si
); gsi_next (&si
))
697 gimple new_stmt
= remap_gimple_stmt (gsi_stmt (si
), id
);
698 gimple_seq_add_stmt (&new_body
, new_stmt
);
705 /* Copy a GIMPLE_BIND statement STMT, remapping all the symbols in its
706 block using the mapping information in ID. */
709 copy_gimple_bind (gimple stmt
, copy_body_data
*id
)
712 tree new_block
, new_vars
;
713 gimple_seq body
, new_body
;
715 /* Copy the statement. Note that we purposely don't use copy_stmt
716 here because we need to remap statements as we copy. */
717 body
= gimple_bind_body (stmt
);
718 new_body
= remap_gimple_seq (body
, id
);
720 new_block
= gimple_bind_block (stmt
);
722 remap_block (&new_block
, id
);
724 /* This will remap a lot of the same decls again, but this should be
726 new_vars
= gimple_bind_vars (stmt
);
728 new_vars
= remap_decls (new_vars
, NULL
, id
);
730 new_bind
= gimple_build_bind (new_vars
, new_body
, new_block
);
736 /* Remap the GIMPLE operand pointed to by *TP. DATA is really a
737 'struct walk_stmt_info *'. DATA->INFO is a 'copy_body_data *'.
738 WALK_SUBTREES is used to indicate walk_gimple_op whether to keep
739 recursing into the children nodes of *TP. */
742 remap_gimple_op_r (tree
*tp
, int *walk_subtrees
, void *data
)
744 struct walk_stmt_info
*wi_p
= (struct walk_stmt_info
*) data
;
745 copy_body_data
*id
= (copy_body_data
*) wi_p
->info
;
746 tree fn
= id
->src_fn
;
748 if (TREE_CODE (*tp
) == SSA_NAME
)
750 *tp
= remap_ssa_name (*tp
, id
);
754 else if (auto_var_in_fn_p (*tp
, fn
))
756 /* Local variables and labels need to be replaced by equivalent
757 variables. We don't want to copy static variables; there's
758 only one of those, no matter how many times we inline the
759 containing function. Similarly for globals from an outer
763 /* Remap the declaration. */
764 new_decl
= remap_decl (*tp
, id
);
765 gcc_assert (new_decl
);
766 /* Replace this variable with the copy. */
767 STRIP_TYPE_NOPS (new_decl
);
768 /* ??? The C++ frontend uses void * pointer zero to initialize
769 any other type. This confuses the middle-end type verification.
770 As cloned bodies do not go through gimplification again the fixup
771 there doesn't trigger. */
772 if (TREE_CODE (new_decl
) == INTEGER_CST
773 && !useless_type_conversion_p (TREE_TYPE (*tp
), TREE_TYPE (new_decl
)))
774 new_decl
= fold_convert (TREE_TYPE (*tp
), new_decl
);
778 else if (TREE_CODE (*tp
) == STATEMENT_LIST
)
780 else if (TREE_CODE (*tp
) == SAVE_EXPR
)
782 else if (TREE_CODE (*tp
) == LABEL_DECL
783 && (!DECL_CONTEXT (*tp
)
784 || decl_function_context (*tp
) == id
->src_fn
))
785 /* These may need to be remapped for EH handling. */
786 *tp
= remap_decl (*tp
, id
);
787 else if (TYPE_P (*tp
))
788 /* Types may need remapping as well. */
789 *tp
= remap_type (*tp
, id
);
790 else if (CONSTANT_CLASS_P (*tp
))
792 /* If this is a constant, we have to copy the node iff the type
793 will be remapped. copy_tree_r will not copy a constant. */
794 tree new_type
= remap_type (TREE_TYPE (*tp
), id
);
796 if (new_type
== TREE_TYPE (*tp
))
799 else if (TREE_CODE (*tp
) == INTEGER_CST
)
800 *tp
= build_int_cst_wide (new_type
, TREE_INT_CST_LOW (*tp
),
801 TREE_INT_CST_HIGH (*tp
));
804 *tp
= copy_node (*tp
);
805 TREE_TYPE (*tp
) = new_type
;
810 /* Otherwise, just copy the node. Note that copy_tree_r already
811 knows not to copy VAR_DECLs, etc., so this is safe. */
812 if (TREE_CODE (*tp
) == MEM_REF
)
814 tree ptr
= TREE_OPERAND (*tp
, 0);
818 /* We need to re-canonicalize MEM_REFs from inline substitutions
819 that can happen when a pointer argument is an ADDR_EXPR.
820 Recurse here manually to allow that. */
821 walk_tree (&ptr
, remap_gimple_op_r
, data
, NULL
);
822 if ((tem
= maybe_fold_offset_to_reference (EXPR_LOCATION (*tp
),
824 TREE_OPERAND (*tp
, 1),
826 && TREE_THIS_VOLATILE (tem
) == TREE_THIS_VOLATILE (old
))
828 tree
*tem_basep
= &tem
;
829 while (handled_component_p (*tem_basep
))
830 tem_basep
= &TREE_OPERAND (*tem_basep
, 0);
831 if (TREE_CODE (*tem_basep
) == MEM_REF
)
833 = build2 (MEM_REF
, TREE_TYPE (*tem_basep
),
834 TREE_OPERAND (*tem_basep
, 0),
835 fold_convert (TREE_TYPE (TREE_OPERAND (*tp
, 1)),
836 TREE_OPERAND (*tem_basep
, 1)));
839 = build2 (MEM_REF
, TREE_TYPE (*tem_basep
),
840 build_fold_addr_expr (*tem_basep
),
842 (TREE_TYPE (TREE_OPERAND (*tp
, 1)), 0));
847 *tp
= fold_build2 (MEM_REF
, TREE_TYPE (*tp
),
848 ptr
, TREE_OPERAND (*tp
, 1));
849 TREE_THIS_VOLATILE (*tp
) = TREE_THIS_VOLATILE (old
);
850 TREE_THIS_NOTRAP (*tp
) = TREE_THIS_NOTRAP (old
);
852 TREE_NO_WARNING (*tp
) = TREE_NO_WARNING (old
);
857 /* Here is the "usual case". Copy this tree node, and then
858 tweak some special cases. */
859 copy_tree_r (tp
, walk_subtrees
, NULL
);
861 /* Global variables we haven't seen yet need to go into referenced
862 vars. If not referenced from types only. */
863 if (gimple_in_ssa_p (cfun
)
864 && TREE_CODE (*tp
) == VAR_DECL
865 && id
->remapping_type_depth
== 0
866 && !processing_debug_stmt
)
867 add_referenced_var (*tp
);
869 /* We should never have TREE_BLOCK set on non-statements. */
871 gcc_assert (!TREE_BLOCK (*tp
));
873 if (TREE_CODE (*tp
) != OMP_CLAUSE
)
874 TREE_TYPE (*tp
) = remap_type (TREE_TYPE (*tp
), id
);
876 if (TREE_CODE (*tp
) == TARGET_EXPR
&& TREE_OPERAND (*tp
, 3))
878 /* The copied TARGET_EXPR has never been expanded, even if the
879 original node was expanded already. */
880 TREE_OPERAND (*tp
, 1) = TREE_OPERAND (*tp
, 3);
881 TREE_OPERAND (*tp
, 3) = NULL_TREE
;
883 else if (TREE_CODE (*tp
) == ADDR_EXPR
)
885 /* Variable substitution need not be simple. In particular,
886 the MEM_REF substitution above. Make sure that
887 TREE_CONSTANT and friends are up-to-date. But make sure
888 to not improperly set TREE_BLOCK on some sub-expressions. */
889 int invariant
= is_gimple_min_invariant (*tp
);
890 tree block
= id
->block
;
891 id
->block
= NULL_TREE
;
892 walk_tree (&TREE_OPERAND (*tp
, 0), remap_gimple_op_r
, data
, NULL
);
894 recompute_tree_invariant_for_addr_expr (*tp
);
896 /* If this used to be invariant, but is not any longer,
897 then regimplification is probably needed. */
898 if (invariant
&& !is_gimple_min_invariant (*tp
))
899 id
->regimplify
= true;
905 /* Keep iterating. */
910 /* Called from copy_body_id via walk_tree. DATA is really a
911 `copy_body_data *'. */
914 copy_tree_body_r (tree
*tp
, int *walk_subtrees
, void *data
)
916 copy_body_data
*id
= (copy_body_data
*) data
;
917 tree fn
= id
->src_fn
;
920 /* Begin by recognizing trees that we'll completely rewrite for the
921 inlining context. Our output for these trees is completely
922 different from out input (e.g. RETURN_EXPR is deleted, and morphs
923 into an edge). Further down, we'll handle trees that get
924 duplicated and/or tweaked. */
926 /* When requested, RETURN_EXPRs should be transformed to just the
927 contained MODIFY_EXPR. The branch semantics of the return will
928 be handled elsewhere by manipulating the CFG rather than a statement. */
929 if (TREE_CODE (*tp
) == RETURN_EXPR
&& id
->transform_return_to_modify
)
931 tree assignment
= TREE_OPERAND (*tp
, 0);
933 /* If we're returning something, just turn that into an
934 assignment into the equivalent of the original RESULT_DECL.
935 If the "assignment" is just the result decl, the result
936 decl has already been set (e.g. a recent "foo (&result_decl,
937 ...)"); just toss the entire RETURN_EXPR. */
938 if (assignment
&& TREE_CODE (assignment
) == MODIFY_EXPR
)
940 /* Replace the RETURN_EXPR with (a copy of) the
941 MODIFY_EXPR hanging underneath. */
942 *tp
= copy_node (assignment
);
944 else /* Else the RETURN_EXPR returns no value. */
947 return (tree
) (void *)1;
950 else if (TREE_CODE (*tp
) == SSA_NAME
)
952 *tp
= remap_ssa_name (*tp
, id
);
957 /* Local variables and labels need to be replaced by equivalent
958 variables. We don't want to copy static variables; there's only
959 one of those, no matter how many times we inline the containing
960 function. Similarly for globals from an outer function. */
961 else if (auto_var_in_fn_p (*tp
, fn
))
965 /* Remap the declaration. */
966 new_decl
= remap_decl (*tp
, id
);
967 gcc_assert (new_decl
);
968 /* Replace this variable with the copy. */
969 STRIP_TYPE_NOPS (new_decl
);
973 else if (TREE_CODE (*tp
) == STATEMENT_LIST
)
974 copy_statement_list (tp
);
975 else if (TREE_CODE (*tp
) == SAVE_EXPR
976 || TREE_CODE (*tp
) == TARGET_EXPR
)
977 remap_save_expr (tp
, id
->decl_map
, walk_subtrees
);
978 else if (TREE_CODE (*tp
) == LABEL_DECL
979 && (! DECL_CONTEXT (*tp
)
980 || decl_function_context (*tp
) == id
->src_fn
))
981 /* These may need to be remapped for EH handling. */
982 *tp
= remap_decl (*tp
, id
);
983 else if (TREE_CODE (*tp
) == BIND_EXPR
)
984 copy_bind_expr (tp
, walk_subtrees
, id
);
985 /* Types may need remapping as well. */
986 else if (TYPE_P (*tp
))
987 *tp
= remap_type (*tp
, id
);
989 /* If this is a constant, we have to copy the node iff the type will be
990 remapped. copy_tree_r will not copy a constant. */
991 else if (CONSTANT_CLASS_P (*tp
))
993 tree new_type
= remap_type (TREE_TYPE (*tp
), id
);
995 if (new_type
== TREE_TYPE (*tp
))
998 else if (TREE_CODE (*tp
) == INTEGER_CST
)
999 *tp
= build_int_cst_wide (new_type
, TREE_INT_CST_LOW (*tp
),
1000 TREE_INT_CST_HIGH (*tp
));
1003 *tp
= copy_node (*tp
);
1004 TREE_TYPE (*tp
) = new_type
;
1008 /* Otherwise, just copy the node. Note that copy_tree_r already
1009 knows not to copy VAR_DECLs, etc., so this is safe. */
1012 /* Here we handle trees that are not completely rewritten.
1013 First we detect some inlining-induced bogosities for
1015 if (TREE_CODE (*tp
) == MODIFY_EXPR
1016 && TREE_OPERAND (*tp
, 0) == TREE_OPERAND (*tp
, 1)
1017 && (auto_var_in_fn_p (TREE_OPERAND (*tp
, 0), fn
)))
1019 /* Some assignments VAR = VAR; don't generate any rtl code
1020 and thus don't count as variable modification. Avoid
1021 keeping bogosities like 0 = 0. */
1022 tree decl
= TREE_OPERAND (*tp
, 0), value
;
1025 n
= (tree
*) pointer_map_contains (id
->decl_map
, decl
);
1029 STRIP_TYPE_NOPS (value
);
1030 if (TREE_CONSTANT (value
) || TREE_READONLY (value
))
1032 *tp
= build_empty_stmt (EXPR_LOCATION (*tp
));
1033 return copy_tree_body_r (tp
, walk_subtrees
, data
);
1037 else if (TREE_CODE (*tp
) == INDIRECT_REF
)
1039 /* Get rid of *& from inline substitutions that can happen when a
1040 pointer argument is an ADDR_EXPR. */
1041 tree decl
= TREE_OPERAND (*tp
, 0);
1044 n
= (tree
*) pointer_map_contains (id
->decl_map
, decl
);
1049 /* If we happen to get an ADDR_EXPR in n->value, strip
1050 it manually here as we'll eventually get ADDR_EXPRs
1051 which lie about their types pointed to. In this case
1052 build_fold_indirect_ref wouldn't strip the INDIRECT_REF,
1053 but we absolutely rely on that. As fold_indirect_ref
1054 does other useful transformations, try that first, though. */
1055 tree type
= TREE_TYPE (TREE_TYPE (*n
));
1056 if (id
->do_not_unshare
)
1059 new_tree
= unshare_expr (*n
);
1061 *tp
= gimple_fold_indirect_ref (new_tree
);
1064 if (TREE_CODE (new_tree
) == ADDR_EXPR
)
1066 *tp
= fold_indirect_ref_1 (EXPR_LOCATION (new_tree
),
1068 /* ??? We should either assert here or build
1069 a VIEW_CONVERT_EXPR instead of blindly leaking
1070 incompatible types to our IL. */
1072 *tp
= TREE_OPERAND (new_tree
, 0);
1076 *tp
= build1 (INDIRECT_REF
, type
, new_tree
);
1077 TREE_THIS_VOLATILE (*tp
) = TREE_THIS_VOLATILE (old
);
1078 TREE_SIDE_EFFECTS (*tp
) = TREE_SIDE_EFFECTS (old
);
1079 TREE_READONLY (*tp
) = TREE_READONLY (old
);
1080 TREE_THIS_NOTRAP (*tp
) = TREE_THIS_NOTRAP (old
);
1087 else if (TREE_CODE (*tp
) == MEM_REF
)
1089 /* We need to re-canonicalize MEM_REFs from inline substitutions
1090 that can happen when a pointer argument is an ADDR_EXPR. */
1091 tree decl
= TREE_OPERAND (*tp
, 0);
1094 n
= (tree
*) pointer_map_contains (id
->decl_map
, decl
);
1098 *tp
= fold_build2 (MEM_REF
, TREE_TYPE (*tp
),
1099 unshare_expr (*n
), TREE_OPERAND (*tp
, 1));
1100 TREE_THIS_VOLATILE (*tp
) = TREE_THIS_VOLATILE (old
);
1101 TREE_NO_WARNING (*tp
) = TREE_NO_WARNING (old
);
1107 /* Here is the "usual case". Copy this tree node, and then
1108 tweak some special cases. */
1109 copy_tree_r (tp
, walk_subtrees
, NULL
);
1111 /* Global variables we haven't seen yet needs to go into referenced
1112 vars. If not referenced from types or debug stmts only. */
1113 if (gimple_in_ssa_p (cfun
)
1114 && TREE_CODE (*tp
) == VAR_DECL
1115 && id
->remapping_type_depth
== 0
1116 && !processing_debug_stmt
)
1117 add_referenced_var (*tp
);
1119 /* If EXPR has block defined, map it to newly constructed block.
1120 When inlining we want EXPRs without block appear in the block
1121 of function call if we are not remapping a type. */
1124 new_block
= id
->remapping_type_depth
== 0 ? id
->block
: NULL
;
1125 if (TREE_BLOCK (*tp
))
1128 n
= (tree
*) pointer_map_contains (id
->decl_map
,
1130 gcc_assert (n
|| id
->remapping_type_depth
!= 0);
1134 TREE_BLOCK (*tp
) = new_block
;
1137 if (TREE_CODE (*tp
) != OMP_CLAUSE
)
1138 TREE_TYPE (*tp
) = remap_type (TREE_TYPE (*tp
), id
);
1140 /* The copied TARGET_EXPR has never been expanded, even if the
1141 original node was expanded already. */
1142 if (TREE_CODE (*tp
) == TARGET_EXPR
&& TREE_OPERAND (*tp
, 3))
1144 TREE_OPERAND (*tp
, 1) = TREE_OPERAND (*tp
, 3);
1145 TREE_OPERAND (*tp
, 3) = NULL_TREE
;
1148 /* Variable substitution need not be simple. In particular, the
1149 INDIRECT_REF substitution above. Make sure that TREE_CONSTANT
1150 and friends are up-to-date. */
1151 else if (TREE_CODE (*tp
) == ADDR_EXPR
)
1153 int invariant
= is_gimple_min_invariant (*tp
);
1154 walk_tree (&TREE_OPERAND (*tp
, 0), copy_tree_body_r
, id
, NULL
);
1156 /* Handle the case where we substituted an INDIRECT_REF
1157 into the operand of the ADDR_EXPR. */
1158 if (TREE_CODE (TREE_OPERAND (*tp
, 0)) == INDIRECT_REF
)
1159 *tp
= TREE_OPERAND (TREE_OPERAND (*tp
, 0), 0);
1161 recompute_tree_invariant_for_addr_expr (*tp
);
1163 /* If this used to be invariant, but is not any longer,
1164 then regimplification is probably needed. */
1165 if (invariant
&& !is_gimple_min_invariant (*tp
))
1166 id
->regimplify
= true;
1172 /* Keep iterating. */
1176 /* Helper for remap_gimple_stmt. Given an EH region number for the
1177 source function, map that to the duplicate EH region number in
1178 the destination function. */
1181 remap_eh_region_nr (int old_nr
, copy_body_data
*id
)
1183 eh_region old_r
, new_r
;
1186 old_r
= get_eh_region_from_number_fn (id
->src_cfun
, old_nr
);
1187 slot
= pointer_map_contains (id
->eh_map
, old_r
);
1188 new_r
= (eh_region
) *slot
;
1190 return new_r
->index
;
1193 /* Similar, but operate on INTEGER_CSTs. */
1196 remap_eh_region_tree_nr (tree old_t_nr
, copy_body_data
*id
)
1200 old_nr
= tree_low_cst (old_t_nr
, 0);
1201 new_nr
= remap_eh_region_nr (old_nr
, id
);
1203 return build_int_cst (NULL
, new_nr
);
1206 /* Helper for copy_bb. Remap statement STMT using the inlining
1207 information in ID. Return the new statement copy. */
1210 remap_gimple_stmt (gimple stmt
, copy_body_data
*id
)
1213 struct walk_stmt_info wi
;
1215 bool skip_first
= false;
1217 /* Begin by recognizing trees that we'll completely rewrite for the
1218 inlining context. Our output for these trees is completely
1219 different from out input (e.g. RETURN_EXPR is deleted, and morphs
1220 into an edge). Further down, we'll handle trees that get
1221 duplicated and/or tweaked. */
1223 /* When requested, GIMPLE_RETURNs should be transformed to just the
1224 contained GIMPLE_ASSIGN. The branch semantics of the return will
1225 be handled elsewhere by manipulating the CFG rather than the
1227 if (gimple_code (stmt
) == GIMPLE_RETURN
&& id
->transform_return_to_modify
)
1229 tree retval
= gimple_return_retval (stmt
);
1231 /* If we're returning something, just turn that into an
1232 assignment into the equivalent of the original RESULT_DECL.
1233 If RETVAL is just the result decl, the result decl has
1234 already been set (e.g. a recent "foo (&result_decl, ...)");
1235 just toss the entire GIMPLE_RETURN. */
1237 && (TREE_CODE (retval
) != RESULT_DECL
1238 && (TREE_CODE (retval
) != SSA_NAME
1239 || TREE_CODE (SSA_NAME_VAR (retval
)) != RESULT_DECL
)))
1241 copy
= gimple_build_assign (id
->retvar
, retval
);
1242 /* id->retvar is already substituted. Skip it on later remapping. */
1246 return gimple_build_nop ();
1248 else if (gimple_has_substatements (stmt
))
1252 /* When cloning bodies from the C++ front end, we will be handed bodies
1253 in High GIMPLE form. Handle here all the High GIMPLE statements that
1254 have embedded statements. */
1255 switch (gimple_code (stmt
))
1258 copy
= copy_gimple_bind (stmt
, id
);
1262 s1
= remap_gimple_seq (gimple_catch_handler (stmt
), id
);
1263 copy
= gimple_build_catch (gimple_catch_types (stmt
), s1
);
1266 case GIMPLE_EH_FILTER
:
1267 s1
= remap_gimple_seq (gimple_eh_filter_failure (stmt
), id
);
1268 copy
= gimple_build_eh_filter (gimple_eh_filter_types (stmt
), s1
);
1272 s1
= remap_gimple_seq (gimple_try_eval (stmt
), id
);
1273 s2
= remap_gimple_seq (gimple_try_cleanup (stmt
), id
);
1274 copy
= gimple_build_try (s1
, s2
, gimple_try_kind (stmt
));
1277 case GIMPLE_WITH_CLEANUP_EXPR
:
1278 s1
= remap_gimple_seq (gimple_wce_cleanup (stmt
), id
);
1279 copy
= gimple_build_wce (s1
);
1282 case GIMPLE_OMP_PARALLEL
:
1283 s1
= remap_gimple_seq (gimple_omp_body (stmt
), id
);
1284 copy
= gimple_build_omp_parallel
1286 gimple_omp_parallel_clauses (stmt
),
1287 gimple_omp_parallel_child_fn (stmt
),
1288 gimple_omp_parallel_data_arg (stmt
));
1291 case GIMPLE_OMP_TASK
:
1292 s1
= remap_gimple_seq (gimple_omp_body (stmt
), id
);
1293 copy
= gimple_build_omp_task
1295 gimple_omp_task_clauses (stmt
),
1296 gimple_omp_task_child_fn (stmt
),
1297 gimple_omp_task_data_arg (stmt
),
1298 gimple_omp_task_copy_fn (stmt
),
1299 gimple_omp_task_arg_size (stmt
),
1300 gimple_omp_task_arg_align (stmt
));
1303 case GIMPLE_OMP_FOR
:
1304 s1
= remap_gimple_seq (gimple_omp_body (stmt
), id
);
1305 s2
= remap_gimple_seq (gimple_omp_for_pre_body (stmt
), id
);
1306 copy
= gimple_build_omp_for (s1
, gimple_omp_for_clauses (stmt
),
1307 gimple_omp_for_collapse (stmt
), s2
);
1310 for (i
= 0; i
< gimple_omp_for_collapse (stmt
); i
++)
1312 gimple_omp_for_set_index (copy
, i
,
1313 gimple_omp_for_index (stmt
, i
));
1314 gimple_omp_for_set_initial (copy
, i
,
1315 gimple_omp_for_initial (stmt
, i
));
1316 gimple_omp_for_set_final (copy
, i
,
1317 gimple_omp_for_final (stmt
, i
));
1318 gimple_omp_for_set_incr (copy
, i
,
1319 gimple_omp_for_incr (stmt
, i
));
1320 gimple_omp_for_set_cond (copy
, i
,
1321 gimple_omp_for_cond (stmt
, i
));
1326 case GIMPLE_OMP_MASTER
:
1327 s1
= remap_gimple_seq (gimple_omp_body (stmt
), id
);
1328 copy
= gimple_build_omp_master (s1
);
1331 case GIMPLE_OMP_ORDERED
:
1332 s1
= remap_gimple_seq (gimple_omp_body (stmt
), id
);
1333 copy
= gimple_build_omp_ordered (s1
);
1336 case GIMPLE_OMP_SECTION
:
1337 s1
= remap_gimple_seq (gimple_omp_body (stmt
), id
);
1338 copy
= gimple_build_omp_section (s1
);
1341 case GIMPLE_OMP_SECTIONS
:
1342 s1
= remap_gimple_seq (gimple_omp_body (stmt
), id
);
1343 copy
= gimple_build_omp_sections
1344 (s1
, gimple_omp_sections_clauses (stmt
));
1347 case GIMPLE_OMP_SINGLE
:
1348 s1
= remap_gimple_seq (gimple_omp_body (stmt
), id
);
1349 copy
= gimple_build_omp_single
1350 (s1
, gimple_omp_single_clauses (stmt
));
1353 case GIMPLE_OMP_CRITICAL
:
1354 s1
= remap_gimple_seq (gimple_omp_body (stmt
), id
);
1356 = gimple_build_omp_critical (s1
, gimple_omp_critical_name (stmt
));
1365 if (gimple_assign_copy_p (stmt
)
1366 && gimple_assign_lhs (stmt
) == gimple_assign_rhs1 (stmt
)
1367 && auto_var_in_fn_p (gimple_assign_lhs (stmt
), id
->src_fn
))
1369 /* Here we handle statements that are not completely rewritten.
1370 First we detect some inlining-induced bogosities for
1373 /* Some assignments VAR = VAR; don't generate any rtl code
1374 and thus don't count as variable modification. Avoid
1375 keeping bogosities like 0 = 0. */
1376 tree decl
= gimple_assign_lhs (stmt
), value
;
1379 n
= (tree
*) pointer_map_contains (id
->decl_map
, decl
);
1383 STRIP_TYPE_NOPS (value
);
1384 if (TREE_CONSTANT (value
) || TREE_READONLY (value
))
1385 return gimple_build_nop ();
1389 if (gimple_debug_bind_p (stmt
))
1391 copy
= gimple_build_debug_bind (gimple_debug_bind_get_var (stmt
),
1392 gimple_debug_bind_get_value (stmt
),
1394 VEC_safe_push (gimple
, heap
, id
->debug_stmts
, copy
);
1398 /* Create a new deep copy of the statement. */
1399 copy
= gimple_copy (stmt
);
1401 /* Remap the region numbers for __builtin_eh_{pointer,filter},
1402 RESX and EH_DISPATCH. */
1404 switch (gimple_code (copy
))
1408 tree r
, fndecl
= gimple_call_fndecl (copy
);
1409 if (fndecl
&& DECL_BUILT_IN_CLASS (fndecl
) == BUILT_IN_NORMAL
)
1410 switch (DECL_FUNCTION_CODE (fndecl
))
1412 case BUILT_IN_EH_COPY_VALUES
:
1413 r
= gimple_call_arg (copy
, 1);
1414 r
= remap_eh_region_tree_nr (r
, id
);
1415 gimple_call_set_arg (copy
, 1, r
);
1418 case BUILT_IN_EH_POINTER
:
1419 case BUILT_IN_EH_FILTER
:
1420 r
= gimple_call_arg (copy
, 0);
1421 r
= remap_eh_region_tree_nr (r
, id
);
1422 gimple_call_set_arg (copy
, 0, r
);
1429 /* Reset alias info if we didn't apply measures to
1430 keep it valid over inlining by setting DECL_PT_UID. */
1431 if (!id
->src_cfun
->gimple_df
1432 || !id
->src_cfun
->gimple_df
->ipa_pta
)
1433 gimple_call_reset_alias_info (copy
);
1439 int r
= gimple_resx_region (copy
);
1440 r
= remap_eh_region_nr (r
, id
);
1441 gimple_resx_set_region (copy
, r
);
1445 case GIMPLE_EH_DISPATCH
:
1447 int r
= gimple_eh_dispatch_region (copy
);
1448 r
= remap_eh_region_nr (r
, id
);
1449 gimple_eh_dispatch_set_region (copy
, r
);
1458 /* If STMT has a block defined, map it to the newly constructed
1459 block. When inlining we want statements without a block to
1460 appear in the block of the function call. */
1461 new_block
= id
->block
;
1462 if (gimple_block (copy
))
1465 n
= (tree
*) pointer_map_contains (id
->decl_map
, gimple_block (copy
));
1470 gimple_set_block (copy
, new_block
);
1472 if (gimple_debug_bind_p (copy
))
1475 /* Remap all the operands in COPY. */
1476 memset (&wi
, 0, sizeof (wi
));
1479 walk_tree (gimple_op_ptr (copy
, 1), remap_gimple_op_r
, &wi
, NULL
);
1481 walk_gimple_op (copy
, remap_gimple_op_r
, &wi
);
1483 /* Clear the copied virtual operands. We are not remapping them here
1484 but are going to recreate them from scratch. */
1485 if (gimple_has_mem_ops (copy
))
1487 gimple_set_vdef (copy
, NULL_TREE
);
1488 gimple_set_vuse (copy
, NULL_TREE
);
1495 /* Copy basic block, scale profile accordingly. Edges will be taken care of
1499 copy_bb (copy_body_data
*id
, basic_block bb
, int frequency_scale
,
1500 gcov_type count_scale
)
1502 gimple_stmt_iterator gsi
, copy_gsi
, seq_gsi
;
1503 basic_block copy_basic_block
;
1508 /* Search for previous copied basic block. */
1511 prev
= prev
->prev_bb
;
1513 /* create_basic_block() will append every new block to
1514 basic_block_info automatically. */
1515 copy_basic_block
= create_basic_block (NULL
, (void *) 0,
1516 (basic_block
) prev
->aux
);
1517 copy_basic_block
->count
= bb
->count
* count_scale
/ REG_BR_PROB_BASE
;
1519 /* We are going to rebuild frequencies from scratch. These values
1520 have just small importance to drive canonicalize_loop_headers. */
1521 freq
= ((gcov_type
)bb
->frequency
* frequency_scale
/ REG_BR_PROB_BASE
);
1523 /* We recompute frequencies after inlining, so this is quite safe. */
1524 if (freq
> BB_FREQ_MAX
)
1526 copy_basic_block
->frequency
= freq
;
1528 copy_gsi
= gsi_start_bb (copy_basic_block
);
1530 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
1532 gimple stmt
= gsi_stmt (gsi
);
1533 gimple orig_stmt
= stmt
;
1535 id
->regimplify
= false;
1536 stmt
= remap_gimple_stmt (stmt
, id
);
1537 if (gimple_nop_p (stmt
))
1540 gimple_duplicate_stmt_histograms (cfun
, stmt
, id
->src_cfun
, orig_stmt
);
1543 /* With return slot optimization we can end up with
1544 non-gimple (foo *)&this->m, fix that here. */
1545 if (is_gimple_assign (stmt
)
1546 && gimple_assign_rhs_code (stmt
) == NOP_EXPR
1547 && !is_gimple_val (gimple_assign_rhs1 (stmt
)))
1550 new_rhs
= force_gimple_operand_gsi (&seq_gsi
,
1551 gimple_assign_rhs1 (stmt
),
1553 GSI_CONTINUE_LINKING
);
1554 gimple_assign_set_rhs1 (stmt
, new_rhs
);
1555 id
->regimplify
= false;
1558 gsi_insert_after (&seq_gsi
, stmt
, GSI_NEW_STMT
);
1561 gimple_regimplify_operands (stmt
, &seq_gsi
);
1563 /* If copy_basic_block has been empty at the start of this iteration,
1564 call gsi_start_bb again to get at the newly added statements. */
1565 if (gsi_end_p (copy_gsi
))
1566 copy_gsi
= gsi_start_bb (copy_basic_block
);
1568 gsi_next (©_gsi
);
1570 /* Process the new statement. The call to gimple_regimplify_operands
1571 possibly turned the statement into multiple statements, we
1572 need to process all of them. */
1577 stmt
= gsi_stmt (copy_gsi
);
1578 if (is_gimple_call (stmt
)
1579 && gimple_call_va_arg_pack_p (stmt
)
1582 /* __builtin_va_arg_pack () should be replaced by
1583 all arguments corresponding to ... in the caller. */
1586 VEC(tree
, heap
) *argarray
;
1587 size_t nargs
= gimple_call_num_args (id
->gimple_call
);
1590 for (p
= DECL_ARGUMENTS (id
->src_fn
); p
; p
= DECL_CHAIN (p
))
1593 /* Create the new array of arguments. */
1594 n
= nargs
+ gimple_call_num_args (stmt
);
1595 argarray
= VEC_alloc (tree
, heap
, n
);
1596 VEC_safe_grow (tree
, heap
, argarray
, n
);
1598 /* Copy all the arguments before '...' */
1599 memcpy (VEC_address (tree
, argarray
),
1600 gimple_call_arg_ptr (stmt
, 0),
1601 gimple_call_num_args (stmt
) * sizeof (tree
));
1603 /* Append the arguments passed in '...' */
1604 memcpy (VEC_address(tree
, argarray
) + gimple_call_num_args (stmt
),
1605 gimple_call_arg_ptr (id
->gimple_call
, 0)
1606 + (gimple_call_num_args (id
->gimple_call
) - nargs
),
1607 nargs
* sizeof (tree
));
1609 new_call
= gimple_build_call_vec (gimple_call_fn (stmt
),
1612 VEC_free (tree
, heap
, argarray
);
1614 /* Copy all GIMPLE_CALL flags, location and block, except
1615 GF_CALL_VA_ARG_PACK. */
1616 gimple_call_copy_flags (new_call
, stmt
);
1617 gimple_call_set_va_arg_pack (new_call
, false);
1618 gimple_set_location (new_call
, gimple_location (stmt
));
1619 gimple_set_block (new_call
, gimple_block (stmt
));
1620 gimple_call_set_lhs (new_call
, gimple_call_lhs (stmt
));
1622 gsi_replace (©_gsi
, new_call
, false);
1625 else if (is_gimple_call (stmt
)
1627 && (decl
= gimple_call_fndecl (stmt
))
1628 && DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
1629 && DECL_FUNCTION_CODE (decl
) == BUILT_IN_VA_ARG_PACK_LEN
)
1631 /* __builtin_va_arg_pack_len () should be replaced by
1632 the number of anonymous arguments. */
1633 size_t nargs
= gimple_call_num_args (id
->gimple_call
);
1637 for (p
= DECL_ARGUMENTS (id
->src_fn
); p
; p
= DECL_CHAIN (p
))
1640 count
= build_int_cst (integer_type_node
, nargs
);
1641 new_stmt
= gimple_build_assign (gimple_call_lhs (stmt
), count
);
1642 gsi_replace (©_gsi
, new_stmt
, false);
1646 /* Statements produced by inlining can be unfolded, especially
1647 when we constant propagated some operands. We can't fold
1648 them right now for two reasons:
1649 1) folding require SSA_NAME_DEF_STMTs to be correct
1650 2) we can't change function calls to builtins.
1651 So we just mark statement for later folding. We mark
1652 all new statements, instead just statements that has changed
1653 by some nontrivial substitution so even statements made
1654 foldable indirectly are updated. If this turns out to be
1655 expensive, copy_body can be told to watch for nontrivial
1657 if (id
->statements_to_fold
)
1658 pointer_set_insert (id
->statements_to_fold
, stmt
);
1660 /* We're duplicating a CALL_EXPR. Find any corresponding
1661 callgraph edges and update or duplicate them. */
1662 if (is_gimple_call (stmt
))
1664 struct cgraph_edge
*edge
;
1667 switch (id
->transform_call_graph_edges
)
1669 case CB_CGE_DUPLICATE
:
1670 edge
= cgraph_edge (id
->src_node
, orig_stmt
);
1673 int edge_freq
= edge
->frequency
;
1674 edge
= cgraph_clone_edge (edge
, id
->dst_node
, stmt
,
1676 REG_BR_PROB_BASE
, CGRAPH_FREQ_BASE
,
1677 edge
->frequency
, true);
1678 /* We could also just rescale the frequency, but
1679 doing so would introduce roundoff errors and make
1680 verifier unhappy. */
1682 = compute_call_stmt_bb_frequency (id
->dst_node
->decl
,
1685 && profile_status_for_function (cfun
) != PROFILE_ABSENT
1686 && (edge_freq
> edge
->frequency
+ 10
1687 || edge_freq
< edge
->frequency
- 10))
1689 fprintf (dump_file
, "Edge frequency estimated by "
1690 "cgraph %i diverge from inliner's estimate %i\n",
1694 "Orig bb: %i, orig bb freq %i, new bb freq %i\n",
1697 copy_basic_block
->frequency
);
1699 stmt
= cgraph_redirect_edge_call_stmt_to_callee (edge
);
1703 case CB_CGE_MOVE_CLONES
:
1704 cgraph_set_call_stmt_including_clones (id
->dst_node
,
1706 edge
= cgraph_edge (id
->dst_node
, stmt
);
1710 edge
= cgraph_edge (id
->dst_node
, orig_stmt
);
1712 cgraph_set_call_stmt (edge
, stmt
);
1719 /* Constant propagation on argument done during inlining
1720 may create new direct call. Produce an edge for it. */
1722 || (edge
->indirect_inlining_edge
1723 && id
->transform_call_graph_edges
== CB_CGE_MOVE_CLONES
))
1724 && (fn
= gimple_call_fndecl (stmt
)) != NULL
)
1726 struct cgraph_node
*dest
= cgraph_node (fn
);
1728 /* We have missing edge in the callgraph. This can happen
1729 when previous inlining turned an indirect call into a
1730 direct call by constant propagating arguments or we are
1731 producing dead clone (for further cloning). In all
1732 other cases we hit a bug (incorrect node sharing is the
1733 most common reason for missing edges). */
1734 gcc_assert (dest
->needed
|| !dest
->analyzed
1735 || dest
->address_taken
1736 || !id
->src_node
->analyzed
1737 || !id
->dst_node
->analyzed
);
1738 if (id
->transform_call_graph_edges
== CB_CGE_MOVE_CLONES
)
1739 cgraph_create_edge_including_clones
1740 (id
->dst_node
, dest
, orig_stmt
, stmt
, bb
->count
,
1741 compute_call_stmt_bb_frequency (id
->dst_node
->decl
,
1743 bb
->loop_depth
, CIF_ORIGINALLY_INDIRECT_CALL
);
1745 cgraph_create_edge (id
->dst_node
, dest
, stmt
,
1747 compute_call_stmt_bb_frequency
1748 (id
->dst_node
->decl
, copy_basic_block
),
1749 bb
->loop_depth
)->inline_failed
1750 = CIF_ORIGINALLY_INDIRECT_CALL
;
1753 fprintf (dump_file
, "Created new direct edge to %s\n",
1754 cgraph_node_name (dest
));
1758 flags
= gimple_call_flags (stmt
);
1759 if (flags
& ECF_MAY_BE_ALLOCA
)
1760 cfun
->calls_alloca
= true;
1761 if (flags
& ECF_RETURNS_TWICE
)
1762 cfun
->calls_setjmp
= true;
1765 maybe_duplicate_eh_stmt_fn (cfun
, stmt
, id
->src_cfun
, orig_stmt
,
1766 id
->eh_map
, id
->eh_lp_nr
);
1768 if (gimple_in_ssa_p (cfun
) && !is_gimple_debug (stmt
))
1773 find_new_referenced_vars (gsi_stmt (copy_gsi
));
1774 FOR_EACH_SSA_TREE_OPERAND (def
, stmt
, i
, SSA_OP_DEF
)
1775 if (TREE_CODE (def
) == SSA_NAME
)
1776 SSA_NAME_DEF_STMT (def
) = stmt
;
1779 gsi_next (©_gsi
);
1781 while (!gsi_end_p (copy_gsi
));
1783 copy_gsi
= gsi_last_bb (copy_basic_block
);
1786 return copy_basic_block
;
1789 /* Inserting Single Entry Multiple Exit region in SSA form into code in SSA
1790 form is quite easy, since dominator relationship for old basic blocks does
1793 There is however exception where inlining might change dominator relation
1794 across EH edges from basic block within inlined functions destinating
1795 to landing pads in function we inline into.
1797 The function fills in PHI_RESULTs of such PHI nodes if they refer
1798 to gimple regs. Otherwise, the function mark PHI_RESULT of such
1799 PHI nodes for renaming. For non-gimple regs, renaming is safe: the
1800 EH edges are abnormal and SSA_NAME_OCCURS_IN_ABNORMAL_PHI must be
1801 set, and this means that there will be no overlapping live ranges
1802 for the underlying symbol.
1804 This might change in future if we allow redirecting of EH edges and
1805 we might want to change way build CFG pre-inlining to include
1806 all the possible edges then. */
1808 update_ssa_across_abnormal_edges (basic_block bb
, basic_block ret_bb
,
1809 bool can_throw
, bool nonlocal_goto
)
1814 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1816 || ((basic_block
)e
->dest
->aux
)->index
== ENTRY_BLOCK
)
1819 gimple_stmt_iterator si
;
1822 gcc_assert (e
->flags
& EDGE_EH
);
1825 gcc_assert (!(e
->flags
& EDGE_EH
));
1827 for (si
= gsi_start_phis (e
->dest
); !gsi_end_p (si
); gsi_next (&si
))
1831 phi
= gsi_stmt (si
);
1833 /* There shouldn't be any PHI nodes in the ENTRY_BLOCK. */
1834 gcc_assert (!e
->dest
->aux
);
1836 gcc_assert ((e
->flags
& EDGE_EH
)
1837 || SSA_NAME_OCCURS_IN_ABNORMAL_PHI (PHI_RESULT (phi
)));
1839 if (!is_gimple_reg (PHI_RESULT (phi
)))
1841 mark_sym_for_renaming (SSA_NAME_VAR (PHI_RESULT (phi
)));
1845 re
= find_edge (ret_bb
, e
->dest
);
1847 gcc_assert ((re
->flags
& (EDGE_EH
| EDGE_ABNORMAL
))
1848 == (e
->flags
& (EDGE_EH
| EDGE_ABNORMAL
)));
1850 SET_USE (PHI_ARG_DEF_PTR_FROM_EDGE (phi
, e
),
1851 USE_FROM_PTR (PHI_ARG_DEF_PTR_FROM_EDGE (phi
, re
)));
1857 /* Copy edges from BB into its copy constructed earlier, scale profile
1858 accordingly. Edges will be taken care of later. Assume aux
1859 pointers to point to the copies of each BB. Return true if any
1860 debug stmts are left after a statement that must end the basic block. */
1863 copy_edges_for_bb (basic_block bb
, gcov_type count_scale
, basic_block ret_bb
)
1865 basic_block new_bb
= (basic_block
) bb
->aux
;
1868 gimple_stmt_iterator si
;
1870 bool need_debug_cleanup
= false;
1872 /* Use the indices from the original blocks to create edges for the
1874 FOR_EACH_EDGE (old_edge
, ei
, bb
->succs
)
1875 if (!(old_edge
->flags
& EDGE_EH
))
1879 flags
= old_edge
->flags
;
1881 /* Return edges do get a FALLTHRU flag when the get inlined. */
1882 if (old_edge
->dest
->index
== EXIT_BLOCK
&& !old_edge
->flags
1883 && old_edge
->dest
->aux
!= EXIT_BLOCK_PTR
)
1884 flags
|= EDGE_FALLTHRU
;
1885 new_edge
= make_edge (new_bb
, (basic_block
) old_edge
->dest
->aux
, flags
);
1886 new_edge
->count
= old_edge
->count
* count_scale
/ REG_BR_PROB_BASE
;
1887 new_edge
->probability
= old_edge
->probability
;
1890 if (bb
->index
== ENTRY_BLOCK
|| bb
->index
== EXIT_BLOCK
)
1893 for (si
= gsi_start_bb (new_bb
); !gsi_end_p (si
);)
1896 bool can_throw
, nonlocal_goto
;
1898 copy_stmt
= gsi_stmt (si
);
1899 if (!is_gimple_debug (copy_stmt
))
1901 update_stmt (copy_stmt
);
1902 if (gimple_in_ssa_p (cfun
))
1903 mark_symbols_for_renaming (copy_stmt
);
1906 /* Do this before the possible split_block. */
1909 /* If this tree could throw an exception, there are two
1910 cases where we need to add abnormal edge(s): the
1911 tree wasn't in a region and there is a "current
1912 region" in the caller; or the original tree had
1913 EH edges. In both cases split the block after the tree,
1914 and add abnormal edge(s) as needed; we need both
1915 those from the callee and the caller.
1916 We check whether the copy can throw, because the const
1917 propagation can change an INDIRECT_REF which throws
1918 into a COMPONENT_REF which doesn't. If the copy
1919 can throw, the original could also throw. */
1920 can_throw
= stmt_can_throw_internal (copy_stmt
);
1921 nonlocal_goto
= stmt_can_make_abnormal_goto (copy_stmt
);
1923 if (can_throw
|| nonlocal_goto
)
1925 if (!gsi_end_p (si
))
1927 while (!gsi_end_p (si
) && is_gimple_debug (gsi_stmt (si
)))
1930 need_debug_cleanup
= true;
1932 if (!gsi_end_p (si
))
1933 /* Note that bb's predecessor edges aren't necessarily
1934 right at this point; split_block doesn't care. */
1936 edge e
= split_block (new_bb
, copy_stmt
);
1939 new_bb
->aux
= e
->src
->aux
;
1940 si
= gsi_start_bb (new_bb
);
1944 if (gimple_code (copy_stmt
) == GIMPLE_EH_DISPATCH
)
1945 make_eh_dispatch_edges (copy_stmt
);
1947 make_eh_edges (copy_stmt
);
1950 make_abnormal_goto_edges (gimple_bb (copy_stmt
), true);
1952 if ((can_throw
|| nonlocal_goto
)
1953 && gimple_in_ssa_p (cfun
))
1954 update_ssa_across_abnormal_edges (gimple_bb (copy_stmt
), ret_bb
,
1955 can_throw
, nonlocal_goto
);
1957 return need_debug_cleanup
;
1960 /* Copy the PHIs. All blocks and edges are copied, some blocks
1961 was possibly split and new outgoing EH edges inserted.
1962 BB points to the block of original function and AUX pointers links
1963 the original and newly copied blocks. */
1966 copy_phis_for_bb (basic_block bb
, copy_body_data
*id
)
1968 basic_block
const new_bb
= (basic_block
) bb
->aux
;
1971 gimple_stmt_iterator si
;
1973 bool inserted
= false;
1975 for (si
= gsi_start (phi_nodes (bb
)); !gsi_end_p (si
); gsi_next (&si
))
1980 phi
= gsi_stmt (si
);
1981 res
= PHI_RESULT (phi
);
1983 if (is_gimple_reg (res
))
1985 walk_tree (&new_res
, copy_tree_body_r
, id
, NULL
);
1986 SSA_NAME_DEF_STMT (new_res
)
1987 = new_phi
= create_phi_node (new_res
, new_bb
);
1988 FOR_EACH_EDGE (new_edge
, ei
, new_bb
->preds
)
1990 edge old_edge
= find_edge ((basic_block
) new_edge
->src
->aux
, bb
);
1993 tree block
= id
->block
;
1996 /* When doing partial cloning, we allow PHIs on the entry block
1997 as long as all the arguments are the same. Find any input
1998 edge to see argument to copy. */
2000 FOR_EACH_EDGE (old_edge
, ei2
, bb
->preds
)
2001 if (!old_edge
->src
->aux
)
2004 arg
= PHI_ARG_DEF_FROM_EDGE (phi
, old_edge
);
2006 id
->block
= NULL_TREE
;
2007 walk_tree (&new_arg
, copy_tree_body_r
, id
, NULL
);
2009 gcc_assert (new_arg
);
2010 /* With return slot optimization we can end up with
2011 non-gimple (foo *)&this->m, fix that here. */
2012 if (TREE_CODE (new_arg
) != SSA_NAME
2013 && TREE_CODE (new_arg
) != FUNCTION_DECL
2014 && !is_gimple_val (new_arg
))
2016 gimple_seq stmts
= NULL
;
2017 new_arg
= force_gimple_operand (new_arg
, &stmts
, true, NULL
);
2018 gsi_insert_seq_on_edge (new_edge
, stmts
);
2021 add_phi_arg (new_phi
, new_arg
, new_edge
,
2022 gimple_phi_arg_location_from_edge (phi
, old_edge
));
2027 /* Commit the delayed edge insertions. */
2029 FOR_EACH_EDGE (new_edge
, ei
, new_bb
->preds
)
2030 gsi_commit_one_edge_insert (new_edge
, NULL
);
2034 /* Wrapper for remap_decl so it can be used as a callback. */
2037 remap_decl_1 (tree decl
, void *data
)
2039 return remap_decl (decl
, (copy_body_data
*) data
);
2042 /* Build struct function and associated datastructures for the new clone
2043 NEW_FNDECL to be build. CALLEE_FNDECL is the original */
2046 initialize_cfun (tree new_fndecl
, tree callee_fndecl
, gcov_type count
)
2048 struct function
*src_cfun
= DECL_STRUCT_FUNCTION (callee_fndecl
);
2049 gcov_type count_scale
;
2051 if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun
)->count
)
2052 count_scale
= (REG_BR_PROB_BASE
* count
2053 / ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun
)->count
);
2055 count_scale
= REG_BR_PROB_BASE
;
2057 /* Register specific tree functions. */
2058 gimple_register_cfg_hooks ();
2060 /* Get clean struct function. */
2061 push_struct_function (new_fndecl
);
2063 /* We will rebuild these, so just sanity check that they are empty. */
2064 gcc_assert (VALUE_HISTOGRAMS (cfun
) == NULL
);
2065 gcc_assert (cfun
->local_decls
== NULL
);
2066 gcc_assert (cfun
->cfg
== NULL
);
2067 gcc_assert (cfun
->decl
== new_fndecl
);
2069 /* Copy items we preserve during cloning. */
2070 cfun
->static_chain_decl
= src_cfun
->static_chain_decl
;
2071 cfun
->nonlocal_goto_save_area
= src_cfun
->nonlocal_goto_save_area
;
2072 cfun
->function_end_locus
= src_cfun
->function_end_locus
;
2073 cfun
->curr_properties
= src_cfun
->curr_properties
;
2074 cfun
->last_verified
= src_cfun
->last_verified
;
2075 cfun
->va_list_gpr_size
= src_cfun
->va_list_gpr_size
;
2076 cfun
->va_list_fpr_size
= src_cfun
->va_list_fpr_size
;
2077 cfun
->has_nonlocal_label
= src_cfun
->has_nonlocal_label
;
2078 cfun
->stdarg
= src_cfun
->stdarg
;
2079 cfun
->dont_save_pending_sizes_p
= src_cfun
->dont_save_pending_sizes_p
;
2080 cfun
->after_inlining
= src_cfun
->after_inlining
;
2081 cfun
->can_throw_non_call_exceptions
2082 = src_cfun
->can_throw_non_call_exceptions
;
2083 cfun
->returns_struct
= src_cfun
->returns_struct
;
2084 cfun
->returns_pcc_struct
= src_cfun
->returns_pcc_struct
;
2085 cfun
->after_tree_profile
= src_cfun
->after_tree_profile
;
2087 init_empty_tree_cfg ();
2089 profile_status_for_function (cfun
) = profile_status_for_function (src_cfun
);
2090 ENTRY_BLOCK_PTR
->count
=
2091 (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun
)->count
* count_scale
/
2093 ENTRY_BLOCK_PTR
->frequency
2094 = ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun
)->frequency
;
2095 EXIT_BLOCK_PTR
->count
=
2096 (EXIT_BLOCK_PTR_FOR_FUNCTION (src_cfun
)->count
* count_scale
/
2098 EXIT_BLOCK_PTR
->frequency
=
2099 EXIT_BLOCK_PTR_FOR_FUNCTION (src_cfun
)->frequency
;
2101 init_eh_for_function ();
2103 if (src_cfun
->gimple_df
)
2105 init_tree_ssa (cfun
);
2106 cfun
->gimple_df
->in_ssa_p
= true;
2107 init_ssa_operands ();
2112 /* Helper function for copy_cfg_body. Move debug stmts from the end
2113 of NEW_BB to the beginning of successor basic blocks when needed. If the
2114 successor has multiple predecessors, reset them, otherwise keep
2118 maybe_move_debug_stmts_to_successors (copy_body_data
*id
, basic_block new_bb
)
2122 gimple_stmt_iterator si
= gsi_last_nondebug_bb (new_bb
);
2125 || gsi_one_before_end_p (si
)
2126 || !(stmt_can_throw_internal (gsi_stmt (si
))
2127 || stmt_can_make_abnormal_goto (gsi_stmt (si
))))
2130 FOR_EACH_EDGE (e
, ei
, new_bb
->succs
)
2132 gimple_stmt_iterator ssi
= gsi_last_bb (new_bb
);
2133 gimple_stmt_iterator dsi
= gsi_after_labels (e
->dest
);
2134 while (is_gimple_debug (gsi_stmt (ssi
)))
2136 gimple stmt
= gsi_stmt (ssi
), new_stmt
;
2140 /* For the last edge move the debug stmts instead of copying
2142 if (ei_one_before_end_p (ei
))
2146 if (!single_pred_p (e
->dest
))
2147 gimple_debug_bind_reset_value (stmt
);
2148 gsi_remove (&si
, false);
2149 gsi_insert_before (&dsi
, stmt
, GSI_SAME_STMT
);
2153 var
= gimple_debug_bind_get_var (stmt
);
2154 if (single_pred_p (e
->dest
))
2156 value
= gimple_debug_bind_get_value (stmt
);
2157 value
= unshare_expr (value
);
2161 new_stmt
= gimple_build_debug_bind (var
, value
, stmt
);
2162 gsi_insert_before (&dsi
, new_stmt
, GSI_SAME_STMT
);
2163 VEC_safe_push (gimple
, heap
, id
->debug_stmts
, new_stmt
);
2169 /* Make a copy of the body of FN so that it can be inserted inline in
2170 another function. Walks FN via CFG, returns new fndecl. */
2173 copy_cfg_body (copy_body_data
* id
, gcov_type count
, int frequency_scale
,
2174 basic_block entry_block_map
, basic_block exit_block_map
,
2175 bitmap blocks_to_copy
, basic_block new_entry
)
2177 tree callee_fndecl
= id
->src_fn
;
2178 /* Original cfun for the callee, doesn't change. */
2179 struct function
*src_cfun
= DECL_STRUCT_FUNCTION (callee_fndecl
);
2180 struct function
*cfun_to_copy
;
2182 tree new_fndecl
= NULL
;
2183 bool need_debug_cleanup
= false;
2184 gcov_type count_scale
;
2186 int incoming_frequency
= 0;
2187 gcov_type incoming_count
= 0;
2189 if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun
)->count
)
2190 count_scale
= (REG_BR_PROB_BASE
* count
2191 / ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun
)->count
);
2193 count_scale
= REG_BR_PROB_BASE
;
2195 /* Register specific tree functions. */
2196 gimple_register_cfg_hooks ();
2198 /* If we are inlining just region of the function, make sure to connect new entry
2199 to ENTRY_BLOCK_PTR. Since new entry can be part of loop, we must compute
2200 frequency and probability of ENTRY_BLOCK_PTR based on the frequencies and
2201 probabilities of edges incoming from nonduplicated region. */
2207 FOR_EACH_EDGE (e
, ei
, new_entry
->preds
)
2210 incoming_frequency
+= EDGE_FREQUENCY (e
);
2211 incoming_count
+= e
->count
;
2213 incoming_count
= incoming_count
* count_scale
/ REG_BR_PROB_BASE
;
2215 = incoming_frequency
* frequency_scale
/ REG_BR_PROB_BASE
;
2216 ENTRY_BLOCK_PTR
->count
= incoming_count
;
2217 ENTRY_BLOCK_PTR
->frequency
= incoming_frequency
;
2220 /* Must have a CFG here at this point. */
2221 gcc_assert (ENTRY_BLOCK_PTR_FOR_FUNCTION
2222 (DECL_STRUCT_FUNCTION (callee_fndecl
)));
2224 cfun_to_copy
= id
->src_cfun
= DECL_STRUCT_FUNCTION (callee_fndecl
);
2226 ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy
)->aux
= entry_block_map
;
2227 EXIT_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy
)->aux
= exit_block_map
;
2228 entry_block_map
->aux
= ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy
);
2229 exit_block_map
->aux
= EXIT_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy
);
2231 /* Duplicate any exception-handling regions. */
2233 id
->eh_map
= duplicate_eh_regions (cfun_to_copy
, NULL
, id
->eh_lp_nr
,
2236 /* Use aux pointers to map the original blocks to copy. */
2237 FOR_EACH_BB_FN (bb
, cfun_to_copy
)
2238 if (!blocks_to_copy
|| bitmap_bit_p (blocks_to_copy
, bb
->index
))
2240 basic_block new_bb
= copy_bb (id
, bb
, frequency_scale
, count_scale
);
2245 last
= last_basic_block
;
2247 /* Now that we've duplicated the blocks, duplicate their edges. */
2248 FOR_ALL_BB_FN (bb
, cfun_to_copy
)
2250 || (bb
->index
> 0 && bitmap_bit_p (blocks_to_copy
, bb
->index
)))
2251 need_debug_cleanup
|= copy_edges_for_bb (bb
, count_scale
, exit_block_map
);
2255 edge e
= make_edge (entry_block_map
, (basic_block
)new_entry
->aux
, EDGE_FALLTHRU
);
2256 e
->probability
= REG_BR_PROB_BASE
;
2257 e
->count
= incoming_count
;
2260 if (gimple_in_ssa_p (cfun
))
2261 FOR_ALL_BB_FN (bb
, cfun_to_copy
)
2263 || (bb
->index
> 0 && bitmap_bit_p (blocks_to_copy
, bb
->index
)))
2264 copy_phis_for_bb (bb
, id
);
2266 FOR_ALL_BB_FN (bb
, cfun_to_copy
)
2269 if (need_debug_cleanup
2270 && bb
->index
!= ENTRY_BLOCK
2271 && bb
->index
!= EXIT_BLOCK
)
2272 maybe_move_debug_stmts_to_successors (id
, (basic_block
) bb
->aux
);
2273 ((basic_block
)bb
->aux
)->aux
= NULL
;
2277 /* Zero out AUX fields of newly created block during EH edge
2279 for (; last
< last_basic_block
; last
++)
2281 if (need_debug_cleanup
)
2282 maybe_move_debug_stmts_to_successors (id
, BASIC_BLOCK (last
));
2283 BASIC_BLOCK (last
)->aux
= NULL
;
2285 entry_block_map
->aux
= NULL
;
2286 exit_block_map
->aux
= NULL
;
2290 pointer_map_destroy (id
->eh_map
);
2297 /* Copy the debug STMT using ID. We deal with these statements in a
2298 special way: if any variable in their VALUE expression wasn't
2299 remapped yet, we won't remap it, because that would get decl uids
2300 out of sync, causing codegen differences between -g and -g0. If
2301 this arises, we drop the VALUE expression altogether. */
2304 copy_debug_stmt (gimple stmt
, copy_body_data
*id
)
2307 struct walk_stmt_info wi
;
2310 if (gimple_block (stmt
))
2313 n
= (tree
*) pointer_map_contains (id
->decl_map
, gimple_block (stmt
));
2317 gimple_set_block (stmt
, t
);
2319 /* Remap all the operands in COPY. */
2320 memset (&wi
, 0, sizeof (wi
));
2323 processing_debug_stmt
= 1;
2325 t
= gimple_debug_bind_get_var (stmt
);
2327 if (TREE_CODE (t
) == PARM_DECL
&& id
->debug_map
2328 && (n
= (tree
*) pointer_map_contains (id
->debug_map
, t
)))
2330 gcc_assert (TREE_CODE (*n
) == VAR_DECL
);
2333 else if (TREE_CODE (t
) == VAR_DECL
2335 && gimple_in_ssa_p (cfun
)
2336 && !pointer_map_contains (id
->decl_map
, t
)
2338 /* T is a non-localized variable. */;
2340 walk_tree (&t
, remap_gimple_op_r
, &wi
, NULL
);
2342 gimple_debug_bind_set_var (stmt
, t
);
2344 if (gimple_debug_bind_has_value_p (stmt
))
2345 walk_tree (gimple_debug_bind_get_value_ptr (stmt
),
2346 remap_gimple_op_r
, &wi
, NULL
);
2348 /* Punt if any decl couldn't be remapped. */
2349 if (processing_debug_stmt
< 0)
2350 gimple_debug_bind_reset_value (stmt
);
2352 processing_debug_stmt
= 0;
2355 if (gimple_in_ssa_p (cfun
))
2356 mark_symbols_for_renaming (stmt
);
2359 /* Process deferred debug stmts. In order to give values better odds
2360 of being successfully remapped, we delay the processing of debug
2361 stmts until all other stmts that might require remapping are
2365 copy_debug_stmts (copy_body_data
*id
)
2370 if (!id
->debug_stmts
)
2373 FOR_EACH_VEC_ELT (gimple
, id
->debug_stmts
, i
, stmt
)
2374 copy_debug_stmt (stmt
, id
);
2376 VEC_free (gimple
, heap
, id
->debug_stmts
);
2379 /* Make a copy of the body of SRC_FN so that it can be inserted inline in
2380 another function. */
2383 copy_tree_body (copy_body_data
*id
)
2385 tree fndecl
= id
->src_fn
;
2386 tree body
= DECL_SAVED_TREE (fndecl
);
2388 walk_tree (&body
, copy_tree_body_r
, id
, NULL
);
2393 /* Make a copy of the body of FN so that it can be inserted inline in
2394 another function. */
2397 copy_body (copy_body_data
*id
, gcov_type count
, int frequency_scale
,
2398 basic_block entry_block_map
, basic_block exit_block_map
,
2399 bitmap blocks_to_copy
, basic_block new_entry
)
2401 tree fndecl
= id
->src_fn
;
2404 /* If this body has a CFG, walk CFG and copy. */
2405 gcc_assert (ENTRY_BLOCK_PTR_FOR_FUNCTION (DECL_STRUCT_FUNCTION (fndecl
)));
2406 body
= copy_cfg_body (id
, count
, frequency_scale
, entry_block_map
, exit_block_map
,
2407 blocks_to_copy
, new_entry
);
2408 copy_debug_stmts (id
);
2413 /* Return true if VALUE is an ADDR_EXPR of an automatic variable
2414 defined in function FN, or of a data member thereof. */
2417 self_inlining_addr_expr (tree value
, tree fn
)
2421 if (TREE_CODE (value
) != ADDR_EXPR
)
2424 var
= get_base_address (TREE_OPERAND (value
, 0));
2426 return var
&& auto_var_in_fn_p (var
, fn
);
2429 /* Append to BB a debug annotation that binds VAR to VALUE, inheriting
2430 lexical block and line number information from base_stmt, if given,
2431 or from the last stmt of the block otherwise. */
2434 insert_init_debug_bind (copy_body_data
*id
,
2435 basic_block bb
, tree var
, tree value
,
2439 gimple_stmt_iterator gsi
;
2442 if (!gimple_in_ssa_p (id
->src_cfun
))
2445 if (!MAY_HAVE_DEBUG_STMTS
)
2448 tracked_var
= target_for_debug_bind (var
);
2454 gsi
= gsi_last_bb (bb
);
2455 if (!base_stmt
&& !gsi_end_p (gsi
))
2456 base_stmt
= gsi_stmt (gsi
);
2459 note
= gimple_build_debug_bind (tracked_var
, value
, base_stmt
);
2463 if (!gsi_end_p (gsi
))
2464 gsi_insert_after (&gsi
, note
, GSI_SAME_STMT
);
2466 gsi_insert_before (&gsi
, note
, GSI_SAME_STMT
);
2473 insert_init_stmt (copy_body_data
*id
, basic_block bb
, gimple init_stmt
)
2475 /* If VAR represents a zero-sized variable, it's possible that the
2476 assignment statement may result in no gimple statements. */
2479 gimple_stmt_iterator si
= gsi_last_bb (bb
);
2481 /* We can end up with init statements that store to a non-register
2482 from a rhs with a conversion. Handle that here by forcing the
2483 rhs into a temporary. gimple_regimplify_operands is not
2484 prepared to do this for us. */
2485 if (!is_gimple_debug (init_stmt
)
2486 && !is_gimple_reg (gimple_assign_lhs (init_stmt
))
2487 && is_gimple_reg_type (TREE_TYPE (gimple_assign_lhs (init_stmt
)))
2488 && gimple_assign_rhs_class (init_stmt
) == GIMPLE_UNARY_RHS
)
2490 tree rhs
= build1 (gimple_assign_rhs_code (init_stmt
),
2491 gimple_expr_type (init_stmt
),
2492 gimple_assign_rhs1 (init_stmt
));
2493 rhs
= force_gimple_operand_gsi (&si
, rhs
, true, NULL_TREE
, false,
2495 gimple_assign_set_rhs_code (init_stmt
, TREE_CODE (rhs
));
2496 gimple_assign_set_rhs1 (init_stmt
, rhs
);
2498 gsi_insert_after (&si
, init_stmt
, GSI_NEW_STMT
);
2499 gimple_regimplify_operands (init_stmt
, &si
);
2500 mark_symbols_for_renaming (init_stmt
);
2502 if (!is_gimple_debug (init_stmt
) && MAY_HAVE_DEBUG_STMTS
)
2504 tree var
, def
= gimple_assign_lhs (init_stmt
);
2506 if (TREE_CODE (def
) == SSA_NAME
)
2507 var
= SSA_NAME_VAR (def
);
2511 insert_init_debug_bind (id
, bb
, var
, def
, init_stmt
);
2516 /* Initialize parameter P with VALUE. If needed, produce init statement
2517 at the end of BB. When BB is NULL, we return init statement to be
2520 setup_one_parameter (copy_body_data
*id
, tree p
, tree value
, tree fn
,
2521 basic_block bb
, tree
*vars
)
2523 gimple init_stmt
= NULL
;
2526 tree def
= (gimple_in_ssa_p (cfun
)
2527 ? gimple_default_def (id
->src_cfun
, p
) : NULL
);
2530 && value
!= error_mark_node
2531 && !useless_type_conversion_p (TREE_TYPE (p
), TREE_TYPE (value
)))
2533 if (fold_convertible_p (TREE_TYPE (p
), value
))
2534 rhs
= fold_build1 (NOP_EXPR
, TREE_TYPE (p
), value
);
2536 /* ??? For valid (GIMPLE) programs we should not end up here.
2537 Still if something has gone wrong and we end up with truly
2538 mismatched types here, fall back to using a VIEW_CONVERT_EXPR
2539 to not leak invalid GIMPLE to the following passes. */
2540 rhs
= fold_build1 (VIEW_CONVERT_EXPR
, TREE_TYPE (p
), value
);
2543 /* Make an equivalent VAR_DECL. Note that we must NOT remap the type
2544 here since the type of this decl must be visible to the calling
2546 var
= copy_decl_to_var (p
, id
);
2548 /* We're actually using the newly-created var. */
2549 if (gimple_in_ssa_p (cfun
) && TREE_CODE (var
) == VAR_DECL
)
2552 add_referenced_var (var
);
2555 /* Declare this new variable. */
2556 DECL_CHAIN (var
) = *vars
;
2559 /* Make gimplifier happy about this variable. */
2560 DECL_SEEN_IN_BIND_EXPR_P (var
) = 1;
2562 /* If the parameter is never assigned to, has no SSA_NAMEs created,
2563 we would not need to create a new variable here at all, if it
2564 weren't for debug info. Still, we can just use the argument
2566 if (TREE_READONLY (p
)
2567 && !TREE_ADDRESSABLE (p
)
2568 && value
&& !TREE_SIDE_EFFECTS (value
)
2571 /* We may produce non-gimple trees by adding NOPs or introduce
2572 invalid sharing when operand is not really constant.
2573 It is not big deal to prohibit constant propagation here as
2574 we will constant propagate in DOM1 pass anyway. */
2575 if (is_gimple_min_invariant (value
)
2576 && useless_type_conversion_p (TREE_TYPE (p
),
2578 /* We have to be very careful about ADDR_EXPR. Make sure
2579 the base variable isn't a local variable of the inlined
2580 function, e.g., when doing recursive inlining, direct or
2581 mutually-recursive or whatever, which is why we don't
2582 just test whether fn == current_function_decl. */
2583 && ! self_inlining_addr_expr (value
, fn
))
2585 insert_decl_map (id
, p
, value
);
2586 insert_debug_decl_map (id
, p
, var
);
2587 return insert_init_debug_bind (id
, bb
, var
, value
, NULL
);
2591 /* Register the VAR_DECL as the equivalent for the PARM_DECL;
2592 that way, when the PARM_DECL is encountered, it will be
2593 automatically replaced by the VAR_DECL. */
2594 insert_decl_map (id
, p
, var
);
2596 /* Even if P was TREE_READONLY, the new VAR should not be.
2597 In the original code, we would have constructed a
2598 temporary, and then the function body would have never
2599 changed the value of P. However, now, we will be
2600 constructing VAR directly. The constructor body may
2601 change its value multiple times as it is being
2602 constructed. Therefore, it must not be TREE_READONLY;
2603 the back-end assumes that TREE_READONLY variable is
2604 assigned to only once. */
2605 if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (p
)))
2606 TREE_READONLY (var
) = 0;
2608 /* If there is no setup required and we are in SSA, take the easy route
2609 replacing all SSA names representing the function parameter by the
2610 SSA name passed to function.
2612 We need to construct map for the variable anyway as it might be used
2613 in different SSA names when parameter is set in function.
2615 Do replacement at -O0 for const arguments replaced by constant.
2616 This is important for builtin_constant_p and other construct requiring
2617 constant argument to be visible in inlined function body. */
2618 if (gimple_in_ssa_p (cfun
) && rhs
&& def
&& is_gimple_reg (p
)
2620 || (TREE_READONLY (p
)
2621 && is_gimple_min_invariant (rhs
)))
2622 && (TREE_CODE (rhs
) == SSA_NAME
2623 || is_gimple_min_invariant (rhs
))
2624 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (def
))
2626 insert_decl_map (id
, def
, rhs
);
2627 return insert_init_debug_bind (id
, bb
, var
, rhs
, NULL
);
2630 /* If the value of argument is never used, don't care about initializing
2632 if (optimize
&& gimple_in_ssa_p (cfun
) && !def
&& is_gimple_reg (p
))
2634 gcc_assert (!value
|| !TREE_SIDE_EFFECTS (value
));
2635 return insert_init_debug_bind (id
, bb
, var
, rhs
, NULL
);
2638 /* Initialize this VAR_DECL from the equivalent argument. Convert
2639 the argument to the proper type in case it was promoted. */
2642 if (rhs
== error_mark_node
)
2644 insert_decl_map (id
, p
, var
);
2645 return insert_init_debug_bind (id
, bb
, var
, rhs
, NULL
);
2648 STRIP_USELESS_TYPE_CONVERSION (rhs
);
2650 /* We want to use MODIFY_EXPR, not INIT_EXPR here so that we
2651 keep our trees in gimple form. */
2652 if (def
&& gimple_in_ssa_p (cfun
) && is_gimple_reg (p
))
2654 def
= remap_ssa_name (def
, id
);
2655 init_stmt
= gimple_build_assign (def
, rhs
);
2656 SSA_NAME_IS_DEFAULT_DEF (def
) = 0;
2657 set_default_def (var
, NULL
);
2660 init_stmt
= gimple_build_assign (var
, rhs
);
2662 if (bb
&& init_stmt
)
2663 insert_init_stmt (id
, bb
, init_stmt
);
2668 /* Generate code to initialize the parameters of the function at the
2669 top of the stack in ID from the GIMPLE_CALL STMT. */
2672 initialize_inlined_parameters (copy_body_data
*id
, gimple stmt
,
2673 tree fn
, basic_block bb
)
2678 tree vars
= NULL_TREE
;
2679 tree static_chain
= gimple_call_chain (stmt
);
2681 /* Figure out what the parameters are. */
2682 parms
= DECL_ARGUMENTS (fn
);
2684 /* Loop through the parameter declarations, replacing each with an
2685 equivalent VAR_DECL, appropriately initialized. */
2686 for (p
= parms
, i
= 0; p
; p
= DECL_CHAIN (p
), i
++)
2689 val
= i
< gimple_call_num_args (stmt
) ? gimple_call_arg (stmt
, i
) : NULL
;
2690 setup_one_parameter (id
, p
, val
, fn
, bb
, &vars
);
2692 /* After remapping parameters remap their types. This has to be done
2693 in a second loop over all parameters to appropriately remap
2694 variable sized arrays when the size is specified in a
2695 parameter following the array. */
2696 for (p
= parms
, i
= 0; p
; p
= DECL_CHAIN (p
), i
++)
2698 tree
*varp
= (tree
*) pointer_map_contains (id
->decl_map
, p
);
2700 && TREE_CODE (*varp
) == VAR_DECL
)
2702 tree def
= (gimple_in_ssa_p (cfun
) && is_gimple_reg (p
)
2703 ? gimple_default_def (id
->src_cfun
, p
) : NULL
);
2705 TREE_TYPE (var
) = remap_type (TREE_TYPE (var
), id
);
2706 /* Also remap the default definition if it was remapped
2707 to the default definition of the parameter replacement
2708 by the parameter setup. */
2711 tree
*defp
= (tree
*) pointer_map_contains (id
->decl_map
, def
);
2713 && TREE_CODE (*defp
) == SSA_NAME
2714 && SSA_NAME_VAR (*defp
) == var
)
2715 TREE_TYPE (*defp
) = TREE_TYPE (var
);
2720 /* Initialize the static chain. */
2721 p
= DECL_STRUCT_FUNCTION (fn
)->static_chain_decl
;
2722 gcc_assert (fn
!= current_function_decl
);
2725 /* No static chain? Seems like a bug in tree-nested.c. */
2726 gcc_assert (static_chain
);
2728 setup_one_parameter (id
, p
, static_chain
, fn
, bb
, &vars
);
2731 declare_inline_vars (id
->block
, vars
);
2735 /* Declare a return variable to replace the RESULT_DECL for the
2736 function we are calling. An appropriate DECL_STMT is returned.
2737 The USE_STMT is filled to contain a use of the declaration to
2738 indicate the return value of the function.
2740 RETURN_SLOT, if non-null is place where to store the result. It
2741 is set only for CALL_EXPR_RETURN_SLOT_OPT. MODIFY_DEST, if non-null,
2742 was the LHS of the MODIFY_EXPR to which this call is the RHS.
2744 The return value is a (possibly null) value that holds the result
2745 as seen by the caller. */
2748 declare_return_variable (copy_body_data
*id
, tree return_slot
, tree modify_dest
,
2749 basic_block entry_bb
)
2751 tree callee
= id
->src_fn
;
2752 tree caller
= id
->dst_fn
;
2753 tree result
= DECL_RESULT (callee
);
2754 tree callee_type
= TREE_TYPE (result
);
2758 /* Handle type-mismatches in the function declaration return type
2759 vs. the call expression. */
2761 caller_type
= TREE_TYPE (modify_dest
);
2763 caller_type
= TREE_TYPE (TREE_TYPE (callee
));
2765 /* We don't need to do anything for functions that don't return
2767 if (!result
|| VOID_TYPE_P (callee_type
))
2770 /* If there was a return slot, then the return value is the
2771 dereferenced address of that object. */
2774 /* The front end shouldn't have used both return_slot and
2775 a modify expression. */
2776 gcc_assert (!modify_dest
);
2777 if (DECL_BY_REFERENCE (result
))
2779 tree return_slot_addr
= build_fold_addr_expr (return_slot
);
2780 STRIP_USELESS_TYPE_CONVERSION (return_slot_addr
);
2782 /* We are going to construct *&return_slot and we can't do that
2783 for variables believed to be not addressable.
2785 FIXME: This check possibly can match, because values returned
2786 via return slot optimization are not believed to have address
2787 taken by alias analysis. */
2788 gcc_assert (TREE_CODE (return_slot
) != SSA_NAME
);
2789 var
= return_slot_addr
;
2794 gcc_assert (TREE_CODE (var
) != SSA_NAME
);
2795 TREE_ADDRESSABLE (var
) |= TREE_ADDRESSABLE (result
);
2797 if ((TREE_CODE (TREE_TYPE (result
)) == COMPLEX_TYPE
2798 || TREE_CODE (TREE_TYPE (result
)) == VECTOR_TYPE
)
2799 && !DECL_GIMPLE_REG_P (result
)
2801 DECL_GIMPLE_REG_P (var
) = 0;
2806 /* All types requiring non-trivial constructors should have been handled. */
2807 gcc_assert (!TREE_ADDRESSABLE (callee_type
));
2809 /* Attempt to avoid creating a new temporary variable. */
2811 && TREE_CODE (modify_dest
) != SSA_NAME
)
2813 bool use_it
= false;
2815 /* We can't use MODIFY_DEST if there's type promotion involved. */
2816 if (!useless_type_conversion_p (callee_type
, caller_type
))
2819 /* ??? If we're assigning to a variable sized type, then we must
2820 reuse the destination variable, because we've no good way to
2821 create variable sized temporaries at this point. */
2822 else if (TREE_CODE (TYPE_SIZE_UNIT (caller_type
)) != INTEGER_CST
)
2825 /* If the callee cannot possibly modify MODIFY_DEST, then we can
2826 reuse it as the result of the call directly. Don't do this if
2827 it would promote MODIFY_DEST to addressable. */
2828 else if (TREE_ADDRESSABLE (result
))
2832 tree base_m
= get_base_address (modify_dest
);
2834 /* If the base isn't a decl, then it's a pointer, and we don't
2835 know where that's going to go. */
2836 if (!DECL_P (base_m
))
2838 else if (is_global_var (base_m
))
2840 else if ((TREE_CODE (TREE_TYPE (result
)) == COMPLEX_TYPE
2841 || TREE_CODE (TREE_TYPE (result
)) == VECTOR_TYPE
)
2842 && !DECL_GIMPLE_REG_P (result
)
2843 && DECL_GIMPLE_REG_P (base_m
))
2845 else if (!TREE_ADDRESSABLE (base_m
))
2857 gcc_assert (TREE_CODE (TYPE_SIZE_UNIT (callee_type
)) == INTEGER_CST
);
2859 var
= copy_result_decl_to_var (result
, id
);
2860 if (gimple_in_ssa_p (cfun
))
2863 add_referenced_var (var
);
2866 DECL_SEEN_IN_BIND_EXPR_P (var
) = 1;
2867 add_local_decl (DECL_STRUCT_FUNCTION (caller
), var
);
2869 /* Do not have the rest of GCC warn about this variable as it should
2870 not be visible to the user. */
2871 TREE_NO_WARNING (var
) = 1;
2873 declare_inline_vars (id
->block
, var
);
2875 /* Build the use expr. If the return type of the function was
2876 promoted, convert it back to the expected type. */
2878 if (!useless_type_conversion_p (caller_type
, TREE_TYPE (var
)))
2879 use
= fold_convert (caller_type
, var
);
2881 STRIP_USELESS_TYPE_CONVERSION (use
);
2883 if (DECL_BY_REFERENCE (result
))
2885 TREE_ADDRESSABLE (var
) = 1;
2886 var
= build_fold_addr_expr (var
);
2890 /* Register the VAR_DECL as the equivalent for the RESULT_DECL; that
2891 way, when the RESULT_DECL is encountered, it will be
2892 automatically replaced by the VAR_DECL.
2894 When returning by reference, ensure that RESULT_DECL remaps to
2896 if (DECL_BY_REFERENCE (result
)
2897 && !is_gimple_val (var
))
2899 tree temp
= create_tmp_var (TREE_TYPE (result
), "retvalptr");
2900 if (gimple_in_ssa_p (id
->src_cfun
))
2903 add_referenced_var (temp
);
2905 insert_decl_map (id
, result
, temp
);
2906 /* When RESULT_DECL is in SSA form, we need to use it's default_def
2908 if (gimple_in_ssa_p (id
->src_cfun
) && gimple_default_def (id
->src_cfun
, result
))
2909 temp
= remap_ssa_name (gimple_default_def (id
->src_cfun
, result
), id
);
2910 insert_init_stmt (id
, entry_bb
, gimple_build_assign (temp
, var
));
2913 insert_decl_map (id
, result
, var
);
2915 /* Remember this so we can ignore it in remap_decls. */
2921 /* Callback through walk_tree. Determine if a DECL_INITIAL makes reference
2922 to a local label. */
2925 has_label_address_in_static_1 (tree
*nodep
, int *walk_subtrees
, void *fnp
)
2928 tree fn
= (tree
) fnp
;
2930 if (TREE_CODE (node
) == LABEL_DECL
&& DECL_CONTEXT (node
) == fn
)
2939 /* Determine if the function can be copied. If so return NULL. If
2940 not return a string describng the reason for failure. */
2943 copy_forbidden (struct function
*fun
, tree fndecl
)
2945 const char *reason
= fun
->cannot_be_copied_reason
;
2949 /* Only examine the function once. */
2950 if (fun
->cannot_be_copied_set
)
2953 /* We cannot copy a function that receives a non-local goto
2954 because we cannot remap the destination label used in the
2955 function that is performing the non-local goto. */
2956 /* ??? Actually, this should be possible, if we work at it.
2957 No doubt there's just a handful of places that simply
2958 assume it doesn't happen and don't substitute properly. */
2959 if (fun
->has_nonlocal_label
)
2961 reason
= G_("function %q+F can never be copied "
2962 "because it receives a non-local goto");
2966 FOR_EACH_LOCAL_DECL (fun
, ix
, decl
)
2967 if (TREE_CODE (decl
) == VAR_DECL
2968 && TREE_STATIC (decl
)
2969 && !DECL_EXTERNAL (decl
)
2970 && DECL_INITIAL (decl
)
2971 && walk_tree_without_duplicates (&DECL_INITIAL (decl
),
2972 has_label_address_in_static_1
,
2975 reason
= G_("function %q+F can never be copied because it saves "
2976 "address of local label in a static variable");
2981 fun
->cannot_be_copied_reason
= reason
;
2982 fun
->cannot_be_copied_set
= true;
2987 static const char *inline_forbidden_reason
;
2989 /* A callback for walk_gimple_seq to handle statements. Returns non-null
2990 iff a function can not be inlined. Also sets the reason why. */
2993 inline_forbidden_p_stmt (gimple_stmt_iterator
*gsi
, bool *handled_ops_p
,
2994 struct walk_stmt_info
*wip
)
2996 tree fn
= (tree
) wip
->info
;
2998 gimple stmt
= gsi_stmt (*gsi
);
3000 switch (gimple_code (stmt
))
3003 /* Refuse to inline alloca call unless user explicitly forced so as
3004 this may change program's memory overhead drastically when the
3005 function using alloca is called in loop. In GCC present in
3006 SPEC2000 inlining into schedule_block cause it to require 2GB of
3007 RAM instead of 256MB. */
3008 if (gimple_alloca_call_p (stmt
)
3009 && !lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn
)))
3011 inline_forbidden_reason
3012 = G_("function %q+F can never be inlined because it uses "
3013 "alloca (override using the always_inline attribute)");
3014 *handled_ops_p
= true;
3018 t
= gimple_call_fndecl (stmt
);
3022 /* We cannot inline functions that call setjmp. */
3023 if (setjmp_call_p (t
))
3025 inline_forbidden_reason
3026 = G_("function %q+F can never be inlined because it uses setjmp");
3027 *handled_ops_p
= true;
3031 if (DECL_BUILT_IN_CLASS (t
) == BUILT_IN_NORMAL
)
3032 switch (DECL_FUNCTION_CODE (t
))
3034 /* We cannot inline functions that take a variable number of
3036 case BUILT_IN_VA_START
:
3037 case BUILT_IN_NEXT_ARG
:
3038 case BUILT_IN_VA_END
:
3039 inline_forbidden_reason
3040 = G_("function %q+F can never be inlined because it "
3041 "uses variable argument lists");
3042 *handled_ops_p
= true;
3045 case BUILT_IN_LONGJMP
:
3046 /* We can't inline functions that call __builtin_longjmp at
3047 all. The non-local goto machinery really requires the
3048 destination be in a different function. If we allow the
3049 function calling __builtin_longjmp to be inlined into the
3050 function calling __builtin_setjmp, Things will Go Awry. */
3051 inline_forbidden_reason
3052 = G_("function %q+F can never be inlined because "
3053 "it uses setjmp-longjmp exception handling");
3054 *handled_ops_p
= true;
3057 case BUILT_IN_NONLOCAL_GOTO
:
3059 inline_forbidden_reason
3060 = G_("function %q+F can never be inlined because "
3061 "it uses non-local goto");
3062 *handled_ops_p
= true;
3065 case BUILT_IN_RETURN
:
3066 case BUILT_IN_APPLY_ARGS
:
3067 /* If a __builtin_apply_args caller would be inlined,
3068 it would be saving arguments of the function it has
3069 been inlined into. Similarly __builtin_return would
3070 return from the function the inline has been inlined into. */
3071 inline_forbidden_reason
3072 = G_("function %q+F can never be inlined because "
3073 "it uses __builtin_return or __builtin_apply_args");
3074 *handled_ops_p
= true;
3083 t
= gimple_goto_dest (stmt
);
3085 /* We will not inline a function which uses computed goto. The
3086 addresses of its local labels, which may be tucked into
3087 global storage, are of course not constant across
3088 instantiations, which causes unexpected behavior. */
3089 if (TREE_CODE (t
) != LABEL_DECL
)
3091 inline_forbidden_reason
3092 = G_("function %q+F can never be inlined "
3093 "because it contains a computed goto");
3094 *handled_ops_p
= true;
3103 *handled_ops_p
= false;
3107 /* Return true if FNDECL is a function that cannot be inlined into
3111 inline_forbidden_p (tree fndecl
)
3113 struct function
*fun
= DECL_STRUCT_FUNCTION (fndecl
);
3114 struct walk_stmt_info wi
;
3115 struct pointer_set_t
*visited_nodes
;
3117 bool forbidden_p
= false;
3119 /* First check for shared reasons not to copy the code. */
3120 inline_forbidden_reason
= copy_forbidden (fun
, fndecl
);
3121 if (inline_forbidden_reason
!= NULL
)
3124 /* Next, walk the statements of the function looking for
3125 constraucts we can't handle, or are non-optimal for inlining. */
3126 visited_nodes
= pointer_set_create ();
3127 memset (&wi
, 0, sizeof (wi
));
3128 wi
.info
= (void *) fndecl
;
3129 wi
.pset
= visited_nodes
;
3131 FOR_EACH_BB_FN (bb
, fun
)
3134 gimple_seq seq
= bb_seq (bb
);
3135 ret
= walk_gimple_seq (seq
, inline_forbidden_p_stmt
, NULL
, &wi
);
3136 forbidden_p
= (ret
!= NULL
);
3141 pointer_set_destroy (visited_nodes
);
3145 /* Return true if CALLEE cannot be inlined into CALLER. */
3148 inline_forbidden_into_p (tree caller
, tree callee
)
3150 /* Don't inline if the functions have different EH personalities. */
3151 if (DECL_FUNCTION_PERSONALITY (caller
)
3152 && DECL_FUNCTION_PERSONALITY (callee
)
3153 && (DECL_FUNCTION_PERSONALITY (caller
)
3154 != DECL_FUNCTION_PERSONALITY (callee
)))
3157 /* Don't inline if the callee can throw non-call exceptions but the
3159 if (DECL_STRUCT_FUNCTION (callee
)
3160 && DECL_STRUCT_FUNCTION (callee
)->can_throw_non_call_exceptions
3161 && !(DECL_STRUCT_FUNCTION (caller
)
3162 && DECL_STRUCT_FUNCTION (caller
)->can_throw_non_call_exceptions
))
3168 /* Returns nonzero if FN is a function that does not have any
3169 fundamental inline blocking properties. */
3172 tree_inlinable_function_p (tree fn
)
3174 bool inlinable
= true;
3178 /* If we've already decided this function shouldn't be inlined,
3179 there's no need to check again. */
3180 if (DECL_UNINLINABLE (fn
))
3183 /* We only warn for functions declared `inline' by the user. */
3184 do_warning
= (warn_inline
3185 && DECL_DECLARED_INLINE_P (fn
)
3186 && !DECL_NO_INLINE_WARNING_P (fn
)
3187 && !DECL_IN_SYSTEM_HEADER (fn
));
3189 always_inline
= lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn
));
3192 && always_inline
== NULL
)
3195 warning (OPT_Winline
, "function %q+F can never be inlined because it "
3196 "is suppressed using -fno-inline", fn
);
3200 else if (!function_attribute_inlinable_p (fn
))
3203 warning (OPT_Winline
, "function %q+F can never be inlined because it "
3204 "uses attributes conflicting with inlining", fn
);
3208 else if (inline_forbidden_p (fn
))
3210 /* See if we should warn about uninlinable functions. Previously,
3211 some of these warnings would be issued while trying to expand
3212 the function inline, but that would cause multiple warnings
3213 about functions that would for example call alloca. But since
3214 this a property of the function, just one warning is enough.
3215 As a bonus we can now give more details about the reason why a
3216 function is not inlinable. */
3218 sorry (inline_forbidden_reason
, fn
);
3219 else if (do_warning
)
3220 warning (OPT_Winline
, inline_forbidden_reason
, fn
);
3225 /* Squirrel away the result so that we don't have to check again. */
3226 DECL_UNINLINABLE (fn
) = !inlinable
;
3231 /* Estimate the cost of a memory move. Use machine dependent
3232 word size and take possible memcpy call into account. */
3235 estimate_move_cost (tree type
)
3239 gcc_assert (!VOID_TYPE_P (type
));
3241 if (TREE_CODE (type
) == VECTOR_TYPE
)
3243 enum machine_mode inner
= TYPE_MODE (TREE_TYPE (type
));
3244 enum machine_mode simd
3245 = targetm
.vectorize
.preferred_simd_mode (inner
);
3246 int simd_mode_size
= GET_MODE_SIZE (simd
);
3247 return ((GET_MODE_SIZE (TYPE_MODE (type
)) + simd_mode_size
- 1)
3251 size
= int_size_in_bytes (type
);
3253 if (size
< 0 || size
> MOVE_MAX_PIECES
* MOVE_RATIO (!optimize_size
))
3254 /* Cost of a memcpy call, 3 arguments and the call. */
3257 return ((size
+ MOVE_MAX_PIECES
- 1) / MOVE_MAX_PIECES
);
3260 /* Returns cost of operation CODE, according to WEIGHTS */
3263 estimate_operator_cost (enum tree_code code
, eni_weights
*weights
,
3264 tree op1 ATTRIBUTE_UNUSED
, tree op2
)
3268 /* These are "free" conversions, or their presumed cost
3269 is folded into other operations. */
3274 case VIEW_CONVERT_EXPR
:
3277 /* Assign cost of 1 to usual operations.
3278 ??? We may consider mapping RTL costs to this. */
3283 case POINTER_PLUS_EXPR
:
3288 case ADDR_SPACE_CONVERT_EXPR
:
3289 case FIXED_CONVERT_EXPR
:
3290 case FIX_TRUNC_EXPR
:
3302 case VEC_LSHIFT_EXPR
:
3303 case VEC_RSHIFT_EXPR
:
3310 case TRUTH_ANDIF_EXPR
:
3311 case TRUTH_ORIF_EXPR
:
3312 case TRUTH_AND_EXPR
:
3314 case TRUTH_XOR_EXPR
:
3315 case TRUTH_NOT_EXPR
:
3324 case UNORDERED_EXPR
:
3335 case PREDECREMENT_EXPR
:
3336 case PREINCREMENT_EXPR
:
3337 case POSTDECREMENT_EXPR
:
3338 case POSTINCREMENT_EXPR
:
3340 case REALIGN_LOAD_EXPR
:
3342 case REDUC_MAX_EXPR
:
3343 case REDUC_MIN_EXPR
:
3344 case REDUC_PLUS_EXPR
:
3345 case WIDEN_SUM_EXPR
:
3346 case WIDEN_MULT_EXPR
:
3348 case WIDEN_MULT_PLUS_EXPR
:
3349 case WIDEN_MULT_MINUS_EXPR
:
3351 case VEC_WIDEN_MULT_HI_EXPR
:
3352 case VEC_WIDEN_MULT_LO_EXPR
:
3353 case VEC_UNPACK_HI_EXPR
:
3354 case VEC_UNPACK_LO_EXPR
:
3355 case VEC_UNPACK_FLOAT_HI_EXPR
:
3356 case VEC_UNPACK_FLOAT_LO_EXPR
:
3357 case VEC_PACK_TRUNC_EXPR
:
3358 case VEC_PACK_SAT_EXPR
:
3359 case VEC_PACK_FIX_TRUNC_EXPR
:
3360 case VEC_EXTRACT_EVEN_EXPR
:
3361 case VEC_EXTRACT_ODD_EXPR
:
3362 case VEC_INTERLEAVE_HIGH_EXPR
:
3363 case VEC_INTERLEAVE_LOW_EXPR
:
3367 /* Few special cases of expensive operations. This is useful
3368 to avoid inlining on functions having too many of these. */
3369 case TRUNC_DIV_EXPR
:
3371 case FLOOR_DIV_EXPR
:
3372 case ROUND_DIV_EXPR
:
3373 case EXACT_DIV_EXPR
:
3374 case TRUNC_MOD_EXPR
:
3376 case FLOOR_MOD_EXPR
:
3377 case ROUND_MOD_EXPR
:
3379 if (TREE_CODE (op2
) != INTEGER_CST
)
3380 return weights
->div_mod_cost
;
3384 /* We expect a copy assignment with no operator. */
3385 gcc_assert (get_gimple_rhs_class (code
) == GIMPLE_SINGLE_RHS
);
3391 /* Estimate number of instructions that will be created by expanding
3392 the statements in the statement sequence STMTS.
3393 WEIGHTS contains weights attributed to various constructs. */
3396 int estimate_num_insns_seq (gimple_seq stmts
, eni_weights
*weights
)
3399 gimple_stmt_iterator gsi
;
3402 for (gsi
= gsi_start (stmts
); !gsi_end_p (gsi
); gsi_next (&gsi
))
3403 cost
+= estimate_num_insns (gsi_stmt (gsi
), weights
);
3409 /* Estimate number of instructions that will be created by expanding STMT.
3410 WEIGHTS contains weights attributed to various constructs. */
3413 estimate_num_insns (gimple stmt
, eni_weights
*weights
)
3416 enum gimple_code code
= gimple_code (stmt
);
3423 /* Try to estimate the cost of assignments. We have three cases to
3425 1) Simple assignments to registers;
3426 2) Stores to things that must live in memory. This includes
3427 "normal" stores to scalars, but also assignments of large
3428 structures, or constructors of big arrays;
3430 Let us look at the first two cases, assuming we have "a = b + C":
3431 <GIMPLE_ASSIGN <var_decl "a">
3432 <plus_expr <var_decl "b"> <constant C>>
3433 If "a" is a GIMPLE register, the assignment to it is free on almost
3434 any target, because "a" usually ends up in a real register. Hence
3435 the only cost of this expression comes from the PLUS_EXPR, and we
3436 can ignore the GIMPLE_ASSIGN.
3437 If "a" is not a GIMPLE register, the assignment to "a" will most
3438 likely be a real store, so the cost of the GIMPLE_ASSIGN is the cost
3439 of moving something into "a", which we compute using the function
3440 estimate_move_cost. */
3441 lhs
= gimple_assign_lhs (stmt
);
3442 rhs
= gimple_assign_rhs1 (stmt
);
3444 if (is_gimple_reg (lhs
))
3447 cost
= estimate_move_cost (TREE_TYPE (lhs
));
3449 if (!is_gimple_reg (rhs
) && !is_gimple_min_invariant (rhs
))
3450 cost
+= estimate_move_cost (TREE_TYPE (rhs
));
3452 cost
+= estimate_operator_cost (gimple_assign_rhs_code (stmt
), weights
,
3453 gimple_assign_rhs1 (stmt
),
3454 get_gimple_rhs_class (gimple_assign_rhs_code (stmt
))
3455 == GIMPLE_BINARY_RHS
3456 ? gimple_assign_rhs2 (stmt
) : NULL
);
3460 cost
= 1 + estimate_operator_cost (gimple_cond_code (stmt
), weights
,
3461 gimple_op (stmt
, 0),
3462 gimple_op (stmt
, 1));
3466 /* Take into account cost of the switch + guess 2 conditional jumps for
3469 TODO: once the switch expansion logic is sufficiently separated, we can
3470 do better job on estimating cost of the switch. */
3471 if (weights
->time_based
)
3472 cost
= floor_log2 (gimple_switch_num_labels (stmt
)) * 2;
3474 cost
= gimple_switch_num_labels (stmt
) * 2;
3479 tree decl
= gimple_call_fndecl (stmt
);
3480 tree addr
= gimple_call_fn (stmt
);
3481 tree funtype
= TREE_TYPE (addr
);
3482 bool stdarg
= false;
3484 if (POINTER_TYPE_P (funtype
))
3485 funtype
= TREE_TYPE (funtype
);
3487 /* Do not special case builtins where we see the body.
3488 This just confuse inliner. */
3489 if (!decl
|| cgraph_node (decl
)->analyzed
)
3491 /* For buitins that are likely expanded to nothing or
3492 inlined do not account operand costs. */
3493 else if (is_simple_builtin (decl
))
3495 else if (is_inexpensive_builtin (decl
))
3496 return weights
->target_builtin_call_cost
;
3497 else if (DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
)
3499 /* We canonicalize x * x to pow (x, 2.0) with -ffast-math, so
3500 specialize the cheap expansion we do here.
3501 ??? This asks for a more general solution. */
3502 switch (DECL_FUNCTION_CODE (decl
))
3507 if (TREE_CODE (gimple_call_arg (stmt
, 1)) == REAL_CST
3508 && REAL_VALUES_EQUAL
3509 (TREE_REAL_CST (gimple_call_arg (stmt
, 1)), dconst2
))
3510 return estimate_operator_cost (MULT_EXPR
, weights
,
3511 gimple_call_arg (stmt
, 0),
3512 gimple_call_arg (stmt
, 0));
3520 cost
= weights
->call_cost
;
3522 funtype
= TREE_TYPE (decl
);
3524 if (!VOID_TYPE_P (TREE_TYPE (funtype
)))
3525 cost
+= estimate_move_cost (TREE_TYPE (funtype
));
3528 stdarg
= stdarg_p (funtype
);
3530 /* Our cost must be kept in sync with
3531 cgraph_estimate_size_after_inlining that does use function
3532 declaration to figure out the arguments.
3534 For functions taking variable list of arguments we must
3535 look into call statement intself. This is safe because
3536 we will get only higher costs and in most cases we will
3537 not inline these anyway. */
3538 if (decl
&& DECL_ARGUMENTS (decl
) && !stdarg
)
3541 for (arg
= DECL_ARGUMENTS (decl
); arg
; arg
= DECL_CHAIN (arg
))
3542 if (!VOID_TYPE_P (TREE_TYPE (arg
)))
3543 cost
+= estimate_move_cost (TREE_TYPE (arg
));
3545 else if (funtype
&& prototype_p (funtype
) && !stdarg
)
3548 for (t
= TYPE_ARG_TYPES (funtype
); t
&& t
!= void_list_node
;
3550 if (!VOID_TYPE_P (TREE_VALUE (t
)))
3551 cost
+= estimate_move_cost (TREE_VALUE (t
));
3555 for (i
= 0; i
< gimple_call_num_args (stmt
); i
++)
3557 tree arg
= gimple_call_arg (stmt
, i
);
3558 if (!VOID_TYPE_P (TREE_TYPE (arg
)))
3559 cost
+= estimate_move_cost (TREE_TYPE (arg
));
3567 return weights
->return_cost
;
3573 case GIMPLE_PREDICT
:
3578 return asm_str_count (gimple_asm_string (stmt
));
3581 /* This is either going to be an external function call with one
3582 argument, or two register copy statements plus a goto. */
3585 case GIMPLE_EH_DISPATCH
:
3586 /* ??? This is going to turn into a switch statement. Ideally
3587 we'd have a look at the eh region and estimate the number of
3592 return estimate_num_insns_seq (gimple_bind_body (stmt
), weights
);
3594 case GIMPLE_EH_FILTER
:
3595 return estimate_num_insns_seq (gimple_eh_filter_failure (stmt
), weights
);
3598 return estimate_num_insns_seq (gimple_catch_handler (stmt
), weights
);
3601 return (estimate_num_insns_seq (gimple_try_eval (stmt
), weights
)
3602 + estimate_num_insns_seq (gimple_try_cleanup (stmt
), weights
));
3604 /* OpenMP directives are generally very expensive. */
3606 case GIMPLE_OMP_RETURN
:
3607 case GIMPLE_OMP_SECTIONS_SWITCH
:
3608 case GIMPLE_OMP_ATOMIC_STORE
:
3609 case GIMPLE_OMP_CONTINUE
:
3610 /* ...except these, which are cheap. */
3613 case GIMPLE_OMP_ATOMIC_LOAD
:
3614 return weights
->omp_cost
;
3616 case GIMPLE_OMP_FOR
:
3617 return (weights
->omp_cost
3618 + estimate_num_insns_seq (gimple_omp_body (stmt
), weights
)
3619 + estimate_num_insns_seq (gimple_omp_for_pre_body (stmt
), weights
));
3621 case GIMPLE_OMP_PARALLEL
:
3622 case GIMPLE_OMP_TASK
:
3623 case GIMPLE_OMP_CRITICAL
:
3624 case GIMPLE_OMP_MASTER
:
3625 case GIMPLE_OMP_ORDERED
:
3626 case GIMPLE_OMP_SECTION
:
3627 case GIMPLE_OMP_SECTIONS
:
3628 case GIMPLE_OMP_SINGLE
:
3629 return (weights
->omp_cost
3630 + estimate_num_insns_seq (gimple_omp_body (stmt
), weights
));
3639 /* Estimate number of instructions that will be created by expanding
3640 function FNDECL. WEIGHTS contains weights attributed to various
3644 estimate_num_insns_fn (tree fndecl
, eni_weights
*weights
)
3646 struct function
*my_function
= DECL_STRUCT_FUNCTION (fndecl
);
3647 gimple_stmt_iterator bsi
;
3651 gcc_assert (my_function
&& my_function
->cfg
);
3652 FOR_EACH_BB_FN (bb
, my_function
)
3654 for (bsi
= gsi_start_bb (bb
); !gsi_end_p (bsi
); gsi_next (&bsi
))
3655 n
+= estimate_num_insns (gsi_stmt (bsi
), weights
);
3662 /* Initializes weights used by estimate_num_insns. */
3665 init_inline_once (void)
3667 eni_size_weights
.call_cost
= 1;
3668 eni_size_weights
.target_builtin_call_cost
= 1;
3669 eni_size_weights
.div_mod_cost
= 1;
3670 eni_size_weights
.omp_cost
= 40;
3671 eni_size_weights
.time_based
= false;
3672 eni_size_weights
.return_cost
= 1;
3674 /* Estimating time for call is difficult, since we have no idea what the
3675 called function does. In the current uses of eni_time_weights,
3676 underestimating the cost does less harm than overestimating it, so
3677 we choose a rather small value here. */
3678 eni_time_weights
.call_cost
= 10;
3679 eni_time_weights
.target_builtin_call_cost
= 1;
3680 eni_time_weights
.div_mod_cost
= 10;
3681 eni_time_weights
.omp_cost
= 40;
3682 eni_time_weights
.time_based
= true;
3683 eni_time_weights
.return_cost
= 2;
3686 /* Estimate the number of instructions in a gimple_seq. */
3689 count_insns_seq (gimple_seq seq
, eni_weights
*weights
)
3691 gimple_stmt_iterator gsi
;
3693 for (gsi
= gsi_start (seq
); !gsi_end_p (gsi
); gsi_next (&gsi
))
3694 n
+= estimate_num_insns (gsi_stmt (gsi
), weights
);
3700 /* Install new lexical TREE_BLOCK underneath 'current_block'. */
3703 prepend_lexical_block (tree current_block
, tree new_block
)
3705 BLOCK_CHAIN (new_block
) = BLOCK_SUBBLOCKS (current_block
);
3706 BLOCK_SUBBLOCKS (current_block
) = new_block
;
3707 BLOCK_SUPERCONTEXT (new_block
) = current_block
;
3710 /* Add local variables from CALLEE to CALLER. */
3713 add_local_variables (struct function
*callee
, struct function
*caller
,
3714 copy_body_data
*id
, bool check_var_ann
)
3719 FOR_EACH_LOCAL_DECL (callee
, ix
, var
)
3720 if (TREE_STATIC (var
) && !TREE_ASM_WRITTEN (var
))
3723 || (var_ann (var
) && add_referenced_var (var
)))
3724 add_local_decl (caller
, var
);
3726 else if (!can_be_nonlocal (var
, id
))
3728 tree new_var
= remap_decl (var
, id
);
3730 /* Remap debug-expressions. */
3731 if (TREE_CODE (new_var
) == VAR_DECL
3732 && DECL_DEBUG_EXPR_IS_FROM (new_var
)
3735 tree tem
= DECL_DEBUG_EXPR (var
);
3736 bool old_regimplify
= id
->regimplify
;
3737 id
->remapping_type_depth
++;
3738 walk_tree (&tem
, copy_tree_body_r
, id
, NULL
);
3739 id
->remapping_type_depth
--;
3740 id
->regimplify
= old_regimplify
;
3741 SET_DECL_DEBUG_EXPR (new_var
, tem
);
3743 add_local_decl (caller
, new_var
);
3747 /* If STMT is a GIMPLE_CALL, replace it with its inline expansion. */
3750 expand_call_inline (basic_block bb
, gimple stmt
, copy_body_data
*id
)
3754 struct pointer_map_t
*st
, *dst
;
3757 location_t saved_location
;
3758 struct cgraph_edge
*cg_edge
;
3759 cgraph_inline_failed_t reason
;
3760 basic_block return_block
;
3762 gimple_stmt_iterator gsi
, stmt_gsi
;
3763 bool successfully_inlined
= FALSE
;
3764 bool purge_dead_abnormal_edges
;
3766 /* Set input_location here so we get the right instantiation context
3767 if we call instantiate_decl from inlinable_function_p. */
3768 saved_location
= input_location
;
3769 if (gimple_has_location (stmt
))
3770 input_location
= gimple_location (stmt
);
3772 /* From here on, we're only interested in CALL_EXPRs. */
3773 if (gimple_code (stmt
) != GIMPLE_CALL
)
3776 /* Objective C and fortran still calls tree_rest_of_compilation directly.
3777 Kill this check once this is fixed. */
3778 if (!id
->dst_node
->analyzed
)
3781 cg_edge
= cgraph_edge (id
->dst_node
, stmt
);
3782 gcc_checking_assert (cg_edge
);
3783 /* First, see if we can figure out what function is being called.
3784 If we cannot, then there is no hope of inlining the function. */
3785 if (cg_edge
->indirect_unknown_callee
)
3787 fn
= cg_edge
->callee
->decl
;
3788 gcc_checking_assert (fn
);
3790 /* If FN is a declaration of a function in a nested scope that was
3791 globally declared inline, we don't set its DECL_INITIAL.
3792 However, we can't blindly follow DECL_ABSTRACT_ORIGIN because the
3793 C++ front-end uses it for cdtors to refer to their internal
3794 declarations, that are not real functions. Fortunately those
3795 don't have trees to be saved, so we can tell by checking their
3797 if (!DECL_INITIAL (fn
)
3798 && DECL_ABSTRACT_ORIGIN (fn
)
3799 && gimple_has_body_p (DECL_ABSTRACT_ORIGIN (fn
)))
3800 fn
= DECL_ABSTRACT_ORIGIN (fn
);
3802 /* First check that inlining isn't simply forbidden in this case. */
3803 if (inline_forbidden_into_p (cg_edge
->caller
->decl
, cg_edge
->callee
->decl
))
3806 /* Don't try to inline functions that are not well-suited to inlining. */
3807 if (!cgraph_inline_p (cg_edge
, &reason
))
3809 /* If this call was originally indirect, we do not want to emit any
3810 inlining related warnings or sorry messages because there are no
3811 guarantees regarding those. */
3812 if (cg_edge
->indirect_inlining_edge
)
3815 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn
))
3816 /* Avoid warnings during early inline pass. */
3817 && cgraph_global_info_ready
)
3819 sorry ("inlining failed in call to %q+F: %s", fn
,
3820 _(cgraph_inline_failed_string (reason
)));
3821 sorry ("called from here");
3823 else if (warn_inline
&& DECL_DECLARED_INLINE_P (fn
)
3824 && !DECL_IN_SYSTEM_HEADER (fn
)
3825 && reason
!= CIF_UNSPECIFIED
3826 && !lookup_attribute ("noinline", DECL_ATTRIBUTES (fn
))
3827 /* Avoid warnings during early inline pass. */
3828 && cgraph_global_info_ready
)
3830 warning (OPT_Winline
, "inlining failed in call to %q+F: %s",
3831 fn
, _(cgraph_inline_failed_string (reason
)));
3832 warning (OPT_Winline
, "called from here");
3836 fn
= cg_edge
->callee
->decl
;
3838 #ifdef ENABLE_CHECKING
3839 if (cg_edge
->callee
->decl
!= id
->dst_node
->decl
)
3840 verify_cgraph_node (cg_edge
->callee
);
3843 /* We will be inlining this callee. */
3844 id
->eh_lp_nr
= lookup_stmt_eh_lp (stmt
);
3846 /* Update the callers EH personality. */
3847 if (DECL_FUNCTION_PERSONALITY (cg_edge
->callee
->decl
))
3848 DECL_FUNCTION_PERSONALITY (cg_edge
->caller
->decl
)
3849 = DECL_FUNCTION_PERSONALITY (cg_edge
->callee
->decl
);
3851 /* Split the block holding the GIMPLE_CALL. */
3852 e
= split_block (bb
, stmt
);
3854 return_block
= e
->dest
;
3857 /* split_block splits after the statement; work around this by
3858 moving the call into the second block manually. Not pretty,
3859 but seems easier than doing the CFG manipulation by hand
3860 when the GIMPLE_CALL is in the last statement of BB. */
3861 stmt_gsi
= gsi_last_bb (bb
);
3862 gsi_remove (&stmt_gsi
, false);
3864 /* If the GIMPLE_CALL was in the last statement of BB, it may have
3865 been the source of abnormal edges. In this case, schedule
3866 the removal of dead abnormal edges. */
3867 gsi
= gsi_start_bb (return_block
);
3868 if (gsi_end_p (gsi
))
3870 gsi_insert_after (&gsi
, stmt
, GSI_NEW_STMT
);
3871 purge_dead_abnormal_edges
= true;
3875 gsi_insert_before (&gsi
, stmt
, GSI_NEW_STMT
);
3876 purge_dead_abnormal_edges
= false;
3879 stmt_gsi
= gsi_start_bb (return_block
);
3881 /* Build a block containing code to initialize the arguments, the
3882 actual inline expansion of the body, and a label for the return
3883 statements within the function to jump to. The type of the
3884 statement expression is the return type of the function call. */
3885 id
->block
= make_node (BLOCK
);
3886 BLOCK_ABSTRACT_ORIGIN (id
->block
) = fn
;
3887 BLOCK_SOURCE_LOCATION (id
->block
) = input_location
;
3888 prepend_lexical_block (gimple_block (stmt
), id
->block
);
3890 /* Local declarations will be replaced by their equivalents in this
3893 id
->decl_map
= pointer_map_create ();
3894 dst
= id
->debug_map
;
3895 id
->debug_map
= NULL
;
3897 /* Record the function we are about to inline. */
3899 id
->src_node
= cg_edge
->callee
;
3900 id
->src_cfun
= DECL_STRUCT_FUNCTION (fn
);
3901 id
->gimple_call
= stmt
;
3903 gcc_assert (!id
->src_cfun
->after_inlining
);
3906 if (lookup_attribute ("cold", DECL_ATTRIBUTES (fn
)))
3908 gimple_stmt_iterator si
= gsi_last_bb (bb
);
3909 gsi_insert_after (&si
, gimple_build_predict (PRED_COLD_FUNCTION
,
3913 initialize_inlined_parameters (id
, stmt
, fn
, bb
);
3915 if (DECL_INITIAL (fn
))
3916 prepend_lexical_block (id
->block
, remap_blocks (DECL_INITIAL (fn
), id
));
3918 /* Return statements in the function body will be replaced by jumps
3919 to the RET_LABEL. */
3920 gcc_assert (DECL_INITIAL (fn
));
3921 gcc_assert (TREE_CODE (DECL_INITIAL (fn
)) == BLOCK
);
3923 /* Find the LHS to which the result of this call is assigned. */
3925 if (gimple_call_lhs (stmt
))
3927 modify_dest
= gimple_call_lhs (stmt
);
3929 /* The function which we are inlining might not return a value,
3930 in which case we should issue a warning that the function
3931 does not return a value. In that case the optimizers will
3932 see that the variable to which the value is assigned was not
3933 initialized. We do not want to issue a warning about that
3934 uninitialized variable. */
3935 if (DECL_P (modify_dest
))
3936 TREE_NO_WARNING (modify_dest
) = 1;
3938 if (gimple_call_return_slot_opt_p (stmt
))
3940 return_slot
= modify_dest
;
3947 /* If we are inlining a call to the C++ operator new, we don't want
3948 to use type based alias analysis on the return value. Otherwise
3949 we may get confused if the compiler sees that the inlined new
3950 function returns a pointer which was just deleted. See bug
3952 if (DECL_IS_OPERATOR_NEW (fn
))
3958 /* Declare the return variable for the function. */
3959 use_retvar
= declare_return_variable (id
, return_slot
, modify_dest
, bb
);
3961 /* Add local vars in this inlined callee to caller. */
3962 add_local_variables (id
->src_cfun
, cfun
, id
, true);
3964 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
3966 fprintf (dump_file
, "Inlining ");
3967 print_generic_expr (dump_file
, id
->src_fn
, 0);
3968 fprintf (dump_file
, " to ");
3969 print_generic_expr (dump_file
, id
->dst_fn
, 0);
3970 fprintf (dump_file
, " with frequency %i\n", cg_edge
->frequency
);
3973 /* This is it. Duplicate the callee body. Assume callee is
3974 pre-gimplified. Note that we must not alter the caller
3975 function in any way before this point, as this CALL_EXPR may be
3976 a self-referential call; if we're calling ourselves, we need to
3977 duplicate our body before altering anything. */
3978 copy_body (id
, bb
->count
,
3979 cg_edge
->frequency
* REG_BR_PROB_BASE
/ CGRAPH_FREQ_BASE
,
3980 bb
, return_block
, NULL
, NULL
);
3982 /* Reset the escaped solution. */
3983 if (cfun
->gimple_df
)
3984 pt_solution_reset (&cfun
->gimple_df
->escaped
);
3989 pointer_map_destroy (id
->debug_map
);
3990 id
->debug_map
= dst
;
3992 pointer_map_destroy (id
->decl_map
);
3995 /* Unlink the calls virtual operands before replacing it. */
3996 unlink_stmt_vdef (stmt
);
3998 /* If the inlined function returns a result that we care about,
3999 substitute the GIMPLE_CALL with an assignment of the return
4000 variable to the LHS of the call. That is, if STMT was
4001 'a = foo (...)', substitute the call with 'a = USE_RETVAR'. */
4002 if (use_retvar
&& gimple_call_lhs (stmt
))
4004 gimple old_stmt
= stmt
;
4005 stmt
= gimple_build_assign (gimple_call_lhs (stmt
), use_retvar
);
4006 gsi_replace (&stmt_gsi
, stmt
, false);
4007 if (gimple_in_ssa_p (cfun
))
4008 mark_symbols_for_renaming (stmt
);
4009 maybe_clean_or_replace_eh_stmt (old_stmt
, stmt
);
4013 /* Handle the case of inlining a function with no return
4014 statement, which causes the return value to become undefined. */
4015 if (gimple_call_lhs (stmt
)
4016 && TREE_CODE (gimple_call_lhs (stmt
)) == SSA_NAME
)
4018 tree name
= gimple_call_lhs (stmt
);
4019 tree var
= SSA_NAME_VAR (name
);
4020 tree def
= gimple_default_def (cfun
, var
);
4024 /* If the variable is used undefined, make this name
4025 undefined via a move. */
4026 stmt
= gimple_build_assign (gimple_call_lhs (stmt
), def
);
4027 gsi_replace (&stmt_gsi
, stmt
, true);
4031 /* Otherwise make this variable undefined. */
4032 gsi_remove (&stmt_gsi
, true);
4033 set_default_def (var
, name
);
4034 SSA_NAME_DEF_STMT (name
) = gimple_build_nop ();
4038 gsi_remove (&stmt_gsi
, true);
4041 if (purge_dead_abnormal_edges
)
4043 gimple_purge_dead_eh_edges (return_block
);
4044 gimple_purge_dead_abnormal_call_edges (return_block
);
4047 /* If the value of the new expression is ignored, that's OK. We
4048 don't warn about this for CALL_EXPRs, so we shouldn't warn about
4049 the equivalent inlined version either. */
4050 if (is_gimple_assign (stmt
))
4052 gcc_assert (gimple_assign_single_p (stmt
)
4053 || CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (stmt
)));
4054 TREE_USED (gimple_assign_rhs1 (stmt
)) = 1;
4057 /* Output the inlining info for this abstract function, since it has been
4058 inlined. If we don't do this now, we can lose the information about the
4059 variables in the function when the blocks get blown away as soon as we
4060 remove the cgraph node. */
4061 (*debug_hooks
->outlining_inline_function
) (cg_edge
->callee
->decl
);
4063 /* Update callgraph if needed. */
4064 cgraph_remove_node (cg_edge
->callee
);
4066 id
->block
= NULL_TREE
;
4067 successfully_inlined
= TRUE
;
4070 input_location
= saved_location
;
4071 return successfully_inlined
;
4074 /* Expand call statements reachable from STMT_P.
4075 We can only have CALL_EXPRs as the "toplevel" tree code or nested
4076 in a MODIFY_EXPR. See gimple.c:get_call_expr_in(). We can
4077 unfortunately not use that function here because we need a pointer
4078 to the CALL_EXPR, not the tree itself. */
4081 gimple_expand_calls_inline (basic_block bb
, copy_body_data
*id
)
4083 gimple_stmt_iterator gsi
;
4085 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
4087 gimple stmt
= gsi_stmt (gsi
);
4089 if (is_gimple_call (stmt
)
4090 && expand_call_inline (bb
, stmt
, id
))
4098 /* Walk all basic blocks created after FIRST and try to fold every statement
4099 in the STATEMENTS pointer set. */
4102 fold_marked_statements (int first
, struct pointer_set_t
*statements
)
4104 for (; first
< n_basic_blocks
; first
++)
4105 if (BASIC_BLOCK (first
))
4107 gimple_stmt_iterator gsi
;
4109 for (gsi
= gsi_start_bb (BASIC_BLOCK (first
));
4112 if (pointer_set_contains (statements
, gsi_stmt (gsi
)))
4114 gimple old_stmt
= gsi_stmt (gsi
);
4115 tree old_decl
= is_gimple_call (old_stmt
) ? gimple_call_fndecl (old_stmt
) : 0;
4117 if (old_decl
&& DECL_BUILT_IN (old_decl
))
4119 /* Folding builtins can create multiple instructions,
4120 we need to look at all of them. */
4121 gimple_stmt_iterator i2
= gsi
;
4123 if (fold_stmt (&gsi
))
4127 i2
= gsi_start_bb (BASIC_BLOCK (first
));
4132 new_stmt
= gsi_stmt (i2
);
4133 update_stmt (new_stmt
);
4134 cgraph_update_edges_for_call_stmt (old_stmt
, old_decl
,
4137 if (new_stmt
== gsi_stmt (gsi
))
4139 /* It is okay to check only for the very last
4140 of these statements. If it is a throwing
4141 statement nothing will change. If it isn't
4142 this can remove EH edges. If that weren't
4143 correct then because some intermediate stmts
4144 throw, but not the last one. That would mean
4145 we'd have to split the block, which we can't
4146 here and we'd loose anyway. And as builtins
4147 probably never throw, this all
4149 if (maybe_clean_or_replace_eh_stmt (old_stmt
,
4151 gimple_purge_dead_eh_edges (BASIC_BLOCK (first
));
4158 else if (fold_stmt (&gsi
))
4160 /* Re-read the statement from GSI as fold_stmt() may
4162 gimple new_stmt
= gsi_stmt (gsi
);
4163 update_stmt (new_stmt
);
4165 if (is_gimple_call (old_stmt
)
4166 || is_gimple_call (new_stmt
))
4167 cgraph_update_edges_for_call_stmt (old_stmt
, old_decl
,
4170 if (maybe_clean_or_replace_eh_stmt (old_stmt
, new_stmt
))
4171 gimple_purge_dead_eh_edges (BASIC_BLOCK (first
));
4177 /* Return true if BB has at least one abnormal outgoing edge. */
4180 has_abnormal_outgoing_edge_p (basic_block bb
)
4185 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
4186 if (e
->flags
& EDGE_ABNORMAL
)
4192 /* Expand calls to inline functions in the body of FN. */
4195 optimize_inline_calls (tree fn
)
4199 int last
= n_basic_blocks
;
4200 struct gimplify_ctx gctx
;
4201 bool inlined_p
= false;
4203 /* There is no point in performing inlining if errors have already
4204 occurred -- and we might crash if we try to inline invalid
4210 memset (&id
, 0, sizeof (id
));
4212 id
.src_node
= id
.dst_node
= cgraph_node (fn
);
4214 /* Or any functions that aren't finished yet. */
4215 if (current_function_decl
)
4216 id
.dst_fn
= current_function_decl
;
4218 id
.copy_decl
= copy_decl_maybe_to_var
;
4219 id
.transform_call_graph_edges
= CB_CGE_DUPLICATE
;
4220 id
.transform_new_cfg
= false;
4221 id
.transform_return_to_modify
= true;
4222 id
.transform_lang_insert_block
= NULL
;
4223 id
.statements_to_fold
= pointer_set_create ();
4225 push_gimplify_context (&gctx
);
4227 /* We make no attempts to keep dominance info up-to-date. */
4228 free_dominance_info (CDI_DOMINATORS
);
4229 free_dominance_info (CDI_POST_DOMINATORS
);
4231 /* Register specific gimple functions. */
4232 gimple_register_cfg_hooks ();
4234 /* Reach the trees by walking over the CFG, and note the
4235 enclosing basic-blocks in the call edges. */
4236 /* We walk the blocks going forward, because inlined function bodies
4237 will split id->current_basic_block, and the new blocks will
4238 follow it; we'll trudge through them, processing their CALL_EXPRs
4241 inlined_p
|= gimple_expand_calls_inline (bb
, &id
);
4243 pop_gimplify_context (NULL
);
4245 #ifdef ENABLE_CHECKING
4247 struct cgraph_edge
*e
;
4249 verify_cgraph_node (id
.dst_node
);
4251 /* Double check that we inlined everything we are supposed to inline. */
4252 for (e
= id
.dst_node
->callees
; e
; e
= e
->next_callee
)
4253 gcc_assert (e
->inline_failed
);
4257 /* Fold queued statements. */
4258 fold_marked_statements (last
, id
.statements_to_fold
);
4259 pointer_set_destroy (id
.statements_to_fold
);
4261 gcc_assert (!id
.debug_stmts
);
4263 /* If we didn't inline into the function there is nothing to do. */
4267 /* Renumber the lexical scoping (non-code) blocks consecutively. */
4270 delete_unreachable_blocks_update_callgraph (&id
);
4271 #ifdef ENABLE_CHECKING
4272 verify_cgraph_node (id
.dst_node
);
4275 /* It would be nice to check SSA/CFG/statement consistency here, but it is
4276 not possible yet - the IPA passes might make various functions to not
4277 throw and they don't care to proactively update local EH info. This is
4278 done later in fixup_cfg pass that also execute the verification. */
4279 return (TODO_update_ssa
4281 | (gimple_in_ssa_p (cfun
) ? TODO_remove_unused_locals
: 0)
4282 | (gimple_in_ssa_p (cfun
) ? TODO_update_address_taken
: 0)
4283 | (profile_status
!= PROFILE_ABSENT
? TODO_rebuild_frequencies
: 0));
4286 /* Passed to walk_tree. Copies the node pointed to, if appropriate. */
4289 copy_tree_r (tree
*tp
, int *walk_subtrees
, void *data ATTRIBUTE_UNUSED
)
4291 enum tree_code code
= TREE_CODE (*tp
);
4292 enum tree_code_class cl
= TREE_CODE_CLASS (code
);
4294 /* We make copies of most nodes. */
4295 if (IS_EXPR_CODE_CLASS (cl
)
4296 || code
== TREE_LIST
4298 || code
== TYPE_DECL
4299 || code
== OMP_CLAUSE
)
4301 /* Because the chain gets clobbered when we make a copy, we save it
4303 tree chain
= NULL_TREE
, new_tree
;
4305 chain
= TREE_CHAIN (*tp
);
4307 /* Copy the node. */
4308 new_tree
= copy_node (*tp
);
4310 /* Propagate mudflap marked-ness. */
4311 if (flag_mudflap
&& mf_marked_p (*tp
))
4316 /* Now, restore the chain, if appropriate. That will cause
4317 walk_tree to walk into the chain as well. */
4318 if (code
== PARM_DECL
4319 || code
== TREE_LIST
4320 || code
== OMP_CLAUSE
)
4321 TREE_CHAIN (*tp
) = chain
;
4323 /* For now, we don't update BLOCKs when we make copies. So, we
4324 have to nullify all BIND_EXPRs. */
4325 if (TREE_CODE (*tp
) == BIND_EXPR
)
4326 BIND_EXPR_BLOCK (*tp
) = NULL_TREE
;
4328 else if (code
== CONSTRUCTOR
)
4330 /* CONSTRUCTOR nodes need special handling because
4331 we need to duplicate the vector of elements. */
4334 new_tree
= copy_node (*tp
);
4336 /* Propagate mudflap marked-ness. */
4337 if (flag_mudflap
&& mf_marked_p (*tp
))
4340 CONSTRUCTOR_ELTS (new_tree
) = VEC_copy (constructor_elt
, gc
,
4341 CONSTRUCTOR_ELTS (*tp
));
4344 else if (TREE_CODE_CLASS (code
) == tcc_type
)
4346 else if (TREE_CODE_CLASS (code
) == tcc_declaration
)
4348 else if (TREE_CODE_CLASS (code
) == tcc_constant
)
4351 gcc_assert (code
!= STATEMENT_LIST
);
4355 /* The SAVE_EXPR pointed to by TP is being copied. If ST contains
4356 information indicating to what new SAVE_EXPR this one should be mapped,
4357 use that one. Otherwise, create a new node and enter it in ST. FN is
4358 the function into which the copy will be placed. */
4361 remap_save_expr (tree
*tp
, void *st_
, int *walk_subtrees
)
4363 struct pointer_map_t
*st
= (struct pointer_map_t
*) st_
;
4367 /* See if we already encountered this SAVE_EXPR. */
4368 n
= (tree
*) pointer_map_contains (st
, *tp
);
4370 /* If we didn't already remap this SAVE_EXPR, do so now. */
4373 t
= copy_node (*tp
);
4375 /* Remember this SAVE_EXPR. */
4376 *pointer_map_insert (st
, *tp
) = t
;
4377 /* Make sure we don't remap an already-remapped SAVE_EXPR. */
4378 *pointer_map_insert (st
, t
) = t
;
4382 /* We've already walked into this SAVE_EXPR; don't do it again. */
4387 /* Replace this SAVE_EXPR with the copy. */
4391 /* Called via walk_tree. If *TP points to a DECL_STMT for a local label,
4392 copies the declaration and enters it in the splay_tree in DATA (which is
4393 really an `copy_body_data *'). */
4396 mark_local_for_remap_r (tree
*tp
, int *walk_subtrees ATTRIBUTE_UNUSED
,
4399 copy_body_data
*id
= (copy_body_data
*) data
;
4401 /* Don't walk into types. */
4405 else if (TREE_CODE (*tp
) == LABEL_EXPR
)
4407 tree decl
= TREE_OPERAND (*tp
, 0);
4409 /* Copy the decl and remember the copy. */
4410 insert_decl_map (id
, decl
, id
->copy_decl (decl
, id
));
4416 /* Perform any modifications to EXPR required when it is unsaved. Does
4417 not recurse into EXPR's subtrees. */
4420 unsave_expr_1 (tree expr
)
4422 switch (TREE_CODE (expr
))
4425 /* Don't mess with a TARGET_EXPR that hasn't been expanded.
4426 It's OK for this to happen if it was part of a subtree that
4427 isn't immediately expanded, such as operand 2 of another
4429 if (TREE_OPERAND (expr
, 1))
4432 TREE_OPERAND (expr
, 1) = TREE_OPERAND (expr
, 3);
4433 TREE_OPERAND (expr
, 3) = NULL_TREE
;
4441 /* Called via walk_tree when an expression is unsaved. Using the
4442 splay_tree pointed to by ST (which is really a `splay_tree'),
4443 remaps all local declarations to appropriate replacements. */
4446 unsave_r (tree
*tp
, int *walk_subtrees
, void *data
)
4448 copy_body_data
*id
= (copy_body_data
*) data
;
4449 struct pointer_map_t
*st
= id
->decl_map
;
4452 /* Only a local declaration (variable or label). */
4453 if ((TREE_CODE (*tp
) == VAR_DECL
&& !TREE_STATIC (*tp
))
4454 || TREE_CODE (*tp
) == LABEL_DECL
)
4456 /* Lookup the declaration. */
4457 n
= (tree
*) pointer_map_contains (st
, *tp
);
4459 /* If it's there, remap it. */
4464 else if (TREE_CODE (*tp
) == STATEMENT_LIST
)
4466 else if (TREE_CODE (*tp
) == BIND_EXPR
)
4467 copy_bind_expr (tp
, walk_subtrees
, id
);
4468 else if (TREE_CODE (*tp
) == SAVE_EXPR
4469 || TREE_CODE (*tp
) == TARGET_EXPR
)
4470 remap_save_expr (tp
, st
, walk_subtrees
);
4473 copy_tree_r (tp
, walk_subtrees
, NULL
);
4475 /* Do whatever unsaving is required. */
4476 unsave_expr_1 (*tp
);
4479 /* Keep iterating. */
4483 /* Copies everything in EXPR and replaces variables, labels
4484 and SAVE_EXPRs local to EXPR. */
4487 unsave_expr_now (tree expr
)
4491 /* There's nothing to do for NULL_TREE. */
4496 memset (&id
, 0, sizeof (id
));
4497 id
.src_fn
= current_function_decl
;
4498 id
.dst_fn
= current_function_decl
;
4499 id
.decl_map
= pointer_map_create ();
4500 id
.debug_map
= NULL
;
4502 id
.copy_decl
= copy_decl_no_change
;
4503 id
.transform_call_graph_edges
= CB_CGE_DUPLICATE
;
4504 id
.transform_new_cfg
= false;
4505 id
.transform_return_to_modify
= false;
4506 id
.transform_lang_insert_block
= NULL
;
4508 /* Walk the tree once to find local labels. */
4509 walk_tree_without_duplicates (&expr
, mark_local_for_remap_r
, &id
);
4511 /* Walk the tree again, copying, remapping, and unsaving. */
4512 walk_tree (&expr
, unsave_r
, &id
, NULL
);
4515 pointer_map_destroy (id
.decl_map
);
4517 pointer_map_destroy (id
.debug_map
);
4522 /* Called via walk_gimple_seq. If *GSIP points to a GIMPLE_LABEL for a local
4523 label, copies the declaration and enters it in the splay_tree in DATA (which
4524 is really a 'copy_body_data *'. */
4527 mark_local_labels_stmt (gimple_stmt_iterator
*gsip
,
4528 bool *handled_ops_p ATTRIBUTE_UNUSED
,
4529 struct walk_stmt_info
*wi
)
4531 copy_body_data
*id
= (copy_body_data
*) wi
->info
;
4532 gimple stmt
= gsi_stmt (*gsip
);
4534 if (gimple_code (stmt
) == GIMPLE_LABEL
)
4536 tree decl
= gimple_label_label (stmt
);
4538 /* Copy the decl and remember the copy. */
4539 insert_decl_map (id
, decl
, id
->copy_decl (decl
, id
));
4546 /* Called via walk_gimple_seq by copy_gimple_seq_and_replace_local.
4547 Using the splay_tree pointed to by ST (which is really a `splay_tree'),
4548 remaps all local declarations to appropriate replacements in gimple
4552 replace_locals_op (tree
*tp
, int *walk_subtrees
, void *data
)
4554 struct walk_stmt_info
*wi
= (struct walk_stmt_info
*) data
;
4555 copy_body_data
*id
= (copy_body_data
*) wi
->info
;
4556 struct pointer_map_t
*st
= id
->decl_map
;
4560 /* Only a local declaration (variable or label). */
4561 if ((TREE_CODE (expr
) == VAR_DECL
4562 && !TREE_STATIC (expr
))
4563 || TREE_CODE (expr
) == LABEL_DECL
)
4565 /* Lookup the declaration. */
4566 n
= (tree
*) pointer_map_contains (st
, expr
);
4568 /* If it's there, remap it. */
4573 else if (TREE_CODE (expr
) == STATEMENT_LIST
4574 || TREE_CODE (expr
) == BIND_EXPR
4575 || TREE_CODE (expr
) == SAVE_EXPR
)
4577 else if (TREE_CODE (expr
) == TARGET_EXPR
)
4579 /* Don't mess with a TARGET_EXPR that hasn't been expanded.
4580 It's OK for this to happen if it was part of a subtree that
4581 isn't immediately expanded, such as operand 2 of another
4583 if (!TREE_OPERAND (expr
, 1))
4585 TREE_OPERAND (expr
, 1) = TREE_OPERAND (expr
, 3);
4586 TREE_OPERAND (expr
, 3) = NULL_TREE
;
4590 /* Keep iterating. */
4595 /* Called via walk_gimple_seq by copy_gimple_seq_and_replace_local.
4596 Using the splay_tree pointed to by ST (which is really a `splay_tree'),
4597 remaps all local declarations to appropriate replacements in gimple
4601 replace_locals_stmt (gimple_stmt_iterator
*gsip
,
4602 bool *handled_ops_p ATTRIBUTE_UNUSED
,
4603 struct walk_stmt_info
*wi
)
4605 copy_body_data
*id
= (copy_body_data
*) wi
->info
;
4606 gimple stmt
= gsi_stmt (*gsip
);
4608 if (gimple_code (stmt
) == GIMPLE_BIND
)
4610 tree block
= gimple_bind_block (stmt
);
4614 remap_block (&block
, id
);
4615 gimple_bind_set_block (stmt
, block
);
4618 /* This will remap a lot of the same decls again, but this should be
4620 if (gimple_bind_vars (stmt
))
4621 gimple_bind_set_vars (stmt
, remap_decls (gimple_bind_vars (stmt
), NULL
, id
));
4624 /* Keep iterating. */
4629 /* Copies everything in SEQ and replaces variables and labels local to
4630 current_function_decl. */
4633 copy_gimple_seq_and_replace_locals (gimple_seq seq
)
4636 struct walk_stmt_info wi
;
4637 struct pointer_set_t
*visited
;
4640 /* There's nothing to do for NULL_TREE. */
4645 memset (&id
, 0, sizeof (id
));
4646 id
.src_fn
= current_function_decl
;
4647 id
.dst_fn
= current_function_decl
;
4648 id
.decl_map
= pointer_map_create ();
4649 id
.debug_map
= NULL
;
4651 id
.copy_decl
= copy_decl_no_change
;
4652 id
.transform_call_graph_edges
= CB_CGE_DUPLICATE
;
4653 id
.transform_new_cfg
= false;
4654 id
.transform_return_to_modify
= false;
4655 id
.transform_lang_insert_block
= NULL
;
4657 /* Walk the tree once to find local labels. */
4658 memset (&wi
, 0, sizeof (wi
));
4659 visited
= pointer_set_create ();
4662 walk_gimple_seq (seq
, mark_local_labels_stmt
, NULL
, &wi
);
4663 pointer_set_destroy (visited
);
4665 copy
= gimple_seq_copy (seq
);
4667 /* Walk the copy, remapping decls. */
4668 memset (&wi
, 0, sizeof (wi
));
4670 walk_gimple_seq (copy
, replace_locals_stmt
, replace_locals_op
, &wi
);
4673 pointer_map_destroy (id
.decl_map
);
4675 pointer_map_destroy (id
.debug_map
);
4681 /* Allow someone to determine if SEARCH is a child of TOP from gdb. */
4684 debug_find_tree_1 (tree
*tp
, int *walk_subtrees ATTRIBUTE_UNUSED
, void *data
)
4693 debug_find_tree (tree top
, tree search
)
4695 return walk_tree_without_duplicates (&top
, debug_find_tree_1
, search
) != 0;
4699 /* Declare the variables created by the inliner. Add all the variables in
4700 VARS to BIND_EXPR. */
4703 declare_inline_vars (tree block
, tree vars
)
4706 for (t
= vars
; t
; t
= DECL_CHAIN (t
))
4708 DECL_SEEN_IN_BIND_EXPR_P (t
) = 1;
4709 gcc_assert (!TREE_STATIC (t
) && !TREE_ASM_WRITTEN (t
));
4710 add_local_decl (cfun
, t
);
4714 BLOCK_VARS (block
) = chainon (BLOCK_VARS (block
), vars
);
4717 /* Copy NODE (which must be a DECL). The DECL originally was in the FROM_FN,
4718 but now it will be in the TO_FN. PARM_TO_VAR means enable PARM_DECL to
4719 VAR_DECL translation. */
4722 copy_decl_for_dup_finish (copy_body_data
*id
, tree decl
, tree copy
)
4724 /* Don't generate debug information for the copy if we wouldn't have
4725 generated it for the copy either. */
4726 DECL_ARTIFICIAL (copy
) = DECL_ARTIFICIAL (decl
);
4727 DECL_IGNORED_P (copy
) = DECL_IGNORED_P (decl
);
4729 /* Set the DECL_ABSTRACT_ORIGIN so the debugging routines know what
4730 declaration inspired this copy. */
4731 DECL_ABSTRACT_ORIGIN (copy
) = DECL_ORIGIN (decl
);
4733 /* The new variable/label has no RTL, yet. */
4734 if (CODE_CONTAINS_STRUCT (TREE_CODE (copy
), TS_DECL_WRTL
)
4735 && !TREE_STATIC (copy
) && !DECL_EXTERNAL (copy
))
4736 SET_DECL_RTL (copy
, 0);
4738 /* These args would always appear unused, if not for this. */
4739 TREE_USED (copy
) = 1;
4741 /* Set the context for the new declaration. */
4742 if (!DECL_CONTEXT (decl
))
4743 /* Globals stay global. */
4745 else if (DECL_CONTEXT (decl
) != id
->src_fn
)
4746 /* Things that weren't in the scope of the function we're inlining
4747 from aren't in the scope we're inlining to, either. */
4749 else if (TREE_STATIC (decl
))
4750 /* Function-scoped static variables should stay in the original
4754 /* Ordinary automatic local variables are now in the scope of the
4756 DECL_CONTEXT (copy
) = id
->dst_fn
;
4762 copy_decl_to_var (tree decl
, copy_body_data
*id
)
4766 gcc_assert (TREE_CODE (decl
) == PARM_DECL
4767 || TREE_CODE (decl
) == RESULT_DECL
);
4769 type
= TREE_TYPE (decl
);
4771 copy
= build_decl (DECL_SOURCE_LOCATION (id
->dst_fn
),
4772 VAR_DECL
, DECL_NAME (decl
), type
);
4773 if (DECL_PT_UID_SET_P (decl
))
4774 SET_DECL_PT_UID (copy
, DECL_PT_UID (decl
));
4775 TREE_ADDRESSABLE (copy
) = TREE_ADDRESSABLE (decl
);
4776 TREE_READONLY (copy
) = TREE_READONLY (decl
);
4777 TREE_THIS_VOLATILE (copy
) = TREE_THIS_VOLATILE (decl
);
4778 DECL_GIMPLE_REG_P (copy
) = DECL_GIMPLE_REG_P (decl
);
4780 return copy_decl_for_dup_finish (id
, decl
, copy
);
4783 /* Like copy_decl_to_var, but create a return slot object instead of a
4784 pointer variable for return by invisible reference. */
4787 copy_result_decl_to_var (tree decl
, copy_body_data
*id
)
4791 gcc_assert (TREE_CODE (decl
) == PARM_DECL
4792 || TREE_CODE (decl
) == RESULT_DECL
);
4794 type
= TREE_TYPE (decl
);
4795 if (DECL_BY_REFERENCE (decl
))
4796 type
= TREE_TYPE (type
);
4798 copy
= build_decl (DECL_SOURCE_LOCATION (id
->dst_fn
),
4799 VAR_DECL
, DECL_NAME (decl
), type
);
4800 if (DECL_PT_UID_SET_P (decl
))
4801 SET_DECL_PT_UID (copy
, DECL_PT_UID (decl
));
4802 TREE_READONLY (copy
) = TREE_READONLY (decl
);
4803 TREE_THIS_VOLATILE (copy
) = TREE_THIS_VOLATILE (decl
);
4804 if (!DECL_BY_REFERENCE (decl
))
4806 TREE_ADDRESSABLE (copy
) = TREE_ADDRESSABLE (decl
);
4807 DECL_GIMPLE_REG_P (copy
) = DECL_GIMPLE_REG_P (decl
);
4810 return copy_decl_for_dup_finish (id
, decl
, copy
);
4814 copy_decl_no_change (tree decl
, copy_body_data
*id
)
4818 copy
= copy_node (decl
);
4820 /* The COPY is not abstract; it will be generated in DST_FN. */
4821 DECL_ABSTRACT (copy
) = 0;
4822 lang_hooks
.dup_lang_specific_decl (copy
);
4824 /* TREE_ADDRESSABLE isn't used to indicate that a label's address has
4825 been taken; it's for internal bookkeeping in expand_goto_internal. */
4826 if (TREE_CODE (copy
) == LABEL_DECL
)
4828 TREE_ADDRESSABLE (copy
) = 0;
4829 LABEL_DECL_UID (copy
) = -1;
4832 return copy_decl_for_dup_finish (id
, decl
, copy
);
4836 copy_decl_maybe_to_var (tree decl
, copy_body_data
*id
)
4838 if (TREE_CODE (decl
) == PARM_DECL
|| TREE_CODE (decl
) == RESULT_DECL
)
4839 return copy_decl_to_var (decl
, id
);
4841 return copy_decl_no_change (decl
, id
);
4844 /* Return a copy of the function's argument tree. */
4846 copy_arguments_for_versioning (tree orig_parm
, copy_body_data
* id
,
4847 bitmap args_to_skip
, tree
*vars
)
4850 tree new_parm
= NULL
;
4855 for (arg
= orig_parm
; arg
; arg
= DECL_CHAIN (arg
), i
++)
4856 if (!args_to_skip
|| !bitmap_bit_p (args_to_skip
, i
))
4858 tree new_tree
= remap_decl (arg
, id
);
4859 lang_hooks
.dup_lang_specific_decl (new_tree
);
4861 parg
= &DECL_CHAIN (new_tree
);
4863 else if (!pointer_map_contains (id
->decl_map
, arg
))
4865 /* Make an equivalent VAR_DECL. If the argument was used
4866 as temporary variable later in function, the uses will be
4867 replaced by local variable. */
4868 tree var
= copy_decl_to_var (arg
, id
);
4870 add_referenced_var (var
);
4871 insert_decl_map (id
, arg
, var
);
4872 /* Declare this new variable. */
4873 DECL_CHAIN (var
) = *vars
;
4879 /* Return a copy of the function's static chain. */
4881 copy_static_chain (tree static_chain
, copy_body_data
* id
)
4883 tree
*chain_copy
, *pvar
;
4885 chain_copy
= &static_chain
;
4886 for (pvar
= chain_copy
; *pvar
; pvar
= &DECL_CHAIN (*pvar
))
4888 tree new_tree
= remap_decl (*pvar
, id
);
4889 lang_hooks
.dup_lang_specific_decl (new_tree
);
4890 DECL_CHAIN (new_tree
) = DECL_CHAIN (*pvar
);
4893 return static_chain
;
4896 /* Return true if the function is allowed to be versioned.
4897 This is a guard for the versioning functionality. */
4900 tree_versionable_function_p (tree fndecl
)
4902 return (!lookup_attribute ("noclone", DECL_ATTRIBUTES (fndecl
))
4903 && copy_forbidden (DECL_STRUCT_FUNCTION (fndecl
), fndecl
) == NULL
);
4906 /* Delete all unreachable basic blocks and update callgraph.
4907 Doing so is somewhat nontrivial because we need to update all clones and
4908 remove inline function that become unreachable. */
4911 delete_unreachable_blocks_update_callgraph (copy_body_data
*id
)
4913 bool changed
= false;
4914 basic_block b
, next_bb
;
4916 find_unreachable_blocks ();
4918 /* Delete all unreachable basic blocks. */
4920 for (b
= ENTRY_BLOCK_PTR
->next_bb
; b
!= EXIT_BLOCK_PTR
; b
= next_bb
)
4922 next_bb
= b
->next_bb
;
4924 if (!(b
->flags
& BB_REACHABLE
))
4926 gimple_stmt_iterator bsi
;
4928 for (bsi
= gsi_start_bb (b
); !gsi_end_p (bsi
); gsi_next (&bsi
))
4929 if (gimple_code (gsi_stmt (bsi
)) == GIMPLE_CALL
)
4931 struct cgraph_edge
*e
;
4932 struct cgraph_node
*node
;
4934 if ((e
= cgraph_edge (id
->dst_node
, gsi_stmt (bsi
))) != NULL
)
4936 if (!e
->inline_failed
)
4937 cgraph_remove_node_and_inline_clones (e
->callee
);
4939 cgraph_remove_edge (e
);
4941 if (id
->transform_call_graph_edges
== CB_CGE_MOVE_CLONES
4942 && id
->dst_node
->clones
)
4943 for (node
= id
->dst_node
->clones
; node
!= id
->dst_node
;)
4945 if ((e
= cgraph_edge (node
, gsi_stmt (bsi
))) != NULL
)
4947 if (!e
->inline_failed
)
4948 cgraph_remove_node_and_inline_clones (e
->callee
);
4950 cgraph_remove_edge (e
);
4954 node
= node
->clones
;
4955 else if (node
->next_sibling_clone
)
4956 node
= node
->next_sibling_clone
;
4959 while (node
!= id
->dst_node
&& !node
->next_sibling_clone
)
4960 node
= node
->clone_of
;
4961 if (node
!= id
->dst_node
)
4962 node
= node
->next_sibling_clone
;
4966 delete_basic_block (b
);
4972 tidy_fallthru_edges ();
4976 /* Update clone info after duplication. */
4979 update_clone_info (copy_body_data
* id
)
4981 struct cgraph_node
*node
;
4982 if (!id
->dst_node
->clones
)
4984 for (node
= id
->dst_node
->clones
; node
!= id
->dst_node
;)
4986 /* First update replace maps to match the new body. */
4987 if (node
->clone
.tree_map
)
4990 for (i
= 0; i
< VEC_length (ipa_replace_map_p
, node
->clone
.tree_map
); i
++)
4992 struct ipa_replace_map
*replace_info
;
4993 replace_info
= VEC_index (ipa_replace_map_p
, node
->clone
.tree_map
, i
);
4994 walk_tree (&replace_info
->old_tree
, copy_tree_body_r
, id
, NULL
);
4995 walk_tree (&replace_info
->new_tree
, copy_tree_body_r
, id
, NULL
);
4999 node
= node
->clones
;
5000 else if (node
->next_sibling_clone
)
5001 node
= node
->next_sibling_clone
;
5004 while (node
!= id
->dst_node
&& !node
->next_sibling_clone
)
5005 node
= node
->clone_of
;
5006 if (node
!= id
->dst_node
)
5007 node
= node
->next_sibling_clone
;
5012 /* Create a copy of a function's tree.
5013 OLD_DECL and NEW_DECL are FUNCTION_DECL tree nodes
5014 of the original function and the new copied function
5015 respectively. In case we want to replace a DECL
5016 tree with another tree while duplicating the function's
5017 body, TREE_MAP represents the mapping between these
5018 trees. If UPDATE_CLONES is set, the call_stmt fields
5019 of edges of clones of the function will be updated.
5021 If non-NULL ARGS_TO_SKIP determine function parameters to remove
5023 If non-NULL BLOCK_TO_COPY determine what basic blocks to copy.
5024 If non_NULL NEW_ENTRY determine new entry BB of the clone.
5027 tree_function_versioning (tree old_decl
, tree new_decl
,
5028 VEC(ipa_replace_map_p
,gc
)* tree_map
,
5029 bool update_clones
, bitmap args_to_skip
,
5030 bitmap blocks_to_copy
, basic_block new_entry
)
5032 struct cgraph_node
*old_version_node
;
5033 struct cgraph_node
*new_version_node
;
5037 struct ipa_replace_map
*replace_info
;
5038 basic_block old_entry_block
, bb
;
5039 VEC (gimple
, heap
) *init_stmts
= VEC_alloc (gimple
, heap
, 10);
5041 tree old_current_function_decl
= current_function_decl
;
5042 tree vars
= NULL_TREE
;
5044 gcc_assert (TREE_CODE (old_decl
) == FUNCTION_DECL
5045 && TREE_CODE (new_decl
) == FUNCTION_DECL
);
5046 DECL_POSSIBLY_INLINED (old_decl
) = 1;
5048 old_version_node
= cgraph_node (old_decl
);
5049 new_version_node
= cgraph_node (new_decl
);
5051 /* Output the inlining info for this abstract function, since it has been
5052 inlined. If we don't do this now, we can lose the information about the
5053 variables in the function when the blocks get blown away as soon as we
5054 remove the cgraph node. */
5055 (*debug_hooks
->outlining_inline_function
) (old_decl
);
5057 DECL_ARTIFICIAL (new_decl
) = 1;
5058 DECL_ABSTRACT_ORIGIN (new_decl
) = DECL_ORIGIN (old_decl
);
5059 DECL_FUNCTION_PERSONALITY (new_decl
) = DECL_FUNCTION_PERSONALITY (old_decl
);
5061 /* Prepare the data structures for the tree copy. */
5062 memset (&id
, 0, sizeof (id
));
5064 /* Generate a new name for the new version. */
5065 id
.statements_to_fold
= pointer_set_create ();
5067 id
.decl_map
= pointer_map_create ();
5068 id
.debug_map
= NULL
;
5069 id
.src_fn
= old_decl
;
5070 id
.dst_fn
= new_decl
;
5071 id
.src_node
= old_version_node
;
5072 id
.dst_node
= new_version_node
;
5073 id
.src_cfun
= DECL_STRUCT_FUNCTION (old_decl
);
5074 if (id
.src_node
->ipa_transforms_to_apply
)
5076 VEC(ipa_opt_pass
,heap
) * old_transforms_to_apply
= id
.dst_node
->ipa_transforms_to_apply
;
5079 id
.dst_node
->ipa_transforms_to_apply
= VEC_copy (ipa_opt_pass
, heap
,
5080 id
.src_node
->ipa_transforms_to_apply
);
5081 for (i
= 0; i
< VEC_length (ipa_opt_pass
, old_transforms_to_apply
); i
++)
5082 VEC_safe_push (ipa_opt_pass
, heap
, id
.dst_node
->ipa_transforms_to_apply
,
5083 VEC_index (ipa_opt_pass
,
5084 old_transforms_to_apply
,
5088 id
.copy_decl
= copy_decl_no_change
;
5089 id
.transform_call_graph_edges
5090 = update_clones
? CB_CGE_MOVE_CLONES
: CB_CGE_MOVE
;
5091 id
.transform_new_cfg
= true;
5092 id
.transform_return_to_modify
= false;
5093 id
.transform_lang_insert_block
= NULL
;
5095 current_function_decl
= new_decl
;
5096 old_entry_block
= ENTRY_BLOCK_PTR_FOR_FUNCTION
5097 (DECL_STRUCT_FUNCTION (old_decl
));
5098 initialize_cfun (new_decl
, old_decl
,
5099 old_entry_block
->count
);
5100 DECL_STRUCT_FUNCTION (new_decl
)->gimple_df
->ipa_pta
5101 = id
.src_cfun
->gimple_df
->ipa_pta
;
5102 push_cfun (DECL_STRUCT_FUNCTION (new_decl
));
5104 /* Copy the function's static chain. */
5105 p
= DECL_STRUCT_FUNCTION (old_decl
)->static_chain_decl
;
5107 DECL_STRUCT_FUNCTION (new_decl
)->static_chain_decl
=
5108 copy_static_chain (DECL_STRUCT_FUNCTION (old_decl
)->static_chain_decl
,
5111 /* If there's a tree_map, prepare for substitution. */
5113 for (i
= 0; i
< VEC_length (ipa_replace_map_p
, tree_map
); i
++)
5116 replace_info
= VEC_index (ipa_replace_map_p
, tree_map
, i
);
5117 if (replace_info
->replace_p
)
5119 tree op
= replace_info
->new_tree
;
5120 if (!replace_info
->old_tree
)
5122 int i
= replace_info
->parm_num
;
5124 for (parm
= DECL_ARGUMENTS (old_decl
); i
; parm
= DECL_CHAIN (parm
))
5126 replace_info
->old_tree
= parm
;
5132 if (TREE_CODE (op
) == VIEW_CONVERT_EXPR
)
5133 op
= TREE_OPERAND (op
, 0);
5135 if (TREE_CODE (op
) == ADDR_EXPR
)
5137 op
= TREE_OPERAND (op
, 0);
5138 while (handled_component_p (op
))
5139 op
= TREE_OPERAND (op
, 0);
5140 if (TREE_CODE (op
) == VAR_DECL
)
5141 add_referenced_var (op
);
5143 gcc_assert (TREE_CODE (replace_info
->old_tree
) == PARM_DECL
);
5144 init
= setup_one_parameter (&id
, replace_info
->old_tree
,
5145 replace_info
->new_tree
, id
.src_fn
,
5149 VEC_safe_push (gimple
, heap
, init_stmts
, init
);
5152 /* Copy the function's arguments. */
5153 if (DECL_ARGUMENTS (old_decl
) != NULL_TREE
)
5154 DECL_ARGUMENTS (new_decl
) =
5155 copy_arguments_for_versioning (DECL_ARGUMENTS (old_decl
), &id
,
5156 args_to_skip
, &vars
);
5158 DECL_INITIAL (new_decl
) = remap_blocks (DECL_INITIAL (id
.src_fn
), &id
);
5160 declare_inline_vars (DECL_INITIAL (new_decl
), vars
);
5162 if (!VEC_empty (tree
, DECL_STRUCT_FUNCTION (old_decl
)->local_decls
))
5163 /* Add local vars. */
5164 add_local_variables (DECL_STRUCT_FUNCTION (old_decl
), cfun
, &id
, false);
5166 if (DECL_RESULT (old_decl
) != NULL_TREE
)
5169 DECL_RESULT (new_decl
) = remap_decl (DECL_RESULT (old_decl
), &id
);
5170 lang_hooks
.dup_lang_specific_decl (DECL_RESULT (new_decl
));
5171 if (gimple_in_ssa_p (id
.src_cfun
)
5172 && DECL_BY_REFERENCE (DECL_RESULT (old_decl
))
5174 = gimple_default_def (id
.src_cfun
, DECL_RESULT (old_decl
))))
5176 tree new_name
= make_ssa_name (DECL_RESULT (new_decl
), NULL
);
5177 insert_decl_map (&id
, old_name
, new_name
);
5178 SSA_NAME_DEF_STMT (new_name
) = gimple_build_nop ();
5179 set_default_def (DECL_RESULT (new_decl
), new_name
);
5183 /* Copy the Function's body. */
5184 copy_body (&id
, old_entry_block
->count
, REG_BR_PROB_BASE
,
5185 ENTRY_BLOCK_PTR
, EXIT_BLOCK_PTR
, blocks_to_copy
, new_entry
);
5187 /* Renumber the lexical scoping (non-code) blocks consecutively. */
5188 number_blocks (new_decl
);
5190 /* We want to create the BB unconditionally, so that the addition of
5191 debug stmts doesn't affect BB count, which may in the end cause
5192 codegen differences. */
5193 bb
= split_edge (single_succ_edge (ENTRY_BLOCK_PTR
));
5194 while (VEC_length (gimple
, init_stmts
))
5195 insert_init_stmt (&id
, bb
, VEC_pop (gimple
, init_stmts
));
5196 update_clone_info (&id
);
5198 /* Remap the nonlocal_goto_save_area, if any. */
5199 if (cfun
->nonlocal_goto_save_area
)
5201 struct walk_stmt_info wi
;
5203 memset (&wi
, 0, sizeof (wi
));
5205 walk_tree (&cfun
->nonlocal_goto_save_area
, remap_gimple_op_r
, &wi
, NULL
);
5209 pointer_map_destroy (id
.decl_map
);
5211 pointer_map_destroy (id
.debug_map
);
5212 free_dominance_info (CDI_DOMINATORS
);
5213 free_dominance_info (CDI_POST_DOMINATORS
);
5215 fold_marked_statements (0, id
.statements_to_fold
);
5216 pointer_set_destroy (id
.statements_to_fold
);
5217 fold_cond_expr_cond ();
5218 delete_unreachable_blocks_update_callgraph (&id
);
5219 if (id
.dst_node
->analyzed
)
5220 cgraph_rebuild_references ();
5221 update_ssa (TODO_update_ssa
);
5223 /* After partial cloning we need to rescale frequencies, so they are
5224 within proper range in the cloned function. */
5227 struct cgraph_edge
*e
;
5228 rebuild_frequencies ();
5230 new_version_node
->count
= ENTRY_BLOCK_PTR
->count
;
5231 for (e
= new_version_node
->callees
; e
; e
= e
->next_callee
)
5233 basic_block bb
= gimple_bb (e
->call_stmt
);
5234 e
->frequency
= compute_call_stmt_bb_frequency (current_function_decl
,
5236 e
->count
= bb
->count
;
5238 for (e
= new_version_node
->indirect_calls
; e
; e
= e
->next_callee
)
5240 basic_block bb
= gimple_bb (e
->call_stmt
);
5241 e
->frequency
= compute_call_stmt_bb_frequency (current_function_decl
,
5243 e
->count
= bb
->count
;
5247 free_dominance_info (CDI_DOMINATORS
);
5248 free_dominance_info (CDI_POST_DOMINATORS
);
5250 gcc_assert (!id
.debug_stmts
);
5251 VEC_free (gimple
, heap
, init_stmts
);
5253 current_function_decl
= old_current_function_decl
;
5254 gcc_assert (!current_function_decl
5255 || DECL_STRUCT_FUNCTION (current_function_decl
) == cfun
);
5259 /* EXP is CALL_EXPR present in a GENERIC expression tree. Try to integrate
5260 the callee and return the inlined body on success. */
5263 maybe_inline_call_in_expr (tree exp
)
5265 tree fn
= get_callee_fndecl (exp
);
5267 /* We can only try to inline "const" functions. */
5268 if (fn
&& TREE_READONLY (fn
) && DECL_SAVED_TREE (fn
))
5270 struct pointer_map_t
*decl_map
= pointer_map_create ();
5271 call_expr_arg_iterator iter
;
5275 /* Remap the parameters. */
5276 for (param
= DECL_ARGUMENTS (fn
), arg
= first_call_expr_arg (exp
, &iter
);
5278 param
= DECL_CHAIN (param
), arg
= next_call_expr_arg (&iter
))
5279 *pointer_map_insert (decl_map
, param
) = arg
;
5281 memset (&id
, 0, sizeof (id
));
5283 id
.dst_fn
= current_function_decl
;
5284 id
.src_cfun
= DECL_STRUCT_FUNCTION (fn
);
5285 id
.decl_map
= decl_map
;
5287 id
.copy_decl
= copy_decl_no_change
;
5288 id
.transform_call_graph_edges
= CB_CGE_DUPLICATE
;
5289 id
.transform_new_cfg
= false;
5290 id
.transform_return_to_modify
= true;
5291 id
.transform_lang_insert_block
= false;
5293 /* Make sure not to unshare trees behind the front-end's back
5294 since front-end specific mechanisms may rely on sharing. */
5295 id
.regimplify
= false;
5296 id
.do_not_unshare
= true;
5298 /* We're not inside any EH region. */
5301 t
= copy_tree_body (&id
);
5302 pointer_map_destroy (decl_map
);
5304 /* We can only return something suitable for use in a GENERIC
5306 if (TREE_CODE (t
) == MODIFY_EXPR
)
5307 return TREE_OPERAND (t
, 1);
5313 /* Duplicate a type, fields and all. */
5316 build_duplicate_type (tree type
)
5318 struct copy_body_data id
;
5320 memset (&id
, 0, sizeof (id
));
5321 id
.src_fn
= current_function_decl
;
5322 id
.dst_fn
= current_function_decl
;
5324 id
.decl_map
= pointer_map_create ();
5325 id
.debug_map
= NULL
;
5326 id
.copy_decl
= copy_decl_no_change
;
5328 type
= remap_type_1 (type
, &id
);
5330 pointer_map_destroy (id
.decl_map
);
5332 pointer_map_destroy (id
.debug_map
);
5334 TYPE_CANONICAL (type
) = type
;
5339 /* Return whether it is safe to inline a function because it used different
5340 target specific options or call site actual types mismatch parameter types.
5341 E is the call edge to be checked. */
5343 tree_can_inline_p (struct cgraph_edge
*e
)
5346 /* This causes a regression in SPEC in that it prevents a cold function from
5347 inlining a hot function. Perhaps this should only apply to functions
5348 that the user declares hot/cold/optimize explicitly. */
5350 /* Don't inline a function with a higher optimization level than the
5351 caller, or with different space constraints (hot/cold functions). */
5352 tree caller_tree
= DECL_FUNCTION_SPECIFIC_OPTIMIZATION (caller
);
5353 tree callee_tree
= DECL_FUNCTION_SPECIFIC_OPTIMIZATION (callee
);
5355 if (caller_tree
!= callee_tree
)
5357 struct cl_optimization
*caller_opt
5358 = TREE_OPTIMIZATION ((caller_tree
)
5360 : optimization_default_node
);
5362 struct cl_optimization
*callee_opt
5363 = TREE_OPTIMIZATION ((callee_tree
)
5365 : optimization_default_node
);
5367 if ((caller_opt
->optimize
> callee_opt
->optimize
)
5368 || (caller_opt
->optimize_size
!= callee_opt
->optimize_size
))
5372 tree caller
, callee
, lhs
;
5374 caller
= e
->caller
->decl
;
5375 callee
= e
->callee
->decl
;
5377 /* First check that inlining isn't simply forbidden in this case. */
5378 if (inline_forbidden_into_p (caller
, callee
))
5380 e
->inline_failed
= CIF_UNSPECIFIED
;
5382 gimple_call_set_cannot_inline (e
->call_stmt
, true);
5386 /* Allow the backend to decide if inlining is ok. */
5387 if (!targetm
.target_option
.can_inline_p (caller
, callee
))
5389 e
->inline_failed
= CIF_TARGET_OPTION_MISMATCH
;
5391 gimple_call_set_cannot_inline (e
->call_stmt
, true);
5392 e
->call_stmt_cannot_inline_p
= true;
5396 /* Do not inline calls where we cannot triviall work around mismatches
5397 in argument or return types. */
5399 && ((DECL_RESULT (callee
)
5400 && !DECL_BY_REFERENCE (DECL_RESULT (callee
))
5401 && (lhs
= gimple_call_lhs (e
->call_stmt
)) != NULL_TREE
5402 && !useless_type_conversion_p (TREE_TYPE (DECL_RESULT (callee
)),
5404 && !fold_convertible_p (TREE_TYPE (DECL_RESULT (callee
)), lhs
))
5405 || !gimple_check_call_args (e
->call_stmt
)))
5407 e
->inline_failed
= CIF_MISMATCHED_ARGUMENTS
;
5409 gimple_call_set_cannot_inline (e
->call_stmt
, true);
5410 e
->call_stmt_cannot_inline_p
= true;