2011-10-08 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / tree-inline.c
blobe2f76e1c60812cf0cde6adc65cc3e42c541b0f0d
1 /* Tree inlining.
2 Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
3 Free Software Foundation, Inc.
4 Contributed by Alexandre Oliva <aoliva@redhat.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "diagnostic-core.h"
27 #include "tree.h"
28 #include "tree-inline.h"
29 #include "flags.h"
30 #include "params.h"
31 #include "input.h"
32 #include "insn-config.h"
33 #include "hashtab.h"
34 #include "langhooks.h"
35 #include "basic-block.h"
36 #include "tree-iterator.h"
37 #include "cgraph.h"
38 #include "intl.h"
39 #include "tree-mudflap.h"
40 #include "tree-flow.h"
41 #include "function.h"
42 #include "tree-flow.h"
43 #include "tree-pretty-print.h"
44 #include "except.h"
45 #include "debug.h"
46 #include "pointer-set.h"
47 #include "ipa-prop.h"
48 #include "value-prof.h"
49 #include "tree-pass.h"
50 #include "target.h"
51 #include "integrate.h"
53 #include "rtl.h" /* FIXME: For asm_str_count. */
55 /* I'm not real happy about this, but we need to handle gimple and
56 non-gimple trees. */
57 #include "gimple.h"
59 /* Inlining, Cloning, Versioning, Parallelization
61 Inlining: a function body is duplicated, but the PARM_DECLs are
62 remapped into VAR_DECLs, and non-void RETURN_EXPRs become
63 MODIFY_EXPRs that store to a dedicated returned-value variable.
64 The duplicated eh_region info of the copy will later be appended
65 to the info for the caller; the eh_region info in copied throwing
66 statements and RESX statements are adjusted accordingly.
68 Cloning: (only in C++) We have one body for a con/de/structor, and
69 multiple function decls, each with a unique parameter list.
70 Duplicate the body, using the given splay tree; some parameters
71 will become constants (like 0 or 1).
73 Versioning: a function body is duplicated and the result is a new
74 function rather than into blocks of an existing function as with
75 inlining. Some parameters will become constants.
77 Parallelization: a region of a function is duplicated resulting in
78 a new function. Variables may be replaced with complex expressions
79 to enable shared variable semantics.
81 All of these will simultaneously lookup any callgraph edges. If
82 we're going to inline the duplicated function body, and the given
83 function has some cloned callgraph nodes (one for each place this
84 function will be inlined) those callgraph edges will be duplicated.
85 If we're cloning the body, those callgraph edges will be
86 updated to point into the new body. (Note that the original
87 callgraph node and edge list will not be altered.)
89 See the CALL_EXPR handling case in copy_tree_body_r (). */
91 /* To Do:
93 o In order to make inlining-on-trees work, we pessimized
94 function-local static constants. In particular, they are now
95 always output, even when not addressed. Fix this by treating
96 function-local static constants just like global static
97 constants; the back-end already knows not to output them if they
98 are not needed.
100 o Provide heuristics to clamp inlining of recursive template
101 calls? */
104 /* Weights that estimate_num_insns uses to estimate the size of the
105 produced code. */
107 eni_weights eni_size_weights;
109 /* Weights that estimate_num_insns uses to estimate the time necessary
110 to execute the produced code. */
112 eni_weights eni_time_weights;
114 /* Prototypes. */
116 static tree declare_return_variable (copy_body_data *, tree, tree, basic_block);
117 static void remap_block (tree *, copy_body_data *);
118 static void copy_bind_expr (tree *, int *, copy_body_data *);
119 static tree mark_local_for_remap_r (tree *, int *, void *);
120 static void unsave_expr_1 (tree);
121 static tree unsave_r (tree *, int *, void *);
122 static void declare_inline_vars (tree, tree);
123 static void remap_save_expr (tree *, void *, int *);
124 static void prepend_lexical_block (tree current_block, tree new_block);
125 static tree copy_decl_to_var (tree, copy_body_data *);
126 static tree copy_result_decl_to_var (tree, copy_body_data *);
127 static tree copy_decl_maybe_to_var (tree, copy_body_data *);
128 static gimple remap_gimple_stmt (gimple, copy_body_data *);
129 static bool delete_unreachable_blocks_update_callgraph (copy_body_data *id);
131 /* Insert a tree->tree mapping for ID. Despite the name suggests
132 that the trees should be variables, it is used for more than that. */
134 void
135 insert_decl_map (copy_body_data *id, tree key, tree value)
137 *pointer_map_insert (id->decl_map, key) = value;
139 /* Always insert an identity map as well. If we see this same new
140 node again, we won't want to duplicate it a second time. */
141 if (key != value)
142 *pointer_map_insert (id->decl_map, value) = value;
145 /* Insert a tree->tree mapping for ID. This is only used for
146 variables. */
148 static void
149 insert_debug_decl_map (copy_body_data *id, tree key, tree value)
151 if (!gimple_in_ssa_p (id->src_cfun))
152 return;
154 if (!MAY_HAVE_DEBUG_STMTS)
155 return;
157 if (!target_for_debug_bind (key))
158 return;
160 gcc_assert (TREE_CODE (key) == PARM_DECL);
161 gcc_assert (TREE_CODE (value) == VAR_DECL);
163 if (!id->debug_map)
164 id->debug_map = pointer_map_create ();
166 *pointer_map_insert (id->debug_map, key) = value;
169 /* If nonzero, we're remapping the contents of inlined debug
170 statements. If negative, an error has occurred, such as a
171 reference to a variable that isn't available in the inlined
172 context. */
173 static int processing_debug_stmt = 0;
175 /* Construct new SSA name for old NAME. ID is the inline context. */
177 static tree
178 remap_ssa_name (tree name, copy_body_data *id)
180 tree new_tree;
181 tree *n;
183 gcc_assert (TREE_CODE (name) == SSA_NAME);
185 n = (tree *) pointer_map_contains (id->decl_map, name);
186 if (n)
187 return unshare_expr (*n);
189 if (processing_debug_stmt)
191 if (TREE_CODE (SSA_NAME_VAR (name)) == PARM_DECL
192 && SSA_NAME_IS_DEFAULT_DEF (name)
193 && id->entry_bb == NULL
194 && single_succ_p (ENTRY_BLOCK_PTR))
196 tree vexpr = make_node (DEBUG_EXPR_DECL);
197 gimple def_temp;
198 gimple_stmt_iterator gsi;
199 tree val = SSA_NAME_VAR (name);
201 n = (tree *) pointer_map_contains (id->decl_map, val);
202 if (n != NULL)
203 val = *n;
204 if (TREE_CODE (val) != PARM_DECL)
206 processing_debug_stmt = -1;
207 return name;
209 def_temp = gimple_build_debug_source_bind (vexpr, val, NULL);
210 DECL_ARTIFICIAL (vexpr) = 1;
211 TREE_TYPE (vexpr) = TREE_TYPE (name);
212 DECL_MODE (vexpr) = DECL_MODE (SSA_NAME_VAR (name));
213 gsi = gsi_after_labels (single_succ (ENTRY_BLOCK_PTR));
214 gsi_insert_before (&gsi, def_temp, GSI_SAME_STMT);
215 return vexpr;
218 processing_debug_stmt = -1;
219 return name;
222 /* Do not set DEF_STMT yet as statement is not copied yet. We do that
223 in copy_bb. */
224 new_tree = remap_decl (SSA_NAME_VAR (name), id);
226 /* We might've substituted constant or another SSA_NAME for
227 the variable.
229 Replace the SSA name representing RESULT_DECL by variable during
230 inlining: this saves us from need to introduce PHI node in a case
231 return value is just partly initialized. */
232 if ((TREE_CODE (new_tree) == VAR_DECL || TREE_CODE (new_tree) == PARM_DECL)
233 && (TREE_CODE (SSA_NAME_VAR (name)) != RESULT_DECL
234 || !id->transform_return_to_modify))
236 struct ptr_info_def *pi;
237 new_tree = make_ssa_name (new_tree, NULL);
238 insert_decl_map (id, name, new_tree);
239 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (new_tree)
240 = SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name);
241 TREE_TYPE (new_tree) = TREE_TYPE (SSA_NAME_VAR (new_tree));
242 /* At least IPA points-to info can be directly transferred. */
243 if (id->src_cfun->gimple_df
244 && id->src_cfun->gimple_df->ipa_pta
245 && (pi = SSA_NAME_PTR_INFO (name))
246 && !pi->pt.anything)
248 struct ptr_info_def *new_pi = get_ptr_info (new_tree);
249 new_pi->pt = pi->pt;
251 if (gimple_nop_p (SSA_NAME_DEF_STMT (name)))
253 /* By inlining function having uninitialized variable, we might
254 extend the lifetime (variable might get reused). This cause
255 ICE in the case we end up extending lifetime of SSA name across
256 abnormal edge, but also increase register pressure.
258 We simply initialize all uninitialized vars by 0 except
259 for case we are inlining to very first BB. We can avoid
260 this for all BBs that are not inside strongly connected
261 regions of the CFG, but this is expensive to test. */
262 if (id->entry_bb
263 && is_gimple_reg (SSA_NAME_VAR (name))
264 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name)
265 && TREE_CODE (SSA_NAME_VAR (name)) != PARM_DECL
266 && (id->entry_bb != EDGE_SUCC (ENTRY_BLOCK_PTR, 0)->dest
267 || EDGE_COUNT (id->entry_bb->preds) != 1))
269 gimple_stmt_iterator gsi = gsi_last_bb (id->entry_bb);
270 gimple init_stmt;
271 tree zero = build_zero_cst (TREE_TYPE (new_tree));
273 init_stmt = gimple_build_assign (new_tree, zero);
274 gsi_insert_after (&gsi, init_stmt, GSI_NEW_STMT);
275 SSA_NAME_IS_DEFAULT_DEF (new_tree) = 0;
277 else
279 SSA_NAME_DEF_STMT (new_tree) = gimple_build_nop ();
280 if (gimple_default_def (id->src_cfun, SSA_NAME_VAR (name))
281 == name)
282 set_default_def (SSA_NAME_VAR (new_tree), new_tree);
286 else
287 insert_decl_map (id, name, new_tree);
288 return new_tree;
291 /* Remap DECL during the copying of the BLOCK tree for the function. */
293 tree
294 remap_decl (tree decl, copy_body_data *id)
296 tree *n;
298 /* We only remap local variables in the current function. */
300 /* See if we have remapped this declaration. */
302 n = (tree *) pointer_map_contains (id->decl_map, decl);
304 if (!n && processing_debug_stmt)
306 processing_debug_stmt = -1;
307 return decl;
310 /* If we didn't already have an equivalent for this declaration,
311 create one now. */
312 if (!n)
314 /* Make a copy of the variable or label. */
315 tree t = id->copy_decl (decl, id);
317 /* Remember it, so that if we encounter this local entity again
318 we can reuse this copy. Do this early because remap_type may
319 need this decl for TYPE_STUB_DECL. */
320 insert_decl_map (id, decl, t);
322 if (!DECL_P (t))
323 return t;
325 /* Remap types, if necessary. */
326 TREE_TYPE (t) = remap_type (TREE_TYPE (t), id);
327 if (TREE_CODE (t) == TYPE_DECL)
328 DECL_ORIGINAL_TYPE (t) = remap_type (DECL_ORIGINAL_TYPE (t), id);
330 /* Remap sizes as necessary. */
331 walk_tree (&DECL_SIZE (t), copy_tree_body_r, id, NULL);
332 walk_tree (&DECL_SIZE_UNIT (t), copy_tree_body_r, id, NULL);
334 /* If fields, do likewise for offset and qualifier. */
335 if (TREE_CODE (t) == FIELD_DECL)
337 walk_tree (&DECL_FIELD_OFFSET (t), copy_tree_body_r, id, NULL);
338 if (TREE_CODE (DECL_CONTEXT (t)) == QUAL_UNION_TYPE)
339 walk_tree (&DECL_QUALIFIER (t), copy_tree_body_r, id, NULL);
342 if ((TREE_CODE (t) == VAR_DECL
343 || TREE_CODE (t) == RESULT_DECL
344 || TREE_CODE (t) == PARM_DECL)
345 && id->src_fn && DECL_STRUCT_FUNCTION (id->src_fn)
346 && gimple_referenced_vars (DECL_STRUCT_FUNCTION (id->src_fn))
347 /* We don't want to mark as referenced VAR_DECLs that were
348 not marked as such in the src function. */
349 && (TREE_CODE (decl) != VAR_DECL
350 || referenced_var_lookup (DECL_STRUCT_FUNCTION (id->src_fn),
351 DECL_UID (decl))))
352 add_referenced_var (t);
353 return t;
356 if (id->do_not_unshare)
357 return *n;
358 else
359 return unshare_expr (*n);
362 static tree
363 remap_type_1 (tree type, copy_body_data *id)
365 tree new_tree, t;
367 /* We do need a copy. build and register it now. If this is a pointer or
368 reference type, remap the designated type and make a new pointer or
369 reference type. */
370 if (TREE_CODE (type) == POINTER_TYPE)
372 new_tree = build_pointer_type_for_mode (remap_type (TREE_TYPE (type), id),
373 TYPE_MODE (type),
374 TYPE_REF_CAN_ALIAS_ALL (type));
375 if (TYPE_ATTRIBUTES (type) || TYPE_QUALS (type))
376 new_tree = build_type_attribute_qual_variant (new_tree,
377 TYPE_ATTRIBUTES (type),
378 TYPE_QUALS (type));
379 insert_decl_map (id, type, new_tree);
380 return new_tree;
382 else if (TREE_CODE (type) == REFERENCE_TYPE)
384 new_tree = build_reference_type_for_mode (remap_type (TREE_TYPE (type), id),
385 TYPE_MODE (type),
386 TYPE_REF_CAN_ALIAS_ALL (type));
387 if (TYPE_ATTRIBUTES (type) || TYPE_QUALS (type))
388 new_tree = build_type_attribute_qual_variant (new_tree,
389 TYPE_ATTRIBUTES (type),
390 TYPE_QUALS (type));
391 insert_decl_map (id, type, new_tree);
392 return new_tree;
394 else
395 new_tree = copy_node (type);
397 insert_decl_map (id, type, new_tree);
399 /* This is a new type, not a copy of an old type. Need to reassociate
400 variants. We can handle everything except the main variant lazily. */
401 t = TYPE_MAIN_VARIANT (type);
402 if (type != t)
404 t = remap_type (t, id);
405 TYPE_MAIN_VARIANT (new_tree) = t;
406 TYPE_NEXT_VARIANT (new_tree) = TYPE_NEXT_VARIANT (t);
407 TYPE_NEXT_VARIANT (t) = new_tree;
409 else
411 TYPE_MAIN_VARIANT (new_tree) = new_tree;
412 TYPE_NEXT_VARIANT (new_tree) = NULL;
415 if (TYPE_STUB_DECL (type))
416 TYPE_STUB_DECL (new_tree) = remap_decl (TYPE_STUB_DECL (type), id);
418 /* Lazily create pointer and reference types. */
419 TYPE_POINTER_TO (new_tree) = NULL;
420 TYPE_REFERENCE_TO (new_tree) = NULL;
422 switch (TREE_CODE (new_tree))
424 case INTEGER_TYPE:
425 case REAL_TYPE:
426 case FIXED_POINT_TYPE:
427 case ENUMERAL_TYPE:
428 case BOOLEAN_TYPE:
429 t = TYPE_MIN_VALUE (new_tree);
430 if (t && TREE_CODE (t) != INTEGER_CST)
431 walk_tree (&TYPE_MIN_VALUE (new_tree), copy_tree_body_r, id, NULL);
433 t = TYPE_MAX_VALUE (new_tree);
434 if (t && TREE_CODE (t) != INTEGER_CST)
435 walk_tree (&TYPE_MAX_VALUE (new_tree), copy_tree_body_r, id, NULL);
436 return new_tree;
438 case FUNCTION_TYPE:
439 TREE_TYPE (new_tree) = remap_type (TREE_TYPE (new_tree), id);
440 walk_tree (&TYPE_ARG_TYPES (new_tree), copy_tree_body_r, id, NULL);
441 return new_tree;
443 case ARRAY_TYPE:
444 TREE_TYPE (new_tree) = remap_type (TREE_TYPE (new_tree), id);
445 TYPE_DOMAIN (new_tree) = remap_type (TYPE_DOMAIN (new_tree), id);
446 break;
448 case RECORD_TYPE:
449 case UNION_TYPE:
450 case QUAL_UNION_TYPE:
452 tree f, nf = NULL;
454 for (f = TYPE_FIELDS (new_tree); f ; f = DECL_CHAIN (f))
456 t = remap_decl (f, id);
457 DECL_CONTEXT (t) = new_tree;
458 DECL_CHAIN (t) = nf;
459 nf = t;
461 TYPE_FIELDS (new_tree) = nreverse (nf);
463 break;
465 case OFFSET_TYPE:
466 default:
467 /* Shouldn't have been thought variable sized. */
468 gcc_unreachable ();
471 walk_tree (&TYPE_SIZE (new_tree), copy_tree_body_r, id, NULL);
472 walk_tree (&TYPE_SIZE_UNIT (new_tree), copy_tree_body_r, id, NULL);
474 return new_tree;
477 tree
478 remap_type (tree type, copy_body_data *id)
480 tree *node;
481 tree tmp;
483 if (type == NULL)
484 return type;
486 /* See if we have remapped this type. */
487 node = (tree *) pointer_map_contains (id->decl_map, type);
488 if (node)
489 return *node;
491 /* The type only needs remapping if it's variably modified. */
492 if (! variably_modified_type_p (type, id->src_fn))
494 insert_decl_map (id, type, type);
495 return type;
498 id->remapping_type_depth++;
499 tmp = remap_type_1 (type, id);
500 id->remapping_type_depth--;
502 return tmp;
505 /* Return previously remapped type of TYPE in ID. Return NULL if TYPE
506 is NULL or TYPE has not been remapped before. */
508 static tree
509 remapped_type (tree type, copy_body_data *id)
511 tree *node;
513 if (type == NULL)
514 return type;
516 /* See if we have remapped this type. */
517 node = (tree *) pointer_map_contains (id->decl_map, type);
518 if (node)
519 return *node;
520 else
521 return NULL;
524 /* The type only needs remapping if it's variably modified. */
525 /* Decide if DECL can be put into BLOCK_NONLOCAL_VARs. */
527 static bool
528 can_be_nonlocal (tree decl, copy_body_data *id)
530 /* We can not duplicate function decls. */
531 if (TREE_CODE (decl) == FUNCTION_DECL)
532 return true;
534 /* Local static vars must be non-local or we get multiple declaration
535 problems. */
536 if (TREE_CODE (decl) == VAR_DECL
537 && !auto_var_in_fn_p (decl, id->src_fn))
538 return true;
540 /* At the moment dwarf2out can handle only these types of nodes. We
541 can support more later. */
542 if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != PARM_DECL)
543 return false;
545 /* We must use global type. We call remapped_type instead of
546 remap_type since we don't want to remap this type here if it
547 hasn't been remapped before. */
548 if (TREE_TYPE (decl) != remapped_type (TREE_TYPE (decl), id))
549 return false;
551 /* Wihtout SSA we can't tell if variable is used. */
552 if (!gimple_in_ssa_p (cfun))
553 return false;
555 /* Live variables must be copied so we can attach DECL_RTL. */
556 if (var_ann (decl))
557 return false;
559 return true;
562 static tree
563 remap_decls (tree decls, VEC(tree,gc) **nonlocalized_list, copy_body_data *id)
565 tree old_var;
566 tree new_decls = NULL_TREE;
568 /* Remap its variables. */
569 for (old_var = decls; old_var; old_var = DECL_CHAIN (old_var))
571 tree new_var;
573 if (can_be_nonlocal (old_var, id))
575 if (TREE_CODE (old_var) == VAR_DECL
576 && ! DECL_EXTERNAL (old_var)
577 && (var_ann (old_var) || !gimple_in_ssa_p (cfun)))
578 add_local_decl (cfun, old_var);
579 if ((!optimize || debug_info_level > DINFO_LEVEL_TERSE)
580 && !DECL_IGNORED_P (old_var)
581 && nonlocalized_list)
582 VEC_safe_push (tree, gc, *nonlocalized_list, old_var);
583 continue;
586 /* Remap the variable. */
587 new_var = remap_decl (old_var, id);
589 /* If we didn't remap this variable, we can't mess with its
590 TREE_CHAIN. If we remapped this variable to the return slot, it's
591 already declared somewhere else, so don't declare it here. */
593 if (new_var == id->retvar)
595 else if (!new_var)
597 if ((!optimize || debug_info_level > DINFO_LEVEL_TERSE)
598 && !DECL_IGNORED_P (old_var)
599 && nonlocalized_list)
600 VEC_safe_push (tree, gc, *nonlocalized_list, old_var);
602 else
604 gcc_assert (DECL_P (new_var));
605 DECL_CHAIN (new_var) = new_decls;
606 new_decls = new_var;
608 /* Also copy value-expressions. */
609 if (TREE_CODE (new_var) == VAR_DECL
610 && DECL_HAS_VALUE_EXPR_P (new_var))
612 tree tem = DECL_VALUE_EXPR (new_var);
613 bool old_regimplify = id->regimplify;
614 id->remapping_type_depth++;
615 walk_tree (&tem, copy_tree_body_r, id, NULL);
616 id->remapping_type_depth--;
617 id->regimplify = old_regimplify;
618 SET_DECL_VALUE_EXPR (new_var, tem);
623 return nreverse (new_decls);
626 /* Copy the BLOCK to contain remapped versions of the variables
627 therein. And hook the new block into the block-tree. */
629 static void
630 remap_block (tree *block, copy_body_data *id)
632 tree old_block;
633 tree new_block;
635 /* Make the new block. */
636 old_block = *block;
637 new_block = make_node (BLOCK);
638 TREE_USED (new_block) = TREE_USED (old_block);
639 BLOCK_ABSTRACT_ORIGIN (new_block) = old_block;
640 BLOCK_SOURCE_LOCATION (new_block) = BLOCK_SOURCE_LOCATION (old_block);
641 BLOCK_NONLOCALIZED_VARS (new_block)
642 = VEC_copy (tree, gc, BLOCK_NONLOCALIZED_VARS (old_block));
643 *block = new_block;
645 /* Remap its variables. */
646 BLOCK_VARS (new_block) = remap_decls (BLOCK_VARS (old_block),
647 &BLOCK_NONLOCALIZED_VARS (new_block),
648 id);
650 if (id->transform_lang_insert_block)
651 id->transform_lang_insert_block (new_block);
653 /* Remember the remapped block. */
654 insert_decl_map (id, old_block, new_block);
657 /* Copy the whole block tree and root it in id->block. */
658 static tree
659 remap_blocks (tree block, copy_body_data *id)
661 tree t;
662 tree new_tree = block;
664 if (!block)
665 return NULL;
667 remap_block (&new_tree, id);
668 gcc_assert (new_tree != block);
669 for (t = BLOCK_SUBBLOCKS (block); t ; t = BLOCK_CHAIN (t))
670 prepend_lexical_block (new_tree, remap_blocks (t, id));
671 /* Blocks are in arbitrary order, but make things slightly prettier and do
672 not swap order when producing a copy. */
673 BLOCK_SUBBLOCKS (new_tree) = blocks_nreverse (BLOCK_SUBBLOCKS (new_tree));
674 return new_tree;
677 static void
678 copy_statement_list (tree *tp)
680 tree_stmt_iterator oi, ni;
681 tree new_tree;
683 new_tree = alloc_stmt_list ();
684 ni = tsi_start (new_tree);
685 oi = tsi_start (*tp);
686 TREE_TYPE (new_tree) = TREE_TYPE (*tp);
687 *tp = new_tree;
689 for (; !tsi_end_p (oi); tsi_next (&oi))
691 tree stmt = tsi_stmt (oi);
692 if (TREE_CODE (stmt) == STATEMENT_LIST)
693 /* This copy is not redundant; tsi_link_after will smash this
694 STATEMENT_LIST into the end of the one we're building, and we
695 don't want to do that with the original. */
696 copy_statement_list (&stmt);
697 tsi_link_after (&ni, stmt, TSI_CONTINUE_LINKING);
701 static void
702 copy_bind_expr (tree *tp, int *walk_subtrees, copy_body_data *id)
704 tree block = BIND_EXPR_BLOCK (*tp);
705 /* Copy (and replace) the statement. */
706 copy_tree_r (tp, walk_subtrees, NULL);
707 if (block)
709 remap_block (&block, id);
710 BIND_EXPR_BLOCK (*tp) = block;
713 if (BIND_EXPR_VARS (*tp))
714 /* This will remap a lot of the same decls again, but this should be
715 harmless. */
716 BIND_EXPR_VARS (*tp) = remap_decls (BIND_EXPR_VARS (*tp), NULL, id);
720 /* Create a new gimple_seq by remapping all the statements in BODY
721 using the inlining information in ID. */
723 static gimple_seq
724 remap_gimple_seq (gimple_seq body, copy_body_data *id)
726 gimple_stmt_iterator si;
727 gimple_seq new_body = NULL;
729 for (si = gsi_start (body); !gsi_end_p (si); gsi_next (&si))
731 gimple new_stmt = remap_gimple_stmt (gsi_stmt (si), id);
732 gimple_seq_add_stmt (&new_body, new_stmt);
735 return new_body;
739 /* Copy a GIMPLE_BIND statement STMT, remapping all the symbols in its
740 block using the mapping information in ID. */
742 static gimple
743 copy_gimple_bind (gimple stmt, copy_body_data *id)
745 gimple new_bind;
746 tree new_block, new_vars;
747 gimple_seq body, new_body;
749 /* Copy the statement. Note that we purposely don't use copy_stmt
750 here because we need to remap statements as we copy. */
751 body = gimple_bind_body (stmt);
752 new_body = remap_gimple_seq (body, id);
754 new_block = gimple_bind_block (stmt);
755 if (new_block)
756 remap_block (&new_block, id);
758 /* This will remap a lot of the same decls again, but this should be
759 harmless. */
760 new_vars = gimple_bind_vars (stmt);
761 if (new_vars)
762 new_vars = remap_decls (new_vars, NULL, id);
764 new_bind = gimple_build_bind (new_vars, new_body, new_block);
766 return new_bind;
770 /* Remap the GIMPLE operand pointed to by *TP. DATA is really a
771 'struct walk_stmt_info *'. DATA->INFO is a 'copy_body_data *'.
772 WALK_SUBTREES is used to indicate walk_gimple_op whether to keep
773 recursing into the children nodes of *TP. */
775 static tree
776 remap_gimple_op_r (tree *tp, int *walk_subtrees, void *data)
778 struct walk_stmt_info *wi_p = (struct walk_stmt_info *) data;
779 copy_body_data *id = (copy_body_data *) wi_p->info;
780 tree fn = id->src_fn;
782 if (TREE_CODE (*tp) == SSA_NAME)
784 *tp = remap_ssa_name (*tp, id);
785 *walk_subtrees = 0;
786 return NULL;
788 else if (auto_var_in_fn_p (*tp, fn))
790 /* Local variables and labels need to be replaced by equivalent
791 variables. We don't want to copy static variables; there's
792 only one of those, no matter how many times we inline the
793 containing function. Similarly for globals from an outer
794 function. */
795 tree new_decl;
797 /* Remap the declaration. */
798 new_decl = remap_decl (*tp, id);
799 gcc_assert (new_decl);
800 /* Replace this variable with the copy. */
801 STRIP_TYPE_NOPS (new_decl);
802 /* ??? The C++ frontend uses void * pointer zero to initialize
803 any other type. This confuses the middle-end type verification.
804 As cloned bodies do not go through gimplification again the fixup
805 there doesn't trigger. */
806 if (TREE_CODE (new_decl) == INTEGER_CST
807 && !useless_type_conversion_p (TREE_TYPE (*tp), TREE_TYPE (new_decl)))
808 new_decl = fold_convert (TREE_TYPE (*tp), new_decl);
809 *tp = new_decl;
810 *walk_subtrees = 0;
812 else if (TREE_CODE (*tp) == STATEMENT_LIST)
813 gcc_unreachable ();
814 else if (TREE_CODE (*tp) == SAVE_EXPR)
815 gcc_unreachable ();
816 else if (TREE_CODE (*tp) == LABEL_DECL
817 && (!DECL_CONTEXT (*tp)
818 || decl_function_context (*tp) == id->src_fn))
819 /* These may need to be remapped for EH handling. */
820 *tp = remap_decl (*tp, id);
821 else if (TYPE_P (*tp))
822 /* Types may need remapping as well. */
823 *tp = remap_type (*tp, id);
824 else if (CONSTANT_CLASS_P (*tp))
826 /* If this is a constant, we have to copy the node iff the type
827 will be remapped. copy_tree_r will not copy a constant. */
828 tree new_type = remap_type (TREE_TYPE (*tp), id);
830 if (new_type == TREE_TYPE (*tp))
831 *walk_subtrees = 0;
833 else if (TREE_CODE (*tp) == INTEGER_CST)
834 *tp = build_int_cst_wide (new_type, TREE_INT_CST_LOW (*tp),
835 TREE_INT_CST_HIGH (*tp));
836 else
838 *tp = copy_node (*tp);
839 TREE_TYPE (*tp) = new_type;
842 else
844 /* Otherwise, just copy the node. Note that copy_tree_r already
845 knows not to copy VAR_DECLs, etc., so this is safe. */
847 /* We should never have TREE_BLOCK set on non-statements. */
848 if (EXPR_P (*tp))
849 gcc_assert (!TREE_BLOCK (*tp));
851 if (TREE_CODE (*tp) == MEM_REF)
853 tree ptr = TREE_OPERAND (*tp, 0);
854 tree type = remap_type (TREE_TYPE (*tp), id);
855 tree old = *tp;
857 /* We need to re-canonicalize MEM_REFs from inline substitutions
858 that can happen when a pointer argument is an ADDR_EXPR.
859 Recurse here manually to allow that. */
860 walk_tree (&ptr, remap_gimple_op_r, data, NULL);
861 *tp = fold_build2 (MEM_REF, type,
862 ptr, TREE_OPERAND (*tp, 1));
863 TREE_THIS_NOTRAP (*tp) = TREE_THIS_NOTRAP (old);
864 TREE_THIS_VOLATILE (*tp) = TREE_THIS_VOLATILE (old);
865 TREE_NO_WARNING (*tp) = TREE_NO_WARNING (old);
866 *walk_subtrees = 0;
867 return NULL;
870 /* Here is the "usual case". Copy this tree node, and then
871 tweak some special cases. */
872 copy_tree_r (tp, walk_subtrees, NULL);
874 if (TREE_CODE (*tp) != OMP_CLAUSE)
875 TREE_TYPE (*tp) = remap_type (TREE_TYPE (*tp), id);
877 /* Global variables we haven't seen yet need to go into referenced
878 vars. If not referenced from types only. */
879 if (gimple_in_ssa_p (cfun)
880 && TREE_CODE (*tp) == VAR_DECL
881 && id->remapping_type_depth == 0
882 && !processing_debug_stmt)
883 add_referenced_var (*tp);
885 if (TREE_CODE (*tp) == TARGET_EXPR && TREE_OPERAND (*tp, 3))
887 /* The copied TARGET_EXPR has never been expanded, even if the
888 original node was expanded already. */
889 TREE_OPERAND (*tp, 1) = TREE_OPERAND (*tp, 3);
890 TREE_OPERAND (*tp, 3) = NULL_TREE;
892 else if (TREE_CODE (*tp) == ADDR_EXPR)
894 /* Variable substitution need not be simple. In particular,
895 the MEM_REF substitution above. Make sure that
896 TREE_CONSTANT and friends are up-to-date. But make sure
897 to not improperly set TREE_BLOCK on some sub-expressions. */
898 int invariant = is_gimple_min_invariant (*tp);
899 tree block = id->block;
900 id->block = NULL_TREE;
901 walk_tree (&TREE_OPERAND (*tp, 0), remap_gimple_op_r, data, NULL);
902 id->block = block;
903 recompute_tree_invariant_for_addr_expr (*tp);
905 /* If this used to be invariant, but is not any longer,
906 then regimplification is probably needed. */
907 if (invariant && !is_gimple_min_invariant (*tp))
908 id->regimplify = true;
910 *walk_subtrees = 0;
914 /* Keep iterating. */
915 return NULL_TREE;
919 /* Called from copy_body_id via walk_tree. DATA is really a
920 `copy_body_data *'. */
922 tree
923 copy_tree_body_r (tree *tp, int *walk_subtrees, void *data)
925 copy_body_data *id = (copy_body_data *) data;
926 tree fn = id->src_fn;
927 tree new_block;
929 /* Begin by recognizing trees that we'll completely rewrite for the
930 inlining context. Our output for these trees is completely
931 different from out input (e.g. RETURN_EXPR is deleted, and morphs
932 into an edge). Further down, we'll handle trees that get
933 duplicated and/or tweaked. */
935 /* When requested, RETURN_EXPRs should be transformed to just the
936 contained MODIFY_EXPR. The branch semantics of the return will
937 be handled elsewhere by manipulating the CFG rather than a statement. */
938 if (TREE_CODE (*tp) == RETURN_EXPR && id->transform_return_to_modify)
940 tree assignment = TREE_OPERAND (*tp, 0);
942 /* If we're returning something, just turn that into an
943 assignment into the equivalent of the original RESULT_DECL.
944 If the "assignment" is just the result decl, the result
945 decl has already been set (e.g. a recent "foo (&result_decl,
946 ...)"); just toss the entire RETURN_EXPR. */
947 if (assignment && TREE_CODE (assignment) == MODIFY_EXPR)
949 /* Replace the RETURN_EXPR with (a copy of) the
950 MODIFY_EXPR hanging underneath. */
951 *tp = copy_node (assignment);
953 else /* Else the RETURN_EXPR returns no value. */
955 *tp = NULL;
956 return (tree) (void *)1;
959 else if (TREE_CODE (*tp) == SSA_NAME)
961 *tp = remap_ssa_name (*tp, id);
962 *walk_subtrees = 0;
963 return NULL;
966 /* Local variables and labels need to be replaced by equivalent
967 variables. We don't want to copy static variables; there's only
968 one of those, no matter how many times we inline the containing
969 function. Similarly for globals from an outer function. */
970 else if (auto_var_in_fn_p (*tp, fn))
972 tree new_decl;
974 /* Remap the declaration. */
975 new_decl = remap_decl (*tp, id);
976 gcc_assert (new_decl);
977 /* Replace this variable with the copy. */
978 STRIP_TYPE_NOPS (new_decl);
979 *tp = new_decl;
980 *walk_subtrees = 0;
982 else if (TREE_CODE (*tp) == STATEMENT_LIST)
983 copy_statement_list (tp);
984 else if (TREE_CODE (*tp) == SAVE_EXPR
985 || TREE_CODE (*tp) == TARGET_EXPR)
986 remap_save_expr (tp, id->decl_map, walk_subtrees);
987 else if (TREE_CODE (*tp) == LABEL_DECL
988 && (! DECL_CONTEXT (*tp)
989 || decl_function_context (*tp) == id->src_fn))
990 /* These may need to be remapped for EH handling. */
991 *tp = remap_decl (*tp, id);
992 else if (TREE_CODE (*tp) == BIND_EXPR)
993 copy_bind_expr (tp, walk_subtrees, id);
994 /* Types may need remapping as well. */
995 else if (TYPE_P (*tp))
996 *tp = remap_type (*tp, id);
998 /* If this is a constant, we have to copy the node iff the type will be
999 remapped. copy_tree_r will not copy a constant. */
1000 else if (CONSTANT_CLASS_P (*tp))
1002 tree new_type = remap_type (TREE_TYPE (*tp), id);
1004 if (new_type == TREE_TYPE (*tp))
1005 *walk_subtrees = 0;
1007 else if (TREE_CODE (*tp) == INTEGER_CST)
1008 *tp = build_int_cst_wide (new_type, TREE_INT_CST_LOW (*tp),
1009 TREE_INT_CST_HIGH (*tp));
1010 else
1012 *tp = copy_node (*tp);
1013 TREE_TYPE (*tp) = new_type;
1017 /* Otherwise, just copy the node. Note that copy_tree_r already
1018 knows not to copy VAR_DECLs, etc., so this is safe. */
1019 else
1021 /* Here we handle trees that are not completely rewritten.
1022 First we detect some inlining-induced bogosities for
1023 discarding. */
1024 if (TREE_CODE (*tp) == MODIFY_EXPR
1025 && TREE_OPERAND (*tp, 0) == TREE_OPERAND (*tp, 1)
1026 && (auto_var_in_fn_p (TREE_OPERAND (*tp, 0), fn)))
1028 /* Some assignments VAR = VAR; don't generate any rtl code
1029 and thus don't count as variable modification. Avoid
1030 keeping bogosities like 0 = 0. */
1031 tree decl = TREE_OPERAND (*tp, 0), value;
1032 tree *n;
1034 n = (tree *) pointer_map_contains (id->decl_map, decl);
1035 if (n)
1037 value = *n;
1038 STRIP_TYPE_NOPS (value);
1039 if (TREE_CONSTANT (value) || TREE_READONLY (value))
1041 *tp = build_empty_stmt (EXPR_LOCATION (*tp));
1042 return copy_tree_body_r (tp, walk_subtrees, data);
1046 else if (TREE_CODE (*tp) == INDIRECT_REF)
1048 /* Get rid of *& from inline substitutions that can happen when a
1049 pointer argument is an ADDR_EXPR. */
1050 tree decl = TREE_OPERAND (*tp, 0);
1051 tree *n;
1053 n = (tree *) pointer_map_contains (id->decl_map, decl);
1054 if (n)
1056 tree new_tree;
1057 tree old;
1058 /* If we happen to get an ADDR_EXPR in n->value, strip
1059 it manually here as we'll eventually get ADDR_EXPRs
1060 which lie about their types pointed to. In this case
1061 build_fold_indirect_ref wouldn't strip the INDIRECT_REF,
1062 but we absolutely rely on that. As fold_indirect_ref
1063 does other useful transformations, try that first, though. */
1064 tree type = TREE_TYPE (TREE_TYPE (*n));
1065 if (id->do_not_unshare)
1066 new_tree = *n;
1067 else
1068 new_tree = unshare_expr (*n);
1069 old = *tp;
1070 *tp = gimple_fold_indirect_ref (new_tree);
1071 if (! *tp)
1073 if (TREE_CODE (new_tree) == ADDR_EXPR)
1075 *tp = fold_indirect_ref_1 (EXPR_LOCATION (new_tree),
1076 type, new_tree);
1077 /* ??? We should either assert here or build
1078 a VIEW_CONVERT_EXPR instead of blindly leaking
1079 incompatible types to our IL. */
1080 if (! *tp)
1081 *tp = TREE_OPERAND (new_tree, 0);
1083 else
1085 *tp = build1 (INDIRECT_REF, type, new_tree);
1086 TREE_THIS_VOLATILE (*tp) = TREE_THIS_VOLATILE (old);
1087 TREE_SIDE_EFFECTS (*tp) = TREE_SIDE_EFFECTS (old);
1088 TREE_READONLY (*tp) = TREE_READONLY (old);
1089 TREE_THIS_NOTRAP (*tp) = TREE_THIS_NOTRAP (old);
1092 *walk_subtrees = 0;
1093 return NULL;
1096 else if (TREE_CODE (*tp) == MEM_REF)
1098 /* We need to re-canonicalize MEM_REFs from inline substitutions
1099 that can happen when a pointer argument is an ADDR_EXPR. */
1100 tree decl = TREE_OPERAND (*tp, 0);
1101 tree *n;
1103 n = (tree *) pointer_map_contains (id->decl_map, decl);
1104 if (n)
1106 tree old = *tp;
1107 *tp = fold_build2 (MEM_REF, TREE_TYPE (*tp),
1108 unshare_expr (*n), TREE_OPERAND (*tp, 1));
1109 TREE_THIS_VOLATILE (*tp) = TREE_THIS_VOLATILE (old);
1110 TREE_NO_WARNING (*tp) = TREE_NO_WARNING (old);
1111 *walk_subtrees = 0;
1112 return NULL;
1116 /* Here is the "usual case". Copy this tree node, and then
1117 tweak some special cases. */
1118 copy_tree_r (tp, walk_subtrees, NULL);
1120 /* Global variables we haven't seen yet needs to go into referenced
1121 vars. If not referenced from types or debug stmts only. */
1122 if (gimple_in_ssa_p (cfun)
1123 && TREE_CODE (*tp) == VAR_DECL
1124 && id->remapping_type_depth == 0
1125 && !processing_debug_stmt)
1126 add_referenced_var (*tp);
1128 /* If EXPR has block defined, map it to newly constructed block.
1129 When inlining we want EXPRs without block appear in the block
1130 of function call if we are not remapping a type. */
1131 if (EXPR_P (*tp))
1133 new_block = id->remapping_type_depth == 0 ? id->block : NULL;
1134 if (TREE_BLOCK (*tp))
1136 tree *n;
1137 n = (tree *) pointer_map_contains (id->decl_map,
1138 TREE_BLOCK (*tp));
1139 gcc_assert (n || id->remapping_type_depth != 0);
1140 if (n)
1141 new_block = *n;
1143 TREE_BLOCK (*tp) = new_block;
1146 if (TREE_CODE (*tp) != OMP_CLAUSE)
1147 TREE_TYPE (*tp) = remap_type (TREE_TYPE (*tp), id);
1149 /* The copied TARGET_EXPR has never been expanded, even if the
1150 original node was expanded already. */
1151 if (TREE_CODE (*tp) == TARGET_EXPR && TREE_OPERAND (*tp, 3))
1153 TREE_OPERAND (*tp, 1) = TREE_OPERAND (*tp, 3);
1154 TREE_OPERAND (*tp, 3) = NULL_TREE;
1157 /* Variable substitution need not be simple. In particular, the
1158 INDIRECT_REF substitution above. Make sure that TREE_CONSTANT
1159 and friends are up-to-date. */
1160 else if (TREE_CODE (*tp) == ADDR_EXPR)
1162 int invariant = is_gimple_min_invariant (*tp);
1163 walk_tree (&TREE_OPERAND (*tp, 0), copy_tree_body_r, id, NULL);
1165 /* Handle the case where we substituted an INDIRECT_REF
1166 into the operand of the ADDR_EXPR. */
1167 if (TREE_CODE (TREE_OPERAND (*tp, 0)) == INDIRECT_REF)
1168 *tp = TREE_OPERAND (TREE_OPERAND (*tp, 0), 0);
1169 else
1170 recompute_tree_invariant_for_addr_expr (*tp);
1172 /* If this used to be invariant, but is not any longer,
1173 then regimplification is probably needed. */
1174 if (invariant && !is_gimple_min_invariant (*tp))
1175 id->regimplify = true;
1177 *walk_subtrees = 0;
1181 /* Keep iterating. */
1182 return NULL_TREE;
1185 /* Helper for remap_gimple_stmt. Given an EH region number for the
1186 source function, map that to the duplicate EH region number in
1187 the destination function. */
1189 static int
1190 remap_eh_region_nr (int old_nr, copy_body_data *id)
1192 eh_region old_r, new_r;
1193 void **slot;
1195 old_r = get_eh_region_from_number_fn (id->src_cfun, old_nr);
1196 slot = pointer_map_contains (id->eh_map, old_r);
1197 new_r = (eh_region) *slot;
1199 return new_r->index;
1202 /* Similar, but operate on INTEGER_CSTs. */
1204 static tree
1205 remap_eh_region_tree_nr (tree old_t_nr, copy_body_data *id)
1207 int old_nr, new_nr;
1209 old_nr = tree_low_cst (old_t_nr, 0);
1210 new_nr = remap_eh_region_nr (old_nr, id);
1212 return build_int_cst (integer_type_node, new_nr);
1215 /* Helper for copy_bb. Remap statement STMT using the inlining
1216 information in ID. Return the new statement copy. */
1218 static gimple
1219 remap_gimple_stmt (gimple stmt, copy_body_data *id)
1221 gimple copy = NULL;
1222 struct walk_stmt_info wi;
1223 tree new_block;
1224 bool skip_first = false;
1226 /* Begin by recognizing trees that we'll completely rewrite for the
1227 inlining context. Our output for these trees is completely
1228 different from out input (e.g. RETURN_EXPR is deleted, and morphs
1229 into an edge). Further down, we'll handle trees that get
1230 duplicated and/or tweaked. */
1232 /* When requested, GIMPLE_RETURNs should be transformed to just the
1233 contained GIMPLE_ASSIGN. The branch semantics of the return will
1234 be handled elsewhere by manipulating the CFG rather than the
1235 statement. */
1236 if (gimple_code (stmt) == GIMPLE_RETURN && id->transform_return_to_modify)
1238 tree retval = gimple_return_retval (stmt);
1240 /* If we're returning something, just turn that into an
1241 assignment into the equivalent of the original RESULT_DECL.
1242 If RETVAL is just the result decl, the result decl has
1243 already been set (e.g. a recent "foo (&result_decl, ...)");
1244 just toss the entire GIMPLE_RETURN. */
1245 if (retval
1246 && (TREE_CODE (retval) != RESULT_DECL
1247 && (TREE_CODE (retval) != SSA_NAME
1248 || TREE_CODE (SSA_NAME_VAR (retval)) != RESULT_DECL)))
1250 copy = gimple_build_assign (id->retvar, retval);
1251 /* id->retvar is already substituted. Skip it on later remapping. */
1252 skip_first = true;
1254 else
1255 return gimple_build_nop ();
1257 else if (gimple_has_substatements (stmt))
1259 gimple_seq s1, s2;
1261 /* When cloning bodies from the C++ front end, we will be handed bodies
1262 in High GIMPLE form. Handle here all the High GIMPLE statements that
1263 have embedded statements. */
1264 switch (gimple_code (stmt))
1266 case GIMPLE_BIND:
1267 copy = copy_gimple_bind (stmt, id);
1268 break;
1270 case GIMPLE_CATCH:
1271 s1 = remap_gimple_seq (gimple_catch_handler (stmt), id);
1272 copy = gimple_build_catch (gimple_catch_types (stmt), s1);
1273 break;
1275 case GIMPLE_EH_FILTER:
1276 s1 = remap_gimple_seq (gimple_eh_filter_failure (stmt), id);
1277 copy = gimple_build_eh_filter (gimple_eh_filter_types (stmt), s1);
1278 break;
1280 case GIMPLE_TRY:
1281 s1 = remap_gimple_seq (gimple_try_eval (stmt), id);
1282 s2 = remap_gimple_seq (gimple_try_cleanup (stmt), id);
1283 copy = gimple_build_try (s1, s2, gimple_try_kind (stmt));
1284 break;
1286 case GIMPLE_WITH_CLEANUP_EXPR:
1287 s1 = remap_gimple_seq (gimple_wce_cleanup (stmt), id);
1288 copy = gimple_build_wce (s1);
1289 break;
1291 case GIMPLE_OMP_PARALLEL:
1292 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1293 copy = gimple_build_omp_parallel
1294 (s1,
1295 gimple_omp_parallel_clauses (stmt),
1296 gimple_omp_parallel_child_fn (stmt),
1297 gimple_omp_parallel_data_arg (stmt));
1298 break;
1300 case GIMPLE_OMP_TASK:
1301 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1302 copy = gimple_build_omp_task
1303 (s1,
1304 gimple_omp_task_clauses (stmt),
1305 gimple_omp_task_child_fn (stmt),
1306 gimple_omp_task_data_arg (stmt),
1307 gimple_omp_task_copy_fn (stmt),
1308 gimple_omp_task_arg_size (stmt),
1309 gimple_omp_task_arg_align (stmt));
1310 break;
1312 case GIMPLE_OMP_FOR:
1313 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1314 s2 = remap_gimple_seq (gimple_omp_for_pre_body (stmt), id);
1315 copy = gimple_build_omp_for (s1, gimple_omp_for_clauses (stmt),
1316 gimple_omp_for_collapse (stmt), s2);
1318 size_t i;
1319 for (i = 0; i < gimple_omp_for_collapse (stmt); i++)
1321 gimple_omp_for_set_index (copy, i,
1322 gimple_omp_for_index (stmt, i));
1323 gimple_omp_for_set_initial (copy, i,
1324 gimple_omp_for_initial (stmt, i));
1325 gimple_omp_for_set_final (copy, i,
1326 gimple_omp_for_final (stmt, i));
1327 gimple_omp_for_set_incr (copy, i,
1328 gimple_omp_for_incr (stmt, i));
1329 gimple_omp_for_set_cond (copy, i,
1330 gimple_omp_for_cond (stmt, i));
1333 break;
1335 case GIMPLE_OMP_MASTER:
1336 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1337 copy = gimple_build_omp_master (s1);
1338 break;
1340 case GIMPLE_OMP_ORDERED:
1341 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1342 copy = gimple_build_omp_ordered (s1);
1343 break;
1345 case GIMPLE_OMP_SECTION:
1346 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1347 copy = gimple_build_omp_section (s1);
1348 break;
1350 case GIMPLE_OMP_SECTIONS:
1351 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1352 copy = gimple_build_omp_sections
1353 (s1, gimple_omp_sections_clauses (stmt));
1354 break;
1356 case GIMPLE_OMP_SINGLE:
1357 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1358 copy = gimple_build_omp_single
1359 (s1, gimple_omp_single_clauses (stmt));
1360 break;
1362 case GIMPLE_OMP_CRITICAL:
1363 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1364 copy
1365 = gimple_build_omp_critical (s1, gimple_omp_critical_name (stmt));
1366 break;
1368 default:
1369 gcc_unreachable ();
1372 else
1374 if (gimple_assign_copy_p (stmt)
1375 && gimple_assign_lhs (stmt) == gimple_assign_rhs1 (stmt)
1376 && auto_var_in_fn_p (gimple_assign_lhs (stmt), id->src_fn))
1378 /* Here we handle statements that are not completely rewritten.
1379 First we detect some inlining-induced bogosities for
1380 discarding. */
1382 /* Some assignments VAR = VAR; don't generate any rtl code
1383 and thus don't count as variable modification. Avoid
1384 keeping bogosities like 0 = 0. */
1385 tree decl = gimple_assign_lhs (stmt), value;
1386 tree *n;
1388 n = (tree *) pointer_map_contains (id->decl_map, decl);
1389 if (n)
1391 value = *n;
1392 STRIP_TYPE_NOPS (value);
1393 if (TREE_CONSTANT (value) || TREE_READONLY (value))
1394 return gimple_build_nop ();
1398 if (gimple_debug_bind_p (stmt))
1400 copy = gimple_build_debug_bind (gimple_debug_bind_get_var (stmt),
1401 gimple_debug_bind_get_value (stmt),
1402 stmt);
1403 VEC_safe_push (gimple, heap, id->debug_stmts, copy);
1404 return copy;
1406 if (gimple_debug_source_bind_p (stmt))
1408 copy = gimple_build_debug_source_bind
1409 (gimple_debug_source_bind_get_var (stmt),
1410 gimple_debug_source_bind_get_value (stmt), stmt);
1411 VEC_safe_push (gimple, heap, id->debug_stmts, copy);
1412 return copy;
1415 /* Create a new deep copy of the statement. */
1416 copy = gimple_copy (stmt);
1418 /* Remap the region numbers for __builtin_eh_{pointer,filter},
1419 RESX and EH_DISPATCH. */
1420 if (id->eh_map)
1421 switch (gimple_code (copy))
1423 case GIMPLE_CALL:
1425 tree r, fndecl = gimple_call_fndecl (copy);
1426 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
1427 switch (DECL_FUNCTION_CODE (fndecl))
1429 case BUILT_IN_EH_COPY_VALUES:
1430 r = gimple_call_arg (copy, 1);
1431 r = remap_eh_region_tree_nr (r, id);
1432 gimple_call_set_arg (copy, 1, r);
1433 /* FALLTHRU */
1435 case BUILT_IN_EH_POINTER:
1436 case BUILT_IN_EH_FILTER:
1437 r = gimple_call_arg (copy, 0);
1438 r = remap_eh_region_tree_nr (r, id);
1439 gimple_call_set_arg (copy, 0, r);
1440 break;
1442 default:
1443 break;
1446 /* Reset alias info if we didn't apply measures to
1447 keep it valid over inlining by setting DECL_PT_UID. */
1448 if (!id->src_cfun->gimple_df
1449 || !id->src_cfun->gimple_df->ipa_pta)
1450 gimple_call_reset_alias_info (copy);
1452 break;
1454 case GIMPLE_RESX:
1456 int r = gimple_resx_region (copy);
1457 r = remap_eh_region_nr (r, id);
1458 gimple_resx_set_region (copy, r);
1460 break;
1462 case GIMPLE_EH_DISPATCH:
1464 int r = gimple_eh_dispatch_region (copy);
1465 r = remap_eh_region_nr (r, id);
1466 gimple_eh_dispatch_set_region (copy, r);
1468 break;
1470 default:
1471 break;
1475 /* If STMT has a block defined, map it to the newly constructed
1476 block. When inlining we want statements without a block to
1477 appear in the block of the function call. */
1478 new_block = id->block;
1479 if (gimple_block (copy))
1481 tree *n;
1482 n = (tree *) pointer_map_contains (id->decl_map, gimple_block (copy));
1483 gcc_assert (n);
1484 new_block = *n;
1487 gimple_set_block (copy, new_block);
1489 if (gimple_debug_bind_p (copy) || gimple_debug_source_bind_p (copy))
1490 return copy;
1492 /* Remap all the operands in COPY. */
1493 memset (&wi, 0, sizeof (wi));
1494 wi.info = id;
1495 if (skip_first)
1496 walk_tree (gimple_op_ptr (copy, 1), remap_gimple_op_r, &wi, NULL);
1497 else
1498 walk_gimple_op (copy, remap_gimple_op_r, &wi);
1500 /* Clear the copied virtual operands. We are not remapping them here
1501 but are going to recreate them from scratch. */
1502 if (gimple_has_mem_ops (copy))
1504 gimple_set_vdef (copy, NULL_TREE);
1505 gimple_set_vuse (copy, NULL_TREE);
1508 return copy;
1512 /* Copy basic block, scale profile accordingly. Edges will be taken care of
1513 later */
1515 static basic_block
1516 copy_bb (copy_body_data *id, basic_block bb, int frequency_scale,
1517 gcov_type count_scale)
1519 gimple_stmt_iterator gsi, copy_gsi, seq_gsi;
1520 basic_block copy_basic_block;
1521 tree decl;
1522 gcov_type freq;
1523 basic_block prev;
1525 /* Search for previous copied basic block. */
1526 prev = bb->prev_bb;
1527 while (!prev->aux)
1528 prev = prev->prev_bb;
1530 /* create_basic_block() will append every new block to
1531 basic_block_info automatically. */
1532 copy_basic_block = create_basic_block (NULL, (void *) 0,
1533 (basic_block) prev->aux);
1534 copy_basic_block->count = bb->count * count_scale / REG_BR_PROB_BASE;
1536 /* We are going to rebuild frequencies from scratch. These values
1537 have just small importance to drive canonicalize_loop_headers. */
1538 freq = ((gcov_type)bb->frequency * frequency_scale / REG_BR_PROB_BASE);
1540 /* We recompute frequencies after inlining, so this is quite safe. */
1541 if (freq > BB_FREQ_MAX)
1542 freq = BB_FREQ_MAX;
1543 copy_basic_block->frequency = freq;
1545 copy_gsi = gsi_start_bb (copy_basic_block);
1547 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1549 gimple stmt = gsi_stmt (gsi);
1550 gimple orig_stmt = stmt;
1552 id->regimplify = false;
1553 stmt = remap_gimple_stmt (stmt, id);
1554 if (gimple_nop_p (stmt))
1555 continue;
1557 gimple_duplicate_stmt_histograms (cfun, stmt, id->src_cfun, orig_stmt);
1558 seq_gsi = copy_gsi;
1560 /* With return slot optimization we can end up with
1561 non-gimple (foo *)&this->m, fix that here. */
1562 if (is_gimple_assign (stmt)
1563 && gimple_assign_rhs_code (stmt) == NOP_EXPR
1564 && !is_gimple_val (gimple_assign_rhs1 (stmt)))
1566 tree new_rhs;
1567 new_rhs = force_gimple_operand_gsi (&seq_gsi,
1568 gimple_assign_rhs1 (stmt),
1569 true, NULL, false,
1570 GSI_CONTINUE_LINKING);
1571 gimple_assign_set_rhs1 (stmt, new_rhs);
1572 id->regimplify = false;
1575 gsi_insert_after (&seq_gsi, stmt, GSI_NEW_STMT);
1577 if (id->regimplify)
1578 gimple_regimplify_operands (stmt, &seq_gsi);
1580 /* If copy_basic_block has been empty at the start of this iteration,
1581 call gsi_start_bb again to get at the newly added statements. */
1582 if (gsi_end_p (copy_gsi))
1583 copy_gsi = gsi_start_bb (copy_basic_block);
1584 else
1585 gsi_next (&copy_gsi);
1587 /* Process the new statement. The call to gimple_regimplify_operands
1588 possibly turned the statement into multiple statements, we
1589 need to process all of them. */
1592 tree fn;
1594 stmt = gsi_stmt (copy_gsi);
1595 if (is_gimple_call (stmt)
1596 && gimple_call_va_arg_pack_p (stmt)
1597 && id->gimple_call)
1599 /* __builtin_va_arg_pack () should be replaced by
1600 all arguments corresponding to ... in the caller. */
1601 tree p;
1602 gimple new_call;
1603 VEC(tree, heap) *argarray;
1604 size_t nargs = gimple_call_num_args (id->gimple_call);
1605 size_t n;
1607 for (p = DECL_ARGUMENTS (id->src_fn); p; p = DECL_CHAIN (p))
1608 nargs--;
1610 /* Create the new array of arguments. */
1611 n = nargs + gimple_call_num_args (stmt);
1612 argarray = VEC_alloc (tree, heap, n);
1613 VEC_safe_grow (tree, heap, argarray, n);
1615 /* Copy all the arguments before '...' */
1616 memcpy (VEC_address (tree, argarray),
1617 gimple_call_arg_ptr (stmt, 0),
1618 gimple_call_num_args (stmt) * sizeof (tree));
1620 /* Append the arguments passed in '...' */
1621 memcpy (VEC_address(tree, argarray) + gimple_call_num_args (stmt),
1622 gimple_call_arg_ptr (id->gimple_call, 0)
1623 + (gimple_call_num_args (id->gimple_call) - nargs),
1624 nargs * sizeof (tree));
1626 new_call = gimple_build_call_vec (gimple_call_fn (stmt),
1627 argarray);
1629 VEC_free (tree, heap, argarray);
1631 /* Copy all GIMPLE_CALL flags, location and block, except
1632 GF_CALL_VA_ARG_PACK. */
1633 gimple_call_copy_flags (new_call, stmt);
1634 gimple_call_set_va_arg_pack (new_call, false);
1635 gimple_set_location (new_call, gimple_location (stmt));
1636 gimple_set_block (new_call, gimple_block (stmt));
1637 gimple_call_set_lhs (new_call, gimple_call_lhs (stmt));
1639 gsi_replace (&copy_gsi, new_call, false);
1640 stmt = new_call;
1642 else if (is_gimple_call (stmt)
1643 && id->gimple_call
1644 && (decl = gimple_call_fndecl (stmt))
1645 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
1646 && DECL_FUNCTION_CODE (decl) == BUILT_IN_VA_ARG_PACK_LEN)
1648 /* __builtin_va_arg_pack_len () should be replaced by
1649 the number of anonymous arguments. */
1650 size_t nargs = gimple_call_num_args (id->gimple_call);
1651 tree count, p;
1652 gimple new_stmt;
1654 for (p = DECL_ARGUMENTS (id->src_fn); p; p = DECL_CHAIN (p))
1655 nargs--;
1657 count = build_int_cst (integer_type_node, nargs);
1658 new_stmt = gimple_build_assign (gimple_call_lhs (stmt), count);
1659 gsi_replace (&copy_gsi, new_stmt, false);
1660 stmt = new_stmt;
1663 /* Statements produced by inlining can be unfolded, especially
1664 when we constant propagated some operands. We can't fold
1665 them right now for two reasons:
1666 1) folding require SSA_NAME_DEF_STMTs to be correct
1667 2) we can't change function calls to builtins.
1668 So we just mark statement for later folding. We mark
1669 all new statements, instead just statements that has changed
1670 by some nontrivial substitution so even statements made
1671 foldable indirectly are updated. If this turns out to be
1672 expensive, copy_body can be told to watch for nontrivial
1673 changes. */
1674 if (id->statements_to_fold)
1675 pointer_set_insert (id->statements_to_fold, stmt);
1677 /* We're duplicating a CALL_EXPR. Find any corresponding
1678 callgraph edges and update or duplicate them. */
1679 if (is_gimple_call (stmt))
1681 struct cgraph_edge *edge;
1682 int flags;
1684 switch (id->transform_call_graph_edges)
1686 case CB_CGE_DUPLICATE:
1687 edge = cgraph_edge (id->src_node, orig_stmt);
1688 if (edge)
1690 int edge_freq = edge->frequency;
1691 edge = cgraph_clone_edge (edge, id->dst_node, stmt,
1692 gimple_uid (stmt),
1693 REG_BR_PROB_BASE, CGRAPH_FREQ_BASE,
1694 true);
1695 /* We could also just rescale the frequency, but
1696 doing so would introduce roundoff errors and make
1697 verifier unhappy. */
1698 edge->frequency
1699 = compute_call_stmt_bb_frequency (id->dst_node->decl,
1700 copy_basic_block);
1701 if (dump_file
1702 && profile_status_for_function (cfun) != PROFILE_ABSENT
1703 && (edge_freq > edge->frequency + 10
1704 || edge_freq < edge->frequency - 10))
1706 fprintf (dump_file, "Edge frequency estimated by "
1707 "cgraph %i diverge from inliner's estimate %i\n",
1708 edge_freq,
1709 edge->frequency);
1710 fprintf (dump_file,
1711 "Orig bb: %i, orig bb freq %i, new bb freq %i\n",
1712 bb->index,
1713 bb->frequency,
1714 copy_basic_block->frequency);
1716 stmt = cgraph_redirect_edge_call_stmt_to_callee (edge);
1718 break;
1720 case CB_CGE_MOVE_CLONES:
1721 cgraph_set_call_stmt_including_clones (id->dst_node,
1722 orig_stmt, stmt);
1723 edge = cgraph_edge (id->dst_node, stmt);
1724 break;
1726 case CB_CGE_MOVE:
1727 edge = cgraph_edge (id->dst_node, orig_stmt);
1728 if (edge)
1729 cgraph_set_call_stmt (edge, stmt);
1730 break;
1732 default:
1733 gcc_unreachable ();
1736 /* Constant propagation on argument done during inlining
1737 may create new direct call. Produce an edge for it. */
1738 if ((!edge
1739 || (edge->indirect_inlining_edge
1740 && id->transform_call_graph_edges == CB_CGE_MOVE_CLONES))
1741 && id->dst_node->analyzed
1742 && (fn = gimple_call_fndecl (stmt)) != NULL)
1744 struct cgraph_node *dest = cgraph_get_node (fn);
1746 /* We have missing edge in the callgraph. This can happen
1747 when previous inlining turned an indirect call into a
1748 direct call by constant propagating arguments or we are
1749 producing dead clone (for further cloning). In all
1750 other cases we hit a bug (incorrect node sharing is the
1751 most common reason for missing edges). */
1752 gcc_assert (dest->needed || !dest->analyzed
1753 || dest->address_taken
1754 || !id->src_node->analyzed
1755 || !id->dst_node->analyzed);
1756 if (id->transform_call_graph_edges == CB_CGE_MOVE_CLONES)
1757 cgraph_create_edge_including_clones
1758 (id->dst_node, dest, orig_stmt, stmt, bb->count,
1759 compute_call_stmt_bb_frequency (id->dst_node->decl,
1760 copy_basic_block),
1761 CIF_ORIGINALLY_INDIRECT_CALL);
1762 else
1763 cgraph_create_edge (id->dst_node, dest, stmt,
1764 bb->count,
1765 compute_call_stmt_bb_frequency
1766 (id->dst_node->decl, copy_basic_block))->inline_failed
1767 = CIF_ORIGINALLY_INDIRECT_CALL;
1768 if (dump_file)
1770 fprintf (dump_file, "Created new direct edge to %s\n",
1771 cgraph_node_name (dest));
1775 flags = gimple_call_flags (stmt);
1776 if (flags & ECF_MAY_BE_ALLOCA)
1777 cfun->calls_alloca = true;
1778 if (flags & ECF_RETURNS_TWICE)
1779 cfun->calls_setjmp = true;
1782 maybe_duplicate_eh_stmt_fn (cfun, stmt, id->src_cfun, orig_stmt,
1783 id->eh_map, id->eh_lp_nr);
1785 if (gimple_in_ssa_p (cfun) && !is_gimple_debug (stmt))
1787 ssa_op_iter i;
1788 tree def;
1790 find_new_referenced_vars (gsi_stmt (copy_gsi));
1791 FOR_EACH_SSA_TREE_OPERAND (def, stmt, i, SSA_OP_DEF)
1792 if (TREE_CODE (def) == SSA_NAME)
1793 SSA_NAME_DEF_STMT (def) = stmt;
1796 gsi_next (&copy_gsi);
1798 while (!gsi_end_p (copy_gsi));
1800 copy_gsi = gsi_last_bb (copy_basic_block);
1803 return copy_basic_block;
1806 /* Inserting Single Entry Multiple Exit region in SSA form into code in SSA
1807 form is quite easy, since dominator relationship for old basic blocks does
1808 not change.
1810 There is however exception where inlining might change dominator relation
1811 across EH edges from basic block within inlined functions destinating
1812 to landing pads in function we inline into.
1814 The function fills in PHI_RESULTs of such PHI nodes if they refer
1815 to gimple regs. Otherwise, the function mark PHI_RESULT of such
1816 PHI nodes for renaming. For non-gimple regs, renaming is safe: the
1817 EH edges are abnormal and SSA_NAME_OCCURS_IN_ABNORMAL_PHI must be
1818 set, and this means that there will be no overlapping live ranges
1819 for the underlying symbol.
1821 This might change in future if we allow redirecting of EH edges and
1822 we might want to change way build CFG pre-inlining to include
1823 all the possible edges then. */
1824 static void
1825 update_ssa_across_abnormal_edges (basic_block bb, basic_block ret_bb,
1826 bool can_throw, bool nonlocal_goto)
1828 edge e;
1829 edge_iterator ei;
1831 FOR_EACH_EDGE (e, ei, bb->succs)
1832 if (!e->dest->aux
1833 || ((basic_block)e->dest->aux)->index == ENTRY_BLOCK)
1835 gimple phi;
1836 gimple_stmt_iterator si;
1838 if (!nonlocal_goto)
1839 gcc_assert (e->flags & EDGE_EH);
1841 if (!can_throw)
1842 gcc_assert (!(e->flags & EDGE_EH));
1844 for (si = gsi_start_phis (e->dest); !gsi_end_p (si); gsi_next (&si))
1846 edge re;
1848 phi = gsi_stmt (si);
1850 /* There shouldn't be any PHI nodes in the ENTRY_BLOCK. */
1851 gcc_assert (!e->dest->aux);
1853 gcc_assert ((e->flags & EDGE_EH)
1854 || SSA_NAME_OCCURS_IN_ABNORMAL_PHI (PHI_RESULT (phi)));
1856 if (!is_gimple_reg (PHI_RESULT (phi)))
1858 mark_sym_for_renaming (SSA_NAME_VAR (PHI_RESULT (phi)));
1859 continue;
1862 re = find_edge (ret_bb, e->dest);
1863 gcc_assert (re);
1864 gcc_assert ((re->flags & (EDGE_EH | EDGE_ABNORMAL))
1865 == (e->flags & (EDGE_EH | EDGE_ABNORMAL)));
1867 SET_USE (PHI_ARG_DEF_PTR_FROM_EDGE (phi, e),
1868 USE_FROM_PTR (PHI_ARG_DEF_PTR_FROM_EDGE (phi, re)));
1874 /* Copy edges from BB into its copy constructed earlier, scale profile
1875 accordingly. Edges will be taken care of later. Assume aux
1876 pointers to point to the copies of each BB. Return true if any
1877 debug stmts are left after a statement that must end the basic block. */
1879 static bool
1880 copy_edges_for_bb (basic_block bb, gcov_type count_scale, basic_block ret_bb)
1882 basic_block new_bb = (basic_block) bb->aux;
1883 edge_iterator ei;
1884 edge old_edge;
1885 gimple_stmt_iterator si;
1886 int flags;
1887 bool need_debug_cleanup = false;
1889 /* Use the indices from the original blocks to create edges for the
1890 new ones. */
1891 FOR_EACH_EDGE (old_edge, ei, bb->succs)
1892 if (!(old_edge->flags & EDGE_EH))
1894 edge new_edge;
1896 flags = old_edge->flags;
1898 /* Return edges do get a FALLTHRU flag when the get inlined. */
1899 if (old_edge->dest->index == EXIT_BLOCK && !old_edge->flags
1900 && old_edge->dest->aux != EXIT_BLOCK_PTR)
1901 flags |= EDGE_FALLTHRU;
1902 new_edge = make_edge (new_bb, (basic_block) old_edge->dest->aux, flags);
1903 new_edge->count = old_edge->count * count_scale / REG_BR_PROB_BASE;
1904 new_edge->probability = old_edge->probability;
1907 if (bb->index == ENTRY_BLOCK || bb->index == EXIT_BLOCK)
1908 return false;
1910 for (si = gsi_start_bb (new_bb); !gsi_end_p (si);)
1912 gimple copy_stmt;
1913 bool can_throw, nonlocal_goto;
1915 copy_stmt = gsi_stmt (si);
1916 if (!is_gimple_debug (copy_stmt))
1918 update_stmt (copy_stmt);
1919 if (gimple_in_ssa_p (cfun))
1920 mark_symbols_for_renaming (copy_stmt);
1923 /* Do this before the possible split_block. */
1924 gsi_next (&si);
1926 /* If this tree could throw an exception, there are two
1927 cases where we need to add abnormal edge(s): the
1928 tree wasn't in a region and there is a "current
1929 region" in the caller; or the original tree had
1930 EH edges. In both cases split the block after the tree,
1931 and add abnormal edge(s) as needed; we need both
1932 those from the callee and the caller.
1933 We check whether the copy can throw, because the const
1934 propagation can change an INDIRECT_REF which throws
1935 into a COMPONENT_REF which doesn't. If the copy
1936 can throw, the original could also throw. */
1937 can_throw = stmt_can_throw_internal (copy_stmt);
1938 nonlocal_goto = stmt_can_make_abnormal_goto (copy_stmt);
1940 if (can_throw || nonlocal_goto)
1942 if (!gsi_end_p (si))
1944 while (!gsi_end_p (si) && is_gimple_debug (gsi_stmt (si)))
1945 gsi_next (&si);
1946 if (gsi_end_p (si))
1947 need_debug_cleanup = true;
1949 if (!gsi_end_p (si))
1950 /* Note that bb's predecessor edges aren't necessarily
1951 right at this point; split_block doesn't care. */
1953 edge e = split_block (new_bb, copy_stmt);
1955 new_bb = e->dest;
1956 new_bb->aux = e->src->aux;
1957 si = gsi_start_bb (new_bb);
1961 if (gimple_code (copy_stmt) == GIMPLE_EH_DISPATCH)
1962 make_eh_dispatch_edges (copy_stmt);
1963 else if (can_throw)
1964 make_eh_edges (copy_stmt);
1966 if (nonlocal_goto)
1967 make_abnormal_goto_edges (gimple_bb (copy_stmt), true);
1969 if ((can_throw || nonlocal_goto)
1970 && gimple_in_ssa_p (cfun))
1971 update_ssa_across_abnormal_edges (gimple_bb (copy_stmt), ret_bb,
1972 can_throw, nonlocal_goto);
1974 return need_debug_cleanup;
1977 /* Copy the PHIs. All blocks and edges are copied, some blocks
1978 was possibly split and new outgoing EH edges inserted.
1979 BB points to the block of original function and AUX pointers links
1980 the original and newly copied blocks. */
1982 static void
1983 copy_phis_for_bb (basic_block bb, copy_body_data *id)
1985 basic_block const new_bb = (basic_block) bb->aux;
1986 edge_iterator ei;
1987 gimple phi;
1988 gimple_stmt_iterator si;
1989 edge new_edge;
1990 bool inserted = false;
1992 for (si = gsi_start (phi_nodes (bb)); !gsi_end_p (si); gsi_next (&si))
1994 tree res, new_res;
1995 gimple new_phi;
1997 phi = gsi_stmt (si);
1998 res = PHI_RESULT (phi);
1999 new_res = res;
2000 if (is_gimple_reg (res))
2002 walk_tree (&new_res, copy_tree_body_r, id, NULL);
2003 SSA_NAME_DEF_STMT (new_res)
2004 = new_phi = create_phi_node (new_res, new_bb);
2005 FOR_EACH_EDGE (new_edge, ei, new_bb->preds)
2007 edge old_edge = find_edge ((basic_block) new_edge->src->aux, bb);
2008 tree arg;
2009 tree new_arg;
2010 tree block = id->block;
2011 edge_iterator ei2;
2013 /* When doing partial cloning, we allow PHIs on the entry block
2014 as long as all the arguments are the same. Find any input
2015 edge to see argument to copy. */
2016 if (!old_edge)
2017 FOR_EACH_EDGE (old_edge, ei2, bb->preds)
2018 if (!old_edge->src->aux)
2019 break;
2021 arg = PHI_ARG_DEF_FROM_EDGE (phi, old_edge);
2022 new_arg = arg;
2023 id->block = NULL_TREE;
2024 walk_tree (&new_arg, copy_tree_body_r, id, NULL);
2025 id->block = block;
2026 gcc_assert (new_arg);
2027 /* With return slot optimization we can end up with
2028 non-gimple (foo *)&this->m, fix that here. */
2029 if (TREE_CODE (new_arg) != SSA_NAME
2030 && TREE_CODE (new_arg) != FUNCTION_DECL
2031 && !is_gimple_val (new_arg))
2033 gimple_seq stmts = NULL;
2034 new_arg = force_gimple_operand (new_arg, &stmts, true, NULL);
2035 gsi_insert_seq_on_edge (new_edge, stmts);
2036 inserted = true;
2038 add_phi_arg (new_phi, new_arg, new_edge,
2039 gimple_phi_arg_location_from_edge (phi, old_edge));
2044 /* Commit the delayed edge insertions. */
2045 if (inserted)
2046 FOR_EACH_EDGE (new_edge, ei, new_bb->preds)
2047 gsi_commit_one_edge_insert (new_edge, NULL);
2051 /* Wrapper for remap_decl so it can be used as a callback. */
2053 static tree
2054 remap_decl_1 (tree decl, void *data)
2056 return remap_decl (decl, (copy_body_data *) data);
2059 /* Build struct function and associated datastructures for the new clone
2060 NEW_FNDECL to be build. CALLEE_FNDECL is the original */
2062 static void
2063 initialize_cfun (tree new_fndecl, tree callee_fndecl, gcov_type count)
2065 struct function *src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
2066 gcov_type count_scale;
2068 if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count)
2069 count_scale = (REG_BR_PROB_BASE * count
2070 / ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count);
2071 else
2072 count_scale = REG_BR_PROB_BASE;
2074 /* Register specific tree functions. */
2075 gimple_register_cfg_hooks ();
2077 /* Get clean struct function. */
2078 push_struct_function (new_fndecl);
2080 /* We will rebuild these, so just sanity check that they are empty. */
2081 gcc_assert (VALUE_HISTOGRAMS (cfun) == NULL);
2082 gcc_assert (cfun->local_decls == NULL);
2083 gcc_assert (cfun->cfg == NULL);
2084 gcc_assert (cfun->decl == new_fndecl);
2086 /* Copy items we preserve during cloning. */
2087 cfun->static_chain_decl = src_cfun->static_chain_decl;
2088 cfun->nonlocal_goto_save_area = src_cfun->nonlocal_goto_save_area;
2089 cfun->function_end_locus = src_cfun->function_end_locus;
2090 cfun->curr_properties = src_cfun->curr_properties;
2091 cfun->last_verified = src_cfun->last_verified;
2092 cfun->va_list_gpr_size = src_cfun->va_list_gpr_size;
2093 cfun->va_list_fpr_size = src_cfun->va_list_fpr_size;
2094 cfun->has_nonlocal_label = src_cfun->has_nonlocal_label;
2095 cfun->stdarg = src_cfun->stdarg;
2096 cfun->after_inlining = src_cfun->after_inlining;
2097 cfun->can_throw_non_call_exceptions
2098 = src_cfun->can_throw_non_call_exceptions;
2099 cfun->returns_struct = src_cfun->returns_struct;
2100 cfun->returns_pcc_struct = src_cfun->returns_pcc_struct;
2101 cfun->after_tree_profile = src_cfun->after_tree_profile;
2103 init_empty_tree_cfg ();
2105 profile_status_for_function (cfun) = profile_status_for_function (src_cfun);
2106 ENTRY_BLOCK_PTR->count =
2107 (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count * count_scale /
2108 REG_BR_PROB_BASE);
2109 ENTRY_BLOCK_PTR->frequency
2110 = ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency;
2111 EXIT_BLOCK_PTR->count =
2112 (EXIT_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count * count_scale /
2113 REG_BR_PROB_BASE);
2114 EXIT_BLOCK_PTR->frequency =
2115 EXIT_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency;
2116 if (src_cfun->eh)
2117 init_eh_for_function ();
2119 if (src_cfun->gimple_df)
2121 init_tree_ssa (cfun);
2122 cfun->gimple_df->in_ssa_p = true;
2123 init_ssa_operands ();
2125 pop_cfun ();
2128 /* Helper function for copy_cfg_body. Move debug stmts from the end
2129 of NEW_BB to the beginning of successor basic blocks when needed. If the
2130 successor has multiple predecessors, reset them, otherwise keep
2131 their value. */
2133 static void
2134 maybe_move_debug_stmts_to_successors (copy_body_data *id, basic_block new_bb)
2136 edge e;
2137 edge_iterator ei;
2138 gimple_stmt_iterator si = gsi_last_nondebug_bb (new_bb);
2140 if (gsi_end_p (si)
2141 || gsi_one_before_end_p (si)
2142 || !(stmt_can_throw_internal (gsi_stmt (si))
2143 || stmt_can_make_abnormal_goto (gsi_stmt (si))))
2144 return;
2146 FOR_EACH_EDGE (e, ei, new_bb->succs)
2148 gimple_stmt_iterator ssi = gsi_last_bb (new_bb);
2149 gimple_stmt_iterator dsi = gsi_after_labels (e->dest);
2150 while (is_gimple_debug (gsi_stmt (ssi)))
2152 gimple stmt = gsi_stmt (ssi), new_stmt;
2153 tree var;
2154 tree value;
2156 /* For the last edge move the debug stmts instead of copying
2157 them. */
2158 if (ei_one_before_end_p (ei))
2160 si = ssi;
2161 gsi_prev (&ssi);
2162 if (!single_pred_p (e->dest) && gimple_debug_bind_p (stmt))
2163 gimple_debug_bind_reset_value (stmt);
2164 gsi_remove (&si, false);
2165 gsi_insert_before (&dsi, stmt, GSI_SAME_STMT);
2166 continue;
2169 if (gimple_debug_bind_p (stmt))
2171 var = gimple_debug_bind_get_var (stmt);
2172 if (single_pred_p (e->dest))
2174 value = gimple_debug_bind_get_value (stmt);
2175 value = unshare_expr (value);
2177 else
2178 value = NULL_TREE;
2179 new_stmt = gimple_build_debug_bind (var, value, stmt);
2181 else if (gimple_debug_source_bind_p (stmt))
2183 var = gimple_debug_source_bind_get_var (stmt);
2184 value = gimple_debug_source_bind_get_value (stmt);
2185 new_stmt = gimple_build_debug_source_bind (var, value, stmt);
2187 else
2188 gcc_unreachable ();
2189 gsi_insert_before (&dsi, new_stmt, GSI_SAME_STMT);
2190 VEC_safe_push (gimple, heap, id->debug_stmts, new_stmt);
2191 gsi_prev (&ssi);
2196 /* Make a copy of the body of FN so that it can be inserted inline in
2197 another function. Walks FN via CFG, returns new fndecl. */
2199 static tree
2200 copy_cfg_body (copy_body_data * id, gcov_type count, int frequency_scale,
2201 basic_block entry_block_map, basic_block exit_block_map,
2202 bitmap blocks_to_copy, basic_block new_entry)
2204 tree callee_fndecl = id->src_fn;
2205 /* Original cfun for the callee, doesn't change. */
2206 struct function *src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
2207 struct function *cfun_to_copy;
2208 basic_block bb;
2209 tree new_fndecl = NULL;
2210 bool need_debug_cleanup = false;
2211 gcov_type count_scale;
2212 int last;
2213 int incoming_frequency = 0;
2214 gcov_type incoming_count = 0;
2216 if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count)
2217 count_scale = (REG_BR_PROB_BASE * count
2218 / ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count);
2219 else
2220 count_scale = REG_BR_PROB_BASE;
2222 /* Register specific tree functions. */
2223 gimple_register_cfg_hooks ();
2225 /* If we are inlining just region of the function, make sure to connect new entry
2226 to ENTRY_BLOCK_PTR. Since new entry can be part of loop, we must compute
2227 frequency and probability of ENTRY_BLOCK_PTR based on the frequencies and
2228 probabilities of edges incoming from nonduplicated region. */
2229 if (new_entry)
2231 edge e;
2232 edge_iterator ei;
2234 FOR_EACH_EDGE (e, ei, new_entry->preds)
2235 if (!e->src->aux)
2237 incoming_frequency += EDGE_FREQUENCY (e);
2238 incoming_count += e->count;
2240 incoming_count = incoming_count * count_scale / REG_BR_PROB_BASE;
2241 incoming_frequency
2242 = incoming_frequency * frequency_scale / REG_BR_PROB_BASE;
2243 ENTRY_BLOCK_PTR->count = incoming_count;
2244 ENTRY_BLOCK_PTR->frequency = incoming_frequency;
2247 /* Must have a CFG here at this point. */
2248 gcc_assert (ENTRY_BLOCK_PTR_FOR_FUNCTION
2249 (DECL_STRUCT_FUNCTION (callee_fndecl)));
2251 cfun_to_copy = id->src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
2253 ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy)->aux = entry_block_map;
2254 EXIT_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy)->aux = exit_block_map;
2255 entry_block_map->aux = ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy);
2256 exit_block_map->aux = EXIT_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy);
2258 /* Duplicate any exception-handling regions. */
2259 if (cfun->eh)
2260 id->eh_map = duplicate_eh_regions (cfun_to_copy, NULL, id->eh_lp_nr,
2261 remap_decl_1, id);
2263 /* Use aux pointers to map the original blocks to copy. */
2264 FOR_EACH_BB_FN (bb, cfun_to_copy)
2265 if (!blocks_to_copy || bitmap_bit_p (blocks_to_copy, bb->index))
2267 basic_block new_bb = copy_bb (id, bb, frequency_scale, count_scale);
2268 bb->aux = new_bb;
2269 new_bb->aux = bb;
2272 last = last_basic_block;
2274 /* Now that we've duplicated the blocks, duplicate their edges. */
2275 FOR_ALL_BB_FN (bb, cfun_to_copy)
2276 if (!blocks_to_copy
2277 || (bb->index > 0 && bitmap_bit_p (blocks_to_copy, bb->index)))
2278 need_debug_cleanup |= copy_edges_for_bb (bb, count_scale, exit_block_map);
2280 if (new_entry)
2282 edge e = make_edge (entry_block_map, (basic_block)new_entry->aux, EDGE_FALLTHRU);
2283 e->probability = REG_BR_PROB_BASE;
2284 e->count = incoming_count;
2287 if (gimple_in_ssa_p (cfun))
2288 FOR_ALL_BB_FN (bb, cfun_to_copy)
2289 if (!blocks_to_copy
2290 || (bb->index > 0 && bitmap_bit_p (blocks_to_copy, bb->index)))
2291 copy_phis_for_bb (bb, id);
2293 FOR_ALL_BB_FN (bb, cfun_to_copy)
2294 if (bb->aux)
2296 if (need_debug_cleanup
2297 && bb->index != ENTRY_BLOCK
2298 && bb->index != EXIT_BLOCK)
2299 maybe_move_debug_stmts_to_successors (id, (basic_block) bb->aux);
2300 ((basic_block)bb->aux)->aux = NULL;
2301 bb->aux = NULL;
2304 /* Zero out AUX fields of newly created block during EH edge
2305 insertion. */
2306 for (; last < last_basic_block; last++)
2308 if (need_debug_cleanup)
2309 maybe_move_debug_stmts_to_successors (id, BASIC_BLOCK (last));
2310 BASIC_BLOCK (last)->aux = NULL;
2312 entry_block_map->aux = NULL;
2313 exit_block_map->aux = NULL;
2315 if (id->eh_map)
2317 pointer_map_destroy (id->eh_map);
2318 id->eh_map = NULL;
2321 return new_fndecl;
2324 /* Copy the debug STMT using ID. We deal with these statements in a
2325 special way: if any variable in their VALUE expression wasn't
2326 remapped yet, we won't remap it, because that would get decl uids
2327 out of sync, causing codegen differences between -g and -g0. If
2328 this arises, we drop the VALUE expression altogether. */
2330 static void
2331 copy_debug_stmt (gimple stmt, copy_body_data *id)
2333 tree t, *n;
2334 struct walk_stmt_info wi;
2336 t = id->block;
2337 if (gimple_block (stmt))
2339 n = (tree *) pointer_map_contains (id->decl_map, gimple_block (stmt));
2340 if (n)
2341 t = *n;
2343 gimple_set_block (stmt, t);
2345 /* Remap all the operands in COPY. */
2346 memset (&wi, 0, sizeof (wi));
2347 wi.info = id;
2349 processing_debug_stmt = 1;
2351 if (gimple_debug_source_bind_p (stmt))
2352 t = gimple_debug_source_bind_get_var (stmt);
2353 else
2354 t = gimple_debug_bind_get_var (stmt);
2356 if (TREE_CODE (t) == PARM_DECL && id->debug_map
2357 && (n = (tree *) pointer_map_contains (id->debug_map, t)))
2359 gcc_assert (TREE_CODE (*n) == VAR_DECL);
2360 t = *n;
2362 else if (TREE_CODE (t) == VAR_DECL
2363 && !TREE_STATIC (t)
2364 && gimple_in_ssa_p (cfun)
2365 && !pointer_map_contains (id->decl_map, t)
2366 && !var_ann (t))
2367 /* T is a non-localized variable. */;
2368 else
2369 walk_tree (&t, remap_gimple_op_r, &wi, NULL);
2371 if (gimple_debug_bind_p (stmt))
2373 gimple_debug_bind_set_var (stmt, t);
2375 if (gimple_debug_bind_has_value_p (stmt))
2376 walk_tree (gimple_debug_bind_get_value_ptr (stmt),
2377 remap_gimple_op_r, &wi, NULL);
2379 /* Punt if any decl couldn't be remapped. */
2380 if (processing_debug_stmt < 0)
2381 gimple_debug_bind_reset_value (stmt);
2383 else if (gimple_debug_source_bind_p (stmt))
2385 gimple_debug_source_bind_set_var (stmt, t);
2386 walk_tree (gimple_debug_source_bind_get_value_ptr (stmt),
2387 remap_gimple_op_r, &wi, NULL);
2390 processing_debug_stmt = 0;
2392 update_stmt (stmt);
2393 if (gimple_in_ssa_p (cfun))
2394 mark_symbols_for_renaming (stmt);
2397 /* Process deferred debug stmts. In order to give values better odds
2398 of being successfully remapped, we delay the processing of debug
2399 stmts until all other stmts that might require remapping are
2400 processed. */
2402 static void
2403 copy_debug_stmts (copy_body_data *id)
2405 size_t i;
2406 gimple stmt;
2408 if (!id->debug_stmts)
2409 return;
2411 FOR_EACH_VEC_ELT (gimple, id->debug_stmts, i, stmt)
2412 copy_debug_stmt (stmt, id);
2414 VEC_free (gimple, heap, id->debug_stmts);
2417 /* Make a copy of the body of SRC_FN so that it can be inserted inline in
2418 another function. */
2420 static tree
2421 copy_tree_body (copy_body_data *id)
2423 tree fndecl = id->src_fn;
2424 tree body = DECL_SAVED_TREE (fndecl);
2426 walk_tree (&body, copy_tree_body_r, id, NULL);
2428 return body;
2431 /* Make a copy of the body of FN so that it can be inserted inline in
2432 another function. */
2434 static tree
2435 copy_body (copy_body_data *id, gcov_type count, int frequency_scale,
2436 basic_block entry_block_map, basic_block exit_block_map,
2437 bitmap blocks_to_copy, basic_block new_entry)
2439 tree fndecl = id->src_fn;
2440 tree body;
2442 /* If this body has a CFG, walk CFG and copy. */
2443 gcc_assert (ENTRY_BLOCK_PTR_FOR_FUNCTION (DECL_STRUCT_FUNCTION (fndecl)));
2444 body = copy_cfg_body (id, count, frequency_scale, entry_block_map, exit_block_map,
2445 blocks_to_copy, new_entry);
2446 copy_debug_stmts (id);
2448 return body;
2451 /* Return true if VALUE is an ADDR_EXPR of an automatic variable
2452 defined in function FN, or of a data member thereof. */
2454 static bool
2455 self_inlining_addr_expr (tree value, tree fn)
2457 tree var;
2459 if (TREE_CODE (value) != ADDR_EXPR)
2460 return false;
2462 var = get_base_address (TREE_OPERAND (value, 0));
2464 return var && auto_var_in_fn_p (var, fn);
2467 /* Append to BB a debug annotation that binds VAR to VALUE, inheriting
2468 lexical block and line number information from base_stmt, if given,
2469 or from the last stmt of the block otherwise. */
2471 static gimple
2472 insert_init_debug_bind (copy_body_data *id,
2473 basic_block bb, tree var, tree value,
2474 gimple base_stmt)
2476 gimple note;
2477 gimple_stmt_iterator gsi;
2478 tree tracked_var;
2480 if (!gimple_in_ssa_p (id->src_cfun))
2481 return NULL;
2483 if (!MAY_HAVE_DEBUG_STMTS)
2484 return NULL;
2486 tracked_var = target_for_debug_bind (var);
2487 if (!tracked_var)
2488 return NULL;
2490 if (bb)
2492 gsi = gsi_last_bb (bb);
2493 if (!base_stmt && !gsi_end_p (gsi))
2494 base_stmt = gsi_stmt (gsi);
2497 note = gimple_build_debug_bind (tracked_var, value, base_stmt);
2499 if (bb)
2501 if (!gsi_end_p (gsi))
2502 gsi_insert_after (&gsi, note, GSI_SAME_STMT);
2503 else
2504 gsi_insert_before (&gsi, note, GSI_SAME_STMT);
2507 return note;
2510 static void
2511 insert_init_stmt (copy_body_data *id, basic_block bb, gimple init_stmt)
2513 /* If VAR represents a zero-sized variable, it's possible that the
2514 assignment statement may result in no gimple statements. */
2515 if (init_stmt)
2517 gimple_stmt_iterator si = gsi_last_bb (bb);
2519 /* We can end up with init statements that store to a non-register
2520 from a rhs with a conversion. Handle that here by forcing the
2521 rhs into a temporary. gimple_regimplify_operands is not
2522 prepared to do this for us. */
2523 if (!is_gimple_debug (init_stmt)
2524 && !is_gimple_reg (gimple_assign_lhs (init_stmt))
2525 && is_gimple_reg_type (TREE_TYPE (gimple_assign_lhs (init_stmt)))
2526 && gimple_assign_rhs_class (init_stmt) == GIMPLE_UNARY_RHS)
2528 tree rhs = build1 (gimple_assign_rhs_code (init_stmt),
2529 gimple_expr_type (init_stmt),
2530 gimple_assign_rhs1 (init_stmt));
2531 rhs = force_gimple_operand_gsi (&si, rhs, true, NULL_TREE, false,
2532 GSI_NEW_STMT);
2533 gimple_assign_set_rhs_code (init_stmt, TREE_CODE (rhs));
2534 gimple_assign_set_rhs1 (init_stmt, rhs);
2536 gsi_insert_after (&si, init_stmt, GSI_NEW_STMT);
2537 gimple_regimplify_operands (init_stmt, &si);
2538 mark_symbols_for_renaming (init_stmt);
2540 if (!is_gimple_debug (init_stmt) && MAY_HAVE_DEBUG_STMTS)
2542 tree var, def = gimple_assign_lhs (init_stmt);
2544 if (TREE_CODE (def) == SSA_NAME)
2545 var = SSA_NAME_VAR (def);
2546 else
2547 var = def;
2549 insert_init_debug_bind (id, bb, var, def, init_stmt);
2554 /* Initialize parameter P with VALUE. If needed, produce init statement
2555 at the end of BB. When BB is NULL, we return init statement to be
2556 output later. */
2557 static gimple
2558 setup_one_parameter (copy_body_data *id, tree p, tree value, tree fn,
2559 basic_block bb, tree *vars)
2561 gimple init_stmt = NULL;
2562 tree var;
2563 tree rhs = value;
2564 tree def = (gimple_in_ssa_p (cfun)
2565 ? gimple_default_def (id->src_cfun, p) : NULL);
2567 if (value
2568 && value != error_mark_node
2569 && !useless_type_conversion_p (TREE_TYPE (p), TREE_TYPE (value)))
2571 if (fold_convertible_p (TREE_TYPE (p), value))
2572 rhs = fold_build1 (NOP_EXPR, TREE_TYPE (p), value);
2573 else
2574 /* ??? For valid (GIMPLE) programs we should not end up here.
2575 Still if something has gone wrong and we end up with truly
2576 mismatched types here, fall back to using a VIEW_CONVERT_EXPR
2577 to not leak invalid GIMPLE to the following passes. */
2578 rhs = fold_build1 (VIEW_CONVERT_EXPR, TREE_TYPE (p), value);
2581 /* Make an equivalent VAR_DECL. Note that we must NOT remap the type
2582 here since the type of this decl must be visible to the calling
2583 function. */
2584 var = copy_decl_to_var (p, id);
2586 /* We're actually using the newly-created var. */
2587 if (gimple_in_ssa_p (cfun) && TREE_CODE (var) == VAR_DECL)
2588 add_referenced_var (var);
2590 /* Declare this new variable. */
2591 DECL_CHAIN (var) = *vars;
2592 *vars = var;
2594 /* Make gimplifier happy about this variable. */
2595 DECL_SEEN_IN_BIND_EXPR_P (var) = 1;
2597 /* If the parameter is never assigned to, has no SSA_NAMEs created,
2598 we would not need to create a new variable here at all, if it
2599 weren't for debug info. Still, we can just use the argument
2600 value. */
2601 if (TREE_READONLY (p)
2602 && !TREE_ADDRESSABLE (p)
2603 && value && !TREE_SIDE_EFFECTS (value)
2604 && !def)
2606 /* We may produce non-gimple trees by adding NOPs or introduce
2607 invalid sharing when operand is not really constant.
2608 It is not big deal to prohibit constant propagation here as
2609 we will constant propagate in DOM1 pass anyway. */
2610 if (is_gimple_min_invariant (value)
2611 && useless_type_conversion_p (TREE_TYPE (p),
2612 TREE_TYPE (value))
2613 /* We have to be very careful about ADDR_EXPR. Make sure
2614 the base variable isn't a local variable of the inlined
2615 function, e.g., when doing recursive inlining, direct or
2616 mutually-recursive or whatever, which is why we don't
2617 just test whether fn == current_function_decl. */
2618 && ! self_inlining_addr_expr (value, fn))
2620 insert_decl_map (id, p, value);
2621 insert_debug_decl_map (id, p, var);
2622 return insert_init_debug_bind (id, bb, var, value, NULL);
2626 /* Register the VAR_DECL as the equivalent for the PARM_DECL;
2627 that way, when the PARM_DECL is encountered, it will be
2628 automatically replaced by the VAR_DECL. */
2629 insert_decl_map (id, p, var);
2631 /* Even if P was TREE_READONLY, the new VAR should not be.
2632 In the original code, we would have constructed a
2633 temporary, and then the function body would have never
2634 changed the value of P. However, now, we will be
2635 constructing VAR directly. The constructor body may
2636 change its value multiple times as it is being
2637 constructed. Therefore, it must not be TREE_READONLY;
2638 the back-end assumes that TREE_READONLY variable is
2639 assigned to only once. */
2640 if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (p)))
2641 TREE_READONLY (var) = 0;
2643 /* If there is no setup required and we are in SSA, take the easy route
2644 replacing all SSA names representing the function parameter by the
2645 SSA name passed to function.
2647 We need to construct map for the variable anyway as it might be used
2648 in different SSA names when parameter is set in function.
2650 Do replacement at -O0 for const arguments replaced by constant.
2651 This is important for builtin_constant_p and other construct requiring
2652 constant argument to be visible in inlined function body. */
2653 if (gimple_in_ssa_p (cfun) && rhs && def && is_gimple_reg (p)
2654 && (optimize
2655 || (TREE_READONLY (p)
2656 && is_gimple_min_invariant (rhs)))
2657 && (TREE_CODE (rhs) == SSA_NAME
2658 || is_gimple_min_invariant (rhs))
2659 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (def))
2661 insert_decl_map (id, def, rhs);
2662 return insert_init_debug_bind (id, bb, var, rhs, NULL);
2665 /* If the value of argument is never used, don't care about initializing
2666 it. */
2667 if (optimize && gimple_in_ssa_p (cfun) && !def && is_gimple_reg (p))
2669 gcc_assert (!value || !TREE_SIDE_EFFECTS (value));
2670 return insert_init_debug_bind (id, bb, var, rhs, NULL);
2673 /* Initialize this VAR_DECL from the equivalent argument. Convert
2674 the argument to the proper type in case it was promoted. */
2675 if (value)
2677 if (rhs == error_mark_node)
2679 insert_decl_map (id, p, var);
2680 return insert_init_debug_bind (id, bb, var, rhs, NULL);
2683 STRIP_USELESS_TYPE_CONVERSION (rhs);
2685 /* We want to use MODIFY_EXPR, not INIT_EXPR here so that we
2686 keep our trees in gimple form. */
2687 if (def && gimple_in_ssa_p (cfun) && is_gimple_reg (p))
2689 def = remap_ssa_name (def, id);
2690 init_stmt = gimple_build_assign (def, rhs);
2691 SSA_NAME_IS_DEFAULT_DEF (def) = 0;
2692 set_default_def (var, NULL);
2694 else
2695 init_stmt = gimple_build_assign (var, rhs);
2697 if (bb && init_stmt)
2698 insert_init_stmt (id, bb, init_stmt);
2700 return init_stmt;
2703 /* Generate code to initialize the parameters of the function at the
2704 top of the stack in ID from the GIMPLE_CALL STMT. */
2706 static void
2707 initialize_inlined_parameters (copy_body_data *id, gimple stmt,
2708 tree fn, basic_block bb)
2710 tree parms;
2711 size_t i;
2712 tree p;
2713 tree vars = NULL_TREE;
2714 tree static_chain = gimple_call_chain (stmt);
2716 /* Figure out what the parameters are. */
2717 parms = DECL_ARGUMENTS (fn);
2719 /* Loop through the parameter declarations, replacing each with an
2720 equivalent VAR_DECL, appropriately initialized. */
2721 for (p = parms, i = 0; p; p = DECL_CHAIN (p), i++)
2723 tree val;
2724 val = i < gimple_call_num_args (stmt) ? gimple_call_arg (stmt, i) : NULL;
2725 setup_one_parameter (id, p, val, fn, bb, &vars);
2727 /* After remapping parameters remap their types. This has to be done
2728 in a second loop over all parameters to appropriately remap
2729 variable sized arrays when the size is specified in a
2730 parameter following the array. */
2731 for (p = parms, i = 0; p; p = DECL_CHAIN (p), i++)
2733 tree *varp = (tree *) pointer_map_contains (id->decl_map, p);
2734 if (varp
2735 && TREE_CODE (*varp) == VAR_DECL)
2737 tree def = (gimple_in_ssa_p (cfun) && is_gimple_reg (p)
2738 ? gimple_default_def (id->src_cfun, p) : NULL);
2739 tree var = *varp;
2740 TREE_TYPE (var) = remap_type (TREE_TYPE (var), id);
2741 /* Also remap the default definition if it was remapped
2742 to the default definition of the parameter replacement
2743 by the parameter setup. */
2744 if (def)
2746 tree *defp = (tree *) pointer_map_contains (id->decl_map, def);
2747 if (defp
2748 && TREE_CODE (*defp) == SSA_NAME
2749 && SSA_NAME_VAR (*defp) == var)
2750 TREE_TYPE (*defp) = TREE_TYPE (var);
2755 /* Initialize the static chain. */
2756 p = DECL_STRUCT_FUNCTION (fn)->static_chain_decl;
2757 gcc_assert (fn != current_function_decl);
2758 if (p)
2760 /* No static chain? Seems like a bug in tree-nested.c. */
2761 gcc_assert (static_chain);
2763 setup_one_parameter (id, p, static_chain, fn, bb, &vars);
2766 declare_inline_vars (id->block, vars);
2770 /* Declare a return variable to replace the RESULT_DECL for the
2771 function we are calling. An appropriate DECL_STMT is returned.
2772 The USE_STMT is filled to contain a use of the declaration to
2773 indicate the return value of the function.
2775 RETURN_SLOT, if non-null is place where to store the result. It
2776 is set only for CALL_EXPR_RETURN_SLOT_OPT. MODIFY_DEST, if non-null,
2777 was the LHS of the MODIFY_EXPR to which this call is the RHS.
2779 The return value is a (possibly null) value that holds the result
2780 as seen by the caller. */
2782 static tree
2783 declare_return_variable (copy_body_data *id, tree return_slot, tree modify_dest,
2784 basic_block entry_bb)
2786 tree callee = id->src_fn;
2787 tree result = DECL_RESULT (callee);
2788 tree callee_type = TREE_TYPE (result);
2789 tree caller_type;
2790 tree var, use;
2792 /* Handle type-mismatches in the function declaration return type
2793 vs. the call expression. */
2794 if (modify_dest)
2795 caller_type = TREE_TYPE (modify_dest);
2796 else
2797 caller_type = TREE_TYPE (TREE_TYPE (callee));
2799 /* We don't need to do anything for functions that don't return
2800 anything. */
2801 if (!result || VOID_TYPE_P (callee_type))
2802 return NULL_TREE;
2804 /* If there was a return slot, then the return value is the
2805 dereferenced address of that object. */
2806 if (return_slot)
2808 /* The front end shouldn't have used both return_slot and
2809 a modify expression. */
2810 gcc_assert (!modify_dest);
2811 if (DECL_BY_REFERENCE (result))
2813 tree return_slot_addr = build_fold_addr_expr (return_slot);
2814 STRIP_USELESS_TYPE_CONVERSION (return_slot_addr);
2816 /* We are going to construct *&return_slot and we can't do that
2817 for variables believed to be not addressable.
2819 FIXME: This check possibly can match, because values returned
2820 via return slot optimization are not believed to have address
2821 taken by alias analysis. */
2822 gcc_assert (TREE_CODE (return_slot) != SSA_NAME);
2823 var = return_slot_addr;
2825 else
2827 var = return_slot;
2828 gcc_assert (TREE_CODE (var) != SSA_NAME);
2829 TREE_ADDRESSABLE (var) |= TREE_ADDRESSABLE (result);
2831 if ((TREE_CODE (TREE_TYPE (result)) == COMPLEX_TYPE
2832 || TREE_CODE (TREE_TYPE (result)) == VECTOR_TYPE)
2833 && !DECL_GIMPLE_REG_P (result)
2834 && DECL_P (var))
2835 DECL_GIMPLE_REG_P (var) = 0;
2836 use = NULL;
2837 goto done;
2840 /* All types requiring non-trivial constructors should have been handled. */
2841 gcc_assert (!TREE_ADDRESSABLE (callee_type));
2843 /* Attempt to avoid creating a new temporary variable. */
2844 if (modify_dest
2845 && TREE_CODE (modify_dest) != SSA_NAME)
2847 bool use_it = false;
2849 /* We can't use MODIFY_DEST if there's type promotion involved. */
2850 if (!useless_type_conversion_p (callee_type, caller_type))
2851 use_it = false;
2853 /* ??? If we're assigning to a variable sized type, then we must
2854 reuse the destination variable, because we've no good way to
2855 create variable sized temporaries at this point. */
2856 else if (TREE_CODE (TYPE_SIZE_UNIT (caller_type)) != INTEGER_CST)
2857 use_it = true;
2859 /* If the callee cannot possibly modify MODIFY_DEST, then we can
2860 reuse it as the result of the call directly. Don't do this if
2861 it would promote MODIFY_DEST to addressable. */
2862 else if (TREE_ADDRESSABLE (result))
2863 use_it = false;
2864 else
2866 tree base_m = get_base_address (modify_dest);
2868 /* If the base isn't a decl, then it's a pointer, and we don't
2869 know where that's going to go. */
2870 if (!DECL_P (base_m))
2871 use_it = false;
2872 else if (is_global_var (base_m))
2873 use_it = false;
2874 else if ((TREE_CODE (TREE_TYPE (result)) == COMPLEX_TYPE
2875 || TREE_CODE (TREE_TYPE (result)) == VECTOR_TYPE)
2876 && !DECL_GIMPLE_REG_P (result)
2877 && DECL_GIMPLE_REG_P (base_m))
2878 use_it = false;
2879 else if (!TREE_ADDRESSABLE (base_m))
2880 use_it = true;
2883 if (use_it)
2885 var = modify_dest;
2886 use = NULL;
2887 goto done;
2891 gcc_assert (TREE_CODE (TYPE_SIZE_UNIT (callee_type)) == INTEGER_CST);
2893 var = copy_result_decl_to_var (result, id);
2894 if (gimple_in_ssa_p (cfun))
2895 add_referenced_var (var);
2897 DECL_SEEN_IN_BIND_EXPR_P (var) = 1;
2899 /* Do not have the rest of GCC warn about this variable as it should
2900 not be visible to the user. */
2901 TREE_NO_WARNING (var) = 1;
2903 declare_inline_vars (id->block, var);
2905 /* Build the use expr. If the return type of the function was
2906 promoted, convert it back to the expected type. */
2907 use = var;
2908 if (!useless_type_conversion_p (caller_type, TREE_TYPE (var)))
2909 use = fold_convert (caller_type, var);
2911 STRIP_USELESS_TYPE_CONVERSION (use);
2913 if (DECL_BY_REFERENCE (result))
2915 TREE_ADDRESSABLE (var) = 1;
2916 var = build_fold_addr_expr (var);
2919 done:
2920 /* Register the VAR_DECL as the equivalent for the RESULT_DECL; that
2921 way, when the RESULT_DECL is encountered, it will be
2922 automatically replaced by the VAR_DECL.
2924 When returning by reference, ensure that RESULT_DECL remaps to
2925 gimple_val. */
2926 if (DECL_BY_REFERENCE (result)
2927 && !is_gimple_val (var))
2929 tree temp = create_tmp_var (TREE_TYPE (result), "retvalptr");
2930 if (gimple_in_ssa_p (id->src_cfun))
2931 add_referenced_var (temp);
2932 insert_decl_map (id, result, temp);
2933 /* When RESULT_DECL is in SSA form, we need to use it's default_def
2934 SSA_NAME. */
2935 if (gimple_in_ssa_p (id->src_cfun) && gimple_default_def (id->src_cfun, result))
2936 temp = remap_ssa_name (gimple_default_def (id->src_cfun, result), id);
2937 insert_init_stmt (id, entry_bb, gimple_build_assign (temp, var));
2939 else
2940 insert_decl_map (id, result, var);
2942 /* Remember this so we can ignore it in remap_decls. */
2943 id->retvar = var;
2945 return use;
2948 /* Callback through walk_tree. Determine if a DECL_INITIAL makes reference
2949 to a local label. */
2951 static tree
2952 has_label_address_in_static_1 (tree *nodep, int *walk_subtrees, void *fnp)
2954 tree node = *nodep;
2955 tree fn = (tree) fnp;
2957 if (TREE_CODE (node) == LABEL_DECL && DECL_CONTEXT (node) == fn)
2958 return node;
2960 if (TYPE_P (node))
2961 *walk_subtrees = 0;
2963 return NULL_TREE;
2966 /* Determine if the function can be copied. If so return NULL. If
2967 not return a string describng the reason for failure. */
2969 static const char *
2970 copy_forbidden (struct function *fun, tree fndecl)
2972 const char *reason = fun->cannot_be_copied_reason;
2973 tree decl;
2974 unsigned ix;
2976 /* Only examine the function once. */
2977 if (fun->cannot_be_copied_set)
2978 return reason;
2980 /* We cannot copy a function that receives a non-local goto
2981 because we cannot remap the destination label used in the
2982 function that is performing the non-local goto. */
2983 /* ??? Actually, this should be possible, if we work at it.
2984 No doubt there's just a handful of places that simply
2985 assume it doesn't happen and don't substitute properly. */
2986 if (fun->has_nonlocal_label)
2988 reason = G_("function %q+F can never be copied "
2989 "because it receives a non-local goto");
2990 goto fail;
2993 FOR_EACH_LOCAL_DECL (fun, ix, decl)
2994 if (TREE_CODE (decl) == VAR_DECL
2995 && TREE_STATIC (decl)
2996 && !DECL_EXTERNAL (decl)
2997 && DECL_INITIAL (decl)
2998 && walk_tree_without_duplicates (&DECL_INITIAL (decl),
2999 has_label_address_in_static_1,
3000 fndecl))
3002 reason = G_("function %q+F can never be copied because it saves "
3003 "address of local label in a static variable");
3004 goto fail;
3007 fail:
3008 fun->cannot_be_copied_reason = reason;
3009 fun->cannot_be_copied_set = true;
3010 return reason;
3014 static const char *inline_forbidden_reason;
3016 /* A callback for walk_gimple_seq to handle statements. Returns non-null
3017 iff a function can not be inlined. Also sets the reason why. */
3019 static tree
3020 inline_forbidden_p_stmt (gimple_stmt_iterator *gsi, bool *handled_ops_p,
3021 struct walk_stmt_info *wip)
3023 tree fn = (tree) wip->info;
3024 tree t;
3025 gimple stmt = gsi_stmt (*gsi);
3027 switch (gimple_code (stmt))
3029 case GIMPLE_CALL:
3030 /* Refuse to inline alloca call unless user explicitly forced so as
3031 this may change program's memory overhead drastically when the
3032 function using alloca is called in loop. In GCC present in
3033 SPEC2000 inlining into schedule_block cause it to require 2GB of
3034 RAM instead of 256MB. Don't do so for alloca calls emitted for
3035 VLA objects as those can't cause unbounded growth (they're always
3036 wrapped inside stack_save/stack_restore regions. */
3037 if (gimple_alloca_call_p (stmt)
3038 && !gimple_call_alloca_for_var_p (stmt)
3039 && !lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)))
3041 inline_forbidden_reason
3042 = G_("function %q+F can never be inlined because it uses "
3043 "alloca (override using the always_inline attribute)");
3044 *handled_ops_p = true;
3045 return fn;
3048 t = gimple_call_fndecl (stmt);
3049 if (t == NULL_TREE)
3050 break;
3052 /* We cannot inline functions that call setjmp. */
3053 if (setjmp_call_p (t))
3055 inline_forbidden_reason
3056 = G_("function %q+F can never be inlined because it uses setjmp");
3057 *handled_ops_p = true;
3058 return t;
3061 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL)
3062 switch (DECL_FUNCTION_CODE (t))
3064 /* We cannot inline functions that take a variable number of
3065 arguments. */
3066 case BUILT_IN_VA_START:
3067 case BUILT_IN_NEXT_ARG:
3068 case BUILT_IN_VA_END:
3069 inline_forbidden_reason
3070 = G_("function %q+F can never be inlined because it "
3071 "uses variable argument lists");
3072 *handled_ops_p = true;
3073 return t;
3075 case BUILT_IN_LONGJMP:
3076 /* We can't inline functions that call __builtin_longjmp at
3077 all. The non-local goto machinery really requires the
3078 destination be in a different function. If we allow the
3079 function calling __builtin_longjmp to be inlined into the
3080 function calling __builtin_setjmp, Things will Go Awry. */
3081 inline_forbidden_reason
3082 = G_("function %q+F can never be inlined because "
3083 "it uses setjmp-longjmp exception handling");
3084 *handled_ops_p = true;
3085 return t;
3087 case BUILT_IN_NONLOCAL_GOTO:
3088 /* Similarly. */
3089 inline_forbidden_reason
3090 = G_("function %q+F can never be inlined because "
3091 "it uses non-local goto");
3092 *handled_ops_p = true;
3093 return t;
3095 case BUILT_IN_RETURN:
3096 case BUILT_IN_APPLY_ARGS:
3097 /* If a __builtin_apply_args caller would be inlined,
3098 it would be saving arguments of the function it has
3099 been inlined into. Similarly __builtin_return would
3100 return from the function the inline has been inlined into. */
3101 inline_forbidden_reason
3102 = G_("function %q+F can never be inlined because "
3103 "it uses __builtin_return or __builtin_apply_args");
3104 *handled_ops_p = true;
3105 return t;
3107 default:
3108 break;
3110 break;
3112 case GIMPLE_GOTO:
3113 t = gimple_goto_dest (stmt);
3115 /* We will not inline a function which uses computed goto. The
3116 addresses of its local labels, which may be tucked into
3117 global storage, are of course not constant across
3118 instantiations, which causes unexpected behavior. */
3119 if (TREE_CODE (t) != LABEL_DECL)
3121 inline_forbidden_reason
3122 = G_("function %q+F can never be inlined "
3123 "because it contains a computed goto");
3124 *handled_ops_p = true;
3125 return t;
3127 break;
3129 default:
3130 break;
3133 *handled_ops_p = false;
3134 return NULL_TREE;
3137 /* Return true if FNDECL is a function that cannot be inlined into
3138 another one. */
3140 static bool
3141 inline_forbidden_p (tree fndecl)
3143 struct function *fun = DECL_STRUCT_FUNCTION (fndecl);
3144 struct walk_stmt_info wi;
3145 struct pointer_set_t *visited_nodes;
3146 basic_block bb;
3147 bool forbidden_p = false;
3149 /* First check for shared reasons not to copy the code. */
3150 inline_forbidden_reason = copy_forbidden (fun, fndecl);
3151 if (inline_forbidden_reason != NULL)
3152 return true;
3154 /* Next, walk the statements of the function looking for
3155 constraucts we can't handle, or are non-optimal for inlining. */
3156 visited_nodes = pointer_set_create ();
3157 memset (&wi, 0, sizeof (wi));
3158 wi.info = (void *) fndecl;
3159 wi.pset = visited_nodes;
3161 FOR_EACH_BB_FN (bb, fun)
3163 gimple ret;
3164 gimple_seq seq = bb_seq (bb);
3165 ret = walk_gimple_seq (seq, inline_forbidden_p_stmt, NULL, &wi);
3166 forbidden_p = (ret != NULL);
3167 if (forbidden_p)
3168 break;
3171 pointer_set_destroy (visited_nodes);
3172 return forbidden_p;
3175 /* Returns nonzero if FN is a function that does not have any
3176 fundamental inline blocking properties. */
3178 bool
3179 tree_inlinable_function_p (tree fn)
3181 bool inlinable = true;
3182 bool do_warning;
3183 tree always_inline;
3185 /* If we've already decided this function shouldn't be inlined,
3186 there's no need to check again. */
3187 if (DECL_UNINLINABLE (fn))
3188 return false;
3190 /* We only warn for functions declared `inline' by the user. */
3191 do_warning = (warn_inline
3192 && DECL_DECLARED_INLINE_P (fn)
3193 && !DECL_NO_INLINE_WARNING_P (fn)
3194 && !DECL_IN_SYSTEM_HEADER (fn));
3196 always_inline = lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn));
3198 if (flag_no_inline
3199 && always_inline == NULL)
3201 if (do_warning)
3202 warning (OPT_Winline, "function %q+F can never be inlined because it "
3203 "is suppressed using -fno-inline", fn);
3204 inlinable = false;
3207 else if (!function_attribute_inlinable_p (fn))
3209 if (do_warning)
3210 warning (OPT_Winline, "function %q+F can never be inlined because it "
3211 "uses attributes conflicting with inlining", fn);
3212 inlinable = false;
3215 else if (inline_forbidden_p (fn))
3217 /* See if we should warn about uninlinable functions. Previously,
3218 some of these warnings would be issued while trying to expand
3219 the function inline, but that would cause multiple warnings
3220 about functions that would for example call alloca. But since
3221 this a property of the function, just one warning is enough.
3222 As a bonus we can now give more details about the reason why a
3223 function is not inlinable. */
3224 if (always_inline)
3225 error (inline_forbidden_reason, fn);
3226 else if (do_warning)
3227 warning (OPT_Winline, inline_forbidden_reason, fn);
3229 inlinable = false;
3232 /* Squirrel away the result so that we don't have to check again. */
3233 DECL_UNINLINABLE (fn) = !inlinable;
3235 return inlinable;
3238 /* Estimate the cost of a memory move. Use machine dependent
3239 word size and take possible memcpy call into account. */
3242 estimate_move_cost (tree type)
3244 HOST_WIDE_INT size;
3246 gcc_assert (!VOID_TYPE_P (type));
3248 if (TREE_CODE (type) == VECTOR_TYPE)
3250 enum machine_mode inner = TYPE_MODE (TREE_TYPE (type));
3251 enum machine_mode simd
3252 = targetm.vectorize.preferred_simd_mode (inner);
3253 int simd_mode_size = GET_MODE_SIZE (simd);
3254 return ((GET_MODE_SIZE (TYPE_MODE (type)) + simd_mode_size - 1)
3255 / simd_mode_size);
3258 size = int_size_in_bytes (type);
3260 if (size < 0 || size > MOVE_MAX_PIECES * MOVE_RATIO (!optimize_size))
3261 /* Cost of a memcpy call, 3 arguments and the call. */
3262 return 4;
3263 else
3264 return ((size + MOVE_MAX_PIECES - 1) / MOVE_MAX_PIECES);
3267 /* Returns cost of operation CODE, according to WEIGHTS */
3269 static int
3270 estimate_operator_cost (enum tree_code code, eni_weights *weights,
3271 tree op1 ATTRIBUTE_UNUSED, tree op2)
3273 switch (code)
3275 /* These are "free" conversions, or their presumed cost
3276 is folded into other operations. */
3277 case RANGE_EXPR:
3278 CASE_CONVERT:
3279 case COMPLEX_EXPR:
3280 case PAREN_EXPR:
3281 case VIEW_CONVERT_EXPR:
3282 return 0;
3284 /* Assign cost of 1 to usual operations.
3285 ??? We may consider mapping RTL costs to this. */
3286 case COND_EXPR:
3287 case VEC_COND_EXPR:
3288 case VEC_PERM_EXPR:
3290 case PLUS_EXPR:
3291 case POINTER_PLUS_EXPR:
3292 case MINUS_EXPR:
3293 case MULT_EXPR:
3294 case FMA_EXPR:
3296 case ADDR_SPACE_CONVERT_EXPR:
3297 case FIXED_CONVERT_EXPR:
3298 case FIX_TRUNC_EXPR:
3300 case NEGATE_EXPR:
3301 case FLOAT_EXPR:
3302 case MIN_EXPR:
3303 case MAX_EXPR:
3304 case ABS_EXPR:
3306 case LSHIFT_EXPR:
3307 case RSHIFT_EXPR:
3308 case LROTATE_EXPR:
3309 case RROTATE_EXPR:
3310 case VEC_LSHIFT_EXPR:
3311 case VEC_RSHIFT_EXPR:
3313 case BIT_IOR_EXPR:
3314 case BIT_XOR_EXPR:
3315 case BIT_AND_EXPR:
3316 case BIT_NOT_EXPR:
3318 case TRUTH_ANDIF_EXPR:
3319 case TRUTH_ORIF_EXPR:
3320 case TRUTH_AND_EXPR:
3321 case TRUTH_OR_EXPR:
3322 case TRUTH_XOR_EXPR:
3323 case TRUTH_NOT_EXPR:
3325 case LT_EXPR:
3326 case LE_EXPR:
3327 case GT_EXPR:
3328 case GE_EXPR:
3329 case EQ_EXPR:
3330 case NE_EXPR:
3331 case ORDERED_EXPR:
3332 case UNORDERED_EXPR:
3334 case UNLT_EXPR:
3335 case UNLE_EXPR:
3336 case UNGT_EXPR:
3337 case UNGE_EXPR:
3338 case UNEQ_EXPR:
3339 case LTGT_EXPR:
3341 case CONJ_EXPR:
3343 case PREDECREMENT_EXPR:
3344 case PREINCREMENT_EXPR:
3345 case POSTDECREMENT_EXPR:
3346 case POSTINCREMENT_EXPR:
3348 case REALIGN_LOAD_EXPR:
3350 case REDUC_MAX_EXPR:
3351 case REDUC_MIN_EXPR:
3352 case REDUC_PLUS_EXPR:
3353 case WIDEN_SUM_EXPR:
3354 case WIDEN_MULT_EXPR:
3355 case DOT_PROD_EXPR:
3356 case WIDEN_MULT_PLUS_EXPR:
3357 case WIDEN_MULT_MINUS_EXPR:
3359 case VEC_WIDEN_MULT_HI_EXPR:
3360 case VEC_WIDEN_MULT_LO_EXPR:
3361 case VEC_UNPACK_HI_EXPR:
3362 case VEC_UNPACK_LO_EXPR:
3363 case VEC_UNPACK_FLOAT_HI_EXPR:
3364 case VEC_UNPACK_FLOAT_LO_EXPR:
3365 case VEC_PACK_TRUNC_EXPR:
3366 case VEC_PACK_SAT_EXPR:
3367 case VEC_PACK_FIX_TRUNC_EXPR:
3368 case VEC_EXTRACT_EVEN_EXPR:
3369 case VEC_EXTRACT_ODD_EXPR:
3370 case VEC_INTERLEAVE_HIGH_EXPR:
3371 case VEC_INTERLEAVE_LOW_EXPR:
3373 return 1;
3375 /* Few special cases of expensive operations. This is useful
3376 to avoid inlining on functions having too many of these. */
3377 case TRUNC_DIV_EXPR:
3378 case CEIL_DIV_EXPR:
3379 case FLOOR_DIV_EXPR:
3380 case ROUND_DIV_EXPR:
3381 case EXACT_DIV_EXPR:
3382 case TRUNC_MOD_EXPR:
3383 case CEIL_MOD_EXPR:
3384 case FLOOR_MOD_EXPR:
3385 case ROUND_MOD_EXPR:
3386 case RDIV_EXPR:
3387 if (TREE_CODE (op2) != INTEGER_CST)
3388 return weights->div_mod_cost;
3389 return 1;
3391 default:
3392 /* We expect a copy assignment with no operator. */
3393 gcc_assert (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS);
3394 return 0;
3399 /* Estimate number of instructions that will be created by expanding
3400 the statements in the statement sequence STMTS.
3401 WEIGHTS contains weights attributed to various constructs. */
3403 static
3404 int estimate_num_insns_seq (gimple_seq stmts, eni_weights *weights)
3406 int cost;
3407 gimple_stmt_iterator gsi;
3409 cost = 0;
3410 for (gsi = gsi_start (stmts); !gsi_end_p (gsi); gsi_next (&gsi))
3411 cost += estimate_num_insns (gsi_stmt (gsi), weights);
3413 return cost;
3417 /* Estimate number of instructions that will be created by expanding STMT.
3418 WEIGHTS contains weights attributed to various constructs. */
3421 estimate_num_insns (gimple stmt, eni_weights *weights)
3423 unsigned cost, i;
3424 enum gimple_code code = gimple_code (stmt);
3425 tree lhs;
3426 tree rhs;
3428 switch (code)
3430 case GIMPLE_ASSIGN:
3431 /* Try to estimate the cost of assignments. We have three cases to
3432 deal with:
3433 1) Simple assignments to registers;
3434 2) Stores to things that must live in memory. This includes
3435 "normal" stores to scalars, but also assignments of large
3436 structures, or constructors of big arrays;
3438 Let us look at the first two cases, assuming we have "a = b + C":
3439 <GIMPLE_ASSIGN <var_decl "a">
3440 <plus_expr <var_decl "b"> <constant C>>
3441 If "a" is a GIMPLE register, the assignment to it is free on almost
3442 any target, because "a" usually ends up in a real register. Hence
3443 the only cost of this expression comes from the PLUS_EXPR, and we
3444 can ignore the GIMPLE_ASSIGN.
3445 If "a" is not a GIMPLE register, the assignment to "a" will most
3446 likely be a real store, so the cost of the GIMPLE_ASSIGN is the cost
3447 of moving something into "a", which we compute using the function
3448 estimate_move_cost. */
3449 lhs = gimple_assign_lhs (stmt);
3450 rhs = gimple_assign_rhs1 (stmt);
3452 if (is_gimple_reg (lhs))
3453 cost = 0;
3454 else
3455 cost = estimate_move_cost (TREE_TYPE (lhs));
3457 if (!is_gimple_reg (rhs) && !is_gimple_min_invariant (rhs))
3458 cost += estimate_move_cost (TREE_TYPE (rhs));
3460 cost += estimate_operator_cost (gimple_assign_rhs_code (stmt), weights,
3461 gimple_assign_rhs1 (stmt),
3462 get_gimple_rhs_class (gimple_assign_rhs_code (stmt))
3463 == GIMPLE_BINARY_RHS
3464 ? gimple_assign_rhs2 (stmt) : NULL);
3465 break;
3467 case GIMPLE_COND:
3468 cost = 1 + estimate_operator_cost (gimple_cond_code (stmt), weights,
3469 gimple_op (stmt, 0),
3470 gimple_op (stmt, 1));
3471 break;
3473 case GIMPLE_SWITCH:
3474 /* Take into account cost of the switch + guess 2 conditional jumps for
3475 each case label.
3477 TODO: once the switch expansion logic is sufficiently separated, we can
3478 do better job on estimating cost of the switch. */
3479 if (weights->time_based)
3480 cost = floor_log2 (gimple_switch_num_labels (stmt)) * 2;
3481 else
3482 cost = gimple_switch_num_labels (stmt) * 2;
3483 break;
3485 case GIMPLE_CALL:
3487 tree decl = gimple_call_fndecl (stmt);
3488 struct cgraph_node *node;
3490 /* Do not special case builtins where we see the body.
3491 This just confuse inliner. */
3492 if (!decl || !(node = cgraph_get_node (decl)) || node->analyzed)
3494 /* For buitins that are likely expanded to nothing or
3495 inlined do not account operand costs. */
3496 else if (is_simple_builtin (decl))
3497 return 0;
3498 else if (is_inexpensive_builtin (decl))
3499 return weights->target_builtin_call_cost;
3500 else if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
3502 /* We canonicalize x * x to pow (x, 2.0) with -ffast-math, so
3503 specialize the cheap expansion we do here.
3504 ??? This asks for a more general solution. */
3505 switch (DECL_FUNCTION_CODE (decl))
3507 case BUILT_IN_POW:
3508 case BUILT_IN_POWF:
3509 case BUILT_IN_POWL:
3510 if (TREE_CODE (gimple_call_arg (stmt, 1)) == REAL_CST
3511 && REAL_VALUES_EQUAL
3512 (TREE_REAL_CST (gimple_call_arg (stmt, 1)), dconst2))
3513 return estimate_operator_cost (MULT_EXPR, weights,
3514 gimple_call_arg (stmt, 0),
3515 gimple_call_arg (stmt, 0));
3516 break;
3518 default:
3519 break;
3523 cost = weights->call_cost;
3524 if (gimple_call_lhs (stmt))
3525 cost += estimate_move_cost (TREE_TYPE (gimple_call_lhs (stmt)));
3526 for (i = 0; i < gimple_call_num_args (stmt); i++)
3528 tree arg = gimple_call_arg (stmt, i);
3529 cost += estimate_move_cost (TREE_TYPE (arg));
3531 break;
3534 case GIMPLE_RETURN:
3535 return weights->return_cost;
3537 case GIMPLE_GOTO:
3538 case GIMPLE_LABEL:
3539 case GIMPLE_NOP:
3540 case GIMPLE_PHI:
3541 case GIMPLE_PREDICT:
3542 case GIMPLE_DEBUG:
3543 return 0;
3545 case GIMPLE_ASM:
3546 return asm_str_count (gimple_asm_string (stmt));
3548 case GIMPLE_RESX:
3549 /* This is either going to be an external function call with one
3550 argument, or two register copy statements plus a goto. */
3551 return 2;
3553 case GIMPLE_EH_DISPATCH:
3554 /* ??? This is going to turn into a switch statement. Ideally
3555 we'd have a look at the eh region and estimate the number of
3556 edges involved. */
3557 return 10;
3559 case GIMPLE_BIND:
3560 return estimate_num_insns_seq (gimple_bind_body (stmt), weights);
3562 case GIMPLE_EH_FILTER:
3563 return estimate_num_insns_seq (gimple_eh_filter_failure (stmt), weights);
3565 case GIMPLE_CATCH:
3566 return estimate_num_insns_seq (gimple_catch_handler (stmt), weights);
3568 case GIMPLE_TRY:
3569 return (estimate_num_insns_seq (gimple_try_eval (stmt), weights)
3570 + estimate_num_insns_seq (gimple_try_cleanup (stmt), weights));
3572 /* OpenMP directives are generally very expensive. */
3574 case GIMPLE_OMP_RETURN:
3575 case GIMPLE_OMP_SECTIONS_SWITCH:
3576 case GIMPLE_OMP_ATOMIC_STORE:
3577 case GIMPLE_OMP_CONTINUE:
3578 /* ...except these, which are cheap. */
3579 return 0;
3581 case GIMPLE_OMP_ATOMIC_LOAD:
3582 return weights->omp_cost;
3584 case GIMPLE_OMP_FOR:
3585 return (weights->omp_cost
3586 + estimate_num_insns_seq (gimple_omp_body (stmt), weights)
3587 + estimate_num_insns_seq (gimple_omp_for_pre_body (stmt), weights));
3589 case GIMPLE_OMP_PARALLEL:
3590 case GIMPLE_OMP_TASK:
3591 case GIMPLE_OMP_CRITICAL:
3592 case GIMPLE_OMP_MASTER:
3593 case GIMPLE_OMP_ORDERED:
3594 case GIMPLE_OMP_SECTION:
3595 case GIMPLE_OMP_SECTIONS:
3596 case GIMPLE_OMP_SINGLE:
3597 return (weights->omp_cost
3598 + estimate_num_insns_seq (gimple_omp_body (stmt), weights));
3600 default:
3601 gcc_unreachable ();
3604 return cost;
3607 /* Estimate number of instructions that will be created by expanding
3608 function FNDECL. WEIGHTS contains weights attributed to various
3609 constructs. */
3612 estimate_num_insns_fn (tree fndecl, eni_weights *weights)
3614 struct function *my_function = DECL_STRUCT_FUNCTION (fndecl);
3615 gimple_stmt_iterator bsi;
3616 basic_block bb;
3617 int n = 0;
3619 gcc_assert (my_function && my_function->cfg);
3620 FOR_EACH_BB_FN (bb, my_function)
3622 for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
3623 n += estimate_num_insns (gsi_stmt (bsi), weights);
3626 return n;
3630 /* Initializes weights used by estimate_num_insns. */
3632 void
3633 init_inline_once (void)
3635 eni_size_weights.call_cost = 1;
3636 eni_size_weights.target_builtin_call_cost = 1;
3637 eni_size_weights.div_mod_cost = 1;
3638 eni_size_weights.omp_cost = 40;
3639 eni_size_weights.time_based = false;
3640 eni_size_weights.return_cost = 1;
3642 /* Estimating time for call is difficult, since we have no idea what the
3643 called function does. In the current uses of eni_time_weights,
3644 underestimating the cost does less harm than overestimating it, so
3645 we choose a rather small value here. */
3646 eni_time_weights.call_cost = 10;
3647 eni_time_weights.target_builtin_call_cost = 1;
3648 eni_time_weights.div_mod_cost = 10;
3649 eni_time_weights.omp_cost = 40;
3650 eni_time_weights.time_based = true;
3651 eni_time_weights.return_cost = 2;
3654 /* Estimate the number of instructions in a gimple_seq. */
3657 count_insns_seq (gimple_seq seq, eni_weights *weights)
3659 gimple_stmt_iterator gsi;
3660 int n = 0;
3661 for (gsi = gsi_start (seq); !gsi_end_p (gsi); gsi_next (&gsi))
3662 n += estimate_num_insns (gsi_stmt (gsi), weights);
3664 return n;
3668 /* Install new lexical TREE_BLOCK underneath 'current_block'. */
3670 static void
3671 prepend_lexical_block (tree current_block, tree new_block)
3673 BLOCK_CHAIN (new_block) = BLOCK_SUBBLOCKS (current_block);
3674 BLOCK_SUBBLOCKS (current_block) = new_block;
3675 BLOCK_SUPERCONTEXT (new_block) = current_block;
3678 /* Add local variables from CALLEE to CALLER. */
3680 static inline void
3681 add_local_variables (struct function *callee, struct function *caller,
3682 copy_body_data *id, bool check_var_ann)
3684 tree var;
3685 unsigned ix;
3687 FOR_EACH_LOCAL_DECL (callee, ix, var)
3688 if (TREE_STATIC (var) && !TREE_ASM_WRITTEN (var))
3690 if (!check_var_ann
3691 || (var_ann (var) && add_referenced_var (var)))
3692 add_local_decl (caller, var);
3694 else if (!can_be_nonlocal (var, id))
3696 tree new_var = remap_decl (var, id);
3698 /* Remap debug-expressions. */
3699 if (TREE_CODE (new_var) == VAR_DECL
3700 && DECL_DEBUG_EXPR_IS_FROM (new_var)
3701 && new_var != var)
3703 tree tem = DECL_DEBUG_EXPR (var);
3704 bool old_regimplify = id->regimplify;
3705 id->remapping_type_depth++;
3706 walk_tree (&tem, copy_tree_body_r, id, NULL);
3707 id->remapping_type_depth--;
3708 id->regimplify = old_regimplify;
3709 SET_DECL_DEBUG_EXPR (new_var, tem);
3711 add_local_decl (caller, new_var);
3715 /* If STMT is a GIMPLE_CALL, replace it with its inline expansion. */
3717 static bool
3718 expand_call_inline (basic_block bb, gimple stmt, copy_body_data *id)
3720 tree use_retvar;
3721 tree fn;
3722 struct pointer_map_t *st, *dst;
3723 tree return_slot;
3724 tree modify_dest;
3725 location_t saved_location;
3726 struct cgraph_edge *cg_edge;
3727 cgraph_inline_failed_t reason;
3728 basic_block return_block;
3729 edge e;
3730 gimple_stmt_iterator gsi, stmt_gsi;
3731 bool successfully_inlined = FALSE;
3732 bool purge_dead_abnormal_edges;
3734 /* Set input_location here so we get the right instantiation context
3735 if we call instantiate_decl from inlinable_function_p. */
3736 saved_location = input_location;
3737 if (gimple_has_location (stmt))
3738 input_location = gimple_location (stmt);
3740 /* From here on, we're only interested in CALL_EXPRs. */
3741 if (gimple_code (stmt) != GIMPLE_CALL)
3742 goto egress;
3744 cg_edge = cgraph_edge (id->dst_node, stmt);
3745 gcc_checking_assert (cg_edge);
3746 /* First, see if we can figure out what function is being called.
3747 If we cannot, then there is no hope of inlining the function. */
3748 if (cg_edge->indirect_unknown_callee)
3749 goto egress;
3750 fn = cg_edge->callee->decl;
3751 gcc_checking_assert (fn);
3753 /* If FN is a declaration of a function in a nested scope that was
3754 globally declared inline, we don't set its DECL_INITIAL.
3755 However, we can't blindly follow DECL_ABSTRACT_ORIGIN because the
3756 C++ front-end uses it for cdtors to refer to their internal
3757 declarations, that are not real functions. Fortunately those
3758 don't have trees to be saved, so we can tell by checking their
3759 gimple_body. */
3760 if (!DECL_INITIAL (fn)
3761 && DECL_ABSTRACT_ORIGIN (fn)
3762 && gimple_has_body_p (DECL_ABSTRACT_ORIGIN (fn)))
3763 fn = DECL_ABSTRACT_ORIGIN (fn);
3765 /* Don't try to inline functions that are not well-suited to inlining. */
3766 if (!cgraph_inline_p (cg_edge, &reason))
3768 /* If this call was originally indirect, we do not want to emit any
3769 inlining related warnings or sorry messages because there are no
3770 guarantees regarding those. */
3771 if (cg_edge->indirect_inlining_edge)
3772 goto egress;
3774 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn))
3775 /* Avoid warnings during early inline pass. */
3776 && cgraph_global_info_ready
3777 /* PR 20090218-1_0.c. Body can be provided by another module. */
3778 && (reason != CIF_BODY_NOT_AVAILABLE || !flag_generate_lto))
3780 error ("inlining failed in call to always_inline %q+F: %s", fn,
3781 cgraph_inline_failed_string (reason));
3782 error ("called from here");
3784 else if (warn_inline
3785 && DECL_DECLARED_INLINE_P (fn)
3786 && !DECL_NO_INLINE_WARNING_P (fn)
3787 && !DECL_IN_SYSTEM_HEADER (fn)
3788 && reason != CIF_UNSPECIFIED
3789 && !lookup_attribute ("noinline", DECL_ATTRIBUTES (fn))
3790 /* Do not warn about not inlined recursive calls. */
3791 && !cgraph_edge_recursive_p (cg_edge)
3792 /* Avoid warnings during early inline pass. */
3793 && cgraph_global_info_ready)
3795 warning (OPT_Winline, "inlining failed in call to %q+F: %s",
3796 fn, _(cgraph_inline_failed_string (reason)));
3797 warning (OPT_Winline, "called from here");
3799 goto egress;
3801 fn = cg_edge->callee->decl;
3803 #ifdef ENABLE_CHECKING
3804 if (cg_edge->callee->decl != id->dst_node->decl)
3805 verify_cgraph_node (cg_edge->callee);
3806 #endif
3808 /* We will be inlining this callee. */
3809 id->eh_lp_nr = lookup_stmt_eh_lp (stmt);
3811 /* Update the callers EH personality. */
3812 if (DECL_FUNCTION_PERSONALITY (cg_edge->callee->decl))
3813 DECL_FUNCTION_PERSONALITY (cg_edge->caller->decl)
3814 = DECL_FUNCTION_PERSONALITY (cg_edge->callee->decl);
3816 /* Split the block holding the GIMPLE_CALL. */
3817 e = split_block (bb, stmt);
3818 bb = e->src;
3819 return_block = e->dest;
3820 remove_edge (e);
3822 /* split_block splits after the statement; work around this by
3823 moving the call into the second block manually. Not pretty,
3824 but seems easier than doing the CFG manipulation by hand
3825 when the GIMPLE_CALL is in the last statement of BB. */
3826 stmt_gsi = gsi_last_bb (bb);
3827 gsi_remove (&stmt_gsi, false);
3829 /* If the GIMPLE_CALL was in the last statement of BB, it may have
3830 been the source of abnormal edges. In this case, schedule
3831 the removal of dead abnormal edges. */
3832 gsi = gsi_start_bb (return_block);
3833 if (gsi_end_p (gsi))
3835 gsi_insert_after (&gsi, stmt, GSI_NEW_STMT);
3836 purge_dead_abnormal_edges = true;
3838 else
3840 gsi_insert_before (&gsi, stmt, GSI_NEW_STMT);
3841 purge_dead_abnormal_edges = false;
3844 stmt_gsi = gsi_start_bb (return_block);
3846 /* Build a block containing code to initialize the arguments, the
3847 actual inline expansion of the body, and a label for the return
3848 statements within the function to jump to. The type of the
3849 statement expression is the return type of the function call. */
3850 id->block = make_node (BLOCK);
3851 BLOCK_ABSTRACT_ORIGIN (id->block) = fn;
3852 BLOCK_SOURCE_LOCATION (id->block) = input_location;
3853 prepend_lexical_block (gimple_block (stmt), id->block);
3855 /* Local declarations will be replaced by their equivalents in this
3856 map. */
3857 st = id->decl_map;
3858 id->decl_map = pointer_map_create ();
3859 dst = id->debug_map;
3860 id->debug_map = NULL;
3862 /* Record the function we are about to inline. */
3863 id->src_fn = fn;
3864 id->src_node = cg_edge->callee;
3865 id->src_cfun = DECL_STRUCT_FUNCTION (fn);
3866 id->gimple_call = stmt;
3868 gcc_assert (!id->src_cfun->after_inlining);
3870 id->entry_bb = bb;
3871 if (lookup_attribute ("cold", DECL_ATTRIBUTES (fn)))
3873 gimple_stmt_iterator si = gsi_last_bb (bb);
3874 gsi_insert_after (&si, gimple_build_predict (PRED_COLD_FUNCTION,
3875 NOT_TAKEN),
3876 GSI_NEW_STMT);
3878 initialize_inlined_parameters (id, stmt, fn, bb);
3880 if (DECL_INITIAL (fn))
3881 prepend_lexical_block (id->block, remap_blocks (DECL_INITIAL (fn), id));
3883 /* Return statements in the function body will be replaced by jumps
3884 to the RET_LABEL. */
3885 gcc_assert (DECL_INITIAL (fn));
3886 gcc_assert (TREE_CODE (DECL_INITIAL (fn)) == BLOCK);
3888 /* Find the LHS to which the result of this call is assigned. */
3889 return_slot = NULL;
3890 if (gimple_call_lhs (stmt))
3892 modify_dest = gimple_call_lhs (stmt);
3894 /* The function which we are inlining might not return a value,
3895 in which case we should issue a warning that the function
3896 does not return a value. In that case the optimizers will
3897 see that the variable to which the value is assigned was not
3898 initialized. We do not want to issue a warning about that
3899 uninitialized variable. */
3900 if (DECL_P (modify_dest))
3901 TREE_NO_WARNING (modify_dest) = 1;
3903 if (gimple_call_return_slot_opt_p (stmt))
3905 return_slot = modify_dest;
3906 modify_dest = NULL;
3909 else
3910 modify_dest = NULL;
3912 /* If we are inlining a call to the C++ operator new, we don't want
3913 to use type based alias analysis on the return value. Otherwise
3914 we may get confused if the compiler sees that the inlined new
3915 function returns a pointer which was just deleted. See bug
3916 33407. */
3917 if (DECL_IS_OPERATOR_NEW (fn))
3919 return_slot = NULL;
3920 modify_dest = NULL;
3923 /* Declare the return variable for the function. */
3924 use_retvar = declare_return_variable (id, return_slot, modify_dest, bb);
3926 /* Add local vars in this inlined callee to caller. */
3927 add_local_variables (id->src_cfun, cfun, id, true);
3929 if (dump_file && (dump_flags & TDF_DETAILS))
3931 fprintf (dump_file, "Inlining ");
3932 print_generic_expr (dump_file, id->src_fn, 0);
3933 fprintf (dump_file, " to ");
3934 print_generic_expr (dump_file, id->dst_fn, 0);
3935 fprintf (dump_file, " with frequency %i\n", cg_edge->frequency);
3938 /* This is it. Duplicate the callee body. Assume callee is
3939 pre-gimplified. Note that we must not alter the caller
3940 function in any way before this point, as this CALL_EXPR may be
3941 a self-referential call; if we're calling ourselves, we need to
3942 duplicate our body before altering anything. */
3943 copy_body (id, bb->count,
3944 cg_edge->frequency * REG_BR_PROB_BASE / CGRAPH_FREQ_BASE,
3945 bb, return_block, NULL, NULL);
3947 /* Reset the escaped solution. */
3948 if (cfun->gimple_df)
3949 pt_solution_reset (&cfun->gimple_df->escaped);
3951 /* Clean up. */
3952 if (id->debug_map)
3954 pointer_map_destroy (id->debug_map);
3955 id->debug_map = dst;
3957 pointer_map_destroy (id->decl_map);
3958 id->decl_map = st;
3960 /* Unlink the calls virtual operands before replacing it. */
3961 unlink_stmt_vdef (stmt);
3963 /* If the inlined function returns a result that we care about,
3964 substitute the GIMPLE_CALL with an assignment of the return
3965 variable to the LHS of the call. That is, if STMT was
3966 'a = foo (...)', substitute the call with 'a = USE_RETVAR'. */
3967 if (use_retvar && gimple_call_lhs (stmt))
3969 gimple old_stmt = stmt;
3970 stmt = gimple_build_assign (gimple_call_lhs (stmt), use_retvar);
3971 gsi_replace (&stmt_gsi, stmt, false);
3972 if (gimple_in_ssa_p (cfun))
3973 mark_symbols_for_renaming (stmt);
3974 maybe_clean_or_replace_eh_stmt (old_stmt, stmt);
3976 else
3978 /* Handle the case of inlining a function with no return
3979 statement, which causes the return value to become undefined. */
3980 if (gimple_call_lhs (stmt)
3981 && TREE_CODE (gimple_call_lhs (stmt)) == SSA_NAME)
3983 tree name = gimple_call_lhs (stmt);
3984 tree var = SSA_NAME_VAR (name);
3985 tree def = gimple_default_def (cfun, var);
3987 if (def)
3989 /* If the variable is used undefined, make this name
3990 undefined via a move. */
3991 stmt = gimple_build_assign (gimple_call_lhs (stmt), def);
3992 gsi_replace (&stmt_gsi, stmt, true);
3994 else
3996 /* Otherwise make this variable undefined. */
3997 gsi_remove (&stmt_gsi, true);
3998 set_default_def (var, name);
3999 SSA_NAME_DEF_STMT (name) = gimple_build_nop ();
4002 else
4003 gsi_remove (&stmt_gsi, true);
4006 if (purge_dead_abnormal_edges)
4008 gimple_purge_dead_eh_edges (return_block);
4009 gimple_purge_dead_abnormal_call_edges (return_block);
4012 /* If the value of the new expression is ignored, that's OK. We
4013 don't warn about this for CALL_EXPRs, so we shouldn't warn about
4014 the equivalent inlined version either. */
4015 if (is_gimple_assign (stmt))
4017 gcc_assert (gimple_assign_single_p (stmt)
4018 || CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (stmt)));
4019 TREE_USED (gimple_assign_rhs1 (stmt)) = 1;
4022 /* Output the inlining info for this abstract function, since it has been
4023 inlined. If we don't do this now, we can lose the information about the
4024 variables in the function when the blocks get blown away as soon as we
4025 remove the cgraph node. */
4026 (*debug_hooks->outlining_inline_function) (cg_edge->callee->decl);
4028 /* Update callgraph if needed. */
4029 cgraph_remove_node (cg_edge->callee);
4031 id->block = NULL_TREE;
4032 successfully_inlined = TRUE;
4034 egress:
4035 input_location = saved_location;
4036 return successfully_inlined;
4039 /* Expand call statements reachable from STMT_P.
4040 We can only have CALL_EXPRs as the "toplevel" tree code or nested
4041 in a MODIFY_EXPR. See gimple.c:get_call_expr_in(). We can
4042 unfortunately not use that function here because we need a pointer
4043 to the CALL_EXPR, not the tree itself. */
4045 static bool
4046 gimple_expand_calls_inline (basic_block bb, copy_body_data *id)
4048 gimple_stmt_iterator gsi;
4050 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4052 gimple stmt = gsi_stmt (gsi);
4054 if (is_gimple_call (stmt)
4055 && expand_call_inline (bb, stmt, id))
4056 return true;
4059 return false;
4063 /* Walk all basic blocks created after FIRST and try to fold every statement
4064 in the STATEMENTS pointer set. */
4066 static void
4067 fold_marked_statements (int first, struct pointer_set_t *statements)
4069 for (; first < n_basic_blocks; first++)
4070 if (BASIC_BLOCK (first))
4072 gimple_stmt_iterator gsi;
4074 for (gsi = gsi_start_bb (BASIC_BLOCK (first));
4075 !gsi_end_p (gsi);
4076 gsi_next (&gsi))
4077 if (pointer_set_contains (statements, gsi_stmt (gsi)))
4079 gimple old_stmt = gsi_stmt (gsi);
4080 tree old_decl = is_gimple_call (old_stmt) ? gimple_call_fndecl (old_stmt) : 0;
4082 if (old_decl && DECL_BUILT_IN (old_decl))
4084 /* Folding builtins can create multiple instructions,
4085 we need to look at all of them. */
4086 gimple_stmt_iterator i2 = gsi;
4087 gsi_prev (&i2);
4088 if (fold_stmt (&gsi))
4090 gimple new_stmt;
4091 /* If a builtin at the end of a bb folded into nothing,
4092 the following loop won't work. */
4093 if (gsi_end_p (gsi))
4095 cgraph_update_edges_for_call_stmt (old_stmt,
4096 old_decl, NULL);
4097 break;
4099 if (gsi_end_p (i2))
4100 i2 = gsi_start_bb (BASIC_BLOCK (first));
4101 else
4102 gsi_next (&i2);
4103 while (1)
4105 new_stmt = gsi_stmt (i2);
4106 update_stmt (new_stmt);
4107 cgraph_update_edges_for_call_stmt (old_stmt, old_decl,
4108 new_stmt);
4110 if (new_stmt == gsi_stmt (gsi))
4112 /* It is okay to check only for the very last
4113 of these statements. If it is a throwing
4114 statement nothing will change. If it isn't
4115 this can remove EH edges. If that weren't
4116 correct then because some intermediate stmts
4117 throw, but not the last one. That would mean
4118 we'd have to split the block, which we can't
4119 here and we'd loose anyway. And as builtins
4120 probably never throw, this all
4121 is mood anyway. */
4122 if (maybe_clean_or_replace_eh_stmt (old_stmt,
4123 new_stmt))
4124 gimple_purge_dead_eh_edges (BASIC_BLOCK (first));
4125 break;
4127 gsi_next (&i2);
4131 else if (fold_stmt (&gsi))
4133 /* Re-read the statement from GSI as fold_stmt() may
4134 have changed it. */
4135 gimple new_stmt = gsi_stmt (gsi);
4136 update_stmt (new_stmt);
4138 if (is_gimple_call (old_stmt)
4139 || is_gimple_call (new_stmt))
4140 cgraph_update_edges_for_call_stmt (old_stmt, old_decl,
4141 new_stmt);
4143 if (maybe_clean_or_replace_eh_stmt (old_stmt, new_stmt))
4144 gimple_purge_dead_eh_edges (BASIC_BLOCK (first));
4150 /* Return true if BB has at least one abnormal outgoing edge. */
4152 static inline bool
4153 has_abnormal_outgoing_edge_p (basic_block bb)
4155 edge e;
4156 edge_iterator ei;
4158 FOR_EACH_EDGE (e, ei, bb->succs)
4159 if (e->flags & EDGE_ABNORMAL)
4160 return true;
4162 return false;
4165 /* Expand calls to inline functions in the body of FN. */
4167 unsigned int
4168 optimize_inline_calls (tree fn)
4170 copy_body_data id;
4171 basic_block bb;
4172 int last = n_basic_blocks;
4173 struct gimplify_ctx gctx;
4174 bool inlined_p = false;
4176 /* There is no point in performing inlining if errors have already
4177 occurred -- and we might crash if we try to inline invalid
4178 code. */
4179 if (seen_error ())
4180 return 0;
4182 /* Clear out ID. */
4183 memset (&id, 0, sizeof (id));
4185 id.src_node = id.dst_node = cgraph_get_node (fn);
4186 gcc_assert (id.dst_node->analyzed);
4187 id.dst_fn = fn;
4188 /* Or any functions that aren't finished yet. */
4189 if (current_function_decl)
4190 id.dst_fn = current_function_decl;
4192 id.copy_decl = copy_decl_maybe_to_var;
4193 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
4194 id.transform_new_cfg = false;
4195 id.transform_return_to_modify = true;
4196 id.transform_lang_insert_block = NULL;
4197 id.statements_to_fold = pointer_set_create ();
4199 push_gimplify_context (&gctx);
4201 /* We make no attempts to keep dominance info up-to-date. */
4202 free_dominance_info (CDI_DOMINATORS);
4203 free_dominance_info (CDI_POST_DOMINATORS);
4205 /* Register specific gimple functions. */
4206 gimple_register_cfg_hooks ();
4208 /* Reach the trees by walking over the CFG, and note the
4209 enclosing basic-blocks in the call edges. */
4210 /* We walk the blocks going forward, because inlined function bodies
4211 will split id->current_basic_block, and the new blocks will
4212 follow it; we'll trudge through them, processing their CALL_EXPRs
4213 along the way. */
4214 FOR_EACH_BB (bb)
4215 inlined_p |= gimple_expand_calls_inline (bb, &id);
4217 pop_gimplify_context (NULL);
4219 #ifdef ENABLE_CHECKING
4221 struct cgraph_edge *e;
4223 verify_cgraph_node (id.dst_node);
4225 /* Double check that we inlined everything we are supposed to inline. */
4226 for (e = id.dst_node->callees; e; e = e->next_callee)
4227 gcc_assert (e->inline_failed);
4229 #endif
4231 /* Fold queued statements. */
4232 fold_marked_statements (last, id.statements_to_fold);
4233 pointer_set_destroy (id.statements_to_fold);
4235 gcc_assert (!id.debug_stmts);
4237 /* If we didn't inline into the function there is nothing to do. */
4238 if (!inlined_p)
4239 return 0;
4241 /* Renumber the lexical scoping (non-code) blocks consecutively. */
4242 number_blocks (fn);
4244 delete_unreachable_blocks_update_callgraph (&id);
4245 #ifdef ENABLE_CHECKING
4246 verify_cgraph_node (id.dst_node);
4247 #endif
4249 /* It would be nice to check SSA/CFG/statement consistency here, but it is
4250 not possible yet - the IPA passes might make various functions to not
4251 throw and they don't care to proactively update local EH info. This is
4252 done later in fixup_cfg pass that also execute the verification. */
4253 return (TODO_update_ssa
4254 | TODO_cleanup_cfg
4255 | (gimple_in_ssa_p (cfun) ? TODO_remove_unused_locals : 0)
4256 | (gimple_in_ssa_p (cfun) ? TODO_update_address_taken : 0)
4257 | (profile_status != PROFILE_ABSENT ? TODO_rebuild_frequencies : 0));
4260 /* Passed to walk_tree. Copies the node pointed to, if appropriate. */
4262 tree
4263 copy_tree_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
4265 enum tree_code code = TREE_CODE (*tp);
4266 enum tree_code_class cl = TREE_CODE_CLASS (code);
4268 /* We make copies of most nodes. */
4269 if (IS_EXPR_CODE_CLASS (cl)
4270 || code == TREE_LIST
4271 || code == TREE_VEC
4272 || code == TYPE_DECL
4273 || code == OMP_CLAUSE)
4275 /* Because the chain gets clobbered when we make a copy, we save it
4276 here. */
4277 tree chain = NULL_TREE, new_tree;
4279 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
4280 chain = TREE_CHAIN (*tp);
4282 /* Copy the node. */
4283 new_tree = copy_node (*tp);
4285 /* Propagate mudflap marked-ness. */
4286 if (flag_mudflap && mf_marked_p (*tp))
4287 mf_mark (new_tree);
4289 *tp = new_tree;
4291 /* Now, restore the chain, if appropriate. That will cause
4292 walk_tree to walk into the chain as well. */
4293 if (code == PARM_DECL
4294 || code == TREE_LIST
4295 || code == OMP_CLAUSE)
4296 TREE_CHAIN (*tp) = chain;
4298 /* For now, we don't update BLOCKs when we make copies. So, we
4299 have to nullify all BIND_EXPRs. */
4300 if (TREE_CODE (*tp) == BIND_EXPR)
4301 BIND_EXPR_BLOCK (*tp) = NULL_TREE;
4303 else if (code == CONSTRUCTOR)
4305 /* CONSTRUCTOR nodes need special handling because
4306 we need to duplicate the vector of elements. */
4307 tree new_tree;
4309 new_tree = copy_node (*tp);
4311 /* Propagate mudflap marked-ness. */
4312 if (flag_mudflap && mf_marked_p (*tp))
4313 mf_mark (new_tree);
4315 CONSTRUCTOR_ELTS (new_tree) = VEC_copy (constructor_elt, gc,
4316 CONSTRUCTOR_ELTS (*tp));
4317 *tp = new_tree;
4319 else if (code == STATEMENT_LIST)
4320 /* We used to just abort on STATEMENT_LIST, but we can run into them
4321 with statement-expressions (c++/40975). */
4322 copy_statement_list (tp);
4323 else if (TREE_CODE_CLASS (code) == tcc_type)
4324 *walk_subtrees = 0;
4325 else if (TREE_CODE_CLASS (code) == tcc_declaration)
4326 *walk_subtrees = 0;
4327 else if (TREE_CODE_CLASS (code) == tcc_constant)
4328 *walk_subtrees = 0;
4329 return NULL_TREE;
4332 /* The SAVE_EXPR pointed to by TP is being copied. If ST contains
4333 information indicating to what new SAVE_EXPR this one should be mapped,
4334 use that one. Otherwise, create a new node and enter it in ST. FN is
4335 the function into which the copy will be placed. */
4337 static void
4338 remap_save_expr (tree *tp, void *st_, int *walk_subtrees)
4340 struct pointer_map_t *st = (struct pointer_map_t *) st_;
4341 tree *n;
4342 tree t;
4344 /* See if we already encountered this SAVE_EXPR. */
4345 n = (tree *) pointer_map_contains (st, *tp);
4347 /* If we didn't already remap this SAVE_EXPR, do so now. */
4348 if (!n)
4350 t = copy_node (*tp);
4352 /* Remember this SAVE_EXPR. */
4353 *pointer_map_insert (st, *tp) = t;
4354 /* Make sure we don't remap an already-remapped SAVE_EXPR. */
4355 *pointer_map_insert (st, t) = t;
4357 else
4359 /* We've already walked into this SAVE_EXPR; don't do it again. */
4360 *walk_subtrees = 0;
4361 t = *n;
4364 /* Replace this SAVE_EXPR with the copy. */
4365 *tp = t;
4368 /* Called via walk_tree. If *TP points to a DECL_STMT for a local label,
4369 copies the declaration and enters it in the splay_tree in DATA (which is
4370 really an `copy_body_data *'). */
4372 static tree
4373 mark_local_for_remap_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
4374 void *data)
4376 copy_body_data *id = (copy_body_data *) data;
4378 /* Don't walk into types. */
4379 if (TYPE_P (*tp))
4380 *walk_subtrees = 0;
4382 else if (TREE_CODE (*tp) == LABEL_EXPR)
4384 tree decl = TREE_OPERAND (*tp, 0);
4386 /* Copy the decl and remember the copy. */
4387 insert_decl_map (id, decl, id->copy_decl (decl, id));
4390 return NULL_TREE;
4393 /* Perform any modifications to EXPR required when it is unsaved. Does
4394 not recurse into EXPR's subtrees. */
4396 static void
4397 unsave_expr_1 (tree expr)
4399 switch (TREE_CODE (expr))
4401 case TARGET_EXPR:
4402 /* Don't mess with a TARGET_EXPR that hasn't been expanded.
4403 It's OK for this to happen if it was part of a subtree that
4404 isn't immediately expanded, such as operand 2 of another
4405 TARGET_EXPR. */
4406 if (TREE_OPERAND (expr, 1))
4407 break;
4409 TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 3);
4410 TREE_OPERAND (expr, 3) = NULL_TREE;
4411 break;
4413 default:
4414 break;
4418 /* Called via walk_tree when an expression is unsaved. Using the
4419 splay_tree pointed to by ST (which is really a `splay_tree'),
4420 remaps all local declarations to appropriate replacements. */
4422 static tree
4423 unsave_r (tree *tp, int *walk_subtrees, void *data)
4425 copy_body_data *id = (copy_body_data *) data;
4426 struct pointer_map_t *st = id->decl_map;
4427 tree *n;
4429 /* Only a local declaration (variable or label). */
4430 if ((TREE_CODE (*tp) == VAR_DECL && !TREE_STATIC (*tp))
4431 || TREE_CODE (*tp) == LABEL_DECL)
4433 /* Lookup the declaration. */
4434 n = (tree *) pointer_map_contains (st, *tp);
4436 /* If it's there, remap it. */
4437 if (n)
4438 *tp = *n;
4441 else if (TREE_CODE (*tp) == STATEMENT_LIST)
4442 gcc_unreachable ();
4443 else if (TREE_CODE (*tp) == BIND_EXPR)
4444 copy_bind_expr (tp, walk_subtrees, id);
4445 else if (TREE_CODE (*tp) == SAVE_EXPR
4446 || TREE_CODE (*tp) == TARGET_EXPR)
4447 remap_save_expr (tp, st, walk_subtrees);
4448 else
4450 copy_tree_r (tp, walk_subtrees, NULL);
4452 /* Do whatever unsaving is required. */
4453 unsave_expr_1 (*tp);
4456 /* Keep iterating. */
4457 return NULL_TREE;
4460 /* Copies everything in EXPR and replaces variables, labels
4461 and SAVE_EXPRs local to EXPR. */
4463 tree
4464 unsave_expr_now (tree expr)
4466 copy_body_data id;
4468 /* There's nothing to do for NULL_TREE. */
4469 if (expr == 0)
4470 return expr;
4472 /* Set up ID. */
4473 memset (&id, 0, sizeof (id));
4474 id.src_fn = current_function_decl;
4475 id.dst_fn = current_function_decl;
4476 id.decl_map = pointer_map_create ();
4477 id.debug_map = NULL;
4479 id.copy_decl = copy_decl_no_change;
4480 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
4481 id.transform_new_cfg = false;
4482 id.transform_return_to_modify = false;
4483 id.transform_lang_insert_block = NULL;
4485 /* Walk the tree once to find local labels. */
4486 walk_tree_without_duplicates (&expr, mark_local_for_remap_r, &id);
4488 /* Walk the tree again, copying, remapping, and unsaving. */
4489 walk_tree (&expr, unsave_r, &id, NULL);
4491 /* Clean up. */
4492 pointer_map_destroy (id.decl_map);
4493 if (id.debug_map)
4494 pointer_map_destroy (id.debug_map);
4496 return expr;
4499 /* Called via walk_gimple_seq. If *GSIP points to a GIMPLE_LABEL for a local
4500 label, copies the declaration and enters it in the splay_tree in DATA (which
4501 is really a 'copy_body_data *'. */
4503 static tree
4504 mark_local_labels_stmt (gimple_stmt_iterator *gsip,
4505 bool *handled_ops_p ATTRIBUTE_UNUSED,
4506 struct walk_stmt_info *wi)
4508 copy_body_data *id = (copy_body_data *) wi->info;
4509 gimple stmt = gsi_stmt (*gsip);
4511 if (gimple_code (stmt) == GIMPLE_LABEL)
4513 tree decl = gimple_label_label (stmt);
4515 /* Copy the decl and remember the copy. */
4516 insert_decl_map (id, decl, id->copy_decl (decl, id));
4519 return NULL_TREE;
4523 /* Called via walk_gimple_seq by copy_gimple_seq_and_replace_local.
4524 Using the splay_tree pointed to by ST (which is really a `splay_tree'),
4525 remaps all local declarations to appropriate replacements in gimple
4526 operands. */
4528 static tree
4529 replace_locals_op (tree *tp, int *walk_subtrees, void *data)
4531 struct walk_stmt_info *wi = (struct walk_stmt_info*) data;
4532 copy_body_data *id = (copy_body_data *) wi->info;
4533 struct pointer_map_t *st = id->decl_map;
4534 tree *n;
4535 tree expr = *tp;
4537 /* Only a local declaration (variable or label). */
4538 if ((TREE_CODE (expr) == VAR_DECL
4539 && !TREE_STATIC (expr))
4540 || TREE_CODE (expr) == LABEL_DECL)
4542 /* Lookup the declaration. */
4543 n = (tree *) pointer_map_contains (st, expr);
4545 /* If it's there, remap it. */
4546 if (n)
4547 *tp = *n;
4548 *walk_subtrees = 0;
4550 else if (TREE_CODE (expr) == STATEMENT_LIST
4551 || TREE_CODE (expr) == BIND_EXPR
4552 || TREE_CODE (expr) == SAVE_EXPR)
4553 gcc_unreachable ();
4554 else if (TREE_CODE (expr) == TARGET_EXPR)
4556 /* Don't mess with a TARGET_EXPR that hasn't been expanded.
4557 It's OK for this to happen if it was part of a subtree that
4558 isn't immediately expanded, such as operand 2 of another
4559 TARGET_EXPR. */
4560 if (!TREE_OPERAND (expr, 1))
4562 TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 3);
4563 TREE_OPERAND (expr, 3) = NULL_TREE;
4567 /* Keep iterating. */
4568 return NULL_TREE;
4572 /* Called via walk_gimple_seq by copy_gimple_seq_and_replace_local.
4573 Using the splay_tree pointed to by ST (which is really a `splay_tree'),
4574 remaps all local declarations to appropriate replacements in gimple
4575 statements. */
4577 static tree
4578 replace_locals_stmt (gimple_stmt_iterator *gsip,
4579 bool *handled_ops_p ATTRIBUTE_UNUSED,
4580 struct walk_stmt_info *wi)
4582 copy_body_data *id = (copy_body_data *) wi->info;
4583 gimple stmt = gsi_stmt (*gsip);
4585 if (gimple_code (stmt) == GIMPLE_BIND)
4587 tree block = gimple_bind_block (stmt);
4589 if (block)
4591 remap_block (&block, id);
4592 gimple_bind_set_block (stmt, block);
4595 /* This will remap a lot of the same decls again, but this should be
4596 harmless. */
4597 if (gimple_bind_vars (stmt))
4598 gimple_bind_set_vars (stmt, remap_decls (gimple_bind_vars (stmt), NULL, id));
4601 /* Keep iterating. */
4602 return NULL_TREE;
4606 /* Copies everything in SEQ and replaces variables and labels local to
4607 current_function_decl. */
4609 gimple_seq
4610 copy_gimple_seq_and_replace_locals (gimple_seq seq)
4612 copy_body_data id;
4613 struct walk_stmt_info wi;
4614 struct pointer_set_t *visited;
4615 gimple_seq copy;
4617 /* There's nothing to do for NULL_TREE. */
4618 if (seq == NULL)
4619 return seq;
4621 /* Set up ID. */
4622 memset (&id, 0, sizeof (id));
4623 id.src_fn = current_function_decl;
4624 id.dst_fn = current_function_decl;
4625 id.decl_map = pointer_map_create ();
4626 id.debug_map = NULL;
4628 id.copy_decl = copy_decl_no_change;
4629 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
4630 id.transform_new_cfg = false;
4631 id.transform_return_to_modify = false;
4632 id.transform_lang_insert_block = NULL;
4634 /* Walk the tree once to find local labels. */
4635 memset (&wi, 0, sizeof (wi));
4636 visited = pointer_set_create ();
4637 wi.info = &id;
4638 wi.pset = visited;
4639 walk_gimple_seq (seq, mark_local_labels_stmt, NULL, &wi);
4640 pointer_set_destroy (visited);
4642 copy = gimple_seq_copy (seq);
4644 /* Walk the copy, remapping decls. */
4645 memset (&wi, 0, sizeof (wi));
4646 wi.info = &id;
4647 walk_gimple_seq (copy, replace_locals_stmt, replace_locals_op, &wi);
4649 /* Clean up. */
4650 pointer_map_destroy (id.decl_map);
4651 if (id.debug_map)
4652 pointer_map_destroy (id.debug_map);
4654 return copy;
4658 /* Allow someone to determine if SEARCH is a child of TOP from gdb. */
4660 static tree
4661 debug_find_tree_1 (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED, void *data)
4663 if (*tp == data)
4664 return (tree) data;
4665 else
4666 return NULL;
4669 DEBUG_FUNCTION bool
4670 debug_find_tree (tree top, tree search)
4672 return walk_tree_without_duplicates (&top, debug_find_tree_1, search) != 0;
4676 /* Declare the variables created by the inliner. Add all the variables in
4677 VARS to BIND_EXPR. */
4679 static void
4680 declare_inline_vars (tree block, tree vars)
4682 tree t;
4683 for (t = vars; t; t = DECL_CHAIN (t))
4685 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
4686 gcc_assert (!TREE_STATIC (t) && !TREE_ASM_WRITTEN (t));
4687 add_local_decl (cfun, t);
4690 if (block)
4691 BLOCK_VARS (block) = chainon (BLOCK_VARS (block), vars);
4694 /* Copy NODE (which must be a DECL). The DECL originally was in the FROM_FN,
4695 but now it will be in the TO_FN. PARM_TO_VAR means enable PARM_DECL to
4696 VAR_DECL translation. */
4698 static tree
4699 copy_decl_for_dup_finish (copy_body_data *id, tree decl, tree copy)
4701 /* Don't generate debug information for the copy if we wouldn't have
4702 generated it for the copy either. */
4703 DECL_ARTIFICIAL (copy) = DECL_ARTIFICIAL (decl);
4704 DECL_IGNORED_P (copy) = DECL_IGNORED_P (decl);
4706 /* Set the DECL_ABSTRACT_ORIGIN so the debugging routines know what
4707 declaration inspired this copy. */
4708 DECL_ABSTRACT_ORIGIN (copy) = DECL_ORIGIN (decl);
4710 /* The new variable/label has no RTL, yet. */
4711 if (CODE_CONTAINS_STRUCT (TREE_CODE (copy), TS_DECL_WRTL)
4712 && !TREE_STATIC (copy) && !DECL_EXTERNAL (copy))
4713 SET_DECL_RTL (copy, 0);
4715 /* These args would always appear unused, if not for this. */
4716 TREE_USED (copy) = 1;
4718 /* Set the context for the new declaration. */
4719 if (!DECL_CONTEXT (decl))
4720 /* Globals stay global. */
4722 else if (DECL_CONTEXT (decl) != id->src_fn)
4723 /* Things that weren't in the scope of the function we're inlining
4724 from aren't in the scope we're inlining to, either. */
4726 else if (TREE_STATIC (decl))
4727 /* Function-scoped static variables should stay in the original
4728 function. */
4730 else
4731 /* Ordinary automatic local variables are now in the scope of the
4732 new function. */
4733 DECL_CONTEXT (copy) = id->dst_fn;
4735 if (TREE_CODE (decl) == VAR_DECL
4736 /* C++ clones functions during parsing, before
4737 referenced_vars. */
4738 && gimple_referenced_vars (DECL_STRUCT_FUNCTION (id->src_fn))
4739 && referenced_var_lookup (DECL_STRUCT_FUNCTION (id->src_fn),
4740 DECL_UID (decl)))
4741 add_referenced_var (copy);
4743 return copy;
4746 static tree
4747 copy_decl_to_var (tree decl, copy_body_data *id)
4749 tree copy, type;
4751 gcc_assert (TREE_CODE (decl) == PARM_DECL
4752 || TREE_CODE (decl) == RESULT_DECL);
4754 type = TREE_TYPE (decl);
4756 copy = build_decl (DECL_SOURCE_LOCATION (id->dst_fn),
4757 VAR_DECL, DECL_NAME (decl), type);
4758 if (DECL_PT_UID_SET_P (decl))
4759 SET_DECL_PT_UID (copy, DECL_PT_UID (decl));
4760 TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (decl);
4761 TREE_READONLY (copy) = TREE_READONLY (decl);
4762 TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (decl);
4763 DECL_GIMPLE_REG_P (copy) = DECL_GIMPLE_REG_P (decl);
4765 return copy_decl_for_dup_finish (id, decl, copy);
4768 /* Like copy_decl_to_var, but create a return slot object instead of a
4769 pointer variable for return by invisible reference. */
4771 static tree
4772 copy_result_decl_to_var (tree decl, copy_body_data *id)
4774 tree copy, type;
4776 gcc_assert (TREE_CODE (decl) == PARM_DECL
4777 || TREE_CODE (decl) == RESULT_DECL);
4779 type = TREE_TYPE (decl);
4780 if (DECL_BY_REFERENCE (decl))
4781 type = TREE_TYPE (type);
4783 copy = build_decl (DECL_SOURCE_LOCATION (id->dst_fn),
4784 VAR_DECL, DECL_NAME (decl), type);
4785 if (DECL_PT_UID_SET_P (decl))
4786 SET_DECL_PT_UID (copy, DECL_PT_UID (decl));
4787 TREE_READONLY (copy) = TREE_READONLY (decl);
4788 TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (decl);
4789 if (!DECL_BY_REFERENCE (decl))
4791 TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (decl);
4792 DECL_GIMPLE_REG_P (copy) = DECL_GIMPLE_REG_P (decl);
4795 return copy_decl_for_dup_finish (id, decl, copy);
4798 tree
4799 copy_decl_no_change (tree decl, copy_body_data *id)
4801 tree copy;
4803 copy = copy_node (decl);
4805 /* The COPY is not abstract; it will be generated in DST_FN. */
4806 DECL_ABSTRACT (copy) = 0;
4807 lang_hooks.dup_lang_specific_decl (copy);
4809 /* TREE_ADDRESSABLE isn't used to indicate that a label's address has
4810 been taken; it's for internal bookkeeping in expand_goto_internal. */
4811 if (TREE_CODE (copy) == LABEL_DECL)
4813 TREE_ADDRESSABLE (copy) = 0;
4814 LABEL_DECL_UID (copy) = -1;
4817 return copy_decl_for_dup_finish (id, decl, copy);
4820 static tree
4821 copy_decl_maybe_to_var (tree decl, copy_body_data *id)
4823 if (TREE_CODE (decl) == PARM_DECL || TREE_CODE (decl) == RESULT_DECL)
4824 return copy_decl_to_var (decl, id);
4825 else
4826 return copy_decl_no_change (decl, id);
4829 /* Return a copy of the function's argument tree. */
4830 static tree
4831 copy_arguments_for_versioning (tree orig_parm, copy_body_data * id,
4832 bitmap args_to_skip, tree *vars)
4834 tree arg, *parg;
4835 tree new_parm = NULL;
4836 int i = 0;
4838 parg = &new_parm;
4840 for (arg = orig_parm; arg; arg = DECL_CHAIN (arg), i++)
4841 if (!args_to_skip || !bitmap_bit_p (args_to_skip, i))
4843 tree new_tree = remap_decl (arg, id);
4844 if (TREE_CODE (new_tree) != PARM_DECL)
4845 new_tree = id->copy_decl (arg, id);
4846 lang_hooks.dup_lang_specific_decl (new_tree);
4847 *parg = new_tree;
4848 parg = &DECL_CHAIN (new_tree);
4850 else if (!pointer_map_contains (id->decl_map, arg))
4852 /* Make an equivalent VAR_DECL. If the argument was used
4853 as temporary variable later in function, the uses will be
4854 replaced by local variable. */
4855 tree var = copy_decl_to_var (arg, id);
4856 add_referenced_var (var);
4857 insert_decl_map (id, arg, var);
4858 /* Declare this new variable. */
4859 DECL_CHAIN (var) = *vars;
4860 *vars = var;
4862 return new_parm;
4865 /* Return a copy of the function's static chain. */
4866 static tree
4867 copy_static_chain (tree static_chain, copy_body_data * id)
4869 tree *chain_copy, *pvar;
4871 chain_copy = &static_chain;
4872 for (pvar = chain_copy; *pvar; pvar = &DECL_CHAIN (*pvar))
4874 tree new_tree = remap_decl (*pvar, id);
4875 lang_hooks.dup_lang_specific_decl (new_tree);
4876 DECL_CHAIN (new_tree) = DECL_CHAIN (*pvar);
4877 *pvar = new_tree;
4879 return static_chain;
4882 /* Return true if the function is allowed to be versioned.
4883 This is a guard for the versioning functionality. */
4885 bool
4886 tree_versionable_function_p (tree fndecl)
4888 return (!lookup_attribute ("noclone", DECL_ATTRIBUTES (fndecl))
4889 && copy_forbidden (DECL_STRUCT_FUNCTION (fndecl), fndecl) == NULL);
4892 /* Delete all unreachable basic blocks and update callgraph.
4893 Doing so is somewhat nontrivial because we need to update all clones and
4894 remove inline function that become unreachable. */
4896 static bool
4897 delete_unreachable_blocks_update_callgraph (copy_body_data *id)
4899 bool changed = false;
4900 basic_block b, next_bb;
4902 find_unreachable_blocks ();
4904 /* Delete all unreachable basic blocks. */
4906 for (b = ENTRY_BLOCK_PTR->next_bb; b != EXIT_BLOCK_PTR; b = next_bb)
4908 next_bb = b->next_bb;
4910 if (!(b->flags & BB_REACHABLE))
4912 gimple_stmt_iterator bsi;
4914 for (bsi = gsi_start_bb (b); !gsi_end_p (bsi); gsi_next (&bsi))
4915 if (gimple_code (gsi_stmt (bsi)) == GIMPLE_CALL)
4917 struct cgraph_edge *e;
4918 struct cgraph_node *node;
4920 if ((e = cgraph_edge (id->dst_node, gsi_stmt (bsi))) != NULL)
4922 if (!e->inline_failed)
4923 cgraph_remove_node_and_inline_clones (e->callee);
4924 else
4925 cgraph_remove_edge (e);
4927 if (id->transform_call_graph_edges == CB_CGE_MOVE_CLONES
4928 && id->dst_node->clones)
4929 for (node = id->dst_node->clones; node != id->dst_node;)
4931 if ((e = cgraph_edge (node, gsi_stmt (bsi))) != NULL)
4933 if (!e->inline_failed)
4934 cgraph_remove_node_and_inline_clones (e->callee);
4935 else
4936 cgraph_remove_edge (e);
4939 if (node->clones)
4940 node = node->clones;
4941 else if (node->next_sibling_clone)
4942 node = node->next_sibling_clone;
4943 else
4945 while (node != id->dst_node && !node->next_sibling_clone)
4946 node = node->clone_of;
4947 if (node != id->dst_node)
4948 node = node->next_sibling_clone;
4952 delete_basic_block (b);
4953 changed = true;
4957 return changed;
4960 /* Update clone info after duplication. */
4962 static void
4963 update_clone_info (copy_body_data * id)
4965 struct cgraph_node *node;
4966 if (!id->dst_node->clones)
4967 return;
4968 for (node = id->dst_node->clones; node != id->dst_node;)
4970 /* First update replace maps to match the new body. */
4971 if (node->clone.tree_map)
4973 unsigned int i;
4974 for (i = 0; i < VEC_length (ipa_replace_map_p, node->clone.tree_map); i++)
4976 struct ipa_replace_map *replace_info;
4977 replace_info = VEC_index (ipa_replace_map_p, node->clone.tree_map, i);
4978 walk_tree (&replace_info->old_tree, copy_tree_body_r, id, NULL);
4979 walk_tree (&replace_info->new_tree, copy_tree_body_r, id, NULL);
4982 if (node->clones)
4983 node = node->clones;
4984 else if (node->next_sibling_clone)
4985 node = node->next_sibling_clone;
4986 else
4988 while (node != id->dst_node && !node->next_sibling_clone)
4989 node = node->clone_of;
4990 if (node != id->dst_node)
4991 node = node->next_sibling_clone;
4996 /* Create a copy of a function's tree.
4997 OLD_DECL and NEW_DECL are FUNCTION_DECL tree nodes
4998 of the original function and the new copied function
4999 respectively. In case we want to replace a DECL
5000 tree with another tree while duplicating the function's
5001 body, TREE_MAP represents the mapping between these
5002 trees. If UPDATE_CLONES is set, the call_stmt fields
5003 of edges of clones of the function will be updated.
5005 If non-NULL ARGS_TO_SKIP determine function parameters to remove
5006 from new version.
5007 If non-NULL BLOCK_TO_COPY determine what basic blocks to copy.
5008 If non_NULL NEW_ENTRY determine new entry BB of the clone.
5010 void
5011 tree_function_versioning (tree old_decl, tree new_decl,
5012 VEC(ipa_replace_map_p,gc)* tree_map,
5013 bool update_clones, bitmap args_to_skip,
5014 bitmap blocks_to_copy, basic_block new_entry)
5016 struct cgraph_node *old_version_node;
5017 struct cgraph_node *new_version_node;
5018 copy_body_data id;
5019 tree p;
5020 unsigned i;
5021 struct ipa_replace_map *replace_info;
5022 basic_block old_entry_block, bb;
5023 VEC (gimple, heap) *init_stmts = VEC_alloc (gimple, heap, 10);
5025 tree old_current_function_decl = current_function_decl;
5026 tree vars = NULL_TREE;
5028 gcc_assert (TREE_CODE (old_decl) == FUNCTION_DECL
5029 && TREE_CODE (new_decl) == FUNCTION_DECL);
5030 DECL_POSSIBLY_INLINED (old_decl) = 1;
5032 old_version_node = cgraph_get_node (old_decl);
5033 gcc_checking_assert (old_version_node);
5034 new_version_node = cgraph_get_node (new_decl);
5035 gcc_checking_assert (new_version_node);
5037 /* Copy over debug args. */
5038 if (DECL_HAS_DEBUG_ARGS_P (old_decl))
5040 VEC(tree, gc) **new_debug_args, **old_debug_args;
5041 gcc_checking_assert (decl_debug_args_lookup (new_decl) == NULL);
5042 DECL_HAS_DEBUG_ARGS_P (new_decl) = 0;
5043 old_debug_args = decl_debug_args_lookup (old_decl);
5044 if (old_debug_args)
5046 new_debug_args = decl_debug_args_insert (new_decl);
5047 *new_debug_args = VEC_copy (tree, gc, *old_debug_args);
5051 /* Output the inlining info for this abstract function, since it has been
5052 inlined. If we don't do this now, we can lose the information about the
5053 variables in the function when the blocks get blown away as soon as we
5054 remove the cgraph node. */
5055 (*debug_hooks->outlining_inline_function) (old_decl);
5057 DECL_ARTIFICIAL (new_decl) = 1;
5058 DECL_ABSTRACT_ORIGIN (new_decl) = DECL_ORIGIN (old_decl);
5059 DECL_FUNCTION_PERSONALITY (new_decl) = DECL_FUNCTION_PERSONALITY (old_decl);
5061 /* Prepare the data structures for the tree copy. */
5062 memset (&id, 0, sizeof (id));
5064 /* Generate a new name for the new version. */
5065 id.statements_to_fold = pointer_set_create ();
5067 id.decl_map = pointer_map_create ();
5068 id.debug_map = NULL;
5069 id.src_fn = old_decl;
5070 id.dst_fn = new_decl;
5071 id.src_node = old_version_node;
5072 id.dst_node = new_version_node;
5073 id.src_cfun = DECL_STRUCT_FUNCTION (old_decl);
5074 if (id.src_node->ipa_transforms_to_apply)
5076 VEC(ipa_opt_pass,heap) * old_transforms_to_apply = id.dst_node->ipa_transforms_to_apply;
5077 unsigned int i;
5079 id.dst_node->ipa_transforms_to_apply = VEC_copy (ipa_opt_pass, heap,
5080 id.src_node->ipa_transforms_to_apply);
5081 for (i = 0; i < VEC_length (ipa_opt_pass, old_transforms_to_apply); i++)
5082 VEC_safe_push (ipa_opt_pass, heap, id.dst_node->ipa_transforms_to_apply,
5083 VEC_index (ipa_opt_pass,
5084 old_transforms_to_apply,
5085 i));
5088 id.copy_decl = copy_decl_no_change;
5089 id.transform_call_graph_edges
5090 = update_clones ? CB_CGE_MOVE_CLONES : CB_CGE_MOVE;
5091 id.transform_new_cfg = true;
5092 id.transform_return_to_modify = false;
5093 id.transform_lang_insert_block = NULL;
5095 current_function_decl = new_decl;
5096 old_entry_block = ENTRY_BLOCK_PTR_FOR_FUNCTION
5097 (DECL_STRUCT_FUNCTION (old_decl));
5098 initialize_cfun (new_decl, old_decl,
5099 old_entry_block->count);
5100 DECL_STRUCT_FUNCTION (new_decl)->gimple_df->ipa_pta
5101 = id.src_cfun->gimple_df->ipa_pta;
5102 push_cfun (DECL_STRUCT_FUNCTION (new_decl));
5104 /* Copy the function's static chain. */
5105 p = DECL_STRUCT_FUNCTION (old_decl)->static_chain_decl;
5106 if (p)
5107 DECL_STRUCT_FUNCTION (new_decl)->static_chain_decl =
5108 copy_static_chain (DECL_STRUCT_FUNCTION (old_decl)->static_chain_decl,
5109 &id);
5111 /* If there's a tree_map, prepare for substitution. */
5112 if (tree_map)
5113 for (i = 0; i < VEC_length (ipa_replace_map_p, tree_map); i++)
5115 gimple init;
5116 replace_info = VEC_index (ipa_replace_map_p, tree_map, i);
5117 if (replace_info->replace_p)
5119 tree op = replace_info->new_tree;
5120 if (!replace_info->old_tree)
5122 int i = replace_info->parm_num;
5123 tree parm;
5124 for (parm = DECL_ARGUMENTS (old_decl); i; parm = DECL_CHAIN (parm))
5125 i --;
5126 replace_info->old_tree = parm;
5130 STRIP_NOPS (op);
5132 if (TREE_CODE (op) == VIEW_CONVERT_EXPR)
5133 op = TREE_OPERAND (op, 0);
5135 if (TREE_CODE (op) == ADDR_EXPR)
5137 op = TREE_OPERAND (op, 0);
5138 while (handled_component_p (op))
5139 op = TREE_OPERAND (op, 0);
5140 if (TREE_CODE (op) == VAR_DECL)
5141 add_referenced_var (op);
5143 gcc_assert (TREE_CODE (replace_info->old_tree) == PARM_DECL);
5144 init = setup_one_parameter (&id, replace_info->old_tree,
5145 replace_info->new_tree, id.src_fn,
5146 NULL,
5147 &vars);
5148 if (init)
5149 VEC_safe_push (gimple, heap, init_stmts, init);
5152 /* Copy the function's arguments. */
5153 if (DECL_ARGUMENTS (old_decl) != NULL_TREE)
5154 DECL_ARGUMENTS (new_decl) =
5155 copy_arguments_for_versioning (DECL_ARGUMENTS (old_decl), &id,
5156 args_to_skip, &vars);
5158 DECL_INITIAL (new_decl) = remap_blocks (DECL_INITIAL (id.src_fn), &id);
5159 BLOCK_SUPERCONTEXT (DECL_INITIAL (new_decl)) = new_decl;
5161 declare_inline_vars (DECL_INITIAL (new_decl), vars);
5163 if (!VEC_empty (tree, DECL_STRUCT_FUNCTION (old_decl)->local_decls))
5164 /* Add local vars. */
5165 add_local_variables (DECL_STRUCT_FUNCTION (old_decl), cfun, &id, false);
5167 if (DECL_RESULT (old_decl) != NULL_TREE)
5169 tree old_name;
5170 DECL_RESULT (new_decl) = remap_decl (DECL_RESULT (old_decl), &id);
5171 lang_hooks.dup_lang_specific_decl (DECL_RESULT (new_decl));
5172 if (gimple_in_ssa_p (id.src_cfun)
5173 && DECL_BY_REFERENCE (DECL_RESULT (old_decl))
5174 && (old_name
5175 = gimple_default_def (id.src_cfun, DECL_RESULT (old_decl))))
5177 tree new_name = make_ssa_name (DECL_RESULT (new_decl), NULL);
5178 insert_decl_map (&id, old_name, new_name);
5179 SSA_NAME_DEF_STMT (new_name) = gimple_build_nop ();
5180 set_default_def (DECL_RESULT (new_decl), new_name);
5184 /* Copy the Function's body. */
5185 copy_body (&id, old_entry_block->count, REG_BR_PROB_BASE,
5186 ENTRY_BLOCK_PTR, EXIT_BLOCK_PTR, blocks_to_copy, new_entry);
5188 /* Renumber the lexical scoping (non-code) blocks consecutively. */
5189 number_blocks (new_decl);
5191 /* We want to create the BB unconditionally, so that the addition of
5192 debug stmts doesn't affect BB count, which may in the end cause
5193 codegen differences. */
5194 bb = split_edge (single_succ_edge (ENTRY_BLOCK_PTR));
5195 while (VEC_length (gimple, init_stmts))
5196 insert_init_stmt (&id, bb, VEC_pop (gimple, init_stmts));
5197 update_clone_info (&id);
5199 /* Remap the nonlocal_goto_save_area, if any. */
5200 if (cfun->nonlocal_goto_save_area)
5202 struct walk_stmt_info wi;
5204 memset (&wi, 0, sizeof (wi));
5205 wi.info = &id;
5206 walk_tree (&cfun->nonlocal_goto_save_area, remap_gimple_op_r, &wi, NULL);
5209 /* Clean up. */
5210 pointer_map_destroy (id.decl_map);
5211 if (id.debug_map)
5212 pointer_map_destroy (id.debug_map);
5213 free_dominance_info (CDI_DOMINATORS);
5214 free_dominance_info (CDI_POST_DOMINATORS);
5216 fold_marked_statements (0, id.statements_to_fold);
5217 pointer_set_destroy (id.statements_to_fold);
5218 fold_cond_expr_cond ();
5219 delete_unreachable_blocks_update_callgraph (&id);
5220 if (id.dst_node->analyzed)
5221 cgraph_rebuild_references ();
5222 update_ssa (TODO_update_ssa);
5224 /* After partial cloning we need to rescale frequencies, so they are
5225 within proper range in the cloned function. */
5226 if (new_entry)
5228 struct cgraph_edge *e;
5229 rebuild_frequencies ();
5231 new_version_node->count = ENTRY_BLOCK_PTR->count;
5232 for (e = new_version_node->callees; e; e = e->next_callee)
5234 basic_block bb = gimple_bb (e->call_stmt);
5235 e->frequency = compute_call_stmt_bb_frequency (current_function_decl,
5236 bb);
5237 e->count = bb->count;
5239 for (e = new_version_node->indirect_calls; e; e = e->next_callee)
5241 basic_block bb = gimple_bb (e->call_stmt);
5242 e->frequency = compute_call_stmt_bb_frequency (current_function_decl,
5243 bb);
5244 e->count = bb->count;
5248 free_dominance_info (CDI_DOMINATORS);
5249 free_dominance_info (CDI_POST_DOMINATORS);
5251 gcc_assert (!id.debug_stmts);
5252 VEC_free (gimple, heap, init_stmts);
5253 pop_cfun ();
5254 current_function_decl = old_current_function_decl;
5255 gcc_assert (!current_function_decl
5256 || DECL_STRUCT_FUNCTION (current_function_decl) == cfun);
5257 return;
5260 /* EXP is CALL_EXPR present in a GENERIC expression tree. Try to integrate
5261 the callee and return the inlined body on success. */
5263 tree
5264 maybe_inline_call_in_expr (tree exp)
5266 tree fn = get_callee_fndecl (exp);
5268 /* We can only try to inline "const" functions. */
5269 if (fn && TREE_READONLY (fn) && DECL_SAVED_TREE (fn))
5271 struct pointer_map_t *decl_map = pointer_map_create ();
5272 call_expr_arg_iterator iter;
5273 copy_body_data id;
5274 tree param, arg, t;
5276 /* Remap the parameters. */
5277 for (param = DECL_ARGUMENTS (fn), arg = first_call_expr_arg (exp, &iter);
5278 param;
5279 param = DECL_CHAIN (param), arg = next_call_expr_arg (&iter))
5280 *pointer_map_insert (decl_map, param) = arg;
5282 memset (&id, 0, sizeof (id));
5283 id.src_fn = fn;
5284 id.dst_fn = current_function_decl;
5285 id.src_cfun = DECL_STRUCT_FUNCTION (fn);
5286 id.decl_map = decl_map;
5288 id.copy_decl = copy_decl_no_change;
5289 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
5290 id.transform_new_cfg = false;
5291 id.transform_return_to_modify = true;
5292 id.transform_lang_insert_block = NULL;
5294 /* Make sure not to unshare trees behind the front-end's back
5295 since front-end specific mechanisms may rely on sharing. */
5296 id.regimplify = false;
5297 id.do_not_unshare = true;
5299 /* We're not inside any EH region. */
5300 id.eh_lp_nr = 0;
5302 t = copy_tree_body (&id);
5303 pointer_map_destroy (decl_map);
5305 /* We can only return something suitable for use in a GENERIC
5306 expression tree. */
5307 if (TREE_CODE (t) == MODIFY_EXPR)
5308 return TREE_OPERAND (t, 1);
5311 return NULL_TREE;
5314 /* Duplicate a type, fields and all. */
5316 tree
5317 build_duplicate_type (tree type)
5319 struct copy_body_data id;
5321 memset (&id, 0, sizeof (id));
5322 id.src_fn = current_function_decl;
5323 id.dst_fn = current_function_decl;
5324 id.src_cfun = cfun;
5325 id.decl_map = pointer_map_create ();
5326 id.debug_map = NULL;
5327 id.copy_decl = copy_decl_no_change;
5329 type = remap_type_1 (type, &id);
5331 pointer_map_destroy (id.decl_map);
5332 if (id.debug_map)
5333 pointer_map_destroy (id.debug_map);
5335 TYPE_CANONICAL (type) = type;
5337 return type;