OpenACC: Basic support for #pragma acc parallel.
[official-gcc.git] / gcc / tree-inline.c
blobeeb4992820981f61beca83c55fdc0de40a1ce8b7
1 /* Tree inlining.
2 Copyright (C) 2001-2013 Free Software Foundation, Inc.
3 Contributed by Alexandre Oliva <aoliva@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "diagnostic-core.h"
26 #include "tree.h"
27 #include "tree-inline.h"
28 #include "flags.h"
29 #include "params.h"
30 #include "input.h"
31 #include "insn-config.h"
32 #include "hashtab.h"
33 #include "langhooks.h"
34 #include "basic-block.h"
35 #include "tree-iterator.h"
36 #include "intl.h"
37 #include "gimple.h"
38 #include "gimple-ssa.h"
39 #include "tree-cfg.h"
40 #include "tree-phinodes.h"
41 #include "ssa-iterators.h"
42 #include "tree-ssanames.h"
43 #include "tree-into-ssa.h"
44 #include "tree-dfa.h"
45 #include "tree-ssa.h"
46 #include "function.h"
47 #include "tree-pretty-print.h"
48 #include "except.h"
49 #include "debug.h"
50 #include "pointer-set.h"
51 #include "ipa-prop.h"
52 #include "value-prof.h"
53 #include "tree-pass.h"
54 #include "target.h"
55 #include "cfgloop.h"
57 #include "rtl.h" /* FIXME: For asm_str_count. */
59 /* I'm not real happy about this, but we need to handle gimple and
60 non-gimple trees. */
62 /* Inlining, Cloning, Versioning, Parallelization
64 Inlining: a function body is duplicated, but the PARM_DECLs are
65 remapped into VAR_DECLs, and non-void RETURN_EXPRs become
66 MODIFY_EXPRs that store to a dedicated returned-value variable.
67 The duplicated eh_region info of the copy will later be appended
68 to the info for the caller; the eh_region info in copied throwing
69 statements and RESX statements are adjusted accordingly.
71 Cloning: (only in C++) We have one body for a con/de/structor, and
72 multiple function decls, each with a unique parameter list.
73 Duplicate the body, using the given splay tree; some parameters
74 will become constants (like 0 or 1).
76 Versioning: a function body is duplicated and the result is a new
77 function rather than into blocks of an existing function as with
78 inlining. Some parameters will become constants.
80 Parallelization: a region of a function is duplicated resulting in
81 a new function. Variables may be replaced with complex expressions
82 to enable shared variable semantics.
84 All of these will simultaneously lookup any callgraph edges. If
85 we're going to inline the duplicated function body, and the given
86 function has some cloned callgraph nodes (one for each place this
87 function will be inlined) those callgraph edges will be duplicated.
88 If we're cloning the body, those callgraph edges will be
89 updated to point into the new body. (Note that the original
90 callgraph node and edge list will not be altered.)
92 See the CALL_EXPR handling case in copy_tree_body_r (). */
94 /* To Do:
96 o In order to make inlining-on-trees work, we pessimized
97 function-local static constants. In particular, they are now
98 always output, even when not addressed. Fix this by treating
99 function-local static constants just like global static
100 constants; the back-end already knows not to output them if they
101 are not needed.
103 o Provide heuristics to clamp inlining of recursive template
104 calls? */
107 /* Weights that estimate_num_insns uses to estimate the size of the
108 produced code. */
110 eni_weights eni_size_weights;
112 /* Weights that estimate_num_insns uses to estimate the time necessary
113 to execute the produced code. */
115 eni_weights eni_time_weights;
117 /* Prototypes. */
119 static tree declare_return_variable (copy_body_data *, tree, tree, basic_block);
120 static void remap_block (tree *, copy_body_data *);
121 static void copy_bind_expr (tree *, int *, copy_body_data *);
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, var;
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 if (SSA_NAME_IS_DEFAULT_DEF (name)
192 && TREE_CODE (SSA_NAME_VAR (name)) == PARM_DECL
193 && id->entry_bb == NULL
194 && single_succ_p (ENTRY_BLOCK_PTR))
196 tree vexpr = make_node (DEBUG_EXPR_DECL);
197 gimple def_temp;
198 gimple_stmt_iterator gsi;
199 tree val = SSA_NAME_VAR (name);
201 n = (tree *) pointer_map_contains (id->decl_map, val);
202 if (n != NULL)
203 val = *n;
204 if (TREE_CODE (val) != PARM_DECL)
206 processing_debug_stmt = -1;
207 return name;
209 def_temp = gimple_build_debug_source_bind (vexpr, val, NULL);
210 DECL_ARTIFICIAL (vexpr) = 1;
211 TREE_TYPE (vexpr) = TREE_TYPE (name);
212 DECL_MODE (vexpr) = DECL_MODE (SSA_NAME_VAR (name));
213 gsi = gsi_after_labels (single_succ (ENTRY_BLOCK_PTR));
214 gsi_insert_before (&gsi, def_temp, GSI_SAME_STMT);
215 return vexpr;
218 processing_debug_stmt = -1;
219 return name;
222 /* Remap anonymous SSA names or SSA names of anonymous decls. */
223 var = SSA_NAME_VAR (name);
224 if (!var
225 || (!SSA_NAME_IS_DEFAULT_DEF (name)
226 && TREE_CODE (var) == VAR_DECL
227 && !VAR_DECL_IS_VIRTUAL_OPERAND (var)
228 && DECL_ARTIFICIAL (var)
229 && DECL_IGNORED_P (var)
230 && !DECL_NAME (var)))
232 struct ptr_info_def *pi;
233 new_tree = make_ssa_name (remap_type (TREE_TYPE (name), id), NULL);
234 if (!var && SSA_NAME_IDENTIFIER (name))
235 SET_SSA_NAME_VAR_OR_IDENTIFIER (new_tree, SSA_NAME_IDENTIFIER (name));
236 insert_decl_map (id, name, new_tree);
237 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (new_tree)
238 = SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name);
239 /* At least IPA points-to info can be directly transferred. */
240 if (id->src_cfun->gimple_df
241 && id->src_cfun->gimple_df->ipa_pta
242 && (pi = SSA_NAME_PTR_INFO (name))
243 && !pi->pt.anything)
245 struct ptr_info_def *new_pi = get_ptr_info (new_tree);
246 new_pi->pt = pi->pt;
248 return new_tree;
251 /* Do not set DEF_STMT yet as statement is not copied yet. We do that
252 in copy_bb. */
253 new_tree = remap_decl (var, id);
255 /* We might've substituted constant or another SSA_NAME for
256 the variable.
258 Replace the SSA name representing RESULT_DECL by variable during
259 inlining: this saves us from need to introduce PHI node in a case
260 return value is just partly initialized. */
261 if ((TREE_CODE (new_tree) == VAR_DECL || TREE_CODE (new_tree) == PARM_DECL)
262 && (!SSA_NAME_VAR (name)
263 || TREE_CODE (SSA_NAME_VAR (name)) != RESULT_DECL
264 || !id->transform_return_to_modify))
266 struct ptr_info_def *pi;
267 new_tree = make_ssa_name (new_tree, NULL);
268 insert_decl_map (id, name, new_tree);
269 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (new_tree)
270 = SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name);
271 /* At least IPA points-to info can be directly transferred. */
272 if (id->src_cfun->gimple_df
273 && id->src_cfun->gimple_df->ipa_pta
274 && (pi = SSA_NAME_PTR_INFO (name))
275 && !pi->pt.anything)
277 struct ptr_info_def *new_pi = get_ptr_info (new_tree);
278 new_pi->pt = pi->pt;
280 if (SSA_NAME_IS_DEFAULT_DEF (name))
282 /* By inlining function having uninitialized variable, we might
283 extend the lifetime (variable might get reused). This cause
284 ICE in the case we end up extending lifetime of SSA name across
285 abnormal edge, but also increase register pressure.
287 We simply initialize all uninitialized vars by 0 except
288 for case we are inlining to very first BB. We can avoid
289 this for all BBs that are not inside strongly connected
290 regions of the CFG, but this is expensive to test. */
291 if (id->entry_bb
292 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name)
293 && (!SSA_NAME_VAR (name)
294 || TREE_CODE (SSA_NAME_VAR (name)) != PARM_DECL)
295 && (id->entry_bb != EDGE_SUCC (ENTRY_BLOCK_PTR, 0)->dest
296 || EDGE_COUNT (id->entry_bb->preds) != 1))
298 gimple_stmt_iterator gsi = gsi_last_bb (id->entry_bb);
299 gimple init_stmt;
300 tree zero = build_zero_cst (TREE_TYPE (new_tree));
302 init_stmt = gimple_build_assign (new_tree, zero);
303 gsi_insert_after (&gsi, init_stmt, GSI_NEW_STMT);
304 SSA_NAME_IS_DEFAULT_DEF (new_tree) = 0;
306 else
308 SSA_NAME_DEF_STMT (new_tree) = gimple_build_nop ();
309 set_ssa_default_def (cfun, SSA_NAME_VAR (new_tree), new_tree);
313 else
314 insert_decl_map (id, name, new_tree);
315 return new_tree;
318 /* Remap DECL during the copying of the BLOCK tree for the function. */
320 tree
321 remap_decl (tree decl, copy_body_data *id)
323 tree *n;
325 /* We only remap local variables in the current function. */
327 /* See if we have remapped this declaration. */
329 n = (tree *) pointer_map_contains (id->decl_map, decl);
331 if (!n && processing_debug_stmt)
333 processing_debug_stmt = -1;
334 return decl;
337 /* If we didn't already have an equivalent for this declaration,
338 create one now. */
339 if (!n)
341 /* Make a copy of the variable or label. */
342 tree t = id->copy_decl (decl, id);
344 /* Remember it, so that if we encounter this local entity again
345 we can reuse this copy. Do this early because remap_type may
346 need this decl for TYPE_STUB_DECL. */
347 insert_decl_map (id, decl, t);
349 if (!DECL_P (t))
350 return t;
352 /* Remap types, if necessary. */
353 TREE_TYPE (t) = remap_type (TREE_TYPE (t), id);
354 if (TREE_CODE (t) == TYPE_DECL)
355 DECL_ORIGINAL_TYPE (t) = remap_type (DECL_ORIGINAL_TYPE (t), id);
357 /* Remap sizes as necessary. */
358 walk_tree (&DECL_SIZE (t), copy_tree_body_r, id, NULL);
359 walk_tree (&DECL_SIZE_UNIT (t), copy_tree_body_r, id, NULL);
361 /* If fields, do likewise for offset and qualifier. */
362 if (TREE_CODE (t) == FIELD_DECL)
364 walk_tree (&DECL_FIELD_OFFSET (t), copy_tree_body_r, id, NULL);
365 if (TREE_CODE (DECL_CONTEXT (t)) == QUAL_UNION_TYPE)
366 walk_tree (&DECL_QUALIFIER (t), copy_tree_body_r, id, NULL);
369 return t;
372 if (id->do_not_unshare)
373 return *n;
374 else
375 return unshare_expr (*n);
378 static tree
379 remap_type_1 (tree type, copy_body_data *id)
381 tree new_tree, t;
383 /* We do need a copy. build and register it now. If this is a pointer or
384 reference type, remap the designated type and make a new pointer or
385 reference type. */
386 if (TREE_CODE (type) == POINTER_TYPE)
388 new_tree = build_pointer_type_for_mode (remap_type (TREE_TYPE (type), id),
389 TYPE_MODE (type),
390 TYPE_REF_CAN_ALIAS_ALL (type));
391 if (TYPE_ATTRIBUTES (type) || TYPE_QUALS (type))
392 new_tree = build_type_attribute_qual_variant (new_tree,
393 TYPE_ATTRIBUTES (type),
394 TYPE_QUALS (type));
395 insert_decl_map (id, type, new_tree);
396 return new_tree;
398 else if (TREE_CODE (type) == REFERENCE_TYPE)
400 new_tree = build_reference_type_for_mode (remap_type (TREE_TYPE (type), id),
401 TYPE_MODE (type),
402 TYPE_REF_CAN_ALIAS_ALL (type));
403 if (TYPE_ATTRIBUTES (type) || TYPE_QUALS (type))
404 new_tree = build_type_attribute_qual_variant (new_tree,
405 TYPE_ATTRIBUTES (type),
406 TYPE_QUALS (type));
407 insert_decl_map (id, type, new_tree);
408 return new_tree;
410 else
411 new_tree = copy_node (type);
413 insert_decl_map (id, type, new_tree);
415 /* This is a new type, not a copy of an old type. Need to reassociate
416 variants. We can handle everything except the main variant lazily. */
417 t = TYPE_MAIN_VARIANT (type);
418 if (type != t)
420 t = remap_type (t, id);
421 TYPE_MAIN_VARIANT (new_tree) = t;
422 TYPE_NEXT_VARIANT (new_tree) = TYPE_NEXT_VARIANT (t);
423 TYPE_NEXT_VARIANT (t) = new_tree;
425 else
427 TYPE_MAIN_VARIANT (new_tree) = new_tree;
428 TYPE_NEXT_VARIANT (new_tree) = NULL;
431 if (TYPE_STUB_DECL (type))
432 TYPE_STUB_DECL (new_tree) = remap_decl (TYPE_STUB_DECL (type), id);
434 /* Lazily create pointer and reference types. */
435 TYPE_POINTER_TO (new_tree) = NULL;
436 TYPE_REFERENCE_TO (new_tree) = NULL;
438 switch (TREE_CODE (new_tree))
440 case INTEGER_TYPE:
441 case REAL_TYPE:
442 case FIXED_POINT_TYPE:
443 case ENUMERAL_TYPE:
444 case BOOLEAN_TYPE:
445 t = TYPE_MIN_VALUE (new_tree);
446 if (t && TREE_CODE (t) != INTEGER_CST)
447 walk_tree (&TYPE_MIN_VALUE (new_tree), copy_tree_body_r, id, NULL);
449 t = TYPE_MAX_VALUE (new_tree);
450 if (t && TREE_CODE (t) != INTEGER_CST)
451 walk_tree (&TYPE_MAX_VALUE (new_tree), copy_tree_body_r, id, NULL);
452 return new_tree;
454 case FUNCTION_TYPE:
455 TREE_TYPE (new_tree) = remap_type (TREE_TYPE (new_tree), id);
456 walk_tree (&TYPE_ARG_TYPES (new_tree), copy_tree_body_r, id, NULL);
457 return new_tree;
459 case ARRAY_TYPE:
460 TREE_TYPE (new_tree) = remap_type (TREE_TYPE (new_tree), id);
461 TYPE_DOMAIN (new_tree) = remap_type (TYPE_DOMAIN (new_tree), id);
462 break;
464 case RECORD_TYPE:
465 case UNION_TYPE:
466 case QUAL_UNION_TYPE:
468 tree f, nf = NULL;
470 for (f = TYPE_FIELDS (new_tree); f ; f = DECL_CHAIN (f))
472 t = remap_decl (f, id);
473 DECL_CONTEXT (t) = new_tree;
474 DECL_CHAIN (t) = nf;
475 nf = t;
477 TYPE_FIELDS (new_tree) = nreverse (nf);
479 break;
481 case OFFSET_TYPE:
482 default:
483 /* Shouldn't have been thought variable sized. */
484 gcc_unreachable ();
487 walk_tree (&TYPE_SIZE (new_tree), copy_tree_body_r, id, NULL);
488 walk_tree (&TYPE_SIZE_UNIT (new_tree), copy_tree_body_r, id, NULL);
490 return new_tree;
493 tree
494 remap_type (tree type, copy_body_data *id)
496 tree *node;
497 tree tmp;
499 if (type == NULL)
500 return type;
502 /* See if we have remapped this type. */
503 node = (tree *) pointer_map_contains (id->decl_map, type);
504 if (node)
505 return *node;
507 /* The type only needs remapping if it's variably modified. */
508 if (! variably_modified_type_p (type, id->src_fn))
510 insert_decl_map (id, type, type);
511 return type;
514 id->remapping_type_depth++;
515 tmp = remap_type_1 (type, id);
516 id->remapping_type_depth--;
518 return tmp;
521 /* Decide if DECL can be put into BLOCK_NONLOCAL_VARs. */
523 static bool
524 can_be_nonlocal (tree decl, copy_body_data *id)
526 /* We can not duplicate function decls. */
527 if (TREE_CODE (decl) == FUNCTION_DECL)
528 return true;
530 /* Local static vars must be non-local or we get multiple declaration
531 problems. */
532 if (TREE_CODE (decl) == VAR_DECL
533 && !auto_var_in_fn_p (decl, id->src_fn))
534 return true;
536 return false;
539 static tree
540 remap_decls (tree decls, vec<tree, va_gc> **nonlocalized_list,
541 copy_body_data *id)
543 tree old_var;
544 tree new_decls = NULL_TREE;
546 /* Remap its variables. */
547 for (old_var = decls; old_var; old_var = DECL_CHAIN (old_var))
549 tree new_var;
551 if (can_be_nonlocal (old_var, id))
553 /* We need to add this variable to the local decls as otherwise
554 nothing else will do so. */
555 if (TREE_CODE (old_var) == VAR_DECL
556 && ! DECL_EXTERNAL (old_var))
557 add_local_decl (cfun, old_var);
558 if ((!optimize || debug_info_level > DINFO_LEVEL_TERSE)
559 && !DECL_IGNORED_P (old_var)
560 && nonlocalized_list)
561 vec_safe_push (*nonlocalized_list, old_var);
562 continue;
565 /* Remap the variable. */
566 new_var = remap_decl (old_var, id);
568 /* If we didn't remap this variable, we can't mess with its
569 TREE_CHAIN. If we remapped this variable to the return slot, it's
570 already declared somewhere else, so don't declare it here. */
572 if (new_var == id->retvar)
574 else if (!new_var)
576 if ((!optimize || debug_info_level > DINFO_LEVEL_TERSE)
577 && !DECL_IGNORED_P (old_var)
578 && nonlocalized_list)
579 vec_safe_push (*nonlocalized_list, old_var);
581 else
583 gcc_assert (DECL_P (new_var));
584 DECL_CHAIN (new_var) = new_decls;
585 new_decls = new_var;
587 /* Also copy value-expressions. */
588 if (TREE_CODE (new_var) == VAR_DECL
589 && DECL_HAS_VALUE_EXPR_P (new_var))
591 tree tem = DECL_VALUE_EXPR (new_var);
592 bool old_regimplify = id->regimplify;
593 id->remapping_type_depth++;
594 walk_tree (&tem, copy_tree_body_r, id, NULL);
595 id->remapping_type_depth--;
596 id->regimplify = old_regimplify;
597 SET_DECL_VALUE_EXPR (new_var, tem);
602 return nreverse (new_decls);
605 /* Copy the BLOCK to contain remapped versions of the variables
606 therein. And hook the new block into the block-tree. */
608 static void
609 remap_block (tree *block, copy_body_data *id)
611 tree old_block;
612 tree new_block;
614 /* Make the new block. */
615 old_block = *block;
616 new_block = make_node (BLOCK);
617 TREE_USED (new_block) = TREE_USED (old_block);
618 BLOCK_ABSTRACT_ORIGIN (new_block) = old_block;
619 BLOCK_SOURCE_LOCATION (new_block) = BLOCK_SOURCE_LOCATION (old_block);
620 BLOCK_NONLOCALIZED_VARS (new_block)
621 = vec_safe_copy (BLOCK_NONLOCALIZED_VARS (old_block));
622 *block = new_block;
624 /* Remap its variables. */
625 BLOCK_VARS (new_block) = remap_decls (BLOCK_VARS (old_block),
626 &BLOCK_NONLOCALIZED_VARS (new_block),
627 id);
629 if (id->transform_lang_insert_block)
630 id->transform_lang_insert_block (new_block);
632 /* Remember the remapped block. */
633 insert_decl_map (id, old_block, new_block);
636 /* Copy the whole block tree and root it in id->block. */
637 static tree
638 remap_blocks (tree block, copy_body_data *id)
640 tree t;
641 tree new_tree = block;
643 if (!block)
644 return NULL;
646 remap_block (&new_tree, id);
647 gcc_assert (new_tree != block);
648 for (t = BLOCK_SUBBLOCKS (block); t ; t = BLOCK_CHAIN (t))
649 prepend_lexical_block (new_tree, remap_blocks (t, id));
650 /* Blocks are in arbitrary order, but make things slightly prettier and do
651 not swap order when producing a copy. */
652 BLOCK_SUBBLOCKS (new_tree) = blocks_nreverse (BLOCK_SUBBLOCKS (new_tree));
653 return new_tree;
656 /* Remap the block tree rooted at BLOCK to nothing. */
657 static void
658 remap_blocks_to_null (tree block, copy_body_data *id)
660 tree t;
661 insert_decl_map (id, block, NULL_TREE);
662 for (t = BLOCK_SUBBLOCKS (block); t ; t = BLOCK_CHAIN (t))
663 remap_blocks_to_null (t, id);
666 static void
667 copy_statement_list (tree *tp)
669 tree_stmt_iterator oi, ni;
670 tree new_tree;
672 new_tree = alloc_stmt_list ();
673 ni = tsi_start (new_tree);
674 oi = tsi_start (*tp);
675 TREE_TYPE (new_tree) = TREE_TYPE (*tp);
676 *tp = new_tree;
678 for (; !tsi_end_p (oi); tsi_next (&oi))
680 tree stmt = tsi_stmt (oi);
681 if (TREE_CODE (stmt) == STATEMENT_LIST)
682 /* This copy is not redundant; tsi_link_after will smash this
683 STATEMENT_LIST into the end of the one we're building, and we
684 don't want to do that with the original. */
685 copy_statement_list (&stmt);
686 tsi_link_after (&ni, stmt, TSI_CONTINUE_LINKING);
690 static void
691 copy_bind_expr (tree *tp, int *walk_subtrees, copy_body_data *id)
693 tree block = BIND_EXPR_BLOCK (*tp);
694 /* Copy (and replace) the statement. */
695 copy_tree_r (tp, walk_subtrees, NULL);
696 if (block)
698 remap_block (&block, id);
699 BIND_EXPR_BLOCK (*tp) = block;
702 if (BIND_EXPR_VARS (*tp))
703 /* This will remap a lot of the same decls again, but this should be
704 harmless. */
705 BIND_EXPR_VARS (*tp) = remap_decls (BIND_EXPR_VARS (*tp), NULL, id);
709 /* Create a new gimple_seq by remapping all the statements in BODY
710 using the inlining information in ID. */
712 static gimple_seq
713 remap_gimple_seq (gimple_seq body, copy_body_data *id)
715 gimple_stmt_iterator si;
716 gimple_seq new_body = NULL;
718 for (si = gsi_start (body); !gsi_end_p (si); gsi_next (&si))
720 gimple new_stmt = remap_gimple_stmt (gsi_stmt (si), id);
721 gimple_seq_add_stmt (&new_body, new_stmt);
724 return new_body;
728 /* Copy a GIMPLE_BIND statement STMT, remapping all the symbols in its
729 block using the mapping information in ID. */
731 static gimple
732 copy_gimple_bind (gimple stmt, copy_body_data *id)
734 gimple new_bind;
735 tree new_block, new_vars;
736 gimple_seq body, new_body;
738 /* Copy the statement. Note that we purposely don't use copy_stmt
739 here because we need to remap statements as we copy. */
740 body = gimple_bind_body (stmt);
741 new_body = remap_gimple_seq (body, id);
743 new_block = gimple_bind_block (stmt);
744 if (new_block)
745 remap_block (&new_block, id);
747 /* This will remap a lot of the same decls again, but this should be
748 harmless. */
749 new_vars = gimple_bind_vars (stmt);
750 if (new_vars)
751 new_vars = remap_decls (new_vars, NULL, id);
753 new_bind = gimple_build_bind (new_vars, new_body, new_block);
755 return new_bind;
758 /* Return true if DECL is a parameter or a SSA_NAME for a parameter. */
760 static bool
761 is_parm (tree decl)
763 if (TREE_CODE (decl) == SSA_NAME)
765 decl = SSA_NAME_VAR (decl);
766 if (!decl)
767 return false;
770 return (TREE_CODE (decl) == PARM_DECL);
773 /* Remap the GIMPLE operand pointed to by *TP. DATA is really a
774 'struct walk_stmt_info *'. DATA->INFO is a 'copy_body_data *'.
775 WALK_SUBTREES is used to indicate walk_gimple_op whether to keep
776 recursing into the children nodes of *TP. */
778 static tree
779 remap_gimple_op_r (tree *tp, int *walk_subtrees, void *data)
781 struct walk_stmt_info *wi_p = (struct walk_stmt_info *) data;
782 copy_body_data *id = (copy_body_data *) wi_p->info;
783 tree fn = id->src_fn;
785 if (TREE_CODE (*tp) == SSA_NAME)
787 *tp = remap_ssa_name (*tp, id);
788 *walk_subtrees = 0;
789 return NULL;
791 else if (auto_var_in_fn_p (*tp, fn))
793 /* Local variables and labels need to be replaced by equivalent
794 variables. We don't want to copy static variables; there's
795 only one of those, no matter how many times we inline the
796 containing function. Similarly for globals from an outer
797 function. */
798 tree new_decl;
800 /* Remap the declaration. */
801 new_decl = remap_decl (*tp, id);
802 gcc_assert (new_decl);
803 /* Replace this variable with the copy. */
804 STRIP_TYPE_NOPS (new_decl);
805 /* ??? The C++ frontend uses void * pointer zero to initialize
806 any other type. This confuses the middle-end type verification.
807 As cloned bodies do not go through gimplification again the fixup
808 there doesn't trigger. */
809 if (TREE_CODE (new_decl) == INTEGER_CST
810 && !useless_type_conversion_p (TREE_TYPE (*tp), TREE_TYPE (new_decl)))
811 new_decl = fold_convert (TREE_TYPE (*tp), new_decl);
812 *tp = new_decl;
813 *walk_subtrees = 0;
815 else if (TREE_CODE (*tp) == STATEMENT_LIST)
816 gcc_unreachable ();
817 else if (TREE_CODE (*tp) == SAVE_EXPR)
818 gcc_unreachable ();
819 else if (TREE_CODE (*tp) == LABEL_DECL
820 && (!DECL_CONTEXT (*tp)
821 || decl_function_context (*tp) == id->src_fn))
822 /* These may need to be remapped for EH handling. */
823 *tp = remap_decl (*tp, id);
824 else if (TREE_CODE (*tp) == FIELD_DECL)
826 /* If the enclosing record type is variably_modified_type_p, the field
827 has already been remapped. Otherwise, it need not be. */
828 tree *n = (tree *) pointer_map_contains (id->decl_map, *tp);
829 if (n)
830 *tp = *n;
831 *walk_subtrees = 0;
833 else if (TYPE_P (*tp))
834 /* Types may need remapping as well. */
835 *tp = remap_type (*tp, id);
836 else if (CONSTANT_CLASS_P (*tp))
838 /* If this is a constant, we have to copy the node iff the type
839 will be remapped. copy_tree_r will not copy a constant. */
840 tree new_type = remap_type (TREE_TYPE (*tp), id);
842 if (new_type == TREE_TYPE (*tp))
843 *walk_subtrees = 0;
845 else if (TREE_CODE (*tp) == INTEGER_CST)
846 *tp = build_int_cst_wide (new_type, TREE_INT_CST_LOW (*tp),
847 TREE_INT_CST_HIGH (*tp));
848 else
850 *tp = copy_node (*tp);
851 TREE_TYPE (*tp) = new_type;
854 else
856 /* Otherwise, just copy the node. Note that copy_tree_r already
857 knows not to copy VAR_DECLs, etc., so this is safe. */
859 if (TREE_CODE (*tp) == MEM_REF)
861 /* We need to re-canonicalize MEM_REFs from inline substitutions
862 that can happen when a pointer argument is an ADDR_EXPR.
863 Recurse here manually to allow that. */
864 tree ptr = TREE_OPERAND (*tp, 0);
865 tree type = remap_type (TREE_TYPE (*tp), id);
866 tree old = *tp;
867 walk_tree (&ptr, remap_gimple_op_r, data, NULL);
868 *tp = fold_build2 (MEM_REF, type, ptr, TREE_OPERAND (*tp, 1));
869 TREE_THIS_VOLATILE (*tp) = TREE_THIS_VOLATILE (old);
870 TREE_SIDE_EFFECTS (*tp) = TREE_SIDE_EFFECTS (old);
871 TREE_NO_WARNING (*tp) = TREE_NO_WARNING (old);
872 /* We cannot propagate the TREE_THIS_NOTRAP flag if we have
873 remapped a parameter as the property might be valid only
874 for the parameter itself. */
875 if (TREE_THIS_NOTRAP (old)
876 && (!is_parm (TREE_OPERAND (old, 0))
877 || (!id->transform_parameter && is_parm (ptr))))
878 TREE_THIS_NOTRAP (*tp) = 1;
879 *walk_subtrees = 0;
880 return NULL;
883 /* Here is the "usual case". Copy this tree node, and then
884 tweak some special cases. */
885 copy_tree_r (tp, walk_subtrees, NULL);
887 if (TREE_CODE (*tp) != OMP_CLAUSE)
888 TREE_TYPE (*tp) = remap_type (TREE_TYPE (*tp), id);
890 if (TREE_CODE (*tp) == TARGET_EXPR && TREE_OPERAND (*tp, 3))
892 /* The copied TARGET_EXPR has never been expanded, even if the
893 original node was expanded already. */
894 TREE_OPERAND (*tp, 1) = TREE_OPERAND (*tp, 3);
895 TREE_OPERAND (*tp, 3) = NULL_TREE;
897 else if (TREE_CODE (*tp) == ADDR_EXPR)
899 /* Variable substitution need not be simple. In particular,
900 the MEM_REF substitution above. Make sure that
901 TREE_CONSTANT and friends are up-to-date. */
902 int invariant = is_gimple_min_invariant (*tp);
903 walk_tree (&TREE_OPERAND (*tp, 0), remap_gimple_op_r, data, NULL);
904 recompute_tree_invariant_for_addr_expr (*tp);
906 /* If this used to be invariant, but is not any longer,
907 then regimplification is probably needed. */
908 if (invariant && !is_gimple_min_invariant (*tp))
909 id->regimplify = true;
911 *walk_subtrees = 0;
915 /* Update the TREE_BLOCK for the cloned expr. */
916 if (EXPR_P (*tp))
918 tree new_block = id->remapping_type_depth == 0 ? id->block : NULL;
919 tree old_block = TREE_BLOCK (*tp);
920 if (old_block)
922 tree *n;
923 n = (tree *) pointer_map_contains (id->decl_map,
924 TREE_BLOCK (*tp));
925 if (n)
926 new_block = *n;
928 TREE_SET_BLOCK (*tp, new_block);
931 /* Keep iterating. */
932 return NULL_TREE;
936 /* Called from copy_body_id via walk_tree. DATA is really a
937 `copy_body_data *'. */
939 tree
940 copy_tree_body_r (tree *tp, int *walk_subtrees, void *data)
942 copy_body_data *id = (copy_body_data *) data;
943 tree fn = id->src_fn;
944 tree new_block;
946 /* Begin by recognizing trees that we'll completely rewrite for the
947 inlining context. Our output for these trees is completely
948 different from out input (e.g. RETURN_EXPR is deleted, and morphs
949 into an edge). Further down, we'll handle trees that get
950 duplicated and/or tweaked. */
952 /* When requested, RETURN_EXPRs should be transformed to just the
953 contained MODIFY_EXPR. The branch semantics of the return will
954 be handled elsewhere by manipulating the CFG rather than a statement. */
955 if (TREE_CODE (*tp) == RETURN_EXPR && id->transform_return_to_modify)
957 tree assignment = TREE_OPERAND (*tp, 0);
959 /* If we're returning something, just turn that into an
960 assignment into the equivalent of the original RESULT_DECL.
961 If the "assignment" is just the result decl, the result
962 decl has already been set (e.g. a recent "foo (&result_decl,
963 ...)"); just toss the entire RETURN_EXPR. */
964 if (assignment && TREE_CODE (assignment) == MODIFY_EXPR)
966 /* Replace the RETURN_EXPR with (a copy of) the
967 MODIFY_EXPR hanging underneath. */
968 *tp = copy_node (assignment);
970 else /* Else the RETURN_EXPR returns no value. */
972 *tp = NULL;
973 return (tree) (void *)1;
976 else if (TREE_CODE (*tp) == SSA_NAME)
978 *tp = remap_ssa_name (*tp, id);
979 *walk_subtrees = 0;
980 return NULL;
983 /* Local variables and labels need to be replaced by equivalent
984 variables. We don't want to copy static variables; there's only
985 one of those, no matter how many times we inline the containing
986 function. Similarly for globals from an outer function. */
987 else if (auto_var_in_fn_p (*tp, fn))
989 tree new_decl;
991 /* Remap the declaration. */
992 new_decl = remap_decl (*tp, id);
993 gcc_assert (new_decl);
994 /* Replace this variable with the copy. */
995 STRIP_TYPE_NOPS (new_decl);
996 *tp = new_decl;
997 *walk_subtrees = 0;
999 else if (TREE_CODE (*tp) == STATEMENT_LIST)
1000 copy_statement_list (tp);
1001 else if (TREE_CODE (*tp) == SAVE_EXPR
1002 || TREE_CODE (*tp) == TARGET_EXPR)
1003 remap_save_expr (tp, id->decl_map, walk_subtrees);
1004 else if (TREE_CODE (*tp) == LABEL_DECL
1005 && (! DECL_CONTEXT (*tp)
1006 || decl_function_context (*tp) == id->src_fn))
1007 /* These may need to be remapped for EH handling. */
1008 *tp = remap_decl (*tp, id);
1009 else if (TREE_CODE (*tp) == BIND_EXPR)
1010 copy_bind_expr (tp, walk_subtrees, id);
1011 /* Types may need remapping as well. */
1012 else if (TYPE_P (*tp))
1013 *tp = remap_type (*tp, id);
1015 /* If this is a constant, we have to copy the node iff the type will be
1016 remapped. copy_tree_r will not copy a constant. */
1017 else if (CONSTANT_CLASS_P (*tp))
1019 tree new_type = remap_type (TREE_TYPE (*tp), id);
1021 if (new_type == TREE_TYPE (*tp))
1022 *walk_subtrees = 0;
1024 else if (TREE_CODE (*tp) == INTEGER_CST)
1025 *tp = build_int_cst_wide (new_type, TREE_INT_CST_LOW (*tp),
1026 TREE_INT_CST_HIGH (*tp));
1027 else
1029 *tp = copy_node (*tp);
1030 TREE_TYPE (*tp) = new_type;
1034 /* Otherwise, just copy the node. Note that copy_tree_r already
1035 knows not to copy VAR_DECLs, etc., so this is safe. */
1036 else
1038 /* Here we handle trees that are not completely rewritten.
1039 First we detect some inlining-induced bogosities for
1040 discarding. */
1041 if (TREE_CODE (*tp) == MODIFY_EXPR
1042 && TREE_OPERAND (*tp, 0) == TREE_OPERAND (*tp, 1)
1043 && (auto_var_in_fn_p (TREE_OPERAND (*tp, 0), fn)))
1045 /* Some assignments VAR = VAR; don't generate any rtl code
1046 and thus don't count as variable modification. Avoid
1047 keeping bogosities like 0 = 0. */
1048 tree decl = TREE_OPERAND (*tp, 0), value;
1049 tree *n;
1051 n = (tree *) pointer_map_contains (id->decl_map, decl);
1052 if (n)
1054 value = *n;
1055 STRIP_TYPE_NOPS (value);
1056 if (TREE_CONSTANT (value) || TREE_READONLY (value))
1058 *tp = build_empty_stmt (EXPR_LOCATION (*tp));
1059 return copy_tree_body_r (tp, walk_subtrees, data);
1063 else if (TREE_CODE (*tp) == INDIRECT_REF)
1065 /* Get rid of *& from inline substitutions that can happen when a
1066 pointer argument is an ADDR_EXPR. */
1067 tree decl = TREE_OPERAND (*tp, 0);
1068 tree *n = (tree *) pointer_map_contains (id->decl_map, decl);
1069 if (n)
1071 /* If we happen to get an ADDR_EXPR in n->value, strip
1072 it manually here as we'll eventually get ADDR_EXPRs
1073 which lie about their types pointed to. In this case
1074 build_fold_indirect_ref wouldn't strip the INDIRECT_REF,
1075 but we absolutely rely on that. As fold_indirect_ref
1076 does other useful transformations, try that first, though. */
1077 tree type = TREE_TYPE (*tp);
1078 tree ptr = id->do_not_unshare ? *n : unshare_expr (*n);
1079 tree old = *tp;
1080 *tp = gimple_fold_indirect_ref (ptr);
1081 if (! *tp)
1083 if (TREE_CODE (ptr) == ADDR_EXPR)
1086 = fold_indirect_ref_1 (EXPR_LOCATION (ptr), type, ptr);
1087 /* ??? We should either assert here or build
1088 a VIEW_CONVERT_EXPR instead of blindly leaking
1089 incompatible types to our IL. */
1090 if (! *tp)
1091 *tp = TREE_OPERAND (ptr, 0);
1093 else
1095 *tp = build1 (INDIRECT_REF, type, ptr);
1096 TREE_THIS_VOLATILE (*tp) = TREE_THIS_VOLATILE (old);
1097 TREE_SIDE_EFFECTS (*tp) = TREE_SIDE_EFFECTS (old);
1098 TREE_READONLY (*tp) = TREE_READONLY (old);
1099 /* We cannot propagate the TREE_THIS_NOTRAP flag if we
1100 have remapped a parameter as the property might be
1101 valid only for the parameter itself. */
1102 if (TREE_THIS_NOTRAP (old)
1103 && (!is_parm (TREE_OPERAND (old, 0))
1104 || (!id->transform_parameter && is_parm (ptr))))
1105 TREE_THIS_NOTRAP (*tp) = 1;
1108 *walk_subtrees = 0;
1109 return NULL;
1112 else if (TREE_CODE (*tp) == MEM_REF)
1114 /* We need to re-canonicalize MEM_REFs from inline substitutions
1115 that can happen when a pointer argument is an ADDR_EXPR.
1116 Recurse here manually to allow that. */
1117 tree ptr = TREE_OPERAND (*tp, 0);
1118 tree type = remap_type (TREE_TYPE (*tp), id);
1119 tree old = *tp;
1120 walk_tree (&ptr, copy_tree_body_r, data, NULL);
1121 *tp = fold_build2 (MEM_REF, type, ptr, TREE_OPERAND (*tp, 1));
1122 TREE_THIS_VOLATILE (*tp) = TREE_THIS_VOLATILE (old);
1123 TREE_SIDE_EFFECTS (*tp) = TREE_SIDE_EFFECTS (old);
1124 TREE_NO_WARNING (*tp) = TREE_NO_WARNING (old);
1125 /* We cannot propagate the TREE_THIS_NOTRAP flag if we have
1126 remapped a parameter as the property might be valid only
1127 for the parameter itself. */
1128 if (TREE_THIS_NOTRAP (old)
1129 && (!is_parm (TREE_OPERAND (old, 0))
1130 || (!id->transform_parameter && is_parm (ptr))))
1131 TREE_THIS_NOTRAP (*tp) = 1;
1132 *walk_subtrees = 0;
1133 return NULL;
1136 /* Here is the "usual case". Copy this tree node, and then
1137 tweak some special cases. */
1138 copy_tree_r (tp, walk_subtrees, NULL);
1140 /* If EXPR has block defined, map it to newly constructed block.
1141 When inlining we want EXPRs without block appear in the block
1142 of function call if we are not remapping a type. */
1143 if (EXPR_P (*tp))
1145 new_block = id->remapping_type_depth == 0 ? id->block : NULL;
1146 if (TREE_BLOCK (*tp))
1148 tree *n;
1149 n = (tree *) pointer_map_contains (id->decl_map,
1150 TREE_BLOCK (*tp));
1151 if (n)
1152 new_block = *n;
1154 TREE_SET_BLOCK (*tp, new_block);
1157 if (TREE_CODE (*tp) != OMP_CLAUSE)
1158 TREE_TYPE (*tp) = remap_type (TREE_TYPE (*tp), id);
1160 /* The copied TARGET_EXPR has never been expanded, even if the
1161 original node was expanded already. */
1162 if (TREE_CODE (*tp) == TARGET_EXPR && TREE_OPERAND (*tp, 3))
1164 TREE_OPERAND (*tp, 1) = TREE_OPERAND (*tp, 3);
1165 TREE_OPERAND (*tp, 3) = NULL_TREE;
1168 /* Variable substitution need not be simple. In particular, the
1169 INDIRECT_REF substitution above. Make sure that TREE_CONSTANT
1170 and friends are up-to-date. */
1171 else if (TREE_CODE (*tp) == ADDR_EXPR)
1173 int invariant = is_gimple_min_invariant (*tp);
1174 walk_tree (&TREE_OPERAND (*tp, 0), copy_tree_body_r, id, NULL);
1176 /* Handle the case where we substituted an INDIRECT_REF
1177 into the operand of the ADDR_EXPR. */
1178 if (TREE_CODE (TREE_OPERAND (*tp, 0)) == INDIRECT_REF)
1179 *tp = TREE_OPERAND (TREE_OPERAND (*tp, 0), 0);
1180 else
1181 recompute_tree_invariant_for_addr_expr (*tp);
1183 /* If this used to be invariant, but is not any longer,
1184 then regimplification is probably needed. */
1185 if (invariant && !is_gimple_min_invariant (*tp))
1186 id->regimplify = true;
1188 *walk_subtrees = 0;
1192 /* Keep iterating. */
1193 return NULL_TREE;
1196 /* Helper for remap_gimple_stmt. Given an EH region number for the
1197 source function, map that to the duplicate EH region number in
1198 the destination function. */
1200 static int
1201 remap_eh_region_nr (int old_nr, copy_body_data *id)
1203 eh_region old_r, new_r;
1204 void **slot;
1206 old_r = get_eh_region_from_number_fn (id->src_cfun, old_nr);
1207 slot = pointer_map_contains (id->eh_map, old_r);
1208 new_r = (eh_region) *slot;
1210 return new_r->index;
1213 /* Similar, but operate on INTEGER_CSTs. */
1215 static tree
1216 remap_eh_region_tree_nr (tree old_t_nr, copy_body_data *id)
1218 int old_nr, new_nr;
1220 old_nr = tree_low_cst (old_t_nr, 0);
1221 new_nr = remap_eh_region_nr (old_nr, id);
1223 return build_int_cst (integer_type_node, new_nr);
1226 /* Helper for copy_bb. Remap statement STMT using the inlining
1227 information in ID. Return the new statement copy. */
1229 static gimple
1230 remap_gimple_stmt (gimple stmt, copy_body_data *id)
1232 gimple copy = NULL;
1233 struct walk_stmt_info wi;
1234 bool skip_first = false;
1236 /* Begin by recognizing trees that we'll completely rewrite for the
1237 inlining context. Our output for these trees is completely
1238 different from out input (e.g. RETURN_EXPR is deleted, and morphs
1239 into an edge). Further down, we'll handle trees that get
1240 duplicated and/or tweaked. */
1242 /* When requested, GIMPLE_RETURNs should be transformed to just the
1243 contained GIMPLE_ASSIGN. The branch semantics of the return will
1244 be handled elsewhere by manipulating the CFG rather than the
1245 statement. */
1246 if (gimple_code (stmt) == GIMPLE_RETURN && id->transform_return_to_modify)
1248 tree retval = gimple_return_retval (stmt);
1250 /* If we're returning something, just turn that into an
1251 assignment into the equivalent of the original RESULT_DECL.
1252 If RETVAL is just the result decl, the result decl has
1253 already been set (e.g. a recent "foo (&result_decl, ...)");
1254 just toss the entire GIMPLE_RETURN. */
1255 if (retval
1256 && (TREE_CODE (retval) != RESULT_DECL
1257 && (TREE_CODE (retval) != SSA_NAME
1258 || ! SSA_NAME_VAR (retval)
1259 || TREE_CODE (SSA_NAME_VAR (retval)) != RESULT_DECL)))
1261 copy = gimple_build_assign (id->retvar, retval);
1262 /* id->retvar is already substituted. Skip it on later remapping. */
1263 skip_first = true;
1265 else
1266 return gimple_build_nop ();
1268 else if (gimple_has_substatements (stmt))
1270 gimple_seq s1, s2;
1272 /* When cloning bodies from the C++ front end, we will be handed bodies
1273 in High GIMPLE form. Handle here all the High GIMPLE statements that
1274 have embedded statements. */
1275 switch (gimple_code (stmt))
1277 case GIMPLE_BIND:
1278 copy = copy_gimple_bind (stmt, id);
1279 break;
1281 case GIMPLE_CATCH:
1282 s1 = remap_gimple_seq (gimple_catch_handler (stmt), id);
1283 copy = gimple_build_catch (gimple_catch_types (stmt), s1);
1284 break;
1286 case GIMPLE_EH_FILTER:
1287 s1 = remap_gimple_seq (gimple_eh_filter_failure (stmt), id);
1288 copy = gimple_build_eh_filter (gimple_eh_filter_types (stmt), s1);
1289 break;
1291 case GIMPLE_TRY:
1292 s1 = remap_gimple_seq (gimple_try_eval (stmt), id);
1293 s2 = remap_gimple_seq (gimple_try_cleanup (stmt), id);
1294 copy = gimple_build_try (s1, s2, gimple_try_kind (stmt));
1295 break;
1297 case GIMPLE_WITH_CLEANUP_EXPR:
1298 s1 = remap_gimple_seq (gimple_wce_cleanup (stmt), id);
1299 copy = gimple_build_wce (s1);
1300 break;
1302 case GIMPLE_OACC_PARALLEL:
1303 abort ();
1305 case GIMPLE_OMP_PARALLEL:
1306 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1307 copy = gimple_build_omp_parallel
1308 (s1,
1309 gimple_omp_parallel_clauses (stmt),
1310 gimple_omp_parallel_child_fn (stmt),
1311 gimple_omp_parallel_data_arg (stmt));
1312 break;
1314 case GIMPLE_OMP_TASK:
1315 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1316 copy = gimple_build_omp_task
1317 (s1,
1318 gimple_omp_task_clauses (stmt),
1319 gimple_omp_task_child_fn (stmt),
1320 gimple_omp_task_data_arg (stmt),
1321 gimple_omp_task_copy_fn (stmt),
1322 gimple_omp_task_arg_size (stmt),
1323 gimple_omp_task_arg_align (stmt));
1324 break;
1326 case GIMPLE_OMP_FOR:
1327 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1328 s2 = remap_gimple_seq (gimple_omp_for_pre_body (stmt), id);
1329 copy = gimple_build_omp_for (s1, gimple_omp_for_kind (stmt),
1330 gimple_omp_for_clauses (stmt),
1331 gimple_omp_for_collapse (stmt), s2);
1333 size_t i;
1334 for (i = 0; i < gimple_omp_for_collapse (stmt); i++)
1336 gimple_omp_for_set_index (copy, i,
1337 gimple_omp_for_index (stmt, i));
1338 gimple_omp_for_set_initial (copy, i,
1339 gimple_omp_for_initial (stmt, i));
1340 gimple_omp_for_set_final (copy, i,
1341 gimple_omp_for_final (stmt, i));
1342 gimple_omp_for_set_incr (copy, i,
1343 gimple_omp_for_incr (stmt, i));
1344 gimple_omp_for_set_cond (copy, i,
1345 gimple_omp_for_cond (stmt, i));
1348 break;
1350 case GIMPLE_OMP_MASTER:
1351 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1352 copy = gimple_build_omp_master (s1);
1353 break;
1355 case GIMPLE_OMP_TASKGROUP:
1356 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1357 copy = gimple_build_omp_taskgroup (s1);
1358 break;
1360 case GIMPLE_OMP_ORDERED:
1361 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1362 copy = gimple_build_omp_ordered (s1);
1363 break;
1365 case GIMPLE_OMP_SECTION:
1366 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1367 copy = gimple_build_omp_section (s1);
1368 break;
1370 case GIMPLE_OMP_SECTIONS:
1371 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1372 copy = gimple_build_omp_sections
1373 (s1, gimple_omp_sections_clauses (stmt));
1374 break;
1376 case GIMPLE_OMP_SINGLE:
1377 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1378 copy = gimple_build_omp_single
1379 (s1, gimple_omp_single_clauses (stmt));
1380 break;
1382 case GIMPLE_OMP_TARGET:
1383 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1384 copy = gimple_build_omp_target
1385 (s1, gimple_omp_target_kind (stmt),
1386 gimple_omp_target_clauses (stmt));
1387 break;
1389 case GIMPLE_OMP_TEAMS:
1390 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1391 copy = gimple_build_omp_teams
1392 (s1, gimple_omp_teams_clauses (stmt));
1393 break;
1395 case GIMPLE_OMP_CRITICAL:
1396 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1397 copy
1398 = gimple_build_omp_critical (s1, gimple_omp_critical_name (stmt));
1399 break;
1401 case GIMPLE_TRANSACTION:
1402 s1 = remap_gimple_seq (gimple_transaction_body (stmt), id);
1403 copy = gimple_build_transaction (s1, gimple_transaction_label (stmt));
1404 gimple_transaction_set_subcode (copy, gimple_transaction_subcode (stmt));
1405 break;
1407 default:
1408 gcc_unreachable ();
1411 else
1413 if (gimple_assign_copy_p (stmt)
1414 && gimple_assign_lhs (stmt) == gimple_assign_rhs1 (stmt)
1415 && auto_var_in_fn_p (gimple_assign_lhs (stmt), id->src_fn))
1417 /* Here we handle statements that are not completely rewritten.
1418 First we detect some inlining-induced bogosities for
1419 discarding. */
1421 /* Some assignments VAR = VAR; don't generate any rtl code
1422 and thus don't count as variable modification. Avoid
1423 keeping bogosities like 0 = 0. */
1424 tree decl = gimple_assign_lhs (stmt), value;
1425 tree *n;
1427 n = (tree *) pointer_map_contains (id->decl_map, decl);
1428 if (n)
1430 value = *n;
1431 STRIP_TYPE_NOPS (value);
1432 if (TREE_CONSTANT (value) || TREE_READONLY (value))
1433 return gimple_build_nop ();
1437 /* For *ptr_N ={v} {CLOBBER}, if ptr_N is SSA_NAME defined
1438 in a block that we aren't copying during tree_function_versioning,
1439 just drop the clobber stmt. */
1440 if (id->blocks_to_copy && gimple_clobber_p (stmt))
1442 tree lhs = gimple_assign_lhs (stmt);
1443 if (TREE_CODE (lhs) == MEM_REF
1444 && TREE_CODE (TREE_OPERAND (lhs, 0)) == SSA_NAME)
1446 gimple def_stmt = SSA_NAME_DEF_STMT (TREE_OPERAND (lhs, 0));
1447 if (gimple_bb (def_stmt)
1448 && !bitmap_bit_p (id->blocks_to_copy,
1449 gimple_bb (def_stmt)->index))
1450 return gimple_build_nop ();
1454 if (gimple_debug_bind_p (stmt))
1456 copy = gimple_build_debug_bind (gimple_debug_bind_get_var (stmt),
1457 gimple_debug_bind_get_value (stmt),
1458 stmt);
1459 id->debug_stmts.safe_push (copy);
1460 return copy;
1462 if (gimple_debug_source_bind_p (stmt))
1464 copy = gimple_build_debug_source_bind
1465 (gimple_debug_source_bind_get_var (stmt),
1466 gimple_debug_source_bind_get_value (stmt), stmt);
1467 id->debug_stmts.safe_push (copy);
1468 return copy;
1471 /* Create a new deep copy of the statement. */
1472 copy = gimple_copy (stmt);
1474 /* Remap the region numbers for __builtin_eh_{pointer,filter},
1475 RESX and EH_DISPATCH. */
1476 if (id->eh_map)
1477 switch (gimple_code (copy))
1479 case GIMPLE_CALL:
1481 tree r, fndecl = gimple_call_fndecl (copy);
1482 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
1483 switch (DECL_FUNCTION_CODE (fndecl))
1485 case BUILT_IN_EH_COPY_VALUES:
1486 r = gimple_call_arg (copy, 1);
1487 r = remap_eh_region_tree_nr (r, id);
1488 gimple_call_set_arg (copy, 1, r);
1489 /* FALLTHRU */
1491 case BUILT_IN_EH_POINTER:
1492 case BUILT_IN_EH_FILTER:
1493 r = gimple_call_arg (copy, 0);
1494 r = remap_eh_region_tree_nr (r, id);
1495 gimple_call_set_arg (copy, 0, r);
1496 break;
1498 default:
1499 break;
1502 /* Reset alias info if we didn't apply measures to
1503 keep it valid over inlining by setting DECL_PT_UID. */
1504 if (!id->src_cfun->gimple_df
1505 || !id->src_cfun->gimple_df->ipa_pta)
1506 gimple_call_reset_alias_info (copy);
1508 break;
1510 case GIMPLE_RESX:
1512 int r = gimple_resx_region (copy);
1513 r = remap_eh_region_nr (r, id);
1514 gimple_resx_set_region (copy, r);
1516 break;
1518 case GIMPLE_EH_DISPATCH:
1520 int r = gimple_eh_dispatch_region (copy);
1521 r = remap_eh_region_nr (r, id);
1522 gimple_eh_dispatch_set_region (copy, r);
1524 break;
1526 default:
1527 break;
1531 /* If STMT has a block defined, map it to the newly constructed
1532 block. */
1533 if (gimple_block (copy))
1535 tree *n;
1536 n = (tree *) pointer_map_contains (id->decl_map, gimple_block (copy));
1537 gcc_assert (n);
1538 gimple_set_block (copy, *n);
1541 if (gimple_debug_bind_p (copy) || gimple_debug_source_bind_p (copy))
1542 return copy;
1544 /* Remap all the operands in COPY. */
1545 memset (&wi, 0, sizeof (wi));
1546 wi.info = id;
1547 if (skip_first)
1548 walk_tree (gimple_op_ptr (copy, 1), remap_gimple_op_r, &wi, NULL);
1549 else
1550 walk_gimple_op (copy, remap_gimple_op_r, &wi);
1552 /* Clear the copied virtual operands. We are not remapping them here
1553 but are going to recreate them from scratch. */
1554 if (gimple_has_mem_ops (copy))
1556 gimple_set_vdef (copy, NULL_TREE);
1557 gimple_set_vuse (copy, NULL_TREE);
1560 return copy;
1564 /* Copy basic block, scale profile accordingly. Edges will be taken care of
1565 later */
1567 static basic_block
1568 copy_bb (copy_body_data *id, basic_block bb, int frequency_scale,
1569 gcov_type count_scale)
1571 gimple_stmt_iterator gsi, copy_gsi, seq_gsi;
1572 basic_block copy_basic_block;
1573 tree decl;
1574 gcov_type freq;
1575 basic_block prev;
1577 /* Search for previous copied basic block. */
1578 prev = bb->prev_bb;
1579 while (!prev->aux)
1580 prev = prev->prev_bb;
1582 /* create_basic_block() will append every new block to
1583 basic_block_info automatically. */
1584 copy_basic_block = create_basic_block (NULL, (void *) 0,
1585 (basic_block) prev->aux);
1586 copy_basic_block->count = apply_scale (bb->count, count_scale);
1588 /* We are going to rebuild frequencies from scratch. These values
1589 have just small importance to drive canonicalize_loop_headers. */
1590 freq = apply_scale ((gcov_type)bb->frequency, frequency_scale);
1592 /* We recompute frequencies after inlining, so this is quite safe. */
1593 if (freq > BB_FREQ_MAX)
1594 freq = BB_FREQ_MAX;
1595 copy_basic_block->frequency = freq;
1597 copy_gsi = gsi_start_bb (copy_basic_block);
1599 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1601 gimple stmt = gsi_stmt (gsi);
1602 gimple orig_stmt = stmt;
1604 id->regimplify = false;
1605 stmt = remap_gimple_stmt (stmt, id);
1606 if (gimple_nop_p (stmt))
1607 continue;
1609 gimple_duplicate_stmt_histograms (cfun, stmt, id->src_cfun, orig_stmt);
1610 seq_gsi = copy_gsi;
1612 /* With return slot optimization we can end up with
1613 non-gimple (foo *)&this->m, fix that here. */
1614 if (is_gimple_assign (stmt)
1615 && gimple_assign_rhs_code (stmt) == NOP_EXPR
1616 && !is_gimple_val (gimple_assign_rhs1 (stmt)))
1618 tree new_rhs;
1619 new_rhs = force_gimple_operand_gsi (&seq_gsi,
1620 gimple_assign_rhs1 (stmt),
1621 true, NULL, false,
1622 GSI_CONTINUE_LINKING);
1623 gimple_assign_set_rhs1 (stmt, new_rhs);
1624 id->regimplify = false;
1627 gsi_insert_after (&seq_gsi, stmt, GSI_NEW_STMT);
1629 if (id->regimplify)
1630 gimple_regimplify_operands (stmt, &seq_gsi);
1632 /* If copy_basic_block has been empty at the start of this iteration,
1633 call gsi_start_bb again to get at the newly added statements. */
1634 if (gsi_end_p (copy_gsi))
1635 copy_gsi = gsi_start_bb (copy_basic_block);
1636 else
1637 gsi_next (&copy_gsi);
1639 /* Process the new statement. The call to gimple_regimplify_operands
1640 possibly turned the statement into multiple statements, we
1641 need to process all of them. */
1644 tree fn;
1646 stmt = gsi_stmt (copy_gsi);
1647 if (is_gimple_call (stmt)
1648 && gimple_call_va_arg_pack_p (stmt)
1649 && id->gimple_call)
1651 /* __builtin_va_arg_pack () should be replaced by
1652 all arguments corresponding to ... in the caller. */
1653 tree p;
1654 gimple new_call;
1655 vec<tree> argarray;
1656 size_t nargs = gimple_call_num_args (id->gimple_call);
1657 size_t n;
1659 for (p = DECL_ARGUMENTS (id->src_fn); p; p = DECL_CHAIN (p))
1660 nargs--;
1662 /* Create the new array of arguments. */
1663 n = nargs + gimple_call_num_args (stmt);
1664 argarray.create (n);
1665 argarray.safe_grow_cleared (n);
1667 /* Copy all the arguments before '...' */
1668 memcpy (argarray.address (),
1669 gimple_call_arg_ptr (stmt, 0),
1670 gimple_call_num_args (stmt) * sizeof (tree));
1672 /* Append the arguments passed in '...' */
1673 memcpy (argarray.address () + gimple_call_num_args (stmt),
1674 gimple_call_arg_ptr (id->gimple_call, 0)
1675 + (gimple_call_num_args (id->gimple_call) - nargs),
1676 nargs * sizeof (tree));
1678 new_call = gimple_build_call_vec (gimple_call_fn (stmt),
1679 argarray);
1681 argarray.release ();
1683 /* Copy all GIMPLE_CALL flags, location and block, except
1684 GF_CALL_VA_ARG_PACK. */
1685 gimple_call_copy_flags (new_call, stmt);
1686 gimple_call_set_va_arg_pack (new_call, false);
1687 gimple_set_location (new_call, gimple_location (stmt));
1688 gimple_set_block (new_call, gimple_block (stmt));
1689 gimple_call_set_lhs (new_call, gimple_call_lhs (stmt));
1691 gsi_replace (&copy_gsi, new_call, false);
1692 stmt = new_call;
1694 else if (is_gimple_call (stmt)
1695 && id->gimple_call
1696 && (decl = gimple_call_fndecl (stmt))
1697 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
1698 && DECL_FUNCTION_CODE (decl) == BUILT_IN_VA_ARG_PACK_LEN)
1700 /* __builtin_va_arg_pack_len () should be replaced by
1701 the number of anonymous arguments. */
1702 size_t nargs = gimple_call_num_args (id->gimple_call);
1703 tree count, p;
1704 gimple new_stmt;
1706 for (p = DECL_ARGUMENTS (id->src_fn); p; p = DECL_CHAIN (p))
1707 nargs--;
1709 count = build_int_cst (integer_type_node, nargs);
1710 new_stmt = gimple_build_assign (gimple_call_lhs (stmt), count);
1711 gsi_replace (&copy_gsi, new_stmt, false);
1712 stmt = new_stmt;
1715 /* Statements produced by inlining can be unfolded, especially
1716 when we constant propagated some operands. We can't fold
1717 them right now for two reasons:
1718 1) folding require SSA_NAME_DEF_STMTs to be correct
1719 2) we can't change function calls to builtins.
1720 So we just mark statement for later folding. We mark
1721 all new statements, instead just statements that has changed
1722 by some nontrivial substitution so even statements made
1723 foldable indirectly are updated. If this turns out to be
1724 expensive, copy_body can be told to watch for nontrivial
1725 changes. */
1726 if (id->statements_to_fold)
1727 pointer_set_insert (id->statements_to_fold, stmt);
1729 /* We're duplicating a CALL_EXPR. Find any corresponding
1730 callgraph edges and update or duplicate them. */
1731 if (is_gimple_call (stmt))
1733 struct cgraph_edge *edge;
1734 int flags;
1736 switch (id->transform_call_graph_edges)
1738 case CB_CGE_DUPLICATE:
1739 edge = cgraph_edge (id->src_node, orig_stmt);
1740 if (edge)
1742 int edge_freq = edge->frequency;
1743 int new_freq;
1744 struct cgraph_edge *old_edge = edge;
1745 edge = cgraph_clone_edge (edge, id->dst_node, stmt,
1746 gimple_uid (stmt),
1747 REG_BR_PROB_BASE, CGRAPH_FREQ_BASE,
1748 true);
1749 /* We could also just rescale the frequency, but
1750 doing so would introduce roundoff errors and make
1751 verifier unhappy. */
1752 new_freq = compute_call_stmt_bb_frequency (id->dst_node->decl,
1753 copy_basic_block);
1755 /* Speculative calls consist of two edges - direct and indirect.
1756 Duplicate the whole thing and distribute frequencies accordingly. */
1757 if (edge->speculative)
1759 struct cgraph_edge *direct, *indirect;
1760 struct ipa_ref *ref;
1762 gcc_assert (!edge->indirect_unknown_callee);
1763 cgraph_speculative_call_info (old_edge, direct, indirect, ref);
1764 indirect = cgraph_clone_edge (indirect, id->dst_node, stmt,
1765 gimple_uid (stmt),
1766 REG_BR_PROB_BASE, CGRAPH_FREQ_BASE,
1767 true);
1768 if (old_edge->frequency + indirect->frequency)
1770 edge->frequency = MIN (RDIV ((gcov_type)new_freq * old_edge->frequency,
1771 (old_edge->frequency + indirect->frequency)),
1772 CGRAPH_FREQ_MAX);
1773 indirect->frequency = MIN (RDIV ((gcov_type)new_freq * indirect->frequency,
1774 (old_edge->frequency + indirect->frequency)),
1775 CGRAPH_FREQ_MAX);
1777 ipa_clone_ref (ref, id->dst_node, stmt);
1779 else
1781 edge->frequency = new_freq;
1782 if (dump_file
1783 && profile_status_for_function (cfun) != PROFILE_ABSENT
1784 && (edge_freq > edge->frequency + 10
1785 || edge_freq < edge->frequency - 10))
1787 fprintf (dump_file, "Edge frequency estimated by "
1788 "cgraph %i diverge from inliner's estimate %i\n",
1789 edge_freq,
1790 edge->frequency);
1791 fprintf (dump_file,
1792 "Orig bb: %i, orig bb freq %i, new bb freq %i\n",
1793 bb->index,
1794 bb->frequency,
1795 copy_basic_block->frequency);
1799 break;
1801 case CB_CGE_MOVE_CLONES:
1802 cgraph_set_call_stmt_including_clones (id->dst_node,
1803 orig_stmt, stmt);
1804 edge = cgraph_edge (id->dst_node, stmt);
1805 break;
1807 case CB_CGE_MOVE:
1808 edge = cgraph_edge (id->dst_node, orig_stmt);
1809 if (edge)
1810 cgraph_set_call_stmt (edge, stmt);
1811 break;
1813 default:
1814 gcc_unreachable ();
1817 /* Constant propagation on argument done during inlining
1818 may create new direct call. Produce an edge for it. */
1819 if ((!edge
1820 || (edge->indirect_inlining_edge
1821 && id->transform_call_graph_edges == CB_CGE_MOVE_CLONES))
1822 && id->dst_node->definition
1823 && (fn = gimple_call_fndecl (stmt)) != NULL)
1825 struct cgraph_node *dest = cgraph_get_node (fn);
1827 /* We have missing edge in the callgraph. This can happen
1828 when previous inlining turned an indirect call into a
1829 direct call by constant propagating arguments or we are
1830 producing dead clone (for further cloning). In all
1831 other cases we hit a bug (incorrect node sharing is the
1832 most common reason for missing edges). */
1833 gcc_assert (!dest->definition
1834 || dest->address_taken
1835 || !id->src_node->definition
1836 || !id->dst_node->definition);
1837 if (id->transform_call_graph_edges == CB_CGE_MOVE_CLONES)
1838 cgraph_create_edge_including_clones
1839 (id->dst_node, dest, orig_stmt, stmt, bb->count,
1840 compute_call_stmt_bb_frequency (id->dst_node->decl,
1841 copy_basic_block),
1842 CIF_ORIGINALLY_INDIRECT_CALL);
1843 else
1844 cgraph_create_edge (id->dst_node, dest, stmt,
1845 bb->count,
1846 compute_call_stmt_bb_frequency
1847 (id->dst_node->decl,
1848 copy_basic_block))->inline_failed
1849 = CIF_ORIGINALLY_INDIRECT_CALL;
1850 if (dump_file)
1852 fprintf (dump_file, "Created new direct edge to %s\n",
1853 cgraph_node_name (dest));
1857 flags = gimple_call_flags (stmt);
1858 if (flags & ECF_MAY_BE_ALLOCA)
1859 cfun->calls_alloca = true;
1860 if (flags & ECF_RETURNS_TWICE)
1861 cfun->calls_setjmp = true;
1864 maybe_duplicate_eh_stmt_fn (cfun, stmt, id->src_cfun, orig_stmt,
1865 id->eh_map, id->eh_lp_nr);
1867 if (gimple_in_ssa_p (cfun) && !is_gimple_debug (stmt))
1869 ssa_op_iter i;
1870 tree def;
1872 FOR_EACH_SSA_TREE_OPERAND (def, stmt, i, SSA_OP_DEF)
1873 if (TREE_CODE (def) == SSA_NAME)
1874 SSA_NAME_DEF_STMT (def) = stmt;
1877 gsi_next (&copy_gsi);
1879 while (!gsi_end_p (copy_gsi));
1881 copy_gsi = gsi_last_bb (copy_basic_block);
1884 return copy_basic_block;
1887 /* Inserting Single Entry Multiple Exit region in SSA form into code in SSA
1888 form is quite easy, since dominator relationship for old basic blocks does
1889 not change.
1891 There is however exception where inlining might change dominator relation
1892 across EH edges from basic block within inlined functions destinating
1893 to landing pads in function we inline into.
1895 The function fills in PHI_RESULTs of such PHI nodes if they refer
1896 to gimple regs. Otherwise, the function mark PHI_RESULT of such
1897 PHI nodes for renaming. For non-gimple regs, renaming is safe: the
1898 EH edges are abnormal and SSA_NAME_OCCURS_IN_ABNORMAL_PHI must be
1899 set, and this means that there will be no overlapping live ranges
1900 for the underlying symbol.
1902 This might change in future if we allow redirecting of EH edges and
1903 we might want to change way build CFG pre-inlining to include
1904 all the possible edges then. */
1905 static void
1906 update_ssa_across_abnormal_edges (basic_block bb, basic_block ret_bb,
1907 bool can_throw, bool nonlocal_goto)
1909 edge e;
1910 edge_iterator ei;
1912 FOR_EACH_EDGE (e, ei, bb->succs)
1913 if (!e->dest->aux
1914 || ((basic_block)e->dest->aux)->index == ENTRY_BLOCK)
1916 gimple phi;
1917 gimple_stmt_iterator si;
1919 if (!nonlocal_goto)
1920 gcc_assert (e->flags & EDGE_EH);
1922 if (!can_throw)
1923 gcc_assert (!(e->flags & EDGE_EH));
1925 for (si = gsi_start_phis (e->dest); !gsi_end_p (si); gsi_next (&si))
1927 edge re;
1929 phi = gsi_stmt (si);
1931 /* For abnormal goto/call edges the receiver can be the
1932 ENTRY_BLOCK. Do not assert this cannot happen. */
1934 gcc_assert ((e->flags & EDGE_EH)
1935 || SSA_NAME_OCCURS_IN_ABNORMAL_PHI (PHI_RESULT (phi)));
1937 re = find_edge (ret_bb, e->dest);
1938 gcc_checking_assert (re);
1939 gcc_assert ((re->flags & (EDGE_EH | EDGE_ABNORMAL))
1940 == (e->flags & (EDGE_EH | EDGE_ABNORMAL)));
1942 SET_USE (PHI_ARG_DEF_PTR_FROM_EDGE (phi, e),
1943 USE_FROM_PTR (PHI_ARG_DEF_PTR_FROM_EDGE (phi, re)));
1949 /* Copy edges from BB into its copy constructed earlier, scale profile
1950 accordingly. Edges will be taken care of later. Assume aux
1951 pointers to point to the copies of each BB. Return true if any
1952 debug stmts are left after a statement that must end the basic block. */
1954 static bool
1955 copy_edges_for_bb (basic_block bb, gcov_type count_scale, basic_block ret_bb,
1956 bool can_make_abnormal_goto)
1958 basic_block new_bb = (basic_block) bb->aux;
1959 edge_iterator ei;
1960 edge old_edge;
1961 gimple_stmt_iterator si;
1962 int flags;
1963 bool need_debug_cleanup = false;
1965 /* Use the indices from the original blocks to create edges for the
1966 new ones. */
1967 FOR_EACH_EDGE (old_edge, ei, bb->succs)
1968 if (!(old_edge->flags & EDGE_EH))
1970 edge new_edge;
1972 flags = old_edge->flags;
1974 /* Return edges do get a FALLTHRU flag when the get inlined. */
1975 if (old_edge->dest->index == EXIT_BLOCK && !old_edge->flags
1976 && old_edge->dest->aux != EXIT_BLOCK_PTR)
1977 flags |= EDGE_FALLTHRU;
1978 new_edge = make_edge (new_bb, (basic_block) old_edge->dest->aux, flags);
1979 new_edge->count = apply_scale (old_edge->count, count_scale);
1980 new_edge->probability = old_edge->probability;
1983 if (bb->index == ENTRY_BLOCK || bb->index == EXIT_BLOCK)
1984 return false;
1986 for (si = gsi_start_bb (new_bb); !gsi_end_p (si);)
1988 gimple copy_stmt;
1989 bool can_throw, nonlocal_goto;
1991 copy_stmt = gsi_stmt (si);
1992 if (!is_gimple_debug (copy_stmt))
1993 update_stmt (copy_stmt);
1995 /* Do this before the possible split_block. */
1996 gsi_next (&si);
1998 /* If this tree could throw an exception, there are two
1999 cases where we need to add abnormal edge(s): the
2000 tree wasn't in a region and there is a "current
2001 region" in the caller; or the original tree had
2002 EH edges. In both cases split the block after the tree,
2003 and add abnormal edge(s) as needed; we need both
2004 those from the callee and the caller.
2005 We check whether the copy can throw, because the const
2006 propagation can change an INDIRECT_REF which throws
2007 into a COMPONENT_REF which doesn't. If the copy
2008 can throw, the original could also throw. */
2009 can_throw = stmt_can_throw_internal (copy_stmt);
2010 nonlocal_goto = stmt_can_make_abnormal_goto (copy_stmt);
2012 if (can_throw || nonlocal_goto)
2014 if (!gsi_end_p (si))
2016 while (!gsi_end_p (si) && is_gimple_debug (gsi_stmt (si)))
2017 gsi_next (&si);
2018 if (gsi_end_p (si))
2019 need_debug_cleanup = true;
2021 if (!gsi_end_p (si))
2022 /* Note that bb's predecessor edges aren't necessarily
2023 right at this point; split_block doesn't care. */
2025 edge e = split_block (new_bb, copy_stmt);
2027 new_bb = e->dest;
2028 new_bb->aux = e->src->aux;
2029 si = gsi_start_bb (new_bb);
2033 if (gimple_code (copy_stmt) == GIMPLE_EH_DISPATCH)
2034 make_eh_dispatch_edges (copy_stmt);
2035 else if (can_throw)
2036 make_eh_edges (copy_stmt);
2038 /* If the call we inline cannot make abnormal goto do not add
2039 additional abnormal edges but only retain those already present
2040 in the original function body. */
2041 nonlocal_goto &= can_make_abnormal_goto;
2042 if (nonlocal_goto)
2043 make_abnormal_goto_edges (gimple_bb (copy_stmt), true);
2045 if ((can_throw || nonlocal_goto)
2046 && gimple_in_ssa_p (cfun))
2047 update_ssa_across_abnormal_edges (gimple_bb (copy_stmt), ret_bb,
2048 can_throw, nonlocal_goto);
2050 return need_debug_cleanup;
2053 /* Copy the PHIs. All blocks and edges are copied, some blocks
2054 was possibly split and new outgoing EH edges inserted.
2055 BB points to the block of original function and AUX pointers links
2056 the original and newly copied blocks. */
2058 static void
2059 copy_phis_for_bb (basic_block bb, copy_body_data *id)
2061 basic_block const new_bb = (basic_block) bb->aux;
2062 edge_iterator ei;
2063 gimple phi;
2064 gimple_stmt_iterator si;
2065 edge new_edge;
2066 bool inserted = false;
2068 for (si = gsi_start_phis (bb); !gsi_end_p (si); gsi_next (&si))
2070 tree res, new_res;
2071 gimple new_phi;
2073 phi = gsi_stmt (si);
2074 res = PHI_RESULT (phi);
2075 new_res = res;
2076 if (!virtual_operand_p (res))
2078 walk_tree (&new_res, copy_tree_body_r, id, NULL);
2079 new_phi = create_phi_node (new_res, new_bb);
2080 FOR_EACH_EDGE (new_edge, ei, new_bb->preds)
2082 edge old_edge = find_edge ((basic_block) new_edge->src->aux, bb);
2083 tree arg;
2084 tree new_arg;
2085 edge_iterator ei2;
2086 location_t locus;
2088 /* When doing partial cloning, we allow PHIs on the entry block
2089 as long as all the arguments are the same. Find any input
2090 edge to see argument to copy. */
2091 if (!old_edge)
2092 FOR_EACH_EDGE (old_edge, ei2, bb->preds)
2093 if (!old_edge->src->aux)
2094 break;
2096 arg = PHI_ARG_DEF_FROM_EDGE (phi, old_edge);
2097 new_arg = arg;
2098 walk_tree (&new_arg, copy_tree_body_r, id, NULL);
2099 gcc_assert (new_arg);
2100 /* With return slot optimization we can end up with
2101 non-gimple (foo *)&this->m, fix that here. */
2102 if (TREE_CODE (new_arg) != SSA_NAME
2103 && TREE_CODE (new_arg) != FUNCTION_DECL
2104 && !is_gimple_val (new_arg))
2106 gimple_seq stmts = NULL;
2107 new_arg = force_gimple_operand (new_arg, &stmts, true, NULL);
2108 gsi_insert_seq_on_edge (new_edge, stmts);
2109 inserted = true;
2111 locus = gimple_phi_arg_location_from_edge (phi, old_edge);
2112 if (LOCATION_BLOCK (locus))
2114 tree *n;
2115 n = (tree *) pointer_map_contains (id->decl_map,
2116 LOCATION_BLOCK (locus));
2117 gcc_assert (n);
2118 if (*n)
2119 locus = COMBINE_LOCATION_DATA (line_table, locus, *n);
2120 else
2121 locus = LOCATION_LOCUS (locus);
2123 else
2124 locus = LOCATION_LOCUS (locus);
2126 add_phi_arg (new_phi, new_arg, new_edge, locus);
2131 /* Commit the delayed edge insertions. */
2132 if (inserted)
2133 FOR_EACH_EDGE (new_edge, ei, new_bb->preds)
2134 gsi_commit_one_edge_insert (new_edge, NULL);
2138 /* Wrapper for remap_decl so it can be used as a callback. */
2140 static tree
2141 remap_decl_1 (tree decl, void *data)
2143 return remap_decl (decl, (copy_body_data *) data);
2146 /* Build struct function and associated datastructures for the new clone
2147 NEW_FNDECL to be build. CALLEE_FNDECL is the original. Function changes
2148 the cfun to the function of new_fndecl (and current_function_decl too). */
2150 static void
2151 initialize_cfun (tree new_fndecl, tree callee_fndecl, gcov_type count)
2153 struct function *src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
2154 gcov_type count_scale;
2156 if (!DECL_ARGUMENTS (new_fndecl))
2157 DECL_ARGUMENTS (new_fndecl) = DECL_ARGUMENTS (callee_fndecl);
2158 if (!DECL_RESULT (new_fndecl))
2159 DECL_RESULT (new_fndecl) = DECL_RESULT (callee_fndecl);
2161 if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count)
2162 count_scale
2163 = GCOV_COMPUTE_SCALE (count,
2164 ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count);
2165 else
2166 count_scale = REG_BR_PROB_BASE;
2168 /* Register specific tree functions. */
2169 gimple_register_cfg_hooks ();
2171 /* Get clean struct function. */
2172 push_struct_function (new_fndecl);
2174 /* We will rebuild these, so just sanity check that they are empty. */
2175 gcc_assert (VALUE_HISTOGRAMS (cfun) == NULL);
2176 gcc_assert (cfun->local_decls == NULL);
2177 gcc_assert (cfun->cfg == NULL);
2178 gcc_assert (cfun->decl == new_fndecl);
2180 /* Copy items we preserve during cloning. */
2181 cfun->static_chain_decl = src_cfun->static_chain_decl;
2182 cfun->nonlocal_goto_save_area = src_cfun->nonlocal_goto_save_area;
2183 cfun->function_end_locus = src_cfun->function_end_locus;
2184 cfun->curr_properties = src_cfun->curr_properties;
2185 cfun->last_verified = src_cfun->last_verified;
2186 cfun->va_list_gpr_size = src_cfun->va_list_gpr_size;
2187 cfun->va_list_fpr_size = src_cfun->va_list_fpr_size;
2188 cfun->has_nonlocal_label = src_cfun->has_nonlocal_label;
2189 cfun->stdarg = src_cfun->stdarg;
2190 cfun->after_inlining = src_cfun->after_inlining;
2191 cfun->can_throw_non_call_exceptions
2192 = src_cfun->can_throw_non_call_exceptions;
2193 cfun->can_delete_dead_exceptions = src_cfun->can_delete_dead_exceptions;
2194 cfun->returns_struct = src_cfun->returns_struct;
2195 cfun->returns_pcc_struct = src_cfun->returns_pcc_struct;
2197 init_empty_tree_cfg ();
2199 profile_status_for_function (cfun) = profile_status_for_function (src_cfun);
2200 ENTRY_BLOCK_PTR->count =
2201 (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count * count_scale /
2202 REG_BR_PROB_BASE);
2203 ENTRY_BLOCK_PTR->frequency
2204 = ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency;
2205 EXIT_BLOCK_PTR->count =
2206 (EXIT_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count * count_scale /
2207 REG_BR_PROB_BASE);
2208 EXIT_BLOCK_PTR->frequency =
2209 EXIT_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency;
2210 if (src_cfun->eh)
2211 init_eh_for_function ();
2213 if (src_cfun->gimple_df)
2215 init_tree_ssa (cfun);
2216 cfun->gimple_df->in_ssa_p = true;
2217 init_ssa_operands (cfun);
2221 /* Helper function for copy_cfg_body. Move debug stmts from the end
2222 of NEW_BB to the beginning of successor basic blocks when needed. If the
2223 successor has multiple predecessors, reset them, otherwise keep
2224 their value. */
2226 static void
2227 maybe_move_debug_stmts_to_successors (copy_body_data *id, basic_block new_bb)
2229 edge e;
2230 edge_iterator ei;
2231 gimple_stmt_iterator si = gsi_last_nondebug_bb (new_bb);
2233 if (gsi_end_p (si)
2234 || gsi_one_before_end_p (si)
2235 || !(stmt_can_throw_internal (gsi_stmt (si))
2236 || stmt_can_make_abnormal_goto (gsi_stmt (si))))
2237 return;
2239 FOR_EACH_EDGE (e, ei, new_bb->succs)
2241 gimple_stmt_iterator ssi = gsi_last_bb (new_bb);
2242 gimple_stmt_iterator dsi = gsi_after_labels (e->dest);
2243 while (is_gimple_debug (gsi_stmt (ssi)))
2245 gimple stmt = gsi_stmt (ssi), new_stmt;
2246 tree var;
2247 tree value;
2249 /* For the last edge move the debug stmts instead of copying
2250 them. */
2251 if (ei_one_before_end_p (ei))
2253 si = ssi;
2254 gsi_prev (&ssi);
2255 if (!single_pred_p (e->dest) && gimple_debug_bind_p (stmt))
2256 gimple_debug_bind_reset_value (stmt);
2257 gsi_remove (&si, false);
2258 gsi_insert_before (&dsi, stmt, GSI_SAME_STMT);
2259 continue;
2262 if (gimple_debug_bind_p (stmt))
2264 var = gimple_debug_bind_get_var (stmt);
2265 if (single_pred_p (e->dest))
2267 value = gimple_debug_bind_get_value (stmt);
2268 value = unshare_expr (value);
2270 else
2271 value = NULL_TREE;
2272 new_stmt = gimple_build_debug_bind (var, value, stmt);
2274 else if (gimple_debug_source_bind_p (stmt))
2276 var = gimple_debug_source_bind_get_var (stmt);
2277 value = gimple_debug_source_bind_get_value (stmt);
2278 new_stmt = gimple_build_debug_source_bind (var, value, stmt);
2280 else
2281 gcc_unreachable ();
2282 gsi_insert_before (&dsi, new_stmt, GSI_SAME_STMT);
2283 id->debug_stmts.safe_push (new_stmt);
2284 gsi_prev (&ssi);
2289 /* Make a copy of the sub-loops of SRC_PARENT and place them
2290 as siblings of DEST_PARENT. */
2292 static void
2293 copy_loops (copy_body_data *id,
2294 struct loop *dest_parent, struct loop *src_parent)
2296 struct loop *src_loop = src_parent->inner;
2297 while (src_loop)
2299 if (!id->blocks_to_copy
2300 || bitmap_bit_p (id->blocks_to_copy, src_loop->header->index))
2302 struct loop *dest_loop = alloc_loop ();
2304 /* Assign the new loop its header and latch and associate
2305 those with the new loop. */
2306 if (src_loop->header != NULL)
2308 dest_loop->header = (basic_block)src_loop->header->aux;
2309 dest_loop->header->loop_father = dest_loop;
2311 if (src_loop->latch != NULL)
2313 dest_loop->latch = (basic_block)src_loop->latch->aux;
2314 dest_loop->latch->loop_father = dest_loop;
2317 /* Copy loop meta-data. */
2318 copy_loop_info (src_loop, dest_loop);
2320 /* Finally place it into the loop array and the loop tree. */
2321 place_new_loop (cfun, dest_loop);
2322 flow_loop_tree_node_add (dest_parent, dest_loop);
2324 if (src_loop->simduid)
2326 dest_loop->simduid = remap_decl (src_loop->simduid, id);
2327 cfun->has_simduid_loops = true;
2329 if (src_loop->force_vect)
2331 dest_loop->force_vect = true;
2332 cfun->has_force_vect_loops = true;
2335 /* Recurse. */
2336 copy_loops (id, dest_loop, src_loop);
2338 src_loop = src_loop->next;
2342 /* Call cgraph_redirect_edge_call_stmt_to_callee on all calls in BB */
2344 void
2345 redirect_all_calls (copy_body_data * id, basic_block bb)
2347 gimple_stmt_iterator si;
2348 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
2350 if (is_gimple_call (gsi_stmt (si)))
2352 struct cgraph_edge *edge = cgraph_edge (id->dst_node, gsi_stmt (si));
2353 if (edge)
2354 cgraph_redirect_edge_call_stmt_to_callee (edge);
2359 /* Make a copy of the body of FN so that it can be inserted inline in
2360 another function. Walks FN via CFG, returns new fndecl. */
2362 static tree
2363 copy_cfg_body (copy_body_data * id, gcov_type count, int frequency_scale,
2364 basic_block entry_block_map, basic_block exit_block_map,
2365 basic_block new_entry)
2367 tree callee_fndecl = id->src_fn;
2368 /* Original cfun for the callee, doesn't change. */
2369 struct function *src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
2370 struct function *cfun_to_copy;
2371 basic_block bb;
2372 tree new_fndecl = NULL;
2373 bool need_debug_cleanup = false;
2374 gcov_type count_scale;
2375 int last;
2376 int incoming_frequency = 0;
2377 gcov_type incoming_count = 0;
2379 if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count)
2380 count_scale
2381 = GCOV_COMPUTE_SCALE (count,
2382 ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count);
2383 else
2384 count_scale = REG_BR_PROB_BASE;
2386 /* Register specific tree functions. */
2387 gimple_register_cfg_hooks ();
2389 /* If we are inlining just region of the function, make sure to connect new entry
2390 to ENTRY_BLOCK_PTR. Since new entry can be part of loop, we must compute
2391 frequency and probability of ENTRY_BLOCK_PTR based on the frequencies and
2392 probabilities of edges incoming from nonduplicated region. */
2393 if (new_entry)
2395 edge e;
2396 edge_iterator ei;
2398 FOR_EACH_EDGE (e, ei, new_entry->preds)
2399 if (!e->src->aux)
2401 incoming_frequency += EDGE_FREQUENCY (e);
2402 incoming_count += e->count;
2404 incoming_count = apply_scale (incoming_count, count_scale);
2405 incoming_frequency
2406 = apply_scale ((gcov_type)incoming_frequency, frequency_scale);
2407 ENTRY_BLOCK_PTR->count = incoming_count;
2408 ENTRY_BLOCK_PTR->frequency = incoming_frequency;
2411 /* Must have a CFG here at this point. */
2412 gcc_assert (ENTRY_BLOCK_PTR_FOR_FUNCTION
2413 (DECL_STRUCT_FUNCTION (callee_fndecl)));
2415 cfun_to_copy = id->src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
2417 ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy)->aux = entry_block_map;
2418 EXIT_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy)->aux = exit_block_map;
2419 entry_block_map->aux = ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy);
2420 exit_block_map->aux = EXIT_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy);
2422 /* Duplicate any exception-handling regions. */
2423 if (cfun->eh)
2424 id->eh_map = duplicate_eh_regions (cfun_to_copy, NULL, id->eh_lp_nr,
2425 remap_decl_1, id);
2427 /* Use aux pointers to map the original blocks to copy. */
2428 FOR_EACH_BB_FN (bb, cfun_to_copy)
2429 if (!id->blocks_to_copy || bitmap_bit_p (id->blocks_to_copy, bb->index))
2431 basic_block new_bb = copy_bb (id, bb, frequency_scale, count_scale);
2432 bb->aux = new_bb;
2433 new_bb->aux = bb;
2434 new_bb->loop_father = entry_block_map->loop_father;
2437 last = last_basic_block;
2439 /* Now that we've duplicated the blocks, duplicate their edges. */
2440 bool can_make_abormal_goto
2441 = id->gimple_call && stmt_can_make_abnormal_goto (id->gimple_call);
2442 FOR_ALL_BB_FN (bb, cfun_to_copy)
2443 if (!id->blocks_to_copy
2444 || (bb->index > 0 && bitmap_bit_p (id->blocks_to_copy, bb->index)))
2445 need_debug_cleanup |= copy_edges_for_bb (bb, count_scale, exit_block_map,
2446 can_make_abormal_goto);
2448 if (new_entry)
2450 edge e = make_edge (entry_block_map, (basic_block)new_entry->aux, EDGE_FALLTHRU);
2451 e->probability = REG_BR_PROB_BASE;
2452 e->count = incoming_count;
2455 /* Duplicate the loop tree, if available and wanted. */
2456 if (loops_for_fn (src_cfun) != NULL
2457 && current_loops != NULL)
2459 copy_loops (id, entry_block_map->loop_father,
2460 get_loop (src_cfun, 0));
2461 /* Defer to cfgcleanup to update loop-father fields of basic-blocks. */
2462 loops_state_set (LOOPS_NEED_FIXUP);
2465 /* If the loop tree in the source function needed fixup, mark the
2466 destination loop tree for fixup, too. */
2467 if (loops_for_fn (src_cfun)->state & LOOPS_NEED_FIXUP)
2468 loops_state_set (LOOPS_NEED_FIXUP);
2470 if (gimple_in_ssa_p (cfun))
2471 FOR_ALL_BB_FN (bb, cfun_to_copy)
2472 if (!id->blocks_to_copy
2473 || (bb->index > 0 && bitmap_bit_p (id->blocks_to_copy, bb->index)))
2474 copy_phis_for_bb (bb, id);
2476 FOR_ALL_BB_FN (bb, cfun_to_copy)
2477 if (bb->aux)
2479 if (need_debug_cleanup
2480 && bb->index != ENTRY_BLOCK
2481 && bb->index != EXIT_BLOCK)
2482 maybe_move_debug_stmts_to_successors (id, (basic_block) bb->aux);
2483 /* Update call edge destinations. This can not be done before loop
2484 info is updated, because we may split basic blocks. */
2485 if (id->transform_call_graph_edges == CB_CGE_DUPLICATE)
2486 redirect_all_calls (id, (basic_block)bb->aux);
2487 ((basic_block)bb->aux)->aux = NULL;
2488 bb->aux = NULL;
2491 /* Zero out AUX fields of newly created block during EH edge
2492 insertion. */
2493 for (; last < last_basic_block; last++)
2495 if (need_debug_cleanup)
2496 maybe_move_debug_stmts_to_successors (id, BASIC_BLOCK (last));
2497 BASIC_BLOCK (last)->aux = NULL;
2498 /* Update call edge destinations. This can not be done before loop
2499 info is updated, because we may split basic blocks. */
2500 if (id->transform_call_graph_edges == CB_CGE_DUPLICATE)
2501 redirect_all_calls (id, BASIC_BLOCK (last));
2503 entry_block_map->aux = NULL;
2504 exit_block_map->aux = NULL;
2506 if (id->eh_map)
2508 pointer_map_destroy (id->eh_map);
2509 id->eh_map = NULL;
2512 return new_fndecl;
2515 /* Copy the debug STMT using ID. We deal with these statements in a
2516 special way: if any variable in their VALUE expression wasn't
2517 remapped yet, we won't remap it, because that would get decl uids
2518 out of sync, causing codegen differences between -g and -g0. If
2519 this arises, we drop the VALUE expression altogether. */
2521 static void
2522 copy_debug_stmt (gimple stmt, copy_body_data *id)
2524 tree t, *n;
2525 struct walk_stmt_info wi;
2527 if (gimple_block (stmt))
2529 n = (tree *) pointer_map_contains (id->decl_map, gimple_block (stmt));
2530 gimple_set_block (stmt, n ? *n : id->block);
2533 /* Remap all the operands in COPY. */
2534 memset (&wi, 0, sizeof (wi));
2535 wi.info = id;
2537 processing_debug_stmt = 1;
2539 if (gimple_debug_source_bind_p (stmt))
2540 t = gimple_debug_source_bind_get_var (stmt);
2541 else
2542 t = gimple_debug_bind_get_var (stmt);
2544 if (TREE_CODE (t) == PARM_DECL && id->debug_map
2545 && (n = (tree *) pointer_map_contains (id->debug_map, t)))
2547 gcc_assert (TREE_CODE (*n) == VAR_DECL);
2548 t = *n;
2550 else if (TREE_CODE (t) == VAR_DECL
2551 && !is_global_var (t)
2552 && !pointer_map_contains (id->decl_map, t))
2553 /* T is a non-localized variable. */;
2554 else
2555 walk_tree (&t, remap_gimple_op_r, &wi, NULL);
2557 if (gimple_debug_bind_p (stmt))
2559 gimple_debug_bind_set_var (stmt, t);
2561 if (gimple_debug_bind_has_value_p (stmt))
2562 walk_tree (gimple_debug_bind_get_value_ptr (stmt),
2563 remap_gimple_op_r, &wi, NULL);
2565 /* Punt if any decl couldn't be remapped. */
2566 if (processing_debug_stmt < 0)
2567 gimple_debug_bind_reset_value (stmt);
2569 else if (gimple_debug_source_bind_p (stmt))
2571 gimple_debug_source_bind_set_var (stmt, t);
2572 walk_tree (gimple_debug_source_bind_get_value_ptr (stmt),
2573 remap_gimple_op_r, &wi, NULL);
2574 /* When inlining and source bind refers to one of the optimized
2575 away parameters, change the source bind into normal debug bind
2576 referring to the corresponding DEBUG_EXPR_DECL that should have
2577 been bound before the call stmt. */
2578 t = gimple_debug_source_bind_get_value (stmt);
2579 if (t != NULL_TREE
2580 && TREE_CODE (t) == PARM_DECL
2581 && id->gimple_call)
2583 vec<tree, va_gc> **debug_args = decl_debug_args_lookup (id->src_fn);
2584 unsigned int i;
2585 if (debug_args != NULL)
2587 for (i = 0; i < vec_safe_length (*debug_args); i += 2)
2588 if ((**debug_args)[i] == DECL_ORIGIN (t)
2589 && TREE_CODE ((**debug_args)[i + 1]) == DEBUG_EXPR_DECL)
2591 t = (**debug_args)[i + 1];
2592 stmt->gsbase.subcode = GIMPLE_DEBUG_BIND;
2593 gimple_debug_bind_set_value (stmt, t);
2594 break;
2600 processing_debug_stmt = 0;
2602 update_stmt (stmt);
2605 /* Process deferred debug stmts. In order to give values better odds
2606 of being successfully remapped, we delay the processing of debug
2607 stmts until all other stmts that might require remapping are
2608 processed. */
2610 static void
2611 copy_debug_stmts (copy_body_data *id)
2613 size_t i;
2614 gimple stmt;
2616 if (!id->debug_stmts.exists ())
2617 return;
2619 FOR_EACH_VEC_ELT (id->debug_stmts, i, stmt)
2620 copy_debug_stmt (stmt, id);
2622 id->debug_stmts.release ();
2625 /* Make a copy of the body of SRC_FN so that it can be inserted inline in
2626 another function. */
2628 static tree
2629 copy_tree_body (copy_body_data *id)
2631 tree fndecl = id->src_fn;
2632 tree body = DECL_SAVED_TREE (fndecl);
2634 walk_tree (&body, copy_tree_body_r, id, NULL);
2636 return body;
2639 /* Make a copy of the body of FN so that it can be inserted inline in
2640 another function. */
2642 static tree
2643 copy_body (copy_body_data *id, gcov_type count, int frequency_scale,
2644 basic_block entry_block_map, basic_block exit_block_map,
2645 basic_block new_entry)
2647 tree fndecl = id->src_fn;
2648 tree body;
2650 /* If this body has a CFG, walk CFG and copy. */
2651 gcc_assert (ENTRY_BLOCK_PTR_FOR_FUNCTION (DECL_STRUCT_FUNCTION (fndecl)));
2652 body = copy_cfg_body (id, count, frequency_scale, entry_block_map, exit_block_map,
2653 new_entry);
2654 copy_debug_stmts (id);
2656 return body;
2659 /* Return true if VALUE is an ADDR_EXPR of an automatic variable
2660 defined in function FN, or of a data member thereof. */
2662 static bool
2663 self_inlining_addr_expr (tree value, tree fn)
2665 tree var;
2667 if (TREE_CODE (value) != ADDR_EXPR)
2668 return false;
2670 var = get_base_address (TREE_OPERAND (value, 0));
2672 return var && auto_var_in_fn_p (var, fn);
2675 /* Append to BB a debug annotation that binds VAR to VALUE, inheriting
2676 lexical block and line number information from base_stmt, if given,
2677 or from the last stmt of the block otherwise. */
2679 static gimple
2680 insert_init_debug_bind (copy_body_data *id,
2681 basic_block bb, tree var, tree value,
2682 gimple base_stmt)
2684 gimple note;
2685 gimple_stmt_iterator gsi;
2686 tree tracked_var;
2688 if (!gimple_in_ssa_p (id->src_cfun))
2689 return NULL;
2691 if (!MAY_HAVE_DEBUG_STMTS)
2692 return NULL;
2694 tracked_var = target_for_debug_bind (var);
2695 if (!tracked_var)
2696 return NULL;
2698 if (bb)
2700 gsi = gsi_last_bb (bb);
2701 if (!base_stmt && !gsi_end_p (gsi))
2702 base_stmt = gsi_stmt (gsi);
2705 note = gimple_build_debug_bind (tracked_var, value, base_stmt);
2707 if (bb)
2709 if (!gsi_end_p (gsi))
2710 gsi_insert_after (&gsi, note, GSI_SAME_STMT);
2711 else
2712 gsi_insert_before (&gsi, note, GSI_SAME_STMT);
2715 return note;
2718 static void
2719 insert_init_stmt (copy_body_data *id, basic_block bb, gimple init_stmt)
2721 /* If VAR represents a zero-sized variable, it's possible that the
2722 assignment statement may result in no gimple statements. */
2723 if (init_stmt)
2725 gimple_stmt_iterator si = gsi_last_bb (bb);
2727 /* We can end up with init statements that store to a non-register
2728 from a rhs with a conversion. Handle that here by forcing the
2729 rhs into a temporary. gimple_regimplify_operands is not
2730 prepared to do this for us. */
2731 if (!is_gimple_debug (init_stmt)
2732 && !is_gimple_reg (gimple_assign_lhs (init_stmt))
2733 && is_gimple_reg_type (TREE_TYPE (gimple_assign_lhs (init_stmt)))
2734 && gimple_assign_rhs_class (init_stmt) == GIMPLE_UNARY_RHS)
2736 tree rhs = build1 (gimple_assign_rhs_code (init_stmt),
2737 gimple_expr_type (init_stmt),
2738 gimple_assign_rhs1 (init_stmt));
2739 rhs = force_gimple_operand_gsi (&si, rhs, true, NULL_TREE, false,
2740 GSI_NEW_STMT);
2741 gimple_assign_set_rhs_code (init_stmt, TREE_CODE (rhs));
2742 gimple_assign_set_rhs1 (init_stmt, rhs);
2744 gsi_insert_after (&si, init_stmt, GSI_NEW_STMT);
2745 gimple_regimplify_operands (init_stmt, &si);
2747 if (!is_gimple_debug (init_stmt) && MAY_HAVE_DEBUG_STMTS)
2749 tree def = gimple_assign_lhs (init_stmt);
2750 insert_init_debug_bind (id, bb, def, def, init_stmt);
2755 /* Initialize parameter P with VALUE. If needed, produce init statement
2756 at the end of BB. When BB is NULL, we return init statement to be
2757 output later. */
2758 static gimple
2759 setup_one_parameter (copy_body_data *id, tree p, tree value, tree fn,
2760 basic_block bb, tree *vars)
2762 gimple init_stmt = NULL;
2763 tree var;
2764 tree rhs = value;
2765 tree def = (gimple_in_ssa_p (cfun)
2766 ? ssa_default_def (id->src_cfun, p) : NULL);
2768 if (value
2769 && value != error_mark_node
2770 && !useless_type_conversion_p (TREE_TYPE (p), TREE_TYPE (value)))
2772 /* If we can match up types by promotion/demotion do so. */
2773 if (fold_convertible_p (TREE_TYPE (p), value))
2774 rhs = fold_convert (TREE_TYPE (p), value);
2775 else
2777 /* ??? For valid programs we should not end up here.
2778 Still if we end up with truly mismatched types here, fall back
2779 to using a VIEW_CONVERT_EXPR or a literal zero to not leak invalid
2780 GIMPLE to the following passes. */
2781 if (!is_gimple_reg_type (TREE_TYPE (value))
2782 || TYPE_SIZE (TREE_TYPE (p)) == TYPE_SIZE (TREE_TYPE (value)))
2783 rhs = fold_build1 (VIEW_CONVERT_EXPR, TREE_TYPE (p), value);
2784 else
2785 rhs = build_zero_cst (TREE_TYPE (p));
2789 /* Make an equivalent VAR_DECL. Note that we must NOT remap the type
2790 here since the type of this decl must be visible to the calling
2791 function. */
2792 var = copy_decl_to_var (p, id);
2794 /* Declare this new variable. */
2795 DECL_CHAIN (var) = *vars;
2796 *vars = var;
2798 /* Make gimplifier happy about this variable. */
2799 DECL_SEEN_IN_BIND_EXPR_P (var) = 1;
2801 /* If the parameter is never assigned to, has no SSA_NAMEs created,
2802 we would not need to create a new variable here at all, if it
2803 weren't for debug info. Still, we can just use the argument
2804 value. */
2805 if (TREE_READONLY (p)
2806 && !TREE_ADDRESSABLE (p)
2807 && value && !TREE_SIDE_EFFECTS (value)
2808 && !def)
2810 /* We may produce non-gimple trees by adding NOPs or introduce
2811 invalid sharing when operand is not really constant.
2812 It is not big deal to prohibit constant propagation here as
2813 we will constant propagate in DOM1 pass anyway. */
2814 if (is_gimple_min_invariant (value)
2815 && useless_type_conversion_p (TREE_TYPE (p),
2816 TREE_TYPE (value))
2817 /* We have to be very careful about ADDR_EXPR. Make sure
2818 the base variable isn't a local variable of the inlined
2819 function, e.g., when doing recursive inlining, direct or
2820 mutually-recursive or whatever, which is why we don't
2821 just test whether fn == current_function_decl. */
2822 && ! self_inlining_addr_expr (value, fn))
2824 insert_decl_map (id, p, value);
2825 insert_debug_decl_map (id, p, var);
2826 return insert_init_debug_bind (id, bb, var, value, NULL);
2830 /* Register the VAR_DECL as the equivalent for the PARM_DECL;
2831 that way, when the PARM_DECL is encountered, it will be
2832 automatically replaced by the VAR_DECL. */
2833 insert_decl_map (id, p, var);
2835 /* Even if P was TREE_READONLY, the new VAR should not be.
2836 In the original code, we would have constructed a
2837 temporary, and then the function body would have never
2838 changed the value of P. However, now, we will be
2839 constructing VAR directly. The constructor body may
2840 change its value multiple times as it is being
2841 constructed. Therefore, it must not be TREE_READONLY;
2842 the back-end assumes that TREE_READONLY variable is
2843 assigned to only once. */
2844 if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (p)))
2845 TREE_READONLY (var) = 0;
2847 /* If there is no setup required and we are in SSA, take the easy route
2848 replacing all SSA names representing the function parameter by the
2849 SSA name passed to function.
2851 We need to construct map for the variable anyway as it might be used
2852 in different SSA names when parameter is set in function.
2854 Do replacement at -O0 for const arguments replaced by constant.
2855 This is important for builtin_constant_p and other construct requiring
2856 constant argument to be visible in inlined function body. */
2857 if (gimple_in_ssa_p (cfun) && rhs && def && is_gimple_reg (p)
2858 && (optimize
2859 || (TREE_READONLY (p)
2860 && is_gimple_min_invariant (rhs)))
2861 && (TREE_CODE (rhs) == SSA_NAME
2862 || is_gimple_min_invariant (rhs))
2863 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (def))
2865 insert_decl_map (id, def, rhs);
2866 return insert_init_debug_bind (id, bb, var, rhs, NULL);
2869 /* If the value of argument is never used, don't care about initializing
2870 it. */
2871 if (optimize && gimple_in_ssa_p (cfun) && !def && is_gimple_reg (p))
2873 gcc_assert (!value || !TREE_SIDE_EFFECTS (value));
2874 return insert_init_debug_bind (id, bb, var, rhs, NULL);
2877 /* Initialize this VAR_DECL from the equivalent argument. Convert
2878 the argument to the proper type in case it was promoted. */
2879 if (value)
2881 if (rhs == error_mark_node)
2883 insert_decl_map (id, p, var);
2884 return insert_init_debug_bind (id, bb, var, rhs, NULL);
2887 STRIP_USELESS_TYPE_CONVERSION (rhs);
2889 /* If we are in SSA form properly remap the default definition
2890 or assign to a dummy SSA name if the parameter is unused and
2891 we are not optimizing. */
2892 if (gimple_in_ssa_p (cfun) && is_gimple_reg (p))
2894 if (def)
2896 def = remap_ssa_name (def, id);
2897 init_stmt = gimple_build_assign (def, rhs);
2898 SSA_NAME_IS_DEFAULT_DEF (def) = 0;
2899 set_ssa_default_def (cfun, var, NULL);
2901 else if (!optimize)
2903 def = make_ssa_name (var, NULL);
2904 init_stmt = gimple_build_assign (def, rhs);
2907 else
2908 init_stmt = gimple_build_assign (var, rhs);
2910 if (bb && init_stmt)
2911 insert_init_stmt (id, bb, init_stmt);
2913 return init_stmt;
2916 /* Generate code to initialize the parameters of the function at the
2917 top of the stack in ID from the GIMPLE_CALL STMT. */
2919 static void
2920 initialize_inlined_parameters (copy_body_data *id, gimple stmt,
2921 tree fn, basic_block bb)
2923 tree parms;
2924 size_t i;
2925 tree p;
2926 tree vars = NULL_TREE;
2927 tree static_chain = gimple_call_chain (stmt);
2929 /* Figure out what the parameters are. */
2930 parms = DECL_ARGUMENTS (fn);
2932 /* Loop through the parameter declarations, replacing each with an
2933 equivalent VAR_DECL, appropriately initialized. */
2934 for (p = parms, i = 0; p; p = DECL_CHAIN (p), i++)
2936 tree val;
2937 val = i < gimple_call_num_args (stmt) ? gimple_call_arg (stmt, i) : NULL;
2938 setup_one_parameter (id, p, val, fn, bb, &vars);
2940 /* After remapping parameters remap their types. This has to be done
2941 in a second loop over all parameters to appropriately remap
2942 variable sized arrays when the size is specified in a
2943 parameter following the array. */
2944 for (p = parms, i = 0; p; p = DECL_CHAIN (p), i++)
2946 tree *varp = (tree *) pointer_map_contains (id->decl_map, p);
2947 if (varp
2948 && TREE_CODE (*varp) == VAR_DECL)
2950 tree def = (gimple_in_ssa_p (cfun) && is_gimple_reg (p)
2951 ? ssa_default_def (id->src_cfun, p) : NULL);
2952 tree var = *varp;
2953 TREE_TYPE (var) = remap_type (TREE_TYPE (var), id);
2954 /* Also remap the default definition if it was remapped
2955 to the default definition of the parameter replacement
2956 by the parameter setup. */
2957 if (def)
2959 tree *defp = (tree *) pointer_map_contains (id->decl_map, def);
2960 if (defp
2961 && TREE_CODE (*defp) == SSA_NAME
2962 && SSA_NAME_VAR (*defp) == var)
2963 TREE_TYPE (*defp) = TREE_TYPE (var);
2968 /* Initialize the static chain. */
2969 p = DECL_STRUCT_FUNCTION (fn)->static_chain_decl;
2970 gcc_assert (fn != current_function_decl);
2971 if (p)
2973 /* No static chain? Seems like a bug in tree-nested.c. */
2974 gcc_assert (static_chain);
2976 setup_one_parameter (id, p, static_chain, fn, bb, &vars);
2979 declare_inline_vars (id->block, vars);
2983 /* Declare a return variable to replace the RESULT_DECL for the
2984 function we are calling. An appropriate DECL_STMT is returned.
2985 The USE_STMT is filled to contain a use of the declaration to
2986 indicate the return value of the function.
2988 RETURN_SLOT, if non-null is place where to store the result. It
2989 is set only for CALL_EXPR_RETURN_SLOT_OPT. MODIFY_DEST, if non-null,
2990 was the LHS of the MODIFY_EXPR to which this call is the RHS.
2992 The return value is a (possibly null) value that holds the result
2993 as seen by the caller. */
2995 static tree
2996 declare_return_variable (copy_body_data *id, tree return_slot, tree modify_dest,
2997 basic_block entry_bb)
2999 tree callee = id->src_fn;
3000 tree result = DECL_RESULT (callee);
3001 tree callee_type = TREE_TYPE (result);
3002 tree caller_type;
3003 tree var, use;
3005 /* Handle type-mismatches in the function declaration return type
3006 vs. the call expression. */
3007 if (modify_dest)
3008 caller_type = TREE_TYPE (modify_dest);
3009 else
3010 caller_type = TREE_TYPE (TREE_TYPE (callee));
3012 /* We don't need to do anything for functions that don't return anything. */
3013 if (VOID_TYPE_P (callee_type))
3014 return NULL_TREE;
3016 /* If there was a return slot, then the return value is the
3017 dereferenced address of that object. */
3018 if (return_slot)
3020 /* The front end shouldn't have used both return_slot and
3021 a modify expression. */
3022 gcc_assert (!modify_dest);
3023 if (DECL_BY_REFERENCE (result))
3025 tree return_slot_addr = build_fold_addr_expr (return_slot);
3026 STRIP_USELESS_TYPE_CONVERSION (return_slot_addr);
3028 /* We are going to construct *&return_slot and we can't do that
3029 for variables believed to be not addressable.
3031 FIXME: This check possibly can match, because values returned
3032 via return slot optimization are not believed to have address
3033 taken by alias analysis. */
3034 gcc_assert (TREE_CODE (return_slot) != SSA_NAME);
3035 var = return_slot_addr;
3037 else
3039 var = return_slot;
3040 gcc_assert (TREE_CODE (var) != SSA_NAME);
3041 TREE_ADDRESSABLE (var) |= TREE_ADDRESSABLE (result);
3043 if ((TREE_CODE (TREE_TYPE (result)) == COMPLEX_TYPE
3044 || TREE_CODE (TREE_TYPE (result)) == VECTOR_TYPE)
3045 && !DECL_GIMPLE_REG_P (result)
3046 && DECL_P (var))
3047 DECL_GIMPLE_REG_P (var) = 0;
3048 use = NULL;
3049 goto done;
3052 /* All types requiring non-trivial constructors should have been handled. */
3053 gcc_assert (!TREE_ADDRESSABLE (callee_type));
3055 /* Attempt to avoid creating a new temporary variable. */
3056 if (modify_dest
3057 && TREE_CODE (modify_dest) != SSA_NAME)
3059 bool use_it = false;
3061 /* We can't use MODIFY_DEST if there's type promotion involved. */
3062 if (!useless_type_conversion_p (callee_type, caller_type))
3063 use_it = false;
3065 /* ??? If we're assigning to a variable sized type, then we must
3066 reuse the destination variable, because we've no good way to
3067 create variable sized temporaries at this point. */
3068 else if (TREE_CODE (TYPE_SIZE_UNIT (caller_type)) != INTEGER_CST)
3069 use_it = true;
3071 /* If the callee cannot possibly modify MODIFY_DEST, then we can
3072 reuse it as the result of the call directly. Don't do this if
3073 it would promote MODIFY_DEST to addressable. */
3074 else if (TREE_ADDRESSABLE (result))
3075 use_it = false;
3076 else
3078 tree base_m = get_base_address (modify_dest);
3080 /* If the base isn't a decl, then it's a pointer, and we don't
3081 know where that's going to go. */
3082 if (!DECL_P (base_m))
3083 use_it = false;
3084 else if (is_global_var (base_m))
3085 use_it = false;
3086 else if ((TREE_CODE (TREE_TYPE (result)) == COMPLEX_TYPE
3087 || TREE_CODE (TREE_TYPE (result)) == VECTOR_TYPE)
3088 && !DECL_GIMPLE_REG_P (result)
3089 && DECL_GIMPLE_REG_P (base_m))
3090 use_it = false;
3091 else if (!TREE_ADDRESSABLE (base_m))
3092 use_it = true;
3095 if (use_it)
3097 var = modify_dest;
3098 use = NULL;
3099 goto done;
3103 gcc_assert (TREE_CODE (TYPE_SIZE_UNIT (callee_type)) == INTEGER_CST);
3105 var = copy_result_decl_to_var (result, id);
3106 DECL_SEEN_IN_BIND_EXPR_P (var) = 1;
3108 /* Do not have the rest of GCC warn about this variable as it should
3109 not be visible to the user. */
3110 TREE_NO_WARNING (var) = 1;
3112 declare_inline_vars (id->block, var);
3114 /* Build the use expr. If the return type of the function was
3115 promoted, convert it back to the expected type. */
3116 use = var;
3117 if (!useless_type_conversion_p (caller_type, TREE_TYPE (var)))
3119 /* If we can match up types by promotion/demotion do so. */
3120 if (fold_convertible_p (caller_type, var))
3121 use = fold_convert (caller_type, var);
3122 else
3124 /* ??? For valid programs we should not end up here.
3125 Still if we end up with truly mismatched types here, fall back
3126 to using a MEM_REF to not leak invalid GIMPLE to the following
3127 passes. */
3128 /* Prevent var from being written into SSA form. */
3129 if (TREE_CODE (TREE_TYPE (var)) == VECTOR_TYPE
3130 || TREE_CODE (TREE_TYPE (var)) == COMPLEX_TYPE)
3131 DECL_GIMPLE_REG_P (var) = false;
3132 else if (is_gimple_reg_type (TREE_TYPE (var)))
3133 TREE_ADDRESSABLE (var) = true;
3134 use = fold_build2 (MEM_REF, caller_type,
3135 build_fold_addr_expr (var),
3136 build_int_cst (ptr_type_node, 0));
3140 STRIP_USELESS_TYPE_CONVERSION (use);
3142 if (DECL_BY_REFERENCE (result))
3144 TREE_ADDRESSABLE (var) = 1;
3145 var = build_fold_addr_expr (var);
3148 done:
3149 /* Register the VAR_DECL as the equivalent for the RESULT_DECL; that
3150 way, when the RESULT_DECL is encountered, it will be
3151 automatically replaced by the VAR_DECL.
3153 When returning by reference, ensure that RESULT_DECL remaps to
3154 gimple_val. */
3155 if (DECL_BY_REFERENCE (result)
3156 && !is_gimple_val (var))
3158 tree temp = create_tmp_var (TREE_TYPE (result), "retvalptr");
3159 insert_decl_map (id, result, temp);
3160 /* When RESULT_DECL is in SSA form, we need to remap and initialize
3161 it's default_def SSA_NAME. */
3162 if (gimple_in_ssa_p (id->src_cfun)
3163 && is_gimple_reg (result))
3165 temp = make_ssa_name (temp, NULL);
3166 insert_decl_map (id, ssa_default_def (id->src_cfun, result), temp);
3168 insert_init_stmt (id, entry_bb, gimple_build_assign (temp, var));
3170 else
3171 insert_decl_map (id, result, var);
3173 /* Remember this so we can ignore it in remap_decls. */
3174 id->retvar = var;
3176 return use;
3179 /* Callback through walk_tree. Determine if a DECL_INITIAL makes reference
3180 to a local label. */
3182 static tree
3183 has_label_address_in_static_1 (tree *nodep, int *walk_subtrees, void *fnp)
3185 tree node = *nodep;
3186 tree fn = (tree) fnp;
3188 if (TREE_CODE (node) == LABEL_DECL && DECL_CONTEXT (node) == fn)
3189 return node;
3191 if (TYPE_P (node))
3192 *walk_subtrees = 0;
3194 return NULL_TREE;
3197 /* Determine if the function can be copied. If so return NULL. If
3198 not return a string describng the reason for failure. */
3200 static const char *
3201 copy_forbidden (struct function *fun, tree fndecl)
3203 const char *reason = fun->cannot_be_copied_reason;
3204 tree decl;
3205 unsigned ix;
3207 /* Only examine the function once. */
3208 if (fun->cannot_be_copied_set)
3209 return reason;
3211 /* We cannot copy a function that receives a non-local goto
3212 because we cannot remap the destination label used in the
3213 function that is performing the non-local goto. */
3214 /* ??? Actually, this should be possible, if we work at it.
3215 No doubt there's just a handful of places that simply
3216 assume it doesn't happen and don't substitute properly. */
3217 if (fun->has_nonlocal_label)
3219 reason = G_("function %q+F can never be copied "
3220 "because it receives a non-local goto");
3221 goto fail;
3224 FOR_EACH_LOCAL_DECL (fun, ix, decl)
3225 if (TREE_CODE (decl) == VAR_DECL
3226 && TREE_STATIC (decl)
3227 && !DECL_EXTERNAL (decl)
3228 && DECL_INITIAL (decl)
3229 && walk_tree_without_duplicates (&DECL_INITIAL (decl),
3230 has_label_address_in_static_1,
3231 fndecl))
3233 reason = G_("function %q+F can never be copied because it saves "
3234 "address of local label in a static variable");
3235 goto fail;
3238 fail:
3239 fun->cannot_be_copied_reason = reason;
3240 fun->cannot_be_copied_set = true;
3241 return reason;
3245 static const char *inline_forbidden_reason;
3247 /* A callback for walk_gimple_seq to handle statements. Returns non-null
3248 iff a function can not be inlined. Also sets the reason why. */
3250 static tree
3251 inline_forbidden_p_stmt (gimple_stmt_iterator *gsi, bool *handled_ops_p,
3252 struct walk_stmt_info *wip)
3254 tree fn = (tree) wip->info;
3255 tree t;
3256 gimple stmt = gsi_stmt (*gsi);
3258 switch (gimple_code (stmt))
3260 case GIMPLE_CALL:
3261 /* Refuse to inline alloca call unless user explicitly forced so as
3262 this may change program's memory overhead drastically when the
3263 function using alloca is called in loop. In GCC present in
3264 SPEC2000 inlining into schedule_block cause it to require 2GB of
3265 RAM instead of 256MB. Don't do so for alloca calls emitted for
3266 VLA objects as those can't cause unbounded growth (they're always
3267 wrapped inside stack_save/stack_restore regions. */
3268 if (gimple_alloca_call_p (stmt)
3269 && !gimple_call_alloca_for_var_p (stmt)
3270 && !lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)))
3272 inline_forbidden_reason
3273 = G_("function %q+F can never be inlined because it uses "
3274 "alloca (override using the always_inline attribute)");
3275 *handled_ops_p = true;
3276 return fn;
3279 t = gimple_call_fndecl (stmt);
3280 if (t == NULL_TREE)
3281 break;
3283 /* We cannot inline functions that call setjmp. */
3284 if (setjmp_call_p (t))
3286 inline_forbidden_reason
3287 = G_("function %q+F can never be inlined because it uses setjmp");
3288 *handled_ops_p = true;
3289 return t;
3292 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL)
3293 switch (DECL_FUNCTION_CODE (t))
3295 /* We cannot inline functions that take a variable number of
3296 arguments. */
3297 case BUILT_IN_VA_START:
3298 case BUILT_IN_NEXT_ARG:
3299 case BUILT_IN_VA_END:
3300 inline_forbidden_reason
3301 = G_("function %q+F can never be inlined because it "
3302 "uses variable argument lists");
3303 *handled_ops_p = true;
3304 return t;
3306 case BUILT_IN_LONGJMP:
3307 /* We can't inline functions that call __builtin_longjmp at
3308 all. The non-local goto machinery really requires the
3309 destination be in a different function. If we allow the
3310 function calling __builtin_longjmp to be inlined into the
3311 function calling __builtin_setjmp, Things will Go Awry. */
3312 inline_forbidden_reason
3313 = G_("function %q+F can never be inlined because "
3314 "it uses setjmp-longjmp exception handling");
3315 *handled_ops_p = true;
3316 return t;
3318 case BUILT_IN_NONLOCAL_GOTO:
3319 /* Similarly. */
3320 inline_forbidden_reason
3321 = G_("function %q+F can never be inlined because "
3322 "it uses non-local goto");
3323 *handled_ops_p = true;
3324 return t;
3326 case BUILT_IN_RETURN:
3327 case BUILT_IN_APPLY_ARGS:
3328 /* If a __builtin_apply_args caller would be inlined,
3329 it would be saving arguments of the function it has
3330 been inlined into. Similarly __builtin_return would
3331 return from the function the inline has been inlined into. */
3332 inline_forbidden_reason
3333 = G_("function %q+F can never be inlined because "
3334 "it uses __builtin_return or __builtin_apply_args");
3335 *handled_ops_p = true;
3336 return t;
3338 default:
3339 break;
3341 break;
3343 case GIMPLE_GOTO:
3344 t = gimple_goto_dest (stmt);
3346 /* We will not inline a function which uses computed goto. The
3347 addresses of its local labels, which may be tucked into
3348 global storage, are of course not constant across
3349 instantiations, which causes unexpected behavior. */
3350 if (TREE_CODE (t) != LABEL_DECL)
3352 inline_forbidden_reason
3353 = G_("function %q+F can never be inlined "
3354 "because it contains a computed goto");
3355 *handled_ops_p = true;
3356 return t;
3358 break;
3360 default:
3361 break;
3364 *handled_ops_p = false;
3365 return NULL_TREE;
3368 /* Return true if FNDECL is a function that cannot be inlined into
3369 another one. */
3371 static bool
3372 inline_forbidden_p (tree fndecl)
3374 struct function *fun = DECL_STRUCT_FUNCTION (fndecl);
3375 struct walk_stmt_info wi;
3376 struct pointer_set_t *visited_nodes;
3377 basic_block bb;
3378 bool forbidden_p = false;
3380 /* First check for shared reasons not to copy the code. */
3381 inline_forbidden_reason = copy_forbidden (fun, fndecl);
3382 if (inline_forbidden_reason != NULL)
3383 return true;
3385 /* Next, walk the statements of the function looking for
3386 constraucts we can't handle, or are non-optimal for inlining. */
3387 visited_nodes = pointer_set_create ();
3388 memset (&wi, 0, sizeof (wi));
3389 wi.info = (void *) fndecl;
3390 wi.pset = visited_nodes;
3392 FOR_EACH_BB_FN (bb, fun)
3394 gimple ret;
3395 gimple_seq seq = bb_seq (bb);
3396 ret = walk_gimple_seq (seq, inline_forbidden_p_stmt, NULL, &wi);
3397 forbidden_p = (ret != NULL);
3398 if (forbidden_p)
3399 break;
3402 pointer_set_destroy (visited_nodes);
3403 return forbidden_p;
3406 /* Return false if the function FNDECL cannot be inlined on account of its
3407 attributes, true otherwise. */
3408 static bool
3409 function_attribute_inlinable_p (const_tree fndecl)
3411 if (targetm.attribute_table)
3413 const_tree a;
3415 for (a = DECL_ATTRIBUTES (fndecl); a; a = TREE_CHAIN (a))
3417 const_tree name = TREE_PURPOSE (a);
3418 int i;
3420 for (i = 0; targetm.attribute_table[i].name != NULL; i++)
3421 if (is_attribute_p (targetm.attribute_table[i].name, name))
3422 return targetm.function_attribute_inlinable_p (fndecl);
3426 return true;
3429 /* Returns nonzero if FN is a function that does not have any
3430 fundamental inline blocking properties. */
3432 bool
3433 tree_inlinable_function_p (tree fn)
3435 bool inlinable = true;
3436 bool do_warning;
3437 tree always_inline;
3439 /* If we've already decided this function shouldn't be inlined,
3440 there's no need to check again. */
3441 if (DECL_UNINLINABLE (fn))
3442 return false;
3444 /* We only warn for functions declared `inline' by the user. */
3445 do_warning = (warn_inline
3446 && DECL_DECLARED_INLINE_P (fn)
3447 && !DECL_NO_INLINE_WARNING_P (fn)
3448 && !DECL_IN_SYSTEM_HEADER (fn));
3450 always_inline = lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn));
3452 if (flag_no_inline
3453 && always_inline == NULL)
3455 if (do_warning)
3456 warning (OPT_Winline, "function %q+F can never be inlined because it "
3457 "is suppressed using -fno-inline", fn);
3458 inlinable = false;
3461 else if (!function_attribute_inlinable_p (fn))
3463 if (do_warning)
3464 warning (OPT_Winline, "function %q+F can never be inlined because it "
3465 "uses attributes conflicting with inlining", fn);
3466 inlinable = false;
3469 else if (inline_forbidden_p (fn))
3471 /* See if we should warn about uninlinable functions. Previously,
3472 some of these warnings would be issued while trying to expand
3473 the function inline, but that would cause multiple warnings
3474 about functions that would for example call alloca. But since
3475 this a property of the function, just one warning is enough.
3476 As a bonus we can now give more details about the reason why a
3477 function is not inlinable. */
3478 if (always_inline)
3479 error (inline_forbidden_reason, fn);
3480 else if (do_warning)
3481 warning (OPT_Winline, inline_forbidden_reason, fn);
3483 inlinable = false;
3486 /* Squirrel away the result so that we don't have to check again. */
3487 DECL_UNINLINABLE (fn) = !inlinable;
3489 return inlinable;
3492 /* Estimate the cost of a memory move. Use machine dependent
3493 word size and take possible memcpy call into account. */
3496 estimate_move_cost (tree type)
3498 HOST_WIDE_INT size;
3500 gcc_assert (!VOID_TYPE_P (type));
3502 if (TREE_CODE (type) == VECTOR_TYPE)
3504 enum machine_mode inner = TYPE_MODE (TREE_TYPE (type));
3505 enum machine_mode simd
3506 = targetm.vectorize.preferred_simd_mode (inner);
3507 int simd_mode_size = GET_MODE_SIZE (simd);
3508 return ((GET_MODE_SIZE (TYPE_MODE (type)) + simd_mode_size - 1)
3509 / simd_mode_size);
3512 size = int_size_in_bytes (type);
3514 if (size < 0 || size > MOVE_MAX_PIECES * MOVE_RATIO (!optimize_size))
3515 /* Cost of a memcpy call, 3 arguments and the call. */
3516 return 4;
3517 else
3518 return ((size + MOVE_MAX_PIECES - 1) / MOVE_MAX_PIECES);
3521 /* Returns cost of operation CODE, according to WEIGHTS */
3523 static int
3524 estimate_operator_cost (enum tree_code code, eni_weights *weights,
3525 tree op1 ATTRIBUTE_UNUSED, tree op2)
3527 switch (code)
3529 /* These are "free" conversions, or their presumed cost
3530 is folded into other operations. */
3531 case RANGE_EXPR:
3532 CASE_CONVERT:
3533 case COMPLEX_EXPR:
3534 case PAREN_EXPR:
3535 case VIEW_CONVERT_EXPR:
3536 return 0;
3538 /* Assign cost of 1 to usual operations.
3539 ??? We may consider mapping RTL costs to this. */
3540 case COND_EXPR:
3541 case VEC_COND_EXPR:
3542 case VEC_PERM_EXPR:
3544 case PLUS_EXPR:
3545 case POINTER_PLUS_EXPR:
3546 case MINUS_EXPR:
3547 case MULT_EXPR:
3548 case MULT_HIGHPART_EXPR:
3549 case FMA_EXPR:
3551 case ADDR_SPACE_CONVERT_EXPR:
3552 case FIXED_CONVERT_EXPR:
3553 case FIX_TRUNC_EXPR:
3555 case NEGATE_EXPR:
3556 case FLOAT_EXPR:
3557 case MIN_EXPR:
3558 case MAX_EXPR:
3559 case ABS_EXPR:
3561 case LSHIFT_EXPR:
3562 case RSHIFT_EXPR:
3563 case LROTATE_EXPR:
3564 case RROTATE_EXPR:
3565 case VEC_LSHIFT_EXPR:
3566 case VEC_RSHIFT_EXPR:
3568 case BIT_IOR_EXPR:
3569 case BIT_XOR_EXPR:
3570 case BIT_AND_EXPR:
3571 case BIT_NOT_EXPR:
3573 case TRUTH_ANDIF_EXPR:
3574 case TRUTH_ORIF_EXPR:
3575 case TRUTH_AND_EXPR:
3576 case TRUTH_OR_EXPR:
3577 case TRUTH_XOR_EXPR:
3578 case TRUTH_NOT_EXPR:
3580 case LT_EXPR:
3581 case LE_EXPR:
3582 case GT_EXPR:
3583 case GE_EXPR:
3584 case EQ_EXPR:
3585 case NE_EXPR:
3586 case ORDERED_EXPR:
3587 case UNORDERED_EXPR:
3589 case UNLT_EXPR:
3590 case UNLE_EXPR:
3591 case UNGT_EXPR:
3592 case UNGE_EXPR:
3593 case UNEQ_EXPR:
3594 case LTGT_EXPR:
3596 case CONJ_EXPR:
3598 case PREDECREMENT_EXPR:
3599 case PREINCREMENT_EXPR:
3600 case POSTDECREMENT_EXPR:
3601 case POSTINCREMENT_EXPR:
3603 case REALIGN_LOAD_EXPR:
3605 case REDUC_MAX_EXPR:
3606 case REDUC_MIN_EXPR:
3607 case REDUC_PLUS_EXPR:
3608 case WIDEN_SUM_EXPR:
3609 case WIDEN_MULT_EXPR:
3610 case DOT_PROD_EXPR:
3611 case WIDEN_MULT_PLUS_EXPR:
3612 case WIDEN_MULT_MINUS_EXPR:
3613 case WIDEN_LSHIFT_EXPR:
3615 case VEC_WIDEN_MULT_HI_EXPR:
3616 case VEC_WIDEN_MULT_LO_EXPR:
3617 case VEC_WIDEN_MULT_EVEN_EXPR:
3618 case VEC_WIDEN_MULT_ODD_EXPR:
3619 case VEC_UNPACK_HI_EXPR:
3620 case VEC_UNPACK_LO_EXPR:
3621 case VEC_UNPACK_FLOAT_HI_EXPR:
3622 case VEC_UNPACK_FLOAT_LO_EXPR:
3623 case VEC_PACK_TRUNC_EXPR:
3624 case VEC_PACK_SAT_EXPR:
3625 case VEC_PACK_FIX_TRUNC_EXPR:
3626 case VEC_WIDEN_LSHIFT_HI_EXPR:
3627 case VEC_WIDEN_LSHIFT_LO_EXPR:
3629 return 1;
3631 /* Few special cases of expensive operations. This is useful
3632 to avoid inlining on functions having too many of these. */
3633 case TRUNC_DIV_EXPR:
3634 case CEIL_DIV_EXPR:
3635 case FLOOR_DIV_EXPR:
3636 case ROUND_DIV_EXPR:
3637 case EXACT_DIV_EXPR:
3638 case TRUNC_MOD_EXPR:
3639 case CEIL_MOD_EXPR:
3640 case FLOOR_MOD_EXPR:
3641 case ROUND_MOD_EXPR:
3642 case RDIV_EXPR:
3643 if (TREE_CODE (op2) != INTEGER_CST)
3644 return weights->div_mod_cost;
3645 return 1;
3647 default:
3648 /* We expect a copy assignment with no operator. */
3649 gcc_assert (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS);
3650 return 0;
3655 /* Estimate number of instructions that will be created by expanding
3656 the statements in the statement sequence STMTS.
3657 WEIGHTS contains weights attributed to various constructs. */
3659 static
3660 int estimate_num_insns_seq (gimple_seq stmts, eni_weights *weights)
3662 int cost;
3663 gimple_stmt_iterator gsi;
3665 cost = 0;
3666 for (gsi = gsi_start (stmts); !gsi_end_p (gsi); gsi_next (&gsi))
3667 cost += estimate_num_insns (gsi_stmt (gsi), weights);
3669 return cost;
3673 /* Estimate number of instructions that will be created by expanding STMT.
3674 WEIGHTS contains weights attributed to various constructs. */
3677 estimate_num_insns (gimple stmt, eni_weights *weights)
3679 unsigned cost, i;
3680 enum gimple_code code = gimple_code (stmt);
3681 tree lhs;
3682 tree rhs;
3684 switch (code)
3686 case GIMPLE_ASSIGN:
3687 /* Try to estimate the cost of assignments. We have three cases to
3688 deal with:
3689 1) Simple assignments to registers;
3690 2) Stores to things that must live in memory. This includes
3691 "normal" stores to scalars, but also assignments of large
3692 structures, or constructors of big arrays;
3694 Let us look at the first two cases, assuming we have "a = b + C":
3695 <GIMPLE_ASSIGN <var_decl "a">
3696 <plus_expr <var_decl "b"> <constant C>>
3697 If "a" is a GIMPLE register, the assignment to it is free on almost
3698 any target, because "a" usually ends up in a real register. Hence
3699 the only cost of this expression comes from the PLUS_EXPR, and we
3700 can ignore the GIMPLE_ASSIGN.
3701 If "a" is not a GIMPLE register, the assignment to "a" will most
3702 likely be a real store, so the cost of the GIMPLE_ASSIGN is the cost
3703 of moving something into "a", which we compute using the function
3704 estimate_move_cost. */
3705 if (gimple_clobber_p (stmt))
3706 return 0; /* ={v} {CLOBBER} stmt expands to nothing. */
3708 lhs = gimple_assign_lhs (stmt);
3709 rhs = gimple_assign_rhs1 (stmt);
3711 cost = 0;
3713 /* Account for the cost of moving to / from memory. */
3714 if (gimple_store_p (stmt))
3715 cost += estimate_move_cost (TREE_TYPE (lhs));
3716 if (gimple_assign_load_p (stmt))
3717 cost += estimate_move_cost (TREE_TYPE (rhs));
3719 cost += estimate_operator_cost (gimple_assign_rhs_code (stmt), weights,
3720 gimple_assign_rhs1 (stmt),
3721 get_gimple_rhs_class (gimple_assign_rhs_code (stmt))
3722 == GIMPLE_BINARY_RHS
3723 ? gimple_assign_rhs2 (stmt) : NULL);
3724 break;
3726 case GIMPLE_COND:
3727 cost = 1 + estimate_operator_cost (gimple_cond_code (stmt), weights,
3728 gimple_op (stmt, 0),
3729 gimple_op (stmt, 1));
3730 break;
3732 case GIMPLE_SWITCH:
3733 /* Take into account cost of the switch + guess 2 conditional jumps for
3734 each case label.
3736 TODO: once the switch expansion logic is sufficiently separated, we can
3737 do better job on estimating cost of the switch. */
3738 if (weights->time_based)
3739 cost = floor_log2 (gimple_switch_num_labels (stmt)) * 2;
3740 else
3741 cost = gimple_switch_num_labels (stmt) * 2;
3742 break;
3744 case GIMPLE_CALL:
3746 tree decl = gimple_call_fndecl (stmt);
3747 struct cgraph_node *node = NULL;
3749 /* Do not special case builtins where we see the body.
3750 This just confuse inliner. */
3751 if (!decl || !(node = cgraph_get_node (decl)) || node->definition)
3753 /* For buitins that are likely expanded to nothing or
3754 inlined do not account operand costs. */
3755 else if (is_simple_builtin (decl))
3756 return 0;
3757 else if (is_inexpensive_builtin (decl))
3758 return weights->target_builtin_call_cost;
3759 else if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
3761 /* We canonicalize x * x to pow (x, 2.0) with -ffast-math, so
3762 specialize the cheap expansion we do here.
3763 ??? This asks for a more general solution. */
3764 switch (DECL_FUNCTION_CODE (decl))
3766 case BUILT_IN_POW:
3767 case BUILT_IN_POWF:
3768 case BUILT_IN_POWL:
3769 if (TREE_CODE (gimple_call_arg (stmt, 1)) == REAL_CST
3770 && REAL_VALUES_EQUAL
3771 (TREE_REAL_CST (gimple_call_arg (stmt, 1)), dconst2))
3772 return estimate_operator_cost (MULT_EXPR, weights,
3773 gimple_call_arg (stmt, 0),
3774 gimple_call_arg (stmt, 0));
3775 break;
3777 default:
3778 break;
3782 cost = node ? weights->call_cost : weights->indirect_call_cost;
3783 if (gimple_call_lhs (stmt))
3784 cost += estimate_move_cost (TREE_TYPE (gimple_call_lhs (stmt)));
3785 for (i = 0; i < gimple_call_num_args (stmt); i++)
3787 tree arg = gimple_call_arg (stmt, i);
3788 cost += estimate_move_cost (TREE_TYPE (arg));
3790 break;
3793 case GIMPLE_RETURN:
3794 return weights->return_cost;
3796 case GIMPLE_GOTO:
3797 case GIMPLE_LABEL:
3798 case GIMPLE_NOP:
3799 case GIMPLE_PHI:
3800 case GIMPLE_PREDICT:
3801 case GIMPLE_DEBUG:
3802 return 0;
3804 case GIMPLE_ASM:
3806 int count = asm_str_count (gimple_asm_string (stmt));
3807 /* 1000 means infinity. This avoids overflows later
3808 with very long asm statements. */
3809 if (count > 1000)
3810 count = 1000;
3811 return count;
3814 case GIMPLE_RESX:
3815 /* This is either going to be an external function call with one
3816 argument, or two register copy statements plus a goto. */
3817 return 2;
3819 case GIMPLE_EH_DISPATCH:
3820 /* ??? This is going to turn into a switch statement. Ideally
3821 we'd have a look at the eh region and estimate the number of
3822 edges involved. */
3823 return 10;
3825 case GIMPLE_BIND:
3826 return estimate_num_insns_seq (gimple_bind_body (stmt), weights);
3828 case GIMPLE_EH_FILTER:
3829 return estimate_num_insns_seq (gimple_eh_filter_failure (stmt), weights);
3831 case GIMPLE_CATCH:
3832 return estimate_num_insns_seq (gimple_catch_handler (stmt), weights);
3834 case GIMPLE_TRY:
3835 return (estimate_num_insns_seq (gimple_try_eval (stmt), weights)
3836 + estimate_num_insns_seq (gimple_try_cleanup (stmt), weights));
3838 /* OpenMP directives are generally very expensive. */
3840 case GIMPLE_OMP_RETURN:
3841 case GIMPLE_OMP_SECTIONS_SWITCH:
3842 case GIMPLE_OMP_ATOMIC_STORE:
3843 case GIMPLE_OMP_CONTINUE:
3844 /* ...except these, which are cheap. */
3845 return 0;
3847 case GIMPLE_OMP_ATOMIC_LOAD:
3848 return weights->omp_cost;
3850 case GIMPLE_OMP_FOR:
3851 return (weights->omp_cost
3852 + estimate_num_insns_seq (gimple_omp_body (stmt), weights)
3853 + estimate_num_insns_seq (gimple_omp_for_pre_body (stmt), weights));
3855 case GIMPLE_OACC_PARALLEL:
3856 case GIMPLE_OMP_PARALLEL:
3857 case GIMPLE_OMP_TASK:
3858 case GIMPLE_OMP_CRITICAL:
3859 case GIMPLE_OMP_MASTER:
3860 case GIMPLE_OMP_TASKGROUP:
3861 case GIMPLE_OMP_ORDERED:
3862 case GIMPLE_OMP_SECTION:
3863 case GIMPLE_OMP_SECTIONS:
3864 case GIMPLE_OMP_SINGLE:
3865 case GIMPLE_OMP_TARGET:
3866 case GIMPLE_OMP_TEAMS:
3867 return (weights->omp_cost
3868 + estimate_num_insns_seq (gimple_omp_body (stmt), weights));
3870 case GIMPLE_TRANSACTION:
3871 return (weights->tm_cost
3872 + estimate_num_insns_seq (gimple_transaction_body (stmt),
3873 weights));
3875 default:
3876 gcc_unreachable ();
3879 return cost;
3882 /* Estimate number of instructions that will be created by expanding
3883 function FNDECL. WEIGHTS contains weights attributed to various
3884 constructs. */
3887 estimate_num_insns_fn (tree fndecl, eni_weights *weights)
3889 struct function *my_function = DECL_STRUCT_FUNCTION (fndecl);
3890 gimple_stmt_iterator bsi;
3891 basic_block bb;
3892 int n = 0;
3894 gcc_assert (my_function && my_function->cfg);
3895 FOR_EACH_BB_FN (bb, my_function)
3897 for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
3898 n += estimate_num_insns (gsi_stmt (bsi), weights);
3901 return n;
3905 /* Initializes weights used by estimate_num_insns. */
3907 void
3908 init_inline_once (void)
3910 eni_size_weights.call_cost = 1;
3911 eni_size_weights.indirect_call_cost = 3;
3912 eni_size_weights.target_builtin_call_cost = 1;
3913 eni_size_weights.div_mod_cost = 1;
3914 eni_size_weights.omp_cost = 40;
3915 eni_size_weights.tm_cost = 10;
3916 eni_size_weights.time_based = false;
3917 eni_size_weights.return_cost = 1;
3919 /* Estimating time for call is difficult, since we have no idea what the
3920 called function does. In the current uses of eni_time_weights,
3921 underestimating the cost does less harm than overestimating it, so
3922 we choose a rather small value here. */
3923 eni_time_weights.call_cost = 10;
3924 eni_time_weights.indirect_call_cost = 15;
3925 eni_time_weights.target_builtin_call_cost = 1;
3926 eni_time_weights.div_mod_cost = 10;
3927 eni_time_weights.omp_cost = 40;
3928 eni_time_weights.tm_cost = 40;
3929 eni_time_weights.time_based = true;
3930 eni_time_weights.return_cost = 2;
3933 /* Estimate the number of instructions in a gimple_seq. */
3936 count_insns_seq (gimple_seq seq, eni_weights *weights)
3938 gimple_stmt_iterator gsi;
3939 int n = 0;
3940 for (gsi = gsi_start (seq); !gsi_end_p (gsi); gsi_next (&gsi))
3941 n += estimate_num_insns (gsi_stmt (gsi), weights);
3943 return n;
3947 /* Install new lexical TREE_BLOCK underneath 'current_block'. */
3949 static void
3950 prepend_lexical_block (tree current_block, tree new_block)
3952 BLOCK_CHAIN (new_block) = BLOCK_SUBBLOCKS (current_block);
3953 BLOCK_SUBBLOCKS (current_block) = new_block;
3954 BLOCK_SUPERCONTEXT (new_block) = current_block;
3957 /* Add local variables from CALLEE to CALLER. */
3959 static inline void
3960 add_local_variables (struct function *callee, struct function *caller,
3961 copy_body_data *id)
3963 tree var;
3964 unsigned ix;
3966 FOR_EACH_LOCAL_DECL (callee, ix, var)
3967 if (!can_be_nonlocal (var, id))
3969 tree new_var = remap_decl (var, id);
3971 /* Remap debug-expressions. */
3972 if (TREE_CODE (new_var) == VAR_DECL
3973 && DECL_HAS_DEBUG_EXPR_P (var)
3974 && new_var != var)
3976 tree tem = DECL_DEBUG_EXPR (var);
3977 bool old_regimplify = id->regimplify;
3978 id->remapping_type_depth++;
3979 walk_tree (&tem, copy_tree_body_r, id, NULL);
3980 id->remapping_type_depth--;
3981 id->regimplify = old_regimplify;
3982 SET_DECL_DEBUG_EXPR (new_var, tem);
3983 DECL_HAS_DEBUG_EXPR_P (new_var) = 1;
3985 add_local_decl (caller, new_var);
3989 /* If STMT is a GIMPLE_CALL, replace it with its inline expansion. */
3991 static bool
3992 expand_call_inline (basic_block bb, gimple stmt, copy_body_data *id)
3994 tree use_retvar;
3995 tree fn;
3996 struct pointer_map_t *st, *dst;
3997 tree return_slot;
3998 tree modify_dest;
3999 location_t saved_location;
4000 struct cgraph_edge *cg_edge;
4001 cgraph_inline_failed_t reason;
4002 basic_block return_block;
4003 edge e;
4004 gimple_stmt_iterator gsi, stmt_gsi;
4005 bool successfully_inlined = FALSE;
4006 bool purge_dead_abnormal_edges;
4008 /* Set input_location here so we get the right instantiation context
4009 if we call instantiate_decl from inlinable_function_p. */
4010 /* FIXME: instantiate_decl isn't called by inlinable_function_p. */
4011 saved_location = input_location;
4012 input_location = gimple_location (stmt);
4014 /* From here on, we're only interested in CALL_EXPRs. */
4015 if (gimple_code (stmt) != GIMPLE_CALL)
4016 goto egress;
4018 cg_edge = cgraph_edge (id->dst_node, stmt);
4019 gcc_checking_assert (cg_edge);
4020 /* First, see if we can figure out what function is being called.
4021 If we cannot, then there is no hope of inlining the function. */
4022 if (cg_edge->indirect_unknown_callee)
4023 goto egress;
4024 fn = cg_edge->callee->decl;
4025 gcc_checking_assert (fn);
4027 /* If FN is a declaration of a function in a nested scope that was
4028 globally declared inline, we don't set its DECL_INITIAL.
4029 However, we can't blindly follow DECL_ABSTRACT_ORIGIN because the
4030 C++ front-end uses it for cdtors to refer to their internal
4031 declarations, that are not real functions. Fortunately those
4032 don't have trees to be saved, so we can tell by checking their
4033 gimple_body. */
4034 if (!DECL_INITIAL (fn)
4035 && DECL_ABSTRACT_ORIGIN (fn)
4036 && gimple_has_body_p (DECL_ABSTRACT_ORIGIN (fn)))
4037 fn = DECL_ABSTRACT_ORIGIN (fn);
4039 /* Don't try to inline functions that are not well-suited to inlining. */
4040 if (cg_edge->inline_failed)
4042 reason = cg_edge->inline_failed;
4043 /* If this call was originally indirect, we do not want to emit any
4044 inlining related warnings or sorry messages because there are no
4045 guarantees regarding those. */
4046 if (cg_edge->indirect_inlining_edge)
4047 goto egress;
4049 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn))
4050 /* For extern inline functions that get redefined we always
4051 silently ignored always_inline flag. Better behaviour would
4052 be to be able to keep both bodies and use extern inline body
4053 for inlining, but we can't do that because frontends overwrite
4054 the body. */
4055 && !cg_edge->callee->local.redefined_extern_inline
4056 /* During early inline pass, report only when optimization is
4057 not turned on. */
4058 && (cgraph_global_info_ready
4059 || !optimize)
4060 /* PR 20090218-1_0.c. Body can be provided by another module. */
4061 && (reason != CIF_BODY_NOT_AVAILABLE || !flag_generate_lto))
4063 error ("inlining failed in call to always_inline %q+F: %s", fn,
4064 cgraph_inline_failed_string (reason));
4065 error ("called from here");
4067 else if (warn_inline
4068 && DECL_DECLARED_INLINE_P (fn)
4069 && !DECL_NO_INLINE_WARNING_P (fn)
4070 && !DECL_IN_SYSTEM_HEADER (fn)
4071 && reason != CIF_UNSPECIFIED
4072 && !lookup_attribute ("noinline", DECL_ATTRIBUTES (fn))
4073 /* Do not warn about not inlined recursive calls. */
4074 && !cgraph_edge_recursive_p (cg_edge)
4075 /* Avoid warnings during early inline pass. */
4076 && cgraph_global_info_ready)
4078 warning (OPT_Winline, "inlining failed in call to %q+F: %s",
4079 fn, _(cgraph_inline_failed_string (reason)));
4080 warning (OPT_Winline, "called from here");
4082 goto egress;
4084 fn = cg_edge->callee->decl;
4085 cgraph_get_body (cg_edge->callee);
4087 #ifdef ENABLE_CHECKING
4088 if (cg_edge->callee->decl != id->dst_node->decl)
4089 verify_cgraph_node (cg_edge->callee);
4090 #endif
4092 /* We will be inlining this callee. */
4093 id->eh_lp_nr = lookup_stmt_eh_lp (stmt);
4095 /* Update the callers EH personality. */
4096 if (DECL_FUNCTION_PERSONALITY (cg_edge->callee->decl))
4097 DECL_FUNCTION_PERSONALITY (cg_edge->caller->decl)
4098 = DECL_FUNCTION_PERSONALITY (cg_edge->callee->decl);
4100 /* Split the block holding the GIMPLE_CALL. */
4101 e = split_block (bb, stmt);
4102 bb = e->src;
4103 return_block = e->dest;
4104 remove_edge (e);
4106 /* split_block splits after the statement; work around this by
4107 moving the call into the second block manually. Not pretty,
4108 but seems easier than doing the CFG manipulation by hand
4109 when the GIMPLE_CALL is in the last statement of BB. */
4110 stmt_gsi = gsi_last_bb (bb);
4111 gsi_remove (&stmt_gsi, false);
4113 /* If the GIMPLE_CALL was in the last statement of BB, it may have
4114 been the source of abnormal edges. In this case, schedule
4115 the removal of dead abnormal edges. */
4116 gsi = gsi_start_bb (return_block);
4117 if (gsi_end_p (gsi))
4119 gsi_insert_after (&gsi, stmt, GSI_NEW_STMT);
4120 purge_dead_abnormal_edges = true;
4122 else
4124 gsi_insert_before (&gsi, stmt, GSI_NEW_STMT);
4125 purge_dead_abnormal_edges = false;
4128 stmt_gsi = gsi_start_bb (return_block);
4130 /* Build a block containing code to initialize the arguments, the
4131 actual inline expansion of the body, and a label for the return
4132 statements within the function to jump to. The type of the
4133 statement expression is the return type of the function call.
4134 ??? If the call does not have an associated block then we will
4135 remap all callee blocks to NULL, effectively dropping most of
4136 its debug information. This should only happen for calls to
4137 artificial decls inserted by the compiler itself. We need to
4138 either link the inlined blocks into the caller block tree or
4139 not refer to them in any way to not break GC for locations. */
4140 if (gimple_block (stmt))
4142 id->block = make_node (BLOCK);
4143 BLOCK_ABSTRACT_ORIGIN (id->block) = fn;
4144 BLOCK_SOURCE_LOCATION (id->block) = LOCATION_LOCUS (input_location);
4145 prepend_lexical_block (gimple_block (stmt), id->block);
4148 /* Local declarations will be replaced by their equivalents in this
4149 map. */
4150 st = id->decl_map;
4151 id->decl_map = pointer_map_create ();
4152 dst = id->debug_map;
4153 id->debug_map = NULL;
4155 /* Record the function we are about to inline. */
4156 id->src_fn = fn;
4157 id->src_node = cg_edge->callee;
4158 id->src_cfun = DECL_STRUCT_FUNCTION (fn);
4159 id->gimple_call = stmt;
4161 gcc_assert (!id->src_cfun->after_inlining);
4163 id->entry_bb = bb;
4164 if (lookup_attribute ("cold", DECL_ATTRIBUTES (fn)))
4166 gimple_stmt_iterator si = gsi_last_bb (bb);
4167 gsi_insert_after (&si, gimple_build_predict (PRED_COLD_FUNCTION,
4168 NOT_TAKEN),
4169 GSI_NEW_STMT);
4171 initialize_inlined_parameters (id, stmt, fn, bb);
4173 if (DECL_INITIAL (fn))
4175 if (gimple_block (stmt))
4177 tree *var;
4179 prepend_lexical_block (id->block,
4180 remap_blocks (DECL_INITIAL (fn), id));
4181 gcc_checking_assert (BLOCK_SUBBLOCKS (id->block)
4182 && (BLOCK_CHAIN (BLOCK_SUBBLOCKS (id->block))
4183 == NULL_TREE));
4184 /* Move vars for PARM_DECLs from DECL_INITIAL block to id->block,
4185 otherwise for DWARF DW_TAG_formal_parameter will not be children of
4186 DW_TAG_inlined_subroutine, but of a DW_TAG_lexical_block
4187 under it. The parameters can be then evaluated in the debugger,
4188 but don't show in backtraces. */
4189 for (var = &BLOCK_VARS (BLOCK_SUBBLOCKS (id->block)); *var; )
4190 if (TREE_CODE (DECL_ORIGIN (*var)) == PARM_DECL)
4192 tree v = *var;
4193 *var = TREE_CHAIN (v);
4194 TREE_CHAIN (v) = BLOCK_VARS (id->block);
4195 BLOCK_VARS (id->block) = v;
4197 else
4198 var = &TREE_CHAIN (*var);
4200 else
4201 remap_blocks_to_null (DECL_INITIAL (fn), id);
4204 /* Return statements in the function body will be replaced by jumps
4205 to the RET_LABEL. */
4206 gcc_assert (DECL_INITIAL (fn));
4207 gcc_assert (TREE_CODE (DECL_INITIAL (fn)) == BLOCK);
4209 /* Find the LHS to which the result of this call is assigned. */
4210 return_slot = NULL;
4211 if (gimple_call_lhs (stmt))
4213 modify_dest = gimple_call_lhs (stmt);
4215 /* The function which we are inlining might not return a value,
4216 in which case we should issue a warning that the function
4217 does not return a value. In that case the optimizers will
4218 see that the variable to which the value is assigned was not
4219 initialized. We do not want to issue a warning about that
4220 uninitialized variable. */
4221 if (DECL_P (modify_dest))
4222 TREE_NO_WARNING (modify_dest) = 1;
4224 if (gimple_call_return_slot_opt_p (stmt))
4226 return_slot = modify_dest;
4227 modify_dest = NULL;
4230 else
4231 modify_dest = NULL;
4233 /* If we are inlining a call to the C++ operator new, we don't want
4234 to use type based alias analysis on the return value. Otherwise
4235 we may get confused if the compiler sees that the inlined new
4236 function returns a pointer which was just deleted. See bug
4237 33407. */
4238 if (DECL_IS_OPERATOR_NEW (fn))
4240 return_slot = NULL;
4241 modify_dest = NULL;
4244 /* Declare the return variable for the function. */
4245 use_retvar = declare_return_variable (id, return_slot, modify_dest, bb);
4247 /* Add local vars in this inlined callee to caller. */
4248 add_local_variables (id->src_cfun, cfun, id);
4250 if (dump_file && (dump_flags & TDF_DETAILS))
4252 fprintf (dump_file, "Inlining ");
4253 print_generic_expr (dump_file, id->src_fn, 0);
4254 fprintf (dump_file, " to ");
4255 print_generic_expr (dump_file, id->dst_fn, 0);
4256 fprintf (dump_file, " with frequency %i\n", cg_edge->frequency);
4259 /* This is it. Duplicate the callee body. Assume callee is
4260 pre-gimplified. Note that we must not alter the caller
4261 function in any way before this point, as this CALL_EXPR may be
4262 a self-referential call; if we're calling ourselves, we need to
4263 duplicate our body before altering anything. */
4264 copy_body (id, bb->count,
4265 GCOV_COMPUTE_SCALE (cg_edge->frequency, CGRAPH_FREQ_BASE),
4266 bb, return_block, NULL);
4268 /* Reset the escaped solution. */
4269 if (cfun->gimple_df)
4270 pt_solution_reset (&cfun->gimple_df->escaped);
4272 /* Clean up. */
4273 if (id->debug_map)
4275 pointer_map_destroy (id->debug_map);
4276 id->debug_map = dst;
4278 pointer_map_destroy (id->decl_map);
4279 id->decl_map = st;
4281 /* Unlink the calls virtual operands before replacing it. */
4282 unlink_stmt_vdef (stmt);
4284 /* If the inlined function returns a result that we care about,
4285 substitute the GIMPLE_CALL with an assignment of the return
4286 variable to the LHS of the call. That is, if STMT was
4287 'a = foo (...)', substitute the call with 'a = USE_RETVAR'. */
4288 if (use_retvar && gimple_call_lhs (stmt))
4290 gimple old_stmt = stmt;
4291 stmt = gimple_build_assign (gimple_call_lhs (stmt), use_retvar);
4292 gsi_replace (&stmt_gsi, stmt, false);
4293 maybe_clean_or_replace_eh_stmt (old_stmt, stmt);
4295 else
4297 /* Handle the case of inlining a function with no return
4298 statement, which causes the return value to become undefined. */
4299 if (gimple_call_lhs (stmt)
4300 && TREE_CODE (gimple_call_lhs (stmt)) == SSA_NAME)
4302 tree name = gimple_call_lhs (stmt);
4303 tree var = SSA_NAME_VAR (name);
4304 tree def = ssa_default_def (cfun, var);
4306 if (def)
4308 /* If the variable is used undefined, make this name
4309 undefined via a move. */
4310 stmt = gimple_build_assign (gimple_call_lhs (stmt), def);
4311 gsi_replace (&stmt_gsi, stmt, true);
4313 else
4315 /* Otherwise make this variable undefined. */
4316 gsi_remove (&stmt_gsi, true);
4317 set_ssa_default_def (cfun, var, name);
4318 SSA_NAME_DEF_STMT (name) = gimple_build_nop ();
4321 else
4322 gsi_remove (&stmt_gsi, true);
4325 if (purge_dead_abnormal_edges)
4327 gimple_purge_dead_eh_edges (return_block);
4328 gimple_purge_dead_abnormal_call_edges (return_block);
4331 /* If the value of the new expression is ignored, that's OK. We
4332 don't warn about this for CALL_EXPRs, so we shouldn't warn about
4333 the equivalent inlined version either. */
4334 if (is_gimple_assign (stmt))
4336 gcc_assert (gimple_assign_single_p (stmt)
4337 || CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (stmt)));
4338 TREE_USED (gimple_assign_rhs1 (stmt)) = 1;
4341 /* Output the inlining info for this abstract function, since it has been
4342 inlined. If we don't do this now, we can lose the information about the
4343 variables in the function when the blocks get blown away as soon as we
4344 remove the cgraph node. */
4345 if (gimple_block (stmt))
4346 (*debug_hooks->outlining_inline_function) (cg_edge->callee->decl);
4348 /* Update callgraph if needed. */
4349 cgraph_remove_node (cg_edge->callee);
4351 id->block = NULL_TREE;
4352 successfully_inlined = TRUE;
4354 egress:
4355 input_location = saved_location;
4356 return successfully_inlined;
4359 /* Expand call statements reachable from STMT_P.
4360 We can only have CALL_EXPRs as the "toplevel" tree code or nested
4361 in a MODIFY_EXPR. */
4363 static bool
4364 gimple_expand_calls_inline (basic_block bb, copy_body_data *id)
4366 gimple_stmt_iterator gsi;
4368 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4370 gimple stmt = gsi_stmt (gsi);
4372 if (is_gimple_call (stmt)
4373 && expand_call_inline (bb, stmt, id))
4374 return true;
4377 return false;
4381 /* Walk all basic blocks created after FIRST and try to fold every statement
4382 in the STATEMENTS pointer set. */
4384 static void
4385 fold_marked_statements (int first, struct pointer_set_t *statements)
4387 for (; first < n_basic_blocks; first++)
4388 if (BASIC_BLOCK (first))
4390 gimple_stmt_iterator gsi;
4392 for (gsi = gsi_start_bb (BASIC_BLOCK (first));
4393 !gsi_end_p (gsi);
4394 gsi_next (&gsi))
4395 if (pointer_set_contains (statements, gsi_stmt (gsi)))
4397 gimple old_stmt = gsi_stmt (gsi);
4398 tree old_decl = is_gimple_call (old_stmt) ? gimple_call_fndecl (old_stmt) : 0;
4400 if (old_decl && DECL_BUILT_IN (old_decl))
4402 /* Folding builtins can create multiple instructions,
4403 we need to look at all of them. */
4404 gimple_stmt_iterator i2 = gsi;
4405 gsi_prev (&i2);
4406 if (fold_stmt (&gsi))
4408 gimple new_stmt;
4409 /* If a builtin at the end of a bb folded into nothing,
4410 the following loop won't work. */
4411 if (gsi_end_p (gsi))
4413 cgraph_update_edges_for_call_stmt (old_stmt,
4414 old_decl, NULL);
4415 break;
4417 if (gsi_end_p (i2))
4418 i2 = gsi_start_bb (BASIC_BLOCK (first));
4419 else
4420 gsi_next (&i2);
4421 while (1)
4423 new_stmt = gsi_stmt (i2);
4424 update_stmt (new_stmt);
4425 cgraph_update_edges_for_call_stmt (old_stmt, old_decl,
4426 new_stmt);
4428 if (new_stmt == gsi_stmt (gsi))
4430 /* It is okay to check only for the very last
4431 of these statements. If it is a throwing
4432 statement nothing will change. If it isn't
4433 this can remove EH edges. If that weren't
4434 correct then because some intermediate stmts
4435 throw, but not the last one. That would mean
4436 we'd have to split the block, which we can't
4437 here and we'd loose anyway. And as builtins
4438 probably never throw, this all
4439 is mood anyway. */
4440 if (maybe_clean_or_replace_eh_stmt (old_stmt,
4441 new_stmt))
4442 gimple_purge_dead_eh_edges (BASIC_BLOCK (first));
4443 break;
4445 gsi_next (&i2);
4449 else if (fold_stmt (&gsi))
4451 /* Re-read the statement from GSI as fold_stmt() may
4452 have changed it. */
4453 gimple new_stmt = gsi_stmt (gsi);
4454 update_stmt (new_stmt);
4456 if (is_gimple_call (old_stmt)
4457 || is_gimple_call (new_stmt))
4458 cgraph_update_edges_for_call_stmt (old_stmt, old_decl,
4459 new_stmt);
4461 if (maybe_clean_or_replace_eh_stmt (old_stmt, new_stmt))
4462 gimple_purge_dead_eh_edges (BASIC_BLOCK (first));
4468 /* Return true if BB has at least one abnormal outgoing edge. */
4470 static inline bool
4471 has_abnormal_outgoing_edge_p (basic_block bb)
4473 edge e;
4474 edge_iterator ei;
4476 FOR_EACH_EDGE (e, ei, bb->succs)
4477 if (e->flags & EDGE_ABNORMAL)
4478 return true;
4480 return false;
4483 /* Expand calls to inline functions in the body of FN. */
4485 unsigned int
4486 optimize_inline_calls (tree fn)
4488 copy_body_data id;
4489 basic_block bb;
4490 int last = n_basic_blocks;
4491 struct gimplify_ctx gctx;
4492 bool inlined_p = false;
4494 /* Clear out ID. */
4495 memset (&id, 0, sizeof (id));
4497 id.src_node = id.dst_node = cgraph_get_node (fn);
4498 gcc_assert (id.dst_node->definition);
4499 id.dst_fn = fn;
4500 /* Or any functions that aren't finished yet. */
4501 if (current_function_decl)
4502 id.dst_fn = current_function_decl;
4504 id.copy_decl = copy_decl_maybe_to_var;
4505 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
4506 id.transform_new_cfg = false;
4507 id.transform_return_to_modify = true;
4508 id.transform_parameter = true;
4509 id.transform_lang_insert_block = NULL;
4510 id.statements_to_fold = pointer_set_create ();
4512 push_gimplify_context (&gctx);
4514 /* We make no attempts to keep dominance info up-to-date. */
4515 free_dominance_info (CDI_DOMINATORS);
4516 free_dominance_info (CDI_POST_DOMINATORS);
4518 /* Register specific gimple functions. */
4519 gimple_register_cfg_hooks ();
4521 /* Reach the trees by walking over the CFG, and note the
4522 enclosing basic-blocks in the call edges. */
4523 /* We walk the blocks going forward, because inlined function bodies
4524 will split id->current_basic_block, and the new blocks will
4525 follow it; we'll trudge through them, processing their CALL_EXPRs
4526 along the way. */
4527 FOR_EACH_BB (bb)
4528 inlined_p |= gimple_expand_calls_inline (bb, &id);
4530 pop_gimplify_context (NULL);
4532 #ifdef ENABLE_CHECKING
4534 struct cgraph_edge *e;
4536 verify_cgraph_node (id.dst_node);
4538 /* Double check that we inlined everything we are supposed to inline. */
4539 for (e = id.dst_node->callees; e; e = e->next_callee)
4540 gcc_assert (e->inline_failed);
4542 #endif
4544 /* Fold queued statements. */
4545 fold_marked_statements (last, id.statements_to_fold);
4546 pointer_set_destroy (id.statements_to_fold);
4548 gcc_assert (!id.debug_stmts.exists ());
4550 /* If we didn't inline into the function there is nothing to do. */
4551 if (!inlined_p)
4552 return 0;
4554 /* Renumber the lexical scoping (non-code) blocks consecutively. */
4555 number_blocks (fn);
4557 delete_unreachable_blocks_update_callgraph (&id);
4558 #ifdef ENABLE_CHECKING
4559 verify_cgraph_node (id.dst_node);
4560 #endif
4562 /* It would be nice to check SSA/CFG/statement consistency here, but it is
4563 not possible yet - the IPA passes might make various functions to not
4564 throw and they don't care to proactively update local EH info. This is
4565 done later in fixup_cfg pass that also execute the verification. */
4566 return (TODO_update_ssa
4567 | TODO_cleanup_cfg
4568 | (gimple_in_ssa_p (cfun) ? TODO_remove_unused_locals : 0)
4569 | (gimple_in_ssa_p (cfun) ? TODO_update_address_taken : 0)
4570 | (profile_status != PROFILE_ABSENT ? TODO_rebuild_frequencies : 0));
4573 /* Passed to walk_tree. Copies the node pointed to, if appropriate. */
4575 tree
4576 copy_tree_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
4578 enum tree_code code = TREE_CODE (*tp);
4579 enum tree_code_class cl = TREE_CODE_CLASS (code);
4581 /* We make copies of most nodes. */
4582 if (IS_EXPR_CODE_CLASS (cl)
4583 || code == TREE_LIST
4584 || code == TREE_VEC
4585 || code == TYPE_DECL
4586 || code == OMP_CLAUSE)
4588 /* Because the chain gets clobbered when we make a copy, we save it
4589 here. */
4590 tree chain = NULL_TREE, new_tree;
4592 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
4593 chain = TREE_CHAIN (*tp);
4595 /* Copy the node. */
4596 new_tree = copy_node (*tp);
4598 *tp = new_tree;
4600 /* Now, restore the chain, if appropriate. That will cause
4601 walk_tree to walk into the chain as well. */
4602 if (code == PARM_DECL
4603 || code == TREE_LIST
4604 || code == OMP_CLAUSE)
4605 TREE_CHAIN (*tp) = chain;
4607 /* For now, we don't update BLOCKs when we make copies. So, we
4608 have to nullify all BIND_EXPRs. */
4609 if (TREE_CODE (*tp) == BIND_EXPR)
4610 BIND_EXPR_BLOCK (*tp) = NULL_TREE;
4612 else if (code == CONSTRUCTOR)
4614 /* CONSTRUCTOR nodes need special handling because
4615 we need to duplicate the vector of elements. */
4616 tree new_tree;
4618 new_tree = copy_node (*tp);
4619 CONSTRUCTOR_ELTS (new_tree) = vec_safe_copy (CONSTRUCTOR_ELTS (*tp));
4620 *tp = new_tree;
4622 else if (code == STATEMENT_LIST)
4623 /* We used to just abort on STATEMENT_LIST, but we can run into them
4624 with statement-expressions (c++/40975). */
4625 copy_statement_list (tp);
4626 else if (TREE_CODE_CLASS (code) == tcc_type)
4627 *walk_subtrees = 0;
4628 else if (TREE_CODE_CLASS (code) == tcc_declaration)
4629 *walk_subtrees = 0;
4630 else if (TREE_CODE_CLASS (code) == tcc_constant)
4631 *walk_subtrees = 0;
4632 return NULL_TREE;
4635 /* The SAVE_EXPR pointed to by TP is being copied. If ST contains
4636 information indicating to what new SAVE_EXPR this one should be mapped,
4637 use that one. Otherwise, create a new node and enter it in ST. FN is
4638 the function into which the copy will be placed. */
4640 static void
4641 remap_save_expr (tree *tp, void *st_, int *walk_subtrees)
4643 struct pointer_map_t *st = (struct pointer_map_t *) st_;
4644 tree *n;
4645 tree t;
4647 /* See if we already encountered this SAVE_EXPR. */
4648 n = (tree *) pointer_map_contains (st, *tp);
4650 /* If we didn't already remap this SAVE_EXPR, do so now. */
4651 if (!n)
4653 t = copy_node (*tp);
4655 /* Remember this SAVE_EXPR. */
4656 *pointer_map_insert (st, *tp) = t;
4657 /* Make sure we don't remap an already-remapped SAVE_EXPR. */
4658 *pointer_map_insert (st, t) = t;
4660 else
4662 /* We've already walked into this SAVE_EXPR; don't do it again. */
4663 *walk_subtrees = 0;
4664 t = *n;
4667 /* Replace this SAVE_EXPR with the copy. */
4668 *tp = t;
4671 /* Called via walk_gimple_seq. If *GSIP points to a GIMPLE_LABEL for a local
4672 label, copies the declaration and enters it in the splay_tree in DATA (which
4673 is really a 'copy_body_data *'. */
4675 static tree
4676 mark_local_labels_stmt (gimple_stmt_iterator *gsip,
4677 bool *handled_ops_p ATTRIBUTE_UNUSED,
4678 struct walk_stmt_info *wi)
4680 copy_body_data *id = (copy_body_data *) wi->info;
4681 gimple stmt = gsi_stmt (*gsip);
4683 if (gimple_code (stmt) == GIMPLE_LABEL)
4685 tree decl = gimple_label_label (stmt);
4687 /* Copy the decl and remember the copy. */
4688 insert_decl_map (id, decl, id->copy_decl (decl, id));
4691 return NULL_TREE;
4695 /* Called via walk_gimple_seq by copy_gimple_seq_and_replace_local.
4696 Using the splay_tree pointed to by ST (which is really a `splay_tree'),
4697 remaps all local declarations to appropriate replacements in gimple
4698 operands. */
4700 static tree
4701 replace_locals_op (tree *tp, int *walk_subtrees, void *data)
4703 struct walk_stmt_info *wi = (struct walk_stmt_info*) data;
4704 copy_body_data *id = (copy_body_data *) wi->info;
4705 struct pointer_map_t *st = id->decl_map;
4706 tree *n;
4707 tree expr = *tp;
4709 /* Only a local declaration (variable or label). */
4710 if ((TREE_CODE (expr) == VAR_DECL
4711 && !TREE_STATIC (expr))
4712 || TREE_CODE (expr) == LABEL_DECL)
4714 /* Lookup the declaration. */
4715 n = (tree *) pointer_map_contains (st, expr);
4717 /* If it's there, remap it. */
4718 if (n)
4719 *tp = *n;
4720 *walk_subtrees = 0;
4722 else if (TREE_CODE (expr) == STATEMENT_LIST
4723 || TREE_CODE (expr) == BIND_EXPR
4724 || TREE_CODE (expr) == SAVE_EXPR)
4725 gcc_unreachable ();
4726 else if (TREE_CODE (expr) == TARGET_EXPR)
4728 /* Don't mess with a TARGET_EXPR that hasn't been expanded.
4729 It's OK for this to happen if it was part of a subtree that
4730 isn't immediately expanded, such as operand 2 of another
4731 TARGET_EXPR. */
4732 if (!TREE_OPERAND (expr, 1))
4734 TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 3);
4735 TREE_OPERAND (expr, 3) = NULL_TREE;
4739 /* Keep iterating. */
4740 return NULL_TREE;
4744 /* Called via walk_gimple_seq by copy_gimple_seq_and_replace_local.
4745 Using the splay_tree pointed to by ST (which is really a `splay_tree'),
4746 remaps all local declarations to appropriate replacements in gimple
4747 statements. */
4749 static tree
4750 replace_locals_stmt (gimple_stmt_iterator *gsip,
4751 bool *handled_ops_p ATTRIBUTE_UNUSED,
4752 struct walk_stmt_info *wi)
4754 copy_body_data *id = (copy_body_data *) wi->info;
4755 gimple stmt = gsi_stmt (*gsip);
4757 if (gimple_code (stmt) == GIMPLE_BIND)
4759 tree block = gimple_bind_block (stmt);
4761 if (block)
4763 remap_block (&block, id);
4764 gimple_bind_set_block (stmt, block);
4767 /* This will remap a lot of the same decls again, but this should be
4768 harmless. */
4769 if (gimple_bind_vars (stmt))
4770 gimple_bind_set_vars (stmt, remap_decls (gimple_bind_vars (stmt),
4771 NULL, id));
4774 /* Keep iterating. */
4775 return NULL_TREE;
4779 /* Copies everything in SEQ and replaces variables and labels local to
4780 current_function_decl. */
4782 gimple_seq
4783 copy_gimple_seq_and_replace_locals (gimple_seq seq)
4785 copy_body_data id;
4786 struct walk_stmt_info wi;
4787 struct pointer_set_t *visited;
4788 gimple_seq copy;
4790 /* There's nothing to do for NULL_TREE. */
4791 if (seq == NULL)
4792 return seq;
4794 /* Set up ID. */
4795 memset (&id, 0, sizeof (id));
4796 id.src_fn = current_function_decl;
4797 id.dst_fn = current_function_decl;
4798 id.decl_map = pointer_map_create ();
4799 id.debug_map = NULL;
4801 id.copy_decl = copy_decl_no_change;
4802 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
4803 id.transform_new_cfg = false;
4804 id.transform_return_to_modify = false;
4805 id.transform_parameter = false;
4806 id.transform_lang_insert_block = NULL;
4808 /* Walk the tree once to find local labels. */
4809 memset (&wi, 0, sizeof (wi));
4810 visited = pointer_set_create ();
4811 wi.info = &id;
4812 wi.pset = visited;
4813 walk_gimple_seq (seq, mark_local_labels_stmt, NULL, &wi);
4814 pointer_set_destroy (visited);
4816 copy = gimple_seq_copy (seq);
4818 /* Walk the copy, remapping decls. */
4819 memset (&wi, 0, sizeof (wi));
4820 wi.info = &id;
4821 walk_gimple_seq (copy, replace_locals_stmt, replace_locals_op, &wi);
4823 /* Clean up. */
4824 pointer_map_destroy (id.decl_map);
4825 if (id.debug_map)
4826 pointer_map_destroy (id.debug_map);
4828 return copy;
4832 /* Allow someone to determine if SEARCH is a child of TOP from gdb. */
4834 static tree
4835 debug_find_tree_1 (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED, void *data)
4837 if (*tp == data)
4838 return (tree) data;
4839 else
4840 return NULL;
4843 DEBUG_FUNCTION bool
4844 debug_find_tree (tree top, tree search)
4846 return walk_tree_without_duplicates (&top, debug_find_tree_1, search) != 0;
4850 /* Declare the variables created by the inliner. Add all the variables in
4851 VARS to BIND_EXPR. */
4853 static void
4854 declare_inline_vars (tree block, tree vars)
4856 tree t;
4857 for (t = vars; t; t = DECL_CHAIN (t))
4859 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
4860 gcc_assert (!TREE_STATIC (t) && !TREE_ASM_WRITTEN (t));
4861 add_local_decl (cfun, t);
4864 if (block)
4865 BLOCK_VARS (block) = chainon (BLOCK_VARS (block), vars);
4868 /* Copy NODE (which must be a DECL). The DECL originally was in the FROM_FN,
4869 but now it will be in the TO_FN. PARM_TO_VAR means enable PARM_DECL to
4870 VAR_DECL translation. */
4872 static tree
4873 copy_decl_for_dup_finish (copy_body_data *id, tree decl, tree copy)
4875 /* Don't generate debug information for the copy if we wouldn't have
4876 generated it for the copy either. */
4877 DECL_ARTIFICIAL (copy) = DECL_ARTIFICIAL (decl);
4878 DECL_IGNORED_P (copy) = DECL_IGNORED_P (decl);
4880 /* Set the DECL_ABSTRACT_ORIGIN so the debugging routines know what
4881 declaration inspired this copy. */
4882 DECL_ABSTRACT_ORIGIN (copy) = DECL_ORIGIN (decl);
4884 /* The new variable/label has no RTL, yet. */
4885 if (CODE_CONTAINS_STRUCT (TREE_CODE (copy), TS_DECL_WRTL)
4886 && !TREE_STATIC (copy) && !DECL_EXTERNAL (copy))
4887 SET_DECL_RTL (copy, 0);
4889 /* These args would always appear unused, if not for this. */
4890 TREE_USED (copy) = 1;
4892 /* Set the context for the new declaration. */
4893 if (!DECL_CONTEXT (decl))
4894 /* Globals stay global. */
4896 else if (DECL_CONTEXT (decl) != id->src_fn)
4897 /* Things that weren't in the scope of the function we're inlining
4898 from aren't in the scope we're inlining to, either. */
4900 else if (TREE_STATIC (decl))
4901 /* Function-scoped static variables should stay in the original
4902 function. */
4904 else
4905 /* Ordinary automatic local variables are now in the scope of the
4906 new function. */
4907 DECL_CONTEXT (copy) = id->dst_fn;
4909 return copy;
4912 static tree
4913 copy_decl_to_var (tree decl, copy_body_data *id)
4915 tree copy, type;
4917 gcc_assert (TREE_CODE (decl) == PARM_DECL
4918 || TREE_CODE (decl) == RESULT_DECL);
4920 type = TREE_TYPE (decl);
4922 copy = build_decl (DECL_SOURCE_LOCATION (id->dst_fn),
4923 VAR_DECL, DECL_NAME (decl), type);
4924 if (DECL_PT_UID_SET_P (decl))
4925 SET_DECL_PT_UID (copy, DECL_PT_UID (decl));
4926 TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (decl);
4927 TREE_READONLY (copy) = TREE_READONLY (decl);
4928 TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (decl);
4929 DECL_GIMPLE_REG_P (copy) = DECL_GIMPLE_REG_P (decl);
4931 return copy_decl_for_dup_finish (id, decl, copy);
4934 /* Like copy_decl_to_var, but create a return slot object instead of a
4935 pointer variable for return by invisible reference. */
4937 static tree
4938 copy_result_decl_to_var (tree decl, copy_body_data *id)
4940 tree copy, type;
4942 gcc_assert (TREE_CODE (decl) == PARM_DECL
4943 || TREE_CODE (decl) == RESULT_DECL);
4945 type = TREE_TYPE (decl);
4946 if (DECL_BY_REFERENCE (decl))
4947 type = TREE_TYPE (type);
4949 copy = build_decl (DECL_SOURCE_LOCATION (id->dst_fn),
4950 VAR_DECL, DECL_NAME (decl), type);
4951 if (DECL_PT_UID_SET_P (decl))
4952 SET_DECL_PT_UID (copy, DECL_PT_UID (decl));
4953 TREE_READONLY (copy) = TREE_READONLY (decl);
4954 TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (decl);
4955 if (!DECL_BY_REFERENCE (decl))
4957 TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (decl);
4958 DECL_GIMPLE_REG_P (copy) = DECL_GIMPLE_REG_P (decl);
4961 return copy_decl_for_dup_finish (id, decl, copy);
4964 tree
4965 copy_decl_no_change (tree decl, copy_body_data *id)
4967 tree copy;
4969 copy = copy_node (decl);
4971 /* The COPY is not abstract; it will be generated in DST_FN. */
4972 DECL_ABSTRACT (copy) = 0;
4973 lang_hooks.dup_lang_specific_decl (copy);
4975 /* TREE_ADDRESSABLE isn't used to indicate that a label's address has
4976 been taken; it's for internal bookkeeping in expand_goto_internal. */
4977 if (TREE_CODE (copy) == LABEL_DECL)
4979 TREE_ADDRESSABLE (copy) = 0;
4980 LABEL_DECL_UID (copy) = -1;
4983 return copy_decl_for_dup_finish (id, decl, copy);
4986 static tree
4987 copy_decl_maybe_to_var (tree decl, copy_body_data *id)
4989 if (TREE_CODE (decl) == PARM_DECL || TREE_CODE (decl) == RESULT_DECL)
4990 return copy_decl_to_var (decl, id);
4991 else
4992 return copy_decl_no_change (decl, id);
4995 /* Return a copy of the function's argument tree. */
4996 static tree
4997 copy_arguments_for_versioning (tree orig_parm, copy_body_data * id,
4998 bitmap args_to_skip, tree *vars)
5000 tree arg, *parg;
5001 tree new_parm = NULL;
5002 int i = 0;
5004 parg = &new_parm;
5006 for (arg = orig_parm; arg; arg = DECL_CHAIN (arg), i++)
5007 if (!args_to_skip || !bitmap_bit_p (args_to_skip, i))
5009 tree new_tree = remap_decl (arg, id);
5010 if (TREE_CODE (new_tree) != PARM_DECL)
5011 new_tree = id->copy_decl (arg, id);
5012 lang_hooks.dup_lang_specific_decl (new_tree);
5013 *parg = new_tree;
5014 parg = &DECL_CHAIN (new_tree);
5016 else if (!pointer_map_contains (id->decl_map, arg))
5018 /* Make an equivalent VAR_DECL. If the argument was used
5019 as temporary variable later in function, the uses will be
5020 replaced by local variable. */
5021 tree var = copy_decl_to_var (arg, id);
5022 insert_decl_map (id, arg, var);
5023 /* Declare this new variable. */
5024 DECL_CHAIN (var) = *vars;
5025 *vars = var;
5027 return new_parm;
5030 /* Return a copy of the function's static chain. */
5031 static tree
5032 copy_static_chain (tree static_chain, copy_body_data * id)
5034 tree *chain_copy, *pvar;
5036 chain_copy = &static_chain;
5037 for (pvar = chain_copy; *pvar; pvar = &DECL_CHAIN (*pvar))
5039 tree new_tree = remap_decl (*pvar, id);
5040 lang_hooks.dup_lang_specific_decl (new_tree);
5041 DECL_CHAIN (new_tree) = DECL_CHAIN (*pvar);
5042 *pvar = new_tree;
5044 return static_chain;
5047 /* Return true if the function is allowed to be versioned.
5048 This is a guard for the versioning functionality. */
5050 bool
5051 tree_versionable_function_p (tree fndecl)
5053 return (!lookup_attribute ("noclone", DECL_ATTRIBUTES (fndecl))
5054 && copy_forbidden (DECL_STRUCT_FUNCTION (fndecl), fndecl) == NULL);
5057 /* Delete all unreachable basic blocks and update callgraph.
5058 Doing so is somewhat nontrivial because we need to update all clones and
5059 remove inline function that become unreachable. */
5061 static bool
5062 delete_unreachable_blocks_update_callgraph (copy_body_data *id)
5064 bool changed = false;
5065 basic_block b, next_bb;
5067 find_unreachable_blocks ();
5069 /* Delete all unreachable basic blocks. */
5071 for (b = ENTRY_BLOCK_PTR->next_bb; b != EXIT_BLOCK_PTR; b = next_bb)
5073 next_bb = b->next_bb;
5075 if (!(b->flags & BB_REACHABLE))
5077 gimple_stmt_iterator bsi;
5079 for (bsi = gsi_start_bb (b); !gsi_end_p (bsi); gsi_next (&bsi))
5081 struct cgraph_edge *e;
5082 struct cgraph_node *node;
5084 ipa_remove_stmt_references (id->dst_node, gsi_stmt (bsi));
5086 if (gimple_code (gsi_stmt (bsi)) == GIMPLE_CALL
5087 &&(e = cgraph_edge (id->dst_node, gsi_stmt (bsi))) != NULL)
5089 if (!e->inline_failed)
5090 cgraph_remove_node_and_inline_clones (e->callee, id->dst_node);
5091 else
5092 cgraph_remove_edge (e);
5094 if (id->transform_call_graph_edges == CB_CGE_MOVE_CLONES
5095 && id->dst_node->clones)
5096 for (node = id->dst_node->clones; node != id->dst_node;)
5098 ipa_remove_stmt_references (node, gsi_stmt (bsi));
5099 if (gimple_code (gsi_stmt (bsi)) == GIMPLE_CALL
5100 && (e = cgraph_edge (node, gsi_stmt (bsi))) != NULL)
5102 if (!e->inline_failed)
5103 cgraph_remove_node_and_inline_clones (e->callee, id->dst_node);
5104 else
5105 cgraph_remove_edge (e);
5108 if (node->clones)
5109 node = node->clones;
5110 else if (node->next_sibling_clone)
5111 node = node->next_sibling_clone;
5112 else
5114 while (node != id->dst_node && !node->next_sibling_clone)
5115 node = node->clone_of;
5116 if (node != id->dst_node)
5117 node = node->next_sibling_clone;
5121 delete_basic_block (b);
5122 changed = true;
5126 return changed;
5129 /* Update clone info after duplication. */
5131 static void
5132 update_clone_info (copy_body_data * id)
5134 struct cgraph_node *node;
5135 if (!id->dst_node->clones)
5136 return;
5137 for (node = id->dst_node->clones; node != id->dst_node;)
5139 /* First update replace maps to match the new body. */
5140 if (node->clone.tree_map)
5142 unsigned int i;
5143 for (i = 0; i < vec_safe_length (node->clone.tree_map); i++)
5145 struct ipa_replace_map *replace_info;
5146 replace_info = (*node->clone.tree_map)[i];
5147 walk_tree (&replace_info->old_tree, copy_tree_body_r, id, NULL);
5148 walk_tree (&replace_info->new_tree, copy_tree_body_r, id, NULL);
5151 if (node->clones)
5152 node = node->clones;
5153 else if (node->next_sibling_clone)
5154 node = node->next_sibling_clone;
5155 else
5157 while (node != id->dst_node && !node->next_sibling_clone)
5158 node = node->clone_of;
5159 if (node != id->dst_node)
5160 node = node->next_sibling_clone;
5165 /* Create a copy of a function's tree.
5166 OLD_DECL and NEW_DECL are FUNCTION_DECL tree nodes
5167 of the original function and the new copied function
5168 respectively. In case we want to replace a DECL
5169 tree with another tree while duplicating the function's
5170 body, TREE_MAP represents the mapping between these
5171 trees. If UPDATE_CLONES is set, the call_stmt fields
5172 of edges of clones of the function will be updated.
5174 If non-NULL ARGS_TO_SKIP determine function parameters to remove
5175 from new version.
5176 If SKIP_RETURN is true, the new version will return void.
5177 If non-NULL BLOCK_TO_COPY determine what basic blocks to copy.
5178 If non_NULL NEW_ENTRY determine new entry BB of the clone.
5180 void
5181 tree_function_versioning (tree old_decl, tree new_decl,
5182 vec<ipa_replace_map_p, va_gc> *tree_map,
5183 bool update_clones, bitmap args_to_skip,
5184 bool skip_return, bitmap blocks_to_copy,
5185 basic_block new_entry)
5187 struct cgraph_node *old_version_node;
5188 struct cgraph_node *new_version_node;
5189 copy_body_data id;
5190 tree p;
5191 unsigned i;
5192 struct ipa_replace_map *replace_info;
5193 basic_block old_entry_block, bb;
5194 vec<gimple> init_stmts;
5195 init_stmts.create (10);
5196 tree vars = NULL_TREE;
5198 gcc_assert (TREE_CODE (old_decl) == FUNCTION_DECL
5199 && TREE_CODE (new_decl) == FUNCTION_DECL);
5200 DECL_POSSIBLY_INLINED (old_decl) = 1;
5202 old_version_node = cgraph_get_node (old_decl);
5203 gcc_checking_assert (old_version_node);
5204 new_version_node = cgraph_get_node (new_decl);
5205 gcc_checking_assert (new_version_node);
5207 /* Copy over debug args. */
5208 if (DECL_HAS_DEBUG_ARGS_P (old_decl))
5210 vec<tree, va_gc> **new_debug_args, **old_debug_args;
5211 gcc_checking_assert (decl_debug_args_lookup (new_decl) == NULL);
5212 DECL_HAS_DEBUG_ARGS_P (new_decl) = 0;
5213 old_debug_args = decl_debug_args_lookup (old_decl);
5214 if (old_debug_args)
5216 new_debug_args = decl_debug_args_insert (new_decl);
5217 *new_debug_args = vec_safe_copy (*old_debug_args);
5221 /* Output the inlining info for this abstract function, since it has been
5222 inlined. If we don't do this now, we can lose the information about the
5223 variables in the function when the blocks get blown away as soon as we
5224 remove the cgraph node. */
5225 (*debug_hooks->outlining_inline_function) (old_decl);
5227 DECL_ARTIFICIAL (new_decl) = 1;
5228 DECL_ABSTRACT_ORIGIN (new_decl) = DECL_ORIGIN (old_decl);
5229 if (DECL_ORIGIN (old_decl) == old_decl)
5230 old_version_node->used_as_abstract_origin = true;
5231 DECL_FUNCTION_PERSONALITY (new_decl) = DECL_FUNCTION_PERSONALITY (old_decl);
5233 /* Prepare the data structures for the tree copy. */
5234 memset (&id, 0, sizeof (id));
5236 /* Generate a new name for the new version. */
5237 id.statements_to_fold = pointer_set_create ();
5239 id.decl_map = pointer_map_create ();
5240 id.debug_map = NULL;
5241 id.src_fn = old_decl;
5242 id.dst_fn = new_decl;
5243 id.src_node = old_version_node;
5244 id.dst_node = new_version_node;
5245 id.src_cfun = DECL_STRUCT_FUNCTION (old_decl);
5246 id.blocks_to_copy = blocks_to_copy;
5247 if (id.src_node->ipa_transforms_to_apply.exists ())
5249 vec<ipa_opt_pass> old_transforms_to_apply
5250 = id.dst_node->ipa_transforms_to_apply;
5251 unsigned int i;
5253 id.dst_node->ipa_transforms_to_apply
5254 = id.src_node->ipa_transforms_to_apply.copy ();
5255 for (i = 0; i < old_transforms_to_apply.length (); i++)
5256 id.dst_node->ipa_transforms_to_apply.safe_push (old_transforms_to_apply[i]);
5257 old_transforms_to_apply.release ();
5260 id.copy_decl = copy_decl_no_change;
5261 id.transform_call_graph_edges
5262 = update_clones ? CB_CGE_MOVE_CLONES : CB_CGE_MOVE;
5263 id.transform_new_cfg = true;
5264 id.transform_return_to_modify = false;
5265 id.transform_parameter = false;
5266 id.transform_lang_insert_block = NULL;
5268 old_entry_block = ENTRY_BLOCK_PTR_FOR_FUNCTION
5269 (DECL_STRUCT_FUNCTION (old_decl));
5270 DECL_RESULT (new_decl) = DECL_RESULT (old_decl);
5271 DECL_ARGUMENTS (new_decl) = DECL_ARGUMENTS (old_decl);
5272 initialize_cfun (new_decl, old_decl,
5273 old_entry_block->count);
5274 DECL_STRUCT_FUNCTION (new_decl)->gimple_df->ipa_pta
5275 = id.src_cfun->gimple_df->ipa_pta;
5277 /* Copy the function's static chain. */
5278 p = DECL_STRUCT_FUNCTION (old_decl)->static_chain_decl;
5279 if (p)
5280 DECL_STRUCT_FUNCTION (new_decl)->static_chain_decl =
5281 copy_static_chain (DECL_STRUCT_FUNCTION (old_decl)->static_chain_decl,
5282 &id);
5284 /* If there's a tree_map, prepare for substitution. */
5285 if (tree_map)
5286 for (i = 0; i < tree_map->length (); i++)
5288 gimple init;
5289 replace_info = (*tree_map)[i];
5290 if (replace_info->replace_p)
5292 if (!replace_info->old_tree)
5294 int i = replace_info->parm_num;
5295 tree parm;
5296 tree req_type;
5298 for (parm = DECL_ARGUMENTS (old_decl); i; parm = DECL_CHAIN (parm))
5299 i --;
5300 replace_info->old_tree = parm;
5301 req_type = TREE_TYPE (parm);
5302 if (!useless_type_conversion_p (req_type, TREE_TYPE (replace_info->new_tree)))
5304 if (fold_convertible_p (req_type, replace_info->new_tree))
5305 replace_info->new_tree = fold_build1 (NOP_EXPR, req_type, replace_info->new_tree);
5306 else if (TYPE_SIZE (req_type) == TYPE_SIZE (TREE_TYPE (replace_info->new_tree)))
5307 replace_info->new_tree = fold_build1 (VIEW_CONVERT_EXPR, req_type, replace_info->new_tree);
5308 else
5310 if (dump_file)
5312 fprintf (dump_file, " const ");
5313 print_generic_expr (dump_file, replace_info->new_tree, 0);
5314 fprintf (dump_file, " can't be converted to param ");
5315 print_generic_expr (dump_file, parm, 0);
5316 fprintf (dump_file, "\n");
5318 replace_info->old_tree = NULL;
5322 else
5323 gcc_assert (TREE_CODE (replace_info->old_tree) == PARM_DECL);
5324 if (replace_info->old_tree)
5326 init = setup_one_parameter (&id, replace_info->old_tree,
5327 replace_info->new_tree, id.src_fn,
5328 NULL,
5329 &vars);
5330 if (init)
5331 init_stmts.safe_push (init);
5335 /* Copy the function's arguments. */
5336 if (DECL_ARGUMENTS (old_decl) != NULL_TREE)
5337 DECL_ARGUMENTS (new_decl) =
5338 copy_arguments_for_versioning (DECL_ARGUMENTS (old_decl), &id,
5339 args_to_skip, &vars);
5341 DECL_INITIAL (new_decl) = remap_blocks (DECL_INITIAL (id.src_fn), &id);
5342 BLOCK_SUPERCONTEXT (DECL_INITIAL (new_decl)) = new_decl;
5344 declare_inline_vars (DECL_INITIAL (new_decl), vars);
5346 if (!vec_safe_is_empty (DECL_STRUCT_FUNCTION (old_decl)->local_decls))
5347 /* Add local vars. */
5348 add_local_variables (DECL_STRUCT_FUNCTION (old_decl), cfun, &id);
5350 if (DECL_RESULT (old_decl) == NULL_TREE)
5352 else if (skip_return && !VOID_TYPE_P (TREE_TYPE (DECL_RESULT (old_decl))))
5354 DECL_RESULT (new_decl)
5355 = build_decl (DECL_SOURCE_LOCATION (DECL_RESULT (old_decl)),
5356 RESULT_DECL, NULL_TREE, void_type_node);
5357 DECL_CONTEXT (DECL_RESULT (new_decl)) = new_decl;
5358 cfun->returns_struct = 0;
5359 cfun->returns_pcc_struct = 0;
5361 else
5363 tree old_name;
5364 DECL_RESULT (new_decl) = remap_decl (DECL_RESULT (old_decl), &id);
5365 lang_hooks.dup_lang_specific_decl (DECL_RESULT (new_decl));
5366 if (gimple_in_ssa_p (id.src_cfun)
5367 && DECL_BY_REFERENCE (DECL_RESULT (old_decl))
5368 && (old_name = ssa_default_def (id.src_cfun, DECL_RESULT (old_decl))))
5370 tree new_name = make_ssa_name (DECL_RESULT (new_decl), NULL);
5371 insert_decl_map (&id, old_name, new_name);
5372 SSA_NAME_DEF_STMT (new_name) = gimple_build_nop ();
5373 set_ssa_default_def (cfun, DECL_RESULT (new_decl), new_name);
5377 /* Set up the destination functions loop tree. */
5378 if (loops_for_fn (DECL_STRUCT_FUNCTION (old_decl)) != NULL)
5380 cfun->curr_properties &= ~PROP_loops;
5381 loop_optimizer_init (AVOID_CFG_MODIFICATIONS);
5382 cfun->curr_properties |= PROP_loops;
5385 /* Copy the Function's body. */
5386 copy_body (&id, old_entry_block->count, REG_BR_PROB_BASE,
5387 ENTRY_BLOCK_PTR, EXIT_BLOCK_PTR, new_entry);
5389 /* Renumber the lexical scoping (non-code) blocks consecutively. */
5390 number_blocks (new_decl);
5392 /* We want to create the BB unconditionally, so that the addition of
5393 debug stmts doesn't affect BB count, which may in the end cause
5394 codegen differences. */
5395 bb = split_edge (single_succ_edge (ENTRY_BLOCK_PTR));
5396 while (init_stmts.length ())
5397 insert_init_stmt (&id, bb, init_stmts.pop ());
5398 update_clone_info (&id);
5400 /* Remap the nonlocal_goto_save_area, if any. */
5401 if (cfun->nonlocal_goto_save_area)
5403 struct walk_stmt_info wi;
5405 memset (&wi, 0, sizeof (wi));
5406 wi.info = &id;
5407 walk_tree (&cfun->nonlocal_goto_save_area, remap_gimple_op_r, &wi, NULL);
5410 /* Clean up. */
5411 pointer_map_destroy (id.decl_map);
5412 if (id.debug_map)
5413 pointer_map_destroy (id.debug_map);
5414 free_dominance_info (CDI_DOMINATORS);
5415 free_dominance_info (CDI_POST_DOMINATORS);
5417 fold_marked_statements (0, id.statements_to_fold);
5418 pointer_set_destroy (id.statements_to_fold);
5419 fold_cond_expr_cond ();
5420 delete_unreachable_blocks_update_callgraph (&id);
5421 if (id.dst_node->definition)
5422 cgraph_rebuild_references ();
5423 update_ssa (TODO_update_ssa);
5425 /* After partial cloning we need to rescale frequencies, so they are
5426 within proper range in the cloned function. */
5427 if (new_entry)
5429 struct cgraph_edge *e;
5430 rebuild_frequencies ();
5432 new_version_node->count = ENTRY_BLOCK_PTR->count;
5433 for (e = new_version_node->callees; e; e = e->next_callee)
5435 basic_block bb = gimple_bb (e->call_stmt);
5436 e->frequency = compute_call_stmt_bb_frequency (current_function_decl,
5437 bb);
5438 e->count = bb->count;
5440 for (e = new_version_node->indirect_calls; e; e = e->next_callee)
5442 basic_block bb = gimple_bb (e->call_stmt);
5443 e->frequency = compute_call_stmt_bb_frequency (current_function_decl,
5444 bb);
5445 e->count = bb->count;
5449 free_dominance_info (CDI_DOMINATORS);
5450 free_dominance_info (CDI_POST_DOMINATORS);
5452 gcc_assert (!id.debug_stmts.exists ());
5453 init_stmts.release ();
5454 pop_cfun ();
5455 return;
5458 /* EXP is CALL_EXPR present in a GENERIC expression tree. Try to integrate
5459 the callee and return the inlined body on success. */
5461 tree
5462 maybe_inline_call_in_expr (tree exp)
5464 tree fn = get_callee_fndecl (exp);
5466 /* We can only try to inline "const" functions. */
5467 if (fn && TREE_READONLY (fn) && DECL_SAVED_TREE (fn))
5469 struct pointer_map_t *decl_map = pointer_map_create ();
5470 call_expr_arg_iterator iter;
5471 copy_body_data id;
5472 tree param, arg, t;
5474 /* Remap the parameters. */
5475 for (param = DECL_ARGUMENTS (fn), arg = first_call_expr_arg (exp, &iter);
5476 param;
5477 param = DECL_CHAIN (param), arg = next_call_expr_arg (&iter))
5478 *pointer_map_insert (decl_map, param) = arg;
5480 memset (&id, 0, sizeof (id));
5481 id.src_fn = fn;
5482 id.dst_fn = current_function_decl;
5483 id.src_cfun = DECL_STRUCT_FUNCTION (fn);
5484 id.decl_map = decl_map;
5486 id.copy_decl = copy_decl_no_change;
5487 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
5488 id.transform_new_cfg = false;
5489 id.transform_return_to_modify = true;
5490 id.transform_parameter = true;
5491 id.transform_lang_insert_block = NULL;
5493 /* Make sure not to unshare trees behind the front-end's back
5494 since front-end specific mechanisms may rely on sharing. */
5495 id.regimplify = false;
5496 id.do_not_unshare = true;
5498 /* We're not inside any EH region. */
5499 id.eh_lp_nr = 0;
5501 t = copy_tree_body (&id);
5502 pointer_map_destroy (decl_map);
5504 /* We can only return something suitable for use in a GENERIC
5505 expression tree. */
5506 if (TREE_CODE (t) == MODIFY_EXPR)
5507 return TREE_OPERAND (t, 1);
5510 return NULL_TREE;
5513 /* Duplicate a type, fields and all. */
5515 tree
5516 build_duplicate_type (tree type)
5518 struct copy_body_data id;
5520 memset (&id, 0, sizeof (id));
5521 id.src_fn = current_function_decl;
5522 id.dst_fn = current_function_decl;
5523 id.src_cfun = cfun;
5524 id.decl_map = pointer_map_create ();
5525 id.debug_map = NULL;
5526 id.copy_decl = copy_decl_no_change;
5528 type = remap_type_1 (type, &id);
5530 pointer_map_destroy (id.decl_map);
5531 if (id.debug_map)
5532 pointer_map_destroy (id.debug_map);
5534 TYPE_CANONICAL (type) = type;
5536 return type;