* gcc.target/powerpc/bswap64-4.c: Disable on AIX.
[official-gcc.git] / gcc / tree-inline.c
blob3c909419bd2fb0b788526194367348e78a87dcbb
1 /* Tree inlining.
2 Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
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 "toplev.h"
27 #include "tree.h"
28 #include "tree-inline.h"
29 #include "rtl.h"
30 #include "expr.h"
31 #include "flags.h"
32 #include "params.h"
33 #include "input.h"
34 #include "insn-config.h"
35 #include "hashtab.h"
36 #include "langhooks.h"
37 #include "basic-block.h"
38 #include "tree-iterator.h"
39 #include "cgraph.h"
40 #include "intl.h"
41 #include "tree-mudflap.h"
42 #include "tree-flow.h"
43 #include "function.h"
44 #include "ggc.h"
45 #include "tree-flow.h"
46 #include "diagnostic.h"
47 #include "except.h"
48 #include "debug.h"
49 #include "pointer-set.h"
50 #include "ipa-prop.h"
51 #include "value-prof.h"
52 #include "tree-pass.h"
53 #include "target.h"
54 #include "integrate.h"
56 /* I'm not real happy about this, but we need to handle gimple and
57 non-gimple trees. */
58 #include "gimple.h"
60 /* Inlining, Cloning, Versioning, Parallelization
62 Inlining: a function body is duplicated, but the PARM_DECLs are
63 remapped into VAR_DECLs, and non-void RETURN_EXPRs become
64 MODIFY_EXPRs that store to a dedicated returned-value variable.
65 The duplicated eh_region info of the copy will later be appended
66 to the info for the caller; the eh_region info in copied throwing
67 statements and RESX statements are adjusted accordingly.
69 Cloning: (only in C++) We have one body for a con/de/structor, and
70 multiple function decls, each with a unique parameter list.
71 Duplicate the body, using the given splay tree; some parameters
72 will become constants (like 0 or 1).
74 Versioning: a function body is duplicated and the result is a new
75 function rather than into blocks of an existing function as with
76 inlining. Some parameters will become constants.
78 Parallelization: a region of a function is duplicated resulting in
79 a new function. Variables may be replaced with complex expressions
80 to enable shared variable semantics.
82 All of these will simultaneously lookup any callgraph edges. If
83 we're going to inline the duplicated function body, and the given
84 function has some cloned callgraph nodes (one for each place this
85 function will be inlined) those callgraph edges will be duplicated.
86 If we're cloning the body, those callgraph edges will be
87 updated to point into the new body. (Note that the original
88 callgraph node and edge list will not be altered.)
90 See the CALL_EXPR handling case in copy_tree_body_r (). */
92 /* To Do:
94 o In order to make inlining-on-trees work, we pessimized
95 function-local static constants. In particular, they are now
96 always output, even when not addressed. Fix this by treating
97 function-local static constants just like global static
98 constants; the back-end already knows not to output them if they
99 are not needed.
101 o Provide heuristics to clamp inlining of recursive template
102 calls? */
105 /* Weights that estimate_num_insns uses for heuristics in inlining. */
107 eni_weights eni_inlining_weights;
109 /* Weights that estimate_num_insns uses to estimate the size of the
110 produced code. */
112 eni_weights eni_size_weights;
114 /* Weights that estimate_num_insns uses to estimate the time necessary
115 to execute the produced code. */
117 eni_weights eni_time_weights;
119 /* Prototypes. */
121 static tree declare_return_variable (copy_body_data *, tree, tree);
122 static void remap_block (tree *, copy_body_data *);
123 static void copy_bind_expr (tree *, int *, copy_body_data *);
124 static tree mark_local_for_remap_r (tree *, int *, void *);
125 static void unsave_expr_1 (tree);
126 static tree unsave_r (tree *, int *, void *);
127 static void declare_inline_vars (tree, tree);
128 static void remap_save_expr (tree *, void *, int *);
129 static void prepend_lexical_block (tree current_block, tree new_block);
130 static tree copy_decl_to_var (tree, copy_body_data *);
131 static tree copy_result_decl_to_var (tree, copy_body_data *);
132 static tree copy_decl_maybe_to_var (tree, copy_body_data *);
133 static gimple remap_gimple_stmt (gimple, copy_body_data *);
134 static bool delete_unreachable_blocks_update_callgraph (copy_body_data *id);
136 /* Insert a tree->tree mapping for ID. Despite the name suggests
137 that the trees should be variables, it is used for more than that. */
139 void
140 insert_decl_map (copy_body_data *id, tree key, tree value)
142 *pointer_map_insert (id->decl_map, key) = value;
144 /* Always insert an identity map as well. If we see this same new
145 node again, we won't want to duplicate it a second time. */
146 if (key != value)
147 *pointer_map_insert (id->decl_map, value) = value;
150 /* Insert a tree->tree mapping for ID. This is only used for
151 variables. */
153 static void
154 insert_debug_decl_map (copy_body_data *id, tree key, tree value)
156 if (!gimple_in_ssa_p (id->src_cfun))
157 return;
159 if (!MAY_HAVE_DEBUG_STMTS)
160 return;
162 if (!target_for_debug_bind (key))
163 return;
165 gcc_assert (TREE_CODE (key) == PARM_DECL);
166 gcc_assert (TREE_CODE (value) == VAR_DECL);
168 if (!id->debug_map)
169 id->debug_map = pointer_map_create ();
171 *pointer_map_insert (id->debug_map, key) = value;
174 /* Construct new SSA name for old NAME. ID is the inline context. */
176 static tree
177 remap_ssa_name (tree name, copy_body_data *id)
179 tree new_tree;
180 tree *n;
182 gcc_assert (TREE_CODE (name) == SSA_NAME);
184 n = (tree *) pointer_map_contains (id->decl_map, name);
185 if (n)
186 return unshare_expr (*n);
188 /* Do not set DEF_STMT yet as statement is not copied yet. We do that
189 in copy_bb. */
190 new_tree = remap_decl (SSA_NAME_VAR (name), id);
192 /* We might've substituted constant or another SSA_NAME for
193 the variable.
195 Replace the SSA name representing RESULT_DECL by variable during
196 inlining: this saves us from need to introduce PHI node in a case
197 return value is just partly initialized. */
198 if ((TREE_CODE (new_tree) == VAR_DECL || TREE_CODE (new_tree) == PARM_DECL)
199 && (TREE_CODE (SSA_NAME_VAR (name)) != RESULT_DECL
200 || !id->transform_return_to_modify))
202 new_tree = make_ssa_name (new_tree, NULL);
203 insert_decl_map (id, name, new_tree);
204 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (new_tree)
205 = SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name);
206 TREE_TYPE (new_tree) = TREE_TYPE (SSA_NAME_VAR (new_tree));
207 if (gimple_nop_p (SSA_NAME_DEF_STMT (name)))
209 /* By inlining function having uninitialized variable, we might
210 extend the lifetime (variable might get reused). This cause
211 ICE in the case we end up extending lifetime of SSA name across
212 abnormal edge, but also increase register pressure.
214 We simply initialize all uninitialized vars by 0 except
215 for case we are inlining to very first BB. We can avoid
216 this for all BBs that are not inside strongly connected
217 regions of the CFG, but this is expensive to test. */
218 if (id->entry_bb
219 && is_gimple_reg (SSA_NAME_VAR (name))
220 && TREE_CODE (SSA_NAME_VAR (name)) != PARM_DECL
221 && (id->entry_bb != EDGE_SUCC (ENTRY_BLOCK_PTR, 0)->dest
222 || EDGE_COUNT (id->entry_bb->preds) != 1))
224 gimple_stmt_iterator gsi = gsi_last_bb (id->entry_bb);
225 gimple init_stmt;
227 init_stmt = gimple_build_assign (new_tree,
228 fold_convert (TREE_TYPE (new_tree),
229 integer_zero_node));
230 gsi_insert_after (&gsi, init_stmt, GSI_NEW_STMT);
231 SSA_NAME_IS_DEFAULT_DEF (new_tree) = 0;
233 else
235 SSA_NAME_DEF_STMT (new_tree) = gimple_build_nop ();
236 if (gimple_default_def (id->src_cfun, SSA_NAME_VAR (name))
237 == name)
238 set_default_def (SSA_NAME_VAR (new_tree), new_tree);
242 else
243 insert_decl_map (id, name, new_tree);
244 return new_tree;
247 /* If nonzero, we're remapping the contents of inlined debug
248 statements. If negative, an error has occurred, such as a
249 reference to a variable that isn't available in the inlined
250 context. */
251 int processing_debug_stmt = 0;
253 /* Remap DECL during the copying of the BLOCK tree for the function. */
255 tree
256 remap_decl (tree decl, copy_body_data *id)
258 tree *n;
260 /* We only remap local variables in the current function. */
262 /* See if we have remapped this declaration. */
264 n = (tree *) pointer_map_contains (id->decl_map, decl);
266 if (!n && processing_debug_stmt)
268 processing_debug_stmt = -1;
269 return decl;
272 /* If we didn't already have an equivalent for this declaration,
273 create one now. */
274 if (!n)
276 /* Make a copy of the variable or label. */
277 tree t = id->copy_decl (decl, id);
279 /* Remember it, so that if we encounter this local entity again
280 we can reuse this copy. Do this early because remap_type may
281 need this decl for TYPE_STUB_DECL. */
282 insert_decl_map (id, decl, t);
284 if (!DECL_P (t))
285 return t;
287 /* Remap types, if necessary. */
288 TREE_TYPE (t) = remap_type (TREE_TYPE (t), id);
289 if (TREE_CODE (t) == TYPE_DECL)
290 DECL_ORIGINAL_TYPE (t) = remap_type (DECL_ORIGINAL_TYPE (t), id);
292 /* Remap sizes as necessary. */
293 walk_tree (&DECL_SIZE (t), copy_tree_body_r, id, NULL);
294 walk_tree (&DECL_SIZE_UNIT (t), copy_tree_body_r, id, NULL);
296 /* If fields, do likewise for offset and qualifier. */
297 if (TREE_CODE (t) == FIELD_DECL)
299 walk_tree (&DECL_FIELD_OFFSET (t), copy_tree_body_r, id, NULL);
300 if (TREE_CODE (DECL_CONTEXT (t)) == QUAL_UNION_TYPE)
301 walk_tree (&DECL_QUALIFIER (t), copy_tree_body_r, id, NULL);
304 if (cfun && gimple_in_ssa_p (cfun)
305 && (TREE_CODE (t) == VAR_DECL
306 || TREE_CODE (t) == RESULT_DECL || TREE_CODE (t) == PARM_DECL))
308 tree def = gimple_default_def (id->src_cfun, decl);
309 get_var_ann (t);
310 if (TREE_CODE (decl) != PARM_DECL && def)
312 tree map = remap_ssa_name (def, id);
313 /* Watch out RESULT_DECLs whose SSA names map directly
314 to them. */
315 if (TREE_CODE (map) == SSA_NAME
316 && gimple_nop_p (SSA_NAME_DEF_STMT (map)))
317 set_default_def (t, map);
319 add_referenced_var (t);
321 return t;
324 if (id->do_not_unshare)
325 return *n;
326 else
327 return unshare_expr (*n);
330 static tree
331 remap_type_1 (tree type, copy_body_data *id)
333 tree new_tree, t;
335 /* We do need a copy. build and register it now. If this is a pointer or
336 reference type, remap the designated type and make a new pointer or
337 reference type. */
338 if (TREE_CODE (type) == POINTER_TYPE)
340 new_tree = build_pointer_type_for_mode (remap_type (TREE_TYPE (type), id),
341 TYPE_MODE (type),
342 TYPE_REF_CAN_ALIAS_ALL (type));
343 if (TYPE_ATTRIBUTES (type) || TYPE_QUALS (type))
344 new_tree = build_type_attribute_qual_variant (new_tree,
345 TYPE_ATTRIBUTES (type),
346 TYPE_QUALS (type));
347 insert_decl_map (id, type, new_tree);
348 return new_tree;
350 else if (TREE_CODE (type) == REFERENCE_TYPE)
352 new_tree = build_reference_type_for_mode (remap_type (TREE_TYPE (type), id),
353 TYPE_MODE (type),
354 TYPE_REF_CAN_ALIAS_ALL (type));
355 if (TYPE_ATTRIBUTES (type) || TYPE_QUALS (type))
356 new_tree = build_type_attribute_qual_variant (new_tree,
357 TYPE_ATTRIBUTES (type),
358 TYPE_QUALS (type));
359 insert_decl_map (id, type, new_tree);
360 return new_tree;
362 else
363 new_tree = copy_node (type);
365 insert_decl_map (id, type, new_tree);
367 /* This is a new type, not a copy of an old type. Need to reassociate
368 variants. We can handle everything except the main variant lazily. */
369 t = TYPE_MAIN_VARIANT (type);
370 if (type != t)
372 t = remap_type (t, id);
373 TYPE_MAIN_VARIANT (new_tree) = t;
374 TYPE_NEXT_VARIANT (new_tree) = TYPE_NEXT_VARIANT (t);
375 TYPE_NEXT_VARIANT (t) = new_tree;
377 else
379 TYPE_MAIN_VARIANT (new_tree) = new_tree;
380 TYPE_NEXT_VARIANT (new_tree) = NULL;
383 if (TYPE_STUB_DECL (type))
384 TYPE_STUB_DECL (new_tree) = remap_decl (TYPE_STUB_DECL (type), id);
386 /* Lazily create pointer and reference types. */
387 TYPE_POINTER_TO (new_tree) = NULL;
388 TYPE_REFERENCE_TO (new_tree) = NULL;
390 switch (TREE_CODE (new_tree))
392 case INTEGER_TYPE:
393 case REAL_TYPE:
394 case FIXED_POINT_TYPE:
395 case ENUMERAL_TYPE:
396 case BOOLEAN_TYPE:
397 t = TYPE_MIN_VALUE (new_tree);
398 if (t && TREE_CODE (t) != INTEGER_CST)
399 walk_tree (&TYPE_MIN_VALUE (new_tree), copy_tree_body_r, id, NULL);
401 t = TYPE_MAX_VALUE (new_tree);
402 if (t && TREE_CODE (t) != INTEGER_CST)
403 walk_tree (&TYPE_MAX_VALUE (new_tree), copy_tree_body_r, id, NULL);
404 return new_tree;
406 case FUNCTION_TYPE:
407 TREE_TYPE (new_tree) = remap_type (TREE_TYPE (new_tree), id);
408 walk_tree (&TYPE_ARG_TYPES (new_tree), copy_tree_body_r, id, NULL);
409 return new_tree;
411 case ARRAY_TYPE:
412 TREE_TYPE (new_tree) = remap_type (TREE_TYPE (new_tree), id);
413 TYPE_DOMAIN (new_tree) = remap_type (TYPE_DOMAIN (new_tree), id);
414 break;
416 case RECORD_TYPE:
417 case UNION_TYPE:
418 case QUAL_UNION_TYPE:
420 tree f, nf = NULL;
422 for (f = TYPE_FIELDS (new_tree); f ; f = TREE_CHAIN (f))
424 t = remap_decl (f, id);
425 DECL_CONTEXT (t) = new_tree;
426 TREE_CHAIN (t) = nf;
427 nf = t;
429 TYPE_FIELDS (new_tree) = nreverse (nf);
431 break;
433 case OFFSET_TYPE:
434 default:
435 /* Shouldn't have been thought variable sized. */
436 gcc_unreachable ();
439 walk_tree (&TYPE_SIZE (new_tree), copy_tree_body_r, id, NULL);
440 walk_tree (&TYPE_SIZE_UNIT (new_tree), copy_tree_body_r, id, NULL);
442 return new_tree;
445 tree
446 remap_type (tree type, copy_body_data *id)
448 tree *node;
449 tree tmp;
451 if (type == NULL)
452 return type;
454 /* See if we have remapped this type. */
455 node = (tree *) pointer_map_contains (id->decl_map, type);
456 if (node)
457 return *node;
459 /* The type only needs remapping if it's variably modified. */
460 if (! variably_modified_type_p (type, id->src_fn))
462 insert_decl_map (id, type, type);
463 return type;
466 id->remapping_type_depth++;
467 tmp = remap_type_1 (type, id);
468 id->remapping_type_depth--;
470 return tmp;
473 /* Return previously remapped type of TYPE in ID. Return NULL if TYPE
474 is NULL or TYPE has not been remapped before. */
476 static tree
477 remapped_type (tree type, copy_body_data *id)
479 tree *node;
481 if (type == NULL)
482 return type;
484 /* See if we have remapped this type. */
485 node = (tree *) pointer_map_contains (id->decl_map, type);
486 if (node)
487 return *node;
488 else
489 return NULL;
492 /* The type only needs remapping if it's variably modified. */
493 /* Decide if DECL can be put into BLOCK_NONLOCAL_VARs. */
495 static bool
496 can_be_nonlocal (tree decl, copy_body_data *id)
498 /* We can not duplicate function decls. */
499 if (TREE_CODE (decl) == FUNCTION_DECL)
500 return true;
502 /* Local static vars must be non-local or we get multiple declaration
503 problems. */
504 if (TREE_CODE (decl) == VAR_DECL
505 && !auto_var_in_fn_p (decl, id->src_fn))
506 return true;
508 /* At the moment dwarf2out can handle only these types of nodes. We
509 can support more later. */
510 if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != PARM_DECL)
511 return false;
513 /* We must use global type. We call remapped_type instead of
514 remap_type since we don't want to remap this type here if it
515 hasn't been remapped before. */
516 if (TREE_TYPE (decl) != remapped_type (TREE_TYPE (decl), id))
517 return false;
519 /* Wihtout SSA we can't tell if variable is used. */
520 if (!gimple_in_ssa_p (cfun))
521 return false;
523 /* Live variables must be copied so we can attach DECL_RTL. */
524 if (var_ann (decl))
525 return false;
527 return true;
530 static tree
531 remap_decls (tree decls, VEC(tree,gc) **nonlocalized_list, copy_body_data *id)
533 tree old_var;
534 tree new_decls = NULL_TREE;
536 /* Remap its variables. */
537 for (old_var = decls; old_var; old_var = TREE_CHAIN (old_var))
539 tree new_var;
540 tree origin_var = DECL_ORIGIN (old_var);
542 if (can_be_nonlocal (old_var, id))
544 if (TREE_CODE (old_var) == VAR_DECL
545 && ! DECL_EXTERNAL (old_var)
546 && (var_ann (old_var) || !gimple_in_ssa_p (cfun)))
547 cfun->local_decls = tree_cons (NULL_TREE, old_var,
548 cfun->local_decls);
549 if ((!optimize || debug_info_level > DINFO_LEVEL_TERSE)
550 && !DECL_IGNORED_P (old_var)
551 && nonlocalized_list)
552 VEC_safe_push (tree, gc, *nonlocalized_list, origin_var);
553 continue;
556 /* Remap the variable. */
557 new_var = remap_decl (old_var, id);
559 /* If we didn't remap this variable, we can't mess with its
560 TREE_CHAIN. If we remapped this variable to the return slot, it's
561 already declared somewhere else, so don't declare it here. */
563 if (new_var == id->retvar)
565 else if (!new_var)
567 if ((!optimize || debug_info_level > DINFO_LEVEL_TERSE)
568 && !DECL_IGNORED_P (old_var)
569 && nonlocalized_list)
570 VEC_safe_push (tree, gc, *nonlocalized_list, origin_var);
572 else
574 gcc_assert (DECL_P (new_var));
575 TREE_CHAIN (new_var) = new_decls;
576 new_decls = new_var;
580 return nreverse (new_decls);
583 /* Copy the BLOCK to contain remapped versions of the variables
584 therein. And hook the new block into the block-tree. */
586 static void
587 remap_block (tree *block, copy_body_data *id)
589 tree old_block;
590 tree new_block;
592 /* Make the new block. */
593 old_block = *block;
594 new_block = make_node (BLOCK);
595 TREE_USED (new_block) = TREE_USED (old_block);
596 BLOCK_ABSTRACT_ORIGIN (new_block) = old_block;
597 BLOCK_SOURCE_LOCATION (new_block) = BLOCK_SOURCE_LOCATION (old_block);
598 BLOCK_NONLOCALIZED_VARS (new_block)
599 = VEC_copy (tree, gc, BLOCK_NONLOCALIZED_VARS (old_block));
600 *block = new_block;
602 /* Remap its variables. */
603 BLOCK_VARS (new_block) = remap_decls (BLOCK_VARS (old_block),
604 &BLOCK_NONLOCALIZED_VARS (new_block),
605 id);
607 if (id->transform_lang_insert_block)
608 id->transform_lang_insert_block (new_block);
610 /* Remember the remapped block. */
611 insert_decl_map (id, old_block, new_block);
614 /* Copy the whole block tree and root it in id->block. */
615 static tree
616 remap_blocks (tree block, copy_body_data *id)
618 tree t;
619 tree new_tree = block;
621 if (!block)
622 return NULL;
624 remap_block (&new_tree, id);
625 gcc_assert (new_tree != block);
626 for (t = BLOCK_SUBBLOCKS (block); t ; t = BLOCK_CHAIN (t))
627 prepend_lexical_block (new_tree, remap_blocks (t, id));
628 /* Blocks are in arbitrary order, but make things slightly prettier and do
629 not swap order when producing a copy. */
630 BLOCK_SUBBLOCKS (new_tree) = blocks_nreverse (BLOCK_SUBBLOCKS (new_tree));
631 return new_tree;
634 static void
635 copy_statement_list (tree *tp)
637 tree_stmt_iterator oi, ni;
638 tree new_tree;
640 new_tree = alloc_stmt_list ();
641 ni = tsi_start (new_tree);
642 oi = tsi_start (*tp);
643 TREE_TYPE (new_tree) = TREE_TYPE (*tp);
644 *tp = new_tree;
646 for (; !tsi_end_p (oi); tsi_next (&oi))
648 tree stmt = tsi_stmt (oi);
649 if (TREE_CODE (stmt) == STATEMENT_LIST)
650 copy_statement_list (&stmt);
651 tsi_link_after (&ni, stmt, TSI_CONTINUE_LINKING);
655 static void
656 copy_bind_expr (tree *tp, int *walk_subtrees, copy_body_data *id)
658 tree block = BIND_EXPR_BLOCK (*tp);
659 /* Copy (and replace) the statement. */
660 copy_tree_r (tp, walk_subtrees, NULL);
661 if (block)
663 remap_block (&block, id);
664 BIND_EXPR_BLOCK (*tp) = block;
667 if (BIND_EXPR_VARS (*tp))
668 /* This will remap a lot of the same decls again, but this should be
669 harmless. */
670 BIND_EXPR_VARS (*tp) = remap_decls (BIND_EXPR_VARS (*tp), NULL, id);
674 /* Create a new gimple_seq by remapping all the statements in BODY
675 using the inlining information in ID. */
677 gimple_seq
678 remap_gimple_seq (gimple_seq body, copy_body_data *id)
680 gimple_stmt_iterator si;
681 gimple_seq new_body = NULL;
683 for (si = gsi_start (body); !gsi_end_p (si); gsi_next (&si))
685 gimple new_stmt = remap_gimple_stmt (gsi_stmt (si), id);
686 gimple_seq_add_stmt (&new_body, new_stmt);
689 return new_body;
693 /* Copy a GIMPLE_BIND statement STMT, remapping all the symbols in its
694 block using the mapping information in ID. */
696 static gimple
697 copy_gimple_bind (gimple stmt, copy_body_data *id)
699 gimple new_bind;
700 tree new_block, new_vars;
701 gimple_seq body, new_body;
703 /* Copy the statement. Note that we purposely don't use copy_stmt
704 here because we need to remap statements as we copy. */
705 body = gimple_bind_body (stmt);
706 new_body = remap_gimple_seq (body, id);
708 new_block = gimple_bind_block (stmt);
709 if (new_block)
710 remap_block (&new_block, id);
712 /* This will remap a lot of the same decls again, but this should be
713 harmless. */
714 new_vars = gimple_bind_vars (stmt);
715 if (new_vars)
716 new_vars = remap_decls (new_vars, NULL, id);
718 new_bind = gimple_build_bind (new_vars, new_body, new_block);
720 return new_bind;
724 /* Remap the GIMPLE operand pointed to by *TP. DATA is really a
725 'struct walk_stmt_info *'. DATA->INFO is a 'copy_body_data *'.
726 WALK_SUBTREES is used to indicate walk_gimple_op whether to keep
727 recursing into the children nodes of *TP. */
729 static tree
730 remap_gimple_op_r (tree *tp, int *walk_subtrees, void *data)
732 struct walk_stmt_info *wi_p = (struct walk_stmt_info *) data;
733 copy_body_data *id = (copy_body_data *) wi_p->info;
734 tree fn = id->src_fn;
736 if (TREE_CODE (*tp) == SSA_NAME)
738 *tp = remap_ssa_name (*tp, id);
739 *walk_subtrees = 0;
740 return NULL;
742 else if (auto_var_in_fn_p (*tp, fn))
744 /* Local variables and labels need to be replaced by equivalent
745 variables. We don't want to copy static variables; there's
746 only one of those, no matter how many times we inline the
747 containing function. Similarly for globals from an outer
748 function. */
749 tree new_decl;
751 /* Remap the declaration. */
752 new_decl = remap_decl (*tp, id);
753 gcc_assert (new_decl);
754 /* Replace this variable with the copy. */
755 STRIP_TYPE_NOPS (new_decl);
756 /* ??? The C++ frontend uses void * pointer zero to initialize
757 any other type. This confuses the middle-end type verification.
758 As cloned bodies do not go through gimplification again the fixup
759 there doesn't trigger. */
760 if (TREE_CODE (new_decl) == INTEGER_CST
761 && !useless_type_conversion_p (TREE_TYPE (*tp), TREE_TYPE (new_decl)))
762 new_decl = fold_convert (TREE_TYPE (*tp), new_decl);
763 *tp = new_decl;
764 *walk_subtrees = 0;
766 else if (TREE_CODE (*tp) == STATEMENT_LIST)
767 gcc_unreachable ();
768 else if (TREE_CODE (*tp) == SAVE_EXPR)
769 gcc_unreachable ();
770 else if (TREE_CODE (*tp) == LABEL_DECL
771 && (!DECL_CONTEXT (*tp)
772 || decl_function_context (*tp) == id->src_fn))
773 /* These may need to be remapped for EH handling. */
774 *tp = remap_decl (*tp, id);
775 else if (TYPE_P (*tp))
776 /* Types may need remapping as well. */
777 *tp = remap_type (*tp, id);
778 else if (CONSTANT_CLASS_P (*tp))
780 /* If this is a constant, we have to copy the node iff the type
781 will be remapped. copy_tree_r will not copy a constant. */
782 tree new_type = remap_type (TREE_TYPE (*tp), id);
784 if (new_type == TREE_TYPE (*tp))
785 *walk_subtrees = 0;
787 else if (TREE_CODE (*tp) == INTEGER_CST)
788 *tp = build_int_cst_wide (new_type, TREE_INT_CST_LOW (*tp),
789 TREE_INT_CST_HIGH (*tp));
790 else
792 *tp = copy_node (*tp);
793 TREE_TYPE (*tp) = new_type;
796 else
798 /* Otherwise, just copy the node. Note that copy_tree_r already
799 knows not to copy VAR_DECLs, etc., so this is safe. */
800 if (TREE_CODE (*tp) == INDIRECT_REF)
802 /* Get rid of *& from inline substitutions that can happen when a
803 pointer argument is an ADDR_EXPR. */
804 tree decl = TREE_OPERAND (*tp, 0);
805 tree *n;
807 n = (tree *) pointer_map_contains (id->decl_map, decl);
808 if (n)
810 tree type, new_tree, old;
812 /* If we happen to get an ADDR_EXPR in n->value, strip
813 it manually here as we'll eventually get ADDR_EXPRs
814 which lie about their types pointed to. In this case
815 build_fold_indirect_ref wouldn't strip the
816 INDIRECT_REF, but we absolutely rely on that. As
817 fold_indirect_ref does other useful transformations,
818 try that first, though. */
819 type = TREE_TYPE (TREE_TYPE (*n));
820 new_tree = unshare_expr (*n);
821 old = *tp;
822 *tp = gimple_fold_indirect_ref (new_tree);
823 if (!*tp)
825 if (TREE_CODE (new_tree) == ADDR_EXPR)
827 *tp = fold_indirect_ref_1 (EXPR_LOCATION (new_tree),
828 type, new_tree);
829 /* ??? We should either assert here or build
830 a VIEW_CONVERT_EXPR instead of blindly leaking
831 incompatible types to our IL. */
832 if (! *tp)
833 *tp = TREE_OPERAND (new_tree, 0);
835 else
837 *tp = build1 (INDIRECT_REF, type, new_tree);
838 TREE_THIS_VOLATILE (*tp) = TREE_THIS_VOLATILE (old);
839 TREE_NO_WARNING (*tp) = TREE_NO_WARNING (old);
842 *walk_subtrees = 0;
843 return NULL;
847 /* Here is the "usual case". Copy this tree node, and then
848 tweak some special cases. */
849 copy_tree_r (tp, walk_subtrees, NULL);
851 /* Global variables we haven't seen yet need to go into referenced
852 vars. If not referenced from types only. */
853 if (gimple_in_ssa_p (cfun)
854 && TREE_CODE (*tp) == VAR_DECL
855 && id->remapping_type_depth == 0
856 && !processing_debug_stmt)
857 add_referenced_var (*tp);
859 /* We should never have TREE_BLOCK set on non-statements. */
860 if (EXPR_P (*tp))
861 gcc_assert (!TREE_BLOCK (*tp));
863 if (TREE_CODE (*tp) != OMP_CLAUSE)
864 TREE_TYPE (*tp) = remap_type (TREE_TYPE (*tp), id);
866 if (TREE_CODE (*tp) == TARGET_EXPR && TREE_OPERAND (*tp, 3))
868 /* The copied TARGET_EXPR has never been expanded, even if the
869 original node was expanded already. */
870 TREE_OPERAND (*tp, 1) = TREE_OPERAND (*tp, 3);
871 TREE_OPERAND (*tp, 3) = NULL_TREE;
873 else if (TREE_CODE (*tp) == ADDR_EXPR)
875 /* Variable substitution need not be simple. In particular,
876 the INDIRECT_REF substitution above. Make sure that
877 TREE_CONSTANT and friends are up-to-date. But make sure
878 to not improperly set TREE_BLOCK on some sub-expressions. */
879 int invariant = is_gimple_min_invariant (*tp);
880 tree block = id->block;
881 id->block = NULL_TREE;
882 walk_tree (&TREE_OPERAND (*tp, 0), copy_tree_body_r, id, NULL);
883 id->block = block;
885 /* Handle the case where we substituted an INDIRECT_REF
886 into the operand of the ADDR_EXPR. */
887 if (TREE_CODE (TREE_OPERAND (*tp, 0)) == INDIRECT_REF)
888 *tp = TREE_OPERAND (TREE_OPERAND (*tp, 0), 0);
889 else
890 recompute_tree_invariant_for_addr_expr (*tp);
892 /* If this used to be invariant, but is not any longer,
893 then regimplification is probably needed. */
894 if (invariant && !is_gimple_min_invariant (*tp))
895 id->regimplify = true;
897 *walk_subtrees = 0;
901 /* Keep iterating. */
902 return NULL_TREE;
906 /* Called from copy_body_id via walk_tree. DATA is really a
907 `copy_body_data *'. */
909 tree
910 copy_tree_body_r (tree *tp, int *walk_subtrees, void *data)
912 copy_body_data *id = (copy_body_data *) data;
913 tree fn = id->src_fn;
914 tree new_block;
916 /* Begin by recognizing trees that we'll completely rewrite for the
917 inlining context. Our output for these trees is completely
918 different from out input (e.g. RETURN_EXPR is deleted, and morphs
919 into an edge). Further down, we'll handle trees that get
920 duplicated and/or tweaked. */
922 /* When requested, RETURN_EXPRs should be transformed to just the
923 contained MODIFY_EXPR. The branch semantics of the return will
924 be handled elsewhere by manipulating the CFG rather than a statement. */
925 if (TREE_CODE (*tp) == RETURN_EXPR && id->transform_return_to_modify)
927 tree assignment = TREE_OPERAND (*tp, 0);
929 /* If we're returning something, just turn that into an
930 assignment into the equivalent of the original RESULT_DECL.
931 If the "assignment" is just the result decl, the result
932 decl has already been set (e.g. a recent "foo (&result_decl,
933 ...)"); just toss the entire RETURN_EXPR. */
934 if (assignment && TREE_CODE (assignment) == MODIFY_EXPR)
936 /* Replace the RETURN_EXPR with (a copy of) the
937 MODIFY_EXPR hanging underneath. */
938 *tp = copy_node (assignment);
940 else /* Else the RETURN_EXPR returns no value. */
942 *tp = NULL;
943 return (tree) (void *)1;
946 else if (TREE_CODE (*tp) == SSA_NAME)
948 *tp = remap_ssa_name (*tp, id);
949 *walk_subtrees = 0;
950 return NULL;
953 /* Local variables and labels need to be replaced by equivalent
954 variables. We don't want to copy static variables; there's only
955 one of those, no matter how many times we inline the containing
956 function. Similarly for globals from an outer function. */
957 else if (auto_var_in_fn_p (*tp, fn))
959 tree new_decl;
961 /* Remap the declaration. */
962 new_decl = remap_decl (*tp, id);
963 gcc_assert (new_decl);
964 /* Replace this variable with the copy. */
965 STRIP_TYPE_NOPS (new_decl);
966 *tp = new_decl;
967 *walk_subtrees = 0;
969 else if (TREE_CODE (*tp) == STATEMENT_LIST)
970 copy_statement_list (tp);
971 else if (TREE_CODE (*tp) == SAVE_EXPR
972 || TREE_CODE (*tp) == TARGET_EXPR)
973 remap_save_expr (tp, id->decl_map, walk_subtrees);
974 else if (TREE_CODE (*tp) == LABEL_DECL
975 && (! DECL_CONTEXT (*tp)
976 || decl_function_context (*tp) == id->src_fn))
977 /* These may need to be remapped for EH handling. */
978 *tp = remap_decl (*tp, id);
979 else if (TREE_CODE (*tp) == BIND_EXPR)
980 copy_bind_expr (tp, walk_subtrees, id);
981 /* Types may need remapping as well. */
982 else if (TYPE_P (*tp))
983 *tp = remap_type (*tp, id);
985 /* If this is a constant, we have to copy the node iff the type will be
986 remapped. copy_tree_r will not copy a constant. */
987 else if (CONSTANT_CLASS_P (*tp))
989 tree new_type = remap_type (TREE_TYPE (*tp), id);
991 if (new_type == TREE_TYPE (*tp))
992 *walk_subtrees = 0;
994 else if (TREE_CODE (*tp) == INTEGER_CST)
995 *tp = build_int_cst_wide (new_type, TREE_INT_CST_LOW (*tp),
996 TREE_INT_CST_HIGH (*tp));
997 else
999 *tp = copy_node (*tp);
1000 TREE_TYPE (*tp) = new_type;
1004 /* Otherwise, just copy the node. Note that copy_tree_r already
1005 knows not to copy VAR_DECLs, etc., so this is safe. */
1006 else
1008 /* Here we handle trees that are not completely rewritten.
1009 First we detect some inlining-induced bogosities for
1010 discarding. */
1011 if (TREE_CODE (*tp) == MODIFY_EXPR
1012 && TREE_OPERAND (*tp, 0) == TREE_OPERAND (*tp, 1)
1013 && (auto_var_in_fn_p (TREE_OPERAND (*tp, 0), fn)))
1015 /* Some assignments VAR = VAR; don't generate any rtl code
1016 and thus don't count as variable modification. Avoid
1017 keeping bogosities like 0 = 0. */
1018 tree decl = TREE_OPERAND (*tp, 0), value;
1019 tree *n;
1021 n = (tree *) pointer_map_contains (id->decl_map, decl);
1022 if (n)
1024 value = *n;
1025 STRIP_TYPE_NOPS (value);
1026 if (TREE_CONSTANT (value) || TREE_READONLY (value))
1028 *tp = build_empty_stmt (EXPR_LOCATION (*tp));
1029 return copy_tree_body_r (tp, walk_subtrees, data);
1033 else if (TREE_CODE (*tp) == INDIRECT_REF)
1035 /* Get rid of *& from inline substitutions that can happen when a
1036 pointer argument is an ADDR_EXPR. */
1037 tree decl = TREE_OPERAND (*tp, 0);
1038 tree *n;
1040 n = (tree *) pointer_map_contains (id->decl_map, decl);
1041 if (n)
1043 tree new_tree;
1044 tree old;
1045 /* If we happen to get an ADDR_EXPR in n->value, strip
1046 it manually here as we'll eventually get ADDR_EXPRs
1047 which lie about their types pointed to. In this case
1048 build_fold_indirect_ref wouldn't strip the INDIRECT_REF,
1049 but we absolutely rely on that. As fold_indirect_ref
1050 does other useful transformations, try that first, though. */
1051 tree type = TREE_TYPE (TREE_TYPE (*n));
1052 if (id->do_not_unshare)
1053 new_tree = *n;
1054 else
1055 new_tree = unshare_expr (*n);
1056 old = *tp;
1057 *tp = gimple_fold_indirect_ref (new_tree);
1058 if (! *tp)
1060 if (TREE_CODE (new_tree) == ADDR_EXPR)
1062 *tp = fold_indirect_ref_1 (EXPR_LOCATION (new_tree),
1063 type, new_tree);
1064 /* ??? We should either assert here or build
1065 a VIEW_CONVERT_EXPR instead of blindly leaking
1066 incompatible types to our IL. */
1067 if (! *tp)
1068 *tp = TREE_OPERAND (new_tree, 0);
1070 else
1072 *tp = build1 (INDIRECT_REF, type, new_tree);
1073 TREE_THIS_VOLATILE (*tp) = TREE_THIS_VOLATILE (old);
1074 TREE_SIDE_EFFECTS (*tp) = TREE_SIDE_EFFECTS (old);
1077 *walk_subtrees = 0;
1078 return NULL;
1082 /* Here is the "usual case". Copy this tree node, and then
1083 tweak some special cases. */
1084 copy_tree_r (tp, walk_subtrees, NULL);
1086 /* Global variables we haven't seen yet needs to go into referenced
1087 vars. If not referenced from types or debug stmts only. */
1088 if (gimple_in_ssa_p (cfun)
1089 && TREE_CODE (*tp) == VAR_DECL
1090 && id->remapping_type_depth == 0
1091 && !processing_debug_stmt)
1092 add_referenced_var (*tp);
1094 /* If EXPR has block defined, map it to newly constructed block.
1095 When inlining we want EXPRs without block appear in the block
1096 of function call if we are not remapping a type. */
1097 if (EXPR_P (*tp))
1099 new_block = id->remapping_type_depth == 0 ? id->block : NULL;
1100 if (TREE_BLOCK (*tp))
1102 tree *n;
1103 n = (tree *) pointer_map_contains (id->decl_map,
1104 TREE_BLOCK (*tp));
1105 gcc_assert (n);
1106 new_block = *n;
1108 TREE_BLOCK (*tp) = new_block;
1111 if (TREE_CODE (*tp) != OMP_CLAUSE)
1112 TREE_TYPE (*tp) = remap_type (TREE_TYPE (*tp), id);
1114 /* The copied TARGET_EXPR has never been expanded, even if the
1115 original node was expanded already. */
1116 if (TREE_CODE (*tp) == TARGET_EXPR && TREE_OPERAND (*tp, 3))
1118 TREE_OPERAND (*tp, 1) = TREE_OPERAND (*tp, 3);
1119 TREE_OPERAND (*tp, 3) = NULL_TREE;
1122 /* Variable substitution need not be simple. In particular, the
1123 INDIRECT_REF substitution above. Make sure that TREE_CONSTANT
1124 and friends are up-to-date. */
1125 else if (TREE_CODE (*tp) == ADDR_EXPR)
1127 int invariant = is_gimple_min_invariant (*tp);
1128 walk_tree (&TREE_OPERAND (*tp, 0), copy_tree_body_r, id, NULL);
1130 /* Handle the case where we substituted an INDIRECT_REF
1131 into the operand of the ADDR_EXPR. */
1132 if (TREE_CODE (TREE_OPERAND (*tp, 0)) == INDIRECT_REF)
1133 *tp = TREE_OPERAND (TREE_OPERAND (*tp, 0), 0);
1134 else
1135 recompute_tree_invariant_for_addr_expr (*tp);
1137 /* If this used to be invariant, but is not any longer,
1138 then regimplification is probably needed. */
1139 if (invariant && !is_gimple_min_invariant (*tp))
1140 id->regimplify = true;
1142 *walk_subtrees = 0;
1146 /* Keep iterating. */
1147 return NULL_TREE;
1150 /* Helper for remap_gimple_stmt. Given an EH region number for the
1151 source function, map that to the duplicate EH region number in
1152 the destination function. */
1154 static int
1155 remap_eh_region_nr (int old_nr, copy_body_data *id)
1157 eh_region old_r, new_r;
1158 void **slot;
1160 old_r = get_eh_region_from_number_fn (id->src_cfun, old_nr);
1161 slot = pointer_map_contains (id->eh_map, old_r);
1162 new_r = (eh_region) *slot;
1164 return new_r->index;
1167 /* Similar, but operate on INTEGER_CSTs. */
1169 static tree
1170 remap_eh_region_tree_nr (tree old_t_nr, copy_body_data *id)
1172 int old_nr, new_nr;
1174 old_nr = tree_low_cst (old_t_nr, 0);
1175 new_nr = remap_eh_region_nr (old_nr, id);
1177 return build_int_cst (NULL, new_nr);
1180 /* Helper for copy_bb. Remap statement STMT using the inlining
1181 information in ID. Return the new statement copy. */
1183 static gimple
1184 remap_gimple_stmt (gimple stmt, copy_body_data *id)
1186 gimple copy = NULL;
1187 struct walk_stmt_info wi;
1188 tree new_block;
1189 bool skip_first = false;
1191 /* Begin by recognizing trees that we'll completely rewrite for the
1192 inlining context. Our output for these trees is completely
1193 different from out input (e.g. RETURN_EXPR is deleted, and morphs
1194 into an edge). Further down, we'll handle trees that get
1195 duplicated and/or tweaked. */
1197 /* When requested, GIMPLE_RETURNs should be transformed to just the
1198 contained GIMPLE_ASSIGN. The branch semantics of the return will
1199 be handled elsewhere by manipulating the CFG rather than the
1200 statement. */
1201 if (gimple_code (stmt) == GIMPLE_RETURN && id->transform_return_to_modify)
1203 tree retval = gimple_return_retval (stmt);
1205 /* If we're returning something, just turn that into an
1206 assignment into the equivalent of the original RESULT_DECL.
1207 If RETVAL is just the result decl, the result decl has
1208 already been set (e.g. a recent "foo (&result_decl, ...)");
1209 just toss the entire GIMPLE_RETURN. */
1210 if (retval && TREE_CODE (retval) != RESULT_DECL)
1212 copy = gimple_build_assign (id->retvar, retval);
1213 /* id->retvar is already substituted. Skip it on later remapping. */
1214 skip_first = true;
1216 else
1217 return gimple_build_nop ();
1219 else if (gimple_has_substatements (stmt))
1221 gimple_seq s1, s2;
1223 /* When cloning bodies from the C++ front end, we will be handed bodies
1224 in High GIMPLE form. Handle here all the High GIMPLE statements that
1225 have embedded statements. */
1226 switch (gimple_code (stmt))
1228 case GIMPLE_BIND:
1229 copy = copy_gimple_bind (stmt, id);
1230 break;
1232 case GIMPLE_CATCH:
1233 s1 = remap_gimple_seq (gimple_catch_handler (stmt), id);
1234 copy = gimple_build_catch (gimple_catch_types (stmt), s1);
1235 break;
1237 case GIMPLE_EH_FILTER:
1238 s1 = remap_gimple_seq (gimple_eh_filter_failure (stmt), id);
1239 copy = gimple_build_eh_filter (gimple_eh_filter_types (stmt), s1);
1240 break;
1242 case GIMPLE_TRY:
1243 s1 = remap_gimple_seq (gimple_try_eval (stmt), id);
1244 s2 = remap_gimple_seq (gimple_try_cleanup (stmt), id);
1245 copy = gimple_build_try (s1, s2, gimple_try_kind (stmt));
1246 break;
1248 case GIMPLE_WITH_CLEANUP_EXPR:
1249 s1 = remap_gimple_seq (gimple_wce_cleanup (stmt), id);
1250 copy = gimple_build_wce (s1);
1251 break;
1253 case GIMPLE_OMP_PARALLEL:
1254 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1255 copy = gimple_build_omp_parallel
1256 (s1,
1257 gimple_omp_parallel_clauses (stmt),
1258 gimple_omp_parallel_child_fn (stmt),
1259 gimple_omp_parallel_data_arg (stmt));
1260 break;
1262 case GIMPLE_OMP_TASK:
1263 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1264 copy = gimple_build_omp_task
1265 (s1,
1266 gimple_omp_task_clauses (stmt),
1267 gimple_omp_task_child_fn (stmt),
1268 gimple_omp_task_data_arg (stmt),
1269 gimple_omp_task_copy_fn (stmt),
1270 gimple_omp_task_arg_size (stmt),
1271 gimple_omp_task_arg_align (stmt));
1272 break;
1274 case GIMPLE_OMP_FOR:
1275 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1276 s2 = remap_gimple_seq (gimple_omp_for_pre_body (stmt), id);
1277 copy = gimple_build_omp_for (s1, gimple_omp_for_clauses (stmt),
1278 gimple_omp_for_collapse (stmt), s2);
1280 size_t i;
1281 for (i = 0; i < gimple_omp_for_collapse (stmt); i++)
1283 gimple_omp_for_set_index (copy, i,
1284 gimple_omp_for_index (stmt, i));
1285 gimple_omp_for_set_initial (copy, i,
1286 gimple_omp_for_initial (stmt, i));
1287 gimple_omp_for_set_final (copy, i,
1288 gimple_omp_for_final (stmt, i));
1289 gimple_omp_for_set_incr (copy, i,
1290 gimple_omp_for_incr (stmt, i));
1291 gimple_omp_for_set_cond (copy, i,
1292 gimple_omp_for_cond (stmt, i));
1295 break;
1297 case GIMPLE_OMP_MASTER:
1298 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1299 copy = gimple_build_omp_master (s1);
1300 break;
1302 case GIMPLE_OMP_ORDERED:
1303 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1304 copy = gimple_build_omp_ordered (s1);
1305 break;
1307 case GIMPLE_OMP_SECTION:
1308 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1309 copy = gimple_build_omp_section (s1);
1310 break;
1312 case GIMPLE_OMP_SECTIONS:
1313 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1314 copy = gimple_build_omp_sections
1315 (s1, gimple_omp_sections_clauses (stmt));
1316 break;
1318 case GIMPLE_OMP_SINGLE:
1319 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1320 copy = gimple_build_omp_single
1321 (s1, gimple_omp_single_clauses (stmt));
1322 break;
1324 case GIMPLE_OMP_CRITICAL:
1325 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1326 copy
1327 = gimple_build_omp_critical (s1, gimple_omp_critical_name (stmt));
1328 break;
1330 default:
1331 gcc_unreachable ();
1334 else
1336 if (gimple_assign_copy_p (stmt)
1337 && gimple_assign_lhs (stmt) == gimple_assign_rhs1 (stmt)
1338 && auto_var_in_fn_p (gimple_assign_lhs (stmt), id->src_fn))
1340 /* Here we handle statements that are not completely rewritten.
1341 First we detect some inlining-induced bogosities for
1342 discarding. */
1344 /* Some assignments VAR = VAR; don't generate any rtl code
1345 and thus don't count as variable modification. Avoid
1346 keeping bogosities like 0 = 0. */
1347 tree decl = gimple_assign_lhs (stmt), value;
1348 tree *n;
1350 n = (tree *) pointer_map_contains (id->decl_map, decl);
1351 if (n)
1353 value = *n;
1354 STRIP_TYPE_NOPS (value);
1355 if (TREE_CONSTANT (value) || TREE_READONLY (value))
1356 return gimple_build_nop ();
1360 if (gimple_debug_bind_p (stmt))
1362 copy = gimple_build_debug_bind (gimple_debug_bind_get_var (stmt),
1363 gimple_debug_bind_get_value (stmt),
1364 stmt);
1365 VEC_safe_push (gimple, heap, id->debug_stmts, copy);
1366 return copy;
1369 /* Create a new deep copy of the statement. */
1370 copy = gimple_copy (stmt);
1372 /* Remap the region numbers for __builtin_eh_{pointer,filter},
1373 RESX and EH_DISPATCH. */
1374 if (id->eh_map)
1375 switch (gimple_code (copy))
1377 case GIMPLE_CALL:
1379 tree r, fndecl = gimple_call_fndecl (copy);
1380 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
1381 switch (DECL_FUNCTION_CODE (fndecl))
1383 case BUILT_IN_EH_COPY_VALUES:
1384 r = gimple_call_arg (copy, 1);
1385 r = remap_eh_region_tree_nr (r, id);
1386 gimple_call_set_arg (copy, 1, r);
1387 /* FALLTHRU */
1389 case BUILT_IN_EH_POINTER:
1390 case BUILT_IN_EH_FILTER:
1391 r = gimple_call_arg (copy, 0);
1392 r = remap_eh_region_tree_nr (r, id);
1393 gimple_call_set_arg (copy, 0, r);
1394 break;
1396 default:
1397 break;
1400 break;
1402 case GIMPLE_RESX:
1404 int r = gimple_resx_region (copy);
1405 r = remap_eh_region_nr (r, id);
1406 gimple_resx_set_region (copy, r);
1408 break;
1410 case GIMPLE_EH_DISPATCH:
1412 int r = gimple_eh_dispatch_region (copy);
1413 r = remap_eh_region_nr (r, id);
1414 gimple_eh_dispatch_set_region (copy, r);
1416 break;
1418 default:
1419 break;
1423 /* If STMT has a block defined, map it to the newly constructed
1424 block. When inlining we want statements without a block to
1425 appear in the block of the function call. */
1426 new_block = id->block;
1427 if (gimple_block (copy))
1429 tree *n;
1430 n = (tree *) pointer_map_contains (id->decl_map, gimple_block (copy));
1431 gcc_assert (n);
1432 new_block = *n;
1435 gimple_set_block (copy, new_block);
1437 if (gimple_debug_bind_p (copy))
1438 return copy;
1440 /* Remap all the operands in COPY. */
1441 memset (&wi, 0, sizeof (wi));
1442 wi.info = id;
1443 if (skip_first)
1444 walk_tree (gimple_op_ptr (copy, 1), remap_gimple_op_r, &wi, NULL);
1445 else
1446 walk_gimple_op (copy, remap_gimple_op_r, &wi);
1448 /* Clear the copied virtual operands. We are not remapping them here
1449 but are going to recreate them from scratch. */
1450 if (gimple_has_mem_ops (copy))
1452 gimple_set_vdef (copy, NULL_TREE);
1453 gimple_set_vuse (copy, NULL_TREE);
1456 return copy;
1460 /* Copy basic block, scale profile accordingly. Edges will be taken care of
1461 later */
1463 static basic_block
1464 copy_bb (copy_body_data *id, basic_block bb, int frequency_scale,
1465 gcov_type count_scale)
1467 gimple_stmt_iterator gsi, copy_gsi, seq_gsi;
1468 basic_block copy_basic_block;
1469 tree decl;
1470 gcov_type freq;
1472 /* create_basic_block() will append every new block to
1473 basic_block_info automatically. */
1474 copy_basic_block = create_basic_block (NULL, (void *) 0,
1475 (basic_block) bb->prev_bb->aux);
1476 copy_basic_block->count = bb->count * count_scale / REG_BR_PROB_BASE;
1478 /* We are going to rebuild frequencies from scratch. These values
1479 have just small importance to drive canonicalize_loop_headers. */
1480 freq = ((gcov_type)bb->frequency * frequency_scale / REG_BR_PROB_BASE);
1482 /* We recompute frequencies after inlining, so this is quite safe. */
1483 if (freq > BB_FREQ_MAX)
1484 freq = BB_FREQ_MAX;
1485 copy_basic_block->frequency = freq;
1487 copy_gsi = gsi_start_bb (copy_basic_block);
1489 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1491 gimple stmt = gsi_stmt (gsi);
1492 gimple orig_stmt = stmt;
1494 id->regimplify = false;
1495 stmt = remap_gimple_stmt (stmt, id);
1496 if (gimple_nop_p (stmt))
1497 continue;
1499 gimple_duplicate_stmt_histograms (cfun, stmt, id->src_cfun, orig_stmt);
1500 seq_gsi = copy_gsi;
1502 /* With return slot optimization we can end up with
1503 non-gimple (foo *)&this->m, fix that here. */
1504 if (is_gimple_assign (stmt)
1505 && gimple_assign_rhs_code (stmt) == NOP_EXPR
1506 && !is_gimple_val (gimple_assign_rhs1 (stmt)))
1508 tree new_rhs;
1509 new_rhs = force_gimple_operand_gsi (&seq_gsi,
1510 gimple_assign_rhs1 (stmt),
1511 true, NULL, false, GSI_NEW_STMT);
1512 gimple_assign_set_rhs1 (stmt, new_rhs);
1513 id->regimplify = false;
1516 gsi_insert_after (&seq_gsi, stmt, GSI_NEW_STMT);
1518 if (id->regimplify)
1519 gimple_regimplify_operands (stmt, &seq_gsi);
1521 /* If copy_basic_block has been empty at the start of this iteration,
1522 call gsi_start_bb again to get at the newly added statements. */
1523 if (gsi_end_p (copy_gsi))
1524 copy_gsi = gsi_start_bb (copy_basic_block);
1525 else
1526 gsi_next (&copy_gsi);
1528 /* Process the new statement. The call to gimple_regimplify_operands
1529 possibly turned the statement into multiple statements, we
1530 need to process all of them. */
1533 tree fn;
1535 stmt = gsi_stmt (copy_gsi);
1536 if (is_gimple_call (stmt)
1537 && gimple_call_va_arg_pack_p (stmt)
1538 && id->gimple_call)
1540 /* __builtin_va_arg_pack () should be replaced by
1541 all arguments corresponding to ... in the caller. */
1542 tree p;
1543 gimple new_call;
1544 VEC(tree, heap) *argarray;
1545 size_t nargs = gimple_call_num_args (id->gimple_call);
1546 size_t n;
1548 for (p = DECL_ARGUMENTS (id->src_fn); p; p = TREE_CHAIN (p))
1549 nargs--;
1551 /* Create the new array of arguments. */
1552 n = nargs + gimple_call_num_args (stmt);
1553 argarray = VEC_alloc (tree, heap, n);
1554 VEC_safe_grow (tree, heap, argarray, n);
1556 /* Copy all the arguments before '...' */
1557 memcpy (VEC_address (tree, argarray),
1558 gimple_call_arg_ptr (stmt, 0),
1559 gimple_call_num_args (stmt) * sizeof (tree));
1561 /* Append the arguments passed in '...' */
1562 memcpy (VEC_address(tree, argarray) + gimple_call_num_args (stmt),
1563 gimple_call_arg_ptr (id->gimple_call, 0)
1564 + (gimple_call_num_args (id->gimple_call) - nargs),
1565 nargs * sizeof (tree));
1567 new_call = gimple_build_call_vec (gimple_call_fn (stmt),
1568 argarray);
1570 VEC_free (tree, heap, argarray);
1572 /* Copy all GIMPLE_CALL flags, location and block, except
1573 GF_CALL_VA_ARG_PACK. */
1574 gimple_call_copy_flags (new_call, stmt);
1575 gimple_call_set_va_arg_pack (new_call, false);
1576 gimple_set_location (new_call, gimple_location (stmt));
1577 gimple_set_block (new_call, gimple_block (stmt));
1578 gimple_call_set_lhs (new_call, gimple_call_lhs (stmt));
1580 gsi_replace (&copy_gsi, new_call, false);
1581 gimple_set_bb (stmt, NULL);
1582 stmt = new_call;
1584 else if (is_gimple_call (stmt)
1585 && id->gimple_call
1586 && (decl = gimple_call_fndecl (stmt))
1587 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
1588 && DECL_FUNCTION_CODE (decl) == BUILT_IN_VA_ARG_PACK_LEN)
1590 /* __builtin_va_arg_pack_len () should be replaced by
1591 the number of anonymous arguments. */
1592 size_t nargs = gimple_call_num_args (id->gimple_call);
1593 tree count, p;
1594 gimple new_stmt;
1596 for (p = DECL_ARGUMENTS (id->src_fn); p; p = TREE_CHAIN (p))
1597 nargs--;
1599 count = build_int_cst (integer_type_node, nargs);
1600 new_stmt = gimple_build_assign (gimple_call_lhs (stmt), count);
1601 gsi_replace (&copy_gsi, new_stmt, false);
1602 stmt = new_stmt;
1605 /* Statements produced by inlining can be unfolded, especially
1606 when we constant propagated some operands. We can't fold
1607 them right now for two reasons:
1608 1) folding require SSA_NAME_DEF_STMTs to be correct
1609 2) we can't change function calls to builtins.
1610 So we just mark statement for later folding. We mark
1611 all new statements, instead just statements that has changed
1612 by some nontrivial substitution so even statements made
1613 foldable indirectly are updated. If this turns out to be
1614 expensive, copy_body can be told to watch for nontrivial
1615 changes. */
1616 if (id->statements_to_fold)
1617 pointer_set_insert (id->statements_to_fold, stmt);
1619 /* We're duplicating a CALL_EXPR. Find any corresponding
1620 callgraph edges and update or duplicate them. */
1621 if (is_gimple_call (stmt))
1623 struct cgraph_edge *edge;
1624 int flags;
1626 switch (id->transform_call_graph_edges)
1628 case CB_CGE_DUPLICATE:
1629 edge = cgraph_edge (id->src_node, orig_stmt);
1630 if (edge)
1632 int edge_freq = edge->frequency;
1633 edge = cgraph_clone_edge (edge, id->dst_node, stmt,
1634 gimple_uid (stmt),
1635 REG_BR_PROB_BASE, CGRAPH_FREQ_BASE,
1636 edge->frequency, true);
1637 /* We could also just rescale the frequency, but
1638 doing so would introduce roundoff errors and make
1639 verifier unhappy. */
1640 edge->frequency
1641 = compute_call_stmt_bb_frequency (id->dst_node->decl,
1642 copy_basic_block);
1643 if (dump_file
1644 && profile_status_for_function (cfun) != PROFILE_ABSENT
1645 && (edge_freq > edge->frequency + 10
1646 || edge_freq < edge->frequency - 10))
1648 fprintf (dump_file, "Edge frequency estimated by "
1649 "cgraph %i diverge from inliner's estimate %i\n",
1650 edge_freq,
1651 edge->frequency);
1652 fprintf (dump_file,
1653 "Orig bb: %i, orig bb freq %i, new bb freq %i\n",
1654 bb->index,
1655 bb->frequency,
1656 copy_basic_block->frequency);
1659 break;
1661 case CB_CGE_MOVE_CLONES:
1662 cgraph_set_call_stmt_including_clones (id->dst_node,
1663 orig_stmt, stmt);
1664 edge = cgraph_edge (id->dst_node, stmt);
1665 break;
1667 case CB_CGE_MOVE:
1668 edge = cgraph_edge (id->dst_node, orig_stmt);
1669 if (edge)
1670 cgraph_set_call_stmt (edge, stmt);
1671 break;
1673 default:
1674 gcc_unreachable ();
1677 /* Constant propagation on argument done during inlining
1678 may create new direct call. Produce an edge for it. */
1679 if ((!edge
1680 || (edge->indirect_call
1681 && id->transform_call_graph_edges == CB_CGE_MOVE_CLONES))
1682 && is_gimple_call (stmt)
1683 && (fn = gimple_call_fndecl (stmt)) != NULL)
1685 struct cgraph_node *dest = cgraph_node (fn);
1687 /* We have missing edge in the callgraph. This can happen
1688 when previous inlining turned an indirect call into a
1689 direct call by constant propagating arguments or we are
1690 producing dead clone (for further clonning). In all
1691 other cases we hit a bug (incorrect node sharing is the
1692 most common reason for missing edges). */
1693 gcc_assert (dest->needed || !dest->analyzed
1694 || !id->src_node->analyzed);
1695 if (id->transform_call_graph_edges == CB_CGE_MOVE_CLONES)
1696 cgraph_create_edge_including_clones
1697 (id->dst_node, dest, stmt, bb->count,
1698 compute_call_stmt_bb_frequency (id->dst_node->decl,
1699 copy_basic_block),
1700 bb->loop_depth, CIF_ORIGINALLY_INDIRECT_CALL);
1701 else
1702 cgraph_create_edge (id->dst_node, dest, stmt,
1703 bb->count, CGRAPH_FREQ_BASE,
1704 bb->loop_depth)->inline_failed
1705 = CIF_ORIGINALLY_INDIRECT_CALL;
1706 if (dump_file)
1708 fprintf (dump_file, "Created new direct edge to %s",
1709 cgraph_node_name (dest));
1713 flags = gimple_call_flags (stmt);
1714 if (flags & ECF_MAY_BE_ALLOCA)
1715 cfun->calls_alloca = true;
1716 if (flags & ECF_RETURNS_TWICE)
1717 cfun->calls_setjmp = true;
1720 maybe_duplicate_eh_stmt_fn (cfun, stmt, id->src_cfun, orig_stmt,
1721 id->eh_map, id->eh_lp_nr);
1723 if (gimple_in_ssa_p (cfun) && !is_gimple_debug (stmt))
1725 ssa_op_iter i;
1726 tree def;
1728 find_new_referenced_vars (gsi_stmt (copy_gsi));
1729 FOR_EACH_SSA_TREE_OPERAND (def, stmt, i, SSA_OP_DEF)
1730 if (TREE_CODE (def) == SSA_NAME)
1731 SSA_NAME_DEF_STMT (def) = stmt;
1734 gsi_next (&copy_gsi);
1736 while (!gsi_end_p (copy_gsi));
1738 copy_gsi = gsi_last_bb (copy_basic_block);
1741 return copy_basic_block;
1744 /* Inserting Single Entry Multiple Exit region in SSA form into code in SSA
1745 form is quite easy, since dominator relationship for old basic blocks does
1746 not change.
1748 There is however exception where inlining might change dominator relation
1749 across EH edges from basic block within inlined functions destinating
1750 to landing pads in function we inline into.
1752 The function fills in PHI_RESULTs of such PHI nodes if they refer
1753 to gimple regs. Otherwise, the function mark PHI_RESULT of such
1754 PHI nodes for renaming. For non-gimple regs, renaming is safe: the
1755 EH edges are abnormal and SSA_NAME_OCCURS_IN_ABNORMAL_PHI must be
1756 set, and this means that there will be no overlapping live ranges
1757 for the underlying symbol.
1759 This might change in future if we allow redirecting of EH edges and
1760 we might want to change way build CFG pre-inlining to include
1761 all the possible edges then. */
1762 static void
1763 update_ssa_across_abnormal_edges (basic_block bb, basic_block ret_bb,
1764 bool can_throw, bool nonlocal_goto)
1766 edge e;
1767 edge_iterator ei;
1769 FOR_EACH_EDGE (e, ei, bb->succs)
1770 if (!e->dest->aux
1771 || ((basic_block)e->dest->aux)->index == ENTRY_BLOCK)
1773 gimple phi;
1774 gimple_stmt_iterator si;
1776 if (!nonlocal_goto)
1777 gcc_assert (e->flags & EDGE_EH);
1779 if (!can_throw)
1780 gcc_assert (!(e->flags & EDGE_EH));
1782 for (si = gsi_start_phis (e->dest); !gsi_end_p (si); gsi_next (&si))
1784 edge re;
1786 phi = gsi_stmt (si);
1788 /* There shouldn't be any PHI nodes in the ENTRY_BLOCK. */
1789 gcc_assert (!e->dest->aux);
1791 gcc_assert ((e->flags & EDGE_EH)
1792 || SSA_NAME_OCCURS_IN_ABNORMAL_PHI (PHI_RESULT (phi)));
1794 if (!is_gimple_reg (PHI_RESULT (phi)))
1796 mark_sym_for_renaming (SSA_NAME_VAR (PHI_RESULT (phi)));
1797 continue;
1800 re = find_edge (ret_bb, e->dest);
1801 gcc_assert (re);
1802 gcc_assert ((re->flags & (EDGE_EH | EDGE_ABNORMAL))
1803 == (e->flags & (EDGE_EH | EDGE_ABNORMAL)));
1805 SET_USE (PHI_ARG_DEF_PTR_FROM_EDGE (phi, e),
1806 USE_FROM_PTR (PHI_ARG_DEF_PTR_FROM_EDGE (phi, re)));
1812 /* Copy edges from BB into its copy constructed earlier, scale profile
1813 accordingly. Edges will be taken care of later. Assume aux
1814 pointers to point to the copies of each BB. */
1816 static void
1817 copy_edges_for_bb (basic_block bb, gcov_type count_scale, basic_block ret_bb)
1819 basic_block new_bb = (basic_block) bb->aux;
1820 edge_iterator ei;
1821 edge old_edge;
1822 gimple_stmt_iterator si;
1823 int flags;
1825 /* Use the indices from the original blocks to create edges for the
1826 new ones. */
1827 FOR_EACH_EDGE (old_edge, ei, bb->succs)
1828 if (!(old_edge->flags & EDGE_EH))
1830 edge new_edge;
1832 flags = old_edge->flags;
1834 /* Return edges do get a FALLTHRU flag when the get inlined. */
1835 if (old_edge->dest->index == EXIT_BLOCK && !old_edge->flags
1836 && old_edge->dest->aux != EXIT_BLOCK_PTR)
1837 flags |= EDGE_FALLTHRU;
1838 new_edge = make_edge (new_bb, (basic_block) old_edge->dest->aux, flags);
1839 new_edge->count = old_edge->count * count_scale / REG_BR_PROB_BASE;
1840 new_edge->probability = old_edge->probability;
1843 if (bb->index == ENTRY_BLOCK || bb->index == EXIT_BLOCK)
1844 return;
1846 for (si = gsi_start_bb (new_bb); !gsi_end_p (si);)
1848 gimple copy_stmt;
1849 bool can_throw, nonlocal_goto;
1851 copy_stmt = gsi_stmt (si);
1852 if (!is_gimple_debug (copy_stmt))
1854 update_stmt (copy_stmt);
1855 if (gimple_in_ssa_p (cfun))
1856 mark_symbols_for_renaming (copy_stmt);
1859 /* Do this before the possible split_block. */
1860 gsi_next (&si);
1862 /* If this tree could throw an exception, there are two
1863 cases where we need to add abnormal edge(s): the
1864 tree wasn't in a region and there is a "current
1865 region" in the caller; or the original tree had
1866 EH edges. In both cases split the block after the tree,
1867 and add abnormal edge(s) as needed; we need both
1868 those from the callee and the caller.
1869 We check whether the copy can throw, because the const
1870 propagation can change an INDIRECT_REF which throws
1871 into a COMPONENT_REF which doesn't. If the copy
1872 can throw, the original could also throw. */
1873 can_throw = stmt_can_throw_internal (copy_stmt);
1874 nonlocal_goto = stmt_can_make_abnormal_goto (copy_stmt);
1876 if (can_throw || nonlocal_goto)
1878 if (!gsi_end_p (si))
1879 /* Note that bb's predecessor edges aren't necessarily
1880 right at this point; split_block doesn't care. */
1882 edge e = split_block (new_bb, copy_stmt);
1884 new_bb = e->dest;
1885 new_bb->aux = e->src->aux;
1886 si = gsi_start_bb (new_bb);
1890 if (gimple_code (copy_stmt) == GIMPLE_EH_DISPATCH)
1891 make_eh_dispatch_edges (copy_stmt);
1892 else if (can_throw)
1893 make_eh_edges (copy_stmt);
1895 if (nonlocal_goto)
1896 make_abnormal_goto_edges (gimple_bb (copy_stmt), true);
1898 if ((can_throw || nonlocal_goto)
1899 && gimple_in_ssa_p (cfun))
1900 update_ssa_across_abnormal_edges (gimple_bb (copy_stmt), ret_bb,
1901 can_throw, nonlocal_goto);
1905 /* Copy the PHIs. All blocks and edges are copied, some blocks
1906 was possibly split and new outgoing EH edges inserted.
1907 BB points to the block of original function and AUX pointers links
1908 the original and newly copied blocks. */
1910 static void
1911 copy_phis_for_bb (basic_block bb, copy_body_data *id)
1913 basic_block const new_bb = (basic_block) bb->aux;
1914 edge_iterator ei;
1915 gimple phi;
1916 gimple_stmt_iterator si;
1918 for (si = gsi_start (phi_nodes (bb)); !gsi_end_p (si); gsi_next (&si))
1920 tree res, new_res;
1921 gimple new_phi;
1922 edge new_edge;
1924 phi = gsi_stmt (si);
1925 res = PHI_RESULT (phi);
1926 new_res = res;
1927 if (is_gimple_reg (res))
1929 walk_tree (&new_res, copy_tree_body_r, id, NULL);
1930 SSA_NAME_DEF_STMT (new_res)
1931 = new_phi = create_phi_node (new_res, new_bb);
1932 FOR_EACH_EDGE (new_edge, ei, new_bb->preds)
1934 edge const old_edge
1935 = find_edge ((basic_block) new_edge->src->aux, bb);
1936 tree arg = PHI_ARG_DEF_FROM_EDGE (phi, old_edge);
1937 tree new_arg = arg;
1938 tree block = id->block;
1939 id->block = NULL_TREE;
1940 walk_tree (&new_arg, copy_tree_body_r, id, NULL);
1941 id->block = block;
1942 gcc_assert (new_arg);
1943 /* With return slot optimization we can end up with
1944 non-gimple (foo *)&this->m, fix that here. */
1945 if (TREE_CODE (new_arg) != SSA_NAME
1946 && TREE_CODE (new_arg) != FUNCTION_DECL
1947 && !is_gimple_val (new_arg))
1949 gimple_seq stmts = NULL;
1950 new_arg = force_gimple_operand (new_arg, &stmts, true, NULL);
1951 gsi_insert_seq_on_edge_immediate (new_edge, stmts);
1953 add_phi_arg (new_phi, new_arg, new_edge,
1954 gimple_phi_arg_location_from_edge (phi, old_edge));
1961 /* Wrapper for remap_decl so it can be used as a callback. */
1963 static tree
1964 remap_decl_1 (tree decl, void *data)
1966 return remap_decl (decl, (copy_body_data *) data);
1969 /* Build struct function and associated datastructures for the new clone
1970 NEW_FNDECL to be build. CALLEE_FNDECL is the original */
1972 static void
1973 initialize_cfun (tree new_fndecl, tree callee_fndecl, gcov_type count)
1975 struct function *src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
1976 gcov_type count_scale;
1978 if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count)
1979 count_scale = (REG_BR_PROB_BASE * count
1980 / ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count);
1981 else
1982 count_scale = REG_BR_PROB_BASE;
1984 /* Register specific tree functions. */
1985 gimple_register_cfg_hooks ();
1987 /* Get clean struct function. */
1988 push_struct_function (new_fndecl);
1990 /* We will rebuild these, so just sanity check that they are empty. */
1991 gcc_assert (VALUE_HISTOGRAMS (cfun) == NULL);
1992 gcc_assert (cfun->local_decls == NULL);
1993 gcc_assert (cfun->cfg == NULL);
1994 gcc_assert (cfun->decl == new_fndecl);
1996 /* Copy items we preserve during clonning. */
1997 cfun->static_chain_decl = src_cfun->static_chain_decl;
1998 cfun->nonlocal_goto_save_area = src_cfun->nonlocal_goto_save_area;
1999 cfun->function_end_locus = src_cfun->function_end_locus;
2000 cfun->curr_properties = src_cfun->curr_properties;
2001 cfun->last_verified = src_cfun->last_verified;
2002 cfun->va_list_gpr_size = src_cfun->va_list_gpr_size;
2003 cfun->va_list_fpr_size = src_cfun->va_list_fpr_size;
2004 cfun->function_frequency = src_cfun->function_frequency;
2005 cfun->has_nonlocal_label = src_cfun->has_nonlocal_label;
2006 cfun->stdarg = src_cfun->stdarg;
2007 cfun->dont_save_pending_sizes_p = src_cfun->dont_save_pending_sizes_p;
2008 cfun->after_inlining = src_cfun->after_inlining;
2009 cfun->returns_struct = src_cfun->returns_struct;
2010 cfun->returns_pcc_struct = src_cfun->returns_pcc_struct;
2011 cfun->after_tree_profile = src_cfun->after_tree_profile;
2013 init_empty_tree_cfg ();
2015 profile_status_for_function (cfun) = profile_status_for_function (src_cfun);
2016 ENTRY_BLOCK_PTR->count =
2017 (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count * count_scale /
2018 REG_BR_PROB_BASE);
2019 ENTRY_BLOCK_PTR->frequency
2020 = ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency;
2021 EXIT_BLOCK_PTR->count =
2022 (EXIT_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count * count_scale /
2023 REG_BR_PROB_BASE);
2024 EXIT_BLOCK_PTR->frequency =
2025 EXIT_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency;
2026 if (src_cfun->eh)
2027 init_eh_for_function ();
2029 if (src_cfun->gimple_df)
2031 init_tree_ssa (cfun);
2032 cfun->gimple_df->in_ssa_p = true;
2033 init_ssa_operands ();
2035 pop_cfun ();
2038 /* Make a copy of the body of FN so that it can be inserted inline in
2039 another function. Walks FN via CFG, returns new fndecl. */
2041 static tree
2042 copy_cfg_body (copy_body_data * id, gcov_type count, int frequency_scale,
2043 basic_block entry_block_map, basic_block exit_block_map)
2045 tree callee_fndecl = id->src_fn;
2046 /* Original cfun for the callee, doesn't change. */
2047 struct function *src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
2048 struct function *cfun_to_copy;
2049 basic_block bb;
2050 tree new_fndecl = NULL;
2051 gcov_type count_scale;
2052 int last;
2054 if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count)
2055 count_scale = (REG_BR_PROB_BASE * count
2056 / ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count);
2057 else
2058 count_scale = REG_BR_PROB_BASE;
2060 /* Register specific tree functions. */
2061 gimple_register_cfg_hooks ();
2063 /* Must have a CFG here at this point. */
2064 gcc_assert (ENTRY_BLOCK_PTR_FOR_FUNCTION
2065 (DECL_STRUCT_FUNCTION (callee_fndecl)));
2067 cfun_to_copy = id->src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
2069 ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy)->aux = entry_block_map;
2070 EXIT_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy)->aux = exit_block_map;
2071 entry_block_map->aux = ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy);
2072 exit_block_map->aux = EXIT_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy);
2074 /* Duplicate any exception-handling regions. */
2075 if (cfun->eh)
2076 id->eh_map = duplicate_eh_regions (cfun_to_copy, NULL, id->eh_lp_nr,
2077 remap_decl_1, id);
2079 /* Use aux pointers to map the original blocks to copy. */
2080 FOR_EACH_BB_FN (bb, cfun_to_copy)
2082 basic_block new_bb = copy_bb (id, bb, frequency_scale, count_scale);
2083 bb->aux = new_bb;
2084 new_bb->aux = bb;
2087 last = last_basic_block;
2089 /* Now that we've duplicated the blocks, duplicate their edges. */
2090 FOR_ALL_BB_FN (bb, cfun_to_copy)
2091 copy_edges_for_bb (bb, count_scale, exit_block_map);
2093 if (gimple_in_ssa_p (cfun))
2094 FOR_ALL_BB_FN (bb, cfun_to_copy)
2095 copy_phis_for_bb (bb, id);
2097 FOR_ALL_BB_FN (bb, cfun_to_copy)
2099 ((basic_block)bb->aux)->aux = NULL;
2100 bb->aux = NULL;
2103 /* Zero out AUX fields of newly created block during EH edge
2104 insertion. */
2105 for (; last < last_basic_block; last++)
2106 BASIC_BLOCK (last)->aux = NULL;
2107 entry_block_map->aux = NULL;
2108 exit_block_map->aux = NULL;
2110 if (id->eh_map)
2112 pointer_map_destroy (id->eh_map);
2113 id->eh_map = NULL;
2116 return new_fndecl;
2119 /* Copy the debug STMT using ID. We deal with these statements in a
2120 special way: if any variable in their VALUE expression wasn't
2121 remapped yet, we won't remap it, because that would get decl uids
2122 out of sync, causing codegen differences between -g and -g0. If
2123 this arises, we drop the VALUE expression altogether. */
2125 static void
2126 copy_debug_stmt (gimple stmt, copy_body_data *id)
2128 tree t, *n;
2129 struct walk_stmt_info wi;
2131 t = id->block;
2132 if (gimple_block (stmt))
2134 tree *n;
2135 n = (tree *) pointer_map_contains (id->decl_map, gimple_block (stmt));
2136 if (n)
2137 t = *n;
2139 gimple_set_block (stmt, t);
2141 /* Remap all the operands in COPY. */
2142 memset (&wi, 0, sizeof (wi));
2143 wi.info = id;
2145 processing_debug_stmt = 1;
2147 t = gimple_debug_bind_get_var (stmt);
2149 if (TREE_CODE (t) == PARM_DECL && id->debug_map
2150 && (n = (tree *) pointer_map_contains (id->debug_map, t)))
2152 gcc_assert (TREE_CODE (*n) == VAR_DECL);
2153 t = *n;
2155 else
2156 walk_tree (&t, remap_gimple_op_r, &wi, NULL);
2158 gimple_debug_bind_set_var (stmt, t);
2160 if (gimple_debug_bind_has_value_p (stmt))
2161 walk_tree (gimple_debug_bind_get_value_ptr (stmt),
2162 remap_gimple_op_r, &wi, NULL);
2164 /* Punt if any decl couldn't be remapped. */
2165 if (processing_debug_stmt < 0)
2166 gimple_debug_bind_reset_value (stmt);
2168 processing_debug_stmt = 0;
2170 update_stmt (stmt);
2171 if (gimple_in_ssa_p (cfun))
2172 mark_symbols_for_renaming (stmt);
2175 /* Process deferred debug stmts. In order to give values better odds
2176 of being successfully remapped, we delay the processing of debug
2177 stmts until all other stmts that might require remapping are
2178 processed. */
2180 static void
2181 copy_debug_stmts (copy_body_data *id)
2183 size_t i;
2184 gimple stmt;
2186 if (!id->debug_stmts)
2187 return;
2189 for (i = 0; VEC_iterate (gimple, id->debug_stmts, i, stmt); i++)
2190 copy_debug_stmt (stmt, id);
2192 VEC_free (gimple, heap, id->debug_stmts);
2195 /* Make a copy of the body of SRC_FN so that it can be inserted inline in
2196 another function. */
2198 static tree
2199 copy_tree_body (copy_body_data *id)
2201 tree fndecl = id->src_fn;
2202 tree body = DECL_SAVED_TREE (fndecl);
2204 walk_tree (&body, copy_tree_body_r, id, NULL);
2206 return body;
2209 /* Make a copy of the body of FN so that it can be inserted inline in
2210 another function. */
2212 static tree
2213 copy_body (copy_body_data *id, gcov_type count, int frequency_scale,
2214 basic_block entry_block_map, basic_block exit_block_map)
2216 tree fndecl = id->src_fn;
2217 tree body;
2219 /* If this body has a CFG, walk CFG and copy. */
2220 gcc_assert (ENTRY_BLOCK_PTR_FOR_FUNCTION (DECL_STRUCT_FUNCTION (fndecl)));
2221 body = copy_cfg_body (id, count, frequency_scale, entry_block_map, exit_block_map);
2222 copy_debug_stmts (id);
2224 return body;
2227 /* Return true if VALUE is an ADDR_EXPR of an automatic variable
2228 defined in function FN, or of a data member thereof. */
2230 static bool
2231 self_inlining_addr_expr (tree value, tree fn)
2233 tree var;
2235 if (TREE_CODE (value) != ADDR_EXPR)
2236 return false;
2238 var = get_base_address (TREE_OPERAND (value, 0));
2240 return var && auto_var_in_fn_p (var, fn);
2243 /* Append to BB a debug annotation that binds VAR to VALUE, inheriting
2244 lexical block and line number information from base_stmt, if given,
2245 or from the last stmt of the block otherwise. */
2247 static gimple
2248 insert_init_debug_bind (copy_body_data *id,
2249 basic_block bb, tree var, tree value,
2250 gimple base_stmt)
2252 gimple note;
2253 gimple_stmt_iterator gsi;
2254 tree tracked_var;
2256 if (!gimple_in_ssa_p (id->src_cfun))
2257 return NULL;
2259 if (!MAY_HAVE_DEBUG_STMTS)
2260 return NULL;
2262 tracked_var = target_for_debug_bind (var);
2263 if (!tracked_var)
2264 return NULL;
2266 if (bb)
2268 gsi = gsi_last_bb (bb);
2269 if (!base_stmt && !gsi_end_p (gsi))
2270 base_stmt = gsi_stmt (gsi);
2273 note = gimple_build_debug_bind (tracked_var, value, base_stmt);
2275 if (bb)
2277 if (!gsi_end_p (gsi))
2278 gsi_insert_after (&gsi, note, GSI_SAME_STMT);
2279 else
2280 gsi_insert_before (&gsi, note, GSI_SAME_STMT);
2283 return note;
2286 static void
2287 insert_init_stmt (copy_body_data *id, basic_block bb, gimple init_stmt)
2289 /* If VAR represents a zero-sized variable, it's possible that the
2290 assignment statement may result in no gimple statements. */
2291 if (init_stmt)
2293 gimple_stmt_iterator si = gsi_last_bb (bb);
2295 /* We can end up with init statements that store to a non-register
2296 from a rhs with a conversion. Handle that here by forcing the
2297 rhs into a temporary. gimple_regimplify_operands is not
2298 prepared to do this for us. */
2299 if (!is_gimple_debug (init_stmt)
2300 && !is_gimple_reg (gimple_assign_lhs (init_stmt))
2301 && is_gimple_reg_type (TREE_TYPE (gimple_assign_lhs (init_stmt)))
2302 && gimple_assign_rhs_class (init_stmt) == GIMPLE_UNARY_RHS)
2304 tree rhs = build1 (gimple_assign_rhs_code (init_stmt),
2305 gimple_expr_type (init_stmt),
2306 gimple_assign_rhs1 (init_stmt));
2307 rhs = force_gimple_operand_gsi (&si, rhs, true, NULL_TREE, false,
2308 GSI_NEW_STMT);
2309 gimple_assign_set_rhs_code (init_stmt, TREE_CODE (rhs));
2310 gimple_assign_set_rhs1 (init_stmt, rhs);
2312 gsi_insert_after (&si, init_stmt, GSI_NEW_STMT);
2313 gimple_regimplify_operands (init_stmt, &si);
2314 mark_symbols_for_renaming (init_stmt);
2316 if (!is_gimple_debug (init_stmt) && MAY_HAVE_DEBUG_STMTS)
2318 tree var, def = gimple_assign_lhs (init_stmt);
2320 if (TREE_CODE (def) == SSA_NAME)
2321 var = SSA_NAME_VAR (def);
2322 else
2323 var = def;
2325 insert_init_debug_bind (id, bb, var, def, init_stmt);
2330 /* Initialize parameter P with VALUE. If needed, produce init statement
2331 at the end of BB. When BB is NULL, we return init statement to be
2332 output later. */
2333 static gimple
2334 setup_one_parameter (copy_body_data *id, tree p, tree value, tree fn,
2335 basic_block bb, tree *vars)
2337 gimple init_stmt = NULL;
2338 tree var;
2339 tree rhs = value;
2340 tree def = (gimple_in_ssa_p (cfun)
2341 ? gimple_default_def (id->src_cfun, p) : NULL);
2343 if (value
2344 && value != error_mark_node
2345 && !useless_type_conversion_p (TREE_TYPE (p), TREE_TYPE (value)))
2347 if (fold_convertible_p (TREE_TYPE (p), value))
2348 rhs = fold_build1 (NOP_EXPR, TREE_TYPE (p), value);
2349 else
2350 /* ??? For valid (GIMPLE) programs we should not end up here.
2351 Still if something has gone wrong and we end up with truly
2352 mismatched types here, fall back to using a VIEW_CONVERT_EXPR
2353 to not leak invalid GIMPLE to the following passes. */
2354 rhs = fold_build1 (VIEW_CONVERT_EXPR, TREE_TYPE (p), value);
2357 /* Make an equivalent VAR_DECL. Note that we must NOT remap the type
2358 here since the type of this decl must be visible to the calling
2359 function. */
2360 var = copy_decl_to_var (p, id);
2362 /* We're actually using the newly-created var. */
2363 if (gimple_in_ssa_p (cfun) && TREE_CODE (var) == VAR_DECL)
2365 get_var_ann (var);
2366 add_referenced_var (var);
2369 /* Declare this new variable. */
2370 TREE_CHAIN (var) = *vars;
2371 *vars = var;
2373 /* Make gimplifier happy about this variable. */
2374 DECL_SEEN_IN_BIND_EXPR_P (var) = 1;
2376 /* If the parameter is never assigned to, has no SSA_NAMEs created,
2377 we would not need to create a new variable here at all, if it
2378 weren't for debug info. Still, we can just use the argument
2379 value. */
2380 if (TREE_READONLY (p)
2381 && !TREE_ADDRESSABLE (p)
2382 && value && !TREE_SIDE_EFFECTS (value)
2383 && !def)
2385 /* We may produce non-gimple trees by adding NOPs or introduce
2386 invalid sharing when operand is not really constant.
2387 It is not big deal to prohibit constant propagation here as
2388 we will constant propagate in DOM1 pass anyway. */
2389 if (is_gimple_min_invariant (value)
2390 && useless_type_conversion_p (TREE_TYPE (p),
2391 TREE_TYPE (value))
2392 /* We have to be very careful about ADDR_EXPR. Make sure
2393 the base variable isn't a local variable of the inlined
2394 function, e.g., when doing recursive inlining, direct or
2395 mutually-recursive or whatever, which is why we don't
2396 just test whether fn == current_function_decl. */
2397 && ! self_inlining_addr_expr (value, fn))
2399 insert_decl_map (id, p, value);
2400 insert_debug_decl_map (id, p, var);
2401 return insert_init_debug_bind (id, bb, var, value, NULL);
2405 /* Register the VAR_DECL as the equivalent for the PARM_DECL;
2406 that way, when the PARM_DECL is encountered, it will be
2407 automatically replaced by the VAR_DECL. */
2408 insert_decl_map (id, p, var);
2410 /* Even if P was TREE_READONLY, the new VAR should not be.
2411 In the original code, we would have constructed a
2412 temporary, and then the function body would have never
2413 changed the value of P. However, now, we will be
2414 constructing VAR directly. The constructor body may
2415 change its value multiple times as it is being
2416 constructed. Therefore, it must not be TREE_READONLY;
2417 the back-end assumes that TREE_READONLY variable is
2418 assigned to only once. */
2419 if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (p)))
2420 TREE_READONLY (var) = 0;
2422 /* If there is no setup required and we are in SSA, take the easy route
2423 replacing all SSA names representing the function parameter by the
2424 SSA name passed to function.
2426 We need to construct map for the variable anyway as it might be used
2427 in different SSA names when parameter is set in function.
2429 Do replacement at -O0 for const arguments replaced by constant.
2430 This is important for builtin_constant_p and other construct requiring
2431 constant argument to be visible in inlined function body. */
2432 if (gimple_in_ssa_p (cfun) && rhs && def && is_gimple_reg (p)
2433 && (optimize
2434 || (TREE_READONLY (p)
2435 && is_gimple_min_invariant (rhs)))
2436 && (TREE_CODE (rhs) == SSA_NAME
2437 || is_gimple_min_invariant (rhs))
2438 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (def))
2440 insert_decl_map (id, def, rhs);
2441 return insert_init_debug_bind (id, bb, var, rhs, NULL);
2444 /* If the value of argument is never used, don't care about initializing
2445 it. */
2446 if (optimize && gimple_in_ssa_p (cfun) && !def && is_gimple_reg (p))
2448 gcc_assert (!value || !TREE_SIDE_EFFECTS (value));
2449 return insert_init_debug_bind (id, bb, var, rhs, NULL);
2452 /* Initialize this VAR_DECL from the equivalent argument. Convert
2453 the argument to the proper type in case it was promoted. */
2454 if (value)
2456 if (rhs == error_mark_node)
2458 insert_decl_map (id, p, var);
2459 return insert_init_debug_bind (id, bb, var, rhs, NULL);
2462 STRIP_USELESS_TYPE_CONVERSION (rhs);
2464 /* We want to use MODIFY_EXPR, not INIT_EXPR here so that we
2465 keep our trees in gimple form. */
2466 if (def && gimple_in_ssa_p (cfun) && is_gimple_reg (p))
2468 def = remap_ssa_name (def, id);
2469 init_stmt = gimple_build_assign (def, rhs);
2470 SSA_NAME_IS_DEFAULT_DEF (def) = 0;
2471 set_default_def (var, NULL);
2473 else
2474 init_stmt = gimple_build_assign (var, rhs);
2476 if (bb && init_stmt)
2477 insert_init_stmt (id, bb, init_stmt);
2479 return init_stmt;
2482 /* Generate code to initialize the parameters of the function at the
2483 top of the stack in ID from the GIMPLE_CALL STMT. */
2485 static void
2486 initialize_inlined_parameters (copy_body_data *id, gimple stmt,
2487 tree fn, basic_block bb)
2489 tree parms;
2490 size_t i;
2491 tree p;
2492 tree vars = NULL_TREE;
2493 tree static_chain = gimple_call_chain (stmt);
2495 /* Figure out what the parameters are. */
2496 parms = DECL_ARGUMENTS (fn);
2498 /* Loop through the parameter declarations, replacing each with an
2499 equivalent VAR_DECL, appropriately initialized. */
2500 for (p = parms, i = 0; p; p = TREE_CHAIN (p), i++)
2502 tree val;
2503 val = i < gimple_call_num_args (stmt) ? gimple_call_arg (stmt, i) : NULL;
2504 setup_one_parameter (id, p, val, fn, bb, &vars);
2507 /* Initialize the static chain. */
2508 p = DECL_STRUCT_FUNCTION (fn)->static_chain_decl;
2509 gcc_assert (fn != current_function_decl);
2510 if (p)
2512 /* No static chain? Seems like a bug in tree-nested.c. */
2513 gcc_assert (static_chain);
2515 setup_one_parameter (id, p, static_chain, fn, bb, &vars);
2518 declare_inline_vars (id->block, vars);
2522 /* Declare a return variable to replace the RESULT_DECL for the
2523 function we are calling. An appropriate DECL_STMT is returned.
2524 The USE_STMT is filled to contain a use of the declaration to
2525 indicate the return value of the function.
2527 RETURN_SLOT, if non-null is place where to store the result. It
2528 is set only for CALL_EXPR_RETURN_SLOT_OPT. MODIFY_DEST, if non-null,
2529 was the LHS of the MODIFY_EXPR to which this call is the RHS.
2531 The return value is a (possibly null) value that holds the result
2532 as seen by the caller. */
2534 static tree
2535 declare_return_variable (copy_body_data *id, tree return_slot, tree modify_dest)
2537 tree callee = id->src_fn;
2538 tree caller = id->dst_fn;
2539 tree result = DECL_RESULT (callee);
2540 tree callee_type = TREE_TYPE (result);
2541 tree caller_type = TREE_TYPE (TREE_TYPE (callee));
2542 tree var, use;
2544 /* We don't need to do anything for functions that don't return
2545 anything. */
2546 if (!result || VOID_TYPE_P (callee_type))
2547 return NULL_TREE;
2549 /* If there was a return slot, then the return value is the
2550 dereferenced address of that object. */
2551 if (return_slot)
2553 /* The front end shouldn't have used both return_slot and
2554 a modify expression. */
2555 gcc_assert (!modify_dest);
2556 if (DECL_BY_REFERENCE (result))
2558 tree return_slot_addr = build_fold_addr_expr (return_slot);
2559 STRIP_USELESS_TYPE_CONVERSION (return_slot_addr);
2561 /* We are going to construct *&return_slot and we can't do that
2562 for variables believed to be not addressable.
2564 FIXME: This check possibly can match, because values returned
2565 via return slot optimization are not believed to have address
2566 taken by alias analysis. */
2567 gcc_assert (TREE_CODE (return_slot) != SSA_NAME);
2568 if (gimple_in_ssa_p (cfun))
2570 HOST_WIDE_INT bitsize;
2571 HOST_WIDE_INT bitpos;
2572 tree offset;
2573 enum machine_mode mode;
2574 int unsignedp;
2575 int volatilep;
2576 tree base;
2577 base = get_inner_reference (return_slot, &bitsize, &bitpos,
2578 &offset,
2579 &mode, &unsignedp, &volatilep,
2580 false);
2581 if (TREE_CODE (base) == INDIRECT_REF)
2582 base = TREE_OPERAND (base, 0);
2583 if (TREE_CODE (base) == SSA_NAME)
2584 base = SSA_NAME_VAR (base);
2585 mark_sym_for_renaming (base);
2587 var = return_slot_addr;
2589 else
2591 var = return_slot;
2592 gcc_assert (TREE_CODE (var) != SSA_NAME);
2593 TREE_ADDRESSABLE (var) |= TREE_ADDRESSABLE (result);
2595 if ((TREE_CODE (TREE_TYPE (result)) == COMPLEX_TYPE
2596 || TREE_CODE (TREE_TYPE (result)) == VECTOR_TYPE)
2597 && !DECL_GIMPLE_REG_P (result)
2598 && DECL_P (var))
2599 DECL_GIMPLE_REG_P (var) = 0;
2600 use = NULL;
2601 goto done;
2604 /* All types requiring non-trivial constructors should have been handled. */
2605 gcc_assert (!TREE_ADDRESSABLE (callee_type));
2607 /* Attempt to avoid creating a new temporary variable. */
2608 if (modify_dest
2609 && TREE_CODE (modify_dest) != SSA_NAME)
2611 bool use_it = false;
2613 /* We can't use MODIFY_DEST if there's type promotion involved. */
2614 if (!useless_type_conversion_p (callee_type, caller_type))
2615 use_it = false;
2617 /* ??? If we're assigning to a variable sized type, then we must
2618 reuse the destination variable, because we've no good way to
2619 create variable sized temporaries at this point. */
2620 else if (TREE_CODE (TYPE_SIZE_UNIT (caller_type)) != INTEGER_CST)
2621 use_it = true;
2623 /* If the callee cannot possibly modify MODIFY_DEST, then we can
2624 reuse it as the result of the call directly. Don't do this if
2625 it would promote MODIFY_DEST to addressable. */
2626 else if (TREE_ADDRESSABLE (result))
2627 use_it = false;
2628 else
2630 tree base_m = get_base_address (modify_dest);
2632 /* If the base isn't a decl, then it's a pointer, and we don't
2633 know where that's going to go. */
2634 if (!DECL_P (base_m))
2635 use_it = false;
2636 else if (is_global_var (base_m))
2637 use_it = false;
2638 else if ((TREE_CODE (TREE_TYPE (result)) == COMPLEX_TYPE
2639 || TREE_CODE (TREE_TYPE (result)) == VECTOR_TYPE)
2640 && !DECL_GIMPLE_REG_P (result)
2641 && DECL_GIMPLE_REG_P (base_m))
2642 use_it = false;
2643 else if (!TREE_ADDRESSABLE (base_m))
2644 use_it = true;
2647 if (use_it)
2649 var = modify_dest;
2650 use = NULL;
2651 goto done;
2655 gcc_assert (TREE_CODE (TYPE_SIZE_UNIT (callee_type)) == INTEGER_CST);
2657 var = copy_result_decl_to_var (result, id);
2658 if (gimple_in_ssa_p (cfun))
2660 get_var_ann (var);
2661 add_referenced_var (var);
2664 DECL_SEEN_IN_BIND_EXPR_P (var) = 1;
2665 DECL_STRUCT_FUNCTION (caller)->local_decls
2666 = tree_cons (NULL_TREE, var,
2667 DECL_STRUCT_FUNCTION (caller)->local_decls);
2669 /* Do not have the rest of GCC warn about this variable as it should
2670 not be visible to the user. */
2671 TREE_NO_WARNING (var) = 1;
2673 declare_inline_vars (id->block, var);
2675 /* Build the use expr. If the return type of the function was
2676 promoted, convert it back to the expected type. */
2677 use = var;
2678 if (!useless_type_conversion_p (caller_type, TREE_TYPE (var)))
2679 use = fold_convert (caller_type, var);
2681 STRIP_USELESS_TYPE_CONVERSION (use);
2683 if (DECL_BY_REFERENCE (result))
2685 TREE_ADDRESSABLE (var) = 1;
2686 var = build_fold_addr_expr (var);
2689 done:
2690 /* Register the VAR_DECL as the equivalent for the RESULT_DECL; that
2691 way, when the RESULT_DECL is encountered, it will be
2692 automatically replaced by the VAR_DECL. */
2693 insert_decl_map (id, result, var);
2695 /* Remember this so we can ignore it in remap_decls. */
2696 id->retvar = var;
2698 return use;
2701 /* Callback through walk_tree. Determine if a DECL_INITIAL makes reference
2702 to a local label. */
2704 static tree
2705 has_label_address_in_static_1 (tree *nodep, int *walk_subtrees, void *fnp)
2707 tree node = *nodep;
2708 tree fn = (tree) fnp;
2710 if (TREE_CODE (node) == LABEL_DECL && DECL_CONTEXT (node) == fn)
2711 return node;
2713 if (TYPE_P (node))
2714 *walk_subtrees = 0;
2716 return NULL_TREE;
2719 /* Callback through walk_tree. Determine if we've got an aggregate
2720 type that we can't support; return non-null if so. */
2722 static tree
2723 cannot_copy_type_1 (tree *nodep, int *walk_subtrees ATTRIBUTE_UNUSED,
2724 void *data ATTRIBUTE_UNUSED)
2726 tree t, node = *nodep;
2728 if (TREE_CODE (node) == RECORD_TYPE || TREE_CODE (node) == UNION_TYPE)
2730 /* We cannot inline a function of the form
2732 void F (int i) { struct S { int ar[i]; } s; }
2734 Attempting to do so produces a catch-22.
2735 If walk_tree examines the TYPE_FIELDS chain of RECORD_TYPE/
2736 UNION_TYPE nodes, then it goes into infinite recursion on a
2737 structure containing a pointer to its own type. If it doesn't,
2738 then the type node for S doesn't get adjusted properly when
2739 F is inlined.
2741 ??? This is likely no longer true, but it's too late in the 4.0
2742 cycle to try to find out. This should be checked for 4.1. */
2743 for (t = TYPE_FIELDS (node); t; t = TREE_CHAIN (t))
2744 if (variably_modified_type_p (TREE_TYPE (t), NULL))
2745 return node;
2748 return NULL_TREE;
2752 /* Determine if the function can be copied. If so return NULL. If
2753 not return a string describng the reason for failure. */
2755 static const char *
2756 copy_forbidden (struct function *fun, tree fndecl)
2758 const char *reason = fun->cannot_be_copied_reason;
2759 tree step;
2761 /* Only examine the function once. */
2762 if (fun->cannot_be_copied_set)
2763 return reason;
2765 /* We cannot copy a function that receives a non-local goto
2766 because we cannot remap the destination label used in the
2767 function that is performing the non-local goto. */
2768 /* ??? Actually, this should be possible, if we work at it.
2769 No doubt there's just a handful of places that simply
2770 assume it doesn't happen and don't substitute properly. */
2771 if (fun->has_nonlocal_label)
2773 reason = G_("function %q+F can never be copied "
2774 "because it receives a non-local goto");
2775 goto fail;
2778 for (step = fun->local_decls; step; step = TREE_CHAIN (step))
2780 tree decl = TREE_VALUE (step);
2782 if (TREE_CODE (decl) == VAR_DECL
2783 && TREE_STATIC (decl)
2784 && !DECL_EXTERNAL (decl)
2785 && DECL_INITIAL (decl)
2786 && walk_tree_without_duplicates (&DECL_INITIAL (decl),
2787 has_label_address_in_static_1,
2788 fndecl))
2790 reason = G_("function %q+F can never be copied because it saves "
2791 "address of local label in a static variable");
2792 goto fail;
2795 if (!TREE_STATIC (decl) && !DECL_EXTERNAL (decl)
2796 && variably_modified_type_p (TREE_TYPE (decl), NULL)
2797 && walk_tree_without_duplicates (&TREE_TYPE (decl),
2798 cannot_copy_type_1, NULL))
2800 reason = G_("function %q+F can never be copied "
2801 "because it uses variable sized variables");
2802 goto fail;
2806 fail:
2807 fun->cannot_be_copied_reason = reason;
2808 fun->cannot_be_copied_set = true;
2809 return reason;
2813 static const char *inline_forbidden_reason;
2815 /* A callback for walk_gimple_seq to handle statements. Returns non-null
2816 iff a function can not be inlined. Also sets the reason why. */
2818 static tree
2819 inline_forbidden_p_stmt (gimple_stmt_iterator *gsi, bool *handled_ops_p,
2820 struct walk_stmt_info *wip)
2822 tree fn = (tree) wip->info;
2823 tree t;
2824 gimple stmt = gsi_stmt (*gsi);
2826 switch (gimple_code (stmt))
2828 case GIMPLE_CALL:
2829 /* Refuse to inline alloca call unless user explicitly forced so as
2830 this may change program's memory overhead drastically when the
2831 function using alloca is called in loop. In GCC present in
2832 SPEC2000 inlining into schedule_block cause it to require 2GB of
2833 RAM instead of 256MB. */
2834 if (gimple_alloca_call_p (stmt)
2835 && !lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)))
2837 inline_forbidden_reason
2838 = G_("function %q+F can never be inlined because it uses "
2839 "alloca (override using the always_inline attribute)");
2840 *handled_ops_p = true;
2841 return fn;
2844 t = gimple_call_fndecl (stmt);
2845 if (t == NULL_TREE)
2846 break;
2848 /* We cannot inline functions that call setjmp. */
2849 if (setjmp_call_p (t))
2851 inline_forbidden_reason
2852 = G_("function %q+F can never be inlined because it uses setjmp");
2853 *handled_ops_p = true;
2854 return t;
2857 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL)
2858 switch (DECL_FUNCTION_CODE (t))
2860 /* We cannot inline functions that take a variable number of
2861 arguments. */
2862 case BUILT_IN_VA_START:
2863 case BUILT_IN_NEXT_ARG:
2864 case BUILT_IN_VA_END:
2865 inline_forbidden_reason
2866 = G_("function %q+F can never be inlined because it "
2867 "uses variable argument lists");
2868 *handled_ops_p = true;
2869 return t;
2871 case BUILT_IN_LONGJMP:
2872 /* We can't inline functions that call __builtin_longjmp at
2873 all. The non-local goto machinery really requires the
2874 destination be in a different function. If we allow the
2875 function calling __builtin_longjmp to be inlined into the
2876 function calling __builtin_setjmp, Things will Go Awry. */
2877 inline_forbidden_reason
2878 = G_("function %q+F can never be inlined because "
2879 "it uses setjmp-longjmp exception handling");
2880 *handled_ops_p = true;
2881 return t;
2883 case BUILT_IN_NONLOCAL_GOTO:
2884 /* Similarly. */
2885 inline_forbidden_reason
2886 = G_("function %q+F can never be inlined because "
2887 "it uses non-local goto");
2888 *handled_ops_p = true;
2889 return t;
2891 case BUILT_IN_RETURN:
2892 case BUILT_IN_APPLY_ARGS:
2893 /* If a __builtin_apply_args caller would be inlined,
2894 it would be saving arguments of the function it has
2895 been inlined into. Similarly __builtin_return would
2896 return from the function the inline has been inlined into. */
2897 inline_forbidden_reason
2898 = G_("function %q+F can never be inlined because "
2899 "it uses __builtin_return or __builtin_apply_args");
2900 *handled_ops_p = true;
2901 return t;
2903 default:
2904 break;
2906 break;
2908 case GIMPLE_GOTO:
2909 t = gimple_goto_dest (stmt);
2911 /* We will not inline a function which uses computed goto. The
2912 addresses of its local labels, which may be tucked into
2913 global storage, are of course not constant across
2914 instantiations, which causes unexpected behavior. */
2915 if (TREE_CODE (t) != LABEL_DECL)
2917 inline_forbidden_reason
2918 = G_("function %q+F can never be inlined "
2919 "because it contains a computed goto");
2920 *handled_ops_p = true;
2921 return t;
2923 break;
2925 default:
2926 break;
2929 *handled_ops_p = false;
2930 return NULL_TREE;
2933 /* Return true if FNDECL is a function that cannot be inlined into
2934 another one. */
2936 static bool
2937 inline_forbidden_p (tree fndecl)
2939 struct function *fun = DECL_STRUCT_FUNCTION (fndecl);
2940 struct walk_stmt_info wi;
2941 struct pointer_set_t *visited_nodes;
2942 basic_block bb;
2943 bool forbidden_p = false;
2945 /* First check for shared reasons not to copy the code. */
2946 inline_forbidden_reason = copy_forbidden (fun, fndecl);
2947 if (inline_forbidden_reason != NULL)
2948 return true;
2950 /* Next, walk the statements of the function looking for
2951 constraucts we can't handle, or are non-optimal for inlining. */
2952 visited_nodes = pointer_set_create ();
2953 memset (&wi, 0, sizeof (wi));
2954 wi.info = (void *) fndecl;
2955 wi.pset = visited_nodes;
2957 FOR_EACH_BB_FN (bb, fun)
2959 gimple ret;
2960 gimple_seq seq = bb_seq (bb);
2961 ret = walk_gimple_seq (seq, inline_forbidden_p_stmt, NULL, &wi);
2962 forbidden_p = (ret != NULL);
2963 if (forbidden_p)
2964 break;
2967 pointer_set_destroy (visited_nodes);
2968 return forbidden_p;
2971 /* Returns nonzero if FN is a function that does not have any
2972 fundamental inline blocking properties. */
2974 bool
2975 tree_inlinable_function_p (tree fn)
2977 bool inlinable = true;
2978 bool do_warning;
2979 tree always_inline;
2981 /* If we've already decided this function shouldn't be inlined,
2982 there's no need to check again. */
2983 if (DECL_UNINLINABLE (fn))
2984 return false;
2986 /* We only warn for functions declared `inline' by the user. */
2987 do_warning = (warn_inline
2988 && DECL_DECLARED_INLINE_P (fn)
2989 && !DECL_NO_INLINE_WARNING_P (fn)
2990 && !DECL_IN_SYSTEM_HEADER (fn));
2992 always_inline = lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn));
2994 if (flag_no_inline
2995 && always_inline == NULL)
2997 if (do_warning)
2998 warning (OPT_Winline, "function %q+F can never be inlined because it "
2999 "is suppressed using -fno-inline", fn);
3000 inlinable = false;
3003 /* Don't auto-inline anything that might not be bound within
3004 this unit of translation. */
3005 else if (!DECL_DECLARED_INLINE_P (fn)
3006 && DECL_REPLACEABLE_P (fn))
3007 inlinable = false;
3009 else if (!function_attribute_inlinable_p (fn))
3011 if (do_warning)
3012 warning (OPT_Winline, "function %q+F can never be inlined because it "
3013 "uses attributes conflicting with inlining", fn);
3014 inlinable = false;
3017 else if (inline_forbidden_p (fn))
3019 /* See if we should warn about uninlinable functions. Previously,
3020 some of these warnings would be issued while trying to expand
3021 the function inline, but that would cause multiple warnings
3022 about functions that would for example call alloca. But since
3023 this a property of the function, just one warning is enough.
3024 As a bonus we can now give more details about the reason why a
3025 function is not inlinable. */
3026 if (always_inline)
3027 sorry (inline_forbidden_reason, fn);
3028 else if (do_warning)
3029 warning (OPT_Winline, inline_forbidden_reason, fn);
3031 inlinable = false;
3034 /* Squirrel away the result so that we don't have to check again. */
3035 DECL_UNINLINABLE (fn) = !inlinable;
3037 return inlinable;
3040 /* Estimate the cost of a memory move. Use machine dependent
3041 word size and take possible memcpy call into account. */
3044 estimate_move_cost (tree type)
3046 HOST_WIDE_INT size;
3048 gcc_assert (!VOID_TYPE_P (type));
3050 size = int_size_in_bytes (type);
3052 if (size < 0 || size > MOVE_MAX_PIECES * MOVE_RATIO (!optimize_size))
3053 /* Cost of a memcpy call, 3 arguments and the call. */
3054 return 4;
3055 else
3056 return ((size + MOVE_MAX_PIECES - 1) / MOVE_MAX_PIECES);
3059 /* Returns cost of operation CODE, according to WEIGHTS */
3061 static int
3062 estimate_operator_cost (enum tree_code code, eni_weights *weights,
3063 tree op1 ATTRIBUTE_UNUSED, tree op2)
3065 switch (code)
3067 /* These are "free" conversions, or their presumed cost
3068 is folded into other operations. */
3069 case RANGE_EXPR:
3070 CASE_CONVERT:
3071 case COMPLEX_EXPR:
3072 case PAREN_EXPR:
3073 return 0;
3075 /* Assign cost of 1 to usual operations.
3076 ??? We may consider mapping RTL costs to this. */
3077 case COND_EXPR:
3078 case VEC_COND_EXPR:
3080 case PLUS_EXPR:
3081 case POINTER_PLUS_EXPR:
3082 case MINUS_EXPR:
3083 case MULT_EXPR:
3085 case ADDR_SPACE_CONVERT_EXPR:
3086 case FIXED_CONVERT_EXPR:
3087 case FIX_TRUNC_EXPR:
3089 case NEGATE_EXPR:
3090 case FLOAT_EXPR:
3091 case MIN_EXPR:
3092 case MAX_EXPR:
3093 case ABS_EXPR:
3095 case LSHIFT_EXPR:
3096 case RSHIFT_EXPR:
3097 case LROTATE_EXPR:
3098 case RROTATE_EXPR:
3099 case VEC_LSHIFT_EXPR:
3100 case VEC_RSHIFT_EXPR:
3102 case BIT_IOR_EXPR:
3103 case BIT_XOR_EXPR:
3104 case BIT_AND_EXPR:
3105 case BIT_NOT_EXPR:
3107 case TRUTH_ANDIF_EXPR:
3108 case TRUTH_ORIF_EXPR:
3109 case TRUTH_AND_EXPR:
3110 case TRUTH_OR_EXPR:
3111 case TRUTH_XOR_EXPR:
3112 case TRUTH_NOT_EXPR:
3114 case LT_EXPR:
3115 case LE_EXPR:
3116 case GT_EXPR:
3117 case GE_EXPR:
3118 case EQ_EXPR:
3119 case NE_EXPR:
3120 case ORDERED_EXPR:
3121 case UNORDERED_EXPR:
3123 case UNLT_EXPR:
3124 case UNLE_EXPR:
3125 case UNGT_EXPR:
3126 case UNGE_EXPR:
3127 case UNEQ_EXPR:
3128 case LTGT_EXPR:
3130 case CONJ_EXPR:
3132 case PREDECREMENT_EXPR:
3133 case PREINCREMENT_EXPR:
3134 case POSTDECREMENT_EXPR:
3135 case POSTINCREMENT_EXPR:
3137 case REALIGN_LOAD_EXPR:
3139 case REDUC_MAX_EXPR:
3140 case REDUC_MIN_EXPR:
3141 case REDUC_PLUS_EXPR:
3142 case WIDEN_SUM_EXPR:
3143 case WIDEN_MULT_EXPR:
3144 case DOT_PROD_EXPR:
3146 case VEC_WIDEN_MULT_HI_EXPR:
3147 case VEC_WIDEN_MULT_LO_EXPR:
3148 case VEC_UNPACK_HI_EXPR:
3149 case VEC_UNPACK_LO_EXPR:
3150 case VEC_UNPACK_FLOAT_HI_EXPR:
3151 case VEC_UNPACK_FLOAT_LO_EXPR:
3152 case VEC_PACK_TRUNC_EXPR:
3153 case VEC_PACK_SAT_EXPR:
3154 case VEC_PACK_FIX_TRUNC_EXPR:
3155 case VEC_EXTRACT_EVEN_EXPR:
3156 case VEC_EXTRACT_ODD_EXPR:
3157 case VEC_INTERLEAVE_HIGH_EXPR:
3158 case VEC_INTERLEAVE_LOW_EXPR:
3160 return 1;
3162 /* Few special cases of expensive operations. This is useful
3163 to avoid inlining on functions having too many of these. */
3164 case TRUNC_DIV_EXPR:
3165 case CEIL_DIV_EXPR:
3166 case FLOOR_DIV_EXPR:
3167 case ROUND_DIV_EXPR:
3168 case EXACT_DIV_EXPR:
3169 case TRUNC_MOD_EXPR:
3170 case CEIL_MOD_EXPR:
3171 case FLOOR_MOD_EXPR:
3172 case ROUND_MOD_EXPR:
3173 case RDIV_EXPR:
3174 if (TREE_CODE (op2) != INTEGER_CST)
3175 return weights->div_mod_cost;
3176 return 1;
3178 default:
3179 /* We expect a copy assignment with no operator. */
3180 gcc_assert (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS);
3181 return 0;
3186 /* Estimate number of instructions that will be created by expanding
3187 the statements in the statement sequence STMTS.
3188 WEIGHTS contains weights attributed to various constructs. */
3190 static
3191 int estimate_num_insns_seq (gimple_seq stmts, eni_weights *weights)
3193 int cost;
3194 gimple_stmt_iterator gsi;
3196 cost = 0;
3197 for (gsi = gsi_start (stmts); !gsi_end_p (gsi); gsi_next (&gsi))
3198 cost += estimate_num_insns (gsi_stmt (gsi), weights);
3200 return cost;
3204 /* Estimate number of instructions that will be created by expanding STMT.
3205 WEIGHTS contains weights attributed to various constructs. */
3208 estimate_num_insns (gimple stmt, eni_weights *weights)
3210 unsigned cost, i;
3211 enum gimple_code code = gimple_code (stmt);
3212 tree lhs;
3213 tree rhs;
3215 switch (code)
3217 case GIMPLE_ASSIGN:
3218 /* Try to estimate the cost of assignments. We have three cases to
3219 deal with:
3220 1) Simple assignments to registers;
3221 2) Stores to things that must live in memory. This includes
3222 "normal" stores to scalars, but also assignments of large
3223 structures, or constructors of big arrays;
3225 Let us look at the first two cases, assuming we have "a = b + C":
3226 <GIMPLE_ASSIGN <var_decl "a">
3227 <plus_expr <var_decl "b"> <constant C>>
3228 If "a" is a GIMPLE register, the assignment to it is free on almost
3229 any target, because "a" usually ends up in a real register. Hence
3230 the only cost of this expression comes from the PLUS_EXPR, and we
3231 can ignore the GIMPLE_ASSIGN.
3232 If "a" is not a GIMPLE register, the assignment to "a" will most
3233 likely be a real store, so the cost of the GIMPLE_ASSIGN is the cost
3234 of moving something into "a", which we compute using the function
3235 estimate_move_cost. */
3236 lhs = gimple_assign_lhs (stmt);
3237 rhs = gimple_assign_rhs1 (stmt);
3239 if (is_gimple_reg (lhs))
3240 cost = 0;
3241 else
3242 cost = estimate_move_cost (TREE_TYPE (lhs));
3244 if (!is_gimple_reg (rhs) && !is_gimple_min_invariant (rhs))
3245 cost += estimate_move_cost (TREE_TYPE (rhs));
3247 cost += estimate_operator_cost (gimple_assign_rhs_code (stmt), weights,
3248 gimple_assign_rhs1 (stmt),
3249 get_gimple_rhs_class (gimple_assign_rhs_code (stmt))
3250 == GIMPLE_BINARY_RHS
3251 ? gimple_assign_rhs2 (stmt) : NULL);
3252 break;
3254 case GIMPLE_COND:
3255 cost = 1 + estimate_operator_cost (gimple_cond_code (stmt), weights,
3256 gimple_op (stmt, 0),
3257 gimple_op (stmt, 1));
3258 break;
3260 case GIMPLE_SWITCH:
3261 /* Take into account cost of the switch + guess 2 conditional jumps for
3262 each case label.
3264 TODO: once the switch expansion logic is sufficiently separated, we can
3265 do better job on estimating cost of the switch. */
3266 if (weights->time_based)
3267 cost = floor_log2 (gimple_switch_num_labels (stmt)) * 2;
3268 else
3269 cost = gimple_switch_num_labels (stmt) * 2;
3270 break;
3272 case GIMPLE_CALL:
3274 tree decl = gimple_call_fndecl (stmt);
3275 tree addr = gimple_call_fn (stmt);
3276 tree funtype = TREE_TYPE (addr);
3278 if (POINTER_TYPE_P (funtype))
3279 funtype = TREE_TYPE (funtype);
3281 if (decl && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_MD)
3282 cost = weights->target_builtin_call_cost;
3283 else
3284 cost = weights->call_cost;
3286 if (decl && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
3287 switch (DECL_FUNCTION_CODE (decl))
3289 case BUILT_IN_CONSTANT_P:
3290 return 0;
3291 case BUILT_IN_EXPECT:
3292 return 0;
3294 /* Prefetch instruction is not expensive. */
3295 case BUILT_IN_PREFETCH:
3296 cost = weights->target_builtin_call_cost;
3297 break;
3299 default:
3300 break;
3303 if (decl)
3304 funtype = TREE_TYPE (decl);
3306 if (!VOID_TYPE_P (TREE_TYPE (funtype)))
3307 cost += estimate_move_cost (TREE_TYPE (funtype));
3308 /* Our cost must be kept in sync with
3309 cgraph_estimate_size_after_inlining that does use function
3310 declaration to figure out the arguments. */
3311 if (decl && DECL_ARGUMENTS (decl))
3313 tree arg;
3314 for (arg = DECL_ARGUMENTS (decl); arg; arg = TREE_CHAIN (arg))
3315 if (!VOID_TYPE_P (TREE_TYPE (arg)))
3316 cost += estimate_move_cost (TREE_TYPE (arg));
3318 else if (funtype && prototype_p (funtype))
3320 tree t;
3321 for (t = TYPE_ARG_TYPES (funtype); t && t != void_list_node;
3322 t = TREE_CHAIN (t))
3323 if (!VOID_TYPE_P (TREE_VALUE (t)))
3324 cost += estimate_move_cost (TREE_VALUE (t));
3326 else
3328 for (i = 0; i < gimple_call_num_args (stmt); i++)
3330 tree arg = gimple_call_arg (stmt, i);
3331 if (!VOID_TYPE_P (TREE_TYPE (arg)))
3332 cost += estimate_move_cost (TREE_TYPE (arg));
3336 break;
3339 case GIMPLE_GOTO:
3340 case GIMPLE_LABEL:
3341 case GIMPLE_NOP:
3342 case GIMPLE_PHI:
3343 case GIMPLE_RETURN:
3344 case GIMPLE_PREDICT:
3345 case GIMPLE_DEBUG:
3346 return 0;
3348 case GIMPLE_ASM:
3349 return asm_str_count (gimple_asm_string (stmt));
3351 case GIMPLE_RESX:
3352 /* This is either going to be an external function call with one
3353 argument, or two register copy statements plus a goto. */
3354 return 2;
3356 case GIMPLE_EH_DISPATCH:
3357 /* ??? This is going to turn into a switch statement. Ideally
3358 we'd have a look at the eh region and estimate the number of
3359 edges involved. */
3360 return 10;
3362 case GIMPLE_BIND:
3363 return estimate_num_insns_seq (gimple_bind_body (stmt), weights);
3365 case GIMPLE_EH_FILTER:
3366 return estimate_num_insns_seq (gimple_eh_filter_failure (stmt), weights);
3368 case GIMPLE_CATCH:
3369 return estimate_num_insns_seq (gimple_catch_handler (stmt), weights);
3371 case GIMPLE_TRY:
3372 return (estimate_num_insns_seq (gimple_try_eval (stmt), weights)
3373 + estimate_num_insns_seq (gimple_try_cleanup (stmt), weights));
3375 /* OpenMP directives are generally very expensive. */
3377 case GIMPLE_OMP_RETURN:
3378 case GIMPLE_OMP_SECTIONS_SWITCH:
3379 case GIMPLE_OMP_ATOMIC_STORE:
3380 case GIMPLE_OMP_CONTINUE:
3381 /* ...except these, which are cheap. */
3382 return 0;
3384 case GIMPLE_OMP_ATOMIC_LOAD:
3385 return weights->omp_cost;
3387 case GIMPLE_OMP_FOR:
3388 return (weights->omp_cost
3389 + estimate_num_insns_seq (gimple_omp_body (stmt), weights)
3390 + estimate_num_insns_seq (gimple_omp_for_pre_body (stmt), weights));
3392 case GIMPLE_OMP_PARALLEL:
3393 case GIMPLE_OMP_TASK:
3394 case GIMPLE_OMP_CRITICAL:
3395 case GIMPLE_OMP_MASTER:
3396 case GIMPLE_OMP_ORDERED:
3397 case GIMPLE_OMP_SECTION:
3398 case GIMPLE_OMP_SECTIONS:
3399 case GIMPLE_OMP_SINGLE:
3400 return (weights->omp_cost
3401 + estimate_num_insns_seq (gimple_omp_body (stmt), weights));
3403 default:
3404 gcc_unreachable ();
3407 return cost;
3410 /* Estimate number of instructions that will be created by expanding
3411 function FNDECL. WEIGHTS contains weights attributed to various
3412 constructs. */
3415 estimate_num_insns_fn (tree fndecl, eni_weights *weights)
3417 struct function *my_function = DECL_STRUCT_FUNCTION (fndecl);
3418 gimple_stmt_iterator bsi;
3419 basic_block bb;
3420 int n = 0;
3422 gcc_assert (my_function && my_function->cfg);
3423 FOR_EACH_BB_FN (bb, my_function)
3425 for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
3426 n += estimate_num_insns (gsi_stmt (bsi), weights);
3429 return n;
3433 /* Initializes weights used by estimate_num_insns. */
3435 void
3436 init_inline_once (void)
3438 eni_size_weights.call_cost = 1;
3439 eni_size_weights.target_builtin_call_cost = 1;
3440 eni_size_weights.div_mod_cost = 1;
3441 eni_size_weights.omp_cost = 40;
3442 eni_size_weights.time_based = false;
3444 /* Estimating time for call is difficult, since we have no idea what the
3445 called function does. In the current uses of eni_time_weights,
3446 underestimating the cost does less harm than overestimating it, so
3447 we choose a rather small value here. */
3448 eni_time_weights.call_cost = 10;
3449 eni_time_weights.target_builtin_call_cost = 10;
3450 eni_time_weights.div_mod_cost = 10;
3451 eni_time_weights.omp_cost = 40;
3452 eni_time_weights.time_based = true;
3455 /* Estimate the number of instructions in a gimple_seq. */
3458 count_insns_seq (gimple_seq seq, eni_weights *weights)
3460 gimple_stmt_iterator gsi;
3461 int n = 0;
3462 for (gsi = gsi_start (seq); !gsi_end_p (gsi); gsi_next (&gsi))
3463 n += estimate_num_insns (gsi_stmt (gsi), weights);
3465 return n;
3469 /* Install new lexical TREE_BLOCK underneath 'current_block'. */
3471 static void
3472 prepend_lexical_block (tree current_block, tree new_block)
3474 BLOCK_CHAIN (new_block) = BLOCK_SUBBLOCKS (current_block);
3475 BLOCK_SUBBLOCKS (current_block) = new_block;
3476 BLOCK_SUPERCONTEXT (new_block) = current_block;
3479 /* Fetch callee declaration from the call graph edge going from NODE and
3480 associated with STMR call statement. Return NULL_TREE if not found. */
3481 static tree
3482 get_indirect_callee_fndecl (struct cgraph_node *node, gimple stmt)
3484 struct cgraph_edge *cs;
3486 cs = cgraph_edge (node, stmt);
3487 if (cs)
3488 return cs->callee->decl;
3490 return NULL_TREE;
3493 /* If STMT is a GIMPLE_CALL, replace it with its inline expansion. */
3495 static bool
3496 expand_call_inline (basic_block bb, gimple stmt, copy_body_data *id)
3498 tree use_retvar;
3499 tree fn;
3500 struct pointer_map_t *st, *dst;
3501 tree return_slot;
3502 tree modify_dest;
3503 location_t saved_location;
3504 struct cgraph_edge *cg_edge;
3505 cgraph_inline_failed_t reason;
3506 basic_block return_block;
3507 edge e;
3508 gimple_stmt_iterator gsi, stmt_gsi;
3509 bool successfully_inlined = FALSE;
3510 bool purge_dead_abnormal_edges;
3511 tree t_step;
3512 tree var;
3514 /* Set input_location here so we get the right instantiation context
3515 if we call instantiate_decl from inlinable_function_p. */
3516 saved_location = input_location;
3517 if (gimple_has_location (stmt))
3518 input_location = gimple_location (stmt);
3520 /* From here on, we're only interested in CALL_EXPRs. */
3521 if (gimple_code (stmt) != GIMPLE_CALL)
3522 goto egress;
3524 /* First, see if we can figure out what function is being called.
3525 If we cannot, then there is no hope of inlining the function. */
3526 fn = gimple_call_fndecl (stmt);
3527 if (!fn)
3529 fn = get_indirect_callee_fndecl (id->dst_node, stmt);
3530 if (!fn)
3531 goto egress;
3534 /* Turn forward declarations into real ones. */
3535 fn = cgraph_node (fn)->decl;
3537 /* If FN is a declaration of a function in a nested scope that was
3538 globally declared inline, we don't set its DECL_INITIAL.
3539 However, we can't blindly follow DECL_ABSTRACT_ORIGIN because the
3540 C++ front-end uses it for cdtors to refer to their internal
3541 declarations, that are not real functions. Fortunately those
3542 don't have trees to be saved, so we can tell by checking their
3543 gimple_body. */
3544 if (!DECL_INITIAL (fn)
3545 && DECL_ABSTRACT_ORIGIN (fn)
3546 && gimple_has_body_p (DECL_ABSTRACT_ORIGIN (fn)))
3547 fn = DECL_ABSTRACT_ORIGIN (fn);
3549 /* Objective C and fortran still calls tree_rest_of_compilation directly.
3550 Kill this check once this is fixed. */
3551 if (!id->dst_node->analyzed)
3552 goto egress;
3554 cg_edge = cgraph_edge (id->dst_node, stmt);
3556 /* Don't inline functions with different EH personalities. */
3557 if (DECL_FUNCTION_PERSONALITY (cg_edge->caller->decl)
3558 && DECL_FUNCTION_PERSONALITY (cg_edge->callee->decl)
3559 && (DECL_FUNCTION_PERSONALITY (cg_edge->caller->decl)
3560 != DECL_FUNCTION_PERSONALITY (cg_edge->callee->decl)))
3561 goto egress;
3563 /* Don't try to inline functions that are not well-suited to
3564 inlining. */
3565 if (!cgraph_inline_p (cg_edge, &reason))
3567 /* If this call was originally indirect, we do not want to emit any
3568 inlining related warnings or sorry messages because there are no
3569 guarantees regarding those. */
3570 if (cg_edge->indirect_call)
3571 goto egress;
3573 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn))
3574 /* Avoid warnings during early inline pass. */
3575 && cgraph_global_info_ready)
3577 sorry ("inlining failed in call to %q+F: %s", fn,
3578 cgraph_inline_failed_string (reason));
3579 sorry ("called from here");
3581 else if (warn_inline && DECL_DECLARED_INLINE_P (fn)
3582 && !DECL_IN_SYSTEM_HEADER (fn)
3583 && reason != CIF_UNSPECIFIED
3584 && !lookup_attribute ("noinline", DECL_ATTRIBUTES (fn))
3585 /* Avoid warnings during early inline pass. */
3586 && cgraph_global_info_ready)
3588 warning (OPT_Winline, "inlining failed in call to %q+F: %s",
3589 fn, cgraph_inline_failed_string (reason));
3590 warning (OPT_Winline, "called from here");
3592 goto egress;
3594 fn = cg_edge->callee->decl;
3596 #ifdef ENABLE_CHECKING
3597 if (cg_edge->callee->decl != id->dst_node->decl)
3598 verify_cgraph_node (cg_edge->callee);
3599 #endif
3601 /* We will be inlining this callee. */
3602 id->eh_lp_nr = lookup_stmt_eh_lp (stmt);
3604 /* Update the callers EH personality. */
3605 if (DECL_FUNCTION_PERSONALITY (cg_edge->callee->decl))
3606 DECL_FUNCTION_PERSONALITY (cg_edge->caller->decl)
3607 = DECL_FUNCTION_PERSONALITY (cg_edge->callee->decl);
3609 /* Split the block holding the GIMPLE_CALL. */
3610 e = split_block (bb, stmt);
3611 bb = e->src;
3612 return_block = e->dest;
3613 remove_edge (e);
3615 /* split_block splits after the statement; work around this by
3616 moving the call into the second block manually. Not pretty,
3617 but seems easier than doing the CFG manipulation by hand
3618 when the GIMPLE_CALL is in the last statement of BB. */
3619 stmt_gsi = gsi_last_bb (bb);
3620 gsi_remove (&stmt_gsi, false);
3622 /* If the GIMPLE_CALL was in the last statement of BB, it may have
3623 been the source of abnormal edges. In this case, schedule
3624 the removal of dead abnormal edges. */
3625 gsi = gsi_start_bb (return_block);
3626 if (gsi_end_p (gsi))
3628 gsi_insert_after (&gsi, stmt, GSI_NEW_STMT);
3629 purge_dead_abnormal_edges = true;
3631 else
3633 gsi_insert_before (&gsi, stmt, GSI_NEW_STMT);
3634 purge_dead_abnormal_edges = false;
3637 stmt_gsi = gsi_start_bb (return_block);
3639 /* Build a block containing code to initialize the arguments, the
3640 actual inline expansion of the body, and a label for the return
3641 statements within the function to jump to. The type of the
3642 statement expression is the return type of the function call. */
3643 id->block = make_node (BLOCK);
3644 BLOCK_ABSTRACT_ORIGIN (id->block) = fn;
3645 BLOCK_SOURCE_LOCATION (id->block) = input_location;
3646 prepend_lexical_block (gimple_block (stmt), id->block);
3648 /* Local declarations will be replaced by their equivalents in this
3649 map. */
3650 st = id->decl_map;
3651 id->decl_map = pointer_map_create ();
3652 dst = id->debug_map;
3653 id->debug_map = NULL;
3655 /* Record the function we are about to inline. */
3656 id->src_fn = fn;
3657 id->src_node = cg_edge->callee;
3658 id->src_cfun = DECL_STRUCT_FUNCTION (fn);
3659 id->gimple_call = stmt;
3661 gcc_assert (!id->src_cfun->after_inlining);
3663 id->entry_bb = bb;
3664 if (lookup_attribute ("cold", DECL_ATTRIBUTES (fn)))
3666 gimple_stmt_iterator si = gsi_last_bb (bb);
3667 gsi_insert_after (&si, gimple_build_predict (PRED_COLD_FUNCTION,
3668 NOT_TAKEN),
3669 GSI_NEW_STMT);
3671 initialize_inlined_parameters (id, stmt, fn, bb);
3673 if (DECL_INITIAL (fn))
3674 prepend_lexical_block (id->block, remap_blocks (DECL_INITIAL (fn), id));
3676 /* Return statements in the function body will be replaced by jumps
3677 to the RET_LABEL. */
3678 gcc_assert (DECL_INITIAL (fn));
3679 gcc_assert (TREE_CODE (DECL_INITIAL (fn)) == BLOCK);
3681 /* Find the LHS to which the result of this call is assigned. */
3682 return_slot = NULL;
3683 if (gimple_call_lhs (stmt))
3685 modify_dest = gimple_call_lhs (stmt);
3687 /* The function which we are inlining might not return a value,
3688 in which case we should issue a warning that the function
3689 does not return a value. In that case the optimizers will
3690 see that the variable to which the value is assigned was not
3691 initialized. We do not want to issue a warning about that
3692 uninitialized variable. */
3693 if (DECL_P (modify_dest))
3694 TREE_NO_WARNING (modify_dest) = 1;
3696 if (gimple_call_return_slot_opt_p (stmt))
3698 return_slot = modify_dest;
3699 modify_dest = NULL;
3702 else
3703 modify_dest = NULL;
3705 /* If we are inlining a call to the C++ operator new, we don't want
3706 to use type based alias analysis on the return value. Otherwise
3707 we may get confused if the compiler sees that the inlined new
3708 function returns a pointer which was just deleted. See bug
3709 33407. */
3710 if (DECL_IS_OPERATOR_NEW (fn))
3712 return_slot = NULL;
3713 modify_dest = NULL;
3716 /* Declare the return variable for the function. */
3717 use_retvar = declare_return_variable (id, return_slot, modify_dest);
3719 /* Add local vars in this inlined callee to caller. */
3720 t_step = id->src_cfun->local_decls;
3721 for (; t_step; t_step = TREE_CHAIN (t_step))
3723 var = TREE_VALUE (t_step);
3724 if (TREE_STATIC (var) && !TREE_ASM_WRITTEN (var))
3726 if (var_ann (var) && add_referenced_var (var))
3727 cfun->local_decls = tree_cons (NULL_TREE, var,
3728 cfun->local_decls);
3730 else if (!can_be_nonlocal (var, id))
3731 cfun->local_decls = tree_cons (NULL_TREE, remap_decl (var, id),
3732 cfun->local_decls);
3735 if (dump_file && (dump_flags & TDF_DETAILS))
3737 fprintf (dump_file, "Inlining ");
3738 print_generic_expr (dump_file, id->src_fn, 0);
3739 fprintf (dump_file, " to ");
3740 print_generic_expr (dump_file, id->dst_fn, 0);
3741 fprintf (dump_file, " with frequency %i\n", cg_edge->frequency);
3744 /* This is it. Duplicate the callee body. Assume callee is
3745 pre-gimplified. Note that we must not alter the caller
3746 function in any way before this point, as this CALL_EXPR may be
3747 a self-referential call; if we're calling ourselves, we need to
3748 duplicate our body before altering anything. */
3749 copy_body (id, bb->count,
3750 cg_edge->frequency * REG_BR_PROB_BASE / CGRAPH_FREQ_BASE,
3751 bb, return_block);
3753 /* Reset the escaped and callused solutions. */
3754 if (cfun->gimple_df)
3756 pt_solution_reset (&cfun->gimple_df->escaped);
3757 pt_solution_reset (&cfun->gimple_df->callused);
3760 /* Clean up. */
3761 if (id->debug_map)
3763 pointer_map_destroy (id->debug_map);
3764 id->debug_map = dst;
3766 pointer_map_destroy (id->decl_map);
3767 id->decl_map = st;
3769 /* Unlink the calls virtual operands before replacing it. */
3770 unlink_stmt_vdef (stmt);
3772 /* If the inlined function returns a result that we care about,
3773 substitute the GIMPLE_CALL with an assignment of the return
3774 variable to the LHS of the call. That is, if STMT was
3775 'a = foo (...)', substitute the call with 'a = USE_RETVAR'. */
3776 if (use_retvar && gimple_call_lhs (stmt))
3778 gimple old_stmt = stmt;
3779 stmt = gimple_build_assign (gimple_call_lhs (stmt), use_retvar);
3780 gsi_replace (&stmt_gsi, stmt, false);
3781 if (gimple_in_ssa_p (cfun))
3782 mark_symbols_for_renaming (stmt);
3783 maybe_clean_or_replace_eh_stmt (old_stmt, stmt);
3785 else
3787 /* Handle the case of inlining a function with no return
3788 statement, which causes the return value to become undefined. */
3789 if (gimple_call_lhs (stmt)
3790 && TREE_CODE (gimple_call_lhs (stmt)) == SSA_NAME)
3792 tree name = gimple_call_lhs (stmt);
3793 tree var = SSA_NAME_VAR (name);
3794 tree def = gimple_default_def (cfun, var);
3796 if (def)
3798 /* If the variable is used undefined, make this name
3799 undefined via a move. */
3800 stmt = gimple_build_assign (gimple_call_lhs (stmt), def);
3801 gsi_replace (&stmt_gsi, stmt, true);
3803 else
3805 /* Otherwise make this variable undefined. */
3806 gsi_remove (&stmt_gsi, true);
3807 set_default_def (var, name);
3808 SSA_NAME_DEF_STMT (name) = gimple_build_nop ();
3811 else
3812 gsi_remove (&stmt_gsi, true);
3815 if (purge_dead_abnormal_edges)
3816 gimple_purge_dead_abnormal_call_edges (return_block);
3818 /* If the value of the new expression is ignored, that's OK. We
3819 don't warn about this for CALL_EXPRs, so we shouldn't warn about
3820 the equivalent inlined version either. */
3821 if (is_gimple_assign (stmt))
3823 gcc_assert (gimple_assign_single_p (stmt)
3824 || CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (stmt)));
3825 TREE_USED (gimple_assign_rhs1 (stmt)) = 1;
3828 /* Output the inlining info for this abstract function, since it has been
3829 inlined. If we don't do this now, we can lose the information about the
3830 variables in the function when the blocks get blown away as soon as we
3831 remove the cgraph node. */
3832 (*debug_hooks->outlining_inline_function) (cg_edge->callee->decl);
3834 /* Update callgraph if needed. */
3835 cgraph_remove_node (cg_edge->callee);
3837 id->block = NULL_TREE;
3838 successfully_inlined = TRUE;
3840 egress:
3841 input_location = saved_location;
3842 return successfully_inlined;
3845 /* Expand call statements reachable from STMT_P.
3846 We can only have CALL_EXPRs as the "toplevel" tree code or nested
3847 in a MODIFY_EXPR. See tree-gimple.c:get_call_expr_in(). We can
3848 unfortunately not use that function here because we need a pointer
3849 to the CALL_EXPR, not the tree itself. */
3851 static bool
3852 gimple_expand_calls_inline (basic_block bb, copy_body_data *id)
3854 gimple_stmt_iterator gsi;
3856 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
3858 gimple stmt = gsi_stmt (gsi);
3860 if (is_gimple_call (stmt)
3861 && expand_call_inline (bb, stmt, id))
3862 return true;
3865 return false;
3869 /* Walk all basic blocks created after FIRST and try to fold every statement
3870 in the STATEMENTS pointer set. */
3872 static void
3873 fold_marked_statements (int first, struct pointer_set_t *statements)
3875 for (; first < n_basic_blocks; first++)
3876 if (BASIC_BLOCK (first))
3878 gimple_stmt_iterator gsi;
3880 for (gsi = gsi_start_bb (BASIC_BLOCK (first));
3881 !gsi_end_p (gsi);
3882 gsi_next (&gsi))
3883 if (pointer_set_contains (statements, gsi_stmt (gsi)))
3885 gimple old_stmt = gsi_stmt (gsi);
3886 tree old_decl = is_gimple_call (old_stmt) ? gimple_call_fndecl (old_stmt) : 0;
3888 if (old_decl && DECL_BUILT_IN (old_decl))
3890 /* Folding builtins can create multiple instructions,
3891 we need to look at all of them. */
3892 gimple_stmt_iterator i2 = gsi;
3893 gsi_prev (&i2);
3894 if (fold_stmt (&gsi))
3896 gimple new_stmt;
3897 if (gsi_end_p (i2))
3898 i2 = gsi_start_bb (BASIC_BLOCK (first));
3899 else
3900 gsi_next (&i2);
3901 while (1)
3903 new_stmt = gsi_stmt (i2);
3904 update_stmt (new_stmt);
3905 cgraph_update_edges_for_call_stmt (old_stmt, old_decl,
3906 new_stmt);
3908 if (new_stmt == gsi_stmt (gsi))
3910 /* It is okay to check only for the very last
3911 of these statements. If it is a throwing
3912 statement nothing will change. If it isn't
3913 this can remove EH edges. If that weren't
3914 correct then because some intermediate stmts
3915 throw, but not the last one. That would mean
3916 we'd have to split the block, which we can't
3917 here and we'd loose anyway. And as builtins
3918 probably never throw, this all
3919 is mood anyway. */
3920 if (maybe_clean_or_replace_eh_stmt (old_stmt,
3921 new_stmt))
3922 gimple_purge_dead_eh_edges (BASIC_BLOCK (first));
3923 break;
3925 gsi_next (&i2);
3929 else if (fold_stmt (&gsi))
3931 /* Re-read the statement from GSI as fold_stmt() may
3932 have changed it. */
3933 gimple new_stmt = gsi_stmt (gsi);
3934 update_stmt (new_stmt);
3936 if (is_gimple_call (old_stmt)
3937 || is_gimple_call (new_stmt))
3938 cgraph_update_edges_for_call_stmt (old_stmt, old_decl,
3939 new_stmt);
3941 if (maybe_clean_or_replace_eh_stmt (old_stmt, new_stmt))
3942 gimple_purge_dead_eh_edges (BASIC_BLOCK (first));
3948 /* Return true if BB has at least one abnormal outgoing edge. */
3950 static inline bool
3951 has_abnormal_outgoing_edge_p (basic_block bb)
3953 edge e;
3954 edge_iterator ei;
3956 FOR_EACH_EDGE (e, ei, bb->succs)
3957 if (e->flags & EDGE_ABNORMAL)
3958 return true;
3960 return false;
3963 /* Expand calls to inline functions in the body of FN. */
3965 unsigned int
3966 optimize_inline_calls (tree fn)
3968 copy_body_data id;
3969 basic_block bb;
3970 int last = n_basic_blocks;
3971 struct gimplify_ctx gctx;
3973 /* There is no point in performing inlining if errors have already
3974 occurred -- and we might crash if we try to inline invalid
3975 code. */
3976 if (errorcount || sorrycount)
3977 return 0;
3979 /* Clear out ID. */
3980 memset (&id, 0, sizeof (id));
3982 id.src_node = id.dst_node = cgraph_node (fn);
3983 id.dst_fn = fn;
3984 /* Or any functions that aren't finished yet. */
3985 if (current_function_decl)
3986 id.dst_fn = current_function_decl;
3988 id.copy_decl = copy_decl_maybe_to_var;
3989 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
3990 id.transform_new_cfg = false;
3991 id.transform_return_to_modify = true;
3992 id.transform_lang_insert_block = NULL;
3993 id.statements_to_fold = pointer_set_create ();
3995 push_gimplify_context (&gctx);
3997 /* We make no attempts to keep dominance info up-to-date. */
3998 free_dominance_info (CDI_DOMINATORS);
3999 free_dominance_info (CDI_POST_DOMINATORS);
4001 /* Register specific gimple functions. */
4002 gimple_register_cfg_hooks ();
4004 /* Reach the trees by walking over the CFG, and note the
4005 enclosing basic-blocks in the call edges. */
4006 /* We walk the blocks going forward, because inlined function bodies
4007 will split id->current_basic_block, and the new blocks will
4008 follow it; we'll trudge through them, processing their CALL_EXPRs
4009 along the way. */
4010 FOR_EACH_BB (bb)
4011 gimple_expand_calls_inline (bb, &id);
4013 pop_gimplify_context (NULL);
4015 #ifdef ENABLE_CHECKING
4017 struct cgraph_edge *e;
4019 verify_cgraph_node (id.dst_node);
4021 /* Double check that we inlined everything we are supposed to inline. */
4022 for (e = id.dst_node->callees; e; e = e->next_callee)
4023 gcc_assert (e->inline_failed);
4025 #endif
4027 /* Fold the statements before compacting/renumbering the basic blocks. */
4028 fold_marked_statements (last, id.statements_to_fold);
4029 pointer_set_destroy (id.statements_to_fold);
4031 gcc_assert (!id.debug_stmts);
4033 /* Renumber the (code) basic_blocks consecutively. */
4034 compact_blocks ();
4035 /* Renumber the lexical scoping (non-code) blocks consecutively. */
4036 number_blocks (fn);
4038 fold_cond_expr_cond ();
4039 delete_unreachable_blocks_update_callgraph (&id);
4040 #ifdef ENABLE_CHECKING
4041 verify_cgraph_node (id.dst_node);
4042 #endif
4044 /* It would be nice to check SSA/CFG/statement consistency here, but it is
4045 not possible yet - the IPA passes might make various functions to not
4046 throw and they don't care to proactively update local EH info. This is
4047 done later in fixup_cfg pass that also execute the verification. */
4048 return (TODO_update_ssa
4049 | TODO_cleanup_cfg
4050 | (gimple_in_ssa_p (cfun) ? TODO_remove_unused_locals : 0)
4051 | (profile_status != PROFILE_ABSENT ? TODO_rebuild_frequencies : 0));
4054 /* Passed to walk_tree. Copies the node pointed to, if appropriate. */
4056 tree
4057 copy_tree_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
4059 enum tree_code code = TREE_CODE (*tp);
4060 enum tree_code_class cl = TREE_CODE_CLASS (code);
4062 /* We make copies of most nodes. */
4063 if (IS_EXPR_CODE_CLASS (cl)
4064 || code == TREE_LIST
4065 || code == TREE_VEC
4066 || code == TYPE_DECL
4067 || code == OMP_CLAUSE)
4069 /* Because the chain gets clobbered when we make a copy, we save it
4070 here. */
4071 tree chain = NULL_TREE, new_tree;
4073 chain = TREE_CHAIN (*tp);
4075 /* Copy the node. */
4076 new_tree = copy_node (*tp);
4078 /* Propagate mudflap marked-ness. */
4079 if (flag_mudflap && mf_marked_p (*tp))
4080 mf_mark (new_tree);
4082 *tp = new_tree;
4084 /* Now, restore the chain, if appropriate. That will cause
4085 walk_tree to walk into the chain as well. */
4086 if (code == PARM_DECL
4087 || code == TREE_LIST
4088 || code == OMP_CLAUSE)
4089 TREE_CHAIN (*tp) = chain;
4091 /* For now, we don't update BLOCKs when we make copies. So, we
4092 have to nullify all BIND_EXPRs. */
4093 if (TREE_CODE (*tp) == BIND_EXPR)
4094 BIND_EXPR_BLOCK (*tp) = NULL_TREE;
4096 else if (code == CONSTRUCTOR)
4098 /* CONSTRUCTOR nodes need special handling because
4099 we need to duplicate the vector of elements. */
4100 tree new_tree;
4102 new_tree = copy_node (*tp);
4104 /* Propagate mudflap marked-ness. */
4105 if (flag_mudflap && mf_marked_p (*tp))
4106 mf_mark (new_tree);
4108 CONSTRUCTOR_ELTS (new_tree) = VEC_copy (constructor_elt, gc,
4109 CONSTRUCTOR_ELTS (*tp));
4110 *tp = new_tree;
4112 else if (TREE_CODE_CLASS (code) == tcc_type)
4113 *walk_subtrees = 0;
4114 else if (TREE_CODE_CLASS (code) == tcc_declaration)
4115 *walk_subtrees = 0;
4116 else if (TREE_CODE_CLASS (code) == tcc_constant)
4117 *walk_subtrees = 0;
4118 else
4119 gcc_assert (code != STATEMENT_LIST);
4120 return NULL_TREE;
4123 /* The SAVE_EXPR pointed to by TP is being copied. If ST contains
4124 information indicating to what new SAVE_EXPR this one should be mapped,
4125 use that one. Otherwise, create a new node and enter it in ST. FN is
4126 the function into which the copy will be placed. */
4128 static void
4129 remap_save_expr (tree *tp, void *st_, int *walk_subtrees)
4131 struct pointer_map_t *st = (struct pointer_map_t *) st_;
4132 tree *n;
4133 tree t;
4135 /* See if we already encountered this SAVE_EXPR. */
4136 n = (tree *) pointer_map_contains (st, *tp);
4138 /* If we didn't already remap this SAVE_EXPR, do so now. */
4139 if (!n)
4141 t = copy_node (*tp);
4143 /* Remember this SAVE_EXPR. */
4144 *pointer_map_insert (st, *tp) = t;
4145 /* Make sure we don't remap an already-remapped SAVE_EXPR. */
4146 *pointer_map_insert (st, t) = t;
4148 else
4150 /* We've already walked into this SAVE_EXPR; don't do it again. */
4151 *walk_subtrees = 0;
4152 t = *n;
4155 /* Replace this SAVE_EXPR with the copy. */
4156 *tp = t;
4159 /* Called via walk_tree. If *TP points to a DECL_STMT for a local label,
4160 copies the declaration and enters it in the splay_tree in DATA (which is
4161 really an `copy_body_data *'). */
4163 static tree
4164 mark_local_for_remap_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
4165 void *data)
4167 copy_body_data *id = (copy_body_data *) data;
4169 /* Don't walk into types. */
4170 if (TYPE_P (*tp))
4171 *walk_subtrees = 0;
4173 else if (TREE_CODE (*tp) == LABEL_EXPR)
4175 tree decl = TREE_OPERAND (*tp, 0);
4177 /* Copy the decl and remember the copy. */
4178 insert_decl_map (id, decl, id->copy_decl (decl, id));
4181 return NULL_TREE;
4184 /* Perform any modifications to EXPR required when it is unsaved. Does
4185 not recurse into EXPR's subtrees. */
4187 static void
4188 unsave_expr_1 (tree expr)
4190 switch (TREE_CODE (expr))
4192 case TARGET_EXPR:
4193 /* Don't mess with a TARGET_EXPR that hasn't been expanded.
4194 It's OK for this to happen if it was part of a subtree that
4195 isn't immediately expanded, such as operand 2 of another
4196 TARGET_EXPR. */
4197 if (TREE_OPERAND (expr, 1))
4198 break;
4200 TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 3);
4201 TREE_OPERAND (expr, 3) = NULL_TREE;
4202 break;
4204 default:
4205 break;
4209 /* Called via walk_tree when an expression is unsaved. Using the
4210 splay_tree pointed to by ST (which is really a `splay_tree'),
4211 remaps all local declarations to appropriate replacements. */
4213 static tree
4214 unsave_r (tree *tp, int *walk_subtrees, void *data)
4216 copy_body_data *id = (copy_body_data *) data;
4217 struct pointer_map_t *st = id->decl_map;
4218 tree *n;
4220 /* Only a local declaration (variable or label). */
4221 if ((TREE_CODE (*tp) == VAR_DECL && !TREE_STATIC (*tp))
4222 || TREE_CODE (*tp) == LABEL_DECL)
4224 /* Lookup the declaration. */
4225 n = (tree *) pointer_map_contains (st, *tp);
4227 /* If it's there, remap it. */
4228 if (n)
4229 *tp = *n;
4232 else if (TREE_CODE (*tp) == STATEMENT_LIST)
4233 gcc_unreachable ();
4234 else if (TREE_CODE (*tp) == BIND_EXPR)
4235 copy_bind_expr (tp, walk_subtrees, id);
4236 else if (TREE_CODE (*tp) == SAVE_EXPR
4237 || TREE_CODE (*tp) == TARGET_EXPR)
4238 remap_save_expr (tp, st, walk_subtrees);
4239 else
4241 copy_tree_r (tp, walk_subtrees, NULL);
4243 /* Do whatever unsaving is required. */
4244 unsave_expr_1 (*tp);
4247 /* Keep iterating. */
4248 return NULL_TREE;
4251 /* Copies everything in EXPR and replaces variables, labels
4252 and SAVE_EXPRs local to EXPR. */
4254 tree
4255 unsave_expr_now (tree expr)
4257 copy_body_data id;
4259 /* There's nothing to do for NULL_TREE. */
4260 if (expr == 0)
4261 return expr;
4263 /* Set up ID. */
4264 memset (&id, 0, sizeof (id));
4265 id.src_fn = current_function_decl;
4266 id.dst_fn = current_function_decl;
4267 id.decl_map = pointer_map_create ();
4268 id.debug_map = NULL;
4270 id.copy_decl = copy_decl_no_change;
4271 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
4272 id.transform_new_cfg = false;
4273 id.transform_return_to_modify = false;
4274 id.transform_lang_insert_block = NULL;
4276 /* Walk the tree once to find local labels. */
4277 walk_tree_without_duplicates (&expr, mark_local_for_remap_r, &id);
4279 /* Walk the tree again, copying, remapping, and unsaving. */
4280 walk_tree (&expr, unsave_r, &id, NULL);
4282 /* Clean up. */
4283 pointer_map_destroy (id.decl_map);
4284 if (id.debug_map)
4285 pointer_map_destroy (id.debug_map);
4287 return expr;
4290 /* Called via walk_gimple_seq. If *GSIP points to a GIMPLE_LABEL for a local
4291 label, copies the declaration and enters it in the splay_tree in DATA (which
4292 is really a 'copy_body_data *'. */
4294 static tree
4295 mark_local_labels_stmt (gimple_stmt_iterator *gsip,
4296 bool *handled_ops_p ATTRIBUTE_UNUSED,
4297 struct walk_stmt_info *wi)
4299 copy_body_data *id = (copy_body_data *) wi->info;
4300 gimple stmt = gsi_stmt (*gsip);
4302 if (gimple_code (stmt) == GIMPLE_LABEL)
4304 tree decl = gimple_label_label (stmt);
4306 /* Copy the decl and remember the copy. */
4307 insert_decl_map (id, decl, id->copy_decl (decl, id));
4310 return NULL_TREE;
4314 /* Called via walk_gimple_seq by copy_gimple_seq_and_replace_local.
4315 Using the splay_tree pointed to by ST (which is really a `splay_tree'),
4316 remaps all local declarations to appropriate replacements in gimple
4317 operands. */
4319 static tree
4320 replace_locals_op (tree *tp, int *walk_subtrees, void *data)
4322 struct walk_stmt_info *wi = (struct walk_stmt_info*) data;
4323 copy_body_data *id = (copy_body_data *) wi->info;
4324 struct pointer_map_t *st = id->decl_map;
4325 tree *n;
4326 tree expr = *tp;
4328 /* Only a local declaration (variable or label). */
4329 if ((TREE_CODE (expr) == VAR_DECL
4330 && !TREE_STATIC (expr))
4331 || TREE_CODE (expr) == LABEL_DECL)
4333 /* Lookup the declaration. */
4334 n = (tree *) pointer_map_contains (st, expr);
4336 /* If it's there, remap it. */
4337 if (n)
4338 *tp = *n;
4339 *walk_subtrees = 0;
4341 else if (TREE_CODE (expr) == STATEMENT_LIST
4342 || TREE_CODE (expr) == BIND_EXPR
4343 || TREE_CODE (expr) == SAVE_EXPR)
4344 gcc_unreachable ();
4345 else if (TREE_CODE (expr) == TARGET_EXPR)
4347 /* Don't mess with a TARGET_EXPR that hasn't been expanded.
4348 It's OK for this to happen if it was part of a subtree that
4349 isn't immediately expanded, such as operand 2 of another
4350 TARGET_EXPR. */
4351 if (!TREE_OPERAND (expr, 1))
4353 TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 3);
4354 TREE_OPERAND (expr, 3) = NULL_TREE;
4358 /* Keep iterating. */
4359 return NULL_TREE;
4363 /* Called via walk_gimple_seq by copy_gimple_seq_and_replace_local.
4364 Using the splay_tree pointed to by ST (which is really a `splay_tree'),
4365 remaps all local declarations to appropriate replacements in gimple
4366 statements. */
4368 static tree
4369 replace_locals_stmt (gimple_stmt_iterator *gsip,
4370 bool *handled_ops_p ATTRIBUTE_UNUSED,
4371 struct walk_stmt_info *wi)
4373 copy_body_data *id = (copy_body_data *) wi->info;
4374 gimple stmt = gsi_stmt (*gsip);
4376 if (gimple_code (stmt) == GIMPLE_BIND)
4378 tree block = gimple_bind_block (stmt);
4380 if (block)
4382 remap_block (&block, id);
4383 gimple_bind_set_block (stmt, block);
4386 /* This will remap a lot of the same decls again, but this should be
4387 harmless. */
4388 if (gimple_bind_vars (stmt))
4389 gimple_bind_set_vars (stmt, remap_decls (gimple_bind_vars (stmt), NULL, id));
4392 /* Keep iterating. */
4393 return NULL_TREE;
4397 /* Copies everything in SEQ and replaces variables and labels local to
4398 current_function_decl. */
4400 gimple_seq
4401 copy_gimple_seq_and_replace_locals (gimple_seq seq)
4403 copy_body_data id;
4404 struct walk_stmt_info wi;
4405 struct pointer_set_t *visited;
4406 gimple_seq copy;
4408 /* There's nothing to do for NULL_TREE. */
4409 if (seq == NULL)
4410 return seq;
4412 /* Set up ID. */
4413 memset (&id, 0, sizeof (id));
4414 id.src_fn = current_function_decl;
4415 id.dst_fn = current_function_decl;
4416 id.decl_map = pointer_map_create ();
4417 id.debug_map = NULL;
4419 id.copy_decl = copy_decl_no_change;
4420 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
4421 id.transform_new_cfg = false;
4422 id.transform_return_to_modify = false;
4423 id.transform_lang_insert_block = NULL;
4425 /* Walk the tree once to find local labels. */
4426 memset (&wi, 0, sizeof (wi));
4427 visited = pointer_set_create ();
4428 wi.info = &id;
4429 wi.pset = visited;
4430 walk_gimple_seq (seq, mark_local_labels_stmt, NULL, &wi);
4431 pointer_set_destroy (visited);
4433 copy = gimple_seq_copy (seq);
4435 /* Walk the copy, remapping decls. */
4436 memset (&wi, 0, sizeof (wi));
4437 wi.info = &id;
4438 walk_gimple_seq (copy, replace_locals_stmt, replace_locals_op, &wi);
4440 /* Clean up. */
4441 pointer_map_destroy (id.decl_map);
4442 if (id.debug_map)
4443 pointer_map_destroy (id.debug_map);
4445 return copy;
4449 /* Allow someone to determine if SEARCH is a child of TOP from gdb. */
4451 static tree
4452 debug_find_tree_1 (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED, void *data)
4454 if (*tp == data)
4455 return (tree) data;
4456 else
4457 return NULL;
4460 bool
4461 debug_find_tree (tree top, tree search)
4463 return walk_tree_without_duplicates (&top, debug_find_tree_1, search) != 0;
4467 /* Declare the variables created by the inliner. Add all the variables in
4468 VARS to BIND_EXPR. */
4470 static void
4471 declare_inline_vars (tree block, tree vars)
4473 tree t;
4474 for (t = vars; t; t = TREE_CHAIN (t))
4476 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
4477 gcc_assert (!TREE_STATIC (t) && !TREE_ASM_WRITTEN (t));
4478 cfun->local_decls = tree_cons (NULL_TREE, t, cfun->local_decls);
4481 if (block)
4482 BLOCK_VARS (block) = chainon (BLOCK_VARS (block), vars);
4485 /* Copy NODE (which must be a DECL). The DECL originally was in the FROM_FN,
4486 but now it will be in the TO_FN. PARM_TO_VAR means enable PARM_DECL to
4487 VAR_DECL translation. */
4489 static tree
4490 copy_decl_for_dup_finish (copy_body_data *id, tree decl, tree copy)
4492 /* Don't generate debug information for the copy if we wouldn't have
4493 generated it for the copy either. */
4494 DECL_ARTIFICIAL (copy) = DECL_ARTIFICIAL (decl);
4495 DECL_IGNORED_P (copy) = DECL_IGNORED_P (decl);
4497 /* Set the DECL_ABSTRACT_ORIGIN so the debugging routines know what
4498 declaration inspired this copy. */
4499 DECL_ABSTRACT_ORIGIN (copy) = DECL_ORIGIN (decl);
4501 /* The new variable/label has no RTL, yet. */
4502 if (CODE_CONTAINS_STRUCT (TREE_CODE (copy), TS_DECL_WRTL)
4503 && !TREE_STATIC (copy) && !DECL_EXTERNAL (copy))
4504 SET_DECL_RTL (copy, NULL_RTX);
4506 /* These args would always appear unused, if not for this. */
4507 TREE_USED (copy) = 1;
4509 /* Set the context for the new declaration. */
4510 if (!DECL_CONTEXT (decl))
4511 /* Globals stay global. */
4513 else if (DECL_CONTEXT (decl) != id->src_fn)
4514 /* Things that weren't in the scope of the function we're inlining
4515 from aren't in the scope we're inlining to, either. */
4517 else if (TREE_STATIC (decl))
4518 /* Function-scoped static variables should stay in the original
4519 function. */
4521 else
4522 /* Ordinary automatic local variables are now in the scope of the
4523 new function. */
4524 DECL_CONTEXT (copy) = id->dst_fn;
4526 return copy;
4529 static tree
4530 copy_decl_to_var (tree decl, copy_body_data *id)
4532 tree copy, type;
4534 gcc_assert (TREE_CODE (decl) == PARM_DECL
4535 || TREE_CODE (decl) == RESULT_DECL);
4537 type = TREE_TYPE (decl);
4539 copy = build_decl (DECL_SOURCE_LOCATION (id->dst_fn),
4540 VAR_DECL, DECL_NAME (decl), type);
4541 TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (decl);
4542 TREE_READONLY (copy) = TREE_READONLY (decl);
4543 TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (decl);
4544 DECL_GIMPLE_REG_P (copy) = DECL_GIMPLE_REG_P (decl);
4546 return copy_decl_for_dup_finish (id, decl, copy);
4549 /* Like copy_decl_to_var, but create a return slot object instead of a
4550 pointer variable for return by invisible reference. */
4552 static tree
4553 copy_result_decl_to_var (tree decl, copy_body_data *id)
4555 tree copy, type;
4557 gcc_assert (TREE_CODE (decl) == PARM_DECL
4558 || TREE_CODE (decl) == RESULT_DECL);
4560 type = TREE_TYPE (decl);
4561 if (DECL_BY_REFERENCE (decl))
4562 type = TREE_TYPE (type);
4564 copy = build_decl (DECL_SOURCE_LOCATION (id->dst_fn),
4565 VAR_DECL, DECL_NAME (decl), type);
4566 TREE_READONLY (copy) = TREE_READONLY (decl);
4567 TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (decl);
4568 if (!DECL_BY_REFERENCE (decl))
4570 TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (decl);
4571 DECL_GIMPLE_REG_P (copy) = DECL_GIMPLE_REG_P (decl);
4574 return copy_decl_for_dup_finish (id, decl, copy);
4577 tree
4578 copy_decl_no_change (tree decl, copy_body_data *id)
4580 tree copy;
4582 copy = copy_node (decl);
4584 /* The COPY is not abstract; it will be generated in DST_FN. */
4585 DECL_ABSTRACT (copy) = 0;
4586 lang_hooks.dup_lang_specific_decl (copy);
4588 /* TREE_ADDRESSABLE isn't used to indicate that a label's address has
4589 been taken; it's for internal bookkeeping in expand_goto_internal. */
4590 if (TREE_CODE (copy) == LABEL_DECL)
4592 TREE_ADDRESSABLE (copy) = 0;
4593 LABEL_DECL_UID (copy) = -1;
4596 return copy_decl_for_dup_finish (id, decl, copy);
4599 static tree
4600 copy_decl_maybe_to_var (tree decl, copy_body_data *id)
4602 if (TREE_CODE (decl) == PARM_DECL || TREE_CODE (decl) == RESULT_DECL)
4603 return copy_decl_to_var (decl, id);
4604 else
4605 return copy_decl_no_change (decl, id);
4608 /* Return a copy of the function's argument tree. */
4609 static tree
4610 copy_arguments_for_versioning (tree orig_parm, copy_body_data * id,
4611 bitmap args_to_skip, tree *vars)
4613 tree arg, *parg;
4614 tree new_parm = NULL;
4615 int i = 0;
4617 parg = &new_parm;
4619 for (arg = orig_parm; arg; arg = TREE_CHAIN (arg), i++)
4620 if (!args_to_skip || !bitmap_bit_p (args_to_skip, i))
4622 tree new_tree = remap_decl (arg, id);
4623 lang_hooks.dup_lang_specific_decl (new_tree);
4624 *parg = new_tree;
4625 parg = &TREE_CHAIN (new_tree);
4627 else if (!pointer_map_contains (id->decl_map, arg))
4629 /* Make an equivalent VAR_DECL. If the argument was used
4630 as temporary variable later in function, the uses will be
4631 replaced by local variable. */
4632 tree var = copy_decl_to_var (arg, id);
4633 get_var_ann (var);
4634 add_referenced_var (var);
4635 insert_decl_map (id, arg, var);
4636 /* Declare this new variable. */
4637 TREE_CHAIN (var) = *vars;
4638 *vars = var;
4640 return new_parm;
4643 /* Return a copy of the function's static chain. */
4644 static tree
4645 copy_static_chain (tree static_chain, copy_body_data * id)
4647 tree *chain_copy, *pvar;
4649 chain_copy = &static_chain;
4650 for (pvar = chain_copy; *pvar; pvar = &TREE_CHAIN (*pvar))
4652 tree new_tree = remap_decl (*pvar, id);
4653 lang_hooks.dup_lang_specific_decl (new_tree);
4654 TREE_CHAIN (new_tree) = TREE_CHAIN (*pvar);
4655 *pvar = new_tree;
4657 return static_chain;
4660 /* Return true if the function is allowed to be versioned.
4661 This is a guard for the versioning functionality. */
4663 bool
4664 tree_versionable_function_p (tree fndecl)
4666 return (!lookup_attribute ("noclone", DECL_ATTRIBUTES (fndecl))
4667 && copy_forbidden (DECL_STRUCT_FUNCTION (fndecl), fndecl) == NULL);
4670 /* Delete all unreachable basic blocks and update callgraph.
4671 Doing so is somewhat nontrivial because we need to update all clones and
4672 remove inline function that become unreachable. */
4674 static bool
4675 delete_unreachable_blocks_update_callgraph (copy_body_data *id)
4677 bool changed = false;
4678 basic_block b, next_bb;
4680 find_unreachable_blocks ();
4682 /* Delete all unreachable basic blocks. */
4684 for (b = ENTRY_BLOCK_PTR->next_bb; b != EXIT_BLOCK_PTR; b = next_bb)
4686 next_bb = b->next_bb;
4688 if (!(b->flags & BB_REACHABLE))
4690 gimple_stmt_iterator bsi;
4692 for (bsi = gsi_start_bb (b); !gsi_end_p (bsi); gsi_next (&bsi))
4693 if (gimple_code (gsi_stmt (bsi)) == GIMPLE_CALL)
4695 struct cgraph_edge *e;
4696 struct cgraph_node *node;
4698 if ((e = cgraph_edge (id->dst_node, gsi_stmt (bsi))) != NULL)
4700 if (!e->inline_failed)
4701 cgraph_remove_node_and_inline_clones (e->callee);
4702 else
4703 cgraph_remove_edge (e);
4705 if (id->transform_call_graph_edges == CB_CGE_MOVE_CLONES
4706 && id->dst_node->clones)
4707 for (node = id->dst_node->clones; node != id->dst_node;)
4709 if ((e = cgraph_edge (node, gsi_stmt (bsi))) != NULL)
4711 if (!e->inline_failed)
4712 cgraph_remove_node_and_inline_clones (e->callee);
4713 else
4714 cgraph_remove_edge (e);
4717 if (node->clones)
4718 node = node->clones;
4719 else if (node->next_sibling_clone)
4720 node = node->next_sibling_clone;
4721 else
4723 while (node != id->dst_node && !node->next_sibling_clone)
4724 node = node->clone_of;
4725 if (node != id->dst_node)
4726 node = node->next_sibling_clone;
4730 delete_basic_block (b);
4731 changed = true;
4735 if (changed)
4736 tidy_fallthru_edges ();
4737 return changed;
4740 /* Update clone info after duplication. */
4742 static void
4743 update_clone_info (copy_body_data * id)
4745 struct cgraph_node *node;
4746 if (!id->dst_node->clones)
4747 return;
4748 for (node = id->dst_node->clones; node != id->dst_node;)
4750 /* First update replace maps to match the new body. */
4751 if (node->clone.tree_map)
4753 unsigned int i;
4754 for (i = 0; i < VEC_length (ipa_replace_map_p, node->clone.tree_map); i++)
4756 struct ipa_replace_map *replace_info;
4757 replace_info = VEC_index (ipa_replace_map_p, node->clone.tree_map, i);
4758 walk_tree (&replace_info->old_tree, copy_tree_body_r, id, NULL);
4759 walk_tree (&replace_info->new_tree, copy_tree_body_r, id, NULL);
4762 if (node->clones)
4763 node = node->clones;
4764 else if (node->next_sibling_clone)
4765 node = node->next_sibling_clone;
4766 else
4768 while (node != id->dst_node && !node->next_sibling_clone)
4769 node = node->clone_of;
4770 if (node != id->dst_node)
4771 node = node->next_sibling_clone;
4776 /* Create a copy of a function's tree.
4777 OLD_DECL and NEW_DECL are FUNCTION_DECL tree nodes
4778 of the original function and the new copied function
4779 respectively. In case we want to replace a DECL
4780 tree with another tree while duplicating the function's
4781 body, TREE_MAP represents the mapping between these
4782 trees. If UPDATE_CLONES is set, the call_stmt fields
4783 of edges of clones of the function will be updated. */
4784 void
4785 tree_function_versioning (tree old_decl, tree new_decl,
4786 VEC(ipa_replace_map_p,gc)* tree_map,
4787 bool update_clones, bitmap args_to_skip)
4789 struct cgraph_node *old_version_node;
4790 struct cgraph_node *new_version_node;
4791 copy_body_data id;
4792 tree p;
4793 unsigned i;
4794 struct ipa_replace_map *replace_info;
4795 basic_block old_entry_block, bb;
4796 VEC (gimple, heap) *init_stmts = VEC_alloc (gimple, heap, 10);
4798 tree t_step;
4799 tree old_current_function_decl = current_function_decl;
4800 tree vars = NULL_TREE;
4802 gcc_assert (TREE_CODE (old_decl) == FUNCTION_DECL
4803 && TREE_CODE (new_decl) == FUNCTION_DECL);
4804 DECL_POSSIBLY_INLINED (old_decl) = 1;
4806 old_version_node = cgraph_node (old_decl);
4807 new_version_node = cgraph_node (new_decl);
4809 /* Output the inlining info for this abstract function, since it has been
4810 inlined. If we don't do this now, we can lose the information about the
4811 variables in the function when the blocks get blown away as soon as we
4812 remove the cgraph node. */
4813 (*debug_hooks->outlining_inline_function) (old_decl);
4815 DECL_ARTIFICIAL (new_decl) = 1;
4816 DECL_ABSTRACT_ORIGIN (new_decl) = DECL_ORIGIN (old_decl);
4817 DECL_FUNCTION_PERSONALITY (new_decl) = DECL_FUNCTION_PERSONALITY (old_decl);
4819 /* Prepare the data structures for the tree copy. */
4820 memset (&id, 0, sizeof (id));
4822 /* Generate a new name for the new version. */
4823 id.statements_to_fold = pointer_set_create ();
4825 id.decl_map = pointer_map_create ();
4826 id.debug_map = NULL;
4827 id.src_fn = old_decl;
4828 id.dst_fn = new_decl;
4829 id.src_node = old_version_node;
4830 id.dst_node = new_version_node;
4831 id.src_cfun = DECL_STRUCT_FUNCTION (old_decl);
4832 if (id.src_node->ipa_transforms_to_apply)
4834 VEC(ipa_opt_pass,heap) * old_transforms_to_apply = id.dst_node->ipa_transforms_to_apply;
4835 unsigned int i;
4837 id.dst_node->ipa_transforms_to_apply = VEC_copy (ipa_opt_pass, heap,
4838 id.src_node->ipa_transforms_to_apply);
4839 for (i = 0; i < VEC_length (ipa_opt_pass, old_transforms_to_apply); i++)
4840 VEC_safe_push (ipa_opt_pass, heap, id.dst_node->ipa_transforms_to_apply,
4841 VEC_index (ipa_opt_pass,
4842 old_transforms_to_apply,
4843 i));
4846 id.copy_decl = copy_decl_no_change;
4847 id.transform_call_graph_edges
4848 = update_clones ? CB_CGE_MOVE_CLONES : CB_CGE_MOVE;
4849 id.transform_new_cfg = true;
4850 id.transform_return_to_modify = false;
4851 id.transform_lang_insert_block = NULL;
4853 current_function_decl = new_decl;
4854 old_entry_block = ENTRY_BLOCK_PTR_FOR_FUNCTION
4855 (DECL_STRUCT_FUNCTION (old_decl));
4856 initialize_cfun (new_decl, old_decl,
4857 old_entry_block->count);
4858 push_cfun (DECL_STRUCT_FUNCTION (new_decl));
4860 /* Copy the function's static chain. */
4861 p = DECL_STRUCT_FUNCTION (old_decl)->static_chain_decl;
4862 if (p)
4863 DECL_STRUCT_FUNCTION (new_decl)->static_chain_decl =
4864 copy_static_chain (DECL_STRUCT_FUNCTION (old_decl)->static_chain_decl,
4865 &id);
4867 /* If there's a tree_map, prepare for substitution. */
4868 if (tree_map)
4869 for (i = 0; i < VEC_length (ipa_replace_map_p, tree_map); i++)
4871 gimple init;
4872 replace_info = VEC_index (ipa_replace_map_p, tree_map, i);
4873 if (replace_info->replace_p)
4875 tree op = replace_info->new_tree;
4877 STRIP_NOPS (op);
4879 if (TREE_CODE (op) == VIEW_CONVERT_EXPR)
4880 op = TREE_OPERAND (op, 0);
4882 if (TREE_CODE (op) == ADDR_EXPR)
4884 op = TREE_OPERAND (op, 0);
4885 while (handled_component_p (op))
4886 op = TREE_OPERAND (op, 0);
4887 if (TREE_CODE (op) == VAR_DECL)
4888 add_referenced_var (op);
4890 gcc_assert (TREE_CODE (replace_info->old_tree) == PARM_DECL);
4891 init = setup_one_parameter (&id, replace_info->old_tree,
4892 replace_info->new_tree, id.src_fn,
4893 NULL,
4894 &vars);
4895 if (init)
4896 VEC_safe_push (gimple, heap, init_stmts, init);
4899 /* Copy the function's arguments. */
4900 if (DECL_ARGUMENTS (old_decl) != NULL_TREE)
4901 DECL_ARGUMENTS (new_decl) =
4902 copy_arguments_for_versioning (DECL_ARGUMENTS (old_decl), &id,
4903 args_to_skip, &vars);
4905 DECL_INITIAL (new_decl) = remap_blocks (DECL_INITIAL (id.src_fn), &id);
4907 /* Renumber the lexical scoping (non-code) blocks consecutively. */
4908 number_blocks (id.dst_fn);
4910 declare_inline_vars (DECL_INITIAL (new_decl), vars);
4912 if (DECL_STRUCT_FUNCTION (old_decl)->local_decls != NULL_TREE)
4913 /* Add local vars. */
4914 for (t_step = DECL_STRUCT_FUNCTION (old_decl)->local_decls;
4915 t_step; t_step = TREE_CHAIN (t_step))
4917 tree var = TREE_VALUE (t_step);
4918 if (TREE_STATIC (var) && !TREE_ASM_WRITTEN (var))
4919 cfun->local_decls = tree_cons (NULL_TREE, var, cfun->local_decls);
4920 else if (!can_be_nonlocal (var, &id))
4921 cfun->local_decls =
4922 tree_cons (NULL_TREE, remap_decl (var, &id),
4923 cfun->local_decls);
4926 /* Copy the Function's body. */
4927 copy_body (&id, old_entry_block->count, REG_BR_PROB_BASE,
4928 ENTRY_BLOCK_PTR, EXIT_BLOCK_PTR);
4930 if (DECL_RESULT (old_decl) != NULL_TREE)
4932 tree *res_decl = &DECL_RESULT (old_decl);
4933 DECL_RESULT (new_decl) = remap_decl (*res_decl, &id);
4934 lang_hooks.dup_lang_specific_decl (DECL_RESULT (new_decl));
4937 /* Renumber the lexical scoping (non-code) blocks consecutively. */
4938 number_blocks (new_decl);
4940 /* We want to create the BB unconditionally, so that the addition of
4941 debug stmts doesn't affect BB count, which may in the end cause
4942 codegen differences. */
4943 bb = split_edge (single_succ_edge (ENTRY_BLOCK_PTR));
4944 while (VEC_length (gimple, init_stmts))
4945 insert_init_stmt (&id, bb, VEC_pop (gimple, init_stmts));
4946 update_clone_info (&id);
4948 /* Remap the nonlocal_goto_save_area, if any. */
4949 if (cfun->nonlocal_goto_save_area)
4951 struct walk_stmt_info wi;
4953 memset (&wi, 0, sizeof (wi));
4954 wi.info = &id;
4955 walk_tree (&cfun->nonlocal_goto_save_area, remap_gimple_op_r, &wi, NULL);
4958 /* Clean up. */
4959 pointer_map_destroy (id.decl_map);
4960 if (id.debug_map)
4961 pointer_map_destroy (id.debug_map);
4962 free_dominance_info (CDI_DOMINATORS);
4963 free_dominance_info (CDI_POST_DOMINATORS);
4965 fold_marked_statements (0, id.statements_to_fold);
4966 pointer_set_destroy (id.statements_to_fold);
4967 fold_cond_expr_cond ();
4968 delete_unreachable_blocks_update_callgraph (&id);
4969 update_ssa (TODO_update_ssa);
4970 free_dominance_info (CDI_DOMINATORS);
4971 free_dominance_info (CDI_POST_DOMINATORS);
4973 gcc_assert (!id.debug_stmts);
4974 VEC_free (gimple, heap, init_stmts);
4975 pop_cfun ();
4976 current_function_decl = old_current_function_decl;
4977 gcc_assert (!current_function_decl
4978 || DECL_STRUCT_FUNCTION (current_function_decl) == cfun);
4979 return;
4982 /* EXP is CALL_EXPR present in a GENERIC expression tree. Try to integrate
4983 the callee and return the inlined body on success. */
4985 tree
4986 maybe_inline_call_in_expr (tree exp)
4988 tree fn = get_callee_fndecl (exp);
4990 /* We can only try to inline "const" functions. */
4991 if (fn && TREE_READONLY (fn) && DECL_SAVED_TREE (fn))
4993 struct pointer_map_t *decl_map = pointer_map_create ();
4994 call_expr_arg_iterator iter;
4995 copy_body_data id;
4996 tree param, arg, t;
4998 /* Remap the parameters. */
4999 for (param = DECL_ARGUMENTS (fn), arg = first_call_expr_arg (exp, &iter);
5000 param;
5001 param = TREE_CHAIN (param), arg = next_call_expr_arg (&iter))
5002 *pointer_map_insert (decl_map, param) = arg;
5004 memset (&id, 0, sizeof (id));
5005 id.src_fn = fn;
5006 id.dst_fn = current_function_decl;
5007 id.src_cfun = DECL_STRUCT_FUNCTION (fn);
5008 id.decl_map = decl_map;
5010 id.copy_decl = copy_decl_no_change;
5011 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
5012 id.transform_new_cfg = false;
5013 id.transform_return_to_modify = true;
5014 id.transform_lang_insert_block = false;
5016 /* Make sure not to unshare trees behind the front-end's back
5017 since front-end specific mechanisms may rely on sharing. */
5018 id.regimplify = false;
5019 id.do_not_unshare = true;
5021 /* We're not inside any EH region. */
5022 id.eh_lp_nr = 0;
5024 t = copy_tree_body (&id);
5025 pointer_map_destroy (decl_map);
5027 /* We can only return something suitable for use in a GENERIC
5028 expression tree. */
5029 if (TREE_CODE (t) == MODIFY_EXPR)
5030 return TREE_OPERAND (t, 1);
5033 return NULL_TREE;
5036 /* Duplicate a type, fields and all. */
5038 tree
5039 build_duplicate_type (tree type)
5041 struct copy_body_data id;
5043 memset (&id, 0, sizeof (id));
5044 id.src_fn = current_function_decl;
5045 id.dst_fn = current_function_decl;
5046 id.src_cfun = cfun;
5047 id.decl_map = pointer_map_create ();
5048 id.debug_map = NULL;
5049 id.copy_decl = copy_decl_no_change;
5051 type = remap_type_1 (type, &id);
5053 pointer_map_destroy (id.decl_map);
5054 if (id.debug_map)
5055 pointer_map_destroy (id.debug_map);
5057 TYPE_CANONICAL (type) = type;
5059 return type;
5062 /* Return whether it is safe to inline a function because it used different
5063 target specific options or call site actual types mismatch parameter types.
5064 E is the call edge to be checked. */
5065 bool
5066 tree_can_inline_p (struct cgraph_edge *e)
5068 #if 0
5069 /* This causes a regression in SPEC in that it prevents a cold function from
5070 inlining a hot function. Perhaps this should only apply to functions
5071 that the user declares hot/cold/optimize explicitly. */
5073 /* Don't inline a function with a higher optimization level than the
5074 caller, or with different space constraints (hot/cold functions). */
5075 tree caller_tree = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (caller);
5076 tree callee_tree = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (callee);
5078 if (caller_tree != callee_tree)
5080 struct cl_optimization *caller_opt
5081 = TREE_OPTIMIZATION ((caller_tree)
5082 ? caller_tree
5083 : optimization_default_node);
5085 struct cl_optimization *callee_opt
5086 = TREE_OPTIMIZATION ((callee_tree)
5087 ? callee_tree
5088 : optimization_default_node);
5090 if ((caller_opt->optimize > callee_opt->optimize)
5091 || (caller_opt->optimize_size != callee_opt->optimize_size))
5092 return false;
5094 #endif
5095 tree caller, callee;
5097 caller = e->caller->decl;
5098 callee = e->callee->decl;
5100 /* We cannot inline a function that uses a different EH personality
5101 than the caller. */
5102 if (DECL_FUNCTION_PERSONALITY (caller)
5103 && DECL_FUNCTION_PERSONALITY (callee)
5104 && (DECL_FUNCTION_PERSONALITY (caller)
5105 != DECL_FUNCTION_PERSONALITY (callee)))
5107 e->inline_failed = CIF_UNSPECIFIED;
5108 gimple_call_set_cannot_inline (e->call_stmt, true);
5109 return false;
5112 /* Allow the backend to decide if inlining is ok. */
5113 if (!targetm.target_option.can_inline_p (caller, callee))
5115 e->inline_failed = CIF_TARGET_OPTION_MISMATCH;
5116 gimple_call_set_cannot_inline (e->call_stmt, true);
5117 e->call_stmt_cannot_inline_p = true;
5118 return false;
5121 if (e->call_stmt
5122 && !gimple_check_call_args (e->call_stmt))
5124 e->inline_failed = CIF_MISMATCHED_ARGUMENTS;
5125 gimple_call_set_cannot_inline (e->call_stmt, true);
5126 e->call_stmt_cannot_inline_p = true;
5127 return false;
5130 return true;