PR tree-optimization/48734
[official-gcc.git] / gcc / tree-inline.c
blob797ea8bd5725be971944fe2d1f186e9d0ec7a352
1 /* Tree inlining.
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)
11 any later version.
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/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "diagnostic-core.h"
27 #include "tree.h"
28 #include "tree-inline.h"
29 #include "flags.h"
30 #include "params.h"
31 #include "input.h"
32 #include "insn-config.h"
33 #include "hashtab.h"
34 #include "langhooks.h"
35 #include "basic-block.h"
36 #include "tree-iterator.h"
37 #include "cgraph.h"
38 #include "intl.h"
39 #include "tree-mudflap.h"
40 #include "tree-flow.h"
41 #include "function.h"
42 #include "tree-flow.h"
43 #include "tree-pretty-print.h"
44 #include "except.h"
45 #include "debug.h"
46 #include "pointer-set.h"
47 #include "ipa-prop.h"
48 #include "value-prof.h"
49 #include "tree-pass.h"
50 #include "target.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
56 non-gimple trees. */
57 #include "gimple.h"
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 (). */
91 /* To Do:
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
98 are not needed.
100 o Provide heuristics to clamp inlining of recursive template
101 calls? */
104 /* Weights that estimate_num_insns uses to estimate the size of the
105 produced code. */
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;
114 /* Prototypes. */
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. */
134 void
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. */
141 if (key != value)
142 *pointer_map_insert (id->decl_map, value) = value;
145 /* Insert a tree->tree mapping for ID. This is only used for
146 variables. */
148 static void
149 insert_debug_decl_map (copy_body_data *id, tree key, tree value)
151 if (!gimple_in_ssa_p (id->src_cfun))
152 return;
154 if (!MAY_HAVE_DEBUG_STMTS)
155 return;
157 if (!target_for_debug_bind (key))
158 return;
160 gcc_assert (TREE_CODE (key) == PARM_DECL);
161 gcc_assert (TREE_CODE (value) == VAR_DECL);
163 if (!id->debug_map)
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
172 context. */
173 static int processing_debug_stmt = 0;
175 /* Construct new SSA name for old NAME. ID is the inline context. */
177 static tree
178 remap_ssa_name (tree name, copy_body_data *id)
180 tree new_tree;
181 tree *n;
183 gcc_assert (TREE_CODE (name) == SSA_NAME);
185 n = (tree *) pointer_map_contains (id->decl_map, name);
186 if (n)
187 return unshare_expr (*n);
189 if (processing_debug_stmt)
191 processing_debug_stmt = -1;
192 return name;
195 /* Do not set DEF_STMT yet as statement is not copied yet. We do that
196 in copy_bb. */
197 new_tree = remap_decl (SSA_NAME_VAR (name), id);
199 /* We might've substituted constant or another SSA_NAME for
200 the variable.
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))
219 && !pi->pt.anything)
221 struct ptr_info_def *new_pi = get_ptr_info (new_tree);
222 new_pi->pt = pi->pt;
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. */
235 if (id->entry_bb
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);
243 gimple init_stmt;
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;
250 else
252 SSA_NAME_DEF_STMT (new_tree) = gimple_build_nop ();
253 if (gimple_default_def (id->src_cfun, SSA_NAME_VAR (name))
254 == name)
255 set_default_def (SSA_NAME_VAR (new_tree), new_tree);
259 else
260 insert_decl_map (id, name, new_tree);
261 return new_tree;
264 /* Remap DECL during the copying of the BLOCK tree for the function. */
266 tree
267 remap_decl (tree decl, copy_body_data *id)
269 tree *n;
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;
280 return decl;
283 /* If we didn't already have an equivalent for this declaration,
284 create one now. */
285 if (!n)
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);
295 if (!DECL_P (t))
296 return 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 ((TREE_CODE (t) == VAR_DECL
316 || TREE_CODE (t) == RESULT_DECL
317 || TREE_CODE (t) == PARM_DECL)
318 && id->src_fn && DECL_STRUCT_FUNCTION (id->src_fn)
319 && gimple_referenced_vars (DECL_STRUCT_FUNCTION (id->src_fn))
320 /* We don't want to mark as referenced VAR_DECLs that were
321 not marked as such in the src function. */
322 && (TREE_CODE (decl) != VAR_DECL
323 || referenced_var_lookup (DECL_STRUCT_FUNCTION (id->src_fn),
324 DECL_UID (decl))))
325 add_referenced_var (t);
326 return t;
329 if (id->do_not_unshare)
330 return *n;
331 else
332 return unshare_expr (*n);
335 static tree
336 remap_type_1 (tree type, copy_body_data *id)
338 tree new_tree, t;
340 /* We do need a copy. build and register it now. If this is a pointer or
341 reference type, remap the designated type and make a new pointer or
342 reference type. */
343 if (TREE_CODE (type) == POINTER_TYPE)
345 new_tree = build_pointer_type_for_mode (remap_type (TREE_TYPE (type), id),
346 TYPE_MODE (type),
347 TYPE_REF_CAN_ALIAS_ALL (type));
348 if (TYPE_ATTRIBUTES (type) || TYPE_QUALS (type))
349 new_tree = build_type_attribute_qual_variant (new_tree,
350 TYPE_ATTRIBUTES (type),
351 TYPE_QUALS (type));
352 insert_decl_map (id, type, new_tree);
353 return new_tree;
355 else if (TREE_CODE (type) == REFERENCE_TYPE)
357 new_tree = build_reference_type_for_mode (remap_type (TREE_TYPE (type), id),
358 TYPE_MODE (type),
359 TYPE_REF_CAN_ALIAS_ALL (type));
360 if (TYPE_ATTRIBUTES (type) || TYPE_QUALS (type))
361 new_tree = build_type_attribute_qual_variant (new_tree,
362 TYPE_ATTRIBUTES (type),
363 TYPE_QUALS (type));
364 insert_decl_map (id, type, new_tree);
365 return new_tree;
367 else
368 new_tree = copy_node (type);
370 insert_decl_map (id, type, new_tree);
372 /* This is a new type, not a copy of an old type. Need to reassociate
373 variants. We can handle everything except the main variant lazily. */
374 t = TYPE_MAIN_VARIANT (type);
375 if (type != t)
377 t = remap_type (t, id);
378 TYPE_MAIN_VARIANT (new_tree) = t;
379 TYPE_NEXT_VARIANT (new_tree) = TYPE_NEXT_VARIANT (t);
380 TYPE_NEXT_VARIANT (t) = new_tree;
382 else
384 TYPE_MAIN_VARIANT (new_tree) = new_tree;
385 TYPE_NEXT_VARIANT (new_tree) = NULL;
388 if (TYPE_STUB_DECL (type))
389 TYPE_STUB_DECL (new_tree) = remap_decl (TYPE_STUB_DECL (type), id);
391 /* Lazily create pointer and reference types. */
392 TYPE_POINTER_TO (new_tree) = NULL;
393 TYPE_REFERENCE_TO (new_tree) = NULL;
395 switch (TREE_CODE (new_tree))
397 case INTEGER_TYPE:
398 case REAL_TYPE:
399 case FIXED_POINT_TYPE:
400 case ENUMERAL_TYPE:
401 case BOOLEAN_TYPE:
402 t = TYPE_MIN_VALUE (new_tree);
403 if (t && TREE_CODE (t) != INTEGER_CST)
404 walk_tree (&TYPE_MIN_VALUE (new_tree), copy_tree_body_r, id, NULL);
406 t = TYPE_MAX_VALUE (new_tree);
407 if (t && TREE_CODE (t) != INTEGER_CST)
408 walk_tree (&TYPE_MAX_VALUE (new_tree), copy_tree_body_r, id, NULL);
409 return new_tree;
411 case FUNCTION_TYPE:
412 TREE_TYPE (new_tree) = remap_type (TREE_TYPE (new_tree), id);
413 walk_tree (&TYPE_ARG_TYPES (new_tree), copy_tree_body_r, id, NULL);
414 return new_tree;
416 case ARRAY_TYPE:
417 TREE_TYPE (new_tree) = remap_type (TREE_TYPE (new_tree), id);
418 TYPE_DOMAIN (new_tree) = remap_type (TYPE_DOMAIN (new_tree), id);
419 break;
421 case RECORD_TYPE:
422 case UNION_TYPE:
423 case QUAL_UNION_TYPE:
425 tree f, nf = NULL;
427 for (f = TYPE_FIELDS (new_tree); f ; f = DECL_CHAIN (f))
429 t = remap_decl (f, id);
430 DECL_CONTEXT (t) = new_tree;
431 DECL_CHAIN (t) = nf;
432 nf = t;
434 TYPE_FIELDS (new_tree) = nreverse (nf);
436 break;
438 case OFFSET_TYPE:
439 default:
440 /* Shouldn't have been thought variable sized. */
441 gcc_unreachable ();
444 walk_tree (&TYPE_SIZE (new_tree), copy_tree_body_r, id, NULL);
445 walk_tree (&TYPE_SIZE_UNIT (new_tree), copy_tree_body_r, id, NULL);
447 return new_tree;
450 tree
451 remap_type (tree type, copy_body_data *id)
453 tree *node;
454 tree tmp;
456 if (type == NULL)
457 return type;
459 /* See if we have remapped this type. */
460 node = (tree *) pointer_map_contains (id->decl_map, type);
461 if (node)
462 return *node;
464 /* The type only needs remapping if it's variably modified. */
465 if (! variably_modified_type_p (type, id->src_fn))
467 insert_decl_map (id, type, type);
468 return type;
471 id->remapping_type_depth++;
472 tmp = remap_type_1 (type, id);
473 id->remapping_type_depth--;
475 return tmp;
478 /* Return previously remapped type of TYPE in ID. Return NULL if TYPE
479 is NULL or TYPE has not been remapped before. */
481 static tree
482 remapped_type (tree type, copy_body_data *id)
484 tree *node;
486 if (type == NULL)
487 return type;
489 /* See if we have remapped this type. */
490 node = (tree *) pointer_map_contains (id->decl_map, type);
491 if (node)
492 return *node;
493 else
494 return NULL;
497 /* The type only needs remapping if it's variably modified. */
498 /* Decide if DECL can be put into BLOCK_NONLOCAL_VARs. */
500 static bool
501 can_be_nonlocal (tree decl, copy_body_data *id)
503 /* We can not duplicate function decls. */
504 if (TREE_CODE (decl) == FUNCTION_DECL)
505 return true;
507 /* Local static vars must be non-local or we get multiple declaration
508 problems. */
509 if (TREE_CODE (decl) == VAR_DECL
510 && !auto_var_in_fn_p (decl, id->src_fn))
511 return true;
513 /* At the moment dwarf2out can handle only these types of nodes. We
514 can support more later. */
515 if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != PARM_DECL)
516 return false;
518 /* We must use global type. We call remapped_type instead of
519 remap_type since we don't want to remap this type here if it
520 hasn't been remapped before. */
521 if (TREE_TYPE (decl) != remapped_type (TREE_TYPE (decl), id))
522 return false;
524 /* Wihtout SSA we can't tell if variable is used. */
525 if (!gimple_in_ssa_p (cfun))
526 return false;
528 /* Live variables must be copied so we can attach DECL_RTL. */
529 if (var_ann (decl))
530 return false;
532 return true;
535 static tree
536 remap_decls (tree decls, VEC(tree,gc) **nonlocalized_list, copy_body_data *id)
538 tree old_var;
539 tree new_decls = NULL_TREE;
541 /* Remap its variables. */
542 for (old_var = decls; old_var; old_var = DECL_CHAIN (old_var))
544 tree new_var;
546 if (can_be_nonlocal (old_var, id))
548 if (TREE_CODE (old_var) == VAR_DECL
549 && ! DECL_EXTERNAL (old_var)
550 && (var_ann (old_var) || !gimple_in_ssa_p (cfun)))
551 add_local_decl (cfun, old_var);
552 if ((!optimize || debug_info_level > DINFO_LEVEL_TERSE)
553 && !DECL_IGNORED_P (old_var)
554 && nonlocalized_list)
555 VEC_safe_push (tree, gc, *nonlocalized_list, old_var);
556 continue;
559 /* Remap the variable. */
560 new_var = remap_decl (old_var, id);
562 /* If we didn't remap this variable, we can't mess with its
563 TREE_CHAIN. If we remapped this variable to the return slot, it's
564 already declared somewhere else, so don't declare it here. */
566 if (new_var == id->retvar)
568 else if (!new_var)
570 if ((!optimize || debug_info_level > DINFO_LEVEL_TERSE)
571 && !DECL_IGNORED_P (old_var)
572 && nonlocalized_list)
573 VEC_safe_push (tree, gc, *nonlocalized_list, old_var);
575 else
577 gcc_assert (DECL_P (new_var));
578 DECL_CHAIN (new_var) = new_decls;
579 new_decls = new_var;
581 /* Also copy value-expressions. */
582 if (TREE_CODE (new_var) == VAR_DECL
583 && DECL_HAS_VALUE_EXPR_P (new_var))
585 tree tem = DECL_VALUE_EXPR (new_var);
586 bool old_regimplify = id->regimplify;
587 id->remapping_type_depth++;
588 walk_tree (&tem, copy_tree_body_r, id, NULL);
589 id->remapping_type_depth--;
590 id->regimplify = old_regimplify;
591 SET_DECL_VALUE_EXPR (new_var, tem);
596 return nreverse (new_decls);
599 /* Copy the BLOCK to contain remapped versions of the variables
600 therein. And hook the new block into the block-tree. */
602 static void
603 remap_block (tree *block, copy_body_data *id)
605 tree old_block;
606 tree new_block;
608 /* Make the new block. */
609 old_block = *block;
610 new_block = make_node (BLOCK);
611 TREE_USED (new_block) = TREE_USED (old_block);
612 BLOCK_ABSTRACT_ORIGIN (new_block) = old_block;
613 BLOCK_SOURCE_LOCATION (new_block) = BLOCK_SOURCE_LOCATION (old_block);
614 BLOCK_NONLOCALIZED_VARS (new_block)
615 = VEC_copy (tree, gc, BLOCK_NONLOCALIZED_VARS (old_block));
616 *block = new_block;
618 /* Remap its variables. */
619 BLOCK_VARS (new_block) = remap_decls (BLOCK_VARS (old_block),
620 &BLOCK_NONLOCALIZED_VARS (new_block),
621 id);
623 if (id->transform_lang_insert_block)
624 id->transform_lang_insert_block (new_block);
626 /* Remember the remapped block. */
627 insert_decl_map (id, old_block, new_block);
630 /* Copy the whole block tree and root it in id->block. */
631 static tree
632 remap_blocks (tree block, copy_body_data *id)
634 tree t;
635 tree new_tree = block;
637 if (!block)
638 return NULL;
640 remap_block (&new_tree, id);
641 gcc_assert (new_tree != block);
642 for (t = BLOCK_SUBBLOCKS (block); t ; t = BLOCK_CHAIN (t))
643 prepend_lexical_block (new_tree, remap_blocks (t, id));
644 /* Blocks are in arbitrary order, but make things slightly prettier and do
645 not swap order when producing a copy. */
646 BLOCK_SUBBLOCKS (new_tree) = blocks_nreverse (BLOCK_SUBBLOCKS (new_tree));
647 return new_tree;
650 static void
651 copy_statement_list (tree *tp)
653 tree_stmt_iterator oi, ni;
654 tree new_tree;
656 new_tree = alloc_stmt_list ();
657 ni = tsi_start (new_tree);
658 oi = tsi_start (*tp);
659 TREE_TYPE (new_tree) = TREE_TYPE (*tp);
660 *tp = new_tree;
662 for (; !tsi_end_p (oi); tsi_next (&oi))
664 tree stmt = tsi_stmt (oi);
665 if (TREE_CODE (stmt) == STATEMENT_LIST)
666 copy_statement_list (&stmt);
667 tsi_link_after (&ni, stmt, TSI_CONTINUE_LINKING);
671 static void
672 copy_bind_expr (tree *tp, int *walk_subtrees, copy_body_data *id)
674 tree block = BIND_EXPR_BLOCK (*tp);
675 /* Copy (and replace) the statement. */
676 copy_tree_r (tp, walk_subtrees, NULL);
677 if (block)
679 remap_block (&block, id);
680 BIND_EXPR_BLOCK (*tp) = block;
683 if (BIND_EXPR_VARS (*tp))
684 /* This will remap a lot of the same decls again, but this should be
685 harmless. */
686 BIND_EXPR_VARS (*tp) = remap_decls (BIND_EXPR_VARS (*tp), NULL, id);
690 /* Create a new gimple_seq by remapping all the statements in BODY
691 using the inlining information in ID. */
693 static gimple_seq
694 remap_gimple_seq (gimple_seq body, copy_body_data *id)
696 gimple_stmt_iterator si;
697 gimple_seq new_body = NULL;
699 for (si = gsi_start (body); !gsi_end_p (si); gsi_next (&si))
701 gimple new_stmt = remap_gimple_stmt (gsi_stmt (si), id);
702 gimple_seq_add_stmt (&new_body, new_stmt);
705 return new_body;
709 /* Copy a GIMPLE_BIND statement STMT, remapping all the symbols in its
710 block using the mapping information in ID. */
712 static gimple
713 copy_gimple_bind (gimple stmt, copy_body_data *id)
715 gimple new_bind;
716 tree new_block, new_vars;
717 gimple_seq body, new_body;
719 /* Copy the statement. Note that we purposely don't use copy_stmt
720 here because we need to remap statements as we copy. */
721 body = gimple_bind_body (stmt);
722 new_body = remap_gimple_seq (body, id);
724 new_block = gimple_bind_block (stmt);
725 if (new_block)
726 remap_block (&new_block, id);
728 /* This will remap a lot of the same decls again, but this should be
729 harmless. */
730 new_vars = gimple_bind_vars (stmt);
731 if (new_vars)
732 new_vars = remap_decls (new_vars, NULL, id);
734 new_bind = gimple_build_bind (new_vars, new_body, new_block);
736 return new_bind;
740 /* Remap the GIMPLE operand pointed to by *TP. DATA is really a
741 'struct walk_stmt_info *'. DATA->INFO is a 'copy_body_data *'.
742 WALK_SUBTREES is used to indicate walk_gimple_op whether to keep
743 recursing into the children nodes of *TP. */
745 static tree
746 remap_gimple_op_r (tree *tp, int *walk_subtrees, void *data)
748 struct walk_stmt_info *wi_p = (struct walk_stmt_info *) data;
749 copy_body_data *id = (copy_body_data *) wi_p->info;
750 tree fn = id->src_fn;
752 if (TREE_CODE (*tp) == SSA_NAME)
754 *tp = remap_ssa_name (*tp, id);
755 *walk_subtrees = 0;
756 return NULL;
758 else if (auto_var_in_fn_p (*tp, fn))
760 /* Local variables and labels need to be replaced by equivalent
761 variables. We don't want to copy static variables; there's
762 only one of those, no matter how many times we inline the
763 containing function. Similarly for globals from an outer
764 function. */
765 tree new_decl;
767 /* Remap the declaration. */
768 new_decl = remap_decl (*tp, id);
769 gcc_assert (new_decl);
770 /* Replace this variable with the copy. */
771 STRIP_TYPE_NOPS (new_decl);
772 /* ??? The C++ frontend uses void * pointer zero to initialize
773 any other type. This confuses the middle-end type verification.
774 As cloned bodies do not go through gimplification again the fixup
775 there doesn't trigger. */
776 if (TREE_CODE (new_decl) == INTEGER_CST
777 && !useless_type_conversion_p (TREE_TYPE (*tp), TREE_TYPE (new_decl)))
778 new_decl = fold_convert (TREE_TYPE (*tp), new_decl);
779 *tp = new_decl;
780 *walk_subtrees = 0;
782 else if (TREE_CODE (*tp) == STATEMENT_LIST)
783 gcc_unreachable ();
784 else if (TREE_CODE (*tp) == SAVE_EXPR)
785 gcc_unreachable ();
786 else if (TREE_CODE (*tp) == LABEL_DECL
787 && (!DECL_CONTEXT (*tp)
788 || decl_function_context (*tp) == id->src_fn))
789 /* These may need to be remapped for EH handling. */
790 *tp = remap_decl (*tp, id);
791 else if (TYPE_P (*tp))
792 /* Types may need remapping as well. */
793 *tp = remap_type (*tp, id);
794 else if (CONSTANT_CLASS_P (*tp))
796 /* If this is a constant, we have to copy the node iff the type
797 will be remapped. copy_tree_r will not copy a constant. */
798 tree new_type = remap_type (TREE_TYPE (*tp), id);
800 if (new_type == TREE_TYPE (*tp))
801 *walk_subtrees = 0;
803 else if (TREE_CODE (*tp) == INTEGER_CST)
804 *tp = build_int_cst_wide (new_type, TREE_INT_CST_LOW (*tp),
805 TREE_INT_CST_HIGH (*tp));
806 else
808 *tp = copy_node (*tp);
809 TREE_TYPE (*tp) = new_type;
812 else
814 /* Otherwise, just copy the node. Note that copy_tree_r already
815 knows not to copy VAR_DECLs, etc., so this is safe. */
816 if (TREE_CODE (*tp) == MEM_REF)
818 tree ptr = TREE_OPERAND (*tp, 0);
819 tree old = *tp;
820 tree tem;
822 /* We need to re-canonicalize MEM_REFs from inline substitutions
823 that can happen when a pointer argument is an ADDR_EXPR.
824 Recurse here manually to allow that. */
825 walk_tree (&ptr, remap_gimple_op_r, data, NULL);
826 if ((tem = maybe_fold_offset_to_reference (EXPR_LOCATION (*tp),
827 ptr,
828 TREE_OPERAND (*tp, 1),
829 TREE_TYPE (*tp)))
830 && TREE_THIS_VOLATILE (tem) == TREE_THIS_VOLATILE (old))
832 tree *tem_basep = &tem;
833 while (handled_component_p (*tem_basep))
834 tem_basep = &TREE_OPERAND (*tem_basep, 0);
835 if (TREE_CODE (*tem_basep) == MEM_REF)
836 *tem_basep
837 = build2 (MEM_REF, TREE_TYPE (*tem_basep),
838 TREE_OPERAND (*tem_basep, 0),
839 fold_convert (TREE_TYPE (TREE_OPERAND (*tp, 1)),
840 TREE_OPERAND (*tem_basep, 1)));
841 else
842 *tem_basep
843 = build2 (MEM_REF, TREE_TYPE (*tem_basep),
844 build_fold_addr_expr (*tem_basep),
845 build_int_cst
846 (TREE_TYPE (TREE_OPERAND (*tp, 1)), 0));
847 *tp = tem;
849 else
851 *tp = fold_build2 (MEM_REF, TREE_TYPE (*tp),
852 ptr, TREE_OPERAND (*tp, 1));
853 TREE_THIS_VOLATILE (*tp) = TREE_THIS_VOLATILE (old);
854 TREE_THIS_NOTRAP (*tp) = TREE_THIS_NOTRAP (old);
856 TREE_NO_WARNING (*tp) = TREE_NO_WARNING (old);
857 *walk_subtrees = 0;
858 return NULL;
861 /* Here is the "usual case". Copy this tree node, and then
862 tweak some special cases. */
863 copy_tree_r (tp, walk_subtrees, NULL);
865 /* Global variables we haven't seen yet need to go into referenced
866 vars. If not referenced from types only. */
867 if (gimple_in_ssa_p (cfun)
868 && TREE_CODE (*tp) == VAR_DECL
869 && id->remapping_type_depth == 0
870 && !processing_debug_stmt)
871 add_referenced_var (*tp);
873 /* We should never have TREE_BLOCK set on non-statements. */
874 if (EXPR_P (*tp))
875 gcc_assert (!TREE_BLOCK (*tp));
877 if (TREE_CODE (*tp) != OMP_CLAUSE)
878 TREE_TYPE (*tp) = remap_type (TREE_TYPE (*tp), id);
880 if (TREE_CODE (*tp) == TARGET_EXPR && TREE_OPERAND (*tp, 3))
882 /* The copied TARGET_EXPR has never been expanded, even if the
883 original node was expanded already. */
884 TREE_OPERAND (*tp, 1) = TREE_OPERAND (*tp, 3);
885 TREE_OPERAND (*tp, 3) = NULL_TREE;
887 else if (TREE_CODE (*tp) == ADDR_EXPR)
889 /* Variable substitution need not be simple. In particular,
890 the MEM_REF substitution above. Make sure that
891 TREE_CONSTANT and friends are up-to-date. But make sure
892 to not improperly set TREE_BLOCK on some sub-expressions. */
893 int invariant = is_gimple_min_invariant (*tp);
894 tree block = id->block;
895 id->block = NULL_TREE;
896 walk_tree (&TREE_OPERAND (*tp, 0), remap_gimple_op_r, data, NULL);
897 id->block = block;
898 recompute_tree_invariant_for_addr_expr (*tp);
900 /* If this used to be invariant, but is not any longer,
901 then regimplification is probably needed. */
902 if (invariant && !is_gimple_min_invariant (*tp))
903 id->regimplify = true;
905 *walk_subtrees = 0;
909 /* Keep iterating. */
910 return NULL_TREE;
914 /* Called from copy_body_id via walk_tree. DATA is really a
915 `copy_body_data *'. */
917 tree
918 copy_tree_body_r (tree *tp, int *walk_subtrees, void *data)
920 copy_body_data *id = (copy_body_data *) data;
921 tree fn = id->src_fn;
922 tree new_block;
924 /* Begin by recognizing trees that we'll completely rewrite for the
925 inlining context. Our output for these trees is completely
926 different from out input (e.g. RETURN_EXPR is deleted, and morphs
927 into an edge). Further down, we'll handle trees that get
928 duplicated and/or tweaked. */
930 /* When requested, RETURN_EXPRs should be transformed to just the
931 contained MODIFY_EXPR. The branch semantics of the return will
932 be handled elsewhere by manipulating the CFG rather than a statement. */
933 if (TREE_CODE (*tp) == RETURN_EXPR && id->transform_return_to_modify)
935 tree assignment = TREE_OPERAND (*tp, 0);
937 /* If we're returning something, just turn that into an
938 assignment into the equivalent of the original RESULT_DECL.
939 If the "assignment" is just the result decl, the result
940 decl has already been set (e.g. a recent "foo (&result_decl,
941 ...)"); just toss the entire RETURN_EXPR. */
942 if (assignment && TREE_CODE (assignment) == MODIFY_EXPR)
944 /* Replace the RETURN_EXPR with (a copy of) the
945 MODIFY_EXPR hanging underneath. */
946 *tp = copy_node (assignment);
948 else /* Else the RETURN_EXPR returns no value. */
950 *tp = NULL;
951 return (tree) (void *)1;
954 else if (TREE_CODE (*tp) == SSA_NAME)
956 *tp = remap_ssa_name (*tp, id);
957 *walk_subtrees = 0;
958 return NULL;
961 /* Local variables and labels need to be replaced by equivalent
962 variables. We don't want to copy static variables; there's only
963 one of those, no matter how many times we inline the containing
964 function. Similarly for globals from an outer function. */
965 else if (auto_var_in_fn_p (*tp, fn))
967 tree new_decl;
969 /* Remap the declaration. */
970 new_decl = remap_decl (*tp, id);
971 gcc_assert (new_decl);
972 /* Replace this variable with the copy. */
973 STRIP_TYPE_NOPS (new_decl);
974 *tp = new_decl;
975 *walk_subtrees = 0;
977 else if (TREE_CODE (*tp) == STATEMENT_LIST)
978 copy_statement_list (tp);
979 else if (TREE_CODE (*tp) == SAVE_EXPR
980 || TREE_CODE (*tp) == TARGET_EXPR)
981 remap_save_expr (tp, id->decl_map, walk_subtrees);
982 else if (TREE_CODE (*tp) == LABEL_DECL
983 && (! DECL_CONTEXT (*tp)
984 || decl_function_context (*tp) == id->src_fn))
985 /* These may need to be remapped for EH handling. */
986 *tp = remap_decl (*tp, id);
987 else if (TREE_CODE (*tp) == BIND_EXPR)
988 copy_bind_expr (tp, walk_subtrees, id);
989 /* Types may need remapping as well. */
990 else if (TYPE_P (*tp))
991 *tp = remap_type (*tp, id);
993 /* If this is a constant, we have to copy the node iff the type will be
994 remapped. copy_tree_r will not copy a constant. */
995 else if (CONSTANT_CLASS_P (*tp))
997 tree new_type = remap_type (TREE_TYPE (*tp), id);
999 if (new_type == TREE_TYPE (*tp))
1000 *walk_subtrees = 0;
1002 else if (TREE_CODE (*tp) == INTEGER_CST)
1003 *tp = build_int_cst_wide (new_type, TREE_INT_CST_LOW (*tp),
1004 TREE_INT_CST_HIGH (*tp));
1005 else
1007 *tp = copy_node (*tp);
1008 TREE_TYPE (*tp) = new_type;
1012 /* Otherwise, just copy the node. Note that copy_tree_r already
1013 knows not to copy VAR_DECLs, etc., so this is safe. */
1014 else
1016 /* Here we handle trees that are not completely rewritten.
1017 First we detect some inlining-induced bogosities for
1018 discarding. */
1019 if (TREE_CODE (*tp) == MODIFY_EXPR
1020 && TREE_OPERAND (*tp, 0) == TREE_OPERAND (*tp, 1)
1021 && (auto_var_in_fn_p (TREE_OPERAND (*tp, 0), fn)))
1023 /* Some assignments VAR = VAR; don't generate any rtl code
1024 and thus don't count as variable modification. Avoid
1025 keeping bogosities like 0 = 0. */
1026 tree decl = TREE_OPERAND (*tp, 0), value;
1027 tree *n;
1029 n = (tree *) pointer_map_contains (id->decl_map, decl);
1030 if (n)
1032 value = *n;
1033 STRIP_TYPE_NOPS (value);
1034 if (TREE_CONSTANT (value) || TREE_READONLY (value))
1036 *tp = build_empty_stmt (EXPR_LOCATION (*tp));
1037 return copy_tree_body_r (tp, walk_subtrees, data);
1041 else if (TREE_CODE (*tp) == INDIRECT_REF)
1043 /* Get rid of *& from inline substitutions that can happen when a
1044 pointer argument is an ADDR_EXPR. */
1045 tree decl = TREE_OPERAND (*tp, 0);
1046 tree *n;
1048 n = (tree *) pointer_map_contains (id->decl_map, decl);
1049 if (n)
1051 tree new_tree;
1052 tree old;
1053 /* If we happen to get an ADDR_EXPR in n->value, strip
1054 it manually here as we'll eventually get ADDR_EXPRs
1055 which lie about their types pointed to. In this case
1056 build_fold_indirect_ref wouldn't strip the INDIRECT_REF,
1057 but we absolutely rely on that. As fold_indirect_ref
1058 does other useful transformations, try that first, though. */
1059 tree type = TREE_TYPE (TREE_TYPE (*n));
1060 if (id->do_not_unshare)
1061 new_tree = *n;
1062 else
1063 new_tree = unshare_expr (*n);
1064 old = *tp;
1065 *tp = gimple_fold_indirect_ref (new_tree);
1066 if (! *tp)
1068 if (TREE_CODE (new_tree) == ADDR_EXPR)
1070 *tp = fold_indirect_ref_1 (EXPR_LOCATION (new_tree),
1071 type, new_tree);
1072 /* ??? We should either assert here or build
1073 a VIEW_CONVERT_EXPR instead of blindly leaking
1074 incompatible types to our IL. */
1075 if (! *tp)
1076 *tp = TREE_OPERAND (new_tree, 0);
1078 else
1080 *tp = build1 (INDIRECT_REF, type, new_tree);
1081 TREE_THIS_VOLATILE (*tp) = TREE_THIS_VOLATILE (old);
1082 TREE_SIDE_EFFECTS (*tp) = TREE_SIDE_EFFECTS (old);
1083 TREE_READONLY (*tp) = TREE_READONLY (old);
1084 TREE_THIS_NOTRAP (*tp) = TREE_THIS_NOTRAP (old);
1087 *walk_subtrees = 0;
1088 return NULL;
1091 else if (TREE_CODE (*tp) == MEM_REF)
1093 /* We need to re-canonicalize MEM_REFs from inline substitutions
1094 that can happen when a pointer argument is an ADDR_EXPR. */
1095 tree decl = TREE_OPERAND (*tp, 0);
1096 tree *n;
1098 n = (tree *) pointer_map_contains (id->decl_map, decl);
1099 if (n)
1101 tree old = *tp;
1102 *tp = fold_build2 (MEM_REF, TREE_TYPE (*tp),
1103 unshare_expr (*n), TREE_OPERAND (*tp, 1));
1104 TREE_THIS_VOLATILE (*tp) = TREE_THIS_VOLATILE (old);
1105 TREE_NO_WARNING (*tp) = TREE_NO_WARNING (old);
1106 *walk_subtrees = 0;
1107 return NULL;
1111 /* Here is the "usual case". Copy this tree node, and then
1112 tweak some special cases. */
1113 copy_tree_r (tp, walk_subtrees, NULL);
1115 /* Global variables we haven't seen yet needs to go into referenced
1116 vars. If not referenced from types or debug stmts only. */
1117 if (gimple_in_ssa_p (cfun)
1118 && TREE_CODE (*tp) == VAR_DECL
1119 && id->remapping_type_depth == 0
1120 && !processing_debug_stmt)
1121 add_referenced_var (*tp);
1123 /* If EXPR has block defined, map it to newly constructed block.
1124 When inlining we want EXPRs without block appear in the block
1125 of function call if we are not remapping a type. */
1126 if (EXPR_P (*tp))
1128 new_block = id->remapping_type_depth == 0 ? id->block : NULL;
1129 if (TREE_BLOCK (*tp))
1131 tree *n;
1132 n = (tree *) pointer_map_contains (id->decl_map,
1133 TREE_BLOCK (*tp));
1134 gcc_assert (n || id->remapping_type_depth != 0);
1135 if (n)
1136 new_block = *n;
1138 TREE_BLOCK (*tp) = new_block;
1141 if (TREE_CODE (*tp) != OMP_CLAUSE)
1142 TREE_TYPE (*tp) = remap_type (TREE_TYPE (*tp), id);
1144 /* The copied TARGET_EXPR has never been expanded, even if the
1145 original node was expanded already. */
1146 if (TREE_CODE (*tp) == TARGET_EXPR && TREE_OPERAND (*tp, 3))
1148 TREE_OPERAND (*tp, 1) = TREE_OPERAND (*tp, 3);
1149 TREE_OPERAND (*tp, 3) = NULL_TREE;
1152 /* Variable substitution need not be simple. In particular, the
1153 INDIRECT_REF substitution above. Make sure that TREE_CONSTANT
1154 and friends are up-to-date. */
1155 else if (TREE_CODE (*tp) == ADDR_EXPR)
1157 int invariant = is_gimple_min_invariant (*tp);
1158 walk_tree (&TREE_OPERAND (*tp, 0), copy_tree_body_r, id, NULL);
1160 /* Handle the case where we substituted an INDIRECT_REF
1161 into the operand of the ADDR_EXPR. */
1162 if (TREE_CODE (TREE_OPERAND (*tp, 0)) == INDIRECT_REF)
1163 *tp = TREE_OPERAND (TREE_OPERAND (*tp, 0), 0);
1164 else
1165 recompute_tree_invariant_for_addr_expr (*tp);
1167 /* If this used to be invariant, but is not any longer,
1168 then regimplification is probably needed. */
1169 if (invariant && !is_gimple_min_invariant (*tp))
1170 id->regimplify = true;
1172 *walk_subtrees = 0;
1176 /* Keep iterating. */
1177 return NULL_TREE;
1180 /* Helper for remap_gimple_stmt. Given an EH region number for the
1181 source function, map that to the duplicate EH region number in
1182 the destination function. */
1184 static int
1185 remap_eh_region_nr (int old_nr, copy_body_data *id)
1187 eh_region old_r, new_r;
1188 void **slot;
1190 old_r = get_eh_region_from_number_fn (id->src_cfun, old_nr);
1191 slot = pointer_map_contains (id->eh_map, old_r);
1192 new_r = (eh_region) *slot;
1194 return new_r->index;
1197 /* Similar, but operate on INTEGER_CSTs. */
1199 static tree
1200 remap_eh_region_tree_nr (tree old_t_nr, copy_body_data *id)
1202 int old_nr, new_nr;
1204 old_nr = tree_low_cst (old_t_nr, 0);
1205 new_nr = remap_eh_region_nr (old_nr, id);
1207 return build_int_cst (NULL, new_nr);
1210 /* Helper for copy_bb. Remap statement STMT using the inlining
1211 information in ID. Return the new statement copy. */
1213 static gimple
1214 remap_gimple_stmt (gimple stmt, copy_body_data *id)
1216 gimple copy = NULL;
1217 struct walk_stmt_info wi;
1218 tree new_block;
1219 bool skip_first = false;
1221 /* Begin by recognizing trees that we'll completely rewrite for the
1222 inlining context. Our output for these trees is completely
1223 different from out input (e.g. RETURN_EXPR is deleted, and morphs
1224 into an edge). Further down, we'll handle trees that get
1225 duplicated and/or tweaked. */
1227 /* When requested, GIMPLE_RETURNs should be transformed to just the
1228 contained GIMPLE_ASSIGN. The branch semantics of the return will
1229 be handled elsewhere by manipulating the CFG rather than the
1230 statement. */
1231 if (gimple_code (stmt) == GIMPLE_RETURN && id->transform_return_to_modify)
1233 tree retval = gimple_return_retval (stmt);
1235 /* If we're returning something, just turn that into an
1236 assignment into the equivalent of the original RESULT_DECL.
1237 If RETVAL is just the result decl, the result decl has
1238 already been set (e.g. a recent "foo (&result_decl, ...)");
1239 just toss the entire GIMPLE_RETURN. */
1240 if (retval
1241 && (TREE_CODE (retval) != RESULT_DECL
1242 && (TREE_CODE (retval) != SSA_NAME
1243 || TREE_CODE (SSA_NAME_VAR (retval)) != RESULT_DECL)))
1245 copy = gimple_build_assign (id->retvar, retval);
1246 /* id->retvar is already substituted. Skip it on later remapping. */
1247 skip_first = true;
1249 else
1250 return gimple_build_nop ();
1252 else if (gimple_has_substatements (stmt))
1254 gimple_seq s1, s2;
1256 /* When cloning bodies from the C++ front end, we will be handed bodies
1257 in High GIMPLE form. Handle here all the High GIMPLE statements that
1258 have embedded statements. */
1259 switch (gimple_code (stmt))
1261 case GIMPLE_BIND:
1262 copy = copy_gimple_bind (stmt, id);
1263 break;
1265 case GIMPLE_CATCH:
1266 s1 = remap_gimple_seq (gimple_catch_handler (stmt), id);
1267 copy = gimple_build_catch (gimple_catch_types (stmt), s1);
1268 break;
1270 case GIMPLE_EH_FILTER:
1271 s1 = remap_gimple_seq (gimple_eh_filter_failure (stmt), id);
1272 copy = gimple_build_eh_filter (gimple_eh_filter_types (stmt), s1);
1273 break;
1275 case GIMPLE_TRY:
1276 s1 = remap_gimple_seq (gimple_try_eval (stmt), id);
1277 s2 = remap_gimple_seq (gimple_try_cleanup (stmt), id);
1278 copy = gimple_build_try (s1, s2, gimple_try_kind (stmt));
1279 break;
1281 case GIMPLE_WITH_CLEANUP_EXPR:
1282 s1 = remap_gimple_seq (gimple_wce_cleanup (stmt), id);
1283 copy = gimple_build_wce (s1);
1284 break;
1286 case GIMPLE_OMP_PARALLEL:
1287 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1288 copy = gimple_build_omp_parallel
1289 (s1,
1290 gimple_omp_parallel_clauses (stmt),
1291 gimple_omp_parallel_child_fn (stmt),
1292 gimple_omp_parallel_data_arg (stmt));
1293 break;
1295 case GIMPLE_OMP_TASK:
1296 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1297 copy = gimple_build_omp_task
1298 (s1,
1299 gimple_omp_task_clauses (stmt),
1300 gimple_omp_task_child_fn (stmt),
1301 gimple_omp_task_data_arg (stmt),
1302 gimple_omp_task_copy_fn (stmt),
1303 gimple_omp_task_arg_size (stmt),
1304 gimple_omp_task_arg_align (stmt));
1305 break;
1307 case GIMPLE_OMP_FOR:
1308 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1309 s2 = remap_gimple_seq (gimple_omp_for_pre_body (stmt), id);
1310 copy = gimple_build_omp_for (s1, gimple_omp_for_clauses (stmt),
1311 gimple_omp_for_collapse (stmt), s2);
1313 size_t i;
1314 for (i = 0; i < gimple_omp_for_collapse (stmt); i++)
1316 gimple_omp_for_set_index (copy, i,
1317 gimple_omp_for_index (stmt, i));
1318 gimple_omp_for_set_initial (copy, i,
1319 gimple_omp_for_initial (stmt, i));
1320 gimple_omp_for_set_final (copy, i,
1321 gimple_omp_for_final (stmt, i));
1322 gimple_omp_for_set_incr (copy, i,
1323 gimple_omp_for_incr (stmt, i));
1324 gimple_omp_for_set_cond (copy, i,
1325 gimple_omp_for_cond (stmt, i));
1328 break;
1330 case GIMPLE_OMP_MASTER:
1331 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1332 copy = gimple_build_omp_master (s1);
1333 break;
1335 case GIMPLE_OMP_ORDERED:
1336 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1337 copy = gimple_build_omp_ordered (s1);
1338 break;
1340 case GIMPLE_OMP_SECTION:
1341 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1342 copy = gimple_build_omp_section (s1);
1343 break;
1345 case GIMPLE_OMP_SECTIONS:
1346 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1347 copy = gimple_build_omp_sections
1348 (s1, gimple_omp_sections_clauses (stmt));
1349 break;
1351 case GIMPLE_OMP_SINGLE:
1352 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1353 copy = gimple_build_omp_single
1354 (s1, gimple_omp_single_clauses (stmt));
1355 break;
1357 case GIMPLE_OMP_CRITICAL:
1358 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1359 copy
1360 = gimple_build_omp_critical (s1, gimple_omp_critical_name (stmt));
1361 break;
1363 default:
1364 gcc_unreachable ();
1367 else
1369 if (gimple_assign_copy_p (stmt)
1370 && gimple_assign_lhs (stmt) == gimple_assign_rhs1 (stmt)
1371 && auto_var_in_fn_p (gimple_assign_lhs (stmt), id->src_fn))
1373 /* Here we handle statements that are not completely rewritten.
1374 First we detect some inlining-induced bogosities for
1375 discarding. */
1377 /* Some assignments VAR = VAR; don't generate any rtl code
1378 and thus don't count as variable modification. Avoid
1379 keeping bogosities like 0 = 0. */
1380 tree decl = gimple_assign_lhs (stmt), value;
1381 tree *n;
1383 n = (tree *) pointer_map_contains (id->decl_map, decl);
1384 if (n)
1386 value = *n;
1387 STRIP_TYPE_NOPS (value);
1388 if (TREE_CONSTANT (value) || TREE_READONLY (value))
1389 return gimple_build_nop ();
1393 if (gimple_debug_bind_p (stmt))
1395 copy = gimple_build_debug_bind (gimple_debug_bind_get_var (stmt),
1396 gimple_debug_bind_get_value (stmt),
1397 stmt);
1398 VEC_safe_push (gimple, heap, id->debug_stmts, copy);
1399 return copy;
1402 /* Create a new deep copy of the statement. */
1403 copy = gimple_copy (stmt);
1405 /* Remap the region numbers for __builtin_eh_{pointer,filter},
1406 RESX and EH_DISPATCH. */
1407 if (id->eh_map)
1408 switch (gimple_code (copy))
1410 case GIMPLE_CALL:
1412 tree r, fndecl = gimple_call_fndecl (copy);
1413 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
1414 switch (DECL_FUNCTION_CODE (fndecl))
1416 case BUILT_IN_EH_COPY_VALUES:
1417 r = gimple_call_arg (copy, 1);
1418 r = remap_eh_region_tree_nr (r, id);
1419 gimple_call_set_arg (copy, 1, r);
1420 /* FALLTHRU */
1422 case BUILT_IN_EH_POINTER:
1423 case BUILT_IN_EH_FILTER:
1424 r = gimple_call_arg (copy, 0);
1425 r = remap_eh_region_tree_nr (r, id);
1426 gimple_call_set_arg (copy, 0, r);
1427 break;
1429 default:
1430 break;
1433 /* Reset alias info if we didn't apply measures to
1434 keep it valid over inlining by setting DECL_PT_UID. */
1435 if (!id->src_cfun->gimple_df
1436 || !id->src_cfun->gimple_df->ipa_pta)
1437 gimple_call_reset_alias_info (copy);
1439 break;
1441 case GIMPLE_RESX:
1443 int r = gimple_resx_region (copy);
1444 r = remap_eh_region_nr (r, id);
1445 gimple_resx_set_region (copy, r);
1447 break;
1449 case GIMPLE_EH_DISPATCH:
1451 int r = gimple_eh_dispatch_region (copy);
1452 r = remap_eh_region_nr (r, id);
1453 gimple_eh_dispatch_set_region (copy, r);
1455 break;
1457 default:
1458 break;
1462 /* If STMT has a block defined, map it to the newly constructed
1463 block. When inlining we want statements without a block to
1464 appear in the block of the function call. */
1465 new_block = id->block;
1466 if (gimple_block (copy))
1468 tree *n;
1469 n = (tree *) pointer_map_contains (id->decl_map, gimple_block (copy));
1470 gcc_assert (n);
1471 new_block = *n;
1474 gimple_set_block (copy, new_block);
1476 if (gimple_debug_bind_p (copy))
1477 return copy;
1479 /* Remap all the operands in COPY. */
1480 memset (&wi, 0, sizeof (wi));
1481 wi.info = id;
1482 if (skip_first)
1483 walk_tree (gimple_op_ptr (copy, 1), remap_gimple_op_r, &wi, NULL);
1484 else
1485 walk_gimple_op (copy, remap_gimple_op_r, &wi);
1487 /* Clear the copied virtual operands. We are not remapping them here
1488 but are going to recreate them from scratch. */
1489 if (gimple_has_mem_ops (copy))
1491 gimple_set_vdef (copy, NULL_TREE);
1492 gimple_set_vuse (copy, NULL_TREE);
1495 return copy;
1499 /* Copy basic block, scale profile accordingly. Edges will be taken care of
1500 later */
1502 static basic_block
1503 copy_bb (copy_body_data *id, basic_block bb, int frequency_scale,
1504 gcov_type count_scale)
1506 gimple_stmt_iterator gsi, copy_gsi, seq_gsi;
1507 basic_block copy_basic_block;
1508 tree decl;
1509 gcov_type freq;
1510 basic_block prev;
1512 /* Search for previous copied basic block. */
1513 prev = bb->prev_bb;
1514 while (!prev->aux)
1515 prev = prev->prev_bb;
1517 /* create_basic_block() will append every new block to
1518 basic_block_info automatically. */
1519 copy_basic_block = create_basic_block (NULL, (void *) 0,
1520 (basic_block) prev->aux);
1521 copy_basic_block->count = bb->count * count_scale / REG_BR_PROB_BASE;
1523 /* We are going to rebuild frequencies from scratch. These values
1524 have just small importance to drive canonicalize_loop_headers. */
1525 freq = ((gcov_type)bb->frequency * frequency_scale / REG_BR_PROB_BASE);
1527 /* We recompute frequencies after inlining, so this is quite safe. */
1528 if (freq > BB_FREQ_MAX)
1529 freq = BB_FREQ_MAX;
1530 copy_basic_block->frequency = freq;
1532 copy_gsi = gsi_start_bb (copy_basic_block);
1534 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1536 gimple stmt = gsi_stmt (gsi);
1537 gimple orig_stmt = stmt;
1539 id->regimplify = false;
1540 stmt = remap_gimple_stmt (stmt, id);
1541 if (gimple_nop_p (stmt))
1542 continue;
1544 gimple_duplicate_stmt_histograms (cfun, stmt, id->src_cfun, orig_stmt);
1545 seq_gsi = copy_gsi;
1547 /* With return slot optimization we can end up with
1548 non-gimple (foo *)&this->m, fix that here. */
1549 if (is_gimple_assign (stmt)
1550 && gimple_assign_rhs_code (stmt) == NOP_EXPR
1551 && !is_gimple_val (gimple_assign_rhs1 (stmt)))
1553 tree new_rhs;
1554 new_rhs = force_gimple_operand_gsi (&seq_gsi,
1555 gimple_assign_rhs1 (stmt),
1556 true, NULL, false,
1557 GSI_CONTINUE_LINKING);
1558 gimple_assign_set_rhs1 (stmt, new_rhs);
1559 id->regimplify = false;
1562 gsi_insert_after (&seq_gsi, stmt, GSI_NEW_STMT);
1564 if (id->regimplify)
1565 gimple_regimplify_operands (stmt, &seq_gsi);
1567 /* If copy_basic_block has been empty at the start of this iteration,
1568 call gsi_start_bb again to get at the newly added statements. */
1569 if (gsi_end_p (copy_gsi))
1570 copy_gsi = gsi_start_bb (copy_basic_block);
1571 else
1572 gsi_next (&copy_gsi);
1574 /* Process the new statement. The call to gimple_regimplify_operands
1575 possibly turned the statement into multiple statements, we
1576 need to process all of them. */
1579 tree fn;
1581 stmt = gsi_stmt (copy_gsi);
1582 if (is_gimple_call (stmt)
1583 && gimple_call_va_arg_pack_p (stmt)
1584 && id->gimple_call)
1586 /* __builtin_va_arg_pack () should be replaced by
1587 all arguments corresponding to ... in the caller. */
1588 tree p;
1589 gimple new_call;
1590 VEC(tree, heap) *argarray;
1591 size_t nargs = gimple_call_num_args (id->gimple_call);
1592 size_t n;
1594 for (p = DECL_ARGUMENTS (id->src_fn); p; p = DECL_CHAIN (p))
1595 nargs--;
1597 /* Create the new array of arguments. */
1598 n = nargs + gimple_call_num_args (stmt);
1599 argarray = VEC_alloc (tree, heap, n);
1600 VEC_safe_grow (tree, heap, argarray, n);
1602 /* Copy all the arguments before '...' */
1603 memcpy (VEC_address (tree, argarray),
1604 gimple_call_arg_ptr (stmt, 0),
1605 gimple_call_num_args (stmt) * sizeof (tree));
1607 /* Append the arguments passed in '...' */
1608 memcpy (VEC_address(tree, argarray) + gimple_call_num_args (stmt),
1609 gimple_call_arg_ptr (id->gimple_call, 0)
1610 + (gimple_call_num_args (id->gimple_call) - nargs),
1611 nargs * sizeof (tree));
1613 new_call = gimple_build_call_vec (gimple_call_fn (stmt),
1614 argarray);
1616 VEC_free (tree, heap, argarray);
1618 /* Copy all GIMPLE_CALL flags, location and block, except
1619 GF_CALL_VA_ARG_PACK. */
1620 gimple_call_copy_flags (new_call, stmt);
1621 gimple_call_set_va_arg_pack (new_call, false);
1622 gimple_set_location (new_call, gimple_location (stmt));
1623 gimple_set_block (new_call, gimple_block (stmt));
1624 gimple_call_set_lhs (new_call, gimple_call_lhs (stmt));
1626 gsi_replace (&copy_gsi, new_call, false);
1627 stmt = new_call;
1629 else if (is_gimple_call (stmt)
1630 && id->gimple_call
1631 && (decl = gimple_call_fndecl (stmt))
1632 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
1633 && DECL_FUNCTION_CODE (decl) == BUILT_IN_VA_ARG_PACK_LEN)
1635 /* __builtin_va_arg_pack_len () should be replaced by
1636 the number of anonymous arguments. */
1637 size_t nargs = gimple_call_num_args (id->gimple_call);
1638 tree count, p;
1639 gimple new_stmt;
1641 for (p = DECL_ARGUMENTS (id->src_fn); p; p = DECL_CHAIN (p))
1642 nargs--;
1644 count = build_int_cst (integer_type_node, nargs);
1645 new_stmt = gimple_build_assign (gimple_call_lhs (stmt), count);
1646 gsi_replace (&copy_gsi, new_stmt, false);
1647 stmt = new_stmt;
1650 /* Statements produced by inlining can be unfolded, especially
1651 when we constant propagated some operands. We can't fold
1652 them right now for two reasons:
1653 1) folding require SSA_NAME_DEF_STMTs to be correct
1654 2) we can't change function calls to builtins.
1655 So we just mark statement for later folding. We mark
1656 all new statements, instead just statements that has changed
1657 by some nontrivial substitution so even statements made
1658 foldable indirectly are updated. If this turns out to be
1659 expensive, copy_body can be told to watch for nontrivial
1660 changes. */
1661 if (id->statements_to_fold)
1662 pointer_set_insert (id->statements_to_fold, stmt);
1664 /* We're duplicating a CALL_EXPR. Find any corresponding
1665 callgraph edges and update or duplicate them. */
1666 if (is_gimple_call (stmt))
1668 struct cgraph_edge *edge;
1669 int flags;
1671 switch (id->transform_call_graph_edges)
1673 case CB_CGE_DUPLICATE:
1674 edge = cgraph_edge (id->src_node, orig_stmt);
1675 if (edge)
1677 int edge_freq = edge->frequency;
1678 edge = cgraph_clone_edge (edge, id->dst_node, stmt,
1679 gimple_uid (stmt),
1680 REG_BR_PROB_BASE, CGRAPH_FREQ_BASE,
1681 edge->frequency, true);
1682 /* We could also just rescale the frequency, but
1683 doing so would introduce roundoff errors and make
1684 verifier unhappy. */
1685 edge->frequency
1686 = compute_call_stmt_bb_frequency (id->dst_node->decl,
1687 copy_basic_block);
1688 if (dump_file
1689 && profile_status_for_function (cfun) != PROFILE_ABSENT
1690 && (edge_freq > edge->frequency + 10
1691 || edge_freq < edge->frequency - 10))
1693 fprintf (dump_file, "Edge frequency estimated by "
1694 "cgraph %i diverge from inliner's estimate %i\n",
1695 edge_freq,
1696 edge->frequency);
1697 fprintf (dump_file,
1698 "Orig bb: %i, orig bb freq %i, new bb freq %i\n",
1699 bb->index,
1700 bb->frequency,
1701 copy_basic_block->frequency);
1703 stmt = cgraph_redirect_edge_call_stmt_to_callee (edge);
1705 break;
1707 case CB_CGE_MOVE_CLONES:
1708 cgraph_set_call_stmt_including_clones (id->dst_node,
1709 orig_stmt, stmt);
1710 edge = cgraph_edge (id->dst_node, stmt);
1711 break;
1713 case CB_CGE_MOVE:
1714 edge = cgraph_edge (id->dst_node, orig_stmt);
1715 if (edge)
1716 cgraph_set_call_stmt (edge, stmt);
1717 break;
1719 default:
1720 gcc_unreachable ();
1723 /* Constant propagation on argument done during inlining
1724 may create new direct call. Produce an edge for it. */
1725 if ((!edge
1726 || (edge->indirect_inlining_edge
1727 && id->transform_call_graph_edges == CB_CGE_MOVE_CLONES))
1728 && id->dst_node->analyzed
1729 && (fn = gimple_call_fndecl (stmt)) != NULL)
1731 struct cgraph_node *dest = cgraph_get_node (fn);
1733 /* We have missing edge in the callgraph. This can happen
1734 when previous inlining turned an indirect call into a
1735 direct call by constant propagating arguments or we are
1736 producing dead clone (for further cloning). In all
1737 other cases we hit a bug (incorrect node sharing is the
1738 most common reason for missing edges). */
1739 gcc_assert (dest->needed || !dest->analyzed
1740 || dest->address_taken
1741 || !id->src_node->analyzed
1742 || !id->dst_node->analyzed);
1743 if (id->transform_call_graph_edges == CB_CGE_MOVE_CLONES)
1744 cgraph_create_edge_including_clones
1745 (id->dst_node, dest, orig_stmt, stmt, bb->count,
1746 compute_call_stmt_bb_frequency (id->dst_node->decl,
1747 copy_basic_block),
1748 bb->loop_depth, CIF_ORIGINALLY_INDIRECT_CALL);
1749 else
1750 cgraph_create_edge (id->dst_node, dest, stmt,
1751 bb->count,
1752 compute_call_stmt_bb_frequency
1753 (id->dst_node->decl, copy_basic_block),
1754 bb->loop_depth)->inline_failed
1755 = CIF_ORIGINALLY_INDIRECT_CALL;
1756 if (dump_file)
1758 fprintf (dump_file, "Created new direct edge to %s\n",
1759 cgraph_node_name (dest));
1763 flags = gimple_call_flags (stmt);
1764 if (flags & ECF_MAY_BE_ALLOCA)
1765 cfun->calls_alloca = true;
1766 if (flags & ECF_RETURNS_TWICE)
1767 cfun->calls_setjmp = true;
1770 maybe_duplicate_eh_stmt_fn (cfun, stmt, id->src_cfun, orig_stmt,
1771 id->eh_map, id->eh_lp_nr);
1773 if (gimple_in_ssa_p (cfun) && !is_gimple_debug (stmt))
1775 ssa_op_iter i;
1776 tree def;
1778 find_new_referenced_vars (gsi_stmt (copy_gsi));
1779 FOR_EACH_SSA_TREE_OPERAND (def, stmt, i, SSA_OP_DEF)
1780 if (TREE_CODE (def) == SSA_NAME)
1781 SSA_NAME_DEF_STMT (def) = stmt;
1784 gsi_next (&copy_gsi);
1786 while (!gsi_end_p (copy_gsi));
1788 copy_gsi = gsi_last_bb (copy_basic_block);
1791 return copy_basic_block;
1794 /* Inserting Single Entry Multiple Exit region in SSA form into code in SSA
1795 form is quite easy, since dominator relationship for old basic blocks does
1796 not change.
1798 There is however exception where inlining might change dominator relation
1799 across EH edges from basic block within inlined functions destinating
1800 to landing pads in function we inline into.
1802 The function fills in PHI_RESULTs of such PHI nodes if they refer
1803 to gimple regs. Otherwise, the function mark PHI_RESULT of such
1804 PHI nodes for renaming. For non-gimple regs, renaming is safe: the
1805 EH edges are abnormal and SSA_NAME_OCCURS_IN_ABNORMAL_PHI must be
1806 set, and this means that there will be no overlapping live ranges
1807 for the underlying symbol.
1809 This might change in future if we allow redirecting of EH edges and
1810 we might want to change way build CFG pre-inlining to include
1811 all the possible edges then. */
1812 static void
1813 update_ssa_across_abnormal_edges (basic_block bb, basic_block ret_bb,
1814 bool can_throw, bool nonlocal_goto)
1816 edge e;
1817 edge_iterator ei;
1819 FOR_EACH_EDGE (e, ei, bb->succs)
1820 if (!e->dest->aux
1821 || ((basic_block)e->dest->aux)->index == ENTRY_BLOCK)
1823 gimple phi;
1824 gimple_stmt_iterator si;
1826 if (!nonlocal_goto)
1827 gcc_assert (e->flags & EDGE_EH);
1829 if (!can_throw)
1830 gcc_assert (!(e->flags & EDGE_EH));
1832 for (si = gsi_start_phis (e->dest); !gsi_end_p (si); gsi_next (&si))
1834 edge re;
1836 phi = gsi_stmt (si);
1838 /* There shouldn't be any PHI nodes in the ENTRY_BLOCK. */
1839 gcc_assert (!e->dest->aux);
1841 gcc_assert ((e->flags & EDGE_EH)
1842 || SSA_NAME_OCCURS_IN_ABNORMAL_PHI (PHI_RESULT (phi)));
1844 if (!is_gimple_reg (PHI_RESULT (phi)))
1846 mark_sym_for_renaming (SSA_NAME_VAR (PHI_RESULT (phi)));
1847 continue;
1850 re = find_edge (ret_bb, e->dest);
1851 gcc_assert (re);
1852 gcc_assert ((re->flags & (EDGE_EH | EDGE_ABNORMAL))
1853 == (e->flags & (EDGE_EH | EDGE_ABNORMAL)));
1855 SET_USE (PHI_ARG_DEF_PTR_FROM_EDGE (phi, e),
1856 USE_FROM_PTR (PHI_ARG_DEF_PTR_FROM_EDGE (phi, re)));
1862 /* Copy edges from BB into its copy constructed earlier, scale profile
1863 accordingly. Edges will be taken care of later. Assume aux
1864 pointers to point to the copies of each BB. Return true if any
1865 debug stmts are left after a statement that must end the basic block. */
1867 static bool
1868 copy_edges_for_bb (basic_block bb, gcov_type count_scale, basic_block ret_bb)
1870 basic_block new_bb = (basic_block) bb->aux;
1871 edge_iterator ei;
1872 edge old_edge;
1873 gimple_stmt_iterator si;
1874 int flags;
1875 bool need_debug_cleanup = false;
1877 /* Use the indices from the original blocks to create edges for the
1878 new ones. */
1879 FOR_EACH_EDGE (old_edge, ei, bb->succs)
1880 if (!(old_edge->flags & EDGE_EH))
1882 edge new_edge;
1884 flags = old_edge->flags;
1886 /* Return edges do get a FALLTHRU flag when the get inlined. */
1887 if (old_edge->dest->index == EXIT_BLOCK && !old_edge->flags
1888 && old_edge->dest->aux != EXIT_BLOCK_PTR)
1889 flags |= EDGE_FALLTHRU;
1890 new_edge = make_edge (new_bb, (basic_block) old_edge->dest->aux, flags);
1891 new_edge->count = old_edge->count * count_scale / REG_BR_PROB_BASE;
1892 new_edge->probability = old_edge->probability;
1895 if (bb->index == ENTRY_BLOCK || bb->index == EXIT_BLOCK)
1896 return false;
1898 for (si = gsi_start_bb (new_bb); !gsi_end_p (si);)
1900 gimple copy_stmt;
1901 bool can_throw, nonlocal_goto;
1903 copy_stmt = gsi_stmt (si);
1904 if (!is_gimple_debug (copy_stmt))
1906 update_stmt (copy_stmt);
1907 if (gimple_in_ssa_p (cfun))
1908 mark_symbols_for_renaming (copy_stmt);
1911 /* Do this before the possible split_block. */
1912 gsi_next (&si);
1914 /* If this tree could throw an exception, there are two
1915 cases where we need to add abnormal edge(s): the
1916 tree wasn't in a region and there is a "current
1917 region" in the caller; or the original tree had
1918 EH edges. In both cases split the block after the tree,
1919 and add abnormal edge(s) as needed; we need both
1920 those from the callee and the caller.
1921 We check whether the copy can throw, because the const
1922 propagation can change an INDIRECT_REF which throws
1923 into a COMPONENT_REF which doesn't. If the copy
1924 can throw, the original could also throw. */
1925 can_throw = stmt_can_throw_internal (copy_stmt);
1926 nonlocal_goto = stmt_can_make_abnormal_goto (copy_stmt);
1928 if (can_throw || nonlocal_goto)
1930 if (!gsi_end_p (si))
1932 while (!gsi_end_p (si) && is_gimple_debug (gsi_stmt (si)))
1933 gsi_next (&si);
1934 if (gsi_end_p (si))
1935 need_debug_cleanup = true;
1937 if (!gsi_end_p (si))
1938 /* Note that bb's predecessor edges aren't necessarily
1939 right at this point; split_block doesn't care. */
1941 edge e = split_block (new_bb, copy_stmt);
1943 new_bb = e->dest;
1944 new_bb->aux = e->src->aux;
1945 si = gsi_start_bb (new_bb);
1949 if (gimple_code (copy_stmt) == GIMPLE_EH_DISPATCH)
1950 make_eh_dispatch_edges (copy_stmt);
1951 else if (can_throw)
1952 make_eh_edges (copy_stmt);
1954 if (nonlocal_goto)
1955 make_abnormal_goto_edges (gimple_bb (copy_stmt), true);
1957 if ((can_throw || nonlocal_goto)
1958 && gimple_in_ssa_p (cfun))
1959 update_ssa_across_abnormal_edges (gimple_bb (copy_stmt), ret_bb,
1960 can_throw, nonlocal_goto);
1962 return need_debug_cleanup;
1965 /* Copy the PHIs. All blocks and edges are copied, some blocks
1966 was possibly split and new outgoing EH edges inserted.
1967 BB points to the block of original function and AUX pointers links
1968 the original and newly copied blocks. */
1970 static void
1971 copy_phis_for_bb (basic_block bb, copy_body_data *id)
1973 basic_block const new_bb = (basic_block) bb->aux;
1974 edge_iterator ei;
1975 gimple phi;
1976 gimple_stmt_iterator si;
1977 edge new_edge;
1978 bool inserted = false;
1980 for (si = gsi_start (phi_nodes (bb)); !gsi_end_p (si); gsi_next (&si))
1982 tree res, new_res;
1983 gimple new_phi;
1985 phi = gsi_stmt (si);
1986 res = PHI_RESULT (phi);
1987 new_res = res;
1988 if (is_gimple_reg (res))
1990 walk_tree (&new_res, copy_tree_body_r, id, NULL);
1991 SSA_NAME_DEF_STMT (new_res)
1992 = new_phi = create_phi_node (new_res, new_bb);
1993 FOR_EACH_EDGE (new_edge, ei, new_bb->preds)
1995 edge old_edge = find_edge ((basic_block) new_edge->src->aux, bb);
1996 tree arg;
1997 tree new_arg;
1998 tree block = id->block;
1999 edge_iterator ei2;
2001 /* When doing partial cloning, we allow PHIs on the entry block
2002 as long as all the arguments are the same. Find any input
2003 edge to see argument to copy. */
2004 if (!old_edge)
2005 FOR_EACH_EDGE (old_edge, ei2, bb->preds)
2006 if (!old_edge->src->aux)
2007 break;
2009 arg = PHI_ARG_DEF_FROM_EDGE (phi, old_edge);
2010 new_arg = arg;
2011 id->block = NULL_TREE;
2012 walk_tree (&new_arg, copy_tree_body_r, id, NULL);
2013 id->block = block;
2014 gcc_assert (new_arg);
2015 /* With return slot optimization we can end up with
2016 non-gimple (foo *)&this->m, fix that here. */
2017 if (TREE_CODE (new_arg) != SSA_NAME
2018 && TREE_CODE (new_arg) != FUNCTION_DECL
2019 && !is_gimple_val (new_arg))
2021 gimple_seq stmts = NULL;
2022 new_arg = force_gimple_operand (new_arg, &stmts, true, NULL);
2023 gsi_insert_seq_on_edge (new_edge, stmts);
2024 inserted = true;
2026 add_phi_arg (new_phi, new_arg, new_edge,
2027 gimple_phi_arg_location_from_edge (phi, old_edge));
2032 /* Commit the delayed edge insertions. */
2033 if (inserted)
2034 FOR_EACH_EDGE (new_edge, ei, new_bb->preds)
2035 gsi_commit_one_edge_insert (new_edge, NULL);
2039 /* Wrapper for remap_decl so it can be used as a callback. */
2041 static tree
2042 remap_decl_1 (tree decl, void *data)
2044 return remap_decl (decl, (copy_body_data *) data);
2047 /* Build struct function and associated datastructures for the new clone
2048 NEW_FNDECL to be build. CALLEE_FNDECL is the original */
2050 static void
2051 initialize_cfun (tree new_fndecl, tree callee_fndecl, gcov_type count)
2053 struct function *src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
2054 gcov_type count_scale;
2056 if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count)
2057 count_scale = (REG_BR_PROB_BASE * count
2058 / ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count);
2059 else
2060 count_scale = REG_BR_PROB_BASE;
2062 /* Register specific tree functions. */
2063 gimple_register_cfg_hooks ();
2065 /* Get clean struct function. */
2066 push_struct_function (new_fndecl);
2068 /* We will rebuild these, so just sanity check that they are empty. */
2069 gcc_assert (VALUE_HISTOGRAMS (cfun) == NULL);
2070 gcc_assert (cfun->local_decls == NULL);
2071 gcc_assert (cfun->cfg == NULL);
2072 gcc_assert (cfun->decl == new_fndecl);
2074 /* Copy items we preserve during cloning. */
2075 cfun->static_chain_decl = src_cfun->static_chain_decl;
2076 cfun->nonlocal_goto_save_area = src_cfun->nonlocal_goto_save_area;
2077 cfun->function_end_locus = src_cfun->function_end_locus;
2078 cfun->curr_properties = src_cfun->curr_properties;
2079 cfun->last_verified = src_cfun->last_verified;
2080 cfun->va_list_gpr_size = src_cfun->va_list_gpr_size;
2081 cfun->va_list_fpr_size = src_cfun->va_list_fpr_size;
2082 cfun->has_nonlocal_label = src_cfun->has_nonlocal_label;
2083 cfun->stdarg = src_cfun->stdarg;
2084 cfun->dont_save_pending_sizes_p = src_cfun->dont_save_pending_sizes_p;
2085 cfun->after_inlining = src_cfun->after_inlining;
2086 cfun->can_throw_non_call_exceptions
2087 = src_cfun->can_throw_non_call_exceptions;
2088 cfun->returns_struct = src_cfun->returns_struct;
2089 cfun->returns_pcc_struct = src_cfun->returns_pcc_struct;
2090 cfun->after_tree_profile = src_cfun->after_tree_profile;
2092 init_empty_tree_cfg ();
2094 profile_status_for_function (cfun) = profile_status_for_function (src_cfun);
2095 ENTRY_BLOCK_PTR->count =
2096 (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count * count_scale /
2097 REG_BR_PROB_BASE);
2098 ENTRY_BLOCK_PTR->frequency
2099 = ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency;
2100 EXIT_BLOCK_PTR->count =
2101 (EXIT_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count * count_scale /
2102 REG_BR_PROB_BASE);
2103 EXIT_BLOCK_PTR->frequency =
2104 EXIT_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency;
2105 if (src_cfun->eh)
2106 init_eh_for_function ();
2108 if (src_cfun->gimple_df)
2110 init_tree_ssa (cfun);
2111 cfun->gimple_df->in_ssa_p = true;
2112 init_ssa_operands ();
2114 pop_cfun ();
2117 /* Helper function for copy_cfg_body. Move debug stmts from the end
2118 of NEW_BB to the beginning of successor basic blocks when needed. If the
2119 successor has multiple predecessors, reset them, otherwise keep
2120 their value. */
2122 static void
2123 maybe_move_debug_stmts_to_successors (copy_body_data *id, basic_block new_bb)
2125 edge e;
2126 edge_iterator ei;
2127 gimple_stmt_iterator si = gsi_last_nondebug_bb (new_bb);
2129 if (gsi_end_p (si)
2130 || gsi_one_before_end_p (si)
2131 || !(stmt_can_throw_internal (gsi_stmt (si))
2132 || stmt_can_make_abnormal_goto (gsi_stmt (si))))
2133 return;
2135 FOR_EACH_EDGE (e, ei, new_bb->succs)
2137 gimple_stmt_iterator ssi = gsi_last_bb (new_bb);
2138 gimple_stmt_iterator dsi = gsi_after_labels (e->dest);
2139 while (is_gimple_debug (gsi_stmt (ssi)))
2141 gimple stmt = gsi_stmt (ssi), new_stmt;
2142 tree var;
2143 tree value;
2145 /* For the last edge move the debug stmts instead of copying
2146 them. */
2147 if (ei_one_before_end_p (ei))
2149 si = ssi;
2150 gsi_prev (&ssi);
2151 if (!single_pred_p (e->dest))
2152 gimple_debug_bind_reset_value (stmt);
2153 gsi_remove (&si, false);
2154 gsi_insert_before (&dsi, stmt, GSI_SAME_STMT);
2155 continue;
2158 var = gimple_debug_bind_get_var (stmt);
2159 if (single_pred_p (e->dest))
2161 value = gimple_debug_bind_get_value (stmt);
2162 value = unshare_expr (value);
2164 else
2165 value = NULL_TREE;
2166 new_stmt = gimple_build_debug_bind (var, value, stmt);
2167 gsi_insert_before (&dsi, new_stmt, GSI_SAME_STMT);
2168 VEC_safe_push (gimple, heap, id->debug_stmts, new_stmt);
2169 gsi_prev (&ssi);
2174 /* Make a copy of the body of FN so that it can be inserted inline in
2175 another function. Walks FN via CFG, returns new fndecl. */
2177 static tree
2178 copy_cfg_body (copy_body_data * id, gcov_type count, int frequency_scale,
2179 basic_block entry_block_map, basic_block exit_block_map,
2180 bitmap blocks_to_copy, basic_block new_entry)
2182 tree callee_fndecl = id->src_fn;
2183 /* Original cfun for the callee, doesn't change. */
2184 struct function *src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
2185 struct function *cfun_to_copy;
2186 basic_block bb;
2187 tree new_fndecl = NULL;
2188 bool need_debug_cleanup = false;
2189 gcov_type count_scale;
2190 int last;
2191 int incoming_frequency = 0;
2192 gcov_type incoming_count = 0;
2194 if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count)
2195 count_scale = (REG_BR_PROB_BASE * count
2196 / ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count);
2197 else
2198 count_scale = REG_BR_PROB_BASE;
2200 /* Register specific tree functions. */
2201 gimple_register_cfg_hooks ();
2203 /* If we are inlining just region of the function, make sure to connect new entry
2204 to ENTRY_BLOCK_PTR. Since new entry can be part of loop, we must compute
2205 frequency and probability of ENTRY_BLOCK_PTR based on the frequencies and
2206 probabilities of edges incoming from nonduplicated region. */
2207 if (new_entry)
2209 edge e;
2210 edge_iterator ei;
2212 FOR_EACH_EDGE (e, ei, new_entry->preds)
2213 if (!e->src->aux)
2215 incoming_frequency += EDGE_FREQUENCY (e);
2216 incoming_count += e->count;
2218 incoming_count = incoming_count * count_scale / REG_BR_PROB_BASE;
2219 incoming_frequency
2220 = incoming_frequency * frequency_scale / REG_BR_PROB_BASE;
2221 ENTRY_BLOCK_PTR->count = incoming_count;
2222 ENTRY_BLOCK_PTR->frequency = incoming_frequency;
2225 /* Must have a CFG here at this point. */
2226 gcc_assert (ENTRY_BLOCK_PTR_FOR_FUNCTION
2227 (DECL_STRUCT_FUNCTION (callee_fndecl)));
2229 cfun_to_copy = id->src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
2231 ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy)->aux = entry_block_map;
2232 EXIT_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy)->aux = exit_block_map;
2233 entry_block_map->aux = ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy);
2234 exit_block_map->aux = EXIT_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy);
2236 /* Duplicate any exception-handling regions. */
2237 if (cfun->eh)
2238 id->eh_map = duplicate_eh_regions (cfun_to_copy, NULL, id->eh_lp_nr,
2239 remap_decl_1, id);
2241 /* Use aux pointers to map the original blocks to copy. */
2242 FOR_EACH_BB_FN (bb, cfun_to_copy)
2243 if (!blocks_to_copy || bitmap_bit_p (blocks_to_copy, bb->index))
2245 basic_block new_bb = copy_bb (id, bb, frequency_scale, count_scale);
2246 bb->aux = new_bb;
2247 new_bb->aux = bb;
2250 last = last_basic_block;
2252 /* Now that we've duplicated the blocks, duplicate their edges. */
2253 FOR_ALL_BB_FN (bb, cfun_to_copy)
2254 if (!blocks_to_copy
2255 || (bb->index > 0 && bitmap_bit_p (blocks_to_copy, bb->index)))
2256 need_debug_cleanup |= copy_edges_for_bb (bb, count_scale, exit_block_map);
2258 if (new_entry)
2260 edge e = make_edge (entry_block_map, (basic_block)new_entry->aux, EDGE_FALLTHRU);
2261 e->probability = REG_BR_PROB_BASE;
2262 e->count = incoming_count;
2265 if (gimple_in_ssa_p (cfun))
2266 FOR_ALL_BB_FN (bb, cfun_to_copy)
2267 if (!blocks_to_copy
2268 || (bb->index > 0 && bitmap_bit_p (blocks_to_copy, bb->index)))
2269 copy_phis_for_bb (bb, id);
2271 FOR_ALL_BB_FN (bb, cfun_to_copy)
2272 if (bb->aux)
2274 if (need_debug_cleanup
2275 && bb->index != ENTRY_BLOCK
2276 && bb->index != EXIT_BLOCK)
2277 maybe_move_debug_stmts_to_successors (id, (basic_block) bb->aux);
2278 ((basic_block)bb->aux)->aux = NULL;
2279 bb->aux = NULL;
2282 /* Zero out AUX fields of newly created block during EH edge
2283 insertion. */
2284 for (; last < last_basic_block; last++)
2286 if (need_debug_cleanup)
2287 maybe_move_debug_stmts_to_successors (id, BASIC_BLOCK (last));
2288 BASIC_BLOCK (last)->aux = NULL;
2290 entry_block_map->aux = NULL;
2291 exit_block_map->aux = NULL;
2293 if (id->eh_map)
2295 pointer_map_destroy (id->eh_map);
2296 id->eh_map = NULL;
2299 return new_fndecl;
2302 /* Copy the debug STMT using ID. We deal with these statements in a
2303 special way: if any variable in their VALUE expression wasn't
2304 remapped yet, we won't remap it, because that would get decl uids
2305 out of sync, causing codegen differences between -g and -g0. If
2306 this arises, we drop the VALUE expression altogether. */
2308 static void
2309 copy_debug_stmt (gimple stmt, copy_body_data *id)
2311 tree t, *n;
2312 struct walk_stmt_info wi;
2314 t = id->block;
2315 if (gimple_block (stmt))
2317 tree *n;
2318 n = (tree *) pointer_map_contains (id->decl_map, gimple_block (stmt));
2319 if (n)
2320 t = *n;
2322 gimple_set_block (stmt, t);
2324 /* Remap all the operands in COPY. */
2325 memset (&wi, 0, sizeof (wi));
2326 wi.info = id;
2328 processing_debug_stmt = 1;
2330 t = gimple_debug_bind_get_var (stmt);
2332 if (TREE_CODE (t) == PARM_DECL && id->debug_map
2333 && (n = (tree *) pointer_map_contains (id->debug_map, t)))
2335 gcc_assert (TREE_CODE (*n) == VAR_DECL);
2336 t = *n;
2338 else if (TREE_CODE (t) == VAR_DECL
2339 && !TREE_STATIC (t)
2340 && gimple_in_ssa_p (cfun)
2341 && !pointer_map_contains (id->decl_map, t)
2342 && !var_ann (t))
2343 /* T is a non-localized variable. */;
2344 else
2345 walk_tree (&t, remap_gimple_op_r, &wi, NULL);
2347 gimple_debug_bind_set_var (stmt, t);
2349 if (gimple_debug_bind_has_value_p (stmt))
2350 walk_tree (gimple_debug_bind_get_value_ptr (stmt),
2351 remap_gimple_op_r, &wi, NULL);
2353 /* Punt if any decl couldn't be remapped. */
2354 if (processing_debug_stmt < 0)
2355 gimple_debug_bind_reset_value (stmt);
2357 processing_debug_stmt = 0;
2359 update_stmt (stmt);
2360 if (gimple_in_ssa_p (cfun))
2361 mark_symbols_for_renaming (stmt);
2364 /* Process deferred debug stmts. In order to give values better odds
2365 of being successfully remapped, we delay the processing of debug
2366 stmts until all other stmts that might require remapping are
2367 processed. */
2369 static void
2370 copy_debug_stmts (copy_body_data *id)
2372 size_t i;
2373 gimple stmt;
2375 if (!id->debug_stmts)
2376 return;
2378 FOR_EACH_VEC_ELT (gimple, id->debug_stmts, i, stmt)
2379 copy_debug_stmt (stmt, id);
2381 VEC_free (gimple, heap, id->debug_stmts);
2384 /* Make a copy of the body of SRC_FN so that it can be inserted inline in
2385 another function. */
2387 static tree
2388 copy_tree_body (copy_body_data *id)
2390 tree fndecl = id->src_fn;
2391 tree body = DECL_SAVED_TREE (fndecl);
2393 walk_tree (&body, copy_tree_body_r, id, NULL);
2395 return body;
2398 /* Make a copy of the body of FN so that it can be inserted inline in
2399 another function. */
2401 static tree
2402 copy_body (copy_body_data *id, gcov_type count, int frequency_scale,
2403 basic_block entry_block_map, basic_block exit_block_map,
2404 bitmap blocks_to_copy, basic_block new_entry)
2406 tree fndecl = id->src_fn;
2407 tree body;
2409 /* If this body has a CFG, walk CFG and copy. */
2410 gcc_assert (ENTRY_BLOCK_PTR_FOR_FUNCTION (DECL_STRUCT_FUNCTION (fndecl)));
2411 body = copy_cfg_body (id, count, frequency_scale, entry_block_map, exit_block_map,
2412 blocks_to_copy, new_entry);
2413 copy_debug_stmts (id);
2415 return body;
2418 /* Return true if VALUE is an ADDR_EXPR of an automatic variable
2419 defined in function FN, or of a data member thereof. */
2421 static bool
2422 self_inlining_addr_expr (tree value, tree fn)
2424 tree var;
2426 if (TREE_CODE (value) != ADDR_EXPR)
2427 return false;
2429 var = get_base_address (TREE_OPERAND (value, 0));
2431 return var && auto_var_in_fn_p (var, fn);
2434 /* Append to BB a debug annotation that binds VAR to VALUE, inheriting
2435 lexical block and line number information from base_stmt, if given,
2436 or from the last stmt of the block otherwise. */
2438 static gimple
2439 insert_init_debug_bind (copy_body_data *id,
2440 basic_block bb, tree var, tree value,
2441 gimple base_stmt)
2443 gimple note;
2444 gimple_stmt_iterator gsi;
2445 tree tracked_var;
2447 if (!gimple_in_ssa_p (id->src_cfun))
2448 return NULL;
2450 if (!MAY_HAVE_DEBUG_STMTS)
2451 return NULL;
2453 tracked_var = target_for_debug_bind (var);
2454 if (!tracked_var)
2455 return NULL;
2457 if (bb)
2459 gsi = gsi_last_bb (bb);
2460 if (!base_stmt && !gsi_end_p (gsi))
2461 base_stmt = gsi_stmt (gsi);
2464 note = gimple_build_debug_bind (tracked_var, value, base_stmt);
2466 if (bb)
2468 if (!gsi_end_p (gsi))
2469 gsi_insert_after (&gsi, note, GSI_SAME_STMT);
2470 else
2471 gsi_insert_before (&gsi, note, GSI_SAME_STMT);
2474 return note;
2477 static void
2478 insert_init_stmt (copy_body_data *id, basic_block bb, gimple init_stmt)
2480 /* If VAR represents a zero-sized variable, it's possible that the
2481 assignment statement may result in no gimple statements. */
2482 if (init_stmt)
2484 gimple_stmt_iterator si = gsi_last_bb (bb);
2486 /* We can end up with init statements that store to a non-register
2487 from a rhs with a conversion. Handle that here by forcing the
2488 rhs into a temporary. gimple_regimplify_operands is not
2489 prepared to do this for us. */
2490 if (!is_gimple_debug (init_stmt)
2491 && !is_gimple_reg (gimple_assign_lhs (init_stmt))
2492 && is_gimple_reg_type (TREE_TYPE (gimple_assign_lhs (init_stmt)))
2493 && gimple_assign_rhs_class (init_stmt) == GIMPLE_UNARY_RHS)
2495 tree rhs = build1 (gimple_assign_rhs_code (init_stmt),
2496 gimple_expr_type (init_stmt),
2497 gimple_assign_rhs1 (init_stmt));
2498 rhs = force_gimple_operand_gsi (&si, rhs, true, NULL_TREE, false,
2499 GSI_NEW_STMT);
2500 gimple_assign_set_rhs_code (init_stmt, TREE_CODE (rhs));
2501 gimple_assign_set_rhs1 (init_stmt, rhs);
2503 gsi_insert_after (&si, init_stmt, GSI_NEW_STMT);
2504 gimple_regimplify_operands (init_stmt, &si);
2505 mark_symbols_for_renaming (init_stmt);
2507 if (!is_gimple_debug (init_stmt) && MAY_HAVE_DEBUG_STMTS)
2509 tree var, def = gimple_assign_lhs (init_stmt);
2511 if (TREE_CODE (def) == SSA_NAME)
2512 var = SSA_NAME_VAR (def);
2513 else
2514 var = def;
2516 insert_init_debug_bind (id, bb, var, def, init_stmt);
2521 /* Initialize parameter P with VALUE. If needed, produce init statement
2522 at the end of BB. When BB is NULL, we return init statement to be
2523 output later. */
2524 static gimple
2525 setup_one_parameter (copy_body_data *id, tree p, tree value, tree fn,
2526 basic_block bb, tree *vars)
2528 gimple init_stmt = NULL;
2529 tree var;
2530 tree rhs = value;
2531 tree def = (gimple_in_ssa_p (cfun)
2532 ? gimple_default_def (id->src_cfun, p) : NULL);
2534 if (value
2535 && value != error_mark_node
2536 && !useless_type_conversion_p (TREE_TYPE (p), TREE_TYPE (value)))
2538 if (fold_convertible_p (TREE_TYPE (p), value))
2539 rhs = fold_build1 (NOP_EXPR, TREE_TYPE (p), value);
2540 else
2541 /* ??? For valid (GIMPLE) programs we should not end up here.
2542 Still if something has gone wrong and we end up with truly
2543 mismatched types here, fall back to using a VIEW_CONVERT_EXPR
2544 to not leak invalid GIMPLE to the following passes. */
2545 rhs = fold_build1 (VIEW_CONVERT_EXPR, TREE_TYPE (p), value);
2548 /* Make an equivalent VAR_DECL. Note that we must NOT remap the type
2549 here since the type of this decl must be visible to the calling
2550 function. */
2551 var = copy_decl_to_var (p, id);
2553 /* We're actually using the newly-created var. */
2554 if (gimple_in_ssa_p (cfun) && TREE_CODE (var) == VAR_DECL)
2555 add_referenced_var (var);
2557 /* Declare this new variable. */
2558 DECL_CHAIN (var) = *vars;
2559 *vars = var;
2561 /* Make gimplifier happy about this variable. */
2562 DECL_SEEN_IN_BIND_EXPR_P (var) = 1;
2564 /* If the parameter is never assigned to, has no SSA_NAMEs created,
2565 we would not need to create a new variable here at all, if it
2566 weren't for debug info. Still, we can just use the argument
2567 value. */
2568 if (TREE_READONLY (p)
2569 && !TREE_ADDRESSABLE (p)
2570 && value && !TREE_SIDE_EFFECTS (value)
2571 && !def)
2573 /* We may produce non-gimple trees by adding NOPs or introduce
2574 invalid sharing when operand is not really constant.
2575 It is not big deal to prohibit constant propagation here as
2576 we will constant propagate in DOM1 pass anyway. */
2577 if (is_gimple_min_invariant (value)
2578 && useless_type_conversion_p (TREE_TYPE (p),
2579 TREE_TYPE (value))
2580 /* We have to be very careful about ADDR_EXPR. Make sure
2581 the base variable isn't a local variable of the inlined
2582 function, e.g., when doing recursive inlining, direct or
2583 mutually-recursive or whatever, which is why we don't
2584 just test whether fn == current_function_decl. */
2585 && ! self_inlining_addr_expr (value, fn))
2587 insert_decl_map (id, p, value);
2588 insert_debug_decl_map (id, p, var);
2589 return insert_init_debug_bind (id, bb, var, value, NULL);
2593 /* Register the VAR_DECL as the equivalent for the PARM_DECL;
2594 that way, when the PARM_DECL is encountered, it will be
2595 automatically replaced by the VAR_DECL. */
2596 insert_decl_map (id, p, var);
2598 /* Even if P was TREE_READONLY, the new VAR should not be.
2599 In the original code, we would have constructed a
2600 temporary, and then the function body would have never
2601 changed the value of P. However, now, we will be
2602 constructing VAR directly. The constructor body may
2603 change its value multiple times as it is being
2604 constructed. Therefore, it must not be TREE_READONLY;
2605 the back-end assumes that TREE_READONLY variable is
2606 assigned to only once. */
2607 if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (p)))
2608 TREE_READONLY (var) = 0;
2610 /* If there is no setup required and we are in SSA, take the easy route
2611 replacing all SSA names representing the function parameter by the
2612 SSA name passed to function.
2614 We need to construct map for the variable anyway as it might be used
2615 in different SSA names when parameter is set in function.
2617 Do replacement at -O0 for const arguments replaced by constant.
2618 This is important for builtin_constant_p and other construct requiring
2619 constant argument to be visible in inlined function body. */
2620 if (gimple_in_ssa_p (cfun) && rhs && def && is_gimple_reg (p)
2621 && (optimize
2622 || (TREE_READONLY (p)
2623 && is_gimple_min_invariant (rhs)))
2624 && (TREE_CODE (rhs) == SSA_NAME
2625 || is_gimple_min_invariant (rhs))
2626 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (def))
2628 insert_decl_map (id, def, rhs);
2629 return insert_init_debug_bind (id, bb, var, rhs, NULL);
2632 /* If the value of argument is never used, don't care about initializing
2633 it. */
2634 if (optimize && gimple_in_ssa_p (cfun) && !def && is_gimple_reg (p))
2636 gcc_assert (!value || !TREE_SIDE_EFFECTS (value));
2637 return insert_init_debug_bind (id, bb, var, rhs, NULL);
2640 /* Initialize this VAR_DECL from the equivalent argument. Convert
2641 the argument to the proper type in case it was promoted. */
2642 if (value)
2644 if (rhs == error_mark_node)
2646 insert_decl_map (id, p, var);
2647 return insert_init_debug_bind (id, bb, var, rhs, NULL);
2650 STRIP_USELESS_TYPE_CONVERSION (rhs);
2652 /* We want to use MODIFY_EXPR, not INIT_EXPR here so that we
2653 keep our trees in gimple form. */
2654 if (def && gimple_in_ssa_p (cfun) && is_gimple_reg (p))
2656 def = remap_ssa_name (def, id);
2657 init_stmt = gimple_build_assign (def, rhs);
2658 SSA_NAME_IS_DEFAULT_DEF (def) = 0;
2659 set_default_def (var, NULL);
2661 else
2662 init_stmt = gimple_build_assign (var, rhs);
2664 if (bb && init_stmt)
2665 insert_init_stmt (id, bb, init_stmt);
2667 return init_stmt;
2670 /* Generate code to initialize the parameters of the function at the
2671 top of the stack in ID from the GIMPLE_CALL STMT. */
2673 static void
2674 initialize_inlined_parameters (copy_body_data *id, gimple stmt,
2675 tree fn, basic_block bb)
2677 tree parms;
2678 size_t i;
2679 tree p;
2680 tree vars = NULL_TREE;
2681 tree static_chain = gimple_call_chain (stmt);
2683 /* Figure out what the parameters are. */
2684 parms = DECL_ARGUMENTS (fn);
2686 /* Loop through the parameter declarations, replacing each with an
2687 equivalent VAR_DECL, appropriately initialized. */
2688 for (p = parms, i = 0; p; p = DECL_CHAIN (p), i++)
2690 tree val;
2691 val = i < gimple_call_num_args (stmt) ? gimple_call_arg (stmt, i) : NULL;
2692 setup_one_parameter (id, p, val, fn, bb, &vars);
2694 /* After remapping parameters remap their types. This has to be done
2695 in a second loop over all parameters to appropriately remap
2696 variable sized arrays when the size is specified in a
2697 parameter following the array. */
2698 for (p = parms, i = 0; p; p = DECL_CHAIN (p), i++)
2700 tree *varp = (tree *) pointer_map_contains (id->decl_map, p);
2701 if (varp
2702 && TREE_CODE (*varp) == VAR_DECL)
2704 tree def = (gimple_in_ssa_p (cfun) && is_gimple_reg (p)
2705 ? gimple_default_def (id->src_cfun, p) : NULL);
2706 tree var = *varp;
2707 TREE_TYPE (var) = remap_type (TREE_TYPE (var), id);
2708 /* Also remap the default definition if it was remapped
2709 to the default definition of the parameter replacement
2710 by the parameter setup. */
2711 if (def)
2713 tree *defp = (tree *) pointer_map_contains (id->decl_map, def);
2714 if (defp
2715 && TREE_CODE (*defp) == SSA_NAME
2716 && SSA_NAME_VAR (*defp) == var)
2717 TREE_TYPE (*defp) = TREE_TYPE (var);
2722 /* Initialize the static chain. */
2723 p = DECL_STRUCT_FUNCTION (fn)->static_chain_decl;
2724 gcc_assert (fn != current_function_decl);
2725 if (p)
2727 /* No static chain? Seems like a bug in tree-nested.c. */
2728 gcc_assert (static_chain);
2730 setup_one_parameter (id, p, static_chain, fn, bb, &vars);
2733 declare_inline_vars (id->block, vars);
2737 /* Declare a return variable to replace the RESULT_DECL for the
2738 function we are calling. An appropriate DECL_STMT is returned.
2739 The USE_STMT is filled to contain a use of the declaration to
2740 indicate the return value of the function.
2742 RETURN_SLOT, if non-null is place where to store the result. It
2743 is set only for CALL_EXPR_RETURN_SLOT_OPT. MODIFY_DEST, if non-null,
2744 was the LHS of the MODIFY_EXPR to which this call is the RHS.
2746 The return value is a (possibly null) value that holds the result
2747 as seen by the caller. */
2749 static tree
2750 declare_return_variable (copy_body_data *id, tree return_slot, tree modify_dest,
2751 basic_block entry_bb)
2753 tree callee = id->src_fn;
2754 tree result = DECL_RESULT (callee);
2755 tree callee_type = TREE_TYPE (result);
2756 tree caller_type;
2757 tree var, use;
2759 /* Handle type-mismatches in the function declaration return type
2760 vs. the call expression. */
2761 if (modify_dest)
2762 caller_type = TREE_TYPE (modify_dest);
2763 else
2764 caller_type = TREE_TYPE (TREE_TYPE (callee));
2766 /* We don't need to do anything for functions that don't return
2767 anything. */
2768 if (!result || VOID_TYPE_P (callee_type))
2769 return NULL_TREE;
2771 /* If there was a return slot, then the return value is the
2772 dereferenced address of that object. */
2773 if (return_slot)
2775 /* The front end shouldn't have used both return_slot and
2776 a modify expression. */
2777 gcc_assert (!modify_dest);
2778 if (DECL_BY_REFERENCE (result))
2780 tree return_slot_addr = build_fold_addr_expr (return_slot);
2781 STRIP_USELESS_TYPE_CONVERSION (return_slot_addr);
2783 /* We are going to construct *&return_slot and we can't do that
2784 for variables believed to be not addressable.
2786 FIXME: This check possibly can match, because values returned
2787 via return slot optimization are not believed to have address
2788 taken by alias analysis. */
2789 gcc_assert (TREE_CODE (return_slot) != SSA_NAME);
2790 var = return_slot_addr;
2792 else
2794 var = return_slot;
2795 gcc_assert (TREE_CODE (var) != SSA_NAME);
2796 TREE_ADDRESSABLE (var) |= TREE_ADDRESSABLE (result);
2798 if ((TREE_CODE (TREE_TYPE (result)) == COMPLEX_TYPE
2799 || TREE_CODE (TREE_TYPE (result)) == VECTOR_TYPE)
2800 && !DECL_GIMPLE_REG_P (result)
2801 && DECL_P (var))
2802 DECL_GIMPLE_REG_P (var) = 0;
2803 use = NULL;
2804 goto done;
2807 /* All types requiring non-trivial constructors should have been handled. */
2808 gcc_assert (!TREE_ADDRESSABLE (callee_type));
2810 /* Attempt to avoid creating a new temporary variable. */
2811 if (modify_dest
2812 && TREE_CODE (modify_dest) != SSA_NAME)
2814 bool use_it = false;
2816 /* We can't use MODIFY_DEST if there's type promotion involved. */
2817 if (!useless_type_conversion_p (callee_type, caller_type))
2818 use_it = false;
2820 /* ??? If we're assigning to a variable sized type, then we must
2821 reuse the destination variable, because we've no good way to
2822 create variable sized temporaries at this point. */
2823 else if (TREE_CODE (TYPE_SIZE_UNIT (caller_type)) != INTEGER_CST)
2824 use_it = true;
2826 /* If the callee cannot possibly modify MODIFY_DEST, then we can
2827 reuse it as the result of the call directly. Don't do this if
2828 it would promote MODIFY_DEST to addressable. */
2829 else if (TREE_ADDRESSABLE (result))
2830 use_it = false;
2831 else
2833 tree base_m = get_base_address (modify_dest);
2835 /* If the base isn't a decl, then it's a pointer, and we don't
2836 know where that's going to go. */
2837 if (!DECL_P (base_m))
2838 use_it = false;
2839 else if (is_global_var (base_m))
2840 use_it = false;
2841 else if ((TREE_CODE (TREE_TYPE (result)) == COMPLEX_TYPE
2842 || TREE_CODE (TREE_TYPE (result)) == VECTOR_TYPE)
2843 && !DECL_GIMPLE_REG_P (result)
2844 && DECL_GIMPLE_REG_P (base_m))
2845 use_it = false;
2846 else if (!TREE_ADDRESSABLE (base_m))
2847 use_it = true;
2850 if (use_it)
2852 var = modify_dest;
2853 use = NULL;
2854 goto done;
2858 gcc_assert (TREE_CODE (TYPE_SIZE_UNIT (callee_type)) == INTEGER_CST);
2860 var = copy_result_decl_to_var (result, id);
2861 if (gimple_in_ssa_p (cfun))
2862 add_referenced_var (var);
2864 DECL_SEEN_IN_BIND_EXPR_P (var) = 1;
2866 /* Do not have the rest of GCC warn about this variable as it should
2867 not be visible to the user. */
2868 TREE_NO_WARNING (var) = 1;
2870 declare_inline_vars (id->block, var);
2872 /* Build the use expr. If the return type of the function was
2873 promoted, convert it back to the expected type. */
2874 use = var;
2875 if (!useless_type_conversion_p (caller_type, TREE_TYPE (var)))
2876 use = fold_convert (caller_type, var);
2878 STRIP_USELESS_TYPE_CONVERSION (use);
2880 if (DECL_BY_REFERENCE (result))
2882 TREE_ADDRESSABLE (var) = 1;
2883 var = build_fold_addr_expr (var);
2886 done:
2887 /* Register the VAR_DECL as the equivalent for the RESULT_DECL; that
2888 way, when the RESULT_DECL is encountered, it will be
2889 automatically replaced by the VAR_DECL.
2891 When returning by reference, ensure that RESULT_DECL remaps to
2892 gimple_val. */
2893 if (DECL_BY_REFERENCE (result)
2894 && !is_gimple_val (var))
2896 tree temp = create_tmp_var (TREE_TYPE (result), "retvalptr");
2897 if (gimple_in_ssa_p (id->src_cfun))
2898 add_referenced_var (temp);
2899 insert_decl_map (id, result, temp);
2900 /* When RESULT_DECL is in SSA form, we need to use it's default_def
2901 SSA_NAME. */
2902 if (gimple_in_ssa_p (id->src_cfun) && gimple_default_def (id->src_cfun, result))
2903 temp = remap_ssa_name (gimple_default_def (id->src_cfun, result), id);
2904 insert_init_stmt (id, entry_bb, gimple_build_assign (temp, var));
2906 else
2907 insert_decl_map (id, result, var);
2909 /* Remember this so we can ignore it in remap_decls. */
2910 id->retvar = var;
2912 return use;
2915 /* Callback through walk_tree. Determine if a DECL_INITIAL makes reference
2916 to a local label. */
2918 static tree
2919 has_label_address_in_static_1 (tree *nodep, int *walk_subtrees, void *fnp)
2921 tree node = *nodep;
2922 tree fn = (tree) fnp;
2924 if (TREE_CODE (node) == LABEL_DECL && DECL_CONTEXT (node) == fn)
2925 return node;
2927 if (TYPE_P (node))
2928 *walk_subtrees = 0;
2930 return NULL_TREE;
2933 /* Determine if the function can be copied. If so return NULL. If
2934 not return a string describng the reason for failure. */
2936 static const char *
2937 copy_forbidden (struct function *fun, tree fndecl)
2939 const char *reason = fun->cannot_be_copied_reason;
2940 tree decl;
2941 unsigned ix;
2943 /* Only examine the function once. */
2944 if (fun->cannot_be_copied_set)
2945 return reason;
2947 /* We cannot copy a function that receives a non-local goto
2948 because we cannot remap the destination label used in the
2949 function that is performing the non-local goto. */
2950 /* ??? Actually, this should be possible, if we work at it.
2951 No doubt there's just a handful of places that simply
2952 assume it doesn't happen and don't substitute properly. */
2953 if (fun->has_nonlocal_label)
2955 reason = G_("function %q+F can never be copied "
2956 "because it receives a non-local goto");
2957 goto fail;
2960 FOR_EACH_LOCAL_DECL (fun, ix, decl)
2961 if (TREE_CODE (decl) == VAR_DECL
2962 && TREE_STATIC (decl)
2963 && !DECL_EXTERNAL (decl)
2964 && DECL_INITIAL (decl)
2965 && walk_tree_without_duplicates (&DECL_INITIAL (decl),
2966 has_label_address_in_static_1,
2967 fndecl))
2969 reason = G_("function %q+F can never be copied because it saves "
2970 "address of local label in a static variable");
2971 goto fail;
2974 fail:
2975 fun->cannot_be_copied_reason = reason;
2976 fun->cannot_be_copied_set = true;
2977 return reason;
2981 static const char *inline_forbidden_reason;
2983 /* A callback for walk_gimple_seq to handle statements. Returns non-null
2984 iff a function can not be inlined. Also sets the reason why. */
2986 static tree
2987 inline_forbidden_p_stmt (gimple_stmt_iterator *gsi, bool *handled_ops_p,
2988 struct walk_stmt_info *wip)
2990 tree fn = (tree) wip->info;
2991 tree t;
2992 gimple stmt = gsi_stmt (*gsi);
2994 switch (gimple_code (stmt))
2996 case GIMPLE_CALL:
2997 /* Refuse to inline alloca call unless user explicitly forced so as
2998 this may change program's memory overhead drastically when the
2999 function using alloca is called in loop. In GCC present in
3000 SPEC2000 inlining into schedule_block cause it to require 2GB of
3001 RAM instead of 256MB. Don't do so for alloca calls emitted for
3002 VLA objects as those can't cause unbounded growth (they're always
3003 wrapped inside stack_save/stack_restore regions. */
3004 if (gimple_alloca_call_p (stmt)
3005 && !gimple_call_alloca_for_var_p (stmt)
3006 && !lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)))
3008 inline_forbidden_reason
3009 = G_("function %q+F can never be inlined because it uses "
3010 "alloca (override using the always_inline attribute)");
3011 *handled_ops_p = true;
3012 return fn;
3015 t = gimple_call_fndecl (stmt);
3016 if (t == NULL_TREE)
3017 break;
3019 /* We cannot inline functions that call setjmp. */
3020 if (setjmp_call_p (t))
3022 inline_forbidden_reason
3023 = G_("function %q+F can never be inlined because it uses setjmp");
3024 *handled_ops_p = true;
3025 return t;
3028 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL)
3029 switch (DECL_FUNCTION_CODE (t))
3031 /* We cannot inline functions that take a variable number of
3032 arguments. */
3033 case BUILT_IN_VA_START:
3034 case BUILT_IN_NEXT_ARG:
3035 case BUILT_IN_VA_END:
3036 inline_forbidden_reason
3037 = G_("function %q+F can never be inlined because it "
3038 "uses variable argument lists");
3039 *handled_ops_p = true;
3040 return t;
3042 case BUILT_IN_LONGJMP:
3043 /* We can't inline functions that call __builtin_longjmp at
3044 all. The non-local goto machinery really requires the
3045 destination be in a different function. If we allow the
3046 function calling __builtin_longjmp to be inlined into the
3047 function calling __builtin_setjmp, Things will Go Awry. */
3048 inline_forbidden_reason
3049 = G_("function %q+F can never be inlined because "
3050 "it uses setjmp-longjmp exception handling");
3051 *handled_ops_p = true;
3052 return t;
3054 case BUILT_IN_NONLOCAL_GOTO:
3055 /* Similarly. */
3056 inline_forbidden_reason
3057 = G_("function %q+F can never be inlined because "
3058 "it uses non-local goto");
3059 *handled_ops_p = true;
3060 return t;
3062 case BUILT_IN_RETURN:
3063 case BUILT_IN_APPLY_ARGS:
3064 /* If a __builtin_apply_args caller would be inlined,
3065 it would be saving arguments of the function it has
3066 been inlined into. Similarly __builtin_return would
3067 return from the function the inline has been inlined into. */
3068 inline_forbidden_reason
3069 = G_("function %q+F can never be inlined because "
3070 "it uses __builtin_return or __builtin_apply_args");
3071 *handled_ops_p = true;
3072 return t;
3074 default:
3075 break;
3077 break;
3079 case GIMPLE_GOTO:
3080 t = gimple_goto_dest (stmt);
3082 /* We will not inline a function which uses computed goto. The
3083 addresses of its local labels, which may be tucked into
3084 global storage, are of course not constant across
3085 instantiations, which causes unexpected behavior. */
3086 if (TREE_CODE (t) != LABEL_DECL)
3088 inline_forbidden_reason
3089 = G_("function %q+F can never be inlined "
3090 "because it contains a computed goto");
3091 *handled_ops_p = true;
3092 return t;
3094 break;
3096 default:
3097 break;
3100 *handled_ops_p = false;
3101 return NULL_TREE;
3104 /* Return true if FNDECL is a function that cannot be inlined into
3105 another one. */
3107 static bool
3108 inline_forbidden_p (tree fndecl)
3110 struct function *fun = DECL_STRUCT_FUNCTION (fndecl);
3111 struct walk_stmt_info wi;
3112 struct pointer_set_t *visited_nodes;
3113 basic_block bb;
3114 bool forbidden_p = false;
3116 /* First check for shared reasons not to copy the code. */
3117 inline_forbidden_reason = copy_forbidden (fun, fndecl);
3118 if (inline_forbidden_reason != NULL)
3119 return true;
3121 /* Next, walk the statements of the function looking for
3122 constraucts we can't handle, or are non-optimal for inlining. */
3123 visited_nodes = pointer_set_create ();
3124 memset (&wi, 0, sizeof (wi));
3125 wi.info = (void *) fndecl;
3126 wi.pset = visited_nodes;
3128 FOR_EACH_BB_FN (bb, fun)
3130 gimple ret;
3131 gimple_seq seq = bb_seq (bb);
3132 ret = walk_gimple_seq (seq, inline_forbidden_p_stmt, NULL, &wi);
3133 forbidden_p = (ret != NULL);
3134 if (forbidden_p)
3135 break;
3138 pointer_set_destroy (visited_nodes);
3139 return forbidden_p;
3142 /* Returns nonzero if FN is a function that does not have any
3143 fundamental inline blocking properties. */
3145 bool
3146 tree_inlinable_function_p (tree fn)
3148 bool inlinable = true;
3149 bool do_warning;
3150 tree always_inline;
3152 /* If we've already decided this function shouldn't be inlined,
3153 there's no need to check again. */
3154 if (DECL_UNINLINABLE (fn))
3155 return false;
3157 /* We only warn for functions declared `inline' by the user. */
3158 do_warning = (warn_inline
3159 && DECL_DECLARED_INLINE_P (fn)
3160 && !DECL_NO_INLINE_WARNING_P (fn)
3161 && !DECL_IN_SYSTEM_HEADER (fn));
3163 always_inline = lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn));
3165 if (flag_no_inline
3166 && always_inline == NULL)
3168 if (do_warning)
3169 warning (OPT_Winline, "function %q+F can never be inlined because it "
3170 "is suppressed using -fno-inline", fn);
3171 inlinable = false;
3174 else if (!function_attribute_inlinable_p (fn))
3176 if (do_warning)
3177 warning (OPT_Winline, "function %q+F can never be inlined because it "
3178 "uses attributes conflicting with inlining", fn);
3179 inlinable = false;
3182 else if (inline_forbidden_p (fn))
3184 /* See if we should warn about uninlinable functions. Previously,
3185 some of these warnings would be issued while trying to expand
3186 the function inline, but that would cause multiple warnings
3187 about functions that would for example call alloca. But since
3188 this a property of the function, just one warning is enough.
3189 As a bonus we can now give more details about the reason why a
3190 function is not inlinable. */
3191 if (always_inline)
3192 sorry (inline_forbidden_reason, fn);
3193 else if (do_warning)
3194 warning (OPT_Winline, inline_forbidden_reason, fn);
3196 inlinable = false;
3199 /* Squirrel away the result so that we don't have to check again. */
3200 DECL_UNINLINABLE (fn) = !inlinable;
3202 return inlinable;
3205 /* Estimate the cost of a memory move. Use machine dependent
3206 word size and take possible memcpy call into account. */
3209 estimate_move_cost (tree type)
3211 HOST_WIDE_INT size;
3213 gcc_assert (!VOID_TYPE_P (type));
3215 if (TREE_CODE (type) == VECTOR_TYPE)
3217 enum machine_mode inner = TYPE_MODE (TREE_TYPE (type));
3218 enum machine_mode simd
3219 = targetm.vectorize.preferred_simd_mode (inner);
3220 int simd_mode_size = GET_MODE_SIZE (simd);
3221 return ((GET_MODE_SIZE (TYPE_MODE (type)) + simd_mode_size - 1)
3222 / simd_mode_size);
3225 size = int_size_in_bytes (type);
3227 if (size < 0 || size > MOVE_MAX_PIECES * MOVE_RATIO (!optimize_size))
3228 /* Cost of a memcpy call, 3 arguments and the call. */
3229 return 4;
3230 else
3231 return ((size + MOVE_MAX_PIECES - 1) / MOVE_MAX_PIECES);
3234 /* Returns cost of operation CODE, according to WEIGHTS */
3236 static int
3237 estimate_operator_cost (enum tree_code code, eni_weights *weights,
3238 tree op1 ATTRIBUTE_UNUSED, tree op2)
3240 switch (code)
3242 /* These are "free" conversions, or their presumed cost
3243 is folded into other operations. */
3244 case RANGE_EXPR:
3245 CASE_CONVERT:
3246 case COMPLEX_EXPR:
3247 case PAREN_EXPR:
3248 case VIEW_CONVERT_EXPR:
3249 return 0;
3251 /* Assign cost of 1 to usual operations.
3252 ??? We may consider mapping RTL costs to this. */
3253 case COND_EXPR:
3254 case VEC_COND_EXPR:
3256 case PLUS_EXPR:
3257 case POINTER_PLUS_EXPR:
3258 case MINUS_EXPR:
3259 case MULT_EXPR:
3260 case FMA_EXPR:
3262 case ADDR_SPACE_CONVERT_EXPR:
3263 case FIXED_CONVERT_EXPR:
3264 case FIX_TRUNC_EXPR:
3266 case NEGATE_EXPR:
3267 case FLOAT_EXPR:
3268 case MIN_EXPR:
3269 case MAX_EXPR:
3270 case ABS_EXPR:
3272 case LSHIFT_EXPR:
3273 case RSHIFT_EXPR:
3274 case LROTATE_EXPR:
3275 case RROTATE_EXPR:
3276 case VEC_LSHIFT_EXPR:
3277 case VEC_RSHIFT_EXPR:
3279 case BIT_IOR_EXPR:
3280 case BIT_XOR_EXPR:
3281 case BIT_AND_EXPR:
3282 case BIT_NOT_EXPR:
3284 case TRUTH_ANDIF_EXPR:
3285 case TRUTH_ORIF_EXPR:
3286 case TRUTH_AND_EXPR:
3287 case TRUTH_OR_EXPR:
3288 case TRUTH_XOR_EXPR:
3289 case TRUTH_NOT_EXPR:
3291 case LT_EXPR:
3292 case LE_EXPR:
3293 case GT_EXPR:
3294 case GE_EXPR:
3295 case EQ_EXPR:
3296 case NE_EXPR:
3297 case ORDERED_EXPR:
3298 case UNORDERED_EXPR:
3300 case UNLT_EXPR:
3301 case UNLE_EXPR:
3302 case UNGT_EXPR:
3303 case UNGE_EXPR:
3304 case UNEQ_EXPR:
3305 case LTGT_EXPR:
3307 case CONJ_EXPR:
3309 case PREDECREMENT_EXPR:
3310 case PREINCREMENT_EXPR:
3311 case POSTDECREMENT_EXPR:
3312 case POSTINCREMENT_EXPR:
3314 case REALIGN_LOAD_EXPR:
3316 case REDUC_MAX_EXPR:
3317 case REDUC_MIN_EXPR:
3318 case REDUC_PLUS_EXPR:
3319 case WIDEN_SUM_EXPR:
3320 case WIDEN_MULT_EXPR:
3321 case DOT_PROD_EXPR:
3322 case WIDEN_MULT_PLUS_EXPR:
3323 case WIDEN_MULT_MINUS_EXPR:
3325 case VEC_WIDEN_MULT_HI_EXPR:
3326 case VEC_WIDEN_MULT_LO_EXPR:
3327 case VEC_UNPACK_HI_EXPR:
3328 case VEC_UNPACK_LO_EXPR:
3329 case VEC_UNPACK_FLOAT_HI_EXPR:
3330 case VEC_UNPACK_FLOAT_LO_EXPR:
3331 case VEC_PACK_TRUNC_EXPR:
3332 case VEC_PACK_SAT_EXPR:
3333 case VEC_PACK_FIX_TRUNC_EXPR:
3334 case VEC_EXTRACT_EVEN_EXPR:
3335 case VEC_EXTRACT_ODD_EXPR:
3336 case VEC_INTERLEAVE_HIGH_EXPR:
3337 case VEC_INTERLEAVE_LOW_EXPR:
3339 return 1;
3341 /* Few special cases of expensive operations. This is useful
3342 to avoid inlining on functions having too many of these. */
3343 case TRUNC_DIV_EXPR:
3344 case CEIL_DIV_EXPR:
3345 case FLOOR_DIV_EXPR:
3346 case ROUND_DIV_EXPR:
3347 case EXACT_DIV_EXPR:
3348 case TRUNC_MOD_EXPR:
3349 case CEIL_MOD_EXPR:
3350 case FLOOR_MOD_EXPR:
3351 case ROUND_MOD_EXPR:
3352 case RDIV_EXPR:
3353 if (TREE_CODE (op2) != INTEGER_CST)
3354 return weights->div_mod_cost;
3355 return 1;
3357 default:
3358 /* We expect a copy assignment with no operator. */
3359 gcc_assert (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS);
3360 return 0;
3365 /* Estimate number of instructions that will be created by expanding
3366 the statements in the statement sequence STMTS.
3367 WEIGHTS contains weights attributed to various constructs. */
3369 static
3370 int estimate_num_insns_seq (gimple_seq stmts, eni_weights *weights)
3372 int cost;
3373 gimple_stmt_iterator gsi;
3375 cost = 0;
3376 for (gsi = gsi_start (stmts); !gsi_end_p (gsi); gsi_next (&gsi))
3377 cost += estimate_num_insns (gsi_stmt (gsi), weights);
3379 return cost;
3383 /* Estimate number of instructions that will be created by expanding STMT.
3384 WEIGHTS contains weights attributed to various constructs. */
3387 estimate_num_insns (gimple stmt, eni_weights *weights)
3389 unsigned cost, i;
3390 enum gimple_code code = gimple_code (stmt);
3391 tree lhs;
3392 tree rhs;
3394 switch (code)
3396 case GIMPLE_ASSIGN:
3397 /* Try to estimate the cost of assignments. We have three cases to
3398 deal with:
3399 1) Simple assignments to registers;
3400 2) Stores to things that must live in memory. This includes
3401 "normal" stores to scalars, but also assignments of large
3402 structures, or constructors of big arrays;
3404 Let us look at the first two cases, assuming we have "a = b + C":
3405 <GIMPLE_ASSIGN <var_decl "a">
3406 <plus_expr <var_decl "b"> <constant C>>
3407 If "a" is a GIMPLE register, the assignment to it is free on almost
3408 any target, because "a" usually ends up in a real register. Hence
3409 the only cost of this expression comes from the PLUS_EXPR, and we
3410 can ignore the GIMPLE_ASSIGN.
3411 If "a" is not a GIMPLE register, the assignment to "a" will most
3412 likely be a real store, so the cost of the GIMPLE_ASSIGN is the cost
3413 of moving something into "a", which we compute using the function
3414 estimate_move_cost. */
3415 lhs = gimple_assign_lhs (stmt);
3416 rhs = gimple_assign_rhs1 (stmt);
3418 if (is_gimple_reg (lhs))
3419 cost = 0;
3420 else
3421 cost = estimate_move_cost (TREE_TYPE (lhs));
3423 if (!is_gimple_reg (rhs) && !is_gimple_min_invariant (rhs))
3424 cost += estimate_move_cost (TREE_TYPE (rhs));
3426 cost += estimate_operator_cost (gimple_assign_rhs_code (stmt), weights,
3427 gimple_assign_rhs1 (stmt),
3428 get_gimple_rhs_class (gimple_assign_rhs_code (stmt))
3429 == GIMPLE_BINARY_RHS
3430 ? gimple_assign_rhs2 (stmt) : NULL);
3431 break;
3433 case GIMPLE_COND:
3434 cost = 1 + estimate_operator_cost (gimple_cond_code (stmt), weights,
3435 gimple_op (stmt, 0),
3436 gimple_op (stmt, 1));
3437 break;
3439 case GIMPLE_SWITCH:
3440 /* Take into account cost of the switch + guess 2 conditional jumps for
3441 each case label.
3443 TODO: once the switch expansion logic is sufficiently separated, we can
3444 do better job on estimating cost of the switch. */
3445 if (weights->time_based)
3446 cost = floor_log2 (gimple_switch_num_labels (stmt)) * 2;
3447 else
3448 cost = gimple_switch_num_labels (stmt) * 2;
3449 break;
3451 case GIMPLE_CALL:
3453 tree decl = gimple_call_fndecl (stmt);
3454 struct cgraph_node *node;
3456 /* Do not special case builtins where we see the body.
3457 This just confuse inliner. */
3458 if (!decl || !(node = cgraph_get_node (decl)) || node->analyzed)
3460 /* For buitins that are likely expanded to nothing or
3461 inlined do not account operand costs. */
3462 else if (is_simple_builtin (decl))
3463 return 0;
3464 else if (is_inexpensive_builtin (decl))
3465 return weights->target_builtin_call_cost;
3466 else if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
3468 /* We canonicalize x * x to pow (x, 2.0) with -ffast-math, so
3469 specialize the cheap expansion we do here.
3470 ??? This asks for a more general solution. */
3471 switch (DECL_FUNCTION_CODE (decl))
3473 case BUILT_IN_POW:
3474 case BUILT_IN_POWF:
3475 case BUILT_IN_POWL:
3476 if (TREE_CODE (gimple_call_arg (stmt, 1)) == REAL_CST
3477 && REAL_VALUES_EQUAL
3478 (TREE_REAL_CST (gimple_call_arg (stmt, 1)), dconst2))
3479 return estimate_operator_cost (MULT_EXPR, weights,
3480 gimple_call_arg (stmt, 0),
3481 gimple_call_arg (stmt, 0));
3482 break;
3484 default:
3485 break;
3489 cost = weights->call_cost;
3490 if (gimple_call_lhs (stmt))
3491 cost += estimate_move_cost (TREE_TYPE (gimple_call_lhs (stmt)));
3492 for (i = 0; i < gimple_call_num_args (stmt); i++)
3494 tree arg = gimple_call_arg (stmt, i);
3495 cost += estimate_move_cost (TREE_TYPE (arg));
3497 break;
3500 case GIMPLE_RETURN:
3501 return weights->return_cost;
3503 case GIMPLE_GOTO:
3504 case GIMPLE_LABEL:
3505 case GIMPLE_NOP:
3506 case GIMPLE_PHI:
3507 case GIMPLE_PREDICT:
3508 case GIMPLE_DEBUG:
3509 return 0;
3511 case GIMPLE_ASM:
3512 return asm_str_count (gimple_asm_string (stmt));
3514 case GIMPLE_RESX:
3515 /* This is either going to be an external function call with one
3516 argument, or two register copy statements plus a goto. */
3517 return 2;
3519 case GIMPLE_EH_DISPATCH:
3520 /* ??? This is going to turn into a switch statement. Ideally
3521 we'd have a look at the eh region and estimate the number of
3522 edges involved. */
3523 return 10;
3525 case GIMPLE_BIND:
3526 return estimate_num_insns_seq (gimple_bind_body (stmt), weights);
3528 case GIMPLE_EH_FILTER:
3529 return estimate_num_insns_seq (gimple_eh_filter_failure (stmt), weights);
3531 case GIMPLE_CATCH:
3532 return estimate_num_insns_seq (gimple_catch_handler (stmt), weights);
3534 case GIMPLE_TRY:
3535 return (estimate_num_insns_seq (gimple_try_eval (stmt), weights)
3536 + estimate_num_insns_seq (gimple_try_cleanup (stmt), weights));
3538 /* OpenMP directives are generally very expensive. */
3540 case GIMPLE_OMP_RETURN:
3541 case GIMPLE_OMP_SECTIONS_SWITCH:
3542 case GIMPLE_OMP_ATOMIC_STORE:
3543 case GIMPLE_OMP_CONTINUE:
3544 /* ...except these, which are cheap. */
3545 return 0;
3547 case GIMPLE_OMP_ATOMIC_LOAD:
3548 return weights->omp_cost;
3550 case GIMPLE_OMP_FOR:
3551 return (weights->omp_cost
3552 + estimate_num_insns_seq (gimple_omp_body (stmt), weights)
3553 + estimate_num_insns_seq (gimple_omp_for_pre_body (stmt), weights));
3555 case GIMPLE_OMP_PARALLEL:
3556 case GIMPLE_OMP_TASK:
3557 case GIMPLE_OMP_CRITICAL:
3558 case GIMPLE_OMP_MASTER:
3559 case GIMPLE_OMP_ORDERED:
3560 case GIMPLE_OMP_SECTION:
3561 case GIMPLE_OMP_SECTIONS:
3562 case GIMPLE_OMP_SINGLE:
3563 return (weights->omp_cost
3564 + estimate_num_insns_seq (gimple_omp_body (stmt), weights));
3566 default:
3567 gcc_unreachable ();
3570 return cost;
3573 /* Estimate number of instructions that will be created by expanding
3574 function FNDECL. WEIGHTS contains weights attributed to various
3575 constructs. */
3578 estimate_num_insns_fn (tree fndecl, eni_weights *weights)
3580 struct function *my_function = DECL_STRUCT_FUNCTION (fndecl);
3581 gimple_stmt_iterator bsi;
3582 basic_block bb;
3583 int n = 0;
3585 gcc_assert (my_function && my_function->cfg);
3586 FOR_EACH_BB_FN (bb, my_function)
3588 for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
3589 n += estimate_num_insns (gsi_stmt (bsi), weights);
3592 return n;
3596 /* Initializes weights used by estimate_num_insns. */
3598 void
3599 init_inline_once (void)
3601 eni_size_weights.call_cost = 1;
3602 eni_size_weights.target_builtin_call_cost = 1;
3603 eni_size_weights.div_mod_cost = 1;
3604 eni_size_weights.omp_cost = 40;
3605 eni_size_weights.time_based = false;
3606 eni_size_weights.return_cost = 1;
3608 /* Estimating time for call is difficult, since we have no idea what the
3609 called function does. In the current uses of eni_time_weights,
3610 underestimating the cost does less harm than overestimating it, so
3611 we choose a rather small value here. */
3612 eni_time_weights.call_cost = 10;
3613 eni_time_weights.target_builtin_call_cost = 1;
3614 eni_time_weights.div_mod_cost = 10;
3615 eni_time_weights.omp_cost = 40;
3616 eni_time_weights.time_based = true;
3617 eni_time_weights.return_cost = 2;
3620 /* Estimate the number of instructions in a gimple_seq. */
3623 count_insns_seq (gimple_seq seq, eni_weights *weights)
3625 gimple_stmt_iterator gsi;
3626 int n = 0;
3627 for (gsi = gsi_start (seq); !gsi_end_p (gsi); gsi_next (&gsi))
3628 n += estimate_num_insns (gsi_stmt (gsi), weights);
3630 return n;
3634 /* Install new lexical TREE_BLOCK underneath 'current_block'. */
3636 static void
3637 prepend_lexical_block (tree current_block, tree new_block)
3639 BLOCK_CHAIN (new_block) = BLOCK_SUBBLOCKS (current_block);
3640 BLOCK_SUBBLOCKS (current_block) = new_block;
3641 BLOCK_SUPERCONTEXT (new_block) = current_block;
3644 /* Add local variables from CALLEE to CALLER. */
3646 static inline void
3647 add_local_variables (struct function *callee, struct function *caller,
3648 copy_body_data *id, bool check_var_ann)
3650 tree var;
3651 unsigned ix;
3653 FOR_EACH_LOCAL_DECL (callee, ix, var)
3654 if (TREE_STATIC (var) && !TREE_ASM_WRITTEN (var))
3656 if (!check_var_ann
3657 || (var_ann (var) && add_referenced_var (var)))
3658 add_local_decl (caller, var);
3660 else if (!can_be_nonlocal (var, id))
3662 tree new_var = remap_decl (var, id);
3664 /* Remap debug-expressions. */
3665 if (TREE_CODE (new_var) == VAR_DECL
3666 && DECL_DEBUG_EXPR_IS_FROM (new_var)
3667 && new_var != var)
3669 tree tem = DECL_DEBUG_EXPR (var);
3670 bool old_regimplify = id->regimplify;
3671 id->remapping_type_depth++;
3672 walk_tree (&tem, copy_tree_body_r, id, NULL);
3673 id->remapping_type_depth--;
3674 id->regimplify = old_regimplify;
3675 SET_DECL_DEBUG_EXPR (new_var, tem);
3677 add_local_decl (caller, new_var);
3681 /* If STMT is a GIMPLE_CALL, replace it with its inline expansion. */
3683 static bool
3684 expand_call_inline (basic_block bb, gimple stmt, copy_body_data *id)
3686 tree use_retvar;
3687 tree fn;
3688 struct pointer_map_t *st, *dst;
3689 tree return_slot;
3690 tree modify_dest;
3691 location_t saved_location;
3692 struct cgraph_edge *cg_edge;
3693 cgraph_inline_failed_t reason;
3694 basic_block return_block;
3695 edge e;
3696 gimple_stmt_iterator gsi, stmt_gsi;
3697 bool successfully_inlined = FALSE;
3698 bool purge_dead_abnormal_edges;
3700 /* Set input_location here so we get the right instantiation context
3701 if we call instantiate_decl from inlinable_function_p. */
3702 saved_location = input_location;
3703 if (gimple_has_location (stmt))
3704 input_location = gimple_location (stmt);
3706 /* From here on, we're only interested in CALL_EXPRs. */
3707 if (gimple_code (stmt) != GIMPLE_CALL)
3708 goto egress;
3710 cg_edge = cgraph_edge (id->dst_node, stmt);
3711 gcc_checking_assert (cg_edge);
3712 /* First, see if we can figure out what function is being called.
3713 If we cannot, then there is no hope of inlining the function. */
3714 if (cg_edge->indirect_unknown_callee)
3715 goto egress;
3716 fn = cg_edge->callee->decl;
3717 gcc_checking_assert (fn);
3719 /* If FN is a declaration of a function in a nested scope that was
3720 globally declared inline, we don't set its DECL_INITIAL.
3721 However, we can't blindly follow DECL_ABSTRACT_ORIGIN because the
3722 C++ front-end uses it for cdtors to refer to their internal
3723 declarations, that are not real functions. Fortunately those
3724 don't have trees to be saved, so we can tell by checking their
3725 gimple_body. */
3726 if (!DECL_INITIAL (fn)
3727 && DECL_ABSTRACT_ORIGIN (fn)
3728 && gimple_has_body_p (DECL_ABSTRACT_ORIGIN (fn)))
3729 fn = DECL_ABSTRACT_ORIGIN (fn);
3731 /* Don't try to inline functions that are not well-suited to inlining. */
3732 if (!cgraph_inline_p (cg_edge, &reason))
3734 /* If this call was originally indirect, we do not want to emit any
3735 inlining related warnings or sorry messages because there are no
3736 guarantees regarding those. */
3737 if (cg_edge->indirect_inlining_edge)
3738 goto egress;
3740 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn))
3741 /* Avoid warnings during early inline pass. */
3742 && cgraph_global_info_ready)
3744 sorry ("inlining failed in call to %q+F: %s", fn,
3745 _(cgraph_inline_failed_string (reason)));
3746 sorry ("called from here");
3748 else if (warn_inline
3749 && DECL_DECLARED_INLINE_P (fn)
3750 && !DECL_NO_INLINE_WARNING_P (fn)
3751 && !DECL_IN_SYSTEM_HEADER (fn)
3752 && reason != CIF_UNSPECIFIED
3753 && !lookup_attribute ("noinline", DECL_ATTRIBUTES (fn))
3754 /* Do not warn about not inlined recursive calls. */
3755 && !cgraph_edge_recursive_p (cg_edge)
3756 /* Avoid warnings during early inline pass. */
3757 && cgraph_global_info_ready)
3759 warning (OPT_Winline, "inlining failed in call to %q+F: %s",
3760 fn, _(cgraph_inline_failed_string (reason)));
3761 warning (OPT_Winline, "called from here");
3763 goto egress;
3765 fn = cg_edge->callee->decl;
3767 #ifdef ENABLE_CHECKING
3768 if (cg_edge->callee->decl != id->dst_node->decl)
3769 verify_cgraph_node (cg_edge->callee);
3770 #endif
3772 /* We will be inlining this callee. */
3773 id->eh_lp_nr = lookup_stmt_eh_lp (stmt);
3775 /* Update the callers EH personality. */
3776 if (DECL_FUNCTION_PERSONALITY (cg_edge->callee->decl))
3777 DECL_FUNCTION_PERSONALITY (cg_edge->caller->decl)
3778 = DECL_FUNCTION_PERSONALITY (cg_edge->callee->decl);
3780 /* Split the block holding the GIMPLE_CALL. */
3781 e = split_block (bb, stmt);
3782 bb = e->src;
3783 return_block = e->dest;
3784 remove_edge (e);
3786 /* split_block splits after the statement; work around this by
3787 moving the call into the second block manually. Not pretty,
3788 but seems easier than doing the CFG manipulation by hand
3789 when the GIMPLE_CALL is in the last statement of BB. */
3790 stmt_gsi = gsi_last_bb (bb);
3791 gsi_remove (&stmt_gsi, false);
3793 /* If the GIMPLE_CALL was in the last statement of BB, it may have
3794 been the source of abnormal edges. In this case, schedule
3795 the removal of dead abnormal edges. */
3796 gsi = gsi_start_bb (return_block);
3797 if (gsi_end_p (gsi))
3799 gsi_insert_after (&gsi, stmt, GSI_NEW_STMT);
3800 purge_dead_abnormal_edges = true;
3802 else
3804 gsi_insert_before (&gsi, stmt, GSI_NEW_STMT);
3805 purge_dead_abnormal_edges = false;
3808 stmt_gsi = gsi_start_bb (return_block);
3810 /* Build a block containing code to initialize the arguments, the
3811 actual inline expansion of the body, and a label for the return
3812 statements within the function to jump to. The type of the
3813 statement expression is the return type of the function call. */
3814 id->block = make_node (BLOCK);
3815 BLOCK_ABSTRACT_ORIGIN (id->block) = fn;
3816 BLOCK_SOURCE_LOCATION (id->block) = input_location;
3817 prepend_lexical_block (gimple_block (stmt), id->block);
3819 /* Local declarations will be replaced by their equivalents in this
3820 map. */
3821 st = id->decl_map;
3822 id->decl_map = pointer_map_create ();
3823 dst = id->debug_map;
3824 id->debug_map = NULL;
3826 /* Record the function we are about to inline. */
3827 id->src_fn = fn;
3828 id->src_node = cg_edge->callee;
3829 id->src_cfun = DECL_STRUCT_FUNCTION (fn);
3830 id->gimple_call = stmt;
3832 gcc_assert (!id->src_cfun->after_inlining);
3834 id->entry_bb = bb;
3835 if (lookup_attribute ("cold", DECL_ATTRIBUTES (fn)))
3837 gimple_stmt_iterator si = gsi_last_bb (bb);
3838 gsi_insert_after (&si, gimple_build_predict (PRED_COLD_FUNCTION,
3839 NOT_TAKEN),
3840 GSI_NEW_STMT);
3842 initialize_inlined_parameters (id, stmt, fn, bb);
3844 if (DECL_INITIAL (fn))
3845 prepend_lexical_block (id->block, remap_blocks (DECL_INITIAL (fn), id));
3847 /* Return statements in the function body will be replaced by jumps
3848 to the RET_LABEL. */
3849 gcc_assert (DECL_INITIAL (fn));
3850 gcc_assert (TREE_CODE (DECL_INITIAL (fn)) == BLOCK);
3852 /* Find the LHS to which the result of this call is assigned. */
3853 return_slot = NULL;
3854 if (gimple_call_lhs (stmt))
3856 modify_dest = gimple_call_lhs (stmt);
3858 /* The function which we are inlining might not return a value,
3859 in which case we should issue a warning that the function
3860 does not return a value. In that case the optimizers will
3861 see that the variable to which the value is assigned was not
3862 initialized. We do not want to issue a warning about that
3863 uninitialized variable. */
3864 if (DECL_P (modify_dest))
3865 TREE_NO_WARNING (modify_dest) = 1;
3867 if (gimple_call_return_slot_opt_p (stmt))
3869 return_slot = modify_dest;
3870 modify_dest = NULL;
3873 else
3874 modify_dest = NULL;
3876 /* If we are inlining a call to the C++ operator new, we don't want
3877 to use type based alias analysis on the return value. Otherwise
3878 we may get confused if the compiler sees that the inlined new
3879 function returns a pointer which was just deleted. See bug
3880 33407. */
3881 if (DECL_IS_OPERATOR_NEW (fn))
3883 return_slot = NULL;
3884 modify_dest = NULL;
3887 /* Declare the return variable for the function. */
3888 use_retvar = declare_return_variable (id, return_slot, modify_dest, bb);
3890 /* Add local vars in this inlined callee to caller. */
3891 add_local_variables (id->src_cfun, cfun, id, true);
3893 if (dump_file && (dump_flags & TDF_DETAILS))
3895 fprintf (dump_file, "Inlining ");
3896 print_generic_expr (dump_file, id->src_fn, 0);
3897 fprintf (dump_file, " to ");
3898 print_generic_expr (dump_file, id->dst_fn, 0);
3899 fprintf (dump_file, " with frequency %i\n", cg_edge->frequency);
3902 /* This is it. Duplicate the callee body. Assume callee is
3903 pre-gimplified. Note that we must not alter the caller
3904 function in any way before this point, as this CALL_EXPR may be
3905 a self-referential call; if we're calling ourselves, we need to
3906 duplicate our body before altering anything. */
3907 copy_body (id, bb->count,
3908 cg_edge->frequency * REG_BR_PROB_BASE / CGRAPH_FREQ_BASE,
3909 bb, return_block, NULL, NULL);
3911 /* Reset the escaped solution. */
3912 if (cfun->gimple_df)
3913 pt_solution_reset (&cfun->gimple_df->escaped);
3915 /* Clean up. */
3916 if (id->debug_map)
3918 pointer_map_destroy (id->debug_map);
3919 id->debug_map = dst;
3921 pointer_map_destroy (id->decl_map);
3922 id->decl_map = st;
3924 /* Unlink the calls virtual operands before replacing it. */
3925 unlink_stmt_vdef (stmt);
3927 /* If the inlined function returns a result that we care about,
3928 substitute the GIMPLE_CALL with an assignment of the return
3929 variable to the LHS of the call. That is, if STMT was
3930 'a = foo (...)', substitute the call with 'a = USE_RETVAR'. */
3931 if (use_retvar && gimple_call_lhs (stmt))
3933 gimple old_stmt = stmt;
3934 stmt = gimple_build_assign (gimple_call_lhs (stmt), use_retvar);
3935 gsi_replace (&stmt_gsi, stmt, false);
3936 if (gimple_in_ssa_p (cfun))
3937 mark_symbols_for_renaming (stmt);
3938 maybe_clean_or_replace_eh_stmt (old_stmt, stmt);
3940 else
3942 /* Handle the case of inlining a function with no return
3943 statement, which causes the return value to become undefined. */
3944 if (gimple_call_lhs (stmt)
3945 && TREE_CODE (gimple_call_lhs (stmt)) == SSA_NAME)
3947 tree name = gimple_call_lhs (stmt);
3948 tree var = SSA_NAME_VAR (name);
3949 tree def = gimple_default_def (cfun, var);
3951 if (def)
3953 /* If the variable is used undefined, make this name
3954 undefined via a move. */
3955 stmt = gimple_build_assign (gimple_call_lhs (stmt), def);
3956 gsi_replace (&stmt_gsi, stmt, true);
3958 else
3960 /* Otherwise make this variable undefined. */
3961 gsi_remove (&stmt_gsi, true);
3962 set_default_def (var, name);
3963 SSA_NAME_DEF_STMT (name) = gimple_build_nop ();
3966 else
3967 gsi_remove (&stmt_gsi, true);
3970 if (purge_dead_abnormal_edges)
3972 gimple_purge_dead_eh_edges (return_block);
3973 gimple_purge_dead_abnormal_call_edges (return_block);
3976 /* If the value of the new expression is ignored, that's OK. We
3977 don't warn about this for CALL_EXPRs, so we shouldn't warn about
3978 the equivalent inlined version either. */
3979 if (is_gimple_assign (stmt))
3981 gcc_assert (gimple_assign_single_p (stmt)
3982 || CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (stmt)));
3983 TREE_USED (gimple_assign_rhs1 (stmt)) = 1;
3986 /* Output the inlining info for this abstract function, since it has been
3987 inlined. If we don't do this now, we can lose the information about the
3988 variables in the function when the blocks get blown away as soon as we
3989 remove the cgraph node. */
3990 (*debug_hooks->outlining_inline_function) (cg_edge->callee->decl);
3992 /* Update callgraph if needed. */
3993 cgraph_remove_node (cg_edge->callee);
3995 id->block = NULL_TREE;
3996 successfully_inlined = TRUE;
3998 egress:
3999 input_location = saved_location;
4000 return successfully_inlined;
4003 /* Expand call statements reachable from STMT_P.
4004 We can only have CALL_EXPRs as the "toplevel" tree code or nested
4005 in a MODIFY_EXPR. See gimple.c:get_call_expr_in(). We can
4006 unfortunately not use that function here because we need a pointer
4007 to the CALL_EXPR, not the tree itself. */
4009 static bool
4010 gimple_expand_calls_inline (basic_block bb, copy_body_data *id)
4012 gimple_stmt_iterator gsi;
4014 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4016 gimple stmt = gsi_stmt (gsi);
4018 if (is_gimple_call (stmt)
4019 && expand_call_inline (bb, stmt, id))
4020 return true;
4023 return false;
4027 /* Walk all basic blocks created after FIRST and try to fold every statement
4028 in the STATEMENTS pointer set. */
4030 static void
4031 fold_marked_statements (int first, struct pointer_set_t *statements)
4033 for (; first < n_basic_blocks; first++)
4034 if (BASIC_BLOCK (first))
4036 gimple_stmt_iterator gsi;
4038 for (gsi = gsi_start_bb (BASIC_BLOCK (first));
4039 !gsi_end_p (gsi);
4040 gsi_next (&gsi))
4041 if (pointer_set_contains (statements, gsi_stmt (gsi)))
4043 gimple old_stmt = gsi_stmt (gsi);
4044 tree old_decl = is_gimple_call (old_stmt) ? gimple_call_fndecl (old_stmt) : 0;
4046 if (old_decl && DECL_BUILT_IN (old_decl))
4048 /* Folding builtins can create multiple instructions,
4049 we need to look at all of them. */
4050 gimple_stmt_iterator i2 = gsi;
4051 gsi_prev (&i2);
4052 if (fold_stmt (&gsi))
4054 gimple new_stmt;
4055 if (gsi_end_p (i2))
4056 i2 = gsi_start_bb (BASIC_BLOCK (first));
4057 else
4058 gsi_next (&i2);
4059 while (1)
4061 new_stmt = gsi_stmt (i2);
4062 update_stmt (new_stmt);
4063 cgraph_update_edges_for_call_stmt (old_stmt, old_decl,
4064 new_stmt);
4066 if (new_stmt == gsi_stmt (gsi))
4068 /* It is okay to check only for the very last
4069 of these statements. If it is a throwing
4070 statement nothing will change. If it isn't
4071 this can remove EH edges. If that weren't
4072 correct then because some intermediate stmts
4073 throw, but not the last one. That would mean
4074 we'd have to split the block, which we can't
4075 here and we'd loose anyway. And as builtins
4076 probably never throw, this all
4077 is mood anyway. */
4078 if (maybe_clean_or_replace_eh_stmt (old_stmt,
4079 new_stmt))
4080 gimple_purge_dead_eh_edges (BASIC_BLOCK (first));
4081 break;
4083 gsi_next (&i2);
4087 else if (fold_stmt (&gsi))
4089 /* Re-read the statement from GSI as fold_stmt() may
4090 have changed it. */
4091 gimple new_stmt = gsi_stmt (gsi);
4092 update_stmt (new_stmt);
4094 if (is_gimple_call (old_stmt)
4095 || is_gimple_call (new_stmt))
4096 cgraph_update_edges_for_call_stmt (old_stmt, old_decl,
4097 new_stmt);
4099 if (maybe_clean_or_replace_eh_stmt (old_stmt, new_stmt))
4100 gimple_purge_dead_eh_edges (BASIC_BLOCK (first));
4106 /* Return true if BB has at least one abnormal outgoing edge. */
4108 static inline bool
4109 has_abnormal_outgoing_edge_p (basic_block bb)
4111 edge e;
4112 edge_iterator ei;
4114 FOR_EACH_EDGE (e, ei, bb->succs)
4115 if (e->flags & EDGE_ABNORMAL)
4116 return true;
4118 return false;
4121 /* Expand calls to inline functions in the body of FN. */
4123 unsigned int
4124 optimize_inline_calls (tree fn)
4126 copy_body_data id;
4127 basic_block bb;
4128 int last = n_basic_blocks;
4129 struct gimplify_ctx gctx;
4130 bool inlined_p = false;
4132 /* There is no point in performing inlining if errors have already
4133 occurred -- and we might crash if we try to inline invalid
4134 code. */
4135 if (seen_error ())
4136 return 0;
4138 /* Clear out ID. */
4139 memset (&id, 0, sizeof (id));
4141 id.src_node = id.dst_node = cgraph_get_node (fn);
4142 gcc_assert (id.dst_node->analyzed);
4143 id.dst_fn = fn;
4144 /* Or any functions that aren't finished yet. */
4145 if (current_function_decl)
4146 id.dst_fn = current_function_decl;
4148 id.copy_decl = copy_decl_maybe_to_var;
4149 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
4150 id.transform_new_cfg = false;
4151 id.transform_return_to_modify = true;
4152 id.transform_lang_insert_block = NULL;
4153 id.statements_to_fold = pointer_set_create ();
4155 push_gimplify_context (&gctx);
4157 /* We make no attempts to keep dominance info up-to-date. */
4158 free_dominance_info (CDI_DOMINATORS);
4159 free_dominance_info (CDI_POST_DOMINATORS);
4161 /* Register specific gimple functions. */
4162 gimple_register_cfg_hooks ();
4164 /* Reach the trees by walking over the CFG, and note the
4165 enclosing basic-blocks in the call edges. */
4166 /* We walk the blocks going forward, because inlined function bodies
4167 will split id->current_basic_block, and the new blocks will
4168 follow it; we'll trudge through them, processing their CALL_EXPRs
4169 along the way. */
4170 FOR_EACH_BB (bb)
4171 inlined_p |= gimple_expand_calls_inline (bb, &id);
4173 pop_gimplify_context (NULL);
4175 #ifdef ENABLE_CHECKING
4177 struct cgraph_edge *e;
4179 verify_cgraph_node (id.dst_node);
4181 /* Double check that we inlined everything we are supposed to inline. */
4182 for (e = id.dst_node->callees; e; e = e->next_callee)
4183 gcc_assert (e->inline_failed);
4185 #endif
4187 /* Fold queued statements. */
4188 fold_marked_statements (last, id.statements_to_fold);
4189 pointer_set_destroy (id.statements_to_fold);
4191 gcc_assert (!id.debug_stmts);
4193 /* If we didn't inline into the function there is nothing to do. */
4194 if (!inlined_p)
4195 return 0;
4197 /* Renumber the lexical scoping (non-code) blocks consecutively. */
4198 number_blocks (fn);
4200 delete_unreachable_blocks_update_callgraph (&id);
4201 #ifdef ENABLE_CHECKING
4202 verify_cgraph_node (id.dst_node);
4203 #endif
4205 /* It would be nice to check SSA/CFG/statement consistency here, but it is
4206 not possible yet - the IPA passes might make various functions to not
4207 throw and they don't care to proactively update local EH info. This is
4208 done later in fixup_cfg pass that also execute the verification. */
4209 return (TODO_update_ssa
4210 | TODO_cleanup_cfg
4211 | (gimple_in_ssa_p (cfun) ? TODO_remove_unused_locals : 0)
4212 | (gimple_in_ssa_p (cfun) ? TODO_update_address_taken : 0)
4213 | (profile_status != PROFILE_ABSENT ? TODO_rebuild_frequencies : 0));
4216 /* Passed to walk_tree. Copies the node pointed to, if appropriate. */
4218 tree
4219 copy_tree_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
4221 enum tree_code code = TREE_CODE (*tp);
4222 enum tree_code_class cl = TREE_CODE_CLASS (code);
4224 /* We make copies of most nodes. */
4225 if (IS_EXPR_CODE_CLASS (cl)
4226 || code == TREE_LIST
4227 || code == TREE_VEC
4228 || code == TYPE_DECL
4229 || code == OMP_CLAUSE)
4231 /* Because the chain gets clobbered when we make a copy, we save it
4232 here. */
4233 tree chain = NULL_TREE, new_tree;
4235 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
4236 chain = TREE_CHAIN (*tp);
4238 /* Copy the node. */
4239 new_tree = copy_node (*tp);
4241 /* Propagate mudflap marked-ness. */
4242 if (flag_mudflap && mf_marked_p (*tp))
4243 mf_mark (new_tree);
4245 *tp = new_tree;
4247 /* Now, restore the chain, if appropriate. That will cause
4248 walk_tree to walk into the chain as well. */
4249 if (code == PARM_DECL
4250 || code == TREE_LIST
4251 || code == OMP_CLAUSE)
4252 TREE_CHAIN (*tp) = chain;
4254 /* For now, we don't update BLOCKs when we make copies. So, we
4255 have to nullify all BIND_EXPRs. */
4256 if (TREE_CODE (*tp) == BIND_EXPR)
4257 BIND_EXPR_BLOCK (*tp) = NULL_TREE;
4259 else if (code == CONSTRUCTOR)
4261 /* CONSTRUCTOR nodes need special handling because
4262 we need to duplicate the vector of elements. */
4263 tree new_tree;
4265 new_tree = copy_node (*tp);
4267 /* Propagate mudflap marked-ness. */
4268 if (flag_mudflap && mf_marked_p (*tp))
4269 mf_mark (new_tree);
4271 CONSTRUCTOR_ELTS (new_tree) = VEC_copy (constructor_elt, gc,
4272 CONSTRUCTOR_ELTS (*tp));
4273 *tp = new_tree;
4275 else if (TREE_CODE_CLASS (code) == tcc_type)
4276 *walk_subtrees = 0;
4277 else if (TREE_CODE_CLASS (code) == tcc_declaration)
4278 *walk_subtrees = 0;
4279 else if (TREE_CODE_CLASS (code) == tcc_constant)
4280 *walk_subtrees = 0;
4281 else
4282 gcc_assert (code != STATEMENT_LIST);
4283 return NULL_TREE;
4286 /* The SAVE_EXPR pointed to by TP is being copied. If ST contains
4287 information indicating to what new SAVE_EXPR this one should be mapped,
4288 use that one. Otherwise, create a new node and enter it in ST. FN is
4289 the function into which the copy will be placed. */
4291 static void
4292 remap_save_expr (tree *tp, void *st_, int *walk_subtrees)
4294 struct pointer_map_t *st = (struct pointer_map_t *) st_;
4295 tree *n;
4296 tree t;
4298 /* See if we already encountered this SAVE_EXPR. */
4299 n = (tree *) pointer_map_contains (st, *tp);
4301 /* If we didn't already remap this SAVE_EXPR, do so now. */
4302 if (!n)
4304 t = copy_node (*tp);
4306 /* Remember this SAVE_EXPR. */
4307 *pointer_map_insert (st, *tp) = t;
4308 /* Make sure we don't remap an already-remapped SAVE_EXPR. */
4309 *pointer_map_insert (st, t) = t;
4311 else
4313 /* We've already walked into this SAVE_EXPR; don't do it again. */
4314 *walk_subtrees = 0;
4315 t = *n;
4318 /* Replace this SAVE_EXPR with the copy. */
4319 *tp = t;
4322 /* Called via walk_tree. If *TP points to a DECL_STMT for a local label,
4323 copies the declaration and enters it in the splay_tree in DATA (which is
4324 really an `copy_body_data *'). */
4326 static tree
4327 mark_local_for_remap_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
4328 void *data)
4330 copy_body_data *id = (copy_body_data *) data;
4332 /* Don't walk into types. */
4333 if (TYPE_P (*tp))
4334 *walk_subtrees = 0;
4336 else if (TREE_CODE (*tp) == LABEL_EXPR)
4338 tree decl = TREE_OPERAND (*tp, 0);
4340 /* Copy the decl and remember the copy. */
4341 insert_decl_map (id, decl, id->copy_decl (decl, id));
4344 return NULL_TREE;
4347 /* Perform any modifications to EXPR required when it is unsaved. Does
4348 not recurse into EXPR's subtrees. */
4350 static void
4351 unsave_expr_1 (tree expr)
4353 switch (TREE_CODE (expr))
4355 case TARGET_EXPR:
4356 /* Don't mess with a TARGET_EXPR that hasn't been expanded.
4357 It's OK for this to happen if it was part of a subtree that
4358 isn't immediately expanded, such as operand 2 of another
4359 TARGET_EXPR. */
4360 if (TREE_OPERAND (expr, 1))
4361 break;
4363 TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 3);
4364 TREE_OPERAND (expr, 3) = NULL_TREE;
4365 break;
4367 default:
4368 break;
4372 /* Called via walk_tree when an expression is unsaved. Using the
4373 splay_tree pointed to by ST (which is really a `splay_tree'),
4374 remaps all local declarations to appropriate replacements. */
4376 static tree
4377 unsave_r (tree *tp, int *walk_subtrees, void *data)
4379 copy_body_data *id = (copy_body_data *) data;
4380 struct pointer_map_t *st = id->decl_map;
4381 tree *n;
4383 /* Only a local declaration (variable or label). */
4384 if ((TREE_CODE (*tp) == VAR_DECL && !TREE_STATIC (*tp))
4385 || TREE_CODE (*tp) == LABEL_DECL)
4387 /* Lookup the declaration. */
4388 n = (tree *) pointer_map_contains (st, *tp);
4390 /* If it's there, remap it. */
4391 if (n)
4392 *tp = *n;
4395 else if (TREE_CODE (*tp) == STATEMENT_LIST)
4396 gcc_unreachable ();
4397 else if (TREE_CODE (*tp) == BIND_EXPR)
4398 copy_bind_expr (tp, walk_subtrees, id);
4399 else if (TREE_CODE (*tp) == SAVE_EXPR
4400 || TREE_CODE (*tp) == TARGET_EXPR)
4401 remap_save_expr (tp, st, walk_subtrees);
4402 else
4404 copy_tree_r (tp, walk_subtrees, NULL);
4406 /* Do whatever unsaving is required. */
4407 unsave_expr_1 (*tp);
4410 /* Keep iterating. */
4411 return NULL_TREE;
4414 /* Copies everything in EXPR and replaces variables, labels
4415 and SAVE_EXPRs local to EXPR. */
4417 tree
4418 unsave_expr_now (tree expr)
4420 copy_body_data id;
4422 /* There's nothing to do for NULL_TREE. */
4423 if (expr == 0)
4424 return expr;
4426 /* Set up ID. */
4427 memset (&id, 0, sizeof (id));
4428 id.src_fn = current_function_decl;
4429 id.dst_fn = current_function_decl;
4430 id.decl_map = pointer_map_create ();
4431 id.debug_map = NULL;
4433 id.copy_decl = copy_decl_no_change;
4434 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
4435 id.transform_new_cfg = false;
4436 id.transform_return_to_modify = false;
4437 id.transform_lang_insert_block = NULL;
4439 /* Walk the tree once to find local labels. */
4440 walk_tree_without_duplicates (&expr, mark_local_for_remap_r, &id);
4442 /* Walk the tree again, copying, remapping, and unsaving. */
4443 walk_tree (&expr, unsave_r, &id, NULL);
4445 /* Clean up. */
4446 pointer_map_destroy (id.decl_map);
4447 if (id.debug_map)
4448 pointer_map_destroy (id.debug_map);
4450 return expr;
4453 /* Called via walk_gimple_seq. If *GSIP points to a GIMPLE_LABEL for a local
4454 label, copies the declaration and enters it in the splay_tree in DATA (which
4455 is really a 'copy_body_data *'. */
4457 static tree
4458 mark_local_labels_stmt (gimple_stmt_iterator *gsip,
4459 bool *handled_ops_p ATTRIBUTE_UNUSED,
4460 struct walk_stmt_info *wi)
4462 copy_body_data *id = (copy_body_data *) wi->info;
4463 gimple stmt = gsi_stmt (*gsip);
4465 if (gimple_code (stmt) == GIMPLE_LABEL)
4467 tree decl = gimple_label_label (stmt);
4469 /* Copy the decl and remember the copy. */
4470 insert_decl_map (id, decl, id->copy_decl (decl, id));
4473 return NULL_TREE;
4477 /* Called via walk_gimple_seq by copy_gimple_seq_and_replace_local.
4478 Using the splay_tree pointed to by ST (which is really a `splay_tree'),
4479 remaps all local declarations to appropriate replacements in gimple
4480 operands. */
4482 static tree
4483 replace_locals_op (tree *tp, int *walk_subtrees, void *data)
4485 struct walk_stmt_info *wi = (struct walk_stmt_info*) data;
4486 copy_body_data *id = (copy_body_data *) wi->info;
4487 struct pointer_map_t *st = id->decl_map;
4488 tree *n;
4489 tree expr = *tp;
4491 /* Only a local declaration (variable or label). */
4492 if ((TREE_CODE (expr) == VAR_DECL
4493 && !TREE_STATIC (expr))
4494 || TREE_CODE (expr) == LABEL_DECL)
4496 /* Lookup the declaration. */
4497 n = (tree *) pointer_map_contains (st, expr);
4499 /* If it's there, remap it. */
4500 if (n)
4501 *tp = *n;
4502 *walk_subtrees = 0;
4504 else if (TREE_CODE (expr) == STATEMENT_LIST
4505 || TREE_CODE (expr) == BIND_EXPR
4506 || TREE_CODE (expr) == SAVE_EXPR)
4507 gcc_unreachable ();
4508 else if (TREE_CODE (expr) == TARGET_EXPR)
4510 /* Don't mess with a TARGET_EXPR that hasn't been expanded.
4511 It's OK for this to happen if it was part of a subtree that
4512 isn't immediately expanded, such as operand 2 of another
4513 TARGET_EXPR. */
4514 if (!TREE_OPERAND (expr, 1))
4516 TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 3);
4517 TREE_OPERAND (expr, 3) = NULL_TREE;
4521 /* Keep iterating. */
4522 return NULL_TREE;
4526 /* Called via walk_gimple_seq by copy_gimple_seq_and_replace_local.
4527 Using the splay_tree pointed to by ST (which is really a `splay_tree'),
4528 remaps all local declarations to appropriate replacements in gimple
4529 statements. */
4531 static tree
4532 replace_locals_stmt (gimple_stmt_iterator *gsip,
4533 bool *handled_ops_p ATTRIBUTE_UNUSED,
4534 struct walk_stmt_info *wi)
4536 copy_body_data *id = (copy_body_data *) wi->info;
4537 gimple stmt = gsi_stmt (*gsip);
4539 if (gimple_code (stmt) == GIMPLE_BIND)
4541 tree block = gimple_bind_block (stmt);
4543 if (block)
4545 remap_block (&block, id);
4546 gimple_bind_set_block (stmt, block);
4549 /* This will remap a lot of the same decls again, but this should be
4550 harmless. */
4551 if (gimple_bind_vars (stmt))
4552 gimple_bind_set_vars (stmt, remap_decls (gimple_bind_vars (stmt), NULL, id));
4555 /* Keep iterating. */
4556 return NULL_TREE;
4560 /* Copies everything in SEQ and replaces variables and labels local to
4561 current_function_decl. */
4563 gimple_seq
4564 copy_gimple_seq_and_replace_locals (gimple_seq seq)
4566 copy_body_data id;
4567 struct walk_stmt_info wi;
4568 struct pointer_set_t *visited;
4569 gimple_seq copy;
4571 /* There's nothing to do for NULL_TREE. */
4572 if (seq == NULL)
4573 return seq;
4575 /* Set up ID. */
4576 memset (&id, 0, sizeof (id));
4577 id.src_fn = current_function_decl;
4578 id.dst_fn = current_function_decl;
4579 id.decl_map = pointer_map_create ();
4580 id.debug_map = NULL;
4582 id.copy_decl = copy_decl_no_change;
4583 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
4584 id.transform_new_cfg = false;
4585 id.transform_return_to_modify = false;
4586 id.transform_lang_insert_block = NULL;
4588 /* Walk the tree once to find local labels. */
4589 memset (&wi, 0, sizeof (wi));
4590 visited = pointer_set_create ();
4591 wi.info = &id;
4592 wi.pset = visited;
4593 walk_gimple_seq (seq, mark_local_labels_stmt, NULL, &wi);
4594 pointer_set_destroy (visited);
4596 copy = gimple_seq_copy (seq);
4598 /* Walk the copy, remapping decls. */
4599 memset (&wi, 0, sizeof (wi));
4600 wi.info = &id;
4601 walk_gimple_seq (copy, replace_locals_stmt, replace_locals_op, &wi);
4603 /* Clean up. */
4604 pointer_map_destroy (id.decl_map);
4605 if (id.debug_map)
4606 pointer_map_destroy (id.debug_map);
4608 return copy;
4612 /* Allow someone to determine if SEARCH is a child of TOP from gdb. */
4614 static tree
4615 debug_find_tree_1 (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED, void *data)
4617 if (*tp == data)
4618 return (tree) data;
4619 else
4620 return NULL;
4623 DEBUG_FUNCTION bool
4624 debug_find_tree (tree top, tree search)
4626 return walk_tree_without_duplicates (&top, debug_find_tree_1, search) != 0;
4630 /* Declare the variables created by the inliner. Add all the variables in
4631 VARS to BIND_EXPR. */
4633 static void
4634 declare_inline_vars (tree block, tree vars)
4636 tree t;
4637 for (t = vars; t; t = DECL_CHAIN (t))
4639 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
4640 gcc_assert (!TREE_STATIC (t) && !TREE_ASM_WRITTEN (t));
4641 add_local_decl (cfun, t);
4644 if (block)
4645 BLOCK_VARS (block) = chainon (BLOCK_VARS (block), vars);
4648 /* Copy NODE (which must be a DECL). The DECL originally was in the FROM_FN,
4649 but now it will be in the TO_FN. PARM_TO_VAR means enable PARM_DECL to
4650 VAR_DECL translation. */
4652 static tree
4653 copy_decl_for_dup_finish (copy_body_data *id, tree decl, tree copy)
4655 /* Don't generate debug information for the copy if we wouldn't have
4656 generated it for the copy either. */
4657 DECL_ARTIFICIAL (copy) = DECL_ARTIFICIAL (decl);
4658 DECL_IGNORED_P (copy) = DECL_IGNORED_P (decl);
4660 /* Set the DECL_ABSTRACT_ORIGIN so the debugging routines know what
4661 declaration inspired this copy. */
4662 DECL_ABSTRACT_ORIGIN (copy) = DECL_ORIGIN (decl);
4664 /* The new variable/label has no RTL, yet. */
4665 if (CODE_CONTAINS_STRUCT (TREE_CODE (copy), TS_DECL_WRTL)
4666 && !TREE_STATIC (copy) && !DECL_EXTERNAL (copy))
4667 SET_DECL_RTL (copy, 0);
4669 /* These args would always appear unused, if not for this. */
4670 TREE_USED (copy) = 1;
4672 /* Set the context for the new declaration. */
4673 if (!DECL_CONTEXT (decl))
4674 /* Globals stay global. */
4676 else if (DECL_CONTEXT (decl) != id->src_fn)
4677 /* Things that weren't in the scope of the function we're inlining
4678 from aren't in the scope we're inlining to, either. */
4680 else if (TREE_STATIC (decl))
4681 /* Function-scoped static variables should stay in the original
4682 function. */
4684 else
4685 /* Ordinary automatic local variables are now in the scope of the
4686 new function. */
4687 DECL_CONTEXT (copy) = id->dst_fn;
4689 if (TREE_CODE (decl) == VAR_DECL
4690 /* C++ clones functions during parsing, before
4691 referenced_vars. */
4692 && gimple_referenced_vars (DECL_STRUCT_FUNCTION (id->src_fn))
4693 && referenced_var_lookup (DECL_STRUCT_FUNCTION (id->src_fn),
4694 DECL_UID (decl)))
4695 add_referenced_var (copy);
4697 return copy;
4700 static tree
4701 copy_decl_to_var (tree decl, copy_body_data *id)
4703 tree copy, type;
4705 gcc_assert (TREE_CODE (decl) == PARM_DECL
4706 || TREE_CODE (decl) == RESULT_DECL);
4708 type = TREE_TYPE (decl);
4710 copy = build_decl (DECL_SOURCE_LOCATION (id->dst_fn),
4711 VAR_DECL, DECL_NAME (decl), type);
4712 if (DECL_PT_UID_SET_P (decl))
4713 SET_DECL_PT_UID (copy, DECL_PT_UID (decl));
4714 TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (decl);
4715 TREE_READONLY (copy) = TREE_READONLY (decl);
4716 TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (decl);
4717 DECL_GIMPLE_REG_P (copy) = DECL_GIMPLE_REG_P (decl);
4719 return copy_decl_for_dup_finish (id, decl, copy);
4722 /* Like copy_decl_to_var, but create a return slot object instead of a
4723 pointer variable for return by invisible reference. */
4725 static tree
4726 copy_result_decl_to_var (tree decl, copy_body_data *id)
4728 tree copy, type;
4730 gcc_assert (TREE_CODE (decl) == PARM_DECL
4731 || TREE_CODE (decl) == RESULT_DECL);
4733 type = TREE_TYPE (decl);
4734 if (DECL_BY_REFERENCE (decl))
4735 type = TREE_TYPE (type);
4737 copy = build_decl (DECL_SOURCE_LOCATION (id->dst_fn),
4738 VAR_DECL, DECL_NAME (decl), type);
4739 if (DECL_PT_UID_SET_P (decl))
4740 SET_DECL_PT_UID (copy, DECL_PT_UID (decl));
4741 TREE_READONLY (copy) = TREE_READONLY (decl);
4742 TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (decl);
4743 if (!DECL_BY_REFERENCE (decl))
4745 TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (decl);
4746 DECL_GIMPLE_REG_P (copy) = DECL_GIMPLE_REG_P (decl);
4749 return copy_decl_for_dup_finish (id, decl, copy);
4752 tree
4753 copy_decl_no_change (tree decl, copy_body_data *id)
4755 tree copy;
4757 copy = copy_node (decl);
4759 /* The COPY is not abstract; it will be generated in DST_FN. */
4760 DECL_ABSTRACT (copy) = 0;
4761 lang_hooks.dup_lang_specific_decl (copy);
4763 /* TREE_ADDRESSABLE isn't used to indicate that a label's address has
4764 been taken; it's for internal bookkeeping in expand_goto_internal. */
4765 if (TREE_CODE (copy) == LABEL_DECL)
4767 TREE_ADDRESSABLE (copy) = 0;
4768 LABEL_DECL_UID (copy) = -1;
4771 return copy_decl_for_dup_finish (id, decl, copy);
4774 static tree
4775 copy_decl_maybe_to_var (tree decl, copy_body_data *id)
4777 if (TREE_CODE (decl) == PARM_DECL || TREE_CODE (decl) == RESULT_DECL)
4778 return copy_decl_to_var (decl, id);
4779 else
4780 return copy_decl_no_change (decl, id);
4783 /* Return a copy of the function's argument tree. */
4784 static tree
4785 copy_arguments_for_versioning (tree orig_parm, copy_body_data * id,
4786 bitmap args_to_skip, tree *vars)
4788 tree arg, *parg;
4789 tree new_parm = NULL;
4790 int i = 0;
4792 parg = &new_parm;
4794 for (arg = orig_parm; arg; arg = DECL_CHAIN (arg), i++)
4795 if (!args_to_skip || !bitmap_bit_p (args_to_skip, i))
4797 tree new_tree = remap_decl (arg, id);
4798 lang_hooks.dup_lang_specific_decl (new_tree);
4799 *parg = new_tree;
4800 parg = &DECL_CHAIN (new_tree);
4802 else if (!pointer_map_contains (id->decl_map, arg))
4804 /* Make an equivalent VAR_DECL. If the argument was used
4805 as temporary variable later in function, the uses will be
4806 replaced by local variable. */
4807 tree var = copy_decl_to_var (arg, id);
4808 add_referenced_var (var);
4809 insert_decl_map (id, arg, var);
4810 /* Declare this new variable. */
4811 DECL_CHAIN (var) = *vars;
4812 *vars = var;
4814 return new_parm;
4817 /* Return a copy of the function's static chain. */
4818 static tree
4819 copy_static_chain (tree static_chain, copy_body_data * id)
4821 tree *chain_copy, *pvar;
4823 chain_copy = &static_chain;
4824 for (pvar = chain_copy; *pvar; pvar = &DECL_CHAIN (*pvar))
4826 tree new_tree = remap_decl (*pvar, id);
4827 lang_hooks.dup_lang_specific_decl (new_tree);
4828 DECL_CHAIN (new_tree) = DECL_CHAIN (*pvar);
4829 *pvar = new_tree;
4831 return static_chain;
4834 /* Return true if the function is allowed to be versioned.
4835 This is a guard for the versioning functionality. */
4837 bool
4838 tree_versionable_function_p (tree fndecl)
4840 return (!lookup_attribute ("noclone", DECL_ATTRIBUTES (fndecl))
4841 && copy_forbidden (DECL_STRUCT_FUNCTION (fndecl), fndecl) == NULL);
4844 /* Delete all unreachable basic blocks and update callgraph.
4845 Doing so is somewhat nontrivial because we need to update all clones and
4846 remove inline function that become unreachable. */
4848 static bool
4849 delete_unreachable_blocks_update_callgraph (copy_body_data *id)
4851 bool changed = false;
4852 basic_block b, next_bb;
4854 find_unreachable_blocks ();
4856 /* Delete all unreachable basic blocks. */
4858 for (b = ENTRY_BLOCK_PTR->next_bb; b != EXIT_BLOCK_PTR; b = next_bb)
4860 next_bb = b->next_bb;
4862 if (!(b->flags & BB_REACHABLE))
4864 gimple_stmt_iterator bsi;
4866 for (bsi = gsi_start_bb (b); !gsi_end_p (bsi); gsi_next (&bsi))
4867 if (gimple_code (gsi_stmt (bsi)) == GIMPLE_CALL)
4869 struct cgraph_edge *e;
4870 struct cgraph_node *node;
4872 if ((e = cgraph_edge (id->dst_node, gsi_stmt (bsi))) != NULL)
4874 if (!e->inline_failed)
4875 cgraph_remove_node_and_inline_clones (e->callee);
4876 else
4877 cgraph_remove_edge (e);
4879 if (id->transform_call_graph_edges == CB_CGE_MOVE_CLONES
4880 && id->dst_node->clones)
4881 for (node = id->dst_node->clones; node != id->dst_node;)
4883 if ((e = cgraph_edge (node, gsi_stmt (bsi))) != NULL)
4885 if (!e->inline_failed)
4886 cgraph_remove_node_and_inline_clones (e->callee);
4887 else
4888 cgraph_remove_edge (e);
4891 if (node->clones)
4892 node = node->clones;
4893 else if (node->next_sibling_clone)
4894 node = node->next_sibling_clone;
4895 else
4897 while (node != id->dst_node && !node->next_sibling_clone)
4898 node = node->clone_of;
4899 if (node != id->dst_node)
4900 node = node->next_sibling_clone;
4904 delete_basic_block (b);
4905 changed = true;
4909 return changed;
4912 /* Update clone info after duplication. */
4914 static void
4915 update_clone_info (copy_body_data * id)
4917 struct cgraph_node *node;
4918 if (!id->dst_node->clones)
4919 return;
4920 for (node = id->dst_node->clones; node != id->dst_node;)
4922 /* First update replace maps to match the new body. */
4923 if (node->clone.tree_map)
4925 unsigned int i;
4926 for (i = 0; i < VEC_length (ipa_replace_map_p, node->clone.tree_map); i++)
4928 struct ipa_replace_map *replace_info;
4929 replace_info = VEC_index (ipa_replace_map_p, node->clone.tree_map, i);
4930 walk_tree (&replace_info->old_tree, copy_tree_body_r, id, NULL);
4931 walk_tree (&replace_info->new_tree, copy_tree_body_r, id, NULL);
4934 if (node->clones)
4935 node = node->clones;
4936 else if (node->next_sibling_clone)
4937 node = node->next_sibling_clone;
4938 else
4940 while (node != id->dst_node && !node->next_sibling_clone)
4941 node = node->clone_of;
4942 if (node != id->dst_node)
4943 node = node->next_sibling_clone;
4948 /* Create a copy of a function's tree.
4949 OLD_DECL and NEW_DECL are FUNCTION_DECL tree nodes
4950 of the original function and the new copied function
4951 respectively. In case we want to replace a DECL
4952 tree with another tree while duplicating the function's
4953 body, TREE_MAP represents the mapping between these
4954 trees. If UPDATE_CLONES is set, the call_stmt fields
4955 of edges of clones of the function will be updated.
4957 If non-NULL ARGS_TO_SKIP determine function parameters to remove
4958 from new version.
4959 If non-NULL BLOCK_TO_COPY determine what basic blocks to copy.
4960 If non_NULL NEW_ENTRY determine new entry BB of the clone.
4962 void
4963 tree_function_versioning (tree old_decl, tree new_decl,
4964 VEC(ipa_replace_map_p,gc)* tree_map,
4965 bool update_clones, bitmap args_to_skip,
4966 bitmap blocks_to_copy, basic_block new_entry)
4968 struct cgraph_node *old_version_node;
4969 struct cgraph_node *new_version_node;
4970 copy_body_data id;
4971 tree p;
4972 unsigned i;
4973 struct ipa_replace_map *replace_info;
4974 basic_block old_entry_block, bb;
4975 VEC (gimple, heap) *init_stmts = VEC_alloc (gimple, heap, 10);
4977 tree old_current_function_decl = current_function_decl;
4978 tree vars = NULL_TREE;
4980 gcc_assert (TREE_CODE (old_decl) == FUNCTION_DECL
4981 && TREE_CODE (new_decl) == FUNCTION_DECL);
4982 DECL_POSSIBLY_INLINED (old_decl) = 1;
4984 old_version_node = cgraph_get_node (old_decl);
4985 gcc_checking_assert (old_version_node);
4986 new_version_node = cgraph_get_node (new_decl);
4987 gcc_checking_assert (new_version_node);
4989 /* Output the inlining info for this abstract function, since it has been
4990 inlined. If we don't do this now, we can lose the information about the
4991 variables in the function when the blocks get blown away as soon as we
4992 remove the cgraph node. */
4993 (*debug_hooks->outlining_inline_function) (old_decl);
4995 DECL_ARTIFICIAL (new_decl) = 1;
4996 DECL_ABSTRACT_ORIGIN (new_decl) = DECL_ORIGIN (old_decl);
4997 DECL_FUNCTION_PERSONALITY (new_decl) = DECL_FUNCTION_PERSONALITY (old_decl);
4999 /* Prepare the data structures for the tree copy. */
5000 memset (&id, 0, sizeof (id));
5002 /* Generate a new name for the new version. */
5003 id.statements_to_fold = pointer_set_create ();
5005 id.decl_map = pointer_map_create ();
5006 id.debug_map = NULL;
5007 id.src_fn = old_decl;
5008 id.dst_fn = new_decl;
5009 id.src_node = old_version_node;
5010 id.dst_node = new_version_node;
5011 id.src_cfun = DECL_STRUCT_FUNCTION (old_decl);
5012 if (id.src_node->ipa_transforms_to_apply)
5014 VEC(ipa_opt_pass,heap) * old_transforms_to_apply = id.dst_node->ipa_transforms_to_apply;
5015 unsigned int i;
5017 id.dst_node->ipa_transforms_to_apply = VEC_copy (ipa_opt_pass, heap,
5018 id.src_node->ipa_transforms_to_apply);
5019 for (i = 0; i < VEC_length (ipa_opt_pass, old_transforms_to_apply); i++)
5020 VEC_safe_push (ipa_opt_pass, heap, id.dst_node->ipa_transforms_to_apply,
5021 VEC_index (ipa_opt_pass,
5022 old_transforms_to_apply,
5023 i));
5026 id.copy_decl = copy_decl_no_change;
5027 id.transform_call_graph_edges
5028 = update_clones ? CB_CGE_MOVE_CLONES : CB_CGE_MOVE;
5029 id.transform_new_cfg = true;
5030 id.transform_return_to_modify = false;
5031 id.transform_lang_insert_block = NULL;
5033 current_function_decl = new_decl;
5034 old_entry_block = ENTRY_BLOCK_PTR_FOR_FUNCTION
5035 (DECL_STRUCT_FUNCTION (old_decl));
5036 initialize_cfun (new_decl, old_decl,
5037 old_entry_block->count);
5038 DECL_STRUCT_FUNCTION (new_decl)->gimple_df->ipa_pta
5039 = id.src_cfun->gimple_df->ipa_pta;
5040 push_cfun (DECL_STRUCT_FUNCTION (new_decl));
5042 /* Copy the function's static chain. */
5043 p = DECL_STRUCT_FUNCTION (old_decl)->static_chain_decl;
5044 if (p)
5045 DECL_STRUCT_FUNCTION (new_decl)->static_chain_decl =
5046 copy_static_chain (DECL_STRUCT_FUNCTION (old_decl)->static_chain_decl,
5047 &id);
5049 /* If there's a tree_map, prepare for substitution. */
5050 if (tree_map)
5051 for (i = 0; i < VEC_length (ipa_replace_map_p, tree_map); i++)
5053 gimple init;
5054 replace_info = VEC_index (ipa_replace_map_p, tree_map, i);
5055 if (replace_info->replace_p)
5057 tree op = replace_info->new_tree;
5058 if (!replace_info->old_tree)
5060 int i = replace_info->parm_num;
5061 tree parm;
5062 for (parm = DECL_ARGUMENTS (old_decl); i; parm = DECL_CHAIN (parm))
5063 i --;
5064 replace_info->old_tree = parm;
5068 STRIP_NOPS (op);
5070 if (TREE_CODE (op) == VIEW_CONVERT_EXPR)
5071 op = TREE_OPERAND (op, 0);
5073 if (TREE_CODE (op) == ADDR_EXPR)
5075 op = TREE_OPERAND (op, 0);
5076 while (handled_component_p (op))
5077 op = TREE_OPERAND (op, 0);
5078 if (TREE_CODE (op) == VAR_DECL)
5079 add_referenced_var (op);
5081 gcc_assert (TREE_CODE (replace_info->old_tree) == PARM_DECL);
5082 init = setup_one_parameter (&id, replace_info->old_tree,
5083 replace_info->new_tree, id.src_fn,
5084 NULL,
5085 &vars);
5086 if (init)
5087 VEC_safe_push (gimple, heap, init_stmts, init);
5090 /* Copy the function's arguments. */
5091 if (DECL_ARGUMENTS (old_decl) != NULL_TREE)
5092 DECL_ARGUMENTS (new_decl) =
5093 copy_arguments_for_versioning (DECL_ARGUMENTS (old_decl), &id,
5094 args_to_skip, &vars);
5096 DECL_INITIAL (new_decl) = remap_blocks (DECL_INITIAL (id.src_fn), &id);
5097 BLOCK_SUPERCONTEXT (DECL_INITIAL (new_decl)) = new_decl;
5099 declare_inline_vars (DECL_INITIAL (new_decl), vars);
5101 if (!VEC_empty (tree, DECL_STRUCT_FUNCTION (old_decl)->local_decls))
5102 /* Add local vars. */
5103 add_local_variables (DECL_STRUCT_FUNCTION (old_decl), cfun, &id, false);
5105 if (DECL_RESULT (old_decl) != NULL_TREE)
5107 tree old_name;
5108 DECL_RESULT (new_decl) = remap_decl (DECL_RESULT (old_decl), &id);
5109 lang_hooks.dup_lang_specific_decl (DECL_RESULT (new_decl));
5110 if (gimple_in_ssa_p (id.src_cfun)
5111 && DECL_BY_REFERENCE (DECL_RESULT (old_decl))
5112 && (old_name
5113 = gimple_default_def (id.src_cfun, DECL_RESULT (old_decl))))
5115 tree new_name = make_ssa_name (DECL_RESULT (new_decl), NULL);
5116 insert_decl_map (&id, old_name, new_name);
5117 SSA_NAME_DEF_STMT (new_name) = gimple_build_nop ();
5118 set_default_def (DECL_RESULT (new_decl), new_name);
5122 /* Copy the Function's body. */
5123 copy_body (&id, old_entry_block->count, REG_BR_PROB_BASE,
5124 ENTRY_BLOCK_PTR, EXIT_BLOCK_PTR, blocks_to_copy, new_entry);
5126 /* Renumber the lexical scoping (non-code) blocks consecutively. */
5127 number_blocks (new_decl);
5129 /* We want to create the BB unconditionally, so that the addition of
5130 debug stmts doesn't affect BB count, which may in the end cause
5131 codegen differences. */
5132 bb = split_edge (single_succ_edge (ENTRY_BLOCK_PTR));
5133 while (VEC_length (gimple, init_stmts))
5134 insert_init_stmt (&id, bb, VEC_pop (gimple, init_stmts));
5135 update_clone_info (&id);
5137 /* Remap the nonlocal_goto_save_area, if any. */
5138 if (cfun->nonlocal_goto_save_area)
5140 struct walk_stmt_info wi;
5142 memset (&wi, 0, sizeof (wi));
5143 wi.info = &id;
5144 walk_tree (&cfun->nonlocal_goto_save_area, remap_gimple_op_r, &wi, NULL);
5147 /* Clean up. */
5148 pointer_map_destroy (id.decl_map);
5149 if (id.debug_map)
5150 pointer_map_destroy (id.debug_map);
5151 free_dominance_info (CDI_DOMINATORS);
5152 free_dominance_info (CDI_POST_DOMINATORS);
5154 fold_marked_statements (0, id.statements_to_fold);
5155 pointer_set_destroy (id.statements_to_fold);
5156 fold_cond_expr_cond ();
5157 delete_unreachable_blocks_update_callgraph (&id);
5158 if (id.dst_node->analyzed)
5159 cgraph_rebuild_references ();
5160 update_ssa (TODO_update_ssa);
5162 /* After partial cloning we need to rescale frequencies, so they are
5163 within proper range in the cloned function. */
5164 if (new_entry)
5166 struct cgraph_edge *e;
5167 rebuild_frequencies ();
5169 new_version_node->count = ENTRY_BLOCK_PTR->count;
5170 for (e = new_version_node->callees; e; e = e->next_callee)
5172 basic_block bb = gimple_bb (e->call_stmt);
5173 e->frequency = compute_call_stmt_bb_frequency (current_function_decl,
5174 bb);
5175 e->count = bb->count;
5177 for (e = new_version_node->indirect_calls; e; e = e->next_callee)
5179 basic_block bb = gimple_bb (e->call_stmt);
5180 e->frequency = compute_call_stmt_bb_frequency (current_function_decl,
5181 bb);
5182 e->count = bb->count;
5186 free_dominance_info (CDI_DOMINATORS);
5187 free_dominance_info (CDI_POST_DOMINATORS);
5189 gcc_assert (!id.debug_stmts);
5190 VEC_free (gimple, heap, init_stmts);
5191 pop_cfun ();
5192 current_function_decl = old_current_function_decl;
5193 gcc_assert (!current_function_decl
5194 || DECL_STRUCT_FUNCTION (current_function_decl) == cfun);
5195 return;
5198 /* EXP is CALL_EXPR present in a GENERIC expression tree. Try to integrate
5199 the callee and return the inlined body on success. */
5201 tree
5202 maybe_inline_call_in_expr (tree exp)
5204 tree fn = get_callee_fndecl (exp);
5206 /* We can only try to inline "const" functions. */
5207 if (fn && TREE_READONLY (fn) && DECL_SAVED_TREE (fn))
5209 struct pointer_map_t *decl_map = pointer_map_create ();
5210 call_expr_arg_iterator iter;
5211 copy_body_data id;
5212 tree param, arg, t;
5214 /* Remap the parameters. */
5215 for (param = DECL_ARGUMENTS (fn), arg = first_call_expr_arg (exp, &iter);
5216 param;
5217 param = DECL_CHAIN (param), arg = next_call_expr_arg (&iter))
5218 *pointer_map_insert (decl_map, param) = arg;
5220 memset (&id, 0, sizeof (id));
5221 id.src_fn = fn;
5222 id.dst_fn = current_function_decl;
5223 id.src_cfun = DECL_STRUCT_FUNCTION (fn);
5224 id.decl_map = decl_map;
5226 id.copy_decl = copy_decl_no_change;
5227 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
5228 id.transform_new_cfg = false;
5229 id.transform_return_to_modify = true;
5230 id.transform_lang_insert_block = false;
5232 /* Make sure not to unshare trees behind the front-end's back
5233 since front-end specific mechanisms may rely on sharing. */
5234 id.regimplify = false;
5235 id.do_not_unshare = true;
5237 /* We're not inside any EH region. */
5238 id.eh_lp_nr = 0;
5240 t = copy_tree_body (&id);
5241 pointer_map_destroy (decl_map);
5243 /* We can only return something suitable for use in a GENERIC
5244 expression tree. */
5245 if (TREE_CODE (t) == MODIFY_EXPR)
5246 return TREE_OPERAND (t, 1);
5249 return NULL_TREE;
5252 /* Duplicate a type, fields and all. */
5254 tree
5255 build_duplicate_type (tree type)
5257 struct copy_body_data id;
5259 memset (&id, 0, sizeof (id));
5260 id.src_fn = current_function_decl;
5261 id.dst_fn = current_function_decl;
5262 id.src_cfun = cfun;
5263 id.decl_map = pointer_map_create ();
5264 id.debug_map = NULL;
5265 id.copy_decl = copy_decl_no_change;
5267 type = remap_type_1 (type, &id);
5269 pointer_map_destroy (id.decl_map);
5270 if (id.debug_map)
5271 pointer_map_destroy (id.debug_map);
5273 TYPE_CANONICAL (type) = type;
5275 return type;