* gnat.dg/nan_max.adb: New test.
[official-gcc.git] / gcc / tree-inline.c
blobb68770013d64e086a44362c39ea7fc5afd1375a5
1 /* Tree inlining.
2 Copyright (C) 2001-2014 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 "stor-layout.h"
28 #include "calls.h"
29 #include "tree-inline.h"
30 #include "flags.h"
31 #include "params.h"
32 #include "input.h"
33 #include "insn-config.h"
34 #include "hashtab.h"
35 #include "langhooks.h"
36 #include "predict.h"
37 #include "vec.h"
38 #include "hash-set.h"
39 #include "machmode.h"
40 #include "hard-reg-set.h"
41 #include "function.h"
42 #include "dominance.h"
43 #include "cfg.h"
44 #include "cfganal.h"
45 #include "basic-block.h"
46 #include "tree-iterator.h"
47 #include "intl.h"
48 #include "tree-ssa-alias.h"
49 #include "internal-fn.h"
50 #include "gimple-fold.h"
51 #include "tree-eh.h"
52 #include "gimple-expr.h"
53 #include "is-a.h"
54 #include "gimple.h"
55 #include "gimplify.h"
56 #include "gimple-iterator.h"
57 #include "gimplify-me.h"
58 #include "gimple-walk.h"
59 #include "gimple-ssa.h"
60 #include "tree-cfg.h"
61 #include "tree-phinodes.h"
62 #include "ssa-iterators.h"
63 #include "stringpool.h"
64 #include "tree-ssanames.h"
65 #include "tree-into-ssa.h"
66 #include "expr.h"
67 #include "tree-dfa.h"
68 #include "tree-ssa.h"
69 #include "tree-pretty-print.h"
70 #include "except.h"
71 #include "debug.h"
72 #include "hash-map.h"
73 #include "plugin-api.h"
74 #include "ipa-ref.h"
75 #include "cgraph.h"
76 #include "alloc-pool.h"
77 #include "symbol-summary.h"
78 #include "ipa-prop.h"
79 #include "value-prof.h"
80 #include "tree-pass.h"
81 #include "target.h"
82 #include "cfgloop.h"
83 #include "builtins.h"
84 #include "tree-chkp.h"
86 #include "rtl.h" /* FIXME: For asm_str_count. */
88 /* I'm not real happy about this, but we need to handle gimple and
89 non-gimple trees. */
91 /* Inlining, Cloning, Versioning, Parallelization
93 Inlining: a function body is duplicated, but the PARM_DECLs are
94 remapped into VAR_DECLs, and non-void RETURN_EXPRs become
95 MODIFY_EXPRs that store to a dedicated returned-value variable.
96 The duplicated eh_region info of the copy will later be appended
97 to the info for the caller; the eh_region info in copied throwing
98 statements and RESX statements are adjusted accordingly.
100 Cloning: (only in C++) We have one body for a con/de/structor, and
101 multiple function decls, each with a unique parameter list.
102 Duplicate the body, using the given splay tree; some parameters
103 will become constants (like 0 or 1).
105 Versioning: a function body is duplicated and the result is a new
106 function rather than into blocks of an existing function as with
107 inlining. Some parameters will become constants.
109 Parallelization: a region of a function is duplicated resulting in
110 a new function. Variables may be replaced with complex expressions
111 to enable shared variable semantics.
113 All of these will simultaneously lookup any callgraph edges. If
114 we're going to inline the duplicated function body, and the given
115 function has some cloned callgraph nodes (one for each place this
116 function will be inlined) those callgraph edges will be duplicated.
117 If we're cloning the body, those callgraph edges will be
118 updated to point into the new body. (Note that the original
119 callgraph node and edge list will not be altered.)
121 See the CALL_EXPR handling case in copy_tree_body_r (). */
123 /* To Do:
125 o In order to make inlining-on-trees work, we pessimized
126 function-local static constants. In particular, they are now
127 always output, even when not addressed. Fix this by treating
128 function-local static constants just like global static
129 constants; the back-end already knows not to output them if they
130 are not needed.
132 o Provide heuristics to clamp inlining of recursive template
133 calls? */
136 /* Weights that estimate_num_insns uses to estimate the size of the
137 produced code. */
139 eni_weights eni_size_weights;
141 /* Weights that estimate_num_insns uses to estimate the time necessary
142 to execute the produced code. */
144 eni_weights eni_time_weights;
146 /* Prototypes. */
148 static tree declare_return_variable (copy_body_data *, tree, tree, tree,
149 basic_block);
150 static void remap_block (tree *, copy_body_data *);
151 static void copy_bind_expr (tree *, int *, copy_body_data *);
152 static void declare_inline_vars (tree, tree);
153 static void remap_save_expr (tree *, hash_map<tree, tree> *, int *);
154 static void prepend_lexical_block (tree current_block, tree new_block);
155 static tree copy_decl_to_var (tree, copy_body_data *);
156 static tree copy_result_decl_to_var (tree, copy_body_data *);
157 static tree copy_decl_maybe_to_var (tree, copy_body_data *);
158 static gimple_seq remap_gimple_stmt (gimple, copy_body_data *);
159 static bool delete_unreachable_blocks_update_callgraph (copy_body_data *id);
160 static void insert_init_stmt (copy_body_data *, basic_block, gimple);
162 /* Insert a tree->tree mapping for ID. Despite the name suggests
163 that the trees should be variables, it is used for more than that. */
165 void
166 insert_decl_map (copy_body_data *id, tree key, tree value)
168 id->decl_map->put (key, value);
170 /* Always insert an identity map as well. If we see this same new
171 node again, we won't want to duplicate it a second time. */
172 if (key != value)
173 id->decl_map->put (value, value);
176 /* Insert a tree->tree mapping for ID. This is only used for
177 variables. */
179 static void
180 insert_debug_decl_map (copy_body_data *id, tree key, tree value)
182 if (!gimple_in_ssa_p (id->src_cfun))
183 return;
185 if (!MAY_HAVE_DEBUG_STMTS)
186 return;
188 if (!target_for_debug_bind (key))
189 return;
191 gcc_assert (TREE_CODE (key) == PARM_DECL);
192 gcc_assert (TREE_CODE (value) == VAR_DECL);
194 if (!id->debug_map)
195 id->debug_map = new hash_map<tree, tree>;
197 id->debug_map->put (key, value);
200 /* If nonzero, we're remapping the contents of inlined debug
201 statements. If negative, an error has occurred, such as a
202 reference to a variable that isn't available in the inlined
203 context. */
204 static int processing_debug_stmt = 0;
206 /* Construct new SSA name for old NAME. ID is the inline context. */
208 static tree
209 remap_ssa_name (tree name, copy_body_data *id)
211 tree new_tree, var;
212 tree *n;
214 gcc_assert (TREE_CODE (name) == SSA_NAME);
216 n = id->decl_map->get (name);
217 if (n)
218 return unshare_expr (*n);
220 if (processing_debug_stmt)
222 if (SSA_NAME_IS_DEFAULT_DEF (name)
223 && TREE_CODE (SSA_NAME_VAR (name)) == PARM_DECL
224 && id->entry_bb == NULL
225 && single_succ_p (ENTRY_BLOCK_PTR_FOR_FN (cfun)))
227 tree vexpr = make_node (DEBUG_EXPR_DECL);
228 gimple def_temp;
229 gimple_stmt_iterator gsi;
230 tree val = SSA_NAME_VAR (name);
232 n = id->decl_map->get (val);
233 if (n != NULL)
234 val = *n;
235 if (TREE_CODE (val) != PARM_DECL)
237 processing_debug_stmt = -1;
238 return name;
240 def_temp = gimple_build_debug_source_bind (vexpr, val, NULL);
241 DECL_ARTIFICIAL (vexpr) = 1;
242 TREE_TYPE (vexpr) = TREE_TYPE (name);
243 DECL_MODE (vexpr) = DECL_MODE (SSA_NAME_VAR (name));
244 gsi = gsi_after_labels (single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun)));
245 gsi_insert_before (&gsi, def_temp, GSI_SAME_STMT);
246 return vexpr;
249 processing_debug_stmt = -1;
250 return name;
253 /* Remap anonymous SSA names or SSA names of anonymous decls. */
254 var = SSA_NAME_VAR (name);
255 if (!var
256 || (!SSA_NAME_IS_DEFAULT_DEF (name)
257 && TREE_CODE (var) == VAR_DECL
258 && !VAR_DECL_IS_VIRTUAL_OPERAND (var)
259 && DECL_ARTIFICIAL (var)
260 && DECL_IGNORED_P (var)
261 && !DECL_NAME (var)))
263 struct ptr_info_def *pi;
264 new_tree = make_ssa_name (remap_type (TREE_TYPE (name), id));
265 if (!var && SSA_NAME_IDENTIFIER (name))
266 SET_SSA_NAME_VAR_OR_IDENTIFIER (new_tree, SSA_NAME_IDENTIFIER (name));
267 insert_decl_map (id, name, new_tree);
268 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (new_tree)
269 = SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name);
270 /* At least IPA points-to info can be directly transferred. */
271 if (id->src_cfun->gimple_df
272 && id->src_cfun->gimple_df->ipa_pta
273 && (pi = SSA_NAME_PTR_INFO (name))
274 && !pi->pt.anything)
276 struct ptr_info_def *new_pi = get_ptr_info (new_tree);
277 new_pi->pt = pi->pt;
279 return new_tree;
282 /* Do not set DEF_STMT yet as statement is not copied yet. We do that
283 in copy_bb. */
284 new_tree = remap_decl (var, id);
286 /* We might've substituted constant or another SSA_NAME for
287 the variable.
289 Replace the SSA name representing RESULT_DECL by variable during
290 inlining: this saves us from need to introduce PHI node in a case
291 return value is just partly initialized. */
292 if ((TREE_CODE (new_tree) == VAR_DECL || TREE_CODE (new_tree) == PARM_DECL)
293 && (!SSA_NAME_VAR (name)
294 || TREE_CODE (SSA_NAME_VAR (name)) != RESULT_DECL
295 || !id->transform_return_to_modify))
297 struct ptr_info_def *pi;
298 new_tree = make_ssa_name (new_tree);
299 insert_decl_map (id, name, new_tree);
300 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (new_tree)
301 = SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name);
302 /* At least IPA points-to info can be directly transferred. */
303 if (id->src_cfun->gimple_df
304 && id->src_cfun->gimple_df->ipa_pta
305 && (pi = SSA_NAME_PTR_INFO (name))
306 && !pi->pt.anything)
308 struct ptr_info_def *new_pi = get_ptr_info (new_tree);
309 new_pi->pt = pi->pt;
311 if (SSA_NAME_IS_DEFAULT_DEF (name))
313 /* By inlining function having uninitialized variable, we might
314 extend the lifetime (variable might get reused). This cause
315 ICE in the case we end up extending lifetime of SSA name across
316 abnormal edge, but also increase register pressure.
318 We simply initialize all uninitialized vars by 0 except
319 for case we are inlining to very first BB. We can avoid
320 this for all BBs that are not inside strongly connected
321 regions of the CFG, but this is expensive to test. */
322 if (id->entry_bb
323 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name)
324 && (!SSA_NAME_VAR (name)
325 || TREE_CODE (SSA_NAME_VAR (name)) != PARM_DECL)
326 && (id->entry_bb != EDGE_SUCC (ENTRY_BLOCK_PTR_FOR_FN (cfun),
327 0)->dest
328 || EDGE_COUNT (id->entry_bb->preds) != 1))
330 gimple_stmt_iterator gsi = gsi_last_bb (id->entry_bb);
331 gimple init_stmt;
332 tree zero = build_zero_cst (TREE_TYPE (new_tree));
334 init_stmt = gimple_build_assign (new_tree, zero);
335 gsi_insert_after (&gsi, init_stmt, GSI_NEW_STMT);
336 SSA_NAME_IS_DEFAULT_DEF (new_tree) = 0;
338 else
340 SSA_NAME_DEF_STMT (new_tree) = gimple_build_nop ();
341 set_ssa_default_def (cfun, SSA_NAME_VAR (new_tree), new_tree);
345 else
346 insert_decl_map (id, name, new_tree);
347 return new_tree;
350 /* Remap DECL during the copying of the BLOCK tree for the function. */
352 tree
353 remap_decl (tree decl, copy_body_data *id)
355 tree *n;
357 /* We only remap local variables in the current function. */
359 /* See if we have remapped this declaration. */
361 n = id->decl_map->get (decl);
363 if (!n && processing_debug_stmt)
365 processing_debug_stmt = -1;
366 return decl;
369 /* If we didn't already have an equivalent for this declaration,
370 create one now. */
371 if (!n)
373 /* Make a copy of the variable or label. */
374 tree t = id->copy_decl (decl, id);
376 /* Remember it, so that if we encounter this local entity again
377 we can reuse this copy. Do this early because remap_type may
378 need this decl for TYPE_STUB_DECL. */
379 insert_decl_map (id, decl, t);
381 if (!DECL_P (t))
382 return t;
384 /* Remap types, if necessary. */
385 TREE_TYPE (t) = remap_type (TREE_TYPE (t), id);
386 if (TREE_CODE (t) == TYPE_DECL)
387 DECL_ORIGINAL_TYPE (t) = remap_type (DECL_ORIGINAL_TYPE (t), id);
389 /* Remap sizes as necessary. */
390 walk_tree (&DECL_SIZE (t), copy_tree_body_r, id, NULL);
391 walk_tree (&DECL_SIZE_UNIT (t), copy_tree_body_r, id, NULL);
393 /* If fields, do likewise for offset and qualifier. */
394 if (TREE_CODE (t) == FIELD_DECL)
396 walk_tree (&DECL_FIELD_OFFSET (t), copy_tree_body_r, id, NULL);
397 if (TREE_CODE (DECL_CONTEXT (t)) == QUAL_UNION_TYPE)
398 walk_tree (&DECL_QUALIFIER (t), copy_tree_body_r, id, NULL);
401 return t;
404 if (id->do_not_unshare)
405 return *n;
406 else
407 return unshare_expr (*n);
410 static tree
411 remap_type_1 (tree type, copy_body_data *id)
413 tree new_tree, t;
415 /* We do need a copy. build and register it now. If this is a pointer or
416 reference type, remap the designated type and make a new pointer or
417 reference type. */
418 if (TREE_CODE (type) == POINTER_TYPE)
420 new_tree = build_pointer_type_for_mode (remap_type (TREE_TYPE (type), id),
421 TYPE_MODE (type),
422 TYPE_REF_CAN_ALIAS_ALL (type));
423 if (TYPE_ATTRIBUTES (type) || TYPE_QUALS (type))
424 new_tree = build_type_attribute_qual_variant (new_tree,
425 TYPE_ATTRIBUTES (type),
426 TYPE_QUALS (type));
427 insert_decl_map (id, type, new_tree);
428 return new_tree;
430 else if (TREE_CODE (type) == REFERENCE_TYPE)
432 new_tree = build_reference_type_for_mode (remap_type (TREE_TYPE (type), id),
433 TYPE_MODE (type),
434 TYPE_REF_CAN_ALIAS_ALL (type));
435 if (TYPE_ATTRIBUTES (type) || TYPE_QUALS (type))
436 new_tree = build_type_attribute_qual_variant (new_tree,
437 TYPE_ATTRIBUTES (type),
438 TYPE_QUALS (type));
439 insert_decl_map (id, type, new_tree);
440 return new_tree;
442 else
443 new_tree = copy_node (type);
445 insert_decl_map (id, type, new_tree);
447 /* This is a new type, not a copy of an old type. Need to reassociate
448 variants. We can handle everything except the main variant lazily. */
449 t = TYPE_MAIN_VARIANT (type);
450 if (type != t)
452 t = remap_type (t, id);
453 TYPE_MAIN_VARIANT (new_tree) = t;
454 TYPE_NEXT_VARIANT (new_tree) = TYPE_NEXT_VARIANT (t);
455 TYPE_NEXT_VARIANT (t) = new_tree;
457 else
459 TYPE_MAIN_VARIANT (new_tree) = new_tree;
460 TYPE_NEXT_VARIANT (new_tree) = NULL;
463 if (TYPE_STUB_DECL (type))
464 TYPE_STUB_DECL (new_tree) = remap_decl (TYPE_STUB_DECL (type), id);
466 /* Lazily create pointer and reference types. */
467 TYPE_POINTER_TO (new_tree) = NULL;
468 TYPE_REFERENCE_TO (new_tree) = NULL;
470 /* Copy all types that may contain references to local variables; be sure to
471 preserve sharing in between type and its main variant when possible. */
472 switch (TREE_CODE (new_tree))
474 case INTEGER_TYPE:
475 case REAL_TYPE:
476 case FIXED_POINT_TYPE:
477 case ENUMERAL_TYPE:
478 case BOOLEAN_TYPE:
479 if (TYPE_MAIN_VARIANT (new_tree) != new_tree)
481 gcc_checking_assert (TYPE_MIN_VALUE (type) == TYPE_MIN_VALUE (TYPE_MAIN_VARIANT (type)));
482 gcc_checking_assert (TYPE_MAX_VALUE (type) == TYPE_MAX_VALUE (TYPE_MAIN_VARIANT (type)));
484 TYPE_MIN_VALUE (new_tree) = TYPE_MIN_VALUE (TYPE_MAIN_VARIANT (new_tree));
485 TYPE_MAX_VALUE (new_tree) = TYPE_MAX_VALUE (TYPE_MAIN_VARIANT (new_tree));
487 else
489 t = TYPE_MIN_VALUE (new_tree);
490 if (t && TREE_CODE (t) != INTEGER_CST)
491 walk_tree (&TYPE_MIN_VALUE (new_tree), copy_tree_body_r, id, NULL);
493 t = TYPE_MAX_VALUE (new_tree);
494 if (t && TREE_CODE (t) != INTEGER_CST)
495 walk_tree (&TYPE_MAX_VALUE (new_tree), copy_tree_body_r, id, NULL);
497 return new_tree;
499 case FUNCTION_TYPE:
500 if (TYPE_MAIN_VARIANT (new_tree) != new_tree
501 && TREE_TYPE (type) == TREE_TYPE (TYPE_MAIN_VARIANT (type)))
502 TREE_TYPE (new_tree) = TREE_TYPE (TYPE_MAIN_VARIANT (new_tree));
503 else
504 TREE_TYPE (new_tree) = remap_type (TREE_TYPE (new_tree), id);
505 if (TYPE_MAIN_VARIANT (new_tree) != new_tree
506 && TYPE_ARG_TYPES (type) == TYPE_ARG_TYPES (TYPE_MAIN_VARIANT (type)))
507 TYPE_ARG_TYPES (new_tree) = TYPE_ARG_TYPES (TYPE_MAIN_VARIANT (new_tree));
508 else
509 walk_tree (&TYPE_ARG_TYPES (new_tree), copy_tree_body_r, id, NULL);
510 return new_tree;
512 case ARRAY_TYPE:
513 if (TYPE_MAIN_VARIANT (new_tree) != new_tree
514 && TREE_TYPE (type) == TREE_TYPE (TYPE_MAIN_VARIANT (type)))
515 TREE_TYPE (new_tree) = TREE_TYPE (TYPE_MAIN_VARIANT (new_tree));
516 else
517 TREE_TYPE (new_tree) = remap_type (TREE_TYPE (new_tree), id);
519 if (TYPE_MAIN_VARIANT (new_tree) != new_tree)
521 gcc_checking_assert (TYPE_DOMAIN (type) == TYPE_DOMAIN (TYPE_MAIN_VARIANT (type)));
522 TYPE_DOMAIN (new_tree) = TYPE_DOMAIN (TYPE_MAIN_VARIANT (new_tree));
524 else
525 TYPE_DOMAIN (new_tree) = remap_type (TYPE_DOMAIN (new_tree), id);
526 break;
528 case RECORD_TYPE:
529 case UNION_TYPE:
530 case QUAL_UNION_TYPE:
531 if (TYPE_MAIN_VARIANT (type) != type
532 && TYPE_FIELDS (type) == TYPE_FIELDS (TYPE_MAIN_VARIANT (type)))
533 TYPE_FIELDS (new_tree) = TYPE_FIELDS (TYPE_MAIN_VARIANT (new_tree));
534 else
536 tree f, nf = NULL;
538 for (f = TYPE_FIELDS (new_tree); f ; f = DECL_CHAIN (f))
540 t = remap_decl (f, id);
541 DECL_CONTEXT (t) = new_tree;
542 DECL_CHAIN (t) = nf;
543 nf = t;
545 TYPE_FIELDS (new_tree) = nreverse (nf);
547 break;
549 case OFFSET_TYPE:
550 default:
551 /* Shouldn't have been thought variable sized. */
552 gcc_unreachable ();
555 /* All variants of type share the same size, so use the already remaped data. */
556 if (TYPE_MAIN_VARIANT (new_tree) != new_tree)
558 gcc_checking_assert (TYPE_SIZE (type) == TYPE_SIZE (TYPE_MAIN_VARIANT (type)));
559 gcc_checking_assert (TYPE_SIZE_UNIT (type) == TYPE_SIZE_UNIT (TYPE_MAIN_VARIANT (type)));
561 TYPE_SIZE (new_tree) = TYPE_SIZE (TYPE_MAIN_VARIANT (new_tree));
562 TYPE_SIZE_UNIT (new_tree) = TYPE_SIZE_UNIT (TYPE_MAIN_VARIANT (new_tree));
564 else
566 walk_tree (&TYPE_SIZE (new_tree), copy_tree_body_r, id, NULL);
567 walk_tree (&TYPE_SIZE_UNIT (new_tree), copy_tree_body_r, id, NULL);
570 return new_tree;
573 tree
574 remap_type (tree type, copy_body_data *id)
576 tree *node;
577 tree tmp;
579 if (type == NULL)
580 return type;
582 /* See if we have remapped this type. */
583 node = id->decl_map->get (type);
584 if (node)
585 return *node;
587 /* The type only needs remapping if it's variably modified. */
588 if (! variably_modified_type_p (type, id->src_fn))
590 insert_decl_map (id, type, type);
591 return type;
594 id->remapping_type_depth++;
595 tmp = remap_type_1 (type, id);
596 id->remapping_type_depth--;
598 return tmp;
601 /* Decide if DECL can be put into BLOCK_NONLOCAL_VARs. */
603 static bool
604 can_be_nonlocal (tree decl, copy_body_data *id)
606 /* We can not duplicate function decls. */
607 if (TREE_CODE (decl) == FUNCTION_DECL)
608 return true;
610 /* Local static vars must be non-local or we get multiple declaration
611 problems. */
612 if (TREE_CODE (decl) == VAR_DECL
613 && !auto_var_in_fn_p (decl, id->src_fn))
614 return true;
616 return false;
619 static tree
620 remap_decls (tree decls, vec<tree, va_gc> **nonlocalized_list,
621 copy_body_data *id)
623 tree old_var;
624 tree new_decls = NULL_TREE;
626 /* Remap its variables. */
627 for (old_var = decls; old_var; old_var = DECL_CHAIN (old_var))
629 tree new_var;
631 if (can_be_nonlocal (old_var, id))
633 /* We need to add this variable to the local decls as otherwise
634 nothing else will do so. */
635 if (TREE_CODE (old_var) == VAR_DECL
636 && ! DECL_EXTERNAL (old_var))
637 add_local_decl (cfun, old_var);
638 if ((!optimize || debug_info_level > DINFO_LEVEL_TERSE)
639 && !DECL_IGNORED_P (old_var)
640 && nonlocalized_list)
641 vec_safe_push (*nonlocalized_list, old_var);
642 continue;
645 /* Remap the variable. */
646 new_var = remap_decl (old_var, id);
648 /* If we didn't remap this variable, we can't mess with its
649 TREE_CHAIN. If we remapped this variable to the return slot, it's
650 already declared somewhere else, so don't declare it here. */
652 if (new_var == id->retvar)
654 else if (!new_var)
656 if ((!optimize || debug_info_level > DINFO_LEVEL_TERSE)
657 && !DECL_IGNORED_P (old_var)
658 && nonlocalized_list)
659 vec_safe_push (*nonlocalized_list, old_var);
661 else
663 gcc_assert (DECL_P (new_var));
664 DECL_CHAIN (new_var) = new_decls;
665 new_decls = new_var;
667 /* Also copy value-expressions. */
668 if (TREE_CODE (new_var) == VAR_DECL
669 && DECL_HAS_VALUE_EXPR_P (new_var))
671 tree tem = DECL_VALUE_EXPR (new_var);
672 bool old_regimplify = id->regimplify;
673 id->remapping_type_depth++;
674 walk_tree (&tem, copy_tree_body_r, id, NULL);
675 id->remapping_type_depth--;
676 id->regimplify = old_regimplify;
677 SET_DECL_VALUE_EXPR (new_var, tem);
682 return nreverse (new_decls);
685 /* Copy the BLOCK to contain remapped versions of the variables
686 therein. And hook the new block into the block-tree. */
688 static void
689 remap_block (tree *block, copy_body_data *id)
691 tree old_block;
692 tree new_block;
694 /* Make the new block. */
695 old_block = *block;
696 new_block = make_node (BLOCK);
697 TREE_USED (new_block) = TREE_USED (old_block);
698 BLOCK_ABSTRACT_ORIGIN (new_block) = old_block;
699 BLOCK_SOURCE_LOCATION (new_block) = BLOCK_SOURCE_LOCATION (old_block);
700 BLOCK_NONLOCALIZED_VARS (new_block)
701 = vec_safe_copy (BLOCK_NONLOCALIZED_VARS (old_block));
702 *block = new_block;
704 /* Remap its variables. */
705 BLOCK_VARS (new_block) = remap_decls (BLOCK_VARS (old_block),
706 &BLOCK_NONLOCALIZED_VARS (new_block),
707 id);
709 if (id->transform_lang_insert_block)
710 id->transform_lang_insert_block (new_block);
712 /* Remember the remapped block. */
713 insert_decl_map (id, old_block, new_block);
716 /* Copy the whole block tree and root it in id->block. */
717 static tree
718 remap_blocks (tree block, copy_body_data *id)
720 tree t;
721 tree new_tree = block;
723 if (!block)
724 return NULL;
726 remap_block (&new_tree, id);
727 gcc_assert (new_tree != block);
728 for (t = BLOCK_SUBBLOCKS (block); t ; t = BLOCK_CHAIN (t))
729 prepend_lexical_block (new_tree, remap_blocks (t, id));
730 /* Blocks are in arbitrary order, but make things slightly prettier and do
731 not swap order when producing a copy. */
732 BLOCK_SUBBLOCKS (new_tree) = blocks_nreverse (BLOCK_SUBBLOCKS (new_tree));
733 return new_tree;
736 /* Remap the block tree rooted at BLOCK to nothing. */
737 static void
738 remap_blocks_to_null (tree block, copy_body_data *id)
740 tree t;
741 insert_decl_map (id, block, NULL_TREE);
742 for (t = BLOCK_SUBBLOCKS (block); t ; t = BLOCK_CHAIN (t))
743 remap_blocks_to_null (t, id);
746 static void
747 copy_statement_list (tree *tp)
749 tree_stmt_iterator oi, ni;
750 tree new_tree;
752 new_tree = alloc_stmt_list ();
753 ni = tsi_start (new_tree);
754 oi = tsi_start (*tp);
755 TREE_TYPE (new_tree) = TREE_TYPE (*tp);
756 *tp = new_tree;
758 for (; !tsi_end_p (oi); tsi_next (&oi))
760 tree stmt = tsi_stmt (oi);
761 if (TREE_CODE (stmt) == STATEMENT_LIST)
762 /* This copy is not redundant; tsi_link_after will smash this
763 STATEMENT_LIST into the end of the one we're building, and we
764 don't want to do that with the original. */
765 copy_statement_list (&stmt);
766 tsi_link_after (&ni, stmt, TSI_CONTINUE_LINKING);
770 static void
771 copy_bind_expr (tree *tp, int *walk_subtrees, copy_body_data *id)
773 tree block = BIND_EXPR_BLOCK (*tp);
774 /* Copy (and replace) the statement. */
775 copy_tree_r (tp, walk_subtrees, NULL);
776 if (block)
778 remap_block (&block, id);
779 BIND_EXPR_BLOCK (*tp) = block;
782 if (BIND_EXPR_VARS (*tp))
783 /* This will remap a lot of the same decls again, but this should be
784 harmless. */
785 BIND_EXPR_VARS (*tp) = remap_decls (BIND_EXPR_VARS (*tp), NULL, id);
789 /* Create a new gimple_seq by remapping all the statements in BODY
790 using the inlining information in ID. */
792 static gimple_seq
793 remap_gimple_seq (gimple_seq body, copy_body_data *id)
795 gimple_stmt_iterator si;
796 gimple_seq new_body = NULL;
798 for (si = gsi_start (body); !gsi_end_p (si); gsi_next (&si))
800 gimple_seq new_stmts = remap_gimple_stmt (gsi_stmt (si), id);
801 gimple_seq_add_seq (&new_body, new_stmts);
804 return new_body;
808 /* Copy a GIMPLE_BIND statement STMT, remapping all the symbols in its
809 block using the mapping information in ID. */
811 static gimple
812 copy_gimple_bind (gbind *stmt, copy_body_data *id)
814 gimple new_bind;
815 tree new_block, new_vars;
816 gimple_seq body, new_body;
818 /* Copy the statement. Note that we purposely don't use copy_stmt
819 here because we need to remap statements as we copy. */
820 body = gimple_bind_body (stmt);
821 new_body = remap_gimple_seq (body, id);
823 new_block = gimple_bind_block (stmt);
824 if (new_block)
825 remap_block (&new_block, id);
827 /* This will remap a lot of the same decls again, but this should be
828 harmless. */
829 new_vars = gimple_bind_vars (stmt);
830 if (new_vars)
831 new_vars = remap_decls (new_vars, NULL, id);
833 new_bind = gimple_build_bind (new_vars, new_body, new_block);
835 return new_bind;
838 /* Return true if DECL is a parameter or a SSA_NAME for a parameter. */
840 static bool
841 is_parm (tree decl)
843 if (TREE_CODE (decl) == SSA_NAME)
845 decl = SSA_NAME_VAR (decl);
846 if (!decl)
847 return false;
850 return (TREE_CODE (decl) == PARM_DECL);
853 /* Remap the dependence CLIQUE from the source to the destination function
854 as specified in ID. */
856 static unsigned short
857 remap_dependence_clique (copy_body_data *id, unsigned short clique)
859 if (clique == 0)
860 return 0;
861 if (!id->dependence_map)
862 id->dependence_map
863 = new hash_map<unsigned short, unsigned short, dependence_hasher>;
864 bool existed;
865 unsigned short &newc = id->dependence_map->get_or_insert (clique, &existed);
866 if (!existed)
867 newc = ++cfun->last_clique;
868 return newc;
871 /* Remap the GIMPLE operand pointed to by *TP. DATA is really a
872 'struct walk_stmt_info *'. DATA->INFO is a 'copy_body_data *'.
873 WALK_SUBTREES is used to indicate walk_gimple_op whether to keep
874 recursing into the children nodes of *TP. */
876 static tree
877 remap_gimple_op_r (tree *tp, int *walk_subtrees, void *data)
879 struct walk_stmt_info *wi_p = (struct walk_stmt_info *) data;
880 copy_body_data *id = (copy_body_data *) wi_p->info;
881 tree fn = id->src_fn;
883 if (TREE_CODE (*tp) == SSA_NAME)
885 *tp = remap_ssa_name (*tp, id);
886 *walk_subtrees = 0;
887 return NULL;
889 else if (auto_var_in_fn_p (*tp, fn))
891 /* Local variables and labels need to be replaced by equivalent
892 variables. We don't want to copy static variables; there's
893 only one of those, no matter how many times we inline the
894 containing function. Similarly for globals from an outer
895 function. */
896 tree new_decl;
898 /* Remap the declaration. */
899 new_decl = remap_decl (*tp, id);
900 gcc_assert (new_decl);
901 /* Replace this variable with the copy. */
902 STRIP_TYPE_NOPS (new_decl);
903 /* ??? The C++ frontend uses void * pointer zero to initialize
904 any other type. This confuses the middle-end type verification.
905 As cloned bodies do not go through gimplification again the fixup
906 there doesn't trigger. */
907 if (TREE_CODE (new_decl) == INTEGER_CST
908 && !useless_type_conversion_p (TREE_TYPE (*tp), TREE_TYPE (new_decl)))
909 new_decl = fold_convert (TREE_TYPE (*tp), new_decl);
910 *tp = new_decl;
911 *walk_subtrees = 0;
913 else if (TREE_CODE (*tp) == STATEMENT_LIST)
914 gcc_unreachable ();
915 else if (TREE_CODE (*tp) == SAVE_EXPR)
916 gcc_unreachable ();
917 else if (TREE_CODE (*tp) == LABEL_DECL
918 && (!DECL_CONTEXT (*tp)
919 || decl_function_context (*tp) == id->src_fn))
920 /* These may need to be remapped for EH handling. */
921 *tp = remap_decl (*tp, id);
922 else if (TREE_CODE (*tp) == FIELD_DECL)
924 /* If the enclosing record type is variably_modified_type_p, the field
925 has already been remapped. Otherwise, it need not be. */
926 tree *n = id->decl_map->get (*tp);
927 if (n)
928 *tp = *n;
929 *walk_subtrees = 0;
931 else if (TYPE_P (*tp))
932 /* Types may need remapping as well. */
933 *tp = remap_type (*tp, id);
934 else if (CONSTANT_CLASS_P (*tp))
936 /* If this is a constant, we have to copy the node iff the type
937 will be remapped. copy_tree_r will not copy a constant. */
938 tree new_type = remap_type (TREE_TYPE (*tp), id);
940 if (new_type == TREE_TYPE (*tp))
941 *walk_subtrees = 0;
943 else if (TREE_CODE (*tp) == INTEGER_CST)
944 *tp = wide_int_to_tree (new_type, *tp);
945 else
947 *tp = copy_node (*tp);
948 TREE_TYPE (*tp) = new_type;
951 else
953 /* Otherwise, just copy the node. Note that copy_tree_r already
954 knows not to copy VAR_DECLs, etc., so this is safe. */
956 if (TREE_CODE (*tp) == MEM_REF)
958 /* We need to re-canonicalize MEM_REFs from inline substitutions
959 that can happen when a pointer argument is an ADDR_EXPR.
960 Recurse here manually to allow that. */
961 tree ptr = TREE_OPERAND (*tp, 0);
962 tree type = remap_type (TREE_TYPE (*tp), id);
963 tree old = *tp;
964 walk_tree (&ptr, remap_gimple_op_r, data, NULL);
965 *tp = fold_build2 (MEM_REF, type, ptr, TREE_OPERAND (*tp, 1));
966 TREE_THIS_VOLATILE (*tp) = TREE_THIS_VOLATILE (old);
967 TREE_SIDE_EFFECTS (*tp) = TREE_SIDE_EFFECTS (old);
968 TREE_NO_WARNING (*tp) = TREE_NO_WARNING (old);
969 if (MR_DEPENDENCE_CLIQUE (old) != 0)
971 MR_DEPENDENCE_CLIQUE (*tp)
972 = remap_dependence_clique (id, MR_DEPENDENCE_CLIQUE (old));
973 MR_DEPENDENCE_BASE (*tp) = MR_DEPENDENCE_BASE (old);
975 /* We cannot propagate the TREE_THIS_NOTRAP flag if we have
976 remapped a parameter as the property might be valid only
977 for the parameter itself. */
978 if (TREE_THIS_NOTRAP (old)
979 && (!is_parm (TREE_OPERAND (old, 0))
980 || (!id->transform_parameter && is_parm (ptr))))
981 TREE_THIS_NOTRAP (*tp) = 1;
982 *walk_subtrees = 0;
983 return NULL;
986 /* Here is the "usual case". Copy this tree node, and then
987 tweak some special cases. */
988 copy_tree_r (tp, walk_subtrees, NULL);
990 if (TREE_CODE (*tp) != OMP_CLAUSE)
991 TREE_TYPE (*tp) = remap_type (TREE_TYPE (*tp), id);
993 if (TREE_CODE (*tp) == TARGET_EXPR && TREE_OPERAND (*tp, 3))
995 /* The copied TARGET_EXPR has never been expanded, even if the
996 original node was expanded already. */
997 TREE_OPERAND (*tp, 1) = TREE_OPERAND (*tp, 3);
998 TREE_OPERAND (*tp, 3) = NULL_TREE;
1000 else if (TREE_CODE (*tp) == ADDR_EXPR)
1002 /* Variable substitution need not be simple. In particular,
1003 the MEM_REF substitution above. Make sure that
1004 TREE_CONSTANT and friends are up-to-date. */
1005 int invariant = is_gimple_min_invariant (*tp);
1006 walk_tree (&TREE_OPERAND (*tp, 0), remap_gimple_op_r, data, NULL);
1007 recompute_tree_invariant_for_addr_expr (*tp);
1009 /* If this used to be invariant, but is not any longer,
1010 then regimplification is probably needed. */
1011 if (invariant && !is_gimple_min_invariant (*tp))
1012 id->regimplify = true;
1014 *walk_subtrees = 0;
1018 /* Update the TREE_BLOCK for the cloned expr. */
1019 if (EXPR_P (*tp))
1021 tree new_block = id->remapping_type_depth == 0 ? id->block : NULL;
1022 tree old_block = TREE_BLOCK (*tp);
1023 if (old_block)
1025 tree *n;
1026 n = id->decl_map->get (TREE_BLOCK (*tp));
1027 if (n)
1028 new_block = *n;
1030 TREE_SET_BLOCK (*tp, new_block);
1033 /* Keep iterating. */
1034 return NULL_TREE;
1038 /* Called from copy_body_id via walk_tree. DATA is really a
1039 `copy_body_data *'. */
1041 tree
1042 copy_tree_body_r (tree *tp, int *walk_subtrees, void *data)
1044 copy_body_data *id = (copy_body_data *) data;
1045 tree fn = id->src_fn;
1046 tree new_block;
1048 /* Begin by recognizing trees that we'll completely rewrite for the
1049 inlining context. Our output for these trees is completely
1050 different from out input (e.g. RETURN_EXPR is deleted, and morphs
1051 into an edge). Further down, we'll handle trees that get
1052 duplicated and/or tweaked. */
1054 /* When requested, RETURN_EXPRs should be transformed to just the
1055 contained MODIFY_EXPR. The branch semantics of the return will
1056 be handled elsewhere by manipulating the CFG rather than a statement. */
1057 if (TREE_CODE (*tp) == RETURN_EXPR && id->transform_return_to_modify)
1059 tree assignment = TREE_OPERAND (*tp, 0);
1061 /* If we're returning something, just turn that into an
1062 assignment into the equivalent of the original RESULT_DECL.
1063 If the "assignment" is just the result decl, the result
1064 decl has already been set (e.g. a recent "foo (&result_decl,
1065 ...)"); just toss the entire RETURN_EXPR. */
1066 if (assignment && TREE_CODE (assignment) == MODIFY_EXPR)
1068 /* Replace the RETURN_EXPR with (a copy of) the
1069 MODIFY_EXPR hanging underneath. */
1070 *tp = copy_node (assignment);
1072 else /* Else the RETURN_EXPR returns no value. */
1074 *tp = NULL;
1075 return (tree) (void *)1;
1078 else if (TREE_CODE (*tp) == SSA_NAME)
1080 *tp = remap_ssa_name (*tp, id);
1081 *walk_subtrees = 0;
1082 return NULL;
1085 /* Local variables and labels need to be replaced by equivalent
1086 variables. We don't want to copy static variables; there's only
1087 one of those, no matter how many times we inline the containing
1088 function. Similarly for globals from an outer function. */
1089 else if (auto_var_in_fn_p (*tp, fn))
1091 tree new_decl;
1093 /* Remap the declaration. */
1094 new_decl = remap_decl (*tp, id);
1095 gcc_assert (new_decl);
1096 /* Replace this variable with the copy. */
1097 STRIP_TYPE_NOPS (new_decl);
1098 *tp = new_decl;
1099 *walk_subtrees = 0;
1101 else if (TREE_CODE (*tp) == STATEMENT_LIST)
1102 copy_statement_list (tp);
1103 else if (TREE_CODE (*tp) == SAVE_EXPR
1104 || TREE_CODE (*tp) == TARGET_EXPR)
1105 remap_save_expr (tp, id->decl_map, walk_subtrees);
1106 else if (TREE_CODE (*tp) == LABEL_DECL
1107 && (! DECL_CONTEXT (*tp)
1108 || decl_function_context (*tp) == id->src_fn))
1109 /* These may need to be remapped for EH handling. */
1110 *tp = remap_decl (*tp, id);
1111 else if (TREE_CODE (*tp) == BIND_EXPR)
1112 copy_bind_expr (tp, walk_subtrees, id);
1113 /* Types may need remapping as well. */
1114 else if (TYPE_P (*tp))
1115 *tp = remap_type (*tp, id);
1117 /* If this is a constant, we have to copy the node iff the type will be
1118 remapped. copy_tree_r will not copy a constant. */
1119 else if (CONSTANT_CLASS_P (*tp))
1121 tree new_type = remap_type (TREE_TYPE (*tp), id);
1123 if (new_type == TREE_TYPE (*tp))
1124 *walk_subtrees = 0;
1126 else if (TREE_CODE (*tp) == INTEGER_CST)
1127 *tp = wide_int_to_tree (new_type, *tp);
1128 else
1130 *tp = copy_node (*tp);
1131 TREE_TYPE (*tp) = new_type;
1135 /* Otherwise, just copy the node. Note that copy_tree_r already
1136 knows not to copy VAR_DECLs, etc., so this is safe. */
1137 else
1139 /* Here we handle trees that are not completely rewritten.
1140 First we detect some inlining-induced bogosities for
1141 discarding. */
1142 if (TREE_CODE (*tp) == MODIFY_EXPR
1143 && TREE_OPERAND (*tp, 0) == TREE_OPERAND (*tp, 1)
1144 && (auto_var_in_fn_p (TREE_OPERAND (*tp, 0), fn)))
1146 /* Some assignments VAR = VAR; don't generate any rtl code
1147 and thus don't count as variable modification. Avoid
1148 keeping bogosities like 0 = 0. */
1149 tree decl = TREE_OPERAND (*tp, 0), value;
1150 tree *n;
1152 n = id->decl_map->get (decl);
1153 if (n)
1155 value = *n;
1156 STRIP_TYPE_NOPS (value);
1157 if (TREE_CONSTANT (value) || TREE_READONLY (value))
1159 *tp = build_empty_stmt (EXPR_LOCATION (*tp));
1160 return copy_tree_body_r (tp, walk_subtrees, data);
1164 else if (TREE_CODE (*tp) == INDIRECT_REF)
1166 /* Get rid of *& from inline substitutions that can happen when a
1167 pointer argument is an ADDR_EXPR. */
1168 tree decl = TREE_OPERAND (*tp, 0);
1169 tree *n = id->decl_map->get (decl);
1170 if (n)
1172 /* If we happen to get an ADDR_EXPR in n->value, strip
1173 it manually here as we'll eventually get ADDR_EXPRs
1174 which lie about their types pointed to. In this case
1175 build_fold_indirect_ref wouldn't strip the INDIRECT_REF,
1176 but we absolutely rely on that. As fold_indirect_ref
1177 does other useful transformations, try that first, though. */
1178 tree type = TREE_TYPE (*tp);
1179 tree ptr = id->do_not_unshare ? *n : unshare_expr (*n);
1180 tree old = *tp;
1181 *tp = gimple_fold_indirect_ref (ptr);
1182 if (! *tp)
1184 if (TREE_CODE (ptr) == ADDR_EXPR)
1187 = fold_indirect_ref_1 (EXPR_LOCATION (ptr), type, ptr);
1188 /* ??? We should either assert here or build
1189 a VIEW_CONVERT_EXPR instead of blindly leaking
1190 incompatible types to our IL. */
1191 if (! *tp)
1192 *tp = TREE_OPERAND (ptr, 0);
1194 else
1196 *tp = build1 (INDIRECT_REF, type, ptr);
1197 TREE_THIS_VOLATILE (*tp) = TREE_THIS_VOLATILE (old);
1198 TREE_SIDE_EFFECTS (*tp) = TREE_SIDE_EFFECTS (old);
1199 TREE_READONLY (*tp) = TREE_READONLY (old);
1200 /* We cannot propagate the TREE_THIS_NOTRAP flag if we
1201 have remapped a parameter as the property might be
1202 valid only for the parameter itself. */
1203 if (TREE_THIS_NOTRAP (old)
1204 && (!is_parm (TREE_OPERAND (old, 0))
1205 || (!id->transform_parameter && is_parm (ptr))))
1206 TREE_THIS_NOTRAP (*tp) = 1;
1209 *walk_subtrees = 0;
1210 return NULL;
1213 else if (TREE_CODE (*tp) == MEM_REF)
1215 /* We need to re-canonicalize MEM_REFs from inline substitutions
1216 that can happen when a pointer argument is an ADDR_EXPR.
1217 Recurse here manually to allow that. */
1218 tree ptr = TREE_OPERAND (*tp, 0);
1219 tree type = remap_type (TREE_TYPE (*tp), id);
1220 tree old = *tp;
1221 walk_tree (&ptr, copy_tree_body_r, data, NULL);
1222 *tp = fold_build2 (MEM_REF, type, ptr, TREE_OPERAND (*tp, 1));
1223 TREE_THIS_VOLATILE (*tp) = TREE_THIS_VOLATILE (old);
1224 TREE_SIDE_EFFECTS (*tp) = TREE_SIDE_EFFECTS (old);
1225 TREE_NO_WARNING (*tp) = TREE_NO_WARNING (old);
1226 if (MR_DEPENDENCE_CLIQUE (old) != 0)
1228 MR_DEPENDENCE_CLIQUE (*tp)
1229 = remap_dependence_clique (id, MR_DEPENDENCE_CLIQUE (old));
1230 MR_DEPENDENCE_BASE (*tp) = MR_DEPENDENCE_BASE (old);
1232 /* We cannot propagate the TREE_THIS_NOTRAP flag if we have
1233 remapped a parameter as the property might be valid only
1234 for the parameter itself. */
1235 if (TREE_THIS_NOTRAP (old)
1236 && (!is_parm (TREE_OPERAND (old, 0))
1237 || (!id->transform_parameter && is_parm (ptr))))
1238 TREE_THIS_NOTRAP (*tp) = 1;
1239 *walk_subtrees = 0;
1240 return NULL;
1243 /* Here is the "usual case". Copy this tree node, and then
1244 tweak some special cases. */
1245 copy_tree_r (tp, walk_subtrees, NULL);
1247 /* If EXPR has block defined, map it to newly constructed block.
1248 When inlining we want EXPRs without block appear in the block
1249 of function call if we are not remapping a type. */
1250 if (EXPR_P (*tp))
1252 new_block = id->remapping_type_depth == 0 ? id->block : NULL;
1253 if (TREE_BLOCK (*tp))
1255 tree *n;
1256 n = id->decl_map->get (TREE_BLOCK (*tp));
1257 if (n)
1258 new_block = *n;
1260 TREE_SET_BLOCK (*tp, new_block);
1263 if (TREE_CODE (*tp) != OMP_CLAUSE)
1264 TREE_TYPE (*tp) = remap_type (TREE_TYPE (*tp), id);
1266 /* The copied TARGET_EXPR has never been expanded, even if the
1267 original node was expanded already. */
1268 if (TREE_CODE (*tp) == TARGET_EXPR && TREE_OPERAND (*tp, 3))
1270 TREE_OPERAND (*tp, 1) = TREE_OPERAND (*tp, 3);
1271 TREE_OPERAND (*tp, 3) = NULL_TREE;
1274 /* Variable substitution need not be simple. In particular, the
1275 INDIRECT_REF substitution above. Make sure that TREE_CONSTANT
1276 and friends are up-to-date. */
1277 else if (TREE_CODE (*tp) == ADDR_EXPR)
1279 int invariant = is_gimple_min_invariant (*tp);
1280 walk_tree (&TREE_OPERAND (*tp, 0), copy_tree_body_r, id, NULL);
1282 /* Handle the case where we substituted an INDIRECT_REF
1283 into the operand of the ADDR_EXPR. */
1284 if (TREE_CODE (TREE_OPERAND (*tp, 0)) == INDIRECT_REF)
1285 *tp = TREE_OPERAND (TREE_OPERAND (*tp, 0), 0);
1286 else
1287 recompute_tree_invariant_for_addr_expr (*tp);
1289 /* If this used to be invariant, but is not any longer,
1290 then regimplification is probably needed. */
1291 if (invariant && !is_gimple_min_invariant (*tp))
1292 id->regimplify = true;
1294 *walk_subtrees = 0;
1298 /* Keep iterating. */
1299 return NULL_TREE;
1302 /* Helper for remap_gimple_stmt. Given an EH region number for the
1303 source function, map that to the duplicate EH region number in
1304 the destination function. */
1306 static int
1307 remap_eh_region_nr (int old_nr, copy_body_data *id)
1309 eh_region old_r, new_r;
1311 old_r = get_eh_region_from_number_fn (id->src_cfun, old_nr);
1312 new_r = static_cast<eh_region> (*id->eh_map->get (old_r));
1314 return new_r->index;
1317 /* Similar, but operate on INTEGER_CSTs. */
1319 static tree
1320 remap_eh_region_tree_nr (tree old_t_nr, copy_body_data *id)
1322 int old_nr, new_nr;
1324 old_nr = tree_to_shwi (old_t_nr);
1325 new_nr = remap_eh_region_nr (old_nr, id);
1327 return build_int_cst (integer_type_node, new_nr);
1330 /* Helper for copy_bb. Remap statement STMT using the inlining
1331 information in ID. Return the new statement copy. */
1333 static gimple_seq
1334 remap_gimple_stmt (gimple stmt, copy_body_data *id)
1336 gimple copy = NULL;
1337 struct walk_stmt_info wi;
1338 bool skip_first = false;
1339 gimple_seq stmts = NULL;
1341 /* Begin by recognizing trees that we'll completely rewrite for the
1342 inlining context. Our output for these trees is completely
1343 different from out input (e.g. RETURN_EXPR is deleted, and morphs
1344 into an edge). Further down, we'll handle trees that get
1345 duplicated and/or tweaked. */
1347 /* When requested, GIMPLE_RETURNs should be transformed to just the
1348 contained GIMPLE_ASSIGN. The branch semantics of the return will
1349 be handled elsewhere by manipulating the CFG rather than the
1350 statement. */
1351 if (gimple_code (stmt) == GIMPLE_RETURN && id->transform_return_to_modify)
1353 tree retval = gimple_return_retval (as_a <greturn *> (stmt));
1354 tree retbnd = gimple_return_retbnd (stmt);
1355 tree bndslot = id->retbnd;
1357 if (retbnd && bndslot)
1359 gimple bndcopy = gimple_build_assign (bndslot, retbnd);
1360 memset (&wi, 0, sizeof (wi));
1361 wi.info = id;
1362 walk_gimple_op (bndcopy, remap_gimple_op_r, &wi);
1363 gimple_seq_add_stmt (&stmts, bndcopy);
1366 /* If we're returning something, just turn that into an
1367 assignment into the equivalent of the original RESULT_DECL.
1368 If RETVAL is just the result decl, the result decl has
1369 already been set (e.g. a recent "foo (&result_decl, ...)");
1370 just toss the entire GIMPLE_RETURN. */
1371 if (retval
1372 && (TREE_CODE (retval) != RESULT_DECL
1373 && (TREE_CODE (retval) != SSA_NAME
1374 || ! SSA_NAME_VAR (retval)
1375 || TREE_CODE (SSA_NAME_VAR (retval)) != RESULT_DECL)))
1377 copy = gimple_build_assign (id->do_not_unshare
1378 ? id->retvar : unshare_expr (id->retvar),
1379 retval);
1380 /* id->retvar is already substituted. Skip it on later remapping. */
1381 skip_first = true;
1383 /* We need to copy bounds if return structure with pointers into
1384 instrumented function. */
1385 if (chkp_function_instrumented_p (id->dst_fn)
1386 && !bndslot
1387 && !BOUNDED_P (id->retvar)
1388 && chkp_type_has_pointer (TREE_TYPE (id->retvar)))
1389 id->assign_stmts.safe_push (copy);
1392 else
1393 return stmts;
1395 else if (gimple_has_substatements (stmt))
1397 gimple_seq s1, s2;
1399 /* When cloning bodies from the C++ front end, we will be handed bodies
1400 in High GIMPLE form. Handle here all the High GIMPLE statements that
1401 have embedded statements. */
1402 switch (gimple_code (stmt))
1404 case GIMPLE_BIND:
1405 copy = copy_gimple_bind (as_a <gbind *> (stmt), id);
1406 break;
1408 case GIMPLE_CATCH:
1410 gcatch *catch_stmt = as_a <gcatch *> (stmt);
1411 s1 = remap_gimple_seq (gimple_catch_handler (catch_stmt), id);
1412 copy = gimple_build_catch (gimple_catch_types (catch_stmt), s1);
1414 break;
1416 case GIMPLE_EH_FILTER:
1417 s1 = remap_gimple_seq (gimple_eh_filter_failure (stmt), id);
1418 copy = gimple_build_eh_filter (gimple_eh_filter_types (stmt), s1);
1419 break;
1421 case GIMPLE_TRY:
1422 s1 = remap_gimple_seq (gimple_try_eval (stmt), id);
1423 s2 = remap_gimple_seq (gimple_try_cleanup (stmt), id);
1424 copy = gimple_build_try (s1, s2, gimple_try_kind (stmt));
1425 break;
1427 case GIMPLE_WITH_CLEANUP_EXPR:
1428 s1 = remap_gimple_seq (gimple_wce_cleanup (stmt), id);
1429 copy = gimple_build_wce (s1);
1430 break;
1432 case GIMPLE_OMP_PARALLEL:
1434 gomp_parallel *omp_par_stmt = as_a <gomp_parallel *> (stmt);
1435 s1 = remap_gimple_seq (gimple_omp_body (omp_par_stmt), id);
1436 copy = gimple_build_omp_parallel
1437 (s1,
1438 gimple_omp_parallel_clauses (omp_par_stmt),
1439 gimple_omp_parallel_child_fn (omp_par_stmt),
1440 gimple_omp_parallel_data_arg (omp_par_stmt));
1442 break;
1444 case GIMPLE_OMP_TASK:
1445 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1446 copy = gimple_build_omp_task
1447 (s1,
1448 gimple_omp_task_clauses (stmt),
1449 gimple_omp_task_child_fn (stmt),
1450 gimple_omp_task_data_arg (stmt),
1451 gimple_omp_task_copy_fn (stmt),
1452 gimple_omp_task_arg_size (stmt),
1453 gimple_omp_task_arg_align (stmt));
1454 break;
1456 case GIMPLE_OMP_FOR:
1457 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1458 s2 = remap_gimple_seq (gimple_omp_for_pre_body (stmt), id);
1459 copy = gimple_build_omp_for (s1, gimple_omp_for_kind (stmt),
1460 gimple_omp_for_clauses (stmt),
1461 gimple_omp_for_collapse (stmt), s2);
1463 size_t i;
1464 for (i = 0; i < gimple_omp_for_collapse (stmt); i++)
1466 gimple_omp_for_set_index (copy, i,
1467 gimple_omp_for_index (stmt, i));
1468 gimple_omp_for_set_initial (copy, i,
1469 gimple_omp_for_initial (stmt, i));
1470 gimple_omp_for_set_final (copy, i,
1471 gimple_omp_for_final (stmt, i));
1472 gimple_omp_for_set_incr (copy, i,
1473 gimple_omp_for_incr (stmt, i));
1474 gimple_omp_for_set_cond (copy, i,
1475 gimple_omp_for_cond (stmt, i));
1478 break;
1480 case GIMPLE_OMP_MASTER:
1481 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1482 copy = gimple_build_omp_master (s1);
1483 break;
1485 case GIMPLE_OMP_TASKGROUP:
1486 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1487 copy = gimple_build_omp_taskgroup (s1);
1488 break;
1490 case GIMPLE_OMP_ORDERED:
1491 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1492 copy = gimple_build_omp_ordered (s1);
1493 break;
1495 case GIMPLE_OMP_SECTION:
1496 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1497 copy = gimple_build_omp_section (s1);
1498 break;
1500 case GIMPLE_OMP_SECTIONS:
1501 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1502 copy = gimple_build_omp_sections
1503 (s1, gimple_omp_sections_clauses (stmt));
1504 break;
1506 case GIMPLE_OMP_SINGLE:
1507 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1508 copy = gimple_build_omp_single
1509 (s1, gimple_omp_single_clauses (stmt));
1510 break;
1512 case GIMPLE_OMP_TARGET:
1513 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1514 copy = gimple_build_omp_target
1515 (s1, gimple_omp_target_kind (stmt),
1516 gimple_omp_target_clauses (stmt));
1517 break;
1519 case GIMPLE_OMP_TEAMS:
1520 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1521 copy = gimple_build_omp_teams
1522 (s1, gimple_omp_teams_clauses (stmt));
1523 break;
1525 case GIMPLE_OMP_CRITICAL:
1526 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1527 copy = gimple_build_omp_critical (s1,
1528 gimple_omp_critical_name (
1529 as_a <gomp_critical *> (stmt)));
1530 break;
1532 case GIMPLE_TRANSACTION:
1534 gtransaction *old_trans_stmt = as_a <gtransaction *> (stmt);
1535 gtransaction *new_trans_stmt;
1536 s1 = remap_gimple_seq (gimple_transaction_body (old_trans_stmt),
1537 id);
1538 copy = new_trans_stmt
1539 = gimple_build_transaction (
1541 gimple_transaction_label (old_trans_stmt));
1542 gimple_transaction_set_subcode (
1543 new_trans_stmt,
1544 gimple_transaction_subcode (old_trans_stmt));
1546 break;
1548 default:
1549 gcc_unreachable ();
1552 else
1554 if (gimple_assign_copy_p (stmt)
1555 && gimple_assign_lhs (stmt) == gimple_assign_rhs1 (stmt)
1556 && auto_var_in_fn_p (gimple_assign_lhs (stmt), id->src_fn))
1558 /* Here we handle statements that are not completely rewritten.
1559 First we detect some inlining-induced bogosities for
1560 discarding. */
1562 /* Some assignments VAR = VAR; don't generate any rtl code
1563 and thus don't count as variable modification. Avoid
1564 keeping bogosities like 0 = 0. */
1565 tree decl = gimple_assign_lhs (stmt), value;
1566 tree *n;
1568 n = id->decl_map->get (decl);
1569 if (n)
1571 value = *n;
1572 STRIP_TYPE_NOPS (value);
1573 if (TREE_CONSTANT (value) || TREE_READONLY (value))
1574 return NULL;
1578 /* For *ptr_N ={v} {CLOBBER}, if ptr_N is SSA_NAME defined
1579 in a block that we aren't copying during tree_function_versioning,
1580 just drop the clobber stmt. */
1581 if (id->blocks_to_copy && gimple_clobber_p (stmt))
1583 tree lhs = gimple_assign_lhs (stmt);
1584 if (TREE_CODE (lhs) == MEM_REF
1585 && TREE_CODE (TREE_OPERAND (lhs, 0)) == SSA_NAME)
1587 gimple def_stmt = SSA_NAME_DEF_STMT (TREE_OPERAND (lhs, 0));
1588 if (gimple_bb (def_stmt)
1589 && !bitmap_bit_p (id->blocks_to_copy,
1590 gimple_bb (def_stmt)->index))
1591 return NULL;
1595 if (gimple_debug_bind_p (stmt))
1597 gdebug *copy
1598 = gimple_build_debug_bind (gimple_debug_bind_get_var (stmt),
1599 gimple_debug_bind_get_value (stmt),
1600 stmt);
1601 id->debug_stmts.safe_push (copy);
1602 gimple_seq_add_stmt (&stmts, copy);
1603 return stmts;
1605 if (gimple_debug_source_bind_p (stmt))
1607 gdebug *copy = gimple_build_debug_source_bind
1608 (gimple_debug_source_bind_get_var (stmt),
1609 gimple_debug_source_bind_get_value (stmt),
1610 stmt);
1611 id->debug_stmts.safe_push (copy);
1612 gimple_seq_add_stmt (&stmts, copy);
1613 return stmts;
1616 /* Create a new deep copy of the statement. */
1617 copy = gimple_copy (stmt);
1619 /* Clear flags that need revisiting. */
1620 if (gcall *call_stmt = dyn_cast <gcall *> (copy))
1622 if (gimple_call_tail_p (call_stmt))
1623 gimple_call_set_tail (call_stmt, false);
1624 if (gimple_call_from_thunk_p (call_stmt))
1625 gimple_call_set_from_thunk (call_stmt, false);
1628 /* Remap the region numbers for __builtin_eh_{pointer,filter},
1629 RESX and EH_DISPATCH. */
1630 if (id->eh_map)
1631 switch (gimple_code (copy))
1633 case GIMPLE_CALL:
1635 tree r, fndecl = gimple_call_fndecl (copy);
1636 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
1637 switch (DECL_FUNCTION_CODE (fndecl))
1639 case BUILT_IN_EH_COPY_VALUES:
1640 r = gimple_call_arg (copy, 1);
1641 r = remap_eh_region_tree_nr (r, id);
1642 gimple_call_set_arg (copy, 1, r);
1643 /* FALLTHRU */
1645 case BUILT_IN_EH_POINTER:
1646 case BUILT_IN_EH_FILTER:
1647 r = gimple_call_arg (copy, 0);
1648 r = remap_eh_region_tree_nr (r, id);
1649 gimple_call_set_arg (copy, 0, r);
1650 break;
1652 default:
1653 break;
1656 /* Reset alias info if we didn't apply measures to
1657 keep it valid over inlining by setting DECL_PT_UID. */
1658 if (!id->src_cfun->gimple_df
1659 || !id->src_cfun->gimple_df->ipa_pta)
1660 gimple_call_reset_alias_info (as_a <gcall *> (copy));
1662 break;
1664 case GIMPLE_RESX:
1666 gresx *resx_stmt = as_a <gresx *> (copy);
1667 int r = gimple_resx_region (resx_stmt);
1668 r = remap_eh_region_nr (r, id);
1669 gimple_resx_set_region (resx_stmt, r);
1671 break;
1673 case GIMPLE_EH_DISPATCH:
1675 geh_dispatch *eh_dispatch = as_a <geh_dispatch *> (copy);
1676 int r = gimple_eh_dispatch_region (eh_dispatch);
1677 r = remap_eh_region_nr (r, id);
1678 gimple_eh_dispatch_set_region (eh_dispatch, r);
1680 break;
1682 default:
1683 break;
1687 /* If STMT has a block defined, map it to the newly constructed
1688 block. */
1689 if (gimple_block (copy))
1691 tree *n;
1692 n = id->decl_map->get (gimple_block (copy));
1693 gcc_assert (n);
1694 gimple_set_block (copy, *n);
1697 if (gimple_debug_bind_p (copy) || gimple_debug_source_bind_p (copy))
1699 gimple_seq_add_stmt (&stmts, copy);
1700 return stmts;
1703 /* Remap all the operands in COPY. */
1704 memset (&wi, 0, sizeof (wi));
1705 wi.info = id;
1706 if (skip_first)
1707 walk_tree (gimple_op_ptr (copy, 1), remap_gimple_op_r, &wi, NULL);
1708 else
1709 walk_gimple_op (copy, remap_gimple_op_r, &wi);
1711 /* Clear the copied virtual operands. We are not remapping them here
1712 but are going to recreate them from scratch. */
1713 if (gimple_has_mem_ops (copy))
1715 gimple_set_vdef (copy, NULL_TREE);
1716 gimple_set_vuse (copy, NULL_TREE);
1719 gimple_seq_add_stmt (&stmts, copy);
1720 return stmts;
1724 /* Copy basic block, scale profile accordingly. Edges will be taken care of
1725 later */
1727 static basic_block
1728 copy_bb (copy_body_data *id, basic_block bb, int frequency_scale,
1729 gcov_type count_scale)
1731 gimple_stmt_iterator gsi, copy_gsi, seq_gsi;
1732 basic_block copy_basic_block;
1733 tree decl;
1734 gcov_type freq;
1735 basic_block prev;
1737 /* Search for previous copied basic block. */
1738 prev = bb->prev_bb;
1739 while (!prev->aux)
1740 prev = prev->prev_bb;
1742 /* create_basic_block() will append every new block to
1743 basic_block_info automatically. */
1744 copy_basic_block = create_basic_block (NULL, (void *) 0,
1745 (basic_block) prev->aux);
1746 copy_basic_block->count = apply_scale (bb->count, count_scale);
1748 /* We are going to rebuild frequencies from scratch. These values
1749 have just small importance to drive canonicalize_loop_headers. */
1750 freq = apply_scale ((gcov_type)bb->frequency, frequency_scale);
1752 /* We recompute frequencies after inlining, so this is quite safe. */
1753 if (freq > BB_FREQ_MAX)
1754 freq = BB_FREQ_MAX;
1755 copy_basic_block->frequency = freq;
1757 copy_gsi = gsi_start_bb (copy_basic_block);
1759 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1761 gimple_seq stmts;
1762 gimple stmt = gsi_stmt (gsi);
1763 gimple orig_stmt = stmt;
1764 gimple_stmt_iterator stmts_gsi;
1765 bool stmt_added = false;
1767 id->regimplify = false;
1768 stmts = remap_gimple_stmt (stmt, id);
1770 if (gimple_seq_empty_p (stmts))
1771 continue;
1773 seq_gsi = copy_gsi;
1775 for (stmts_gsi = gsi_start (stmts);
1776 !gsi_end_p (stmts_gsi); )
1778 stmt = gsi_stmt (stmts_gsi);
1780 /* Advance iterator now before stmt is moved to seq_gsi. */
1781 gsi_next (&stmts_gsi);
1783 if (gimple_nop_p (stmt))
1784 continue;
1786 gimple_duplicate_stmt_histograms (cfun, stmt, id->src_cfun,
1787 orig_stmt);
1789 /* With return slot optimization we can end up with
1790 non-gimple (foo *)&this->m, fix that here. */
1791 if (is_gimple_assign (stmt)
1792 && CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (stmt))
1793 && !is_gimple_val (gimple_assign_rhs1 (stmt)))
1795 tree new_rhs;
1796 new_rhs = force_gimple_operand_gsi (&seq_gsi,
1797 gimple_assign_rhs1 (stmt),
1798 true, NULL, false,
1799 GSI_CONTINUE_LINKING);
1800 gimple_assign_set_rhs1 (stmt, new_rhs);
1801 id->regimplify = false;
1804 gsi_insert_after (&seq_gsi, stmt, GSI_NEW_STMT);
1806 if (id->regimplify)
1807 gimple_regimplify_operands (stmt, &seq_gsi);
1809 stmt_added = true;
1812 if (!stmt_added)
1813 continue;
1815 /* If copy_basic_block has been empty at the start of this iteration,
1816 call gsi_start_bb again to get at the newly added statements. */
1817 if (gsi_end_p (copy_gsi))
1818 copy_gsi = gsi_start_bb (copy_basic_block);
1819 else
1820 gsi_next (&copy_gsi);
1822 /* Process the new statement. The call to gimple_regimplify_operands
1823 possibly turned the statement into multiple statements, we
1824 need to process all of them. */
1827 tree fn;
1828 gcall *call_stmt;
1830 stmt = gsi_stmt (copy_gsi);
1831 call_stmt = dyn_cast <gcall *> (stmt);
1832 if (call_stmt
1833 && gimple_call_va_arg_pack_p (call_stmt)
1834 && id->call_stmt)
1836 /* __builtin_va_arg_pack () should be replaced by
1837 all arguments corresponding to ... in the caller. */
1838 tree p;
1839 gcall *new_call;
1840 vec<tree> argarray;
1841 size_t nargs = gimple_call_num_args (id->call_stmt);
1842 size_t n, i, nargs_to_copy;
1843 bool remove_bounds = false;
1845 for (p = DECL_ARGUMENTS (id->src_fn); p; p = DECL_CHAIN (p))
1846 nargs--;
1848 /* Bounds should be removed from arg pack in case
1849 we handle not instrumented call in instrumented
1850 function. */
1851 nargs_to_copy = nargs;
1852 if (gimple_call_with_bounds_p (id->call_stmt)
1853 && !gimple_call_with_bounds_p (stmt))
1855 for (i = gimple_call_num_args (id->call_stmt) - nargs;
1856 i < gimple_call_num_args (id->call_stmt);
1857 i++)
1858 if (POINTER_BOUNDS_P (gimple_call_arg (id->call_stmt, i)))
1859 nargs_to_copy--;
1860 remove_bounds = true;
1863 /* Create the new array of arguments. */
1864 n = nargs_to_copy + gimple_call_num_args (call_stmt);
1865 argarray.create (n);
1866 argarray.safe_grow_cleared (n);
1868 /* Copy all the arguments before '...' */
1869 memcpy (argarray.address (),
1870 gimple_call_arg_ptr (call_stmt, 0),
1871 gimple_call_num_args (call_stmt) * sizeof (tree));
1873 if (remove_bounds)
1875 /* Append the rest of arguments removing bounds. */
1876 unsigned cur = gimple_call_num_args (call_stmt);
1877 i = gimple_call_num_args (id->call_stmt) - nargs;
1878 for (i = gimple_call_num_args (id->call_stmt) - nargs;
1879 i < gimple_call_num_args (id->call_stmt);
1880 i++)
1881 if (!POINTER_BOUNDS_P (gimple_call_arg (id->call_stmt, i)))
1882 argarray[cur++] = gimple_call_arg (id->call_stmt, i);
1883 gcc_assert (cur == n);
1885 else
1887 /* Append the arguments passed in '...' */
1888 memcpy (argarray.address () + gimple_call_num_args (call_stmt),
1889 gimple_call_arg_ptr (id->call_stmt, 0)
1890 + (gimple_call_num_args (id->call_stmt) - nargs),
1891 nargs * sizeof (tree));
1894 new_call = gimple_build_call_vec (gimple_call_fn (call_stmt),
1895 argarray);
1897 argarray.release ();
1899 /* Copy all GIMPLE_CALL flags, location and block, except
1900 GF_CALL_VA_ARG_PACK. */
1901 gimple_call_copy_flags (new_call, call_stmt);
1902 gimple_call_set_va_arg_pack (new_call, false);
1903 gimple_set_location (new_call, gimple_location (stmt));
1904 gimple_set_block (new_call, gimple_block (stmt));
1905 gimple_call_set_lhs (new_call, gimple_call_lhs (call_stmt));
1907 gsi_replace (&copy_gsi, new_call, false);
1908 stmt = new_call;
1910 else if (is_gimple_call (stmt)
1911 && id->call_stmt
1912 && (decl = gimple_call_fndecl (stmt))
1913 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
1914 && DECL_FUNCTION_CODE (decl) == BUILT_IN_VA_ARG_PACK_LEN)
1916 /* __builtin_va_arg_pack_len () should be replaced by
1917 the number of anonymous arguments. */
1918 size_t nargs = gimple_call_num_args (id->call_stmt), i;
1919 tree count, p;
1920 gimple new_stmt;
1922 for (p = DECL_ARGUMENTS (id->src_fn); p; p = DECL_CHAIN (p))
1923 nargs--;
1925 /* For instrumented calls we should ignore bounds. */
1926 for (i = gimple_call_num_args (id->call_stmt) - nargs;
1927 i < gimple_call_num_args (id->call_stmt);
1928 i++)
1929 if (POINTER_BOUNDS_P (gimple_call_arg (id->call_stmt, i)))
1930 nargs--;
1932 count = build_int_cst (integer_type_node, nargs);
1933 new_stmt = gimple_build_assign (gimple_call_lhs (stmt), count);
1934 gsi_replace (&copy_gsi, new_stmt, false);
1935 stmt = new_stmt;
1938 /* Statements produced by inlining can be unfolded, especially
1939 when we constant propagated some operands. We can't fold
1940 them right now for two reasons:
1941 1) folding require SSA_NAME_DEF_STMTs to be correct
1942 2) we can't change function calls to builtins.
1943 So we just mark statement for later folding. We mark
1944 all new statements, instead just statements that has changed
1945 by some nontrivial substitution so even statements made
1946 foldable indirectly are updated. If this turns out to be
1947 expensive, copy_body can be told to watch for nontrivial
1948 changes. */
1949 if (id->statements_to_fold)
1950 id->statements_to_fold->add (stmt);
1952 /* We're duplicating a CALL_EXPR. Find any corresponding
1953 callgraph edges and update or duplicate them. */
1954 if (gcall *call_stmt = dyn_cast <gcall *> (stmt))
1956 struct cgraph_edge *edge;
1958 switch (id->transform_call_graph_edges)
1960 case CB_CGE_DUPLICATE:
1961 edge = id->src_node->get_edge (orig_stmt);
1962 if (edge)
1964 int edge_freq = edge->frequency;
1965 int new_freq;
1966 struct cgraph_edge *old_edge = edge;
1967 edge = edge->clone (id->dst_node, call_stmt,
1968 gimple_uid (stmt),
1969 REG_BR_PROB_BASE, CGRAPH_FREQ_BASE,
1970 true);
1971 /* We could also just rescale the frequency, but
1972 doing so would introduce roundoff errors and make
1973 verifier unhappy. */
1974 new_freq = compute_call_stmt_bb_frequency (id->dst_node->decl,
1975 copy_basic_block);
1977 /* Speculative calls consist of two edges - direct and indirect.
1978 Duplicate the whole thing and distribute frequencies accordingly. */
1979 if (edge->speculative)
1981 struct cgraph_edge *direct, *indirect;
1982 struct ipa_ref *ref;
1984 gcc_assert (!edge->indirect_unknown_callee);
1985 old_edge->speculative_call_info (direct, indirect, ref);
1986 indirect = indirect->clone (id->dst_node, call_stmt,
1987 gimple_uid (stmt),
1988 REG_BR_PROB_BASE, CGRAPH_FREQ_BASE,
1989 true);
1990 if (old_edge->frequency + indirect->frequency)
1992 edge->frequency = MIN (RDIV ((gcov_type)new_freq * old_edge->frequency,
1993 (old_edge->frequency + indirect->frequency)),
1994 CGRAPH_FREQ_MAX);
1995 indirect->frequency = MIN (RDIV ((gcov_type)new_freq * indirect->frequency,
1996 (old_edge->frequency + indirect->frequency)),
1997 CGRAPH_FREQ_MAX);
1999 id->dst_node->clone_reference (ref, stmt);
2001 else
2003 edge->frequency = new_freq;
2004 if (dump_file
2005 && profile_status_for_fn (cfun) != PROFILE_ABSENT
2006 && (edge_freq > edge->frequency + 10
2007 || edge_freq < edge->frequency - 10))
2009 fprintf (dump_file, "Edge frequency estimated by "
2010 "cgraph %i diverge from inliner's estimate %i\n",
2011 edge_freq,
2012 edge->frequency);
2013 fprintf (dump_file,
2014 "Orig bb: %i, orig bb freq %i, new bb freq %i\n",
2015 bb->index,
2016 bb->frequency,
2017 copy_basic_block->frequency);
2021 break;
2023 case CB_CGE_MOVE_CLONES:
2024 id->dst_node->set_call_stmt_including_clones (orig_stmt,
2025 call_stmt);
2026 edge = id->dst_node->get_edge (stmt);
2027 break;
2029 case CB_CGE_MOVE:
2030 edge = id->dst_node->get_edge (orig_stmt);
2031 if (edge)
2032 edge->set_call_stmt (call_stmt);
2033 break;
2035 default:
2036 gcc_unreachable ();
2039 /* Constant propagation on argument done during inlining
2040 may create new direct call. Produce an edge for it. */
2041 if ((!edge
2042 || (edge->indirect_inlining_edge
2043 && id->transform_call_graph_edges == CB_CGE_MOVE_CLONES))
2044 && id->dst_node->definition
2045 && (fn = gimple_call_fndecl (stmt)) != NULL)
2047 struct cgraph_node *dest = cgraph_node::get (fn);
2049 /* We have missing edge in the callgraph. This can happen
2050 when previous inlining turned an indirect call into a
2051 direct call by constant propagating arguments or we are
2052 producing dead clone (for further cloning). In all
2053 other cases we hit a bug (incorrect node sharing is the
2054 most common reason for missing edges). */
2055 gcc_assert (!dest->definition
2056 || dest->address_taken
2057 || !id->src_node->definition
2058 || !id->dst_node->definition);
2059 if (id->transform_call_graph_edges == CB_CGE_MOVE_CLONES)
2060 id->dst_node->create_edge_including_clones
2061 (dest, orig_stmt, call_stmt, bb->count,
2062 compute_call_stmt_bb_frequency (id->dst_node->decl,
2063 copy_basic_block),
2064 CIF_ORIGINALLY_INDIRECT_CALL);
2065 else
2066 id->dst_node->create_edge (dest, call_stmt,
2067 bb->count,
2068 compute_call_stmt_bb_frequency
2069 (id->dst_node->decl,
2070 copy_basic_block))->inline_failed
2071 = CIF_ORIGINALLY_INDIRECT_CALL;
2072 if (dump_file)
2074 fprintf (dump_file, "Created new direct edge to %s\n",
2075 dest->name ());
2079 notice_special_calls (as_a <gcall *> (stmt));
2082 maybe_duplicate_eh_stmt_fn (cfun, stmt, id->src_cfun, orig_stmt,
2083 id->eh_map, id->eh_lp_nr);
2085 if (gimple_in_ssa_p (cfun) && !is_gimple_debug (stmt))
2087 ssa_op_iter i;
2088 tree def;
2090 FOR_EACH_SSA_TREE_OPERAND (def, stmt, i, SSA_OP_DEF)
2091 if (TREE_CODE (def) == SSA_NAME)
2092 SSA_NAME_DEF_STMT (def) = stmt;
2095 gsi_next (&copy_gsi);
2097 while (!gsi_end_p (copy_gsi));
2099 copy_gsi = gsi_last_bb (copy_basic_block);
2102 return copy_basic_block;
2105 /* Inserting Single Entry Multiple Exit region in SSA form into code in SSA
2106 form is quite easy, since dominator relationship for old basic blocks does
2107 not change.
2109 There is however exception where inlining might change dominator relation
2110 across EH edges from basic block within inlined functions destinating
2111 to landing pads in function we inline into.
2113 The function fills in PHI_RESULTs of such PHI nodes if they refer
2114 to gimple regs. Otherwise, the function mark PHI_RESULT of such
2115 PHI nodes for renaming. For non-gimple regs, renaming is safe: the
2116 EH edges are abnormal and SSA_NAME_OCCURS_IN_ABNORMAL_PHI must be
2117 set, and this means that there will be no overlapping live ranges
2118 for the underlying symbol.
2120 This might change in future if we allow redirecting of EH edges and
2121 we might want to change way build CFG pre-inlining to include
2122 all the possible edges then. */
2123 static void
2124 update_ssa_across_abnormal_edges (basic_block bb, basic_block ret_bb,
2125 bool can_throw, bool nonlocal_goto)
2127 edge e;
2128 edge_iterator ei;
2130 FOR_EACH_EDGE (e, ei, bb->succs)
2131 if (!e->dest->aux
2132 || ((basic_block)e->dest->aux)->index == ENTRY_BLOCK)
2134 gphi *phi;
2135 gphi_iterator si;
2137 if (!nonlocal_goto)
2138 gcc_assert (e->flags & EDGE_EH);
2140 if (!can_throw)
2141 gcc_assert (!(e->flags & EDGE_EH));
2143 for (si = gsi_start_phis (e->dest); !gsi_end_p (si); gsi_next (&si))
2145 edge re;
2147 phi = si.phi ();
2149 /* For abnormal goto/call edges the receiver can be the
2150 ENTRY_BLOCK. Do not assert this cannot happen. */
2152 gcc_assert ((e->flags & EDGE_EH)
2153 || SSA_NAME_OCCURS_IN_ABNORMAL_PHI (PHI_RESULT (phi)));
2155 re = find_edge (ret_bb, e->dest);
2156 gcc_checking_assert (re);
2157 gcc_assert ((re->flags & (EDGE_EH | EDGE_ABNORMAL))
2158 == (e->flags & (EDGE_EH | EDGE_ABNORMAL)));
2160 SET_USE (PHI_ARG_DEF_PTR_FROM_EDGE (phi, e),
2161 USE_FROM_PTR (PHI_ARG_DEF_PTR_FROM_EDGE (phi, re)));
2167 /* Copy edges from BB into its copy constructed earlier, scale profile
2168 accordingly. Edges will be taken care of later. Assume aux
2169 pointers to point to the copies of each BB. Return true if any
2170 debug stmts are left after a statement that must end the basic block. */
2172 static bool
2173 copy_edges_for_bb (basic_block bb, gcov_type count_scale, basic_block ret_bb,
2174 basic_block abnormal_goto_dest)
2176 basic_block new_bb = (basic_block) bb->aux;
2177 edge_iterator ei;
2178 edge old_edge;
2179 gimple_stmt_iterator si;
2180 int flags;
2181 bool need_debug_cleanup = false;
2183 /* Use the indices from the original blocks to create edges for the
2184 new ones. */
2185 FOR_EACH_EDGE (old_edge, ei, bb->succs)
2186 if (!(old_edge->flags & EDGE_EH))
2188 edge new_edge;
2190 flags = old_edge->flags;
2192 /* Return edges do get a FALLTHRU flag when the get inlined. */
2193 if (old_edge->dest->index == EXIT_BLOCK
2194 && !(old_edge->flags & (EDGE_TRUE_VALUE|EDGE_FALSE_VALUE|EDGE_FAKE))
2195 && old_edge->dest->aux != EXIT_BLOCK_PTR_FOR_FN (cfun))
2196 flags |= EDGE_FALLTHRU;
2197 new_edge = make_edge (new_bb, (basic_block) old_edge->dest->aux, flags);
2198 new_edge->count = apply_scale (old_edge->count, count_scale);
2199 new_edge->probability = old_edge->probability;
2202 if (bb->index == ENTRY_BLOCK || bb->index == EXIT_BLOCK)
2203 return false;
2205 for (si = gsi_start_bb (new_bb); !gsi_end_p (si);)
2207 gimple copy_stmt;
2208 bool can_throw, nonlocal_goto;
2210 copy_stmt = gsi_stmt (si);
2211 if (!is_gimple_debug (copy_stmt))
2212 update_stmt (copy_stmt);
2214 /* Do this before the possible split_block. */
2215 gsi_next (&si);
2217 /* If this tree could throw an exception, there are two
2218 cases where we need to add abnormal edge(s): the
2219 tree wasn't in a region and there is a "current
2220 region" in the caller; or the original tree had
2221 EH edges. In both cases split the block after the tree,
2222 and add abnormal edge(s) as needed; we need both
2223 those from the callee and the caller.
2224 We check whether the copy can throw, because the const
2225 propagation can change an INDIRECT_REF which throws
2226 into a COMPONENT_REF which doesn't. If the copy
2227 can throw, the original could also throw. */
2228 can_throw = stmt_can_throw_internal (copy_stmt);
2229 nonlocal_goto
2230 = (stmt_can_make_abnormal_goto (copy_stmt)
2231 && !computed_goto_p (copy_stmt));
2233 if (can_throw || nonlocal_goto)
2235 if (!gsi_end_p (si))
2237 while (!gsi_end_p (si) && is_gimple_debug (gsi_stmt (si)))
2238 gsi_next (&si);
2239 if (gsi_end_p (si))
2240 need_debug_cleanup = true;
2242 if (!gsi_end_p (si))
2243 /* Note that bb's predecessor edges aren't necessarily
2244 right at this point; split_block doesn't care. */
2246 edge e = split_block (new_bb, copy_stmt);
2248 new_bb = e->dest;
2249 new_bb->aux = e->src->aux;
2250 si = gsi_start_bb (new_bb);
2254 if (gimple_code (copy_stmt) == GIMPLE_EH_DISPATCH)
2255 make_eh_dispatch_edges (as_a <geh_dispatch *> (copy_stmt));
2256 else if (can_throw)
2257 make_eh_edges (copy_stmt);
2259 /* If the call we inline cannot make abnormal goto do not add
2260 additional abnormal edges but only retain those already present
2261 in the original function body. */
2262 if (abnormal_goto_dest == NULL)
2263 nonlocal_goto = false;
2264 if (nonlocal_goto)
2266 basic_block copy_stmt_bb = gimple_bb (copy_stmt);
2268 if (get_abnormal_succ_dispatcher (copy_stmt_bb))
2269 nonlocal_goto = false;
2270 /* ABNORMAL_DISPATCHER (1) is for longjmp/setjmp or nonlocal gotos
2271 in OpenMP regions which aren't allowed to be left abnormally.
2272 So, no need to add abnormal edge in that case. */
2273 else if (is_gimple_call (copy_stmt)
2274 && gimple_call_internal_p (copy_stmt)
2275 && (gimple_call_internal_fn (copy_stmt)
2276 == IFN_ABNORMAL_DISPATCHER)
2277 && gimple_call_arg (copy_stmt, 0) == boolean_true_node)
2278 nonlocal_goto = false;
2279 else
2280 make_edge (copy_stmt_bb, abnormal_goto_dest, EDGE_ABNORMAL);
2283 if ((can_throw || nonlocal_goto)
2284 && gimple_in_ssa_p (cfun))
2285 update_ssa_across_abnormal_edges (gimple_bb (copy_stmt), ret_bb,
2286 can_throw, nonlocal_goto);
2288 return need_debug_cleanup;
2291 /* Copy the PHIs. All blocks and edges are copied, some blocks
2292 was possibly split and new outgoing EH edges inserted.
2293 BB points to the block of original function and AUX pointers links
2294 the original and newly copied blocks. */
2296 static void
2297 copy_phis_for_bb (basic_block bb, copy_body_data *id)
2299 basic_block const new_bb = (basic_block) bb->aux;
2300 edge_iterator ei;
2301 gphi *phi;
2302 gphi_iterator si;
2303 edge new_edge;
2304 bool inserted = false;
2306 for (si = gsi_start_phis (bb); !gsi_end_p (si); gsi_next (&si))
2308 tree res, new_res;
2309 gphi *new_phi;
2311 phi = si.phi ();
2312 res = PHI_RESULT (phi);
2313 new_res = res;
2314 if (!virtual_operand_p (res))
2316 walk_tree (&new_res, copy_tree_body_r, id, NULL);
2317 new_phi = create_phi_node (new_res, new_bb);
2318 FOR_EACH_EDGE (new_edge, ei, new_bb->preds)
2320 edge old_edge = find_edge ((basic_block) new_edge->src->aux, bb);
2321 tree arg;
2322 tree new_arg;
2323 edge_iterator ei2;
2324 location_t locus;
2326 /* When doing partial cloning, we allow PHIs on the entry block
2327 as long as all the arguments are the same. Find any input
2328 edge to see argument to copy. */
2329 if (!old_edge)
2330 FOR_EACH_EDGE (old_edge, ei2, bb->preds)
2331 if (!old_edge->src->aux)
2332 break;
2334 arg = PHI_ARG_DEF_FROM_EDGE (phi, old_edge);
2335 new_arg = arg;
2336 walk_tree (&new_arg, copy_tree_body_r, id, NULL);
2337 gcc_assert (new_arg);
2338 /* With return slot optimization we can end up with
2339 non-gimple (foo *)&this->m, fix that here. */
2340 if (TREE_CODE (new_arg) != SSA_NAME
2341 && TREE_CODE (new_arg) != FUNCTION_DECL
2342 && !is_gimple_val (new_arg))
2344 gimple_seq stmts = NULL;
2345 new_arg = force_gimple_operand (new_arg, &stmts, true, NULL);
2346 gsi_insert_seq_on_edge (new_edge, stmts);
2347 inserted = true;
2349 locus = gimple_phi_arg_location_from_edge (phi, old_edge);
2350 if (LOCATION_BLOCK (locus))
2352 tree *n;
2353 n = id->decl_map->get (LOCATION_BLOCK (locus));
2354 gcc_assert (n);
2355 if (*n)
2356 locus = COMBINE_LOCATION_DATA (line_table, locus, *n);
2357 else
2358 locus = LOCATION_LOCUS (locus);
2360 else
2361 locus = LOCATION_LOCUS (locus);
2363 add_phi_arg (new_phi, new_arg, new_edge, locus);
2368 /* Commit the delayed edge insertions. */
2369 if (inserted)
2370 FOR_EACH_EDGE (new_edge, ei, new_bb->preds)
2371 gsi_commit_one_edge_insert (new_edge, NULL);
2375 /* Wrapper for remap_decl so it can be used as a callback. */
2377 static tree
2378 remap_decl_1 (tree decl, void *data)
2380 return remap_decl (decl, (copy_body_data *) data);
2383 /* Build struct function and associated datastructures for the new clone
2384 NEW_FNDECL to be build. CALLEE_FNDECL is the original. Function changes
2385 the cfun to the function of new_fndecl (and current_function_decl too). */
2387 static void
2388 initialize_cfun (tree new_fndecl, tree callee_fndecl, gcov_type count)
2390 struct function *src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
2391 gcov_type count_scale;
2393 if (!DECL_ARGUMENTS (new_fndecl))
2394 DECL_ARGUMENTS (new_fndecl) = DECL_ARGUMENTS (callee_fndecl);
2395 if (!DECL_RESULT (new_fndecl))
2396 DECL_RESULT (new_fndecl) = DECL_RESULT (callee_fndecl);
2398 if (ENTRY_BLOCK_PTR_FOR_FN (src_cfun)->count)
2399 count_scale
2400 = GCOV_COMPUTE_SCALE (count,
2401 ENTRY_BLOCK_PTR_FOR_FN (src_cfun)->count);
2402 else
2403 count_scale = REG_BR_PROB_BASE;
2405 /* Register specific tree functions. */
2406 gimple_register_cfg_hooks ();
2408 /* Get clean struct function. */
2409 push_struct_function (new_fndecl);
2411 /* We will rebuild these, so just sanity check that they are empty. */
2412 gcc_assert (VALUE_HISTOGRAMS (cfun) == NULL);
2413 gcc_assert (cfun->local_decls == NULL);
2414 gcc_assert (cfun->cfg == NULL);
2415 gcc_assert (cfun->decl == new_fndecl);
2417 /* Copy items we preserve during cloning. */
2418 cfun->static_chain_decl = src_cfun->static_chain_decl;
2419 cfun->nonlocal_goto_save_area = src_cfun->nonlocal_goto_save_area;
2420 cfun->function_end_locus = src_cfun->function_end_locus;
2421 cfun->curr_properties = src_cfun->curr_properties;
2422 cfun->last_verified = src_cfun->last_verified;
2423 cfun->va_list_gpr_size = src_cfun->va_list_gpr_size;
2424 cfun->va_list_fpr_size = src_cfun->va_list_fpr_size;
2425 cfun->has_nonlocal_label = src_cfun->has_nonlocal_label;
2426 cfun->stdarg = src_cfun->stdarg;
2427 cfun->after_inlining = src_cfun->after_inlining;
2428 cfun->can_throw_non_call_exceptions
2429 = src_cfun->can_throw_non_call_exceptions;
2430 cfun->can_delete_dead_exceptions = src_cfun->can_delete_dead_exceptions;
2431 cfun->returns_struct = src_cfun->returns_struct;
2432 cfun->returns_pcc_struct = src_cfun->returns_pcc_struct;
2434 init_empty_tree_cfg ();
2436 profile_status_for_fn (cfun) = profile_status_for_fn (src_cfun);
2437 ENTRY_BLOCK_PTR_FOR_FN (cfun)->count =
2438 (ENTRY_BLOCK_PTR_FOR_FN (src_cfun)->count * count_scale /
2439 REG_BR_PROB_BASE);
2440 ENTRY_BLOCK_PTR_FOR_FN (cfun)->frequency
2441 = ENTRY_BLOCK_PTR_FOR_FN (src_cfun)->frequency;
2442 EXIT_BLOCK_PTR_FOR_FN (cfun)->count =
2443 (EXIT_BLOCK_PTR_FOR_FN (src_cfun)->count * count_scale /
2444 REG_BR_PROB_BASE);
2445 EXIT_BLOCK_PTR_FOR_FN (cfun)->frequency =
2446 EXIT_BLOCK_PTR_FOR_FN (src_cfun)->frequency;
2447 if (src_cfun->eh)
2448 init_eh_for_function ();
2450 if (src_cfun->gimple_df)
2452 init_tree_ssa (cfun);
2453 cfun->gimple_df->in_ssa_p = true;
2454 init_ssa_operands (cfun);
2458 /* Helper function for copy_cfg_body. Move debug stmts from the end
2459 of NEW_BB to the beginning of successor basic blocks when needed. If the
2460 successor has multiple predecessors, reset them, otherwise keep
2461 their value. */
2463 static void
2464 maybe_move_debug_stmts_to_successors (copy_body_data *id, basic_block new_bb)
2466 edge e;
2467 edge_iterator ei;
2468 gimple_stmt_iterator si = gsi_last_nondebug_bb (new_bb);
2470 if (gsi_end_p (si)
2471 || gsi_one_before_end_p (si)
2472 || !(stmt_can_throw_internal (gsi_stmt (si))
2473 || stmt_can_make_abnormal_goto (gsi_stmt (si))))
2474 return;
2476 FOR_EACH_EDGE (e, ei, new_bb->succs)
2478 gimple_stmt_iterator ssi = gsi_last_bb (new_bb);
2479 gimple_stmt_iterator dsi = gsi_after_labels (e->dest);
2480 while (is_gimple_debug (gsi_stmt (ssi)))
2482 gimple stmt = gsi_stmt (ssi);
2483 gdebug *new_stmt;
2484 tree var;
2485 tree value;
2487 /* For the last edge move the debug stmts instead of copying
2488 them. */
2489 if (ei_one_before_end_p (ei))
2491 si = ssi;
2492 gsi_prev (&ssi);
2493 if (!single_pred_p (e->dest) && gimple_debug_bind_p (stmt))
2494 gimple_debug_bind_reset_value (stmt);
2495 gsi_remove (&si, false);
2496 gsi_insert_before (&dsi, stmt, GSI_SAME_STMT);
2497 continue;
2500 if (gimple_debug_bind_p (stmt))
2502 var = gimple_debug_bind_get_var (stmt);
2503 if (single_pred_p (e->dest))
2505 value = gimple_debug_bind_get_value (stmt);
2506 value = unshare_expr (value);
2508 else
2509 value = NULL_TREE;
2510 new_stmt = gimple_build_debug_bind (var, value, stmt);
2512 else if (gimple_debug_source_bind_p (stmt))
2514 var = gimple_debug_source_bind_get_var (stmt);
2515 value = gimple_debug_source_bind_get_value (stmt);
2516 new_stmt = gimple_build_debug_source_bind (var, value, stmt);
2518 else
2519 gcc_unreachable ();
2520 gsi_insert_before (&dsi, new_stmt, GSI_SAME_STMT);
2521 id->debug_stmts.safe_push (new_stmt);
2522 gsi_prev (&ssi);
2527 /* Make a copy of the sub-loops of SRC_PARENT and place them
2528 as siblings of DEST_PARENT. */
2530 static void
2531 copy_loops (copy_body_data *id,
2532 struct loop *dest_parent, struct loop *src_parent)
2534 struct loop *src_loop = src_parent->inner;
2535 while (src_loop)
2537 if (!id->blocks_to_copy
2538 || bitmap_bit_p (id->blocks_to_copy, src_loop->header->index))
2540 struct loop *dest_loop = alloc_loop ();
2542 /* Assign the new loop its header and latch and associate
2543 those with the new loop. */
2544 dest_loop->header = (basic_block)src_loop->header->aux;
2545 dest_loop->header->loop_father = dest_loop;
2546 if (src_loop->latch != NULL)
2548 dest_loop->latch = (basic_block)src_loop->latch->aux;
2549 dest_loop->latch->loop_father = dest_loop;
2552 /* Copy loop meta-data. */
2553 copy_loop_info (src_loop, dest_loop);
2555 /* Finally place it into the loop array and the loop tree. */
2556 place_new_loop (cfun, dest_loop);
2557 flow_loop_tree_node_add (dest_parent, dest_loop);
2559 dest_loop->safelen = src_loop->safelen;
2560 dest_loop->dont_vectorize = src_loop->dont_vectorize;
2561 if (src_loop->force_vectorize)
2563 dest_loop->force_vectorize = true;
2564 cfun->has_force_vectorize_loops = true;
2566 if (src_loop->simduid)
2568 dest_loop->simduid = remap_decl (src_loop->simduid, id);
2569 cfun->has_simduid_loops = true;
2572 /* Recurse. */
2573 copy_loops (id, dest_loop, src_loop);
2575 src_loop = src_loop->next;
2579 /* Call cgraph_redirect_edge_call_stmt_to_callee on all calls in BB */
2581 void
2582 redirect_all_calls (copy_body_data * id, basic_block bb)
2584 gimple_stmt_iterator si;
2585 for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
2587 if (is_gimple_call (gsi_stmt (si)))
2589 struct cgraph_edge *edge = id->dst_node->get_edge (gsi_stmt (si));
2590 if (edge)
2591 edge->redirect_call_stmt_to_callee ();
2596 /* Convert estimated frequencies into counts for NODE, scaling COUNT
2597 with each bb's frequency. Used when NODE has a 0-weight entry
2598 but we are about to inline it into a non-zero count call bb.
2599 See the comments for handle_missing_profiles() in predict.c for
2600 when this can happen for COMDATs. */
2602 void
2603 freqs_to_counts (struct cgraph_node *node, gcov_type count)
2605 basic_block bb;
2606 edge_iterator ei;
2607 edge e;
2608 struct function *fn = DECL_STRUCT_FUNCTION (node->decl);
2610 FOR_ALL_BB_FN(bb, fn)
2612 bb->count = apply_scale (count,
2613 GCOV_COMPUTE_SCALE (bb->frequency, BB_FREQ_MAX));
2614 FOR_EACH_EDGE (e, ei, bb->succs)
2615 e->count = apply_probability (e->src->count, e->probability);
2619 /* Make a copy of the body of FN so that it can be inserted inline in
2620 another function. Walks FN via CFG, returns new fndecl. */
2622 static tree
2623 copy_cfg_body (copy_body_data * id, gcov_type count, int frequency_scale,
2624 basic_block entry_block_map, basic_block exit_block_map,
2625 basic_block new_entry)
2627 tree callee_fndecl = id->src_fn;
2628 /* Original cfun for the callee, doesn't change. */
2629 struct function *src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
2630 struct function *cfun_to_copy;
2631 basic_block bb;
2632 tree new_fndecl = NULL;
2633 bool need_debug_cleanup = false;
2634 gcov_type count_scale;
2635 int last;
2636 int incoming_frequency = 0;
2637 gcov_type incoming_count = 0;
2639 /* This can happen for COMDAT routines that end up with 0 counts
2640 despite being called (see the comments for handle_missing_profiles()
2641 in predict.c as to why). Apply counts to the blocks in the callee
2642 before inlining, using the guessed edge frequencies, so that we don't
2643 end up with a 0-count inline body which can confuse downstream
2644 optimizations such as function splitting. */
2645 if (!ENTRY_BLOCK_PTR_FOR_FN (src_cfun)->count && count)
2647 /* Apply the larger of the call bb count and the total incoming
2648 call edge count to the callee. */
2649 gcov_type in_count = 0;
2650 struct cgraph_edge *in_edge;
2651 for (in_edge = id->src_node->callers; in_edge;
2652 in_edge = in_edge->next_caller)
2653 in_count += in_edge->count;
2654 freqs_to_counts (id->src_node, count > in_count ? count : in_count);
2657 if (ENTRY_BLOCK_PTR_FOR_FN (src_cfun)->count)
2658 count_scale
2659 = GCOV_COMPUTE_SCALE (count,
2660 ENTRY_BLOCK_PTR_FOR_FN (src_cfun)->count);
2661 else
2662 count_scale = REG_BR_PROB_BASE;
2664 /* Register specific tree functions. */
2665 gimple_register_cfg_hooks ();
2667 /* If we are inlining just region of the function, make sure to connect
2668 new entry to ENTRY_BLOCK_PTR_FOR_FN (cfun). Since new entry can be
2669 part of loop, we must compute frequency and probability of
2670 ENTRY_BLOCK_PTR_FOR_FN (cfun) based on the frequencies and
2671 probabilities of edges incoming from nonduplicated region. */
2672 if (new_entry)
2674 edge e;
2675 edge_iterator ei;
2677 FOR_EACH_EDGE (e, ei, new_entry->preds)
2678 if (!e->src->aux)
2680 incoming_frequency += EDGE_FREQUENCY (e);
2681 incoming_count += e->count;
2683 incoming_count = apply_scale (incoming_count, count_scale);
2684 incoming_frequency
2685 = apply_scale ((gcov_type)incoming_frequency, frequency_scale);
2686 ENTRY_BLOCK_PTR_FOR_FN (cfun)->count = incoming_count;
2687 ENTRY_BLOCK_PTR_FOR_FN (cfun)->frequency = incoming_frequency;
2690 /* Must have a CFG here at this point. */
2691 gcc_assert (ENTRY_BLOCK_PTR_FOR_FN
2692 (DECL_STRUCT_FUNCTION (callee_fndecl)));
2694 cfun_to_copy = id->src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
2696 ENTRY_BLOCK_PTR_FOR_FN (cfun_to_copy)->aux = entry_block_map;
2697 EXIT_BLOCK_PTR_FOR_FN (cfun_to_copy)->aux = exit_block_map;
2698 entry_block_map->aux = ENTRY_BLOCK_PTR_FOR_FN (cfun_to_copy);
2699 exit_block_map->aux = EXIT_BLOCK_PTR_FOR_FN (cfun_to_copy);
2701 /* Duplicate any exception-handling regions. */
2702 if (cfun->eh)
2703 id->eh_map = duplicate_eh_regions (cfun_to_copy, NULL, id->eh_lp_nr,
2704 remap_decl_1, id);
2706 /* Use aux pointers to map the original blocks to copy. */
2707 FOR_EACH_BB_FN (bb, cfun_to_copy)
2708 if (!id->blocks_to_copy || bitmap_bit_p (id->blocks_to_copy, bb->index))
2710 basic_block new_bb = copy_bb (id, bb, frequency_scale, count_scale);
2711 bb->aux = new_bb;
2712 new_bb->aux = bb;
2713 new_bb->loop_father = entry_block_map->loop_father;
2716 last = last_basic_block_for_fn (cfun);
2718 /* Now that we've duplicated the blocks, duplicate their edges. */
2719 basic_block abnormal_goto_dest = NULL;
2720 if (id->call_stmt
2721 && stmt_can_make_abnormal_goto (id->call_stmt))
2723 gimple_stmt_iterator gsi = gsi_for_stmt (id->call_stmt);
2725 bb = gimple_bb (id->call_stmt);
2726 gsi_next (&gsi);
2727 if (gsi_end_p (gsi))
2728 abnormal_goto_dest = get_abnormal_succ_dispatcher (bb);
2730 FOR_ALL_BB_FN (bb, cfun_to_copy)
2731 if (!id->blocks_to_copy
2732 || (bb->index > 0 && bitmap_bit_p (id->blocks_to_copy, bb->index)))
2733 need_debug_cleanup |= copy_edges_for_bb (bb, count_scale, exit_block_map,
2734 abnormal_goto_dest);
2736 if (new_entry)
2738 edge e = make_edge (entry_block_map, (basic_block)new_entry->aux, EDGE_FALLTHRU);
2739 e->probability = REG_BR_PROB_BASE;
2740 e->count = incoming_count;
2743 /* Duplicate the loop tree, if available and wanted. */
2744 if (loops_for_fn (src_cfun) != NULL
2745 && current_loops != NULL)
2747 copy_loops (id, entry_block_map->loop_father,
2748 get_loop (src_cfun, 0));
2749 /* Defer to cfgcleanup to update loop-father fields of basic-blocks. */
2750 loops_state_set (LOOPS_NEED_FIXUP);
2753 /* If the loop tree in the source function needed fixup, mark the
2754 destination loop tree for fixup, too. */
2755 if (loops_for_fn (src_cfun)->state & LOOPS_NEED_FIXUP)
2756 loops_state_set (LOOPS_NEED_FIXUP);
2758 if (gimple_in_ssa_p (cfun))
2759 FOR_ALL_BB_FN (bb, cfun_to_copy)
2760 if (!id->blocks_to_copy
2761 || (bb->index > 0 && bitmap_bit_p (id->blocks_to_copy, bb->index)))
2762 copy_phis_for_bb (bb, id);
2764 FOR_ALL_BB_FN (bb, cfun_to_copy)
2765 if (bb->aux)
2767 if (need_debug_cleanup
2768 && bb->index != ENTRY_BLOCK
2769 && bb->index != EXIT_BLOCK)
2770 maybe_move_debug_stmts_to_successors (id, (basic_block) bb->aux);
2771 /* Update call edge destinations. This can not be done before loop
2772 info is updated, because we may split basic blocks. */
2773 if (id->transform_call_graph_edges == CB_CGE_DUPLICATE)
2774 redirect_all_calls (id, (basic_block)bb->aux);
2775 ((basic_block)bb->aux)->aux = NULL;
2776 bb->aux = NULL;
2779 /* Zero out AUX fields of newly created block during EH edge
2780 insertion. */
2781 for (; last < last_basic_block_for_fn (cfun); last++)
2783 if (need_debug_cleanup)
2784 maybe_move_debug_stmts_to_successors (id,
2785 BASIC_BLOCK_FOR_FN (cfun, last));
2786 BASIC_BLOCK_FOR_FN (cfun, last)->aux = NULL;
2787 /* Update call edge destinations. This can not be done before loop
2788 info is updated, because we may split basic blocks. */
2789 if (id->transform_call_graph_edges == CB_CGE_DUPLICATE)
2790 redirect_all_calls (id, BASIC_BLOCK_FOR_FN (cfun, last));
2792 entry_block_map->aux = NULL;
2793 exit_block_map->aux = NULL;
2795 if (id->eh_map)
2797 delete id->eh_map;
2798 id->eh_map = NULL;
2800 if (id->dependence_map)
2802 delete id->dependence_map;
2803 id->dependence_map = NULL;
2806 return new_fndecl;
2809 /* Copy the debug STMT using ID. We deal with these statements in a
2810 special way: if any variable in their VALUE expression wasn't
2811 remapped yet, we won't remap it, because that would get decl uids
2812 out of sync, causing codegen differences between -g and -g0. If
2813 this arises, we drop the VALUE expression altogether. */
2815 static void
2816 copy_debug_stmt (gdebug *stmt, copy_body_data *id)
2818 tree t, *n;
2819 struct walk_stmt_info wi;
2821 if (gimple_block (stmt))
2823 n = id->decl_map->get (gimple_block (stmt));
2824 gimple_set_block (stmt, n ? *n : id->block);
2827 /* Remap all the operands in COPY. */
2828 memset (&wi, 0, sizeof (wi));
2829 wi.info = id;
2831 processing_debug_stmt = 1;
2833 if (gimple_debug_source_bind_p (stmt))
2834 t = gimple_debug_source_bind_get_var (stmt);
2835 else
2836 t = gimple_debug_bind_get_var (stmt);
2838 if (TREE_CODE (t) == PARM_DECL && id->debug_map
2839 && (n = id->debug_map->get (t)))
2841 gcc_assert (TREE_CODE (*n) == VAR_DECL);
2842 t = *n;
2844 else if (TREE_CODE (t) == VAR_DECL
2845 && !is_global_var (t)
2846 && !id->decl_map->get (t))
2847 /* T is a non-localized variable. */;
2848 else
2849 walk_tree (&t, remap_gimple_op_r, &wi, NULL);
2851 if (gimple_debug_bind_p (stmt))
2853 gimple_debug_bind_set_var (stmt, t);
2855 if (gimple_debug_bind_has_value_p (stmt))
2856 walk_tree (gimple_debug_bind_get_value_ptr (stmt),
2857 remap_gimple_op_r, &wi, NULL);
2859 /* Punt if any decl couldn't be remapped. */
2860 if (processing_debug_stmt < 0)
2861 gimple_debug_bind_reset_value (stmt);
2863 else if (gimple_debug_source_bind_p (stmt))
2865 gimple_debug_source_bind_set_var (stmt, t);
2866 walk_tree (gimple_debug_source_bind_get_value_ptr (stmt),
2867 remap_gimple_op_r, &wi, NULL);
2868 /* When inlining and source bind refers to one of the optimized
2869 away parameters, change the source bind into normal debug bind
2870 referring to the corresponding DEBUG_EXPR_DECL that should have
2871 been bound before the call stmt. */
2872 t = gimple_debug_source_bind_get_value (stmt);
2873 if (t != NULL_TREE
2874 && TREE_CODE (t) == PARM_DECL
2875 && id->call_stmt)
2877 vec<tree, va_gc> **debug_args = decl_debug_args_lookup (id->src_fn);
2878 unsigned int i;
2879 if (debug_args != NULL)
2881 for (i = 0; i < vec_safe_length (*debug_args); i += 2)
2882 if ((**debug_args)[i] == DECL_ORIGIN (t)
2883 && TREE_CODE ((**debug_args)[i + 1]) == DEBUG_EXPR_DECL)
2885 t = (**debug_args)[i + 1];
2886 stmt->subcode = GIMPLE_DEBUG_BIND;
2887 gimple_debug_bind_set_value (stmt, t);
2888 break;
2894 processing_debug_stmt = 0;
2896 update_stmt (stmt);
2899 /* Process deferred debug stmts. In order to give values better odds
2900 of being successfully remapped, we delay the processing of debug
2901 stmts until all other stmts that might require remapping are
2902 processed. */
2904 static void
2905 copy_debug_stmts (copy_body_data *id)
2907 size_t i;
2908 gdebug *stmt;
2910 if (!id->debug_stmts.exists ())
2911 return;
2913 FOR_EACH_VEC_ELT (id->debug_stmts, i, stmt)
2914 copy_debug_stmt (stmt, id);
2916 id->debug_stmts.release ();
2919 /* Make a copy of the body of SRC_FN so that it can be inserted inline in
2920 another function. */
2922 static tree
2923 copy_tree_body (copy_body_data *id)
2925 tree fndecl = id->src_fn;
2926 tree body = DECL_SAVED_TREE (fndecl);
2928 walk_tree (&body, copy_tree_body_r, id, NULL);
2930 return body;
2933 /* Make a copy of the body of FN so that it can be inserted inline in
2934 another function. */
2936 static tree
2937 copy_body (copy_body_data *id, gcov_type count, int frequency_scale,
2938 basic_block entry_block_map, basic_block exit_block_map,
2939 basic_block new_entry)
2941 tree fndecl = id->src_fn;
2942 tree body;
2944 /* If this body has a CFG, walk CFG and copy. */
2945 gcc_assert (ENTRY_BLOCK_PTR_FOR_FN (DECL_STRUCT_FUNCTION (fndecl)));
2946 body = copy_cfg_body (id, count, frequency_scale, entry_block_map, exit_block_map,
2947 new_entry);
2948 copy_debug_stmts (id);
2950 return body;
2953 /* Return true if VALUE is an ADDR_EXPR of an automatic variable
2954 defined in function FN, or of a data member thereof. */
2956 static bool
2957 self_inlining_addr_expr (tree value, tree fn)
2959 tree var;
2961 if (TREE_CODE (value) != ADDR_EXPR)
2962 return false;
2964 var = get_base_address (TREE_OPERAND (value, 0));
2966 return var && auto_var_in_fn_p (var, fn);
2969 /* Append to BB a debug annotation that binds VAR to VALUE, inheriting
2970 lexical block and line number information from base_stmt, if given,
2971 or from the last stmt of the block otherwise. */
2973 static gimple
2974 insert_init_debug_bind (copy_body_data *id,
2975 basic_block bb, tree var, tree value,
2976 gimple base_stmt)
2978 gimple note;
2979 gimple_stmt_iterator gsi;
2980 tree tracked_var;
2982 if (!gimple_in_ssa_p (id->src_cfun))
2983 return NULL;
2985 if (!MAY_HAVE_DEBUG_STMTS)
2986 return NULL;
2988 tracked_var = target_for_debug_bind (var);
2989 if (!tracked_var)
2990 return NULL;
2992 if (bb)
2994 gsi = gsi_last_bb (bb);
2995 if (!base_stmt && !gsi_end_p (gsi))
2996 base_stmt = gsi_stmt (gsi);
2999 note = gimple_build_debug_bind (tracked_var, value, base_stmt);
3001 if (bb)
3003 if (!gsi_end_p (gsi))
3004 gsi_insert_after (&gsi, note, GSI_SAME_STMT);
3005 else
3006 gsi_insert_before (&gsi, note, GSI_SAME_STMT);
3009 return note;
3012 static void
3013 insert_init_stmt (copy_body_data *id, basic_block bb, gimple init_stmt)
3015 /* If VAR represents a zero-sized variable, it's possible that the
3016 assignment statement may result in no gimple statements. */
3017 if (init_stmt)
3019 gimple_stmt_iterator si = gsi_last_bb (bb);
3021 /* We can end up with init statements that store to a non-register
3022 from a rhs with a conversion. Handle that here by forcing the
3023 rhs into a temporary. gimple_regimplify_operands is not
3024 prepared to do this for us. */
3025 if (!is_gimple_debug (init_stmt)
3026 && !is_gimple_reg (gimple_assign_lhs (init_stmt))
3027 && is_gimple_reg_type (TREE_TYPE (gimple_assign_lhs (init_stmt)))
3028 && gimple_assign_rhs_class (init_stmt) == GIMPLE_UNARY_RHS)
3030 tree rhs = build1 (gimple_assign_rhs_code (init_stmt),
3031 gimple_expr_type (init_stmt),
3032 gimple_assign_rhs1 (init_stmt));
3033 rhs = force_gimple_operand_gsi (&si, rhs, true, NULL_TREE, false,
3034 GSI_NEW_STMT);
3035 gimple_assign_set_rhs_code (init_stmt, TREE_CODE (rhs));
3036 gimple_assign_set_rhs1 (init_stmt, rhs);
3038 gsi_insert_after (&si, init_stmt, GSI_NEW_STMT);
3039 gimple_regimplify_operands (init_stmt, &si);
3041 if (!is_gimple_debug (init_stmt) && MAY_HAVE_DEBUG_STMTS)
3043 tree def = gimple_assign_lhs (init_stmt);
3044 insert_init_debug_bind (id, bb, def, def, init_stmt);
3049 /* Initialize parameter P with VALUE. If needed, produce init statement
3050 at the end of BB. When BB is NULL, we return init statement to be
3051 output later. */
3052 static gimple
3053 setup_one_parameter (copy_body_data *id, tree p, tree value, tree fn,
3054 basic_block bb, tree *vars)
3056 gimple init_stmt = NULL;
3057 tree var;
3058 tree rhs = value;
3059 tree def = (gimple_in_ssa_p (cfun)
3060 ? ssa_default_def (id->src_cfun, p) : NULL);
3062 if (value
3063 && value != error_mark_node
3064 && !useless_type_conversion_p (TREE_TYPE (p), TREE_TYPE (value)))
3066 /* If we can match up types by promotion/demotion do so. */
3067 if (fold_convertible_p (TREE_TYPE (p), value))
3068 rhs = fold_convert (TREE_TYPE (p), value);
3069 else
3071 /* ??? For valid programs we should not end up here.
3072 Still if we end up with truly mismatched types here, fall back
3073 to using a VIEW_CONVERT_EXPR or a literal zero to not leak invalid
3074 GIMPLE to the following passes. */
3075 if (!is_gimple_reg_type (TREE_TYPE (value))
3076 || TYPE_SIZE (TREE_TYPE (p)) == TYPE_SIZE (TREE_TYPE (value)))
3077 rhs = fold_build1 (VIEW_CONVERT_EXPR, TREE_TYPE (p), value);
3078 else
3079 rhs = build_zero_cst (TREE_TYPE (p));
3083 /* Make an equivalent VAR_DECL. Note that we must NOT remap the type
3084 here since the type of this decl must be visible to the calling
3085 function. */
3086 var = copy_decl_to_var (p, id);
3088 /* Declare this new variable. */
3089 DECL_CHAIN (var) = *vars;
3090 *vars = var;
3092 /* Make gimplifier happy about this variable. */
3093 DECL_SEEN_IN_BIND_EXPR_P (var) = 1;
3095 /* If the parameter is never assigned to, has no SSA_NAMEs created,
3096 we would not need to create a new variable here at all, if it
3097 weren't for debug info. Still, we can just use the argument
3098 value. */
3099 if (TREE_READONLY (p)
3100 && !TREE_ADDRESSABLE (p)
3101 && value && !TREE_SIDE_EFFECTS (value)
3102 && !def)
3104 /* We may produce non-gimple trees by adding NOPs or introduce
3105 invalid sharing when operand is not really constant.
3106 It is not big deal to prohibit constant propagation here as
3107 we will constant propagate in DOM1 pass anyway. */
3108 if (is_gimple_min_invariant (value)
3109 && useless_type_conversion_p (TREE_TYPE (p),
3110 TREE_TYPE (value))
3111 /* We have to be very careful about ADDR_EXPR. Make sure
3112 the base variable isn't a local variable of the inlined
3113 function, e.g., when doing recursive inlining, direct or
3114 mutually-recursive or whatever, which is why we don't
3115 just test whether fn == current_function_decl. */
3116 && ! self_inlining_addr_expr (value, fn))
3118 insert_decl_map (id, p, value);
3119 insert_debug_decl_map (id, p, var);
3120 return insert_init_debug_bind (id, bb, var, value, NULL);
3124 /* Register the VAR_DECL as the equivalent for the PARM_DECL;
3125 that way, when the PARM_DECL is encountered, it will be
3126 automatically replaced by the VAR_DECL. */
3127 insert_decl_map (id, p, var);
3129 /* Even if P was TREE_READONLY, the new VAR should not be.
3130 In the original code, we would have constructed a
3131 temporary, and then the function body would have never
3132 changed the value of P. However, now, we will be
3133 constructing VAR directly. The constructor body may
3134 change its value multiple times as it is being
3135 constructed. Therefore, it must not be TREE_READONLY;
3136 the back-end assumes that TREE_READONLY variable is
3137 assigned to only once. */
3138 if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (p)))
3139 TREE_READONLY (var) = 0;
3141 /* If there is no setup required and we are in SSA, take the easy route
3142 replacing all SSA names representing the function parameter by the
3143 SSA name passed to function.
3145 We need to construct map for the variable anyway as it might be used
3146 in different SSA names when parameter is set in function.
3148 Do replacement at -O0 for const arguments replaced by constant.
3149 This is important for builtin_constant_p and other construct requiring
3150 constant argument to be visible in inlined function body. */
3151 if (gimple_in_ssa_p (cfun) && rhs && def && is_gimple_reg (p)
3152 && (optimize
3153 || (TREE_READONLY (p)
3154 && is_gimple_min_invariant (rhs)))
3155 && (TREE_CODE (rhs) == SSA_NAME
3156 || is_gimple_min_invariant (rhs))
3157 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (def))
3159 insert_decl_map (id, def, rhs);
3160 return insert_init_debug_bind (id, bb, var, rhs, NULL);
3163 /* If the value of argument is never used, don't care about initializing
3164 it. */
3165 if (optimize && gimple_in_ssa_p (cfun) && !def && is_gimple_reg (p))
3167 gcc_assert (!value || !TREE_SIDE_EFFECTS (value));
3168 return insert_init_debug_bind (id, bb, var, rhs, NULL);
3171 /* Initialize this VAR_DECL from the equivalent argument. Convert
3172 the argument to the proper type in case it was promoted. */
3173 if (value)
3175 if (rhs == error_mark_node)
3177 insert_decl_map (id, p, var);
3178 return insert_init_debug_bind (id, bb, var, rhs, NULL);
3181 STRIP_USELESS_TYPE_CONVERSION (rhs);
3183 /* If we are in SSA form properly remap the default definition
3184 or assign to a dummy SSA name if the parameter is unused and
3185 we are not optimizing. */
3186 if (gimple_in_ssa_p (cfun) && is_gimple_reg (p))
3188 if (def)
3190 def = remap_ssa_name (def, id);
3191 init_stmt = gimple_build_assign (def, rhs);
3192 SSA_NAME_IS_DEFAULT_DEF (def) = 0;
3193 set_ssa_default_def (cfun, var, NULL);
3195 else if (!optimize)
3197 def = make_ssa_name (var);
3198 init_stmt = gimple_build_assign (def, rhs);
3201 else
3202 init_stmt = gimple_build_assign (var, rhs);
3204 if (bb && init_stmt)
3205 insert_init_stmt (id, bb, init_stmt);
3207 return init_stmt;
3210 /* Generate code to initialize the parameters of the function at the
3211 top of the stack in ID from the GIMPLE_CALL STMT. */
3213 static void
3214 initialize_inlined_parameters (copy_body_data *id, gimple stmt,
3215 tree fn, basic_block bb)
3217 tree parms;
3218 size_t i;
3219 tree p;
3220 tree vars = NULL_TREE;
3221 tree static_chain = gimple_call_chain (stmt);
3223 /* Figure out what the parameters are. */
3224 parms = DECL_ARGUMENTS (fn);
3226 /* Loop through the parameter declarations, replacing each with an
3227 equivalent VAR_DECL, appropriately initialized. */
3228 for (p = parms, i = 0; p; p = DECL_CHAIN (p), i++)
3230 tree val;
3231 val = i < gimple_call_num_args (stmt) ? gimple_call_arg (stmt, i) : NULL;
3232 setup_one_parameter (id, p, val, fn, bb, &vars);
3234 /* After remapping parameters remap their types. This has to be done
3235 in a second loop over all parameters to appropriately remap
3236 variable sized arrays when the size is specified in a
3237 parameter following the array. */
3238 for (p = parms, i = 0; p; p = DECL_CHAIN (p), i++)
3240 tree *varp = id->decl_map->get (p);
3241 if (varp
3242 && TREE_CODE (*varp) == VAR_DECL)
3244 tree def = (gimple_in_ssa_p (cfun) && is_gimple_reg (p)
3245 ? ssa_default_def (id->src_cfun, p) : NULL);
3246 tree var = *varp;
3247 TREE_TYPE (var) = remap_type (TREE_TYPE (var), id);
3248 /* Also remap the default definition if it was remapped
3249 to the default definition of the parameter replacement
3250 by the parameter setup. */
3251 if (def)
3253 tree *defp = id->decl_map->get (def);
3254 if (defp
3255 && TREE_CODE (*defp) == SSA_NAME
3256 && SSA_NAME_VAR (*defp) == var)
3257 TREE_TYPE (*defp) = TREE_TYPE (var);
3262 /* Initialize the static chain. */
3263 p = DECL_STRUCT_FUNCTION (fn)->static_chain_decl;
3264 gcc_assert (fn != current_function_decl);
3265 if (p)
3267 /* No static chain? Seems like a bug in tree-nested.c. */
3268 gcc_assert (static_chain);
3270 setup_one_parameter (id, p, static_chain, fn, bb, &vars);
3273 declare_inline_vars (id->block, vars);
3277 /* Declare a return variable to replace the RESULT_DECL for the
3278 function we are calling. An appropriate DECL_STMT is returned.
3279 The USE_STMT is filled to contain a use of the declaration to
3280 indicate the return value of the function.
3282 RETURN_SLOT, if non-null is place where to store the result. It
3283 is set only for CALL_EXPR_RETURN_SLOT_OPT. MODIFY_DEST, if non-null,
3284 was the LHS of the MODIFY_EXPR to which this call is the RHS.
3286 RETURN_BOUNDS holds a destination for returned bounds.
3288 The return value is a (possibly null) value that holds the result
3289 as seen by the caller. */
3291 static tree
3292 declare_return_variable (copy_body_data *id, tree return_slot, tree modify_dest,
3293 tree return_bounds, basic_block entry_bb)
3295 tree callee = id->src_fn;
3296 tree result = DECL_RESULT (callee);
3297 tree callee_type = TREE_TYPE (result);
3298 tree caller_type;
3299 tree var, use;
3301 /* Handle type-mismatches in the function declaration return type
3302 vs. the call expression. */
3303 if (modify_dest)
3304 caller_type = TREE_TYPE (modify_dest);
3305 else
3306 caller_type = TREE_TYPE (TREE_TYPE (callee));
3308 /* We don't need to do anything for functions that don't return anything. */
3309 if (VOID_TYPE_P (callee_type))
3310 return NULL_TREE;
3312 /* If there was a return slot, then the return value is the
3313 dereferenced address of that object. */
3314 if (return_slot)
3316 /* The front end shouldn't have used both return_slot and
3317 a modify expression. */
3318 gcc_assert (!modify_dest);
3319 if (DECL_BY_REFERENCE (result))
3321 tree return_slot_addr = build_fold_addr_expr (return_slot);
3322 STRIP_USELESS_TYPE_CONVERSION (return_slot_addr);
3324 /* We are going to construct *&return_slot and we can't do that
3325 for variables believed to be not addressable.
3327 FIXME: This check possibly can match, because values returned
3328 via return slot optimization are not believed to have address
3329 taken by alias analysis. */
3330 gcc_assert (TREE_CODE (return_slot) != SSA_NAME);
3331 var = return_slot_addr;
3333 else
3335 var = return_slot;
3336 gcc_assert (TREE_CODE (var) != SSA_NAME);
3337 if (TREE_ADDRESSABLE (result))
3338 mark_addressable (var);
3340 if ((TREE_CODE (TREE_TYPE (result)) == COMPLEX_TYPE
3341 || TREE_CODE (TREE_TYPE (result)) == VECTOR_TYPE)
3342 && !DECL_GIMPLE_REG_P (result)
3343 && DECL_P (var))
3344 DECL_GIMPLE_REG_P (var) = 0;
3345 use = NULL;
3346 goto done;
3349 /* All types requiring non-trivial constructors should have been handled. */
3350 gcc_assert (!TREE_ADDRESSABLE (callee_type));
3352 /* Attempt to avoid creating a new temporary variable. */
3353 if (modify_dest
3354 && TREE_CODE (modify_dest) != SSA_NAME)
3356 bool use_it = false;
3358 /* We can't use MODIFY_DEST if there's type promotion involved. */
3359 if (!useless_type_conversion_p (callee_type, caller_type))
3360 use_it = false;
3362 /* ??? If we're assigning to a variable sized type, then we must
3363 reuse the destination variable, because we've no good way to
3364 create variable sized temporaries at this point. */
3365 else if (TREE_CODE (TYPE_SIZE_UNIT (caller_type)) != INTEGER_CST)
3366 use_it = true;
3368 /* If the callee cannot possibly modify MODIFY_DEST, then we can
3369 reuse it as the result of the call directly. Don't do this if
3370 it would promote MODIFY_DEST to addressable. */
3371 else if (TREE_ADDRESSABLE (result))
3372 use_it = false;
3373 else
3375 tree base_m = get_base_address (modify_dest);
3377 /* If the base isn't a decl, then it's a pointer, and we don't
3378 know where that's going to go. */
3379 if (!DECL_P (base_m))
3380 use_it = false;
3381 else if (is_global_var (base_m))
3382 use_it = false;
3383 else if ((TREE_CODE (TREE_TYPE (result)) == COMPLEX_TYPE
3384 || TREE_CODE (TREE_TYPE (result)) == VECTOR_TYPE)
3385 && !DECL_GIMPLE_REG_P (result)
3386 && DECL_GIMPLE_REG_P (base_m))
3387 use_it = false;
3388 else if (!TREE_ADDRESSABLE (base_m))
3389 use_it = true;
3392 if (use_it)
3394 var = modify_dest;
3395 use = NULL;
3396 goto done;
3400 gcc_assert (TREE_CODE (TYPE_SIZE_UNIT (callee_type)) == INTEGER_CST);
3402 var = copy_result_decl_to_var (result, id);
3403 DECL_SEEN_IN_BIND_EXPR_P (var) = 1;
3405 /* Do not have the rest of GCC warn about this variable as it should
3406 not be visible to the user. */
3407 TREE_NO_WARNING (var) = 1;
3409 declare_inline_vars (id->block, var);
3411 /* Build the use expr. If the return type of the function was
3412 promoted, convert it back to the expected type. */
3413 use = var;
3414 if (!useless_type_conversion_p (caller_type, TREE_TYPE (var)))
3416 /* If we can match up types by promotion/demotion do so. */
3417 if (fold_convertible_p (caller_type, var))
3418 use = fold_convert (caller_type, var);
3419 else
3421 /* ??? For valid programs we should not end up here.
3422 Still if we end up with truly mismatched types here, fall back
3423 to using a MEM_REF to not leak invalid GIMPLE to the following
3424 passes. */
3425 /* Prevent var from being written into SSA form. */
3426 if (TREE_CODE (TREE_TYPE (var)) == VECTOR_TYPE
3427 || TREE_CODE (TREE_TYPE (var)) == COMPLEX_TYPE)
3428 DECL_GIMPLE_REG_P (var) = false;
3429 else if (is_gimple_reg_type (TREE_TYPE (var)))
3430 TREE_ADDRESSABLE (var) = true;
3431 use = fold_build2 (MEM_REF, caller_type,
3432 build_fold_addr_expr (var),
3433 build_int_cst (ptr_type_node, 0));
3437 STRIP_USELESS_TYPE_CONVERSION (use);
3439 if (DECL_BY_REFERENCE (result))
3441 TREE_ADDRESSABLE (var) = 1;
3442 var = build_fold_addr_expr (var);
3445 done:
3446 /* Register the VAR_DECL as the equivalent for the RESULT_DECL; that
3447 way, when the RESULT_DECL is encountered, it will be
3448 automatically replaced by the VAR_DECL.
3450 When returning by reference, ensure that RESULT_DECL remaps to
3451 gimple_val. */
3452 if (DECL_BY_REFERENCE (result)
3453 && !is_gimple_val (var))
3455 tree temp = create_tmp_var (TREE_TYPE (result), "retvalptr");
3456 insert_decl_map (id, result, temp);
3457 /* When RESULT_DECL is in SSA form, we need to remap and initialize
3458 it's default_def SSA_NAME. */
3459 if (gimple_in_ssa_p (id->src_cfun)
3460 && is_gimple_reg (result))
3462 temp = make_ssa_name (temp);
3463 insert_decl_map (id, ssa_default_def (id->src_cfun, result), temp);
3465 insert_init_stmt (id, entry_bb, gimple_build_assign (temp, var));
3467 else
3468 insert_decl_map (id, result, var);
3470 /* Remember this so we can ignore it in remap_decls. */
3471 id->retvar = var;
3473 /* If returned bounds are used, then make var for them. */
3474 if (return_bounds)
3476 tree bndtemp = create_tmp_var (pointer_bounds_type_node, "retbnd");
3477 DECL_SEEN_IN_BIND_EXPR_P (bndtemp) = 1;
3478 TREE_NO_WARNING (bndtemp) = 1;
3479 declare_inline_vars (id->block, bndtemp);
3481 id->retbnd = bndtemp;
3482 insert_init_stmt (id, entry_bb,
3483 gimple_build_assign (bndtemp, chkp_get_zero_bounds_var ()));
3486 return use;
3489 /* Callback through walk_tree. Determine if a DECL_INITIAL makes reference
3490 to a local label. */
3492 static tree
3493 has_label_address_in_static_1 (tree *nodep, int *walk_subtrees, void *fnp)
3495 tree node = *nodep;
3496 tree fn = (tree) fnp;
3498 if (TREE_CODE (node) == LABEL_DECL && DECL_CONTEXT (node) == fn)
3499 return node;
3501 if (TYPE_P (node))
3502 *walk_subtrees = 0;
3504 return NULL_TREE;
3507 /* Determine if the function can be copied. If so return NULL. If
3508 not return a string describng the reason for failure. */
3510 static const char *
3511 copy_forbidden (struct function *fun, tree fndecl)
3513 const char *reason = fun->cannot_be_copied_reason;
3514 tree decl;
3515 unsigned ix;
3517 /* Only examine the function once. */
3518 if (fun->cannot_be_copied_set)
3519 return reason;
3521 /* We cannot copy a function that receives a non-local goto
3522 because we cannot remap the destination label used in the
3523 function that is performing the non-local goto. */
3524 /* ??? Actually, this should be possible, if we work at it.
3525 No doubt there's just a handful of places that simply
3526 assume it doesn't happen and don't substitute properly. */
3527 if (fun->has_nonlocal_label)
3529 reason = G_("function %q+F can never be copied "
3530 "because it receives a non-local goto");
3531 goto fail;
3534 FOR_EACH_LOCAL_DECL (fun, ix, decl)
3535 if (TREE_CODE (decl) == VAR_DECL
3536 && TREE_STATIC (decl)
3537 && !DECL_EXTERNAL (decl)
3538 && DECL_INITIAL (decl)
3539 && walk_tree_without_duplicates (&DECL_INITIAL (decl),
3540 has_label_address_in_static_1,
3541 fndecl))
3543 reason = G_("function %q+F can never be copied because it saves "
3544 "address of local label in a static variable");
3545 goto fail;
3548 fail:
3549 fun->cannot_be_copied_reason = reason;
3550 fun->cannot_be_copied_set = true;
3551 return reason;
3555 static const char *inline_forbidden_reason;
3557 /* A callback for walk_gimple_seq to handle statements. Returns non-null
3558 iff a function can not be inlined. Also sets the reason why. */
3560 static tree
3561 inline_forbidden_p_stmt (gimple_stmt_iterator *gsi, bool *handled_ops_p,
3562 struct walk_stmt_info *wip)
3564 tree fn = (tree) wip->info;
3565 tree t;
3566 gimple stmt = gsi_stmt (*gsi);
3568 switch (gimple_code (stmt))
3570 case GIMPLE_CALL:
3571 /* Refuse to inline alloca call unless user explicitly forced so as
3572 this may change program's memory overhead drastically when the
3573 function using alloca is called in loop. In GCC present in
3574 SPEC2000 inlining into schedule_block cause it to require 2GB of
3575 RAM instead of 256MB. Don't do so for alloca calls emitted for
3576 VLA objects as those can't cause unbounded growth (they're always
3577 wrapped inside stack_save/stack_restore regions. */
3578 if (gimple_alloca_call_p (stmt)
3579 && !gimple_call_alloca_for_var_p (as_a <gcall *> (stmt))
3580 && !lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)))
3582 inline_forbidden_reason
3583 = G_("function %q+F can never be inlined because it uses "
3584 "alloca (override using the always_inline attribute)");
3585 *handled_ops_p = true;
3586 return fn;
3589 t = gimple_call_fndecl (stmt);
3590 if (t == NULL_TREE)
3591 break;
3593 /* We cannot inline functions that call setjmp. */
3594 if (setjmp_call_p (t))
3596 inline_forbidden_reason
3597 = G_("function %q+F can never be inlined because it uses setjmp");
3598 *handled_ops_p = true;
3599 return t;
3602 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL)
3603 switch (DECL_FUNCTION_CODE (t))
3605 /* We cannot inline functions that take a variable number of
3606 arguments. */
3607 case BUILT_IN_VA_START:
3608 case BUILT_IN_NEXT_ARG:
3609 case BUILT_IN_VA_END:
3610 inline_forbidden_reason
3611 = G_("function %q+F can never be inlined because it "
3612 "uses variable argument lists");
3613 *handled_ops_p = true;
3614 return t;
3616 case BUILT_IN_LONGJMP:
3617 /* We can't inline functions that call __builtin_longjmp at
3618 all. The non-local goto machinery really requires the
3619 destination be in a different function. If we allow the
3620 function calling __builtin_longjmp to be inlined into the
3621 function calling __builtin_setjmp, Things will Go Awry. */
3622 inline_forbidden_reason
3623 = G_("function %q+F can never be inlined because "
3624 "it uses setjmp-longjmp exception handling");
3625 *handled_ops_p = true;
3626 return t;
3628 case BUILT_IN_NONLOCAL_GOTO:
3629 /* Similarly. */
3630 inline_forbidden_reason
3631 = G_("function %q+F can never be inlined because "
3632 "it uses non-local goto");
3633 *handled_ops_p = true;
3634 return t;
3636 case BUILT_IN_RETURN:
3637 case BUILT_IN_APPLY_ARGS:
3638 /* If a __builtin_apply_args caller would be inlined,
3639 it would be saving arguments of the function it has
3640 been inlined into. Similarly __builtin_return would
3641 return from the function the inline has been inlined into. */
3642 inline_forbidden_reason
3643 = G_("function %q+F can never be inlined because "
3644 "it uses __builtin_return or __builtin_apply_args");
3645 *handled_ops_p = true;
3646 return t;
3648 default:
3649 break;
3651 break;
3653 case GIMPLE_GOTO:
3654 t = gimple_goto_dest (stmt);
3656 /* We will not inline a function which uses computed goto. The
3657 addresses of its local labels, which may be tucked into
3658 global storage, are of course not constant across
3659 instantiations, which causes unexpected behavior. */
3660 if (TREE_CODE (t) != LABEL_DECL)
3662 inline_forbidden_reason
3663 = G_("function %q+F can never be inlined "
3664 "because it contains a computed goto");
3665 *handled_ops_p = true;
3666 return t;
3668 break;
3670 default:
3671 break;
3674 *handled_ops_p = false;
3675 return NULL_TREE;
3678 /* Return true if FNDECL is a function that cannot be inlined into
3679 another one. */
3681 static bool
3682 inline_forbidden_p (tree fndecl)
3684 struct function *fun = DECL_STRUCT_FUNCTION (fndecl);
3685 struct walk_stmt_info wi;
3686 basic_block bb;
3687 bool forbidden_p = false;
3689 /* First check for shared reasons not to copy the code. */
3690 inline_forbidden_reason = copy_forbidden (fun, fndecl);
3691 if (inline_forbidden_reason != NULL)
3692 return true;
3694 /* Next, walk the statements of the function looking for
3695 constraucts we can't handle, or are non-optimal for inlining. */
3696 hash_set<tree> visited_nodes;
3697 memset (&wi, 0, sizeof (wi));
3698 wi.info = (void *) fndecl;
3699 wi.pset = &visited_nodes;
3701 FOR_EACH_BB_FN (bb, fun)
3703 gimple ret;
3704 gimple_seq seq = bb_seq (bb);
3705 ret = walk_gimple_seq (seq, inline_forbidden_p_stmt, NULL, &wi);
3706 forbidden_p = (ret != NULL);
3707 if (forbidden_p)
3708 break;
3711 return forbidden_p;
3714 /* Return false if the function FNDECL cannot be inlined on account of its
3715 attributes, true otherwise. */
3716 static bool
3717 function_attribute_inlinable_p (const_tree fndecl)
3719 if (targetm.attribute_table)
3721 const_tree a;
3723 for (a = DECL_ATTRIBUTES (fndecl); a; a = TREE_CHAIN (a))
3725 const_tree name = TREE_PURPOSE (a);
3726 int i;
3728 for (i = 0; targetm.attribute_table[i].name != NULL; i++)
3729 if (is_attribute_p (targetm.attribute_table[i].name, name))
3730 return targetm.function_attribute_inlinable_p (fndecl);
3734 return true;
3737 /* Returns nonzero if FN is a function that does not have any
3738 fundamental inline blocking properties. */
3740 bool
3741 tree_inlinable_function_p (tree fn)
3743 bool inlinable = true;
3744 bool do_warning;
3745 tree always_inline;
3747 /* If we've already decided this function shouldn't be inlined,
3748 there's no need to check again. */
3749 if (DECL_UNINLINABLE (fn))
3750 return false;
3752 /* We only warn for functions declared `inline' by the user. */
3753 do_warning = (warn_inline
3754 && DECL_DECLARED_INLINE_P (fn)
3755 && !DECL_NO_INLINE_WARNING_P (fn)
3756 && !DECL_IN_SYSTEM_HEADER (fn));
3758 always_inline = lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn));
3760 if (flag_no_inline
3761 && always_inline == NULL)
3763 if (do_warning)
3764 warning (OPT_Winline, "function %q+F can never be inlined because it "
3765 "is suppressed using -fno-inline", fn);
3766 inlinable = false;
3769 else if (!function_attribute_inlinable_p (fn))
3771 if (do_warning)
3772 warning (OPT_Winline, "function %q+F can never be inlined because it "
3773 "uses attributes conflicting with inlining", fn);
3774 inlinable = false;
3777 else if (inline_forbidden_p (fn))
3779 /* See if we should warn about uninlinable functions. Previously,
3780 some of these warnings would be issued while trying to expand
3781 the function inline, but that would cause multiple warnings
3782 about functions that would for example call alloca. But since
3783 this a property of the function, just one warning is enough.
3784 As a bonus we can now give more details about the reason why a
3785 function is not inlinable. */
3786 if (always_inline)
3787 error (inline_forbidden_reason, fn);
3788 else if (do_warning)
3789 warning (OPT_Winline, inline_forbidden_reason, fn);
3791 inlinable = false;
3794 /* Squirrel away the result so that we don't have to check again. */
3795 DECL_UNINLINABLE (fn) = !inlinable;
3797 return inlinable;
3800 /* Estimate the cost of a memory move of type TYPE. Use machine dependent
3801 word size and take possible memcpy call into account and return
3802 cost based on whether optimizing for size or speed according to SPEED_P. */
3805 estimate_move_cost (tree type, bool ARG_UNUSED (speed_p))
3807 HOST_WIDE_INT size;
3809 gcc_assert (!VOID_TYPE_P (type));
3811 if (TREE_CODE (type) == VECTOR_TYPE)
3813 machine_mode inner = TYPE_MODE (TREE_TYPE (type));
3814 machine_mode simd
3815 = targetm.vectorize.preferred_simd_mode (inner);
3816 int simd_mode_size = GET_MODE_SIZE (simd);
3817 return ((GET_MODE_SIZE (TYPE_MODE (type)) + simd_mode_size - 1)
3818 / simd_mode_size);
3821 size = int_size_in_bytes (type);
3823 if (size < 0 || size > MOVE_MAX_PIECES * MOVE_RATIO (speed_p))
3824 /* Cost of a memcpy call, 3 arguments and the call. */
3825 return 4;
3826 else
3827 return ((size + MOVE_MAX_PIECES - 1) / MOVE_MAX_PIECES);
3830 /* Returns cost of operation CODE, according to WEIGHTS */
3832 static int
3833 estimate_operator_cost (enum tree_code code, eni_weights *weights,
3834 tree op1 ATTRIBUTE_UNUSED, tree op2)
3836 switch (code)
3838 /* These are "free" conversions, or their presumed cost
3839 is folded into other operations. */
3840 case RANGE_EXPR:
3841 CASE_CONVERT:
3842 case COMPLEX_EXPR:
3843 case PAREN_EXPR:
3844 case VIEW_CONVERT_EXPR:
3845 return 0;
3847 /* Assign cost of 1 to usual operations.
3848 ??? We may consider mapping RTL costs to this. */
3849 case COND_EXPR:
3850 case VEC_COND_EXPR:
3851 case VEC_PERM_EXPR:
3853 case PLUS_EXPR:
3854 case POINTER_PLUS_EXPR:
3855 case MINUS_EXPR:
3856 case MULT_EXPR:
3857 case MULT_HIGHPART_EXPR:
3858 case FMA_EXPR:
3860 case ADDR_SPACE_CONVERT_EXPR:
3861 case FIXED_CONVERT_EXPR:
3862 case FIX_TRUNC_EXPR:
3864 case NEGATE_EXPR:
3865 case FLOAT_EXPR:
3866 case MIN_EXPR:
3867 case MAX_EXPR:
3868 case ABS_EXPR:
3870 case LSHIFT_EXPR:
3871 case RSHIFT_EXPR:
3872 case LROTATE_EXPR:
3873 case RROTATE_EXPR:
3875 case BIT_IOR_EXPR:
3876 case BIT_XOR_EXPR:
3877 case BIT_AND_EXPR:
3878 case BIT_NOT_EXPR:
3880 case TRUTH_ANDIF_EXPR:
3881 case TRUTH_ORIF_EXPR:
3882 case TRUTH_AND_EXPR:
3883 case TRUTH_OR_EXPR:
3884 case TRUTH_XOR_EXPR:
3885 case TRUTH_NOT_EXPR:
3887 case LT_EXPR:
3888 case LE_EXPR:
3889 case GT_EXPR:
3890 case GE_EXPR:
3891 case EQ_EXPR:
3892 case NE_EXPR:
3893 case ORDERED_EXPR:
3894 case UNORDERED_EXPR:
3896 case UNLT_EXPR:
3897 case UNLE_EXPR:
3898 case UNGT_EXPR:
3899 case UNGE_EXPR:
3900 case UNEQ_EXPR:
3901 case LTGT_EXPR:
3903 case CONJ_EXPR:
3905 case PREDECREMENT_EXPR:
3906 case PREINCREMENT_EXPR:
3907 case POSTDECREMENT_EXPR:
3908 case POSTINCREMENT_EXPR:
3910 case REALIGN_LOAD_EXPR:
3912 case REDUC_MAX_EXPR:
3913 case REDUC_MIN_EXPR:
3914 case REDUC_PLUS_EXPR:
3915 case WIDEN_SUM_EXPR:
3916 case WIDEN_MULT_EXPR:
3917 case DOT_PROD_EXPR:
3918 case SAD_EXPR:
3919 case WIDEN_MULT_PLUS_EXPR:
3920 case WIDEN_MULT_MINUS_EXPR:
3921 case WIDEN_LSHIFT_EXPR:
3923 case VEC_WIDEN_MULT_HI_EXPR:
3924 case VEC_WIDEN_MULT_LO_EXPR:
3925 case VEC_WIDEN_MULT_EVEN_EXPR:
3926 case VEC_WIDEN_MULT_ODD_EXPR:
3927 case VEC_UNPACK_HI_EXPR:
3928 case VEC_UNPACK_LO_EXPR:
3929 case VEC_UNPACK_FLOAT_HI_EXPR:
3930 case VEC_UNPACK_FLOAT_LO_EXPR:
3931 case VEC_PACK_TRUNC_EXPR:
3932 case VEC_PACK_SAT_EXPR:
3933 case VEC_PACK_FIX_TRUNC_EXPR:
3934 case VEC_WIDEN_LSHIFT_HI_EXPR:
3935 case VEC_WIDEN_LSHIFT_LO_EXPR:
3937 return 1;
3939 /* Few special cases of expensive operations. This is useful
3940 to avoid inlining on functions having too many of these. */
3941 case TRUNC_DIV_EXPR:
3942 case CEIL_DIV_EXPR:
3943 case FLOOR_DIV_EXPR:
3944 case ROUND_DIV_EXPR:
3945 case EXACT_DIV_EXPR:
3946 case TRUNC_MOD_EXPR:
3947 case CEIL_MOD_EXPR:
3948 case FLOOR_MOD_EXPR:
3949 case ROUND_MOD_EXPR:
3950 case RDIV_EXPR:
3951 if (TREE_CODE (op2) != INTEGER_CST)
3952 return weights->div_mod_cost;
3953 return 1;
3955 default:
3956 /* We expect a copy assignment with no operator. */
3957 gcc_assert (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS);
3958 return 0;
3963 /* Estimate number of instructions that will be created by expanding
3964 the statements in the statement sequence STMTS.
3965 WEIGHTS contains weights attributed to various constructs. */
3967 static
3968 int estimate_num_insns_seq (gimple_seq stmts, eni_weights *weights)
3970 int cost;
3971 gimple_stmt_iterator gsi;
3973 cost = 0;
3974 for (gsi = gsi_start (stmts); !gsi_end_p (gsi); gsi_next (&gsi))
3975 cost += estimate_num_insns (gsi_stmt (gsi), weights);
3977 return cost;
3981 /* Estimate number of instructions that will be created by expanding STMT.
3982 WEIGHTS contains weights attributed to various constructs. */
3985 estimate_num_insns (gimple stmt, eni_weights *weights)
3987 unsigned cost, i;
3988 enum gimple_code code = gimple_code (stmt);
3989 tree lhs;
3990 tree rhs;
3992 switch (code)
3994 case GIMPLE_ASSIGN:
3995 /* Try to estimate the cost of assignments. We have three cases to
3996 deal with:
3997 1) Simple assignments to registers;
3998 2) Stores to things that must live in memory. This includes
3999 "normal" stores to scalars, but also assignments of large
4000 structures, or constructors of big arrays;
4002 Let us look at the first two cases, assuming we have "a = b + C":
4003 <GIMPLE_ASSIGN <var_decl "a">
4004 <plus_expr <var_decl "b"> <constant C>>
4005 If "a" is a GIMPLE register, the assignment to it is free on almost
4006 any target, because "a" usually ends up in a real register. Hence
4007 the only cost of this expression comes from the PLUS_EXPR, and we
4008 can ignore the GIMPLE_ASSIGN.
4009 If "a" is not a GIMPLE register, the assignment to "a" will most
4010 likely be a real store, so the cost of the GIMPLE_ASSIGN is the cost
4011 of moving something into "a", which we compute using the function
4012 estimate_move_cost. */
4013 if (gimple_clobber_p (stmt))
4014 return 0; /* ={v} {CLOBBER} stmt expands to nothing. */
4016 lhs = gimple_assign_lhs (stmt);
4017 rhs = gimple_assign_rhs1 (stmt);
4019 cost = 0;
4021 /* Account for the cost of moving to / from memory. */
4022 if (gimple_store_p (stmt))
4023 cost += estimate_move_cost (TREE_TYPE (lhs), weights->time_based);
4024 if (gimple_assign_load_p (stmt))
4025 cost += estimate_move_cost (TREE_TYPE (rhs), weights->time_based);
4027 cost += estimate_operator_cost (gimple_assign_rhs_code (stmt), weights,
4028 gimple_assign_rhs1 (stmt),
4029 get_gimple_rhs_class (gimple_assign_rhs_code (stmt))
4030 == GIMPLE_BINARY_RHS
4031 ? gimple_assign_rhs2 (stmt) : NULL);
4032 break;
4034 case GIMPLE_COND:
4035 cost = 1 + estimate_operator_cost (gimple_cond_code (stmt), weights,
4036 gimple_op (stmt, 0),
4037 gimple_op (stmt, 1));
4038 break;
4040 case GIMPLE_SWITCH:
4042 gswitch *switch_stmt = as_a <gswitch *> (stmt);
4043 /* Take into account cost of the switch + guess 2 conditional jumps for
4044 each case label.
4046 TODO: once the switch expansion logic is sufficiently separated, we can
4047 do better job on estimating cost of the switch. */
4048 if (weights->time_based)
4049 cost = floor_log2 (gimple_switch_num_labels (switch_stmt)) * 2;
4050 else
4051 cost = gimple_switch_num_labels (switch_stmt) * 2;
4053 break;
4055 case GIMPLE_CALL:
4057 tree decl;
4059 if (gimple_call_internal_p (stmt))
4060 return 0;
4061 else if ((decl = gimple_call_fndecl (stmt))
4062 && DECL_BUILT_IN (decl))
4064 /* Do not special case builtins where we see the body.
4065 This just confuse inliner. */
4066 struct cgraph_node *node;
4067 if (!(node = cgraph_node::get (decl))
4068 || node->definition)
4070 /* For buitins that are likely expanded to nothing or
4071 inlined do not account operand costs. */
4072 else if (is_simple_builtin (decl))
4073 return 0;
4074 else if (is_inexpensive_builtin (decl))
4075 return weights->target_builtin_call_cost;
4076 else if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
4078 /* We canonicalize x * x to pow (x, 2.0) with -ffast-math, so
4079 specialize the cheap expansion we do here.
4080 ??? This asks for a more general solution. */
4081 switch (DECL_FUNCTION_CODE (decl))
4083 case BUILT_IN_POW:
4084 case BUILT_IN_POWF:
4085 case BUILT_IN_POWL:
4086 if (TREE_CODE (gimple_call_arg (stmt, 1)) == REAL_CST
4087 && REAL_VALUES_EQUAL
4088 (TREE_REAL_CST (gimple_call_arg (stmt, 1)), dconst2))
4089 return estimate_operator_cost
4090 (MULT_EXPR, weights, gimple_call_arg (stmt, 0),
4091 gimple_call_arg (stmt, 0));
4092 break;
4094 default:
4095 break;
4100 cost = decl ? weights->call_cost : weights->indirect_call_cost;
4101 if (gimple_call_lhs (stmt))
4102 cost += estimate_move_cost (TREE_TYPE (gimple_call_lhs (stmt)),
4103 weights->time_based);
4104 for (i = 0; i < gimple_call_num_args (stmt); i++)
4106 tree arg = gimple_call_arg (stmt, i);
4107 cost += estimate_move_cost (TREE_TYPE (arg),
4108 weights->time_based);
4110 break;
4113 case GIMPLE_RETURN:
4114 return weights->return_cost;
4116 case GIMPLE_GOTO:
4117 case GIMPLE_LABEL:
4118 case GIMPLE_NOP:
4119 case GIMPLE_PHI:
4120 case GIMPLE_PREDICT:
4121 case GIMPLE_DEBUG:
4122 return 0;
4124 case GIMPLE_ASM:
4126 int count = asm_str_count (gimple_asm_string (as_a <gasm *> (stmt)));
4127 /* 1000 means infinity. This avoids overflows later
4128 with very long asm statements. */
4129 if (count > 1000)
4130 count = 1000;
4131 return count;
4134 case GIMPLE_RESX:
4135 /* This is either going to be an external function call with one
4136 argument, or two register copy statements plus a goto. */
4137 return 2;
4139 case GIMPLE_EH_DISPATCH:
4140 /* ??? This is going to turn into a switch statement. Ideally
4141 we'd have a look at the eh region and estimate the number of
4142 edges involved. */
4143 return 10;
4145 case GIMPLE_BIND:
4146 return estimate_num_insns_seq (
4147 gimple_bind_body (as_a <gbind *> (stmt)),
4148 weights);
4150 case GIMPLE_EH_FILTER:
4151 return estimate_num_insns_seq (gimple_eh_filter_failure (stmt), weights);
4153 case GIMPLE_CATCH:
4154 return estimate_num_insns_seq (gimple_catch_handler (
4155 as_a <gcatch *> (stmt)),
4156 weights);
4158 case GIMPLE_TRY:
4159 return (estimate_num_insns_seq (gimple_try_eval (stmt), weights)
4160 + estimate_num_insns_seq (gimple_try_cleanup (stmt), weights));
4162 /* OpenMP directives are generally very expensive. */
4164 case GIMPLE_OMP_RETURN:
4165 case GIMPLE_OMP_SECTIONS_SWITCH:
4166 case GIMPLE_OMP_ATOMIC_STORE:
4167 case GIMPLE_OMP_CONTINUE:
4168 /* ...except these, which are cheap. */
4169 return 0;
4171 case GIMPLE_OMP_ATOMIC_LOAD:
4172 return weights->omp_cost;
4174 case GIMPLE_OMP_FOR:
4175 return (weights->omp_cost
4176 + estimate_num_insns_seq (gimple_omp_body (stmt), weights)
4177 + estimate_num_insns_seq (gimple_omp_for_pre_body (stmt), weights));
4179 case GIMPLE_OMP_PARALLEL:
4180 case GIMPLE_OMP_TASK:
4181 case GIMPLE_OMP_CRITICAL:
4182 case GIMPLE_OMP_MASTER:
4183 case GIMPLE_OMP_TASKGROUP:
4184 case GIMPLE_OMP_ORDERED:
4185 case GIMPLE_OMP_SECTION:
4186 case GIMPLE_OMP_SECTIONS:
4187 case GIMPLE_OMP_SINGLE:
4188 case GIMPLE_OMP_TARGET:
4189 case GIMPLE_OMP_TEAMS:
4190 return (weights->omp_cost
4191 + estimate_num_insns_seq (gimple_omp_body (stmt), weights));
4193 case GIMPLE_TRANSACTION:
4194 return (weights->tm_cost
4195 + estimate_num_insns_seq (gimple_transaction_body (
4196 as_a <gtransaction *> (stmt)),
4197 weights));
4199 default:
4200 gcc_unreachable ();
4203 return cost;
4206 /* Estimate number of instructions that will be created by expanding
4207 function FNDECL. WEIGHTS contains weights attributed to various
4208 constructs. */
4211 estimate_num_insns_fn (tree fndecl, eni_weights *weights)
4213 struct function *my_function = DECL_STRUCT_FUNCTION (fndecl);
4214 gimple_stmt_iterator bsi;
4215 basic_block bb;
4216 int n = 0;
4218 gcc_assert (my_function && my_function->cfg);
4219 FOR_EACH_BB_FN (bb, my_function)
4221 for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
4222 n += estimate_num_insns (gsi_stmt (bsi), weights);
4225 return n;
4229 /* Initializes weights used by estimate_num_insns. */
4231 void
4232 init_inline_once (void)
4234 eni_size_weights.call_cost = 1;
4235 eni_size_weights.indirect_call_cost = 3;
4236 eni_size_weights.target_builtin_call_cost = 1;
4237 eni_size_weights.div_mod_cost = 1;
4238 eni_size_weights.omp_cost = 40;
4239 eni_size_weights.tm_cost = 10;
4240 eni_size_weights.time_based = false;
4241 eni_size_weights.return_cost = 1;
4243 /* Estimating time for call is difficult, since we have no idea what the
4244 called function does. In the current uses of eni_time_weights,
4245 underestimating the cost does less harm than overestimating it, so
4246 we choose a rather small value here. */
4247 eni_time_weights.call_cost = 10;
4248 eni_time_weights.indirect_call_cost = 15;
4249 eni_time_weights.target_builtin_call_cost = 1;
4250 eni_time_weights.div_mod_cost = 10;
4251 eni_time_weights.omp_cost = 40;
4252 eni_time_weights.tm_cost = 40;
4253 eni_time_weights.time_based = true;
4254 eni_time_weights.return_cost = 2;
4257 /* Estimate the number of instructions in a gimple_seq. */
4260 count_insns_seq (gimple_seq seq, eni_weights *weights)
4262 gimple_stmt_iterator gsi;
4263 int n = 0;
4264 for (gsi = gsi_start (seq); !gsi_end_p (gsi); gsi_next (&gsi))
4265 n += estimate_num_insns (gsi_stmt (gsi), weights);
4267 return n;
4271 /* Install new lexical TREE_BLOCK underneath 'current_block'. */
4273 static void
4274 prepend_lexical_block (tree current_block, tree new_block)
4276 BLOCK_CHAIN (new_block) = BLOCK_SUBBLOCKS (current_block);
4277 BLOCK_SUBBLOCKS (current_block) = new_block;
4278 BLOCK_SUPERCONTEXT (new_block) = current_block;
4281 /* Add local variables from CALLEE to CALLER. */
4283 static inline void
4284 add_local_variables (struct function *callee, struct function *caller,
4285 copy_body_data *id)
4287 tree var;
4288 unsigned ix;
4290 FOR_EACH_LOCAL_DECL (callee, ix, var)
4291 if (!can_be_nonlocal (var, id))
4293 tree new_var = remap_decl (var, id);
4295 /* Remap debug-expressions. */
4296 if (TREE_CODE (new_var) == VAR_DECL
4297 && DECL_HAS_DEBUG_EXPR_P (var)
4298 && new_var != var)
4300 tree tem = DECL_DEBUG_EXPR (var);
4301 bool old_regimplify = id->regimplify;
4302 id->remapping_type_depth++;
4303 walk_tree (&tem, copy_tree_body_r, id, NULL);
4304 id->remapping_type_depth--;
4305 id->regimplify = old_regimplify;
4306 SET_DECL_DEBUG_EXPR (new_var, tem);
4307 DECL_HAS_DEBUG_EXPR_P (new_var) = 1;
4309 add_local_decl (caller, new_var);
4313 /* If STMT is a GIMPLE_CALL, replace it with its inline expansion. */
4315 static bool
4316 expand_call_inline (basic_block bb, gimple stmt, copy_body_data *id)
4318 tree use_retvar;
4319 tree fn;
4320 hash_map<tree, tree> *dst;
4321 hash_map<tree, tree> *st = NULL;
4322 tree return_slot;
4323 tree modify_dest;
4324 tree return_bounds = NULL;
4325 location_t saved_location;
4326 struct cgraph_edge *cg_edge;
4327 cgraph_inline_failed_t reason;
4328 basic_block return_block;
4329 edge e;
4330 gimple_stmt_iterator gsi, stmt_gsi;
4331 bool successfully_inlined = FALSE;
4332 bool purge_dead_abnormal_edges;
4333 gcall *call_stmt;
4334 unsigned int i;
4336 /* Set input_location here so we get the right instantiation context
4337 if we call instantiate_decl from inlinable_function_p. */
4338 /* FIXME: instantiate_decl isn't called by inlinable_function_p. */
4339 saved_location = input_location;
4340 input_location = gimple_location (stmt);
4342 /* From here on, we're only interested in CALL_EXPRs. */
4343 call_stmt = dyn_cast <gcall *> (stmt);
4344 if (!call_stmt)
4345 goto egress;
4347 cg_edge = id->dst_node->get_edge (stmt);
4348 gcc_checking_assert (cg_edge);
4349 /* First, see if we can figure out what function is being called.
4350 If we cannot, then there is no hope of inlining the function. */
4351 if (cg_edge->indirect_unknown_callee)
4352 goto egress;
4353 fn = cg_edge->callee->decl;
4354 gcc_checking_assert (fn);
4356 /* If FN is a declaration of a function in a nested scope that was
4357 globally declared inline, we don't set its DECL_INITIAL.
4358 However, we can't blindly follow DECL_ABSTRACT_ORIGIN because the
4359 C++ front-end uses it for cdtors to refer to their internal
4360 declarations, that are not real functions. Fortunately those
4361 don't have trees to be saved, so we can tell by checking their
4362 gimple_body. */
4363 if (!DECL_INITIAL (fn)
4364 && DECL_ABSTRACT_ORIGIN (fn)
4365 && gimple_has_body_p (DECL_ABSTRACT_ORIGIN (fn)))
4366 fn = DECL_ABSTRACT_ORIGIN (fn);
4368 /* Don't try to inline functions that are not well-suited to inlining. */
4369 if (cg_edge->inline_failed)
4371 reason = cg_edge->inline_failed;
4372 /* If this call was originally indirect, we do not want to emit any
4373 inlining related warnings or sorry messages because there are no
4374 guarantees regarding those. */
4375 if (cg_edge->indirect_inlining_edge)
4376 goto egress;
4378 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn))
4379 /* For extern inline functions that get redefined we always
4380 silently ignored always_inline flag. Better behaviour would
4381 be to be able to keep both bodies and use extern inline body
4382 for inlining, but we can't do that because frontends overwrite
4383 the body. */
4384 && !cg_edge->callee->local.redefined_extern_inline
4385 /* During early inline pass, report only when optimization is
4386 not turned on. */
4387 && (symtab->global_info_ready
4388 || !optimize
4389 || cgraph_inline_failed_type (reason) == CIF_FINAL_ERROR)
4390 /* PR 20090218-1_0.c. Body can be provided by another module. */
4391 && (reason != CIF_BODY_NOT_AVAILABLE || !flag_generate_lto))
4393 error ("inlining failed in call to always_inline %q+F: %s", fn,
4394 cgraph_inline_failed_string (reason));
4395 error ("called from here");
4397 else if (warn_inline
4398 && DECL_DECLARED_INLINE_P (fn)
4399 && !DECL_NO_INLINE_WARNING_P (fn)
4400 && !DECL_IN_SYSTEM_HEADER (fn)
4401 && reason != CIF_UNSPECIFIED
4402 && !lookup_attribute ("noinline", DECL_ATTRIBUTES (fn))
4403 /* Do not warn about not inlined recursive calls. */
4404 && !cg_edge->recursive_p ()
4405 /* Avoid warnings during early inline pass. */
4406 && symtab->global_info_ready)
4408 warning (OPT_Winline, "inlining failed in call to %q+F: %s",
4409 fn, _(cgraph_inline_failed_string (reason)));
4410 warning (OPT_Winline, "called from here");
4412 goto egress;
4414 fn = cg_edge->callee->decl;
4415 cg_edge->callee->get_untransformed_body ();
4417 #ifdef ENABLE_CHECKING
4418 if (cg_edge->callee->decl != id->dst_node->decl)
4419 cg_edge->callee->verify ();
4420 #endif
4422 /* We will be inlining this callee. */
4423 id->eh_lp_nr = lookup_stmt_eh_lp (stmt);
4424 id->assign_stmts.create (0);
4426 /* Update the callers EH personality. */
4427 if (DECL_FUNCTION_PERSONALITY (cg_edge->callee->decl))
4428 DECL_FUNCTION_PERSONALITY (cg_edge->caller->decl)
4429 = DECL_FUNCTION_PERSONALITY (cg_edge->callee->decl);
4431 /* Split the block holding the GIMPLE_CALL. */
4432 e = split_block (bb, stmt);
4433 bb = e->src;
4434 return_block = e->dest;
4435 remove_edge (e);
4437 /* split_block splits after the statement; work around this by
4438 moving the call into the second block manually. Not pretty,
4439 but seems easier than doing the CFG manipulation by hand
4440 when the GIMPLE_CALL is in the last statement of BB. */
4441 stmt_gsi = gsi_last_bb (bb);
4442 gsi_remove (&stmt_gsi, false);
4444 /* If the GIMPLE_CALL was in the last statement of BB, it may have
4445 been the source of abnormal edges. In this case, schedule
4446 the removal of dead abnormal edges. */
4447 gsi = gsi_start_bb (return_block);
4448 if (gsi_end_p (gsi))
4450 gsi_insert_after (&gsi, stmt, GSI_NEW_STMT);
4451 purge_dead_abnormal_edges = true;
4453 else
4455 gsi_insert_before (&gsi, stmt, GSI_NEW_STMT);
4456 purge_dead_abnormal_edges = false;
4459 stmt_gsi = gsi_start_bb (return_block);
4461 /* Build a block containing code to initialize the arguments, the
4462 actual inline expansion of the body, and a label for the return
4463 statements within the function to jump to. The type of the
4464 statement expression is the return type of the function call.
4465 ??? If the call does not have an associated block then we will
4466 remap all callee blocks to NULL, effectively dropping most of
4467 its debug information. This should only happen for calls to
4468 artificial decls inserted by the compiler itself. We need to
4469 either link the inlined blocks into the caller block tree or
4470 not refer to them in any way to not break GC for locations. */
4471 if (gimple_block (stmt))
4473 id->block = make_node (BLOCK);
4474 BLOCK_ABSTRACT_ORIGIN (id->block) = fn;
4475 BLOCK_SOURCE_LOCATION (id->block) = LOCATION_LOCUS (input_location);
4476 prepend_lexical_block (gimple_block (stmt), id->block);
4479 /* Local declarations will be replaced by their equivalents in this
4480 map. */
4481 st = id->decl_map;
4482 id->decl_map = new hash_map<tree, tree>;
4483 dst = id->debug_map;
4484 id->debug_map = NULL;
4486 /* Record the function we are about to inline. */
4487 id->src_fn = fn;
4488 id->src_node = cg_edge->callee;
4489 id->src_cfun = DECL_STRUCT_FUNCTION (fn);
4490 id->call_stmt = stmt;
4492 gcc_assert (!id->src_cfun->after_inlining);
4494 id->entry_bb = bb;
4495 if (lookup_attribute ("cold", DECL_ATTRIBUTES (fn)))
4497 gimple_stmt_iterator si = gsi_last_bb (bb);
4498 gsi_insert_after (&si, gimple_build_predict (PRED_COLD_FUNCTION,
4499 NOT_TAKEN),
4500 GSI_NEW_STMT);
4502 initialize_inlined_parameters (id, stmt, fn, bb);
4504 if (DECL_INITIAL (fn))
4506 if (gimple_block (stmt))
4508 tree *var;
4510 prepend_lexical_block (id->block,
4511 remap_blocks (DECL_INITIAL (fn), id));
4512 gcc_checking_assert (BLOCK_SUBBLOCKS (id->block)
4513 && (BLOCK_CHAIN (BLOCK_SUBBLOCKS (id->block))
4514 == NULL_TREE));
4515 /* Move vars for PARM_DECLs from DECL_INITIAL block to id->block,
4516 otherwise for DWARF DW_TAG_formal_parameter will not be children of
4517 DW_TAG_inlined_subroutine, but of a DW_TAG_lexical_block
4518 under it. The parameters can be then evaluated in the debugger,
4519 but don't show in backtraces. */
4520 for (var = &BLOCK_VARS (BLOCK_SUBBLOCKS (id->block)); *var; )
4521 if (TREE_CODE (DECL_ORIGIN (*var)) == PARM_DECL)
4523 tree v = *var;
4524 *var = TREE_CHAIN (v);
4525 TREE_CHAIN (v) = BLOCK_VARS (id->block);
4526 BLOCK_VARS (id->block) = v;
4528 else
4529 var = &TREE_CHAIN (*var);
4531 else
4532 remap_blocks_to_null (DECL_INITIAL (fn), id);
4535 /* Return statements in the function body will be replaced by jumps
4536 to the RET_LABEL. */
4537 gcc_assert (DECL_INITIAL (fn));
4538 gcc_assert (TREE_CODE (DECL_INITIAL (fn)) == BLOCK);
4540 /* Find the LHS to which the result of this call is assigned. */
4541 return_slot = NULL;
4542 if (gimple_call_lhs (stmt))
4544 modify_dest = gimple_call_lhs (stmt);
4546 /* Remember where to copy returned bounds. */
4547 if (gimple_call_with_bounds_p (stmt)
4548 && TREE_CODE (modify_dest) == SSA_NAME)
4550 gcall *retbnd = chkp_retbnd_call_by_val (modify_dest);
4551 if (retbnd)
4553 return_bounds = gimple_call_lhs (retbnd);
4554 /* If returned bounds are not used then just
4555 remove unused call. */
4556 if (!return_bounds)
4558 gimple_stmt_iterator iter = gsi_for_stmt (retbnd);
4559 gsi_remove (&iter, true);
4564 /* The function which we are inlining might not return a value,
4565 in which case we should issue a warning that the function
4566 does not return a value. In that case the optimizers will
4567 see that the variable to which the value is assigned was not
4568 initialized. We do not want to issue a warning about that
4569 uninitialized variable. */
4570 if (DECL_P (modify_dest))
4571 TREE_NO_WARNING (modify_dest) = 1;
4573 if (gimple_call_return_slot_opt_p (call_stmt))
4575 return_slot = modify_dest;
4576 modify_dest = NULL;
4579 else
4580 modify_dest = NULL;
4582 /* If we are inlining a call to the C++ operator new, we don't want
4583 to use type based alias analysis on the return value. Otherwise
4584 we may get confused if the compiler sees that the inlined new
4585 function returns a pointer which was just deleted. See bug
4586 33407. */
4587 if (DECL_IS_OPERATOR_NEW (fn))
4589 return_slot = NULL;
4590 modify_dest = NULL;
4593 /* Declare the return variable for the function. */
4594 use_retvar = declare_return_variable (id, return_slot, modify_dest,
4595 return_bounds, bb);
4597 /* Add local vars in this inlined callee to caller. */
4598 add_local_variables (id->src_cfun, cfun, id);
4600 if (dump_file && (dump_flags & TDF_DETAILS))
4602 fprintf (dump_file, "Inlining ");
4603 print_generic_expr (dump_file, id->src_fn, 0);
4604 fprintf (dump_file, " to ");
4605 print_generic_expr (dump_file, id->dst_fn, 0);
4606 fprintf (dump_file, " with frequency %i\n", cg_edge->frequency);
4609 /* This is it. Duplicate the callee body. Assume callee is
4610 pre-gimplified. Note that we must not alter the caller
4611 function in any way before this point, as this CALL_EXPR may be
4612 a self-referential call; if we're calling ourselves, we need to
4613 duplicate our body before altering anything. */
4614 copy_body (id, cg_edge->callee->count,
4615 GCOV_COMPUTE_SCALE (cg_edge->frequency, CGRAPH_FREQ_BASE),
4616 bb, return_block, NULL);
4618 /* Reset the escaped solution. */
4619 if (cfun->gimple_df)
4620 pt_solution_reset (&cfun->gimple_df->escaped);
4622 /* Clean up. */
4623 if (id->debug_map)
4625 delete id->debug_map;
4626 id->debug_map = dst;
4628 delete id->decl_map;
4629 id->decl_map = st;
4631 /* Unlink the calls virtual operands before replacing it. */
4632 unlink_stmt_vdef (stmt);
4633 if (gimple_vdef (stmt)
4634 && TREE_CODE (gimple_vdef (stmt)) == SSA_NAME)
4635 release_ssa_name (gimple_vdef (stmt));
4637 /* If the inlined function returns a result that we care about,
4638 substitute the GIMPLE_CALL with an assignment of the return
4639 variable to the LHS of the call. That is, if STMT was
4640 'a = foo (...)', substitute the call with 'a = USE_RETVAR'. */
4641 if (use_retvar && gimple_call_lhs (stmt))
4643 gimple old_stmt = stmt;
4644 stmt = gimple_build_assign (gimple_call_lhs (stmt), use_retvar);
4645 gsi_replace (&stmt_gsi, stmt, false);
4646 maybe_clean_or_replace_eh_stmt (old_stmt, stmt);
4648 /* Copy bounds if we copy structure with bounds. */
4649 if (chkp_function_instrumented_p (id->dst_fn)
4650 && !BOUNDED_P (use_retvar)
4651 && chkp_type_has_pointer (TREE_TYPE (use_retvar)))
4652 id->assign_stmts.safe_push (stmt);
4654 else
4656 /* Handle the case of inlining a function with no return
4657 statement, which causes the return value to become undefined. */
4658 if (gimple_call_lhs (stmt)
4659 && TREE_CODE (gimple_call_lhs (stmt)) == SSA_NAME)
4661 tree name = gimple_call_lhs (stmt);
4662 tree var = SSA_NAME_VAR (name);
4663 tree def = ssa_default_def (cfun, var);
4665 if (def)
4667 /* If the variable is used undefined, make this name
4668 undefined via a move. */
4669 stmt = gimple_build_assign (gimple_call_lhs (stmt), def);
4670 gsi_replace (&stmt_gsi, stmt, true);
4672 else
4674 /* Otherwise make this variable undefined. */
4675 gsi_remove (&stmt_gsi, true);
4676 set_ssa_default_def (cfun, var, name);
4677 SSA_NAME_DEF_STMT (name) = gimple_build_nop ();
4680 else
4681 gsi_remove (&stmt_gsi, true);
4684 /* Put returned bounds into the correct place if required. */
4685 if (return_bounds)
4687 gimple old_stmt = SSA_NAME_DEF_STMT (return_bounds);
4688 gimple new_stmt = gimple_build_assign (return_bounds, id->retbnd);
4689 gimple_stmt_iterator bnd_gsi = gsi_for_stmt (old_stmt);
4690 unlink_stmt_vdef (old_stmt);
4691 gsi_replace (&bnd_gsi, new_stmt, false);
4692 maybe_clean_or_replace_eh_stmt (old_stmt, new_stmt);
4693 cgraph_update_edges_for_call_stmt (old_stmt,
4694 gimple_call_fndecl (old_stmt),
4695 new_stmt);
4698 if (purge_dead_abnormal_edges)
4700 gimple_purge_dead_eh_edges (return_block);
4701 gimple_purge_dead_abnormal_call_edges (return_block);
4704 /* If the value of the new expression is ignored, that's OK. We
4705 don't warn about this for CALL_EXPRs, so we shouldn't warn about
4706 the equivalent inlined version either. */
4707 if (is_gimple_assign (stmt))
4709 gcc_assert (gimple_assign_single_p (stmt)
4710 || CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (stmt)));
4711 TREE_USED (gimple_assign_rhs1 (stmt)) = 1;
4714 /* Copy bounds for all generated assigns that need it. */
4715 for (i = 0; i < id->assign_stmts.length (); i++)
4716 chkp_copy_bounds_for_assign (id->assign_stmts[i], cg_edge);
4717 id->assign_stmts.release ();
4719 /* Output the inlining info for this abstract function, since it has been
4720 inlined. If we don't do this now, we can lose the information about the
4721 variables in the function when the blocks get blown away as soon as we
4722 remove the cgraph node. */
4723 if (gimple_block (stmt))
4724 (*debug_hooks->outlining_inline_function) (cg_edge->callee->decl);
4726 /* Update callgraph if needed. */
4727 cg_edge->callee->remove ();
4729 id->block = NULL_TREE;
4730 successfully_inlined = TRUE;
4732 egress:
4733 input_location = saved_location;
4734 return successfully_inlined;
4737 /* Expand call statements reachable from STMT_P.
4738 We can only have CALL_EXPRs as the "toplevel" tree code or nested
4739 in a MODIFY_EXPR. */
4741 static bool
4742 gimple_expand_calls_inline (basic_block bb, copy_body_data *id)
4744 gimple_stmt_iterator gsi;
4746 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4748 gimple stmt = gsi_stmt (gsi);
4750 if (is_gimple_call (stmt)
4751 && !gimple_call_internal_p (stmt)
4752 && expand_call_inline (bb, stmt, id))
4753 return true;
4756 return false;
4760 /* Walk all basic blocks created after FIRST and try to fold every statement
4761 in the STATEMENTS pointer set. */
4763 static void
4764 fold_marked_statements (int first, hash_set<gimple> *statements)
4766 for (; first < n_basic_blocks_for_fn (cfun); first++)
4767 if (BASIC_BLOCK_FOR_FN (cfun, first))
4769 gimple_stmt_iterator gsi;
4771 for (gsi = gsi_start_bb (BASIC_BLOCK_FOR_FN (cfun, first));
4772 !gsi_end_p (gsi);
4773 gsi_next (&gsi))
4774 if (statements->contains (gsi_stmt (gsi)))
4776 gimple old_stmt = gsi_stmt (gsi);
4777 tree old_decl = is_gimple_call (old_stmt) ? gimple_call_fndecl (old_stmt) : 0;
4779 if (old_decl && DECL_BUILT_IN (old_decl))
4781 /* Folding builtins can create multiple instructions,
4782 we need to look at all of them. */
4783 gimple_stmt_iterator i2 = gsi;
4784 gsi_prev (&i2);
4785 if (fold_stmt (&gsi))
4787 gimple new_stmt;
4788 /* If a builtin at the end of a bb folded into nothing,
4789 the following loop won't work. */
4790 if (gsi_end_p (gsi))
4792 cgraph_update_edges_for_call_stmt (old_stmt,
4793 old_decl, NULL);
4794 break;
4796 if (gsi_end_p (i2))
4797 i2 = gsi_start_bb (BASIC_BLOCK_FOR_FN (cfun, first));
4798 else
4799 gsi_next (&i2);
4800 while (1)
4802 new_stmt = gsi_stmt (i2);
4803 update_stmt (new_stmt);
4804 cgraph_update_edges_for_call_stmt (old_stmt, old_decl,
4805 new_stmt);
4807 if (new_stmt == gsi_stmt (gsi))
4809 /* It is okay to check only for the very last
4810 of these statements. If it is a throwing
4811 statement nothing will change. If it isn't
4812 this can remove EH edges. If that weren't
4813 correct then because some intermediate stmts
4814 throw, but not the last one. That would mean
4815 we'd have to split the block, which we can't
4816 here and we'd loose anyway. And as builtins
4817 probably never throw, this all
4818 is mood anyway. */
4819 if (maybe_clean_or_replace_eh_stmt (old_stmt,
4820 new_stmt))
4821 gimple_purge_dead_eh_edges (
4822 BASIC_BLOCK_FOR_FN (cfun, first));
4823 break;
4825 gsi_next (&i2);
4829 else if (fold_stmt (&gsi))
4831 /* Re-read the statement from GSI as fold_stmt() may
4832 have changed it. */
4833 gimple new_stmt = gsi_stmt (gsi);
4834 update_stmt (new_stmt);
4836 if (is_gimple_call (old_stmt)
4837 || is_gimple_call (new_stmt))
4838 cgraph_update_edges_for_call_stmt (old_stmt, old_decl,
4839 new_stmt);
4841 if (maybe_clean_or_replace_eh_stmt (old_stmt, new_stmt))
4842 gimple_purge_dead_eh_edges (BASIC_BLOCK_FOR_FN (cfun,
4843 first));
4849 /* Expand calls to inline functions in the body of FN. */
4851 unsigned int
4852 optimize_inline_calls (tree fn)
4854 copy_body_data id;
4855 basic_block bb;
4856 int last = n_basic_blocks_for_fn (cfun);
4857 bool inlined_p = false;
4859 /* Clear out ID. */
4860 memset (&id, 0, sizeof (id));
4862 id.src_node = id.dst_node = cgraph_node::get (fn);
4863 gcc_assert (id.dst_node->definition);
4864 id.dst_fn = fn;
4865 /* Or any functions that aren't finished yet. */
4866 if (current_function_decl)
4867 id.dst_fn = current_function_decl;
4869 id.copy_decl = copy_decl_maybe_to_var;
4870 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
4871 id.transform_new_cfg = false;
4872 id.transform_return_to_modify = true;
4873 id.transform_parameter = true;
4874 id.transform_lang_insert_block = NULL;
4875 id.statements_to_fold = new hash_set<gimple>;
4877 push_gimplify_context ();
4879 /* We make no attempts to keep dominance info up-to-date. */
4880 free_dominance_info (CDI_DOMINATORS);
4881 free_dominance_info (CDI_POST_DOMINATORS);
4883 /* Register specific gimple functions. */
4884 gimple_register_cfg_hooks ();
4886 /* Reach the trees by walking over the CFG, and note the
4887 enclosing basic-blocks in the call edges. */
4888 /* We walk the blocks going forward, because inlined function bodies
4889 will split id->current_basic_block, and the new blocks will
4890 follow it; we'll trudge through them, processing their CALL_EXPRs
4891 along the way. */
4892 FOR_EACH_BB_FN (bb, cfun)
4893 inlined_p |= gimple_expand_calls_inline (bb, &id);
4895 pop_gimplify_context (NULL);
4897 #ifdef ENABLE_CHECKING
4899 struct cgraph_edge *e;
4901 id.dst_node->verify ();
4903 /* Double check that we inlined everything we are supposed to inline. */
4904 for (e = id.dst_node->callees; e; e = e->next_callee)
4905 gcc_assert (e->inline_failed);
4907 #endif
4909 /* Fold queued statements. */
4910 fold_marked_statements (last, id.statements_to_fold);
4911 delete id.statements_to_fold;
4913 gcc_assert (!id.debug_stmts.exists ());
4915 /* If we didn't inline into the function there is nothing to do. */
4916 if (!inlined_p)
4917 return 0;
4919 /* Renumber the lexical scoping (non-code) blocks consecutively. */
4920 number_blocks (fn);
4922 delete_unreachable_blocks_update_callgraph (&id);
4923 #ifdef ENABLE_CHECKING
4924 id.dst_node->verify ();
4925 #endif
4927 /* It would be nice to check SSA/CFG/statement consistency here, but it is
4928 not possible yet - the IPA passes might make various functions to not
4929 throw and they don't care to proactively update local EH info. This is
4930 done later in fixup_cfg pass that also execute the verification. */
4931 return (TODO_update_ssa
4932 | TODO_cleanup_cfg
4933 | (gimple_in_ssa_p (cfun) ? TODO_remove_unused_locals : 0)
4934 | (gimple_in_ssa_p (cfun) ? TODO_update_address_taken : 0)
4935 | (profile_status_for_fn (cfun) != PROFILE_ABSENT
4936 ? TODO_rebuild_frequencies : 0));
4939 /* Passed to walk_tree. Copies the node pointed to, if appropriate. */
4941 tree
4942 copy_tree_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
4944 enum tree_code code = TREE_CODE (*tp);
4945 enum tree_code_class cl = TREE_CODE_CLASS (code);
4947 /* We make copies of most nodes. */
4948 if (IS_EXPR_CODE_CLASS (cl)
4949 || code == TREE_LIST
4950 || code == TREE_VEC
4951 || code == TYPE_DECL
4952 || code == OMP_CLAUSE)
4954 /* Because the chain gets clobbered when we make a copy, we save it
4955 here. */
4956 tree chain = NULL_TREE, new_tree;
4958 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
4959 chain = TREE_CHAIN (*tp);
4961 /* Copy the node. */
4962 new_tree = copy_node (*tp);
4964 *tp = new_tree;
4966 /* Now, restore the chain, if appropriate. That will cause
4967 walk_tree to walk into the chain as well. */
4968 if (code == PARM_DECL
4969 || code == TREE_LIST
4970 || code == OMP_CLAUSE)
4971 TREE_CHAIN (*tp) = chain;
4973 /* For now, we don't update BLOCKs when we make copies. So, we
4974 have to nullify all BIND_EXPRs. */
4975 if (TREE_CODE (*tp) == BIND_EXPR)
4976 BIND_EXPR_BLOCK (*tp) = NULL_TREE;
4978 else if (code == CONSTRUCTOR)
4980 /* CONSTRUCTOR nodes need special handling because
4981 we need to duplicate the vector of elements. */
4982 tree new_tree;
4984 new_tree = copy_node (*tp);
4985 CONSTRUCTOR_ELTS (new_tree) = vec_safe_copy (CONSTRUCTOR_ELTS (*tp));
4986 *tp = new_tree;
4988 else if (code == STATEMENT_LIST)
4989 /* We used to just abort on STATEMENT_LIST, but we can run into them
4990 with statement-expressions (c++/40975). */
4991 copy_statement_list (tp);
4992 else if (TREE_CODE_CLASS (code) == tcc_type)
4993 *walk_subtrees = 0;
4994 else if (TREE_CODE_CLASS (code) == tcc_declaration)
4995 *walk_subtrees = 0;
4996 else if (TREE_CODE_CLASS (code) == tcc_constant)
4997 *walk_subtrees = 0;
4998 return NULL_TREE;
5001 /* The SAVE_EXPR pointed to by TP is being copied. If ST contains
5002 information indicating to what new SAVE_EXPR this one should be mapped,
5003 use that one. Otherwise, create a new node and enter it in ST. FN is
5004 the function into which the copy will be placed. */
5006 static void
5007 remap_save_expr (tree *tp, hash_map<tree, tree> *st, int *walk_subtrees)
5009 tree *n;
5010 tree t;
5012 /* See if we already encountered this SAVE_EXPR. */
5013 n = st->get (*tp);
5015 /* If we didn't already remap this SAVE_EXPR, do so now. */
5016 if (!n)
5018 t = copy_node (*tp);
5020 /* Remember this SAVE_EXPR. */
5021 st->put (*tp, t);
5022 /* Make sure we don't remap an already-remapped SAVE_EXPR. */
5023 st->put (t, t);
5025 else
5027 /* We've already walked into this SAVE_EXPR; don't do it again. */
5028 *walk_subtrees = 0;
5029 t = *n;
5032 /* Replace this SAVE_EXPR with the copy. */
5033 *tp = t;
5036 /* Called via walk_gimple_seq. If *GSIP points to a GIMPLE_LABEL for a local
5037 label, copies the declaration and enters it in the splay_tree in DATA (which
5038 is really a 'copy_body_data *'. */
5040 static tree
5041 mark_local_labels_stmt (gimple_stmt_iterator *gsip,
5042 bool *handled_ops_p ATTRIBUTE_UNUSED,
5043 struct walk_stmt_info *wi)
5045 copy_body_data *id = (copy_body_data *) wi->info;
5046 glabel *stmt = dyn_cast <glabel *> (gsi_stmt (*gsip));
5048 if (stmt)
5050 tree decl = gimple_label_label (stmt);
5052 /* Copy the decl and remember the copy. */
5053 insert_decl_map (id, decl, id->copy_decl (decl, id));
5056 return NULL_TREE;
5060 /* Called via walk_gimple_seq by copy_gimple_seq_and_replace_local.
5061 Using the splay_tree pointed to by ST (which is really a `splay_tree'),
5062 remaps all local declarations to appropriate replacements in gimple
5063 operands. */
5065 static tree
5066 replace_locals_op (tree *tp, int *walk_subtrees, void *data)
5068 struct walk_stmt_info *wi = (struct walk_stmt_info*) data;
5069 copy_body_data *id = (copy_body_data *) wi->info;
5070 hash_map<tree, tree> *st = id->decl_map;
5071 tree *n;
5072 tree expr = *tp;
5074 /* Only a local declaration (variable or label). */
5075 if ((TREE_CODE (expr) == VAR_DECL
5076 && !TREE_STATIC (expr))
5077 || TREE_CODE (expr) == LABEL_DECL)
5079 /* Lookup the declaration. */
5080 n = st->get (expr);
5082 /* If it's there, remap it. */
5083 if (n)
5084 *tp = *n;
5085 *walk_subtrees = 0;
5087 else if (TREE_CODE (expr) == STATEMENT_LIST
5088 || TREE_CODE (expr) == BIND_EXPR
5089 || TREE_CODE (expr) == SAVE_EXPR)
5090 gcc_unreachable ();
5091 else if (TREE_CODE (expr) == TARGET_EXPR)
5093 /* Don't mess with a TARGET_EXPR that hasn't been expanded.
5094 It's OK for this to happen if it was part of a subtree that
5095 isn't immediately expanded, such as operand 2 of another
5096 TARGET_EXPR. */
5097 if (!TREE_OPERAND (expr, 1))
5099 TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 3);
5100 TREE_OPERAND (expr, 3) = NULL_TREE;
5104 /* Keep iterating. */
5105 return NULL_TREE;
5109 /* Called via walk_gimple_seq by copy_gimple_seq_and_replace_local.
5110 Using the splay_tree pointed to by ST (which is really a `splay_tree'),
5111 remaps all local declarations to appropriate replacements in gimple
5112 statements. */
5114 static tree
5115 replace_locals_stmt (gimple_stmt_iterator *gsip,
5116 bool *handled_ops_p ATTRIBUTE_UNUSED,
5117 struct walk_stmt_info *wi)
5119 copy_body_data *id = (copy_body_data *) wi->info;
5120 gimple gs = gsi_stmt (*gsip);
5122 if (gbind *stmt = dyn_cast <gbind *> (gs))
5124 tree block = gimple_bind_block (stmt);
5126 if (block)
5128 remap_block (&block, id);
5129 gimple_bind_set_block (stmt, block);
5132 /* This will remap a lot of the same decls again, but this should be
5133 harmless. */
5134 if (gimple_bind_vars (stmt))
5135 gimple_bind_set_vars (stmt, remap_decls (gimple_bind_vars (stmt),
5136 NULL, id));
5139 /* Keep iterating. */
5140 return NULL_TREE;
5144 /* Copies everything in SEQ and replaces variables and labels local to
5145 current_function_decl. */
5147 gimple_seq
5148 copy_gimple_seq_and_replace_locals (gimple_seq seq)
5150 copy_body_data id;
5151 struct walk_stmt_info wi;
5152 gimple_seq copy;
5154 /* There's nothing to do for NULL_TREE. */
5155 if (seq == NULL)
5156 return seq;
5158 /* Set up ID. */
5159 memset (&id, 0, sizeof (id));
5160 id.src_fn = current_function_decl;
5161 id.dst_fn = current_function_decl;
5162 id.decl_map = new hash_map<tree, tree>;
5163 id.debug_map = NULL;
5165 id.copy_decl = copy_decl_no_change;
5166 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
5167 id.transform_new_cfg = false;
5168 id.transform_return_to_modify = false;
5169 id.transform_parameter = false;
5170 id.transform_lang_insert_block = NULL;
5172 /* Walk the tree once to find local labels. */
5173 memset (&wi, 0, sizeof (wi));
5174 hash_set<tree> visited;
5175 wi.info = &id;
5176 wi.pset = &visited;
5177 walk_gimple_seq (seq, mark_local_labels_stmt, NULL, &wi);
5179 copy = gimple_seq_copy (seq);
5181 /* Walk the copy, remapping decls. */
5182 memset (&wi, 0, sizeof (wi));
5183 wi.info = &id;
5184 walk_gimple_seq (copy, replace_locals_stmt, replace_locals_op, &wi);
5186 /* Clean up. */
5187 delete id.decl_map;
5188 if (id.debug_map)
5189 delete id.debug_map;
5190 if (id.dependence_map)
5192 delete id.dependence_map;
5193 id.dependence_map = NULL;
5196 return copy;
5200 /* Allow someone to determine if SEARCH is a child of TOP from gdb. */
5202 static tree
5203 debug_find_tree_1 (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED, void *data)
5205 if (*tp == data)
5206 return (tree) data;
5207 else
5208 return NULL;
5211 DEBUG_FUNCTION bool
5212 debug_find_tree (tree top, tree search)
5214 return walk_tree_without_duplicates (&top, debug_find_tree_1, search) != 0;
5218 /* Declare the variables created by the inliner. Add all the variables in
5219 VARS to BIND_EXPR. */
5221 static void
5222 declare_inline_vars (tree block, tree vars)
5224 tree t;
5225 for (t = vars; t; t = DECL_CHAIN (t))
5227 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
5228 gcc_assert (!TREE_STATIC (t) && !TREE_ASM_WRITTEN (t));
5229 add_local_decl (cfun, t);
5232 if (block)
5233 BLOCK_VARS (block) = chainon (BLOCK_VARS (block), vars);
5236 /* Copy NODE (which must be a DECL). The DECL originally was in the FROM_FN,
5237 but now it will be in the TO_FN. PARM_TO_VAR means enable PARM_DECL to
5238 VAR_DECL translation. */
5240 static tree
5241 copy_decl_for_dup_finish (copy_body_data *id, tree decl, tree copy)
5243 /* Don't generate debug information for the copy if we wouldn't have
5244 generated it for the copy either. */
5245 DECL_ARTIFICIAL (copy) = DECL_ARTIFICIAL (decl);
5246 DECL_IGNORED_P (copy) = DECL_IGNORED_P (decl);
5248 /* Set the DECL_ABSTRACT_ORIGIN so the debugging routines know what
5249 declaration inspired this copy. */
5250 DECL_ABSTRACT_ORIGIN (copy) = DECL_ORIGIN (decl);
5252 /* The new variable/label has no RTL, yet. */
5253 if (CODE_CONTAINS_STRUCT (TREE_CODE (copy), TS_DECL_WRTL)
5254 && !TREE_STATIC (copy) && !DECL_EXTERNAL (copy))
5255 SET_DECL_RTL (copy, 0);
5257 /* These args would always appear unused, if not for this. */
5258 TREE_USED (copy) = 1;
5260 /* Set the context for the new declaration. */
5261 if (!DECL_CONTEXT (decl))
5262 /* Globals stay global. */
5264 else if (DECL_CONTEXT (decl) != id->src_fn)
5265 /* Things that weren't in the scope of the function we're inlining
5266 from aren't in the scope we're inlining to, either. */
5268 else if (TREE_STATIC (decl))
5269 /* Function-scoped static variables should stay in the original
5270 function. */
5272 else
5273 /* Ordinary automatic local variables are now in the scope of the
5274 new function. */
5275 DECL_CONTEXT (copy) = id->dst_fn;
5277 return copy;
5280 static tree
5281 copy_decl_to_var (tree decl, copy_body_data *id)
5283 tree copy, type;
5285 gcc_assert (TREE_CODE (decl) == PARM_DECL
5286 || TREE_CODE (decl) == RESULT_DECL);
5288 type = TREE_TYPE (decl);
5290 copy = build_decl (DECL_SOURCE_LOCATION (id->dst_fn),
5291 VAR_DECL, DECL_NAME (decl), type);
5292 if (DECL_PT_UID_SET_P (decl))
5293 SET_DECL_PT_UID (copy, DECL_PT_UID (decl));
5294 TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (decl);
5295 TREE_READONLY (copy) = TREE_READONLY (decl);
5296 TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (decl);
5297 DECL_GIMPLE_REG_P (copy) = DECL_GIMPLE_REG_P (decl);
5299 return copy_decl_for_dup_finish (id, decl, copy);
5302 /* Like copy_decl_to_var, but create a return slot object instead of a
5303 pointer variable for return by invisible reference. */
5305 static tree
5306 copy_result_decl_to_var (tree decl, copy_body_data *id)
5308 tree copy, type;
5310 gcc_assert (TREE_CODE (decl) == PARM_DECL
5311 || TREE_CODE (decl) == RESULT_DECL);
5313 type = TREE_TYPE (decl);
5314 if (DECL_BY_REFERENCE (decl))
5315 type = TREE_TYPE (type);
5317 copy = build_decl (DECL_SOURCE_LOCATION (id->dst_fn),
5318 VAR_DECL, DECL_NAME (decl), type);
5319 if (DECL_PT_UID_SET_P (decl))
5320 SET_DECL_PT_UID (copy, DECL_PT_UID (decl));
5321 TREE_READONLY (copy) = TREE_READONLY (decl);
5322 TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (decl);
5323 if (!DECL_BY_REFERENCE (decl))
5325 TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (decl);
5326 DECL_GIMPLE_REG_P (copy) = DECL_GIMPLE_REG_P (decl);
5329 return copy_decl_for_dup_finish (id, decl, copy);
5332 tree
5333 copy_decl_no_change (tree decl, copy_body_data *id)
5335 tree copy;
5337 copy = copy_node (decl);
5339 /* The COPY is not abstract; it will be generated in DST_FN. */
5340 DECL_ABSTRACT_P (copy) = false;
5341 lang_hooks.dup_lang_specific_decl (copy);
5343 /* TREE_ADDRESSABLE isn't used to indicate that a label's address has
5344 been taken; it's for internal bookkeeping in expand_goto_internal. */
5345 if (TREE_CODE (copy) == LABEL_DECL)
5347 TREE_ADDRESSABLE (copy) = 0;
5348 LABEL_DECL_UID (copy) = -1;
5351 return copy_decl_for_dup_finish (id, decl, copy);
5354 static tree
5355 copy_decl_maybe_to_var (tree decl, copy_body_data *id)
5357 if (TREE_CODE (decl) == PARM_DECL || TREE_CODE (decl) == RESULT_DECL)
5358 return copy_decl_to_var (decl, id);
5359 else
5360 return copy_decl_no_change (decl, id);
5363 /* Return a copy of the function's argument tree. */
5364 static tree
5365 copy_arguments_for_versioning (tree orig_parm, copy_body_data * id,
5366 bitmap args_to_skip, tree *vars)
5368 tree arg, *parg;
5369 tree new_parm = NULL;
5370 int i = 0;
5372 parg = &new_parm;
5374 for (arg = orig_parm; arg; arg = DECL_CHAIN (arg), i++)
5375 if (!args_to_skip || !bitmap_bit_p (args_to_skip, i))
5377 tree new_tree = remap_decl (arg, id);
5378 if (TREE_CODE (new_tree) != PARM_DECL)
5379 new_tree = id->copy_decl (arg, id);
5380 lang_hooks.dup_lang_specific_decl (new_tree);
5381 *parg = new_tree;
5382 parg = &DECL_CHAIN (new_tree);
5384 else if (!id->decl_map->get (arg))
5386 /* Make an equivalent VAR_DECL. If the argument was used
5387 as temporary variable later in function, the uses will be
5388 replaced by local variable. */
5389 tree var = copy_decl_to_var (arg, id);
5390 insert_decl_map (id, arg, var);
5391 /* Declare this new variable. */
5392 DECL_CHAIN (var) = *vars;
5393 *vars = var;
5395 return new_parm;
5398 /* Return a copy of the function's static chain. */
5399 static tree
5400 copy_static_chain (tree static_chain, copy_body_data * id)
5402 tree *chain_copy, *pvar;
5404 chain_copy = &static_chain;
5405 for (pvar = chain_copy; *pvar; pvar = &DECL_CHAIN (*pvar))
5407 tree new_tree = remap_decl (*pvar, id);
5408 lang_hooks.dup_lang_specific_decl (new_tree);
5409 DECL_CHAIN (new_tree) = DECL_CHAIN (*pvar);
5410 *pvar = new_tree;
5412 return static_chain;
5415 /* Return true if the function is allowed to be versioned.
5416 This is a guard for the versioning functionality. */
5418 bool
5419 tree_versionable_function_p (tree fndecl)
5421 return (!lookup_attribute ("noclone", DECL_ATTRIBUTES (fndecl))
5422 && copy_forbidden (DECL_STRUCT_FUNCTION (fndecl), fndecl) == NULL);
5425 /* Delete all unreachable basic blocks and update callgraph.
5426 Doing so is somewhat nontrivial because we need to update all clones and
5427 remove inline function that become unreachable. */
5429 static bool
5430 delete_unreachable_blocks_update_callgraph (copy_body_data *id)
5432 bool changed = false;
5433 basic_block b, next_bb;
5435 find_unreachable_blocks ();
5437 /* Delete all unreachable basic blocks. */
5439 for (b = ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb; b
5440 != EXIT_BLOCK_PTR_FOR_FN (cfun); b = next_bb)
5442 next_bb = b->next_bb;
5444 if (!(b->flags & BB_REACHABLE))
5446 gimple_stmt_iterator bsi;
5448 for (bsi = gsi_start_bb (b); !gsi_end_p (bsi); gsi_next (&bsi))
5450 struct cgraph_edge *e;
5451 struct cgraph_node *node;
5453 id->dst_node->remove_stmt_references (gsi_stmt (bsi));
5455 if (gimple_code (gsi_stmt (bsi)) == GIMPLE_CALL
5456 &&(e = id->dst_node->get_edge (gsi_stmt (bsi))) != NULL)
5458 if (!e->inline_failed)
5459 e->callee->remove_symbol_and_inline_clones (id->dst_node);
5460 else
5461 e->remove ();
5463 if (id->transform_call_graph_edges == CB_CGE_MOVE_CLONES
5464 && id->dst_node->clones)
5465 for (node = id->dst_node->clones; node != id->dst_node;)
5467 node->remove_stmt_references (gsi_stmt (bsi));
5468 if (gimple_code (gsi_stmt (bsi)) == GIMPLE_CALL
5469 && (e = node->get_edge (gsi_stmt (bsi))) != NULL)
5471 if (!e->inline_failed)
5472 e->callee->remove_symbol_and_inline_clones (id->dst_node);
5473 else
5474 e->remove ();
5477 if (node->clones)
5478 node = node->clones;
5479 else if (node->next_sibling_clone)
5480 node = node->next_sibling_clone;
5481 else
5483 while (node != id->dst_node && !node->next_sibling_clone)
5484 node = node->clone_of;
5485 if (node != id->dst_node)
5486 node = node->next_sibling_clone;
5490 delete_basic_block (b);
5491 changed = true;
5495 return changed;
5498 /* Update clone info after duplication. */
5500 static void
5501 update_clone_info (copy_body_data * id)
5503 struct cgraph_node *node;
5504 if (!id->dst_node->clones)
5505 return;
5506 for (node = id->dst_node->clones; node != id->dst_node;)
5508 /* First update replace maps to match the new body. */
5509 if (node->clone.tree_map)
5511 unsigned int i;
5512 for (i = 0; i < vec_safe_length (node->clone.tree_map); i++)
5514 struct ipa_replace_map *replace_info;
5515 replace_info = (*node->clone.tree_map)[i];
5516 walk_tree (&replace_info->old_tree, copy_tree_body_r, id, NULL);
5517 walk_tree (&replace_info->new_tree, copy_tree_body_r, id, NULL);
5520 if (node->clones)
5521 node = node->clones;
5522 else if (node->next_sibling_clone)
5523 node = node->next_sibling_clone;
5524 else
5526 while (node != id->dst_node && !node->next_sibling_clone)
5527 node = node->clone_of;
5528 if (node != id->dst_node)
5529 node = node->next_sibling_clone;
5534 /* Create a copy of a function's tree.
5535 OLD_DECL and NEW_DECL are FUNCTION_DECL tree nodes
5536 of the original function and the new copied function
5537 respectively. In case we want to replace a DECL
5538 tree with another tree while duplicating the function's
5539 body, TREE_MAP represents the mapping between these
5540 trees. If UPDATE_CLONES is set, the call_stmt fields
5541 of edges of clones of the function will be updated.
5543 If non-NULL ARGS_TO_SKIP determine function parameters to remove
5544 from new version.
5545 If SKIP_RETURN is true, the new version will return void.
5546 If non-NULL BLOCK_TO_COPY determine what basic blocks to copy.
5547 If non_NULL NEW_ENTRY determine new entry BB of the clone.
5549 void
5550 tree_function_versioning (tree old_decl, tree new_decl,
5551 vec<ipa_replace_map *, va_gc> *tree_map,
5552 bool update_clones, bitmap args_to_skip,
5553 bool skip_return, bitmap blocks_to_copy,
5554 basic_block new_entry)
5556 struct cgraph_node *old_version_node;
5557 struct cgraph_node *new_version_node;
5558 copy_body_data id;
5559 tree p;
5560 unsigned i;
5561 struct ipa_replace_map *replace_info;
5562 basic_block old_entry_block, bb;
5563 auto_vec<gimple, 10> init_stmts;
5564 tree vars = NULL_TREE;
5566 gcc_assert (TREE_CODE (old_decl) == FUNCTION_DECL
5567 && TREE_CODE (new_decl) == FUNCTION_DECL);
5568 DECL_POSSIBLY_INLINED (old_decl) = 1;
5570 old_version_node = cgraph_node::get (old_decl);
5571 gcc_checking_assert (old_version_node);
5572 new_version_node = cgraph_node::get (new_decl);
5573 gcc_checking_assert (new_version_node);
5575 /* Copy over debug args. */
5576 if (DECL_HAS_DEBUG_ARGS_P (old_decl))
5578 vec<tree, va_gc> **new_debug_args, **old_debug_args;
5579 gcc_checking_assert (decl_debug_args_lookup (new_decl) == NULL);
5580 DECL_HAS_DEBUG_ARGS_P (new_decl) = 0;
5581 old_debug_args = decl_debug_args_lookup (old_decl);
5582 if (old_debug_args)
5584 new_debug_args = decl_debug_args_insert (new_decl);
5585 *new_debug_args = vec_safe_copy (*old_debug_args);
5589 /* Output the inlining info for this abstract function, since it has been
5590 inlined. If we don't do this now, we can lose the information about the
5591 variables in the function when the blocks get blown away as soon as we
5592 remove the cgraph node. */
5593 (*debug_hooks->outlining_inline_function) (old_decl);
5595 DECL_ARTIFICIAL (new_decl) = 1;
5596 DECL_ABSTRACT_ORIGIN (new_decl) = DECL_ORIGIN (old_decl);
5597 if (DECL_ORIGIN (old_decl) == old_decl)
5598 old_version_node->used_as_abstract_origin = true;
5599 DECL_FUNCTION_PERSONALITY (new_decl) = DECL_FUNCTION_PERSONALITY (old_decl);
5601 /* Prepare the data structures for the tree copy. */
5602 memset (&id, 0, sizeof (id));
5604 /* Generate a new name for the new version. */
5605 id.statements_to_fold = new hash_set<gimple>;
5607 id.decl_map = new hash_map<tree, tree>;
5608 id.debug_map = NULL;
5609 id.src_fn = old_decl;
5610 id.dst_fn = new_decl;
5611 id.src_node = old_version_node;
5612 id.dst_node = new_version_node;
5613 id.src_cfun = DECL_STRUCT_FUNCTION (old_decl);
5614 id.blocks_to_copy = blocks_to_copy;
5616 id.copy_decl = copy_decl_no_change;
5617 id.transform_call_graph_edges
5618 = update_clones ? CB_CGE_MOVE_CLONES : CB_CGE_MOVE;
5619 id.transform_new_cfg = true;
5620 id.transform_return_to_modify = false;
5621 id.transform_parameter = false;
5622 id.transform_lang_insert_block = NULL;
5624 old_entry_block = ENTRY_BLOCK_PTR_FOR_FN
5625 (DECL_STRUCT_FUNCTION (old_decl));
5626 DECL_RESULT (new_decl) = DECL_RESULT (old_decl);
5627 DECL_ARGUMENTS (new_decl) = DECL_ARGUMENTS (old_decl);
5628 initialize_cfun (new_decl, old_decl,
5629 old_entry_block->count);
5630 if (DECL_STRUCT_FUNCTION (new_decl)->gimple_df)
5631 DECL_STRUCT_FUNCTION (new_decl)->gimple_df->ipa_pta
5632 = id.src_cfun->gimple_df->ipa_pta;
5634 /* Copy the function's static chain. */
5635 p = DECL_STRUCT_FUNCTION (old_decl)->static_chain_decl;
5636 if (p)
5637 DECL_STRUCT_FUNCTION (new_decl)->static_chain_decl =
5638 copy_static_chain (DECL_STRUCT_FUNCTION (old_decl)->static_chain_decl,
5639 &id);
5641 /* If there's a tree_map, prepare for substitution. */
5642 if (tree_map)
5643 for (i = 0; i < tree_map->length (); i++)
5645 gimple init;
5646 replace_info = (*tree_map)[i];
5647 if (replace_info->replace_p)
5649 if (!replace_info->old_tree)
5651 int i = replace_info->parm_num;
5652 tree parm;
5653 tree req_type;
5655 for (parm = DECL_ARGUMENTS (old_decl); i; parm = DECL_CHAIN (parm))
5656 i --;
5657 replace_info->old_tree = parm;
5658 req_type = TREE_TYPE (parm);
5659 if (!useless_type_conversion_p (req_type, TREE_TYPE (replace_info->new_tree)))
5661 if (fold_convertible_p (req_type, replace_info->new_tree))
5662 replace_info->new_tree = fold_build1 (NOP_EXPR, req_type, replace_info->new_tree);
5663 else if (TYPE_SIZE (req_type) == TYPE_SIZE (TREE_TYPE (replace_info->new_tree)))
5664 replace_info->new_tree = fold_build1 (VIEW_CONVERT_EXPR, req_type, replace_info->new_tree);
5665 else
5667 if (dump_file)
5669 fprintf (dump_file, " const ");
5670 print_generic_expr (dump_file, replace_info->new_tree, 0);
5671 fprintf (dump_file, " can't be converted to param ");
5672 print_generic_expr (dump_file, parm, 0);
5673 fprintf (dump_file, "\n");
5675 replace_info->old_tree = NULL;
5679 else
5680 gcc_assert (TREE_CODE (replace_info->old_tree) == PARM_DECL);
5681 if (replace_info->old_tree)
5683 init = setup_one_parameter (&id, replace_info->old_tree,
5684 replace_info->new_tree, id.src_fn,
5685 NULL,
5686 &vars);
5687 if (init)
5688 init_stmts.safe_push (init);
5692 /* Copy the function's arguments. */
5693 if (DECL_ARGUMENTS (old_decl) != NULL_TREE)
5694 DECL_ARGUMENTS (new_decl) =
5695 copy_arguments_for_versioning (DECL_ARGUMENTS (old_decl), &id,
5696 args_to_skip, &vars);
5698 DECL_INITIAL (new_decl) = remap_blocks (DECL_INITIAL (id.src_fn), &id);
5699 BLOCK_SUPERCONTEXT (DECL_INITIAL (new_decl)) = new_decl;
5701 declare_inline_vars (DECL_INITIAL (new_decl), vars);
5703 if (!vec_safe_is_empty (DECL_STRUCT_FUNCTION (old_decl)->local_decls))
5704 /* Add local vars. */
5705 add_local_variables (DECL_STRUCT_FUNCTION (old_decl), cfun, &id);
5707 if (DECL_RESULT (old_decl) == NULL_TREE)
5709 else if (skip_return && !VOID_TYPE_P (TREE_TYPE (DECL_RESULT (old_decl))))
5711 DECL_RESULT (new_decl)
5712 = build_decl (DECL_SOURCE_LOCATION (DECL_RESULT (old_decl)),
5713 RESULT_DECL, NULL_TREE, void_type_node);
5714 DECL_CONTEXT (DECL_RESULT (new_decl)) = new_decl;
5715 cfun->returns_struct = 0;
5716 cfun->returns_pcc_struct = 0;
5718 else
5720 tree old_name;
5721 DECL_RESULT (new_decl) = remap_decl (DECL_RESULT (old_decl), &id);
5722 lang_hooks.dup_lang_specific_decl (DECL_RESULT (new_decl));
5723 if (gimple_in_ssa_p (id.src_cfun)
5724 && DECL_BY_REFERENCE (DECL_RESULT (old_decl))
5725 && (old_name = ssa_default_def (id.src_cfun, DECL_RESULT (old_decl))))
5727 tree new_name = make_ssa_name (DECL_RESULT (new_decl));
5728 insert_decl_map (&id, old_name, new_name);
5729 SSA_NAME_DEF_STMT (new_name) = gimple_build_nop ();
5730 set_ssa_default_def (cfun, DECL_RESULT (new_decl), new_name);
5734 /* Set up the destination functions loop tree. */
5735 if (loops_for_fn (DECL_STRUCT_FUNCTION (old_decl)) != NULL)
5737 cfun->curr_properties &= ~PROP_loops;
5738 loop_optimizer_init (AVOID_CFG_MODIFICATIONS);
5739 cfun->curr_properties |= PROP_loops;
5742 /* Copy the Function's body. */
5743 copy_body (&id, old_entry_block->count, REG_BR_PROB_BASE,
5744 ENTRY_BLOCK_PTR_FOR_FN (cfun), EXIT_BLOCK_PTR_FOR_FN (cfun),
5745 new_entry);
5747 /* Renumber the lexical scoping (non-code) blocks consecutively. */
5748 number_blocks (new_decl);
5750 /* We want to create the BB unconditionally, so that the addition of
5751 debug stmts doesn't affect BB count, which may in the end cause
5752 codegen differences. */
5753 bb = split_edge (single_succ_edge (ENTRY_BLOCK_PTR_FOR_FN (cfun)));
5754 while (init_stmts.length ())
5755 insert_init_stmt (&id, bb, init_stmts.pop ());
5756 update_clone_info (&id);
5758 /* Remap the nonlocal_goto_save_area, if any. */
5759 if (cfun->nonlocal_goto_save_area)
5761 struct walk_stmt_info wi;
5763 memset (&wi, 0, sizeof (wi));
5764 wi.info = &id;
5765 walk_tree (&cfun->nonlocal_goto_save_area, remap_gimple_op_r, &wi, NULL);
5768 /* Clean up. */
5769 delete id.decl_map;
5770 if (id.debug_map)
5771 delete id.debug_map;
5772 free_dominance_info (CDI_DOMINATORS);
5773 free_dominance_info (CDI_POST_DOMINATORS);
5775 fold_marked_statements (0, id.statements_to_fold);
5776 delete id.statements_to_fold;
5777 fold_cond_expr_cond ();
5778 delete_unreachable_blocks_update_callgraph (&id);
5779 if (id.dst_node->definition)
5780 cgraph_edge::rebuild_references ();
5781 if (loops_state_satisfies_p (LOOPS_NEED_FIXUP))
5783 calculate_dominance_info (CDI_DOMINATORS);
5784 fix_loop_structure (NULL);
5786 update_ssa (TODO_update_ssa);
5788 /* After partial cloning we need to rescale frequencies, so they are
5789 within proper range in the cloned function. */
5790 if (new_entry)
5792 struct cgraph_edge *e;
5793 rebuild_frequencies ();
5795 new_version_node->count = ENTRY_BLOCK_PTR_FOR_FN (cfun)->count;
5796 for (e = new_version_node->callees; e; e = e->next_callee)
5798 basic_block bb = gimple_bb (e->call_stmt);
5799 e->frequency = compute_call_stmt_bb_frequency (current_function_decl,
5800 bb);
5801 e->count = bb->count;
5803 for (e = new_version_node->indirect_calls; e; e = e->next_callee)
5805 basic_block bb = gimple_bb (e->call_stmt);
5806 e->frequency = compute_call_stmt_bb_frequency (current_function_decl,
5807 bb);
5808 e->count = bb->count;
5812 free_dominance_info (CDI_DOMINATORS);
5813 free_dominance_info (CDI_POST_DOMINATORS);
5815 gcc_assert (!id.debug_stmts.exists ());
5816 pop_cfun ();
5817 return;
5820 /* EXP is CALL_EXPR present in a GENERIC expression tree. Try to integrate
5821 the callee and return the inlined body on success. */
5823 tree
5824 maybe_inline_call_in_expr (tree exp)
5826 tree fn = get_callee_fndecl (exp);
5828 /* We can only try to inline "const" functions. */
5829 if (fn && TREE_READONLY (fn) && DECL_SAVED_TREE (fn))
5831 call_expr_arg_iterator iter;
5832 copy_body_data id;
5833 tree param, arg, t;
5834 hash_map<tree, tree> decl_map;
5836 /* Remap the parameters. */
5837 for (param = DECL_ARGUMENTS (fn), arg = first_call_expr_arg (exp, &iter);
5838 param;
5839 param = DECL_CHAIN (param), arg = next_call_expr_arg (&iter))
5840 decl_map.put (param, arg);
5842 memset (&id, 0, sizeof (id));
5843 id.src_fn = fn;
5844 id.dst_fn = current_function_decl;
5845 id.src_cfun = DECL_STRUCT_FUNCTION (fn);
5846 id.decl_map = &decl_map;
5848 id.copy_decl = copy_decl_no_change;
5849 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
5850 id.transform_new_cfg = false;
5851 id.transform_return_to_modify = true;
5852 id.transform_parameter = true;
5853 id.transform_lang_insert_block = NULL;
5855 /* Make sure not to unshare trees behind the front-end's back
5856 since front-end specific mechanisms may rely on sharing. */
5857 id.regimplify = false;
5858 id.do_not_unshare = true;
5860 /* We're not inside any EH region. */
5861 id.eh_lp_nr = 0;
5863 t = copy_tree_body (&id);
5865 /* We can only return something suitable for use in a GENERIC
5866 expression tree. */
5867 if (TREE_CODE (t) == MODIFY_EXPR)
5868 return TREE_OPERAND (t, 1);
5871 return NULL_TREE;
5874 /* Duplicate a type, fields and all. */
5876 tree
5877 build_duplicate_type (tree type)
5879 struct copy_body_data id;
5881 memset (&id, 0, sizeof (id));
5882 id.src_fn = current_function_decl;
5883 id.dst_fn = current_function_decl;
5884 id.src_cfun = cfun;
5885 id.decl_map = new hash_map<tree, tree>;
5886 id.debug_map = NULL;
5887 id.copy_decl = copy_decl_no_change;
5889 type = remap_type_1 (type, &id);
5891 delete id.decl_map;
5892 if (id.debug_map)
5893 delete id.debug_map;
5895 TYPE_CANONICAL (type) = type;
5897 return type;
5900 /* Unshare the entire DECL_SAVED_TREE of FN and return the remapped
5901 parameters and RESULT_DECL in PARMS and RESULT. Used by C++ constexpr
5902 evaluation. */
5904 tree
5905 copy_fn (tree fn, tree& parms, tree& result)
5907 copy_body_data id;
5908 tree param;
5909 hash_map<tree, tree> decl_map;
5911 tree *p = &parms;
5912 *p = NULL_TREE;
5914 memset (&id, 0, sizeof (id));
5915 id.src_fn = fn;
5916 id.dst_fn = current_function_decl;
5917 id.src_cfun = DECL_STRUCT_FUNCTION (fn);
5918 id.decl_map = &decl_map;
5920 id.copy_decl = copy_decl_no_change;
5921 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
5922 id.transform_new_cfg = false;
5923 id.transform_return_to_modify = false;
5924 id.transform_parameter = true;
5925 id.transform_lang_insert_block = NULL;
5927 /* Make sure not to unshare trees behind the front-end's back
5928 since front-end specific mechanisms may rely on sharing. */
5929 id.regimplify = false;
5930 id.do_not_unshare = true;
5932 /* We're not inside any EH region. */
5933 id.eh_lp_nr = 0;
5935 /* Remap the parameters and result and return them to the caller. */
5936 for (param = DECL_ARGUMENTS (fn);
5937 param;
5938 param = DECL_CHAIN (param))
5940 *p = remap_decl (param, &id);
5941 p = &DECL_CHAIN (*p);
5944 if (DECL_RESULT (fn))
5945 result = remap_decl (DECL_RESULT (fn), &id);
5946 else
5947 result = NULL_TREE;
5949 return copy_tree_body (&id);