061f4c5a99763124c5d16b8f5c21942d4a7d1eb3
[gcc.git] / gcc / tree-inline.c
1 /* Tree inlining.
2 Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
3 2012 Free Software Foundation, Inc.
4 Contributed by Alexandre Oliva <aoliva@redhat.com>
5
6 This file is part of GCC.
7
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.
12
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.
17
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/>. */
21
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "diagnostic-core.h"
27 #include "tree.h"
28 #include "tree-inline.h"
29 #include "flags.h"
30 #include "params.h"
31 #include "input.h"
32 #include "insn-config.h"
33 #include "hashtab.h"
34 #include "langhooks.h"
35 #include "basic-block.h"
36 #include "tree-iterator.h"
37 #include "cgraph.h"
38 #include "intl.h"
39 #include "tree-mudflap.h"
40 #include "tree-flow.h"
41 #include "function.h"
42 #include "tree-flow.h"
43 #include "tree-pretty-print.h"
44 #include "except.h"
45 #include "debug.h"
46 #include "pointer-set.h"
47 #include "ipa-prop.h"
48 #include "value-prof.h"
49 #include "tree-pass.h"
50 #include "target.h"
51
52 #include "rtl.h" /* FIXME: For asm_str_count. */
53
54 /* I'm not real happy about this, but we need to handle gimple and
55 non-gimple trees. */
56 #include "gimple.h"
57
58 /* Inlining, Cloning, Versioning, Parallelization
59
60 Inlining: a function body is duplicated, but the PARM_DECLs are
61 remapped into VAR_DECLs, and non-void RETURN_EXPRs become
62 MODIFY_EXPRs that store to a dedicated returned-value variable.
63 The duplicated eh_region info of the copy will later be appended
64 to the info for the caller; the eh_region info in copied throwing
65 statements and RESX statements are adjusted accordingly.
66
67 Cloning: (only in C++) We have one body for a con/de/structor, and
68 multiple function decls, each with a unique parameter list.
69 Duplicate the body, using the given splay tree; some parameters
70 will become constants (like 0 or 1).
71
72 Versioning: a function body is duplicated and the result is a new
73 function rather than into blocks of an existing function as with
74 inlining. Some parameters will become constants.
75
76 Parallelization: a region of a function is duplicated resulting in
77 a new function. Variables may be replaced with complex expressions
78 to enable shared variable semantics.
79
80 All of these will simultaneously lookup any callgraph edges. If
81 we're going to inline the duplicated function body, and the given
82 function has some cloned callgraph nodes (one for each place this
83 function will be inlined) those callgraph edges will be duplicated.
84 If we're cloning the body, those callgraph edges will be
85 updated to point into the new body. (Note that the original
86 callgraph node and edge list will not be altered.)
87
88 See the CALL_EXPR handling case in copy_tree_body_r (). */
89
90 /* To Do:
91
92 o In order to make inlining-on-trees work, we pessimized
93 function-local static constants. In particular, they are now
94 always output, even when not addressed. Fix this by treating
95 function-local static constants just like global static
96 constants; the back-end already knows not to output them if they
97 are not needed.
98
99 o Provide heuristics to clamp inlining of recursive template
100 calls? */
101
102
103 /* Weights that estimate_num_insns uses to estimate the size of the
104 produced code. */
105
106 eni_weights eni_size_weights;
107
108 /* Weights that estimate_num_insns uses to estimate the time necessary
109 to execute the produced code. */
110
111 eni_weights eni_time_weights;
112
113 /* Prototypes. */
114
115 static tree declare_return_variable (copy_body_data *, tree, tree, basic_block);
116 static void remap_block (tree *, copy_body_data *);
117 static void copy_bind_expr (tree *, int *, copy_body_data *);
118 static tree mark_local_for_remap_r (tree *, int *, void *);
119 static void unsave_expr_1 (tree);
120 static tree unsave_r (tree *, int *, void *);
121 static void declare_inline_vars (tree, tree);
122 static void remap_save_expr (tree *, void *, int *);
123 static void prepend_lexical_block (tree current_block, tree new_block);
124 static tree copy_decl_to_var (tree, copy_body_data *);
125 static tree copy_result_decl_to_var (tree, copy_body_data *);
126 static tree copy_decl_maybe_to_var (tree, copy_body_data *);
127 static gimple remap_gimple_stmt (gimple, copy_body_data *);
128 static bool delete_unreachable_blocks_update_callgraph (copy_body_data *id);
129
130 /* Insert a tree->tree mapping for ID. Despite the name suggests
131 that the trees should be variables, it is used for more than that. */
132
133 void
134 insert_decl_map (copy_body_data *id, tree key, tree value)
135 {
136 *pointer_map_insert (id->decl_map, key) = value;
137
138 /* Always insert an identity map as well. If we see this same new
139 node again, we won't want to duplicate it a second time. */
140 if (key != value)
141 *pointer_map_insert (id->decl_map, value) = value;
142 }
143
144 /* Insert a tree->tree mapping for ID. This is only used for
145 variables. */
146
147 static void
148 insert_debug_decl_map (copy_body_data *id, tree key, tree value)
149 {
150 if (!gimple_in_ssa_p (id->src_cfun))
151 return;
152
153 if (!MAY_HAVE_DEBUG_STMTS)
154 return;
155
156 if (!target_for_debug_bind (key))
157 return;
158
159 gcc_assert (TREE_CODE (key) == PARM_DECL);
160 gcc_assert (TREE_CODE (value) == VAR_DECL);
161
162 if (!id->debug_map)
163 id->debug_map = pointer_map_create ();
164
165 *pointer_map_insert (id->debug_map, key) = value;
166 }
167
168 /* If nonzero, we're remapping the contents of inlined debug
169 statements. If negative, an error has occurred, such as a
170 reference to a variable that isn't available in the inlined
171 context. */
172 static int processing_debug_stmt = 0;
173
174 /* Construct new SSA name for old NAME. ID is the inline context. */
175
176 static tree
177 remap_ssa_name (tree name, copy_body_data *id)
178 {
179 tree new_tree;
180 tree *n;
181
182 gcc_assert (TREE_CODE (name) == SSA_NAME);
183
184 n = (tree *) pointer_map_contains (id->decl_map, name);
185 if (n)
186 return unshare_expr (*n);
187
188 if (processing_debug_stmt)
189 {
190 if (TREE_CODE (SSA_NAME_VAR (name)) == PARM_DECL
191 && SSA_NAME_IS_DEFAULT_DEF (name)
192 && id->entry_bb == NULL
193 && single_succ_p (ENTRY_BLOCK_PTR))
194 {
195 tree vexpr = make_node (DEBUG_EXPR_DECL);
196 gimple def_temp;
197 gimple_stmt_iterator gsi;
198 tree val = SSA_NAME_VAR (name);
199
200 n = (tree *) pointer_map_contains (id->decl_map, val);
201 if (n != NULL)
202 val = *n;
203 if (TREE_CODE (val) != PARM_DECL)
204 {
205 processing_debug_stmt = -1;
206 return name;
207 }
208 def_temp = gimple_build_debug_source_bind (vexpr, val, NULL);
209 DECL_ARTIFICIAL (vexpr) = 1;
210 TREE_TYPE (vexpr) = TREE_TYPE (name);
211 DECL_MODE (vexpr) = DECL_MODE (SSA_NAME_VAR (name));
212 gsi = gsi_after_labels (single_succ (ENTRY_BLOCK_PTR));
213 gsi_insert_before (&gsi, def_temp, GSI_SAME_STMT);
214 return vexpr;
215 }
216
217 processing_debug_stmt = -1;
218 return name;
219 }
220
221 /* Do not set DEF_STMT yet as statement is not copied yet. We do that
222 in copy_bb. */
223 new_tree = remap_decl (SSA_NAME_VAR (name), id);
224
225 /* We might've substituted constant or another SSA_NAME for
226 the variable.
227
228 Replace the SSA name representing RESULT_DECL by variable during
229 inlining: this saves us from need to introduce PHI node in a case
230 return value is just partly initialized. */
231 if ((TREE_CODE (new_tree) == VAR_DECL || TREE_CODE (new_tree) == PARM_DECL)
232 && (TREE_CODE (SSA_NAME_VAR (name)) != RESULT_DECL
233 || !id->transform_return_to_modify))
234 {
235 struct ptr_info_def *pi;
236 new_tree = make_ssa_name (new_tree, NULL);
237 insert_decl_map (id, name, new_tree);
238 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (new_tree)
239 = SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name);
240 TREE_TYPE (new_tree) = TREE_TYPE (SSA_NAME_VAR (new_tree));
241 /* At least IPA points-to info can be directly transferred. */
242 if (id->src_cfun->gimple_df
243 && id->src_cfun->gimple_df->ipa_pta
244 && (pi = SSA_NAME_PTR_INFO (name))
245 && !pi->pt.anything)
246 {
247 struct ptr_info_def *new_pi = get_ptr_info (new_tree);
248 new_pi->pt = pi->pt;
249 }
250 if (gimple_nop_p (SSA_NAME_DEF_STMT (name)))
251 {
252 /* By inlining function having uninitialized variable, we might
253 extend the lifetime (variable might get reused). This cause
254 ICE in the case we end up extending lifetime of SSA name across
255 abnormal edge, but also increase register pressure.
256
257 We simply initialize all uninitialized vars by 0 except
258 for case we are inlining to very first BB. We can avoid
259 this for all BBs that are not inside strongly connected
260 regions of the CFG, but this is expensive to test. */
261 if (id->entry_bb
262 && is_gimple_reg (SSA_NAME_VAR (name))
263 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name)
264 && TREE_CODE (SSA_NAME_VAR (name)) != PARM_DECL
265 && (id->entry_bb != EDGE_SUCC (ENTRY_BLOCK_PTR, 0)->dest
266 || EDGE_COUNT (id->entry_bb->preds) != 1))
267 {
268 gimple_stmt_iterator gsi = gsi_last_bb (id->entry_bb);
269 gimple init_stmt;
270 tree zero = build_zero_cst (TREE_TYPE (new_tree));
271
272 init_stmt = gimple_build_assign (new_tree, zero);
273 gsi_insert_after (&gsi, init_stmt, GSI_NEW_STMT);
274 SSA_NAME_IS_DEFAULT_DEF (new_tree) = 0;
275 }
276 else
277 {
278 SSA_NAME_DEF_STMT (new_tree) = gimple_build_nop ();
279 if (gimple_default_def (id->src_cfun, SSA_NAME_VAR (name))
280 == name)
281 set_default_def (SSA_NAME_VAR (new_tree), new_tree);
282 }
283 }
284 }
285 else
286 insert_decl_map (id, name, new_tree);
287 return new_tree;
288 }
289
290 /* Remap DECL during the copying of the BLOCK tree for the function. */
291
292 tree
293 remap_decl (tree decl, copy_body_data *id)
294 {
295 tree *n;
296
297 /* We only remap local variables in the current function. */
298
299 /* See if we have remapped this declaration. */
300
301 n = (tree *) pointer_map_contains (id->decl_map, decl);
302
303 if (!n && processing_debug_stmt)
304 {
305 processing_debug_stmt = -1;
306 return decl;
307 }
308
309 /* If we didn't already have an equivalent for this declaration,
310 create one now. */
311 if (!n)
312 {
313 /* Make a copy of the variable or label. */
314 tree t = id->copy_decl (decl, id);
315
316 /* Remember it, so that if we encounter this local entity again
317 we can reuse this copy. Do this early because remap_type may
318 need this decl for TYPE_STUB_DECL. */
319 insert_decl_map (id, decl, t);
320
321 if (!DECL_P (t))
322 return t;
323
324 /* Remap types, if necessary. */
325 TREE_TYPE (t) = remap_type (TREE_TYPE (t), id);
326 if (TREE_CODE (t) == TYPE_DECL)
327 DECL_ORIGINAL_TYPE (t) = remap_type (DECL_ORIGINAL_TYPE (t), id);
328
329 /* Remap sizes as necessary. */
330 walk_tree (&DECL_SIZE (t), copy_tree_body_r, id, NULL);
331 walk_tree (&DECL_SIZE_UNIT (t), copy_tree_body_r, id, NULL);
332
333 /* If fields, do likewise for offset and qualifier. */
334 if (TREE_CODE (t) == FIELD_DECL)
335 {
336 walk_tree (&DECL_FIELD_OFFSET (t), copy_tree_body_r, id, NULL);
337 if (TREE_CODE (DECL_CONTEXT (t)) == QUAL_UNION_TYPE)
338 walk_tree (&DECL_QUALIFIER (t), copy_tree_body_r, id, NULL);
339 }
340
341 if ((TREE_CODE (t) == VAR_DECL
342 || TREE_CODE (t) == RESULT_DECL
343 || TREE_CODE (t) == PARM_DECL)
344 && id->src_fn && DECL_STRUCT_FUNCTION (id->src_fn)
345 && gimple_referenced_vars (DECL_STRUCT_FUNCTION (id->src_fn))
346 /* We don't want to mark as referenced VAR_DECLs that were
347 not marked as such in the src function. */
348 && (TREE_CODE (decl) != VAR_DECL
349 || referenced_var_lookup (DECL_STRUCT_FUNCTION (id->src_fn),
350 DECL_UID (decl))))
351 add_referenced_var (t);
352 return t;
353 }
354
355 if (id->do_not_unshare)
356 return *n;
357 else
358 return unshare_expr (*n);
359 }
360
361 static tree
362 remap_type_1 (tree type, copy_body_data *id)
363 {
364 tree new_tree, t;
365
366 /* We do need a copy. build and register it now. If this is a pointer or
367 reference type, remap the designated type and make a new pointer or
368 reference type. */
369 if (TREE_CODE (type) == POINTER_TYPE)
370 {
371 new_tree = build_pointer_type_for_mode (remap_type (TREE_TYPE (type), id),
372 TYPE_MODE (type),
373 TYPE_REF_CAN_ALIAS_ALL (type));
374 if (TYPE_ATTRIBUTES (type) || TYPE_QUALS (type))
375 new_tree = build_type_attribute_qual_variant (new_tree,
376 TYPE_ATTRIBUTES (type),
377 TYPE_QUALS (type));
378 insert_decl_map (id, type, new_tree);
379 return new_tree;
380 }
381 else if (TREE_CODE (type) == REFERENCE_TYPE)
382 {
383 new_tree = build_reference_type_for_mode (remap_type (TREE_TYPE (type), id),
384 TYPE_MODE (type),
385 TYPE_REF_CAN_ALIAS_ALL (type));
386 if (TYPE_ATTRIBUTES (type) || TYPE_QUALS (type))
387 new_tree = build_type_attribute_qual_variant (new_tree,
388 TYPE_ATTRIBUTES (type),
389 TYPE_QUALS (type));
390 insert_decl_map (id, type, new_tree);
391 return new_tree;
392 }
393 else
394 new_tree = copy_node (type);
395
396 insert_decl_map (id, type, new_tree);
397
398 /* This is a new type, not a copy of an old type. Need to reassociate
399 variants. We can handle everything except the main variant lazily. */
400 t = TYPE_MAIN_VARIANT (type);
401 if (type != t)
402 {
403 t = remap_type (t, id);
404 TYPE_MAIN_VARIANT (new_tree) = t;
405 TYPE_NEXT_VARIANT (new_tree) = TYPE_NEXT_VARIANT (t);
406 TYPE_NEXT_VARIANT (t) = new_tree;
407 }
408 else
409 {
410 TYPE_MAIN_VARIANT (new_tree) = new_tree;
411 TYPE_NEXT_VARIANT (new_tree) = NULL;
412 }
413
414 if (TYPE_STUB_DECL (type))
415 TYPE_STUB_DECL (new_tree) = remap_decl (TYPE_STUB_DECL (type), id);
416
417 /* Lazily create pointer and reference types. */
418 TYPE_POINTER_TO (new_tree) = NULL;
419 TYPE_REFERENCE_TO (new_tree) = NULL;
420
421 switch (TREE_CODE (new_tree))
422 {
423 case INTEGER_TYPE:
424 case REAL_TYPE:
425 case FIXED_POINT_TYPE:
426 case ENUMERAL_TYPE:
427 case BOOLEAN_TYPE:
428 t = TYPE_MIN_VALUE (new_tree);
429 if (t && TREE_CODE (t) != INTEGER_CST)
430 walk_tree (&TYPE_MIN_VALUE (new_tree), copy_tree_body_r, id, NULL);
431
432 t = TYPE_MAX_VALUE (new_tree);
433 if (t && TREE_CODE (t) != INTEGER_CST)
434 walk_tree (&TYPE_MAX_VALUE (new_tree), copy_tree_body_r, id, NULL);
435 return new_tree;
436
437 case FUNCTION_TYPE:
438 TREE_TYPE (new_tree) = remap_type (TREE_TYPE (new_tree), id);
439 walk_tree (&TYPE_ARG_TYPES (new_tree), copy_tree_body_r, id, NULL);
440 return new_tree;
441
442 case ARRAY_TYPE:
443 TREE_TYPE (new_tree) = remap_type (TREE_TYPE (new_tree), id);
444 TYPE_DOMAIN (new_tree) = remap_type (TYPE_DOMAIN (new_tree), id);
445 break;
446
447 case RECORD_TYPE:
448 case UNION_TYPE:
449 case QUAL_UNION_TYPE:
450 {
451 tree f, nf = NULL;
452
453 for (f = TYPE_FIELDS (new_tree); f ; f = DECL_CHAIN (f))
454 {
455 t = remap_decl (f, id);
456 DECL_CONTEXT (t) = new_tree;
457 DECL_CHAIN (t) = nf;
458 nf = t;
459 }
460 TYPE_FIELDS (new_tree) = nreverse (nf);
461 }
462 break;
463
464 case OFFSET_TYPE:
465 default:
466 /* Shouldn't have been thought variable sized. */
467 gcc_unreachable ();
468 }
469
470 walk_tree (&TYPE_SIZE (new_tree), copy_tree_body_r, id, NULL);
471 walk_tree (&TYPE_SIZE_UNIT (new_tree), copy_tree_body_r, id, NULL);
472
473 return new_tree;
474 }
475
476 tree
477 remap_type (tree type, copy_body_data *id)
478 {
479 tree *node;
480 tree tmp;
481
482 if (type == NULL)
483 return type;
484
485 /* See if we have remapped this type. */
486 node = (tree *) pointer_map_contains (id->decl_map, type);
487 if (node)
488 return *node;
489
490 /* The type only needs remapping if it's variably modified. */
491 if (! variably_modified_type_p (type, id->src_fn))
492 {
493 insert_decl_map (id, type, type);
494 return type;
495 }
496
497 id->remapping_type_depth++;
498 tmp = remap_type_1 (type, id);
499 id->remapping_type_depth--;
500
501 return tmp;
502 }
503
504 /* Return previously remapped type of TYPE in ID. Return NULL if TYPE
505 is NULL or TYPE has not been remapped before. */
506
507 static tree
508 remapped_type (tree type, copy_body_data *id)
509 {
510 tree *node;
511
512 if (type == NULL)
513 return type;
514
515 /* See if we have remapped this type. */
516 node = (tree *) pointer_map_contains (id->decl_map, type);
517 if (node)
518 return *node;
519 else
520 return NULL;
521 }
522
523 /* The type only needs remapping if it's variably modified. */
524 /* Decide if DECL can be put into BLOCK_NONLOCAL_VARs. */
525
526 static bool
527 can_be_nonlocal (tree decl, copy_body_data *id)
528 {
529 /* We can not duplicate function decls. */
530 if (TREE_CODE (decl) == FUNCTION_DECL)
531 return true;
532
533 /* Local static vars must be non-local or we get multiple declaration
534 problems. */
535 if (TREE_CODE (decl) == VAR_DECL
536 && !auto_var_in_fn_p (decl, id->src_fn))
537 return true;
538
539 /* At the moment dwarf2out can handle only these types of nodes. We
540 can support more later. */
541 if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != PARM_DECL)
542 return false;
543
544 /* We must use global type. We call remapped_type instead of
545 remap_type since we don't want to remap this type here if it
546 hasn't been remapped before. */
547 if (TREE_TYPE (decl) != remapped_type (TREE_TYPE (decl), id))
548 return false;
549
550 /* Wihtout SSA we can't tell if variable is used. */
551 if (!gimple_in_ssa_p (cfun))
552 return false;
553
554 /* Live variables must be copied so we can attach DECL_RTL. */
555 if (var_ann (decl))
556 return false;
557
558 return true;
559 }
560
561 static tree
562 remap_decls (tree decls, VEC(tree,gc) **nonlocalized_list, copy_body_data *id)
563 {
564 tree old_var;
565 tree new_decls = NULL_TREE;
566
567 /* Remap its variables. */
568 for (old_var = decls; old_var; old_var = DECL_CHAIN (old_var))
569 {
570 tree new_var;
571
572 if (can_be_nonlocal (old_var, id))
573 {
574 if (TREE_CODE (old_var) == VAR_DECL
575 && ! DECL_EXTERNAL (old_var)
576 && (var_ann (old_var) || !gimple_in_ssa_p (cfun)))
577 add_local_decl (cfun, old_var);
578 if ((!optimize || debug_info_level > DINFO_LEVEL_TERSE)
579 && !DECL_IGNORED_P (old_var)
580 && nonlocalized_list)
581 VEC_safe_push (tree, gc, *nonlocalized_list, old_var);
582 continue;
583 }
584
585 /* Remap the variable. */
586 new_var = remap_decl (old_var, id);
587
588 /* If we didn't remap this variable, we can't mess with its
589 TREE_CHAIN. If we remapped this variable to the return slot, it's
590 already declared somewhere else, so don't declare it here. */
591
592 if (new_var == id->retvar)
593 ;
594 else if (!new_var)
595 {
596 if ((!optimize || debug_info_level > DINFO_LEVEL_TERSE)
597 && !DECL_IGNORED_P (old_var)
598 && nonlocalized_list)
599 VEC_safe_push (tree, gc, *nonlocalized_list, old_var);
600 }
601 else
602 {
603 gcc_assert (DECL_P (new_var));
604 DECL_CHAIN (new_var) = new_decls;
605 new_decls = new_var;
606
607 /* Also copy value-expressions. */
608 if (TREE_CODE (new_var) == VAR_DECL
609 && DECL_HAS_VALUE_EXPR_P (new_var))
610 {
611 tree tem = DECL_VALUE_EXPR (new_var);
612 bool old_regimplify = id->regimplify;
613 id->remapping_type_depth++;
614 walk_tree (&tem, copy_tree_body_r, id, NULL);
615 id->remapping_type_depth--;
616 id->regimplify = old_regimplify;
617 SET_DECL_VALUE_EXPR (new_var, tem);
618 }
619 }
620 }
621
622 return nreverse (new_decls);
623 }
624
625 /* Copy the BLOCK to contain remapped versions of the variables
626 therein. And hook the new block into the block-tree. */
627
628 static void
629 remap_block (tree *block, copy_body_data *id)
630 {
631 tree old_block;
632 tree new_block;
633
634 /* Make the new block. */
635 old_block = *block;
636 new_block = make_node (BLOCK);
637 TREE_USED (new_block) = TREE_USED (old_block);
638 BLOCK_ABSTRACT_ORIGIN (new_block) = old_block;
639 BLOCK_SOURCE_LOCATION (new_block) = BLOCK_SOURCE_LOCATION (old_block);
640 BLOCK_NONLOCALIZED_VARS (new_block)
641 = VEC_copy (tree, gc, BLOCK_NONLOCALIZED_VARS (old_block));
642 *block = new_block;
643
644 /* Remap its variables. */
645 BLOCK_VARS (new_block) = remap_decls (BLOCK_VARS (old_block),
646 &BLOCK_NONLOCALIZED_VARS (new_block),
647 id);
648
649 if (id->transform_lang_insert_block)
650 id->transform_lang_insert_block (new_block);
651
652 /* Remember the remapped block. */
653 insert_decl_map (id, old_block, new_block);
654 }
655
656 /* Copy the whole block tree and root it in id->block. */
657 static tree
658 remap_blocks (tree block, copy_body_data *id)
659 {
660 tree t;
661 tree new_tree = block;
662
663 if (!block)
664 return NULL;
665
666 remap_block (&new_tree, id);
667 gcc_assert (new_tree != block);
668 for (t = BLOCK_SUBBLOCKS (block); t ; t = BLOCK_CHAIN (t))
669 prepend_lexical_block (new_tree, remap_blocks (t, id));
670 /* Blocks are in arbitrary order, but make things slightly prettier and do
671 not swap order when producing a copy. */
672 BLOCK_SUBBLOCKS (new_tree) = blocks_nreverse (BLOCK_SUBBLOCKS (new_tree));
673 return new_tree;
674 }
675
676 static void
677 copy_statement_list (tree *tp)
678 {
679 tree_stmt_iterator oi, ni;
680 tree new_tree;
681
682 new_tree = alloc_stmt_list ();
683 ni = tsi_start (new_tree);
684 oi = tsi_start (*tp);
685 TREE_TYPE (new_tree) = TREE_TYPE (*tp);
686 *tp = new_tree;
687
688 for (; !tsi_end_p (oi); tsi_next (&oi))
689 {
690 tree stmt = tsi_stmt (oi);
691 if (TREE_CODE (stmt) == STATEMENT_LIST)
692 /* This copy is not redundant; tsi_link_after will smash this
693 STATEMENT_LIST into the end of the one we're building, and we
694 don't want to do that with the original. */
695 copy_statement_list (&stmt);
696 tsi_link_after (&ni, stmt, TSI_CONTINUE_LINKING);
697 }
698 }
699
700 static void
701 copy_bind_expr (tree *tp, int *walk_subtrees, copy_body_data *id)
702 {
703 tree block = BIND_EXPR_BLOCK (*tp);
704 /* Copy (and replace) the statement. */
705 copy_tree_r (tp, walk_subtrees, NULL);
706 if (block)
707 {
708 remap_block (&block, id);
709 BIND_EXPR_BLOCK (*tp) = block;
710 }
711
712 if (BIND_EXPR_VARS (*tp))
713 /* This will remap a lot of the same decls again, but this should be
714 harmless. */
715 BIND_EXPR_VARS (*tp) = remap_decls (BIND_EXPR_VARS (*tp), NULL, id);
716 }
717
718
719 /* Create a new gimple_seq by remapping all the statements in BODY
720 using the inlining information in ID. */
721
722 static gimple_seq
723 remap_gimple_seq (gimple_seq body, copy_body_data *id)
724 {
725 gimple_stmt_iterator si;
726 gimple_seq new_body = NULL;
727
728 for (si = gsi_start (body); !gsi_end_p (si); gsi_next (&si))
729 {
730 gimple new_stmt = remap_gimple_stmt (gsi_stmt (si), id);
731 gimple_seq_add_stmt (&new_body, new_stmt);
732 }
733
734 return new_body;
735 }
736
737
738 /* Copy a GIMPLE_BIND statement STMT, remapping all the symbols in its
739 block using the mapping information in ID. */
740
741 static gimple
742 copy_gimple_bind (gimple stmt, copy_body_data *id)
743 {
744 gimple new_bind;
745 tree new_block, new_vars;
746 gimple_seq body, new_body;
747
748 /* Copy the statement. Note that we purposely don't use copy_stmt
749 here because we need to remap statements as we copy. */
750 body = gimple_bind_body (stmt);
751 new_body = remap_gimple_seq (body, id);
752
753 new_block = gimple_bind_block (stmt);
754 if (new_block)
755 remap_block (&new_block, id);
756
757 /* This will remap a lot of the same decls again, but this should be
758 harmless. */
759 new_vars = gimple_bind_vars (stmt);
760 if (new_vars)
761 new_vars = remap_decls (new_vars, NULL, id);
762
763 new_bind = gimple_build_bind (new_vars, new_body, new_block);
764
765 return new_bind;
766 }
767
768
769 /* Remap the GIMPLE operand pointed to by *TP. DATA is really a
770 'struct walk_stmt_info *'. DATA->INFO is a 'copy_body_data *'.
771 WALK_SUBTREES is used to indicate walk_gimple_op whether to keep
772 recursing into the children nodes of *TP. */
773
774 static tree
775 remap_gimple_op_r (tree *tp, int *walk_subtrees, void *data)
776 {
777 struct walk_stmt_info *wi_p = (struct walk_stmt_info *) data;
778 copy_body_data *id = (copy_body_data *) wi_p->info;
779 tree fn = id->src_fn;
780
781 if (TREE_CODE (*tp) == SSA_NAME)
782 {
783 *tp = remap_ssa_name (*tp, id);
784 *walk_subtrees = 0;
785 return NULL;
786 }
787 else if (auto_var_in_fn_p (*tp, fn))
788 {
789 /* Local variables and labels need to be replaced by equivalent
790 variables. We don't want to copy static variables; there's
791 only one of those, no matter how many times we inline the
792 containing function. Similarly for globals from an outer
793 function. */
794 tree new_decl;
795
796 /* Remap the declaration. */
797 new_decl = remap_decl (*tp, id);
798 gcc_assert (new_decl);
799 /* Replace this variable with the copy. */
800 STRIP_TYPE_NOPS (new_decl);
801 /* ??? The C++ frontend uses void * pointer zero to initialize
802 any other type. This confuses the middle-end type verification.
803 As cloned bodies do not go through gimplification again the fixup
804 there doesn't trigger. */
805 if (TREE_CODE (new_decl) == INTEGER_CST
806 && !useless_type_conversion_p (TREE_TYPE (*tp), TREE_TYPE (new_decl)))
807 new_decl = fold_convert (TREE_TYPE (*tp), new_decl);
808 *tp = new_decl;
809 *walk_subtrees = 0;
810 }
811 else if (TREE_CODE (*tp) == STATEMENT_LIST)
812 gcc_unreachable ();
813 else if (TREE_CODE (*tp) == SAVE_EXPR)
814 gcc_unreachable ();
815 else if (TREE_CODE (*tp) == LABEL_DECL
816 && (!DECL_CONTEXT (*tp)
817 || decl_function_context (*tp) == id->src_fn))
818 /* These may need to be remapped for EH handling. */
819 *tp = remap_decl (*tp, id);
820 else if (TREE_CODE (*tp) == FIELD_DECL)
821 {
822 /* If the enclosing record type is variably_modified_type_p, the field
823 has already been remapped. Otherwise, it need not be. */
824 tree *n = (tree *) pointer_map_contains (id->decl_map, *tp);
825 if (n)
826 *tp = *n;
827 *walk_subtrees = 0;
828 }
829 else if (TYPE_P (*tp))
830 /* Types may need remapping as well. */
831 *tp = remap_type (*tp, id);
832 else if (CONSTANT_CLASS_P (*tp))
833 {
834 /* If this is a constant, we have to copy the node iff the type
835 will be remapped. copy_tree_r will not copy a constant. */
836 tree new_type = remap_type (TREE_TYPE (*tp), id);
837
838 if (new_type == TREE_TYPE (*tp))
839 *walk_subtrees = 0;
840
841 else if (TREE_CODE (*tp) == INTEGER_CST)
842 *tp = build_int_cst_wide (new_type, TREE_INT_CST_LOW (*tp),
843 TREE_INT_CST_HIGH (*tp));
844 else
845 {
846 *tp = copy_node (*tp);
847 TREE_TYPE (*tp) = new_type;
848 }
849 }
850 else
851 {
852 /* Otherwise, just copy the node. Note that copy_tree_r already
853 knows not to copy VAR_DECLs, etc., so this is safe. */
854
855 /* We should never have TREE_BLOCK set on non-statements. */
856 if (EXPR_P (*tp))
857 gcc_assert (!TREE_BLOCK (*tp));
858
859 if (TREE_CODE (*tp) == MEM_REF)
860 {
861 tree ptr = TREE_OPERAND (*tp, 0);
862 tree type = remap_type (TREE_TYPE (*tp), id);
863 tree old = *tp;
864
865 /* We need to re-canonicalize MEM_REFs from inline substitutions
866 that can happen when a pointer argument is an ADDR_EXPR.
867 Recurse here manually to allow that. */
868 walk_tree (&ptr, remap_gimple_op_r, data, NULL);
869 *tp = fold_build2 (MEM_REF, type,
870 ptr, TREE_OPERAND (*tp, 1));
871 TREE_THIS_NOTRAP (*tp) = TREE_THIS_NOTRAP (old);
872 TREE_THIS_VOLATILE (*tp) = TREE_THIS_VOLATILE (old);
873 TREE_NO_WARNING (*tp) = TREE_NO_WARNING (old);
874 *walk_subtrees = 0;
875 return NULL;
876 }
877
878 /* Here is the "usual case". Copy this tree node, and then
879 tweak some special cases. */
880 copy_tree_r (tp, walk_subtrees, NULL);
881
882 if (TREE_CODE (*tp) != OMP_CLAUSE)
883 TREE_TYPE (*tp) = remap_type (TREE_TYPE (*tp), id);
884
885 /* Global variables we haven't seen yet need to go into referenced
886 vars. If not referenced from types only. */
887 if (gimple_referenced_vars (cfun)
888 && TREE_CODE (*tp) == VAR_DECL && !is_global_var (*tp)
889 && id->remapping_type_depth == 0
890 && !processing_debug_stmt)
891 add_referenced_var (*tp);
892
893 if (TREE_CODE (*tp) == TARGET_EXPR && TREE_OPERAND (*tp, 3))
894 {
895 /* The copied TARGET_EXPR has never been expanded, even if the
896 original node was expanded already. */
897 TREE_OPERAND (*tp, 1) = TREE_OPERAND (*tp, 3);
898 TREE_OPERAND (*tp, 3) = NULL_TREE;
899 }
900 else if (TREE_CODE (*tp) == ADDR_EXPR)
901 {
902 /* Variable substitution need not be simple. In particular,
903 the MEM_REF substitution above. Make sure that
904 TREE_CONSTANT and friends are up-to-date. But make sure
905 to not improperly set TREE_BLOCK on some sub-expressions. */
906 int invariant = is_gimple_min_invariant (*tp);
907 tree block = id->block;
908 id->block = NULL_TREE;
909 walk_tree (&TREE_OPERAND (*tp, 0), remap_gimple_op_r, data, NULL);
910 id->block = block;
911 recompute_tree_invariant_for_addr_expr (*tp);
912
913 /* If this used to be invariant, but is not any longer,
914 then regimplification is probably needed. */
915 if (invariant && !is_gimple_min_invariant (*tp))
916 id->regimplify = true;
917
918 *walk_subtrees = 0;
919 }
920 }
921
922 /* Keep iterating. */
923 return NULL_TREE;
924 }
925
926
927 /* Called from copy_body_id via walk_tree. DATA is really a
928 `copy_body_data *'. */
929
930 tree
931 copy_tree_body_r (tree *tp, int *walk_subtrees, void *data)
932 {
933 copy_body_data *id = (copy_body_data *) data;
934 tree fn = id->src_fn;
935 tree new_block;
936
937 /* Begin by recognizing trees that we'll completely rewrite for the
938 inlining context. Our output for these trees is completely
939 different from out input (e.g. RETURN_EXPR is deleted, and morphs
940 into an edge). Further down, we'll handle trees that get
941 duplicated and/or tweaked. */
942
943 /* When requested, RETURN_EXPRs should be transformed to just the
944 contained MODIFY_EXPR. The branch semantics of the return will
945 be handled elsewhere by manipulating the CFG rather than a statement. */
946 if (TREE_CODE (*tp) == RETURN_EXPR && id->transform_return_to_modify)
947 {
948 tree assignment = TREE_OPERAND (*tp, 0);
949
950 /* If we're returning something, just turn that into an
951 assignment into the equivalent of the original RESULT_DECL.
952 If the "assignment" is just the result decl, the result
953 decl has already been set (e.g. a recent "foo (&result_decl,
954 ...)"); just toss the entire RETURN_EXPR. */
955 if (assignment && TREE_CODE (assignment) == MODIFY_EXPR)
956 {
957 /* Replace the RETURN_EXPR with (a copy of) the
958 MODIFY_EXPR hanging underneath. */
959 *tp = copy_node (assignment);
960 }
961 else /* Else the RETURN_EXPR returns no value. */
962 {
963 *tp = NULL;
964 return (tree) (void *)1;
965 }
966 }
967 else if (TREE_CODE (*tp) == SSA_NAME)
968 {
969 *tp = remap_ssa_name (*tp, id);
970 *walk_subtrees = 0;
971 return NULL;
972 }
973
974 /* Local variables and labels need to be replaced by equivalent
975 variables. We don't want to copy static variables; there's only
976 one of those, no matter how many times we inline the containing
977 function. Similarly for globals from an outer function. */
978 else if (auto_var_in_fn_p (*tp, fn))
979 {
980 tree new_decl;
981
982 /* Remap the declaration. */
983 new_decl = remap_decl (*tp, id);
984 gcc_assert (new_decl);
985 /* Replace this variable with the copy. */
986 STRIP_TYPE_NOPS (new_decl);
987 *tp = new_decl;
988 *walk_subtrees = 0;
989 }
990 else if (TREE_CODE (*tp) == STATEMENT_LIST)
991 copy_statement_list (tp);
992 else if (TREE_CODE (*tp) == SAVE_EXPR
993 || TREE_CODE (*tp) == TARGET_EXPR)
994 remap_save_expr (tp, id->decl_map, walk_subtrees);
995 else if (TREE_CODE (*tp) == LABEL_DECL
996 && (! DECL_CONTEXT (*tp)
997 || decl_function_context (*tp) == id->src_fn))
998 /* These may need to be remapped for EH handling. */
999 *tp = remap_decl (*tp, id);
1000 else if (TREE_CODE (*tp) == BIND_EXPR)
1001 copy_bind_expr (tp, walk_subtrees, id);
1002 /* Types may need remapping as well. */
1003 else if (TYPE_P (*tp))
1004 *tp = remap_type (*tp, id);
1005
1006 /* If this is a constant, we have to copy the node iff the type will be
1007 remapped. copy_tree_r will not copy a constant. */
1008 else if (CONSTANT_CLASS_P (*tp))
1009 {
1010 tree new_type = remap_type (TREE_TYPE (*tp), id);
1011
1012 if (new_type == TREE_TYPE (*tp))
1013 *walk_subtrees = 0;
1014
1015 else if (TREE_CODE (*tp) == INTEGER_CST)
1016 *tp = build_int_cst_wide (new_type, TREE_INT_CST_LOW (*tp),
1017 TREE_INT_CST_HIGH (*tp));
1018 else
1019 {
1020 *tp = copy_node (*tp);
1021 TREE_TYPE (*tp) = new_type;
1022 }
1023 }
1024
1025 /* Otherwise, just copy the node. Note that copy_tree_r already
1026 knows not to copy VAR_DECLs, etc., so this is safe. */
1027 else
1028 {
1029 /* Here we handle trees that are not completely rewritten.
1030 First we detect some inlining-induced bogosities for
1031 discarding. */
1032 if (TREE_CODE (*tp) == MODIFY_EXPR
1033 && TREE_OPERAND (*tp, 0) == TREE_OPERAND (*tp, 1)
1034 && (auto_var_in_fn_p (TREE_OPERAND (*tp, 0), fn)))
1035 {
1036 /* Some assignments VAR = VAR; don't generate any rtl code
1037 and thus don't count as variable modification. Avoid
1038 keeping bogosities like 0 = 0. */
1039 tree decl = TREE_OPERAND (*tp, 0), value;
1040 tree *n;
1041
1042 n = (tree *) pointer_map_contains (id->decl_map, decl);
1043 if (n)
1044 {
1045 value = *n;
1046 STRIP_TYPE_NOPS (value);
1047 if (TREE_CONSTANT (value) || TREE_READONLY (value))
1048 {
1049 *tp = build_empty_stmt (EXPR_LOCATION (*tp));
1050 return copy_tree_body_r (tp, walk_subtrees, data);
1051 }
1052 }
1053 }
1054 else if (TREE_CODE (*tp) == INDIRECT_REF)
1055 {
1056 /* Get rid of *& from inline substitutions that can happen when a
1057 pointer argument is an ADDR_EXPR. */
1058 tree decl = TREE_OPERAND (*tp, 0);
1059 tree *n;
1060
1061 n = (tree *) pointer_map_contains (id->decl_map, decl);
1062 if (n)
1063 {
1064 tree new_tree;
1065 tree old;
1066 /* If we happen to get an ADDR_EXPR in n->value, strip
1067 it manually here as we'll eventually get ADDR_EXPRs
1068 which lie about their types pointed to. In this case
1069 build_fold_indirect_ref wouldn't strip the INDIRECT_REF,
1070 but we absolutely rely on that. As fold_indirect_ref
1071 does other useful transformations, try that first, though. */
1072 tree type = TREE_TYPE (TREE_TYPE (*n));
1073 if (id->do_not_unshare)
1074 new_tree = *n;
1075 else
1076 new_tree = unshare_expr (*n);
1077 old = *tp;
1078 *tp = gimple_fold_indirect_ref (new_tree);
1079 if (! *tp)
1080 {
1081 if (TREE_CODE (new_tree) == ADDR_EXPR)
1082 {
1083 *tp = fold_indirect_ref_1 (EXPR_LOCATION (new_tree),
1084 type, new_tree);
1085 /* ??? We should either assert here or build
1086 a VIEW_CONVERT_EXPR instead of blindly leaking
1087 incompatible types to our IL. */
1088 if (! *tp)
1089 *tp = TREE_OPERAND (new_tree, 0);
1090 }
1091 else
1092 {
1093 *tp = build1 (INDIRECT_REF, type, new_tree);
1094 TREE_THIS_VOLATILE (*tp) = TREE_THIS_VOLATILE (old);
1095 TREE_SIDE_EFFECTS (*tp) = TREE_SIDE_EFFECTS (old);
1096 TREE_READONLY (*tp) = TREE_READONLY (old);
1097 TREE_THIS_NOTRAP (*tp) = TREE_THIS_NOTRAP (old);
1098 }
1099 }
1100 *walk_subtrees = 0;
1101 return NULL;
1102 }
1103 }
1104 else if (TREE_CODE (*tp) == MEM_REF)
1105 {
1106 /* We need to re-canonicalize MEM_REFs from inline substitutions
1107 that can happen when a pointer argument is an ADDR_EXPR. */
1108 tree decl = TREE_OPERAND (*tp, 0);
1109 tree *n;
1110
1111 n = (tree *) pointer_map_contains (id->decl_map, decl);
1112 if (n)
1113 {
1114 tree old = *tp;
1115 *tp = fold_build2 (MEM_REF, TREE_TYPE (*tp),
1116 unshare_expr (*n), TREE_OPERAND (*tp, 1));
1117 TREE_THIS_VOLATILE (*tp) = TREE_THIS_VOLATILE (old);
1118 TREE_NO_WARNING (*tp) = TREE_NO_WARNING (old);
1119 *walk_subtrees = 0;
1120 return NULL;
1121 }
1122 }
1123
1124 /* Here is the "usual case". Copy this tree node, and then
1125 tweak some special cases. */
1126 copy_tree_r (tp, walk_subtrees, NULL);
1127
1128 /* Global variables we haven't seen yet needs to go into referenced
1129 vars. If not referenced from types or debug stmts only. */
1130 if (gimple_referenced_vars (cfun)
1131 && TREE_CODE (*tp) == VAR_DECL && !is_global_var (*tp)
1132 && id->remapping_type_depth == 0
1133 && !processing_debug_stmt)
1134 add_referenced_var (*tp);
1135
1136 /* If EXPR has block defined, map it to newly constructed block.
1137 When inlining we want EXPRs without block appear in the block
1138 of function call if we are not remapping a type. */
1139 if (EXPR_P (*tp))
1140 {
1141 new_block = id->remapping_type_depth == 0 ? id->block : NULL;
1142 if (TREE_BLOCK (*tp))
1143 {
1144 tree *n;
1145 n = (tree *) pointer_map_contains (id->decl_map,
1146 TREE_BLOCK (*tp));
1147 gcc_assert (n || id->remapping_type_depth != 0);
1148 if (n)
1149 new_block = *n;
1150 }
1151 TREE_BLOCK (*tp) = new_block;
1152 }
1153
1154 if (TREE_CODE (*tp) != OMP_CLAUSE)
1155 TREE_TYPE (*tp) = remap_type (TREE_TYPE (*tp), id);
1156
1157 /* The copied TARGET_EXPR has never been expanded, even if the
1158 original node was expanded already. */
1159 if (TREE_CODE (*tp) == TARGET_EXPR && TREE_OPERAND (*tp, 3))
1160 {
1161 TREE_OPERAND (*tp, 1) = TREE_OPERAND (*tp, 3);
1162 TREE_OPERAND (*tp, 3) = NULL_TREE;
1163 }
1164
1165 /* Variable substitution need not be simple. In particular, the
1166 INDIRECT_REF substitution above. Make sure that TREE_CONSTANT
1167 and friends are up-to-date. */
1168 else if (TREE_CODE (*tp) == ADDR_EXPR)
1169 {
1170 int invariant = is_gimple_min_invariant (*tp);
1171 walk_tree (&TREE_OPERAND (*tp, 0), copy_tree_body_r, id, NULL);
1172
1173 /* Handle the case where we substituted an INDIRECT_REF
1174 into the operand of the ADDR_EXPR. */
1175 if (TREE_CODE (TREE_OPERAND (*tp, 0)) == INDIRECT_REF)
1176 *tp = TREE_OPERAND (TREE_OPERAND (*tp, 0), 0);
1177 else
1178 recompute_tree_invariant_for_addr_expr (*tp);
1179
1180 /* If this used to be invariant, but is not any longer,
1181 then regimplification is probably needed. */
1182 if (invariant && !is_gimple_min_invariant (*tp))
1183 id->regimplify = true;
1184
1185 *walk_subtrees = 0;
1186 }
1187 }
1188
1189 /* Keep iterating. */
1190 return NULL_TREE;
1191 }
1192
1193 /* Helper for remap_gimple_stmt. Given an EH region number for the
1194 source function, map that to the duplicate EH region number in
1195 the destination function. */
1196
1197 static int
1198 remap_eh_region_nr (int old_nr, copy_body_data *id)
1199 {
1200 eh_region old_r, new_r;
1201 void **slot;
1202
1203 old_r = get_eh_region_from_number_fn (id->src_cfun, old_nr);
1204 slot = pointer_map_contains (id->eh_map, old_r);
1205 new_r = (eh_region) *slot;
1206
1207 return new_r->index;
1208 }
1209
1210 /* Similar, but operate on INTEGER_CSTs. */
1211
1212 static tree
1213 remap_eh_region_tree_nr (tree old_t_nr, copy_body_data *id)
1214 {
1215 int old_nr, new_nr;
1216
1217 old_nr = tree_low_cst (old_t_nr, 0);
1218 new_nr = remap_eh_region_nr (old_nr, id);
1219
1220 return build_int_cst (integer_type_node, new_nr);
1221 }
1222
1223 /* Helper for copy_bb. Remap statement STMT using the inlining
1224 information in ID. Return the new statement copy. */
1225
1226 static gimple
1227 remap_gimple_stmt (gimple stmt, copy_body_data *id)
1228 {
1229 gimple copy = NULL;
1230 struct walk_stmt_info wi;
1231 tree new_block;
1232 bool skip_first = false;
1233
1234 /* Begin by recognizing trees that we'll completely rewrite for the
1235 inlining context. Our output for these trees is completely
1236 different from out input (e.g. RETURN_EXPR is deleted, and morphs
1237 into an edge). Further down, we'll handle trees that get
1238 duplicated and/or tweaked. */
1239
1240 /* When requested, GIMPLE_RETURNs should be transformed to just the
1241 contained GIMPLE_ASSIGN. The branch semantics of the return will
1242 be handled elsewhere by manipulating the CFG rather than the
1243 statement. */
1244 if (gimple_code (stmt) == GIMPLE_RETURN && id->transform_return_to_modify)
1245 {
1246 tree retval = gimple_return_retval (stmt);
1247
1248 /* If we're returning something, just turn that into an
1249 assignment into the equivalent of the original RESULT_DECL.
1250 If RETVAL is just the result decl, the result decl has
1251 already been set (e.g. a recent "foo (&result_decl, ...)");
1252 just toss the entire GIMPLE_RETURN. */
1253 if (retval
1254 && (TREE_CODE (retval) != RESULT_DECL
1255 && (TREE_CODE (retval) != SSA_NAME
1256 || TREE_CODE (SSA_NAME_VAR (retval)) != RESULT_DECL)))
1257 {
1258 copy = gimple_build_assign (id->retvar, retval);
1259 /* id->retvar is already substituted. Skip it on later remapping. */
1260 skip_first = true;
1261 }
1262 else
1263 return gimple_build_nop ();
1264 }
1265 else if (gimple_has_substatements (stmt))
1266 {
1267 gimple_seq s1, s2;
1268
1269 /* When cloning bodies from the C++ front end, we will be handed bodies
1270 in High GIMPLE form. Handle here all the High GIMPLE statements that
1271 have embedded statements. */
1272 switch (gimple_code (stmt))
1273 {
1274 case GIMPLE_BIND:
1275 copy = copy_gimple_bind (stmt, id);
1276 break;
1277
1278 case GIMPLE_CATCH:
1279 s1 = remap_gimple_seq (gimple_catch_handler (stmt), id);
1280 copy = gimple_build_catch (gimple_catch_types (stmt), s1);
1281 break;
1282
1283 case GIMPLE_EH_FILTER:
1284 s1 = remap_gimple_seq (gimple_eh_filter_failure (stmt), id);
1285 copy = gimple_build_eh_filter (gimple_eh_filter_types (stmt), s1);
1286 break;
1287
1288 case GIMPLE_TRY:
1289 s1 = remap_gimple_seq (gimple_try_eval (stmt), id);
1290 s2 = remap_gimple_seq (gimple_try_cleanup (stmt), id);
1291 copy = gimple_build_try (s1, s2, gimple_try_kind (stmt));
1292 break;
1293
1294 case GIMPLE_WITH_CLEANUP_EXPR:
1295 s1 = remap_gimple_seq (gimple_wce_cleanup (stmt), id);
1296 copy = gimple_build_wce (s1);
1297 break;
1298
1299 case GIMPLE_OMP_PARALLEL:
1300 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1301 copy = gimple_build_omp_parallel
1302 (s1,
1303 gimple_omp_parallel_clauses (stmt),
1304 gimple_omp_parallel_child_fn (stmt),
1305 gimple_omp_parallel_data_arg (stmt));
1306 break;
1307
1308 case GIMPLE_OMP_TASK:
1309 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1310 copy = gimple_build_omp_task
1311 (s1,
1312 gimple_omp_task_clauses (stmt),
1313 gimple_omp_task_child_fn (stmt),
1314 gimple_omp_task_data_arg (stmt),
1315 gimple_omp_task_copy_fn (stmt),
1316 gimple_omp_task_arg_size (stmt),
1317 gimple_omp_task_arg_align (stmt));
1318 break;
1319
1320 case GIMPLE_OMP_FOR:
1321 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1322 s2 = remap_gimple_seq (gimple_omp_for_pre_body (stmt), id);
1323 copy = gimple_build_omp_for (s1, gimple_omp_for_clauses (stmt),
1324 gimple_omp_for_collapse (stmt), s2);
1325 {
1326 size_t i;
1327 for (i = 0; i < gimple_omp_for_collapse (stmt); i++)
1328 {
1329 gimple_omp_for_set_index (copy, i,
1330 gimple_omp_for_index (stmt, i));
1331 gimple_omp_for_set_initial (copy, i,
1332 gimple_omp_for_initial (stmt, i));
1333 gimple_omp_for_set_final (copy, i,
1334 gimple_omp_for_final (stmt, i));
1335 gimple_omp_for_set_incr (copy, i,
1336 gimple_omp_for_incr (stmt, i));
1337 gimple_omp_for_set_cond (copy, i,
1338 gimple_omp_for_cond (stmt, i));
1339 }
1340 }
1341 break;
1342
1343 case GIMPLE_OMP_MASTER:
1344 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1345 copy = gimple_build_omp_master (s1);
1346 break;
1347
1348 case GIMPLE_OMP_ORDERED:
1349 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1350 copy = gimple_build_omp_ordered (s1);
1351 break;
1352
1353 case GIMPLE_OMP_SECTION:
1354 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1355 copy = gimple_build_omp_section (s1);
1356 break;
1357
1358 case GIMPLE_OMP_SECTIONS:
1359 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1360 copy = gimple_build_omp_sections
1361 (s1, gimple_omp_sections_clauses (stmt));
1362 break;
1363
1364 case GIMPLE_OMP_SINGLE:
1365 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1366 copy = gimple_build_omp_single
1367 (s1, gimple_omp_single_clauses (stmt));
1368 break;
1369
1370 case GIMPLE_OMP_CRITICAL:
1371 s1 = remap_gimple_seq (gimple_omp_body (stmt), id);
1372 copy
1373 = gimple_build_omp_critical (s1, gimple_omp_critical_name (stmt));
1374 break;
1375
1376 case GIMPLE_TRANSACTION:
1377 s1 = remap_gimple_seq (gimple_transaction_body (stmt), id);
1378 copy = gimple_build_transaction (s1, gimple_transaction_label (stmt));
1379 gimple_transaction_set_subcode (copy, gimple_transaction_subcode (stmt));
1380 break;
1381
1382 default:
1383 gcc_unreachable ();
1384 }
1385 }
1386 else
1387 {
1388 if (gimple_assign_copy_p (stmt)
1389 && gimple_assign_lhs (stmt) == gimple_assign_rhs1 (stmt)
1390 && auto_var_in_fn_p (gimple_assign_lhs (stmt), id->src_fn))
1391 {
1392 /* Here we handle statements that are not completely rewritten.
1393 First we detect some inlining-induced bogosities for
1394 discarding. */
1395
1396 /* Some assignments VAR = VAR; don't generate any rtl code
1397 and thus don't count as variable modification. Avoid
1398 keeping bogosities like 0 = 0. */
1399 tree decl = gimple_assign_lhs (stmt), value;
1400 tree *n;
1401
1402 n = (tree *) pointer_map_contains (id->decl_map, decl);
1403 if (n)
1404 {
1405 value = *n;
1406 STRIP_TYPE_NOPS (value);
1407 if (TREE_CONSTANT (value) || TREE_READONLY (value))
1408 return gimple_build_nop ();
1409 }
1410 }
1411
1412 if (gimple_debug_bind_p (stmt))
1413 {
1414 copy = gimple_build_debug_bind (gimple_debug_bind_get_var (stmt),
1415 gimple_debug_bind_get_value (stmt),
1416 stmt);
1417 VEC_safe_push (gimple, heap, id->debug_stmts, copy);
1418 return copy;
1419 }
1420 if (gimple_debug_source_bind_p (stmt))
1421 {
1422 copy = gimple_build_debug_source_bind
1423 (gimple_debug_source_bind_get_var (stmt),
1424 gimple_debug_source_bind_get_value (stmt), stmt);
1425 VEC_safe_push (gimple, heap, id->debug_stmts, copy);
1426 return copy;
1427 }
1428
1429 /* Create a new deep copy of the statement. */
1430 copy = gimple_copy (stmt);
1431
1432 /* Remap the region numbers for __builtin_eh_{pointer,filter},
1433 RESX and EH_DISPATCH. */
1434 if (id->eh_map)
1435 switch (gimple_code (copy))
1436 {
1437 case GIMPLE_CALL:
1438 {
1439 tree r, fndecl = gimple_call_fndecl (copy);
1440 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
1441 switch (DECL_FUNCTION_CODE (fndecl))
1442 {
1443 case BUILT_IN_EH_COPY_VALUES:
1444 r = gimple_call_arg (copy, 1);
1445 r = remap_eh_region_tree_nr (r, id);
1446 gimple_call_set_arg (copy, 1, r);
1447 /* FALLTHRU */
1448
1449 case BUILT_IN_EH_POINTER:
1450 case BUILT_IN_EH_FILTER:
1451 r = gimple_call_arg (copy, 0);
1452 r = remap_eh_region_tree_nr (r, id);
1453 gimple_call_set_arg (copy, 0, r);
1454 break;
1455
1456 default:
1457 break;
1458 }
1459
1460 /* Reset alias info if we didn't apply measures to
1461 keep it valid over inlining by setting DECL_PT_UID. */
1462 if (!id->src_cfun->gimple_df
1463 || !id->src_cfun->gimple_df->ipa_pta)
1464 gimple_call_reset_alias_info (copy);
1465 }
1466 break;
1467
1468 case GIMPLE_RESX:
1469 {
1470 int r = gimple_resx_region (copy);
1471 r = remap_eh_region_nr (r, id);
1472 gimple_resx_set_region (copy, r);
1473 }
1474 break;
1475
1476 case GIMPLE_EH_DISPATCH:
1477 {
1478 int r = gimple_eh_dispatch_region (copy);
1479 r = remap_eh_region_nr (r, id);
1480 gimple_eh_dispatch_set_region (copy, r);
1481 }
1482 break;
1483
1484 default:
1485 break;
1486 }
1487 }
1488
1489 /* If STMT has a block defined, map it to the newly constructed
1490 block. When inlining we want statements without a block to
1491 appear in the block of the function call. */
1492 new_block = id->block;
1493 if (gimple_block (copy))
1494 {
1495 tree *n;
1496 n = (tree *) pointer_map_contains (id->decl_map, gimple_block (copy));
1497 gcc_assert (n);
1498 new_block = *n;
1499 }
1500
1501 gimple_set_block (copy, new_block);
1502
1503 if (gimple_debug_bind_p (copy) || gimple_debug_source_bind_p (copy))
1504 return copy;
1505
1506 /* Remap all the operands in COPY. */
1507 memset (&wi, 0, sizeof (wi));
1508 wi.info = id;
1509 if (skip_first)
1510 walk_tree (gimple_op_ptr (copy, 1), remap_gimple_op_r, &wi, NULL);
1511 else
1512 walk_gimple_op (copy, remap_gimple_op_r, &wi);
1513
1514 /* Clear the copied virtual operands. We are not remapping them here
1515 but are going to recreate them from scratch. */
1516 if (gimple_has_mem_ops (copy))
1517 {
1518 gimple_set_vdef (copy, NULL_TREE);
1519 gimple_set_vuse (copy, NULL_TREE);
1520 }
1521
1522 return copy;
1523 }
1524
1525
1526 /* Copy basic block, scale profile accordingly. Edges will be taken care of
1527 later */
1528
1529 static basic_block
1530 copy_bb (copy_body_data *id, basic_block bb, int frequency_scale,
1531 gcov_type count_scale)
1532 {
1533 gimple_stmt_iterator gsi, copy_gsi, seq_gsi;
1534 basic_block copy_basic_block;
1535 tree decl;
1536 gcov_type freq;
1537 basic_block prev;
1538
1539 /* Search for previous copied basic block. */
1540 prev = bb->prev_bb;
1541 while (!prev->aux)
1542 prev = prev->prev_bb;
1543
1544 /* create_basic_block() will append every new block to
1545 basic_block_info automatically. */
1546 copy_basic_block = create_basic_block (NULL, (void *) 0,
1547 (basic_block) prev->aux);
1548 copy_basic_block->count = bb->count * count_scale / REG_BR_PROB_BASE;
1549
1550 /* We are going to rebuild frequencies from scratch. These values
1551 have just small importance to drive canonicalize_loop_headers. */
1552 freq = ((gcov_type)bb->frequency * frequency_scale / REG_BR_PROB_BASE);
1553
1554 /* We recompute frequencies after inlining, so this is quite safe. */
1555 if (freq > BB_FREQ_MAX)
1556 freq = BB_FREQ_MAX;
1557 copy_basic_block->frequency = freq;
1558
1559 copy_gsi = gsi_start_bb (copy_basic_block);
1560
1561 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1562 {
1563 gimple stmt = gsi_stmt (gsi);
1564 gimple orig_stmt = stmt;
1565
1566 id->regimplify = false;
1567 stmt = remap_gimple_stmt (stmt, id);
1568 if (gimple_nop_p (stmt))
1569 continue;
1570
1571 gimple_duplicate_stmt_histograms (cfun, stmt, id->src_cfun, orig_stmt);
1572 seq_gsi = copy_gsi;
1573
1574 /* With return slot optimization we can end up with
1575 non-gimple (foo *)&this->m, fix that here. */
1576 if (is_gimple_assign (stmt)
1577 && gimple_assign_rhs_code (stmt) == NOP_EXPR
1578 && !is_gimple_val (gimple_assign_rhs1 (stmt)))
1579 {
1580 tree new_rhs;
1581 new_rhs = force_gimple_operand_gsi (&seq_gsi,
1582 gimple_assign_rhs1 (stmt),
1583 true, NULL, false,
1584 GSI_CONTINUE_LINKING);
1585 gimple_assign_set_rhs1 (stmt, new_rhs);
1586 id->regimplify = false;
1587 }
1588
1589 gsi_insert_after (&seq_gsi, stmt, GSI_NEW_STMT);
1590
1591 if (id->regimplify)
1592 gimple_regimplify_operands (stmt, &seq_gsi);
1593
1594 /* If copy_basic_block has been empty at the start of this iteration,
1595 call gsi_start_bb again to get at the newly added statements. */
1596 if (gsi_end_p (copy_gsi))
1597 copy_gsi = gsi_start_bb (copy_basic_block);
1598 else
1599 gsi_next (&copy_gsi);
1600
1601 /* Process the new statement. The call to gimple_regimplify_operands
1602 possibly turned the statement into multiple statements, we
1603 need to process all of them. */
1604 do
1605 {
1606 tree fn;
1607
1608 stmt = gsi_stmt (copy_gsi);
1609 if (is_gimple_call (stmt)
1610 && gimple_call_va_arg_pack_p (stmt)
1611 && id->gimple_call)
1612 {
1613 /* __builtin_va_arg_pack () should be replaced by
1614 all arguments corresponding to ... in the caller. */
1615 tree p;
1616 gimple new_call;
1617 VEC(tree, heap) *argarray;
1618 size_t nargs = gimple_call_num_args (id->gimple_call);
1619 size_t n;
1620
1621 for (p = DECL_ARGUMENTS (id->src_fn); p; p = DECL_CHAIN (p))
1622 nargs--;
1623
1624 /* Create the new array of arguments. */
1625 n = nargs + gimple_call_num_args (stmt);
1626 argarray = VEC_alloc (tree, heap, n);
1627 VEC_safe_grow (tree, heap, argarray, n);
1628
1629 /* Copy all the arguments before '...' */
1630 memcpy (VEC_address (tree, argarray),
1631 gimple_call_arg_ptr (stmt, 0),
1632 gimple_call_num_args (stmt) * sizeof (tree));
1633
1634 /* Append the arguments passed in '...' */
1635 memcpy (VEC_address(tree, argarray) + gimple_call_num_args (stmt),
1636 gimple_call_arg_ptr (id->gimple_call, 0)
1637 + (gimple_call_num_args (id->gimple_call) - nargs),
1638 nargs * sizeof (tree));
1639
1640 new_call = gimple_build_call_vec (gimple_call_fn (stmt),
1641 argarray);
1642
1643 VEC_free (tree, heap, argarray);
1644
1645 /* Copy all GIMPLE_CALL flags, location and block, except
1646 GF_CALL_VA_ARG_PACK. */
1647 gimple_call_copy_flags (new_call, stmt);
1648 gimple_call_set_va_arg_pack (new_call, false);
1649 gimple_set_location (new_call, gimple_location (stmt));
1650 gimple_set_block (new_call, gimple_block (stmt));
1651 gimple_call_set_lhs (new_call, gimple_call_lhs (stmt));
1652
1653 gsi_replace (&copy_gsi, new_call, false);
1654 stmt = new_call;
1655 }
1656 else if (is_gimple_call (stmt)
1657 && id->gimple_call
1658 && (decl = gimple_call_fndecl (stmt))
1659 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
1660 && DECL_FUNCTION_CODE (decl) == BUILT_IN_VA_ARG_PACK_LEN)
1661 {
1662 /* __builtin_va_arg_pack_len () should be replaced by
1663 the number of anonymous arguments. */
1664 size_t nargs = gimple_call_num_args (id->gimple_call);
1665 tree count, p;
1666 gimple new_stmt;
1667
1668 for (p = DECL_ARGUMENTS (id->src_fn); p; p = DECL_CHAIN (p))
1669 nargs--;
1670
1671 count = build_int_cst (integer_type_node, nargs);
1672 new_stmt = gimple_build_assign (gimple_call_lhs (stmt), count);
1673 gsi_replace (&copy_gsi, new_stmt, false);
1674 stmt = new_stmt;
1675 }
1676
1677 /* Statements produced by inlining can be unfolded, especially
1678 when we constant propagated some operands. We can't fold
1679 them right now for two reasons:
1680 1) folding require SSA_NAME_DEF_STMTs to be correct
1681 2) we can't change function calls to builtins.
1682 So we just mark statement for later folding. We mark
1683 all new statements, instead just statements that has changed
1684 by some nontrivial substitution so even statements made
1685 foldable indirectly are updated. If this turns out to be
1686 expensive, copy_body can be told to watch for nontrivial
1687 changes. */
1688 if (id->statements_to_fold)
1689 pointer_set_insert (id->statements_to_fold, stmt);
1690
1691 /* We're duplicating a CALL_EXPR. Find any corresponding
1692 callgraph edges and update or duplicate them. */
1693 if (is_gimple_call (stmt))
1694 {
1695 struct cgraph_edge *edge;
1696 int flags;
1697
1698 switch (id->transform_call_graph_edges)
1699 {
1700 case CB_CGE_DUPLICATE:
1701 edge = cgraph_edge (id->src_node, orig_stmt);
1702 if (edge)
1703 {
1704 int edge_freq = edge->frequency;
1705 edge = cgraph_clone_edge (edge, id->dst_node, stmt,
1706 gimple_uid (stmt),
1707 REG_BR_PROB_BASE, CGRAPH_FREQ_BASE,
1708 true);
1709 /* We could also just rescale the frequency, but
1710 doing so would introduce roundoff errors and make
1711 verifier unhappy. */
1712 edge->frequency
1713 = compute_call_stmt_bb_frequency (id->dst_node->symbol.decl,
1714 copy_basic_block);
1715 if (dump_file
1716 && profile_status_for_function (cfun) != PROFILE_ABSENT
1717 && (edge_freq > edge->frequency + 10
1718 || edge_freq < edge->frequency - 10))
1719 {
1720 fprintf (dump_file, "Edge frequency estimated by "
1721 "cgraph %i diverge from inliner's estimate %i\n",
1722 edge_freq,
1723 edge->frequency);
1724 fprintf (dump_file,
1725 "Orig bb: %i, orig bb freq %i, new bb freq %i\n",
1726 bb->index,
1727 bb->frequency,
1728 copy_basic_block->frequency);
1729 }
1730 stmt = cgraph_redirect_edge_call_stmt_to_callee (edge);
1731 }
1732 break;
1733
1734 case CB_CGE_MOVE_CLONES:
1735 cgraph_set_call_stmt_including_clones (id->dst_node,
1736 orig_stmt, stmt);
1737 edge = cgraph_edge (id->dst_node, stmt);
1738 break;
1739
1740 case CB_CGE_MOVE:
1741 edge = cgraph_edge (id->dst_node, orig_stmt);
1742 if (edge)
1743 cgraph_set_call_stmt (edge, stmt);
1744 break;
1745
1746 default:
1747 gcc_unreachable ();
1748 }
1749
1750 /* Constant propagation on argument done during inlining
1751 may create new direct call. Produce an edge for it. */
1752 if ((!edge
1753 || (edge->indirect_inlining_edge
1754 && id->transform_call_graph_edges == CB_CGE_MOVE_CLONES))
1755 && id->dst_node->analyzed
1756 && (fn = gimple_call_fndecl (stmt)) != NULL)
1757 {
1758 struct cgraph_node *dest = cgraph_get_node (fn);
1759
1760 /* We have missing edge in the callgraph. This can happen
1761 when previous inlining turned an indirect call into a
1762 direct call by constant propagating arguments or we are
1763 producing dead clone (for further cloning). In all
1764 other cases we hit a bug (incorrect node sharing is the
1765 most common reason for missing edges). */
1766 gcc_assert (!dest->analyzed
1767 || dest->symbol.address_taken
1768 || !id->src_node->analyzed
1769 || !id->dst_node->analyzed);
1770 if (id->transform_call_graph_edges == CB_CGE_MOVE_CLONES)
1771 cgraph_create_edge_including_clones
1772 (id->dst_node, dest, orig_stmt, stmt, bb->count,
1773 compute_call_stmt_bb_frequency (id->dst_node->symbol.decl,
1774 copy_basic_block),
1775 CIF_ORIGINALLY_INDIRECT_CALL);
1776 else
1777 cgraph_create_edge (id->dst_node, dest, stmt,
1778 bb->count,
1779 compute_call_stmt_bb_frequency
1780 (id->dst_node->symbol.decl,
1781 copy_basic_block))->inline_failed
1782 = CIF_ORIGINALLY_INDIRECT_CALL;
1783 if (dump_file)
1784 {
1785 fprintf (dump_file, "Created new direct edge to %s\n",
1786 cgraph_node_name (dest));
1787 }
1788 }
1789
1790 flags = gimple_call_flags (stmt);
1791 if (flags & ECF_MAY_BE_ALLOCA)
1792 cfun->calls_alloca = true;
1793 if (flags & ECF_RETURNS_TWICE)
1794 cfun->calls_setjmp = true;
1795 }
1796
1797 maybe_duplicate_eh_stmt_fn (cfun, stmt, id->src_cfun, orig_stmt,
1798 id->eh_map, id->eh_lp_nr);
1799
1800 if (gimple_in_ssa_p (cfun) && !is_gimple_debug (stmt))
1801 {
1802 ssa_op_iter i;
1803 tree def;
1804
1805 find_referenced_vars_in (gsi_stmt (copy_gsi));
1806 FOR_EACH_SSA_TREE_OPERAND (def, stmt, i, SSA_OP_DEF)
1807 if (TREE_CODE (def) == SSA_NAME)
1808 SSA_NAME_DEF_STMT (def) = stmt;
1809 }
1810
1811 gsi_next (&copy_gsi);
1812 }
1813 while (!gsi_end_p (copy_gsi));
1814
1815 copy_gsi = gsi_last_bb (copy_basic_block);
1816 }
1817
1818 return copy_basic_block;
1819 }
1820
1821 /* Inserting Single Entry Multiple Exit region in SSA form into code in SSA
1822 form is quite easy, since dominator relationship for old basic blocks does
1823 not change.
1824
1825 There is however exception where inlining might change dominator relation
1826 across EH edges from basic block within inlined functions destinating
1827 to landing pads in function we inline into.
1828
1829 The function fills in PHI_RESULTs of such PHI nodes if they refer
1830 to gimple regs. Otherwise, the function mark PHI_RESULT of such
1831 PHI nodes for renaming. For non-gimple regs, renaming is safe: the
1832 EH edges are abnormal and SSA_NAME_OCCURS_IN_ABNORMAL_PHI must be
1833 set, and this means that there will be no overlapping live ranges
1834 for the underlying symbol.
1835
1836 This might change in future if we allow redirecting of EH edges and
1837 we might want to change way build CFG pre-inlining to include
1838 all the possible edges then. */
1839 static void
1840 update_ssa_across_abnormal_edges (basic_block bb, basic_block ret_bb,
1841 bool can_throw, bool nonlocal_goto)
1842 {
1843 edge e;
1844 edge_iterator ei;
1845
1846 FOR_EACH_EDGE (e, ei, bb->succs)
1847 if (!e->dest->aux
1848 || ((basic_block)e->dest->aux)->index == ENTRY_BLOCK)
1849 {
1850 gimple phi;
1851 gimple_stmt_iterator si;
1852
1853 if (!nonlocal_goto)
1854 gcc_assert (e->flags & EDGE_EH);
1855
1856 if (!can_throw)
1857 gcc_assert (!(e->flags & EDGE_EH));
1858
1859 for (si = gsi_start_phis (e->dest); !gsi_end_p (si); gsi_next (&si))
1860 {
1861 edge re;
1862
1863 phi = gsi_stmt (si);
1864
1865 /* There shouldn't be any PHI nodes in the ENTRY_BLOCK. */
1866 gcc_assert (!e->dest->aux);
1867
1868 gcc_assert ((e->flags & EDGE_EH)
1869 || SSA_NAME_OCCURS_IN_ABNORMAL_PHI (PHI_RESULT (phi)));
1870
1871 if (!is_gimple_reg (PHI_RESULT (phi)))
1872 {
1873 mark_sym_for_renaming (SSA_NAME_VAR (PHI_RESULT (phi)));
1874 continue;
1875 }
1876
1877 re = find_edge (ret_bb, e->dest);
1878 gcc_assert (re);
1879 gcc_assert ((re->flags & (EDGE_EH | EDGE_ABNORMAL))
1880 == (e->flags & (EDGE_EH | EDGE_ABNORMAL)));
1881
1882 SET_USE (PHI_ARG_DEF_PTR_FROM_EDGE (phi, e),
1883 USE_FROM_PTR (PHI_ARG_DEF_PTR_FROM_EDGE (phi, re)));
1884 }
1885 }
1886 }
1887
1888
1889 /* Copy edges from BB into its copy constructed earlier, scale profile
1890 accordingly. Edges will be taken care of later. Assume aux
1891 pointers to point to the copies of each BB. Return true if any
1892 debug stmts are left after a statement that must end the basic block. */
1893
1894 static bool
1895 copy_edges_for_bb (basic_block bb, gcov_type count_scale, basic_block ret_bb)
1896 {
1897 basic_block new_bb = (basic_block) bb->aux;
1898 edge_iterator ei;
1899 edge old_edge;
1900 gimple_stmt_iterator si;
1901 int flags;
1902 bool need_debug_cleanup = false;
1903
1904 /* Use the indices from the original blocks to create edges for the
1905 new ones. */
1906 FOR_EACH_EDGE (old_edge, ei, bb->succs)
1907 if (!(old_edge->flags & EDGE_EH))
1908 {
1909 edge new_edge;
1910
1911 flags = old_edge->flags;
1912
1913 /* Return edges do get a FALLTHRU flag when the get inlined. */
1914 if (old_edge->dest->index == EXIT_BLOCK && !old_edge->flags
1915 && old_edge->dest->aux != EXIT_BLOCK_PTR)
1916 flags |= EDGE_FALLTHRU;
1917 new_edge = make_edge (new_bb, (basic_block) old_edge->dest->aux, flags);
1918 new_edge->count = old_edge->count * count_scale / REG_BR_PROB_BASE;
1919 new_edge->probability = old_edge->probability;
1920 }
1921
1922 if (bb->index == ENTRY_BLOCK || bb->index == EXIT_BLOCK)
1923 return false;
1924
1925 for (si = gsi_start_bb (new_bb); !gsi_end_p (si);)
1926 {
1927 gimple copy_stmt;
1928 bool can_throw, nonlocal_goto;
1929
1930 copy_stmt = gsi_stmt (si);
1931 if (!is_gimple_debug (copy_stmt))
1932 update_stmt (copy_stmt);
1933
1934 /* Do this before the possible split_block. */
1935 gsi_next (&si);
1936
1937 /* If this tree could throw an exception, there are two
1938 cases where we need to add abnormal edge(s): the
1939 tree wasn't in a region and there is a "current
1940 region" in the caller; or the original tree had
1941 EH edges. In both cases split the block after the tree,
1942 and add abnormal edge(s) as needed; we need both
1943 those from the callee and the caller.
1944 We check whether the copy can throw, because the const
1945 propagation can change an INDIRECT_REF which throws
1946 into a COMPONENT_REF which doesn't. If the copy
1947 can throw, the original could also throw. */
1948 can_throw = stmt_can_throw_internal (copy_stmt);
1949 nonlocal_goto = stmt_can_make_abnormal_goto (copy_stmt);
1950
1951 if (can_throw || nonlocal_goto)
1952 {
1953 if (!gsi_end_p (si))
1954 {
1955 while (!gsi_end_p (si) && is_gimple_debug (gsi_stmt (si)))
1956 gsi_next (&si);
1957 if (gsi_end_p (si))
1958 need_debug_cleanup = true;
1959 }
1960 if (!gsi_end_p (si))
1961 /* Note that bb's predecessor edges aren't necessarily
1962 right at this point; split_block doesn't care. */
1963 {
1964 edge e = split_block (new_bb, copy_stmt);
1965
1966 new_bb = e->dest;
1967 new_bb->aux = e->src->aux;
1968 si = gsi_start_bb (new_bb);
1969 }
1970 }
1971
1972 if (gimple_code (copy_stmt) == GIMPLE_EH_DISPATCH)
1973 make_eh_dispatch_edges (copy_stmt);
1974 else if (can_throw)
1975 make_eh_edges (copy_stmt);
1976
1977 if (nonlocal_goto)
1978 make_abnormal_goto_edges (gimple_bb (copy_stmt), true);
1979
1980 if ((can_throw || nonlocal_goto)
1981 && gimple_in_ssa_p (cfun))
1982 update_ssa_across_abnormal_edges (gimple_bb (copy_stmt), ret_bb,
1983 can_throw, nonlocal_goto);
1984 }
1985 return need_debug_cleanup;
1986 }
1987
1988 /* Copy the PHIs. All blocks and edges are copied, some blocks
1989 was possibly split and new outgoing EH edges inserted.
1990 BB points to the block of original function and AUX pointers links
1991 the original and newly copied blocks. */
1992
1993 static void
1994 copy_phis_for_bb (basic_block bb, copy_body_data *id)
1995 {
1996 basic_block const new_bb = (basic_block) bb->aux;
1997 edge_iterator ei;
1998 gimple phi;
1999 gimple_stmt_iterator si;
2000 edge new_edge;
2001 bool inserted = false;
2002
2003 for (si = gsi_start_phis (bb); !gsi_end_p (si); gsi_next (&si))
2004 {
2005 tree res, new_res;
2006 gimple new_phi;
2007
2008 phi = gsi_stmt (si);
2009 res = PHI_RESULT (phi);
2010 new_res = res;
2011 if (is_gimple_reg (res))
2012 {
2013 walk_tree (&new_res, copy_tree_body_r, id, NULL);
2014 SSA_NAME_DEF_STMT (new_res)
2015 = new_phi = create_phi_node (new_res, new_bb);
2016 FOR_EACH_EDGE (new_edge, ei, new_bb->preds)
2017 {
2018 edge old_edge = find_edge ((basic_block) new_edge->src->aux, bb);
2019 tree arg;
2020 tree new_arg;
2021 tree block = id->block;
2022 edge_iterator ei2;
2023
2024 /* When doing partial cloning, we allow PHIs on the entry block
2025 as long as all the arguments are the same. Find any input
2026 edge to see argument to copy. */
2027 if (!old_edge)
2028 FOR_EACH_EDGE (old_edge, ei2, bb->preds)
2029 if (!old_edge->src->aux)
2030 break;
2031
2032 arg = PHI_ARG_DEF_FROM_EDGE (phi, old_edge);
2033 new_arg = arg;
2034 id->block = NULL_TREE;
2035 walk_tree (&new_arg, copy_tree_body_r, id, NULL);
2036 id->block = block;
2037 gcc_assert (new_arg);
2038 /* With return slot optimization we can end up with
2039 non-gimple (foo *)&this->m, fix that here. */
2040 if (TREE_CODE (new_arg) != SSA_NAME
2041 && TREE_CODE (new_arg) != FUNCTION_DECL
2042 && !is_gimple_val (new_arg))
2043 {
2044 gimple_seq stmts = NULL;
2045 new_arg = force_gimple_operand (new_arg, &stmts, true, NULL);
2046 gsi_insert_seq_on_edge (new_edge, stmts);
2047 inserted = true;
2048 }
2049 add_phi_arg (new_phi, new_arg, new_edge,
2050 gimple_phi_arg_location_from_edge (phi, old_edge));
2051 }
2052 }
2053 }
2054
2055 /* Commit the delayed edge insertions. */
2056 if (inserted)
2057 FOR_EACH_EDGE (new_edge, ei, new_bb->preds)
2058 gsi_commit_one_edge_insert (new_edge, NULL);
2059 }
2060
2061
2062 /* Wrapper for remap_decl so it can be used as a callback. */
2063
2064 static tree
2065 remap_decl_1 (tree decl, void *data)
2066 {
2067 return remap_decl (decl, (copy_body_data *) data);
2068 }
2069
2070 /* Build struct function and associated datastructures for the new clone
2071 NEW_FNDECL to be build. CALLEE_FNDECL is the original */
2072
2073 static void
2074 initialize_cfun (tree new_fndecl, tree callee_fndecl, gcov_type count)
2075 {
2076 struct function *src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
2077 gcov_type count_scale;
2078
2079 if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count)
2080 count_scale = (REG_BR_PROB_BASE * count
2081 / ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count);
2082 else
2083 count_scale = REG_BR_PROB_BASE;
2084
2085 /* Register specific tree functions. */
2086 gimple_register_cfg_hooks ();
2087
2088 /* Get clean struct function. */
2089 push_struct_function (new_fndecl);
2090
2091 /* We will rebuild these, so just sanity check that they are empty. */
2092 gcc_assert (VALUE_HISTOGRAMS (cfun) == NULL);
2093 gcc_assert (cfun->local_decls == NULL);
2094 gcc_assert (cfun->cfg == NULL);
2095 gcc_assert (cfun->decl == new_fndecl);
2096
2097 /* Copy items we preserve during cloning. */
2098 cfun->static_chain_decl = src_cfun->static_chain_decl;
2099 cfun->nonlocal_goto_save_area = src_cfun->nonlocal_goto_save_area;
2100 cfun->function_end_locus = src_cfun->function_end_locus;
2101 cfun->curr_properties = src_cfun->curr_properties & ~PROP_loops;
2102 cfun->last_verified = src_cfun->last_verified;
2103 cfun->va_list_gpr_size = src_cfun->va_list_gpr_size;
2104 cfun->va_list_fpr_size = src_cfun->va_list_fpr_size;
2105 cfun->has_nonlocal_label = src_cfun->has_nonlocal_label;
2106 cfun->stdarg = src_cfun->stdarg;
2107 cfun->after_inlining = src_cfun->after_inlining;
2108 cfun->can_throw_non_call_exceptions
2109 = src_cfun->can_throw_non_call_exceptions;
2110 cfun->can_delete_dead_exceptions = src_cfun->can_delete_dead_exceptions;
2111 cfun->returns_struct = src_cfun->returns_struct;
2112 cfun->returns_pcc_struct = src_cfun->returns_pcc_struct;
2113 cfun->after_tree_profile = src_cfun->after_tree_profile;
2114
2115 init_empty_tree_cfg ();
2116
2117 profile_status_for_function (cfun) = profile_status_for_function (src_cfun);
2118 ENTRY_BLOCK_PTR->count =
2119 (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count * count_scale /
2120 REG_BR_PROB_BASE);
2121 ENTRY_BLOCK_PTR->frequency
2122 = ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency;
2123 EXIT_BLOCK_PTR->count =
2124 (EXIT_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count * count_scale /
2125 REG_BR_PROB_BASE);
2126 EXIT_BLOCK_PTR->frequency =
2127 EXIT_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency;
2128 if (src_cfun->eh)
2129 init_eh_for_function ();
2130
2131 if (src_cfun->gimple_df)
2132 {
2133 init_tree_ssa (cfun);
2134 cfun->gimple_df->in_ssa_p = true;
2135 init_ssa_operands (cfun);
2136 }
2137 pop_cfun ();
2138 }
2139
2140 /* Helper function for copy_cfg_body. Move debug stmts from the end
2141 of NEW_BB to the beginning of successor basic blocks when needed. If the
2142 successor has multiple predecessors, reset them, otherwise keep
2143 their value. */
2144
2145 static void
2146 maybe_move_debug_stmts_to_successors (copy_body_data *id, basic_block new_bb)
2147 {
2148 edge e;
2149 edge_iterator ei;
2150 gimple_stmt_iterator si = gsi_last_nondebug_bb (new_bb);
2151
2152 if (gsi_end_p (si)
2153 || gsi_one_before_end_p (si)
2154 || !(stmt_can_throw_internal (gsi_stmt (si))
2155 || stmt_can_make_abnormal_goto (gsi_stmt (si))))
2156 return;
2157
2158 FOR_EACH_EDGE (e, ei, new_bb->succs)
2159 {
2160 gimple_stmt_iterator ssi = gsi_last_bb (new_bb);
2161 gimple_stmt_iterator dsi = gsi_after_labels (e->dest);
2162 while (is_gimple_debug (gsi_stmt (ssi)))
2163 {
2164 gimple stmt = gsi_stmt (ssi), new_stmt;
2165 tree var;
2166 tree value;
2167
2168 /* For the last edge move the debug stmts instead of copying
2169 them. */
2170 if (ei_one_before_end_p (ei))
2171 {
2172 si = ssi;
2173 gsi_prev (&ssi);
2174 if (!single_pred_p (e->dest) && gimple_debug_bind_p (stmt))
2175 gimple_debug_bind_reset_value (stmt);
2176 gsi_remove (&si, false);
2177 gsi_insert_before (&dsi, stmt, GSI_SAME_STMT);
2178 continue;
2179 }
2180
2181 if (gimple_debug_bind_p (stmt))
2182 {
2183 var = gimple_debug_bind_get_var (stmt);
2184 if (single_pred_p (e->dest))
2185 {
2186 value = gimple_debug_bind_get_value (stmt);
2187 value = unshare_expr (value);
2188 }
2189 else
2190 value = NULL_TREE;
2191 new_stmt = gimple_build_debug_bind (var, value, stmt);
2192 }
2193 else if (gimple_debug_source_bind_p (stmt))
2194 {
2195 var = gimple_debug_source_bind_get_var (stmt);
2196 value = gimple_debug_source_bind_get_value (stmt);
2197 new_stmt = gimple_build_debug_source_bind (var, value, stmt);
2198 }
2199 else
2200 gcc_unreachable ();
2201 gsi_insert_before (&dsi, new_stmt, GSI_SAME_STMT);
2202 VEC_safe_push (gimple, heap, id->debug_stmts, new_stmt);
2203 gsi_prev (&ssi);
2204 }
2205 }
2206 }
2207
2208 /* Make a copy of the body of FN so that it can be inserted inline in
2209 another function. Walks FN via CFG, returns new fndecl. */
2210
2211 static tree
2212 copy_cfg_body (copy_body_data * id, gcov_type count, int frequency_scale,
2213 basic_block entry_block_map, basic_block exit_block_map,
2214 bitmap blocks_to_copy, basic_block new_entry)
2215 {
2216 tree callee_fndecl = id->src_fn;
2217 /* Original cfun for the callee, doesn't change. */
2218 struct function *src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
2219 struct function *cfun_to_copy;
2220 basic_block bb;
2221 tree new_fndecl = NULL;
2222 bool need_debug_cleanup = false;
2223 gcov_type count_scale;
2224 int last;
2225 int incoming_frequency = 0;
2226 gcov_type incoming_count = 0;
2227
2228 if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count)
2229 count_scale = (REG_BR_PROB_BASE * count
2230 / ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count);
2231 else
2232 count_scale = REG_BR_PROB_BASE;
2233
2234 /* Register specific tree functions. */
2235 gimple_register_cfg_hooks ();
2236
2237 /* If we are inlining just region of the function, make sure to connect new entry
2238 to ENTRY_BLOCK_PTR. Since new entry can be part of loop, we must compute
2239 frequency and probability of ENTRY_BLOCK_PTR based on the frequencies and
2240 probabilities of edges incoming from nonduplicated region. */
2241 if (new_entry)
2242 {
2243 edge e;
2244 edge_iterator ei;
2245
2246 FOR_EACH_EDGE (e, ei, new_entry->preds)
2247 if (!e->src->aux)
2248 {
2249 incoming_frequency += EDGE_FREQUENCY (e);
2250 incoming_count += e->count;
2251 }
2252 incoming_count = incoming_count * count_scale / REG_BR_PROB_BASE;
2253 incoming_frequency
2254 = incoming_frequency * frequency_scale / REG_BR_PROB_BASE;
2255 ENTRY_BLOCK_PTR->count = incoming_count;
2256 ENTRY_BLOCK_PTR->frequency = incoming_frequency;
2257 }
2258
2259 /* Must have a CFG here at this point. */
2260 gcc_assert (ENTRY_BLOCK_PTR_FOR_FUNCTION
2261 (DECL_STRUCT_FUNCTION (callee_fndecl)));
2262
2263 cfun_to_copy = id->src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
2264
2265 ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy)->aux = entry_block_map;
2266 EXIT_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy)->aux = exit_block_map;
2267 entry_block_map->aux = ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy);
2268 exit_block_map->aux = EXIT_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy);
2269
2270 /* Duplicate any exception-handling regions. */
2271 if (cfun->eh)
2272 id->eh_map = duplicate_eh_regions (cfun_to_copy, NULL, id->eh_lp_nr,
2273 remap_decl_1, id);
2274
2275 /* Use aux pointers to map the original blocks to copy. */
2276 FOR_EACH_BB_FN (bb, cfun_to_copy)
2277 if (!blocks_to_copy || bitmap_bit_p (blocks_to_copy, bb->index))
2278 {
2279 basic_block new_bb = copy_bb (id, bb, frequency_scale, count_scale);
2280 bb->aux = new_bb;
2281 new_bb->aux = bb;
2282 }
2283
2284 last = last_basic_block;
2285
2286 /* Now that we've duplicated the blocks, duplicate their edges. */
2287 FOR_ALL_BB_FN (bb, cfun_to_copy)
2288 if (!blocks_to_copy
2289 || (bb->index > 0 && bitmap_bit_p (blocks_to_copy, bb->index)))
2290 need_debug_cleanup |= copy_edges_for_bb (bb, count_scale, exit_block_map);
2291
2292 if (new_entry)
2293 {
2294 edge e = make_edge (entry_block_map, (basic_block)new_entry->aux, EDGE_FALLTHRU);
2295 e->probability = REG_BR_PROB_BASE;
2296 e->count = incoming_count;
2297 }
2298
2299 if (gimple_in_ssa_p (cfun))
2300 FOR_ALL_BB_FN (bb, cfun_to_copy)
2301 if (!blocks_to_copy
2302 || (bb->index > 0 && bitmap_bit_p (blocks_to_copy, bb->index)))
2303 copy_phis_for_bb (bb, id);
2304
2305 FOR_ALL_BB_FN (bb, cfun_to_copy)
2306 if (bb->aux)
2307 {
2308 if (need_debug_cleanup
2309 && bb->index != ENTRY_BLOCK
2310 && bb->index != EXIT_BLOCK)
2311 maybe_move_debug_stmts_to_successors (id, (basic_block) bb->aux);
2312 ((basic_block)bb->aux)->aux = NULL;
2313 bb->aux = NULL;
2314 }
2315
2316 /* Zero out AUX fields of newly created block during EH edge
2317 insertion. */
2318 for (; last < last_basic_block; last++)
2319 {
2320 if (need_debug_cleanup)
2321 maybe_move_debug_stmts_to_successors (id, BASIC_BLOCK (last));
2322 BASIC_BLOCK (last)->aux = NULL;
2323 }
2324 entry_block_map->aux = NULL;
2325 exit_block_map->aux = NULL;
2326
2327 if (id->eh_map)
2328 {
2329 pointer_map_destroy (id->eh_map);
2330 id->eh_map = NULL;
2331 }
2332
2333 return new_fndecl;
2334 }
2335
2336 /* Copy the debug STMT using ID. We deal with these statements in a
2337 special way: if any variable in their VALUE expression wasn't
2338 remapped yet, we won't remap it, because that would get decl uids
2339 out of sync, causing codegen differences between -g and -g0. If
2340 this arises, we drop the VALUE expression altogether. */
2341
2342 static void
2343 copy_debug_stmt (gimple stmt, copy_body_data *id)
2344 {
2345 tree t, *n;
2346 struct walk_stmt_info wi;
2347
2348 t = id->block;
2349 if (gimple_block (stmt))
2350 {
2351 n = (tree *) pointer_map_contains (id->decl_map, gimple_block (stmt));
2352 if (n)
2353 t = *n;
2354 }
2355 gimple_set_block (stmt, t);
2356
2357 /* Remap all the operands in COPY. */
2358 memset (&wi, 0, sizeof (wi));
2359 wi.info = id;
2360
2361 processing_debug_stmt = 1;
2362
2363 if (gimple_debug_source_bind_p (stmt))
2364 t = gimple_debug_source_bind_get_var (stmt);
2365 else
2366 t = gimple_debug_bind_get_var (stmt);
2367
2368 if (TREE_CODE (t) == PARM_DECL && id->debug_map
2369 && (n = (tree *) pointer_map_contains (id->debug_map, t)))
2370 {
2371 gcc_assert (TREE_CODE (*n) == VAR_DECL);
2372 t = *n;
2373 }
2374 else if (TREE_CODE (t) == VAR_DECL
2375 && !TREE_STATIC (t)
2376 && gimple_in_ssa_p (cfun)
2377 && !pointer_map_contains (id->decl_map, t)
2378 && !var_ann (t))
2379 /* T is a non-localized variable. */;
2380 else
2381 walk_tree (&t, remap_gimple_op_r, &wi, NULL);
2382
2383 if (gimple_debug_bind_p (stmt))
2384 {
2385 gimple_debug_bind_set_var (stmt, t);
2386
2387 if (gimple_debug_bind_has_value_p (stmt))
2388 walk_tree (gimple_debug_bind_get_value_ptr (stmt),
2389 remap_gimple_op_r, &wi, NULL);
2390
2391 /* Punt if any decl couldn't be remapped. */
2392 if (processing_debug_stmt < 0)
2393 gimple_debug_bind_reset_value (stmt);
2394 }
2395 else if (gimple_debug_source_bind_p (stmt))
2396 {
2397 gimple_debug_source_bind_set_var (stmt, t);
2398 walk_tree (gimple_debug_source_bind_get_value_ptr (stmt),
2399 remap_gimple_op_r, &wi, NULL);
2400 }
2401
2402 processing_debug_stmt = 0;
2403
2404 update_stmt (stmt);
2405 }
2406
2407 /* Process deferred debug stmts. In order to give values better odds
2408 of being successfully remapped, we delay the processing of debug
2409 stmts until all other stmts that might require remapping are
2410 processed. */
2411
2412 static void
2413 copy_debug_stmts (copy_body_data *id)
2414 {
2415 size_t i;
2416 gimple stmt;
2417
2418 if (!id->debug_stmts)
2419 return;
2420
2421 FOR_EACH_VEC_ELT (gimple, id->debug_stmts, i, stmt)
2422 copy_debug_stmt (stmt, id);
2423
2424 VEC_free (gimple, heap, id->debug_stmts);
2425 }
2426
2427 /* Make a copy of the body of SRC_FN so that it can be inserted inline in
2428 another function. */
2429
2430 static tree
2431 copy_tree_body (copy_body_data *id)
2432 {
2433 tree fndecl = id->src_fn;
2434 tree body = DECL_SAVED_TREE (fndecl);
2435
2436 walk_tree (&body, copy_tree_body_r, id, NULL);
2437
2438 return body;
2439 }
2440
2441 /* Make a copy of the body of FN so that it can be inserted inline in
2442 another function. */
2443
2444 static tree
2445 copy_body (copy_body_data *id, gcov_type count, int frequency_scale,
2446 basic_block entry_block_map, basic_block exit_block_map,
2447 bitmap blocks_to_copy, basic_block new_entry)
2448 {
2449 tree fndecl = id->src_fn;
2450 tree body;
2451
2452 /* If this body has a CFG, walk CFG and copy. */
2453 gcc_assert (ENTRY_BLOCK_PTR_FOR_FUNCTION (DECL_STRUCT_FUNCTION (fndecl)));
2454 body = copy_cfg_body (id, count, frequency_scale, entry_block_map, exit_block_map,
2455 blocks_to_copy, new_entry);
2456 copy_debug_stmts (id);
2457
2458 return body;
2459 }
2460
2461 /* Return true if VALUE is an ADDR_EXPR of an automatic variable
2462 defined in function FN, or of a data member thereof. */
2463
2464 static bool
2465 self_inlining_addr_expr (tree value, tree fn)
2466 {
2467 tree var;
2468
2469 if (TREE_CODE (value) != ADDR_EXPR)
2470 return false;
2471
2472 var = get_base_address (TREE_OPERAND (value, 0));
2473
2474 return var && auto_var_in_fn_p (var, fn);
2475 }
2476
2477 /* Append to BB a debug annotation that binds VAR to VALUE, inheriting
2478 lexical block and line number information from base_stmt, if given,
2479 or from the last stmt of the block otherwise. */
2480
2481 static gimple
2482 insert_init_debug_bind (copy_body_data *id,
2483 basic_block bb, tree var, tree value,
2484 gimple base_stmt)
2485 {
2486 gimple note;
2487 gimple_stmt_iterator gsi;
2488 tree tracked_var;
2489
2490 if (!gimple_in_ssa_p (id->src_cfun))
2491 return NULL;
2492
2493 if (!MAY_HAVE_DEBUG_STMTS)
2494 return NULL;
2495
2496 tracked_var = target_for_debug_bind (var);
2497 if (!tracked_var)
2498 return NULL;
2499
2500 if (bb)
2501 {
2502 gsi = gsi_last_bb (bb);
2503 if (!base_stmt && !gsi_end_p (gsi))
2504 base_stmt = gsi_stmt (gsi);
2505 }
2506
2507 note = gimple_build_debug_bind (tracked_var, value, base_stmt);
2508
2509 if (bb)
2510 {
2511 if (!gsi_end_p (gsi))
2512 gsi_insert_after (&gsi, note, GSI_SAME_STMT);
2513 else
2514 gsi_insert_before (&gsi, note, GSI_SAME_STMT);
2515 }
2516
2517 return note;
2518 }
2519
2520 static void
2521 insert_init_stmt (copy_body_data *id, basic_block bb, gimple init_stmt)
2522 {
2523 /* If VAR represents a zero-sized variable, it's possible that the
2524 assignment statement may result in no gimple statements. */
2525 if (init_stmt)
2526 {
2527 gimple_stmt_iterator si = gsi_last_bb (bb);
2528
2529 /* We can end up with init statements that store to a non-register
2530 from a rhs with a conversion. Handle that here by forcing the
2531 rhs into a temporary. gimple_regimplify_operands is not
2532 prepared to do this for us. */
2533 if (!is_gimple_debug (init_stmt)
2534 && !is_gimple_reg (gimple_assign_lhs (init_stmt))
2535 && is_gimple_reg_type (TREE_TYPE (gimple_assign_lhs (init_stmt)))
2536 && gimple_assign_rhs_class (init_stmt) == GIMPLE_UNARY_RHS)
2537 {
2538 tree rhs = build1 (gimple_assign_rhs_code (init_stmt),
2539 gimple_expr_type (init_stmt),
2540 gimple_assign_rhs1 (init_stmt));
2541 rhs = force_gimple_operand_gsi (&si, rhs, true, NULL_TREE, false,
2542 GSI_NEW_STMT);
2543 gimple_assign_set_rhs_code (init_stmt, TREE_CODE (rhs));
2544 gimple_assign_set_rhs1 (init_stmt, rhs);
2545 }
2546 gsi_insert_after (&si, init_stmt, GSI_NEW_STMT);
2547 gimple_regimplify_operands (init_stmt, &si);
2548
2549 if (!is_gimple_debug (init_stmt) && MAY_HAVE_DEBUG_STMTS)
2550 {
2551 tree var, def = gimple_assign_lhs (init_stmt);
2552
2553 if (TREE_CODE (def) == SSA_NAME)
2554 var = SSA_NAME_VAR (def);
2555 else
2556 var = def;
2557
2558 insert_init_debug_bind (id, bb, var, def, init_stmt);
2559 }
2560 }
2561 }
2562
2563 /* Initialize parameter P with VALUE. If needed, produce init statement
2564 at the end of BB. When BB is NULL, we return init statement to be
2565 output later. */
2566 static gimple
2567 setup_one_parameter (copy_body_data *id, tree p, tree value, tree fn,
2568 basic_block bb, tree *vars)
2569 {
2570 gimple init_stmt = NULL;
2571 tree var;
2572 tree rhs = value;
2573 tree def = (gimple_in_ssa_p (cfun)
2574 ? gimple_default_def (id->src_cfun, p) : NULL);
2575
2576 if (value
2577 && value != error_mark_node
2578 && !useless_type_conversion_p (TREE_TYPE (p), TREE_TYPE (value)))
2579 {
2580 /* If we can match up types by promotion/demotion do so. */
2581 if (fold_convertible_p (TREE_TYPE (p), value))
2582 rhs = fold_convert (TREE_TYPE (p), value);
2583 else
2584 {
2585 /* ??? For valid programs we should not end up here.
2586 Still if we end up with truly mismatched types here, fall back
2587 to using a VIEW_CONVERT_EXPR or a literal zero to not leak invalid
2588 GIMPLE to the following passes. */
2589 if (!is_gimple_reg_type (TREE_TYPE (value))
2590 || TYPE_SIZE (TREE_TYPE (p)) == TYPE_SIZE (TREE_TYPE (value)))
2591 rhs = fold_build1 (VIEW_CONVERT_EXPR, TREE_TYPE (p), value);
2592 else
2593 rhs = build_zero_cst (TREE_TYPE (p));
2594 }
2595 }
2596
2597 /* Make an equivalent VAR_DECL. Note that we must NOT remap the type
2598 here since the type of this decl must be visible to the calling
2599 function. */
2600 var = copy_decl_to_var (p, id);
2601
2602 /* We're actually using the newly-created var. */
2603 if (gimple_in_ssa_p (cfun) && TREE_CODE (var) == VAR_DECL)
2604 add_referenced_var (var);
2605
2606 /* Declare this new variable. */
2607 DECL_CHAIN (var) = *vars;
2608 *vars = var;
2609
2610 /* Make gimplifier happy about this variable. */
2611 DECL_SEEN_IN_BIND_EXPR_P (var) = 1;
2612
2613 /* We are eventually using the value - make sure all variables
2614 referenced therein are properly recorded. */
2615 if (value
2616 && gimple_referenced_vars (cfun)
2617 && TREE_CODE (value) == ADDR_EXPR)
2618 {
2619 tree base = get_base_address (TREE_OPERAND (value, 0));
2620 if (base && TREE_CODE (base) == VAR_DECL && !is_global_var (base))
2621 add_referenced_var (base);
2622 }
2623
2624 /* If the parameter is never assigned to, has no SSA_NAMEs created,
2625 we would not need to create a new variable here at all, if it
2626 weren't for debug info. Still, we can just use the argument
2627 value. */
2628 if (TREE_READONLY (p)
2629 && !TREE_ADDRESSABLE (p)
2630 && value && !TREE_SIDE_EFFECTS (value)
2631 && !def)
2632 {
2633 /* We may produce non-gimple trees by adding NOPs or introduce
2634 invalid sharing when operand is not really constant.
2635 It is not big deal to prohibit constant propagation here as
2636 we will constant propagate in DOM1 pass anyway. */
2637 if (is_gimple_min_invariant (value)
2638 && useless_type_conversion_p (TREE_TYPE (p),
2639 TREE_TYPE (value))
2640 /* We have to be very careful about ADDR_EXPR. Make sure
2641 the base variable isn't a local variable of the inlined
2642 function, e.g., when doing recursive inlining, direct or
2643 mutually-recursive or whatever, which is why we don't
2644 just test whether fn == current_function_decl. */
2645 && ! self_inlining_addr_expr (value, fn))
2646 {
2647 insert_decl_map (id, p, value);
2648 insert_debug_decl_map (id, p, var);
2649 return insert_init_debug_bind (id, bb, var, value, NULL);
2650 }
2651 }
2652
2653 /* Register the VAR_DECL as the equivalent for the PARM_DECL;
2654 that way, when the PARM_DECL is encountered, it will be
2655 automatically replaced by the VAR_DECL. */
2656 insert_decl_map (id, p, var);
2657
2658 /* Even if P was TREE_READONLY, the new VAR should not be.
2659 In the original code, we would have constructed a
2660 temporary, and then the function body would have never
2661 changed the value of P. However, now, we will be
2662 constructing VAR directly. The constructor body may
2663 change its value multiple times as it is being
2664 constructed. Therefore, it must not be TREE_READONLY;
2665 the back-end assumes that TREE_READONLY variable is
2666 assigned to only once. */
2667 if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (p)))
2668 TREE_READONLY (var) = 0;
2669
2670 /* If there is no setup required and we are in SSA, take the easy route
2671 replacing all SSA names representing the function parameter by the
2672 SSA name passed to function.
2673
2674 We need to construct map for the variable anyway as it might be used
2675 in different SSA names when parameter is set in function.
2676
2677 Do replacement at -O0 for const arguments replaced by constant.
2678 This is important for builtin_constant_p and other construct requiring
2679 constant argument to be visible in inlined function body. */
2680 if (gimple_in_ssa_p (cfun) && rhs && def && is_gimple_reg (p)
2681 && (optimize
2682 || (TREE_READONLY (p)
2683 && is_gimple_min_invariant (rhs)))
2684 && (TREE_CODE (rhs) == SSA_NAME
2685 || is_gimple_min_invariant (rhs))
2686 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (def))
2687 {
2688 insert_decl_map (id, def, rhs);
2689 return insert_init_debug_bind (id, bb, var, rhs, NULL);
2690 }
2691
2692 /* If the value of argument is never used, don't care about initializing
2693 it. */
2694 if (optimize && gimple_in_ssa_p (cfun) && !def && is_gimple_reg (p))
2695 {
2696 gcc_assert (!value || !TREE_SIDE_EFFECTS (value));
2697 return insert_init_debug_bind (id, bb, var, rhs, NULL);
2698 }
2699
2700 /* Initialize this VAR_DECL from the equivalent argument. Convert
2701 the argument to the proper type in case it was promoted. */
2702 if (value)
2703 {
2704 if (rhs == error_mark_node)
2705 {
2706 insert_decl_map (id, p, var);
2707 return insert_init_debug_bind (id, bb, var, rhs, NULL);
2708 }
2709
2710 STRIP_USELESS_TYPE_CONVERSION (rhs);
2711
2712 /* If we are in SSA form properly remap the default definition
2713 or assign to a dummy SSA name if the parameter is unused and
2714 we are not optimizing. */
2715 if (gimple_in_ssa_p (cfun) && is_gimple_reg (p))
2716 {
2717 if (def)
2718 {
2719 def = remap_ssa_name (def, id);
2720 init_stmt = gimple_build_assign (def, rhs);
2721 SSA_NAME_IS_DEFAULT_DEF (def) = 0;
2722 set_default_def (var, NULL);
2723 }
2724 else if (!optimize)
2725 {
2726 def = make_ssa_name (var, NULL);
2727 init_stmt = gimple_build_assign (def, rhs);
2728 }
2729 }
2730 else
2731 init_stmt = gimple_build_assign (var, rhs);
2732
2733 if (bb && init_stmt)
2734 insert_init_stmt (id, bb, init_stmt);
2735 }
2736 return init_stmt;
2737 }
2738
2739 /* Generate code to initialize the parameters of the function at the
2740 top of the stack in ID from the GIMPLE_CALL STMT. */
2741
2742 static void
2743 initialize_inlined_parameters (copy_body_data *id, gimple stmt,
2744 tree fn, basic_block bb)
2745 {
2746 tree parms;
2747 size_t i;
2748 tree p;
2749 tree vars = NULL_TREE;
2750 tree static_chain = gimple_call_chain (stmt);
2751
2752 /* Figure out what the parameters are. */
2753 parms = DECL_ARGUMENTS (fn);
2754
2755 /* Loop through the parameter declarations, replacing each with an
2756 equivalent VAR_DECL, appropriately initialized. */
2757 for (p = parms, i = 0; p; p = DECL_CHAIN (p), i++)
2758 {
2759 tree val;
2760 val = i < gimple_call_num_args (stmt) ? gimple_call_arg (stmt, i) : NULL;
2761 setup_one_parameter (id, p, val, fn, bb, &vars);
2762 }
2763 /* After remapping parameters remap their types. This has to be done
2764 in a second loop over all parameters to appropriately remap
2765 variable sized arrays when the size is specified in a
2766 parameter following the array. */
2767 for (p = parms, i = 0; p; p = DECL_CHAIN (p), i++)
2768 {
2769 tree *varp = (tree *) pointer_map_contains (id->decl_map, p);
2770 if (varp
2771 && TREE_CODE (*varp) == VAR_DECL)
2772 {
2773 tree def = (gimple_in_ssa_p (cfun) && is_gimple_reg (p)
2774 ? gimple_default_def (id->src_cfun, p) : NULL);
2775 tree var = *varp;
2776 TREE_TYPE (var) = remap_type (TREE_TYPE (var), id);
2777 /* Also remap the default definition if it was remapped
2778 to the default definition of the parameter replacement
2779 by the parameter setup. */
2780 if (def)
2781 {
2782 tree *defp = (tree *) pointer_map_contains (id->decl_map, def);
2783 if (defp
2784 && TREE_CODE (*defp) == SSA_NAME
2785 && SSA_NAME_VAR (*defp) == var)
2786 TREE_TYPE (*defp) = TREE_TYPE (var);
2787 }
2788 }
2789 }
2790
2791 /* Initialize the static chain. */
2792 p = DECL_STRUCT_FUNCTION (fn)->static_chain_decl;
2793 gcc_assert (fn != current_function_decl);
2794 if (p)
2795 {
2796 /* No static chain? Seems like a bug in tree-nested.c. */
2797 gcc_assert (static_chain);
2798
2799 setup_one_parameter (id, p, static_chain, fn, bb, &vars);
2800 }
2801
2802 declare_inline_vars (id->block, vars);
2803 }
2804
2805
2806 /* Declare a return variable to replace the RESULT_DECL for the
2807 function we are calling. An appropriate DECL_STMT is returned.
2808 The USE_STMT is filled to contain a use of the declaration to
2809 indicate the return value of the function.
2810
2811 RETURN_SLOT, if non-null is place where to store the result. It
2812 is set only for CALL_EXPR_RETURN_SLOT_OPT. MODIFY_DEST, if non-null,
2813 was the LHS of the MODIFY_EXPR to which this call is the RHS.
2814
2815 The return value is a (possibly null) value that holds the result
2816 as seen by the caller. */
2817
2818 static tree
2819 declare_return_variable (copy_body_data *id, tree return_slot, tree modify_dest,
2820 basic_block entry_bb)
2821 {
2822 tree callee = id->src_fn;
2823 tree result = DECL_RESULT (callee);
2824 tree callee_type = TREE_TYPE (result);
2825 tree caller_type;
2826 tree var, use;
2827
2828 /* Handle type-mismatches in the function declaration return type
2829 vs. the call expression. */
2830 if (modify_dest)
2831 caller_type = TREE_TYPE (modify_dest);
2832 else
2833 caller_type = TREE_TYPE (TREE_TYPE (callee));
2834
2835 /* We don't need to do anything for functions that don't return anything. */
2836 if (VOID_TYPE_P (callee_type))
2837 return NULL_TREE;
2838
2839 /* If there was a return slot, then the return value is the
2840 dereferenced address of that object. */
2841 if (return_slot)
2842 {
2843 /* The front end shouldn't have used both return_slot and
2844 a modify expression. */
2845 gcc_assert (!modify_dest);
2846 if (DECL_BY_REFERENCE (result))
2847 {
2848 tree return_slot_addr = build_fold_addr_expr (return_slot);
2849 STRIP_USELESS_TYPE_CONVERSION (return_slot_addr);
2850
2851 /* We are going to construct *&return_slot and we can't do that
2852 for variables believed to be not addressable.
2853
2854 FIXME: This check possibly can match, because values returned
2855 via return slot optimization are not believed to have address
2856 taken by alias analysis. */
2857 gcc_assert (TREE_CODE (return_slot) != SSA_NAME);
2858 var = return_slot_addr;
2859 }
2860 else
2861 {
2862 var = return_slot;
2863 gcc_assert (TREE_CODE (var) != SSA_NAME);
2864 TREE_ADDRESSABLE (var) |= TREE_ADDRESSABLE (result);
2865 }
2866 if ((TREE_CODE (TREE_TYPE (result)) == COMPLEX_TYPE
2867 || TREE_CODE (TREE_TYPE (result)) == VECTOR_TYPE)
2868 && !DECL_GIMPLE_REG_P (result)
2869 && DECL_P (var))
2870 DECL_GIMPLE_REG_P (var) = 0;
2871 use = NULL;
2872 goto done;
2873 }
2874
2875 /* All types requiring non-trivial constructors should have been handled. */
2876 gcc_assert (!TREE_ADDRESSABLE (callee_type));
2877
2878 /* Attempt to avoid creating a new temporary variable. */
2879 if (modify_dest
2880 && TREE_CODE (modify_dest) != SSA_NAME)
2881 {
2882 bool use_it = false;
2883
2884 /* We can't use MODIFY_DEST if there's type promotion involved. */
2885 if (!useless_type_conversion_p (callee_type, caller_type))
2886 use_it = false;
2887
2888 /* ??? If we're assigning to a variable sized type, then we must
2889 reuse the destination variable, because we've no good way to
2890 create variable sized temporaries at this point. */
2891 else if (TREE_CODE (TYPE_SIZE_UNIT (caller_type)) != INTEGER_CST)
2892 use_it = true;
2893
2894 /* If the callee cannot possibly modify MODIFY_DEST, then we can
2895 reuse it as the result of the call directly. Don't do this if
2896 it would promote MODIFY_DEST to addressable. */
2897 else if (TREE_ADDRESSABLE (result))
2898 use_it = false;
2899 else
2900 {
2901 tree base_m = get_base_address (modify_dest);
2902
2903 /* If the base isn't a decl, then it's a pointer, and we don't
2904 know where that's going to go. */
2905 if (!DECL_P (base_m))
2906 use_it = false;
2907 else if (is_global_var (base_m))
2908 use_it = false;
2909 else if ((TREE_CODE (TREE_TYPE (result)) == COMPLEX_TYPE
2910 || TREE_CODE (TREE_TYPE (result)) == VECTOR_TYPE)
2911 && !DECL_GIMPLE_REG_P (result)
2912 && DECL_GIMPLE_REG_P (base_m))
2913 use_it = false;
2914 else if (!TREE_ADDRESSABLE (base_m))
2915 use_it = true;
2916 }
2917
2918 if (use_it)
2919 {
2920 var = modify_dest;
2921 use = NULL;
2922 goto done;
2923 }
2924 }
2925
2926 gcc_assert (TREE_CODE (TYPE_SIZE_UNIT (callee_type)) == INTEGER_CST);
2927
2928 var = copy_result_decl_to_var (result, id);
2929 if (gimple_referenced_vars (cfun))
2930 add_referenced_var (var);
2931
2932 DECL_SEEN_IN_BIND_EXPR_P (var) = 1;
2933
2934 /* Do not have the rest of GCC warn about this variable as it should
2935 not be visible to the user. */
2936 TREE_NO_WARNING (var) = 1;
2937
2938 declare_inline_vars (id->block, var);
2939
2940 /* Build the use expr. If the return type of the function was
2941 promoted, convert it back to the expected type. */
2942 use = var;
2943 if (!useless_type_conversion_p (caller_type, TREE_TYPE (var)))
2944 {
2945 /* If we can match up types by promotion/demotion do so. */
2946 if (fold_convertible_p (caller_type, var))
2947 use = fold_convert (caller_type, var);
2948 else
2949 {
2950 /* ??? For valid programs we should not end up here.
2951 Still if we end up with truly mismatched types here, fall back
2952 to using a MEM_REF to not leak invalid GIMPLE to the following
2953 passes. */
2954 /* Prevent var from being written into SSA form. */
2955 if (TREE_CODE (TREE_TYPE (var)) == VECTOR_TYPE
2956 || TREE_CODE (TREE_TYPE (var)) == COMPLEX_TYPE)
2957 DECL_GIMPLE_REG_P (var) = false;
2958 else if (is_gimple_reg_type (TREE_TYPE (var)))
2959 TREE_ADDRESSABLE (var) = true;
2960 use = fold_build2 (MEM_REF, caller_type,
2961 build_fold_addr_expr (var),
2962 build_int_cst (ptr_type_node, 0));
2963 }
2964 }
2965
2966 STRIP_USELESS_TYPE_CONVERSION (use);
2967
2968 if (DECL_BY_REFERENCE (result))
2969 {
2970 TREE_ADDRESSABLE (var) = 1;
2971 var = build_fold_addr_expr (var);
2972 }
2973 else if (gimple_in_ssa_p (cfun)
2974 && is_gimple_reg (var))
2975 /* ??? Re-org id->retval and its special handling so that we can
2976 record an SSA name directly and not need to invoke the SSA renamer. */
2977 mark_sym_for_renaming (var);
2978
2979 done:
2980 /* Register the VAR_DECL as the equivalent for the RESULT_DECL; that
2981 way, when the RESULT_DECL is encountered, it will be
2982 automatically replaced by the VAR_DECL.
2983
2984 When returning by reference, ensure that RESULT_DECL remaps to
2985 gimple_val. */
2986 if (DECL_BY_REFERENCE (result)
2987 && !is_gimple_val (var))
2988 {
2989 tree temp = create_tmp_var (TREE_TYPE (result), "retvalptr");
2990 if (gimple_referenced_vars (cfun))
2991 add_referenced_var (temp);
2992 insert_decl_map (id, result, temp);
2993 /* When RESULT_DECL is in SSA form, we need to remap and initialize
2994 it's default_def SSA_NAME. */
2995 if (gimple_in_ssa_p (id->src_cfun)
2996 && is_gimple_reg (result))
2997 {
2998 temp = make_ssa_name (temp, NULL);
2999 insert_decl_map (id, gimple_default_def (id->src_cfun, result),
3000 temp);
3001 }
3002 insert_init_stmt (id, entry_bb, gimple_build_assign (temp, var));
3003 }
3004 else
3005 insert_decl_map (id, result, var);
3006
3007 /* Remember this so we can ignore it in remap_decls. */
3008 id->retvar = var;
3009
3010 return use;
3011 }
3012
3013 /* Callback through walk_tree. Determine if a DECL_INITIAL makes reference
3014 to a local label. */
3015
3016 static tree
3017 has_label_address_in_static_1 (tree *nodep, int *walk_subtrees, void *fnp)
3018 {
3019 tree node = *nodep;
3020 tree fn = (tree) fnp;
3021
3022 if (TREE_CODE (node) == LABEL_DECL && DECL_CONTEXT (node) == fn)
3023 return node;
3024
3025 if (TYPE_P (node))
3026 *walk_subtrees = 0;
3027
3028 return NULL_TREE;
3029 }
3030
3031 /* Determine if the function can be copied. If so return NULL. If
3032 not return a string describng the reason for failure. */
3033
3034 static const char *
3035 copy_forbidden (struct function *fun, tree fndecl)
3036 {
3037 const char *reason = fun->cannot_be_copied_reason;
3038 tree decl;
3039 unsigned ix;
3040
3041 /* Only examine the function once. */
3042 if (fun->cannot_be_copied_set)
3043 return reason;
3044
3045 /* We cannot copy a function that receives a non-local goto
3046 because we cannot remap the destination label used in the
3047 function that is performing the non-local goto. */
3048 /* ??? Actually, this should be possible, if we work at it.
3049 No doubt there's just a handful of places that simply
3050 assume it doesn't happen and don't substitute properly. */
3051 if (fun->has_nonlocal_label)
3052 {
3053 reason = G_("function %q+F can never be copied "
3054 "because it receives a non-local goto");
3055 goto fail;
3056 }
3057
3058 FOR_EACH_LOCAL_DECL (fun, ix, decl)
3059 if (TREE_CODE (decl) == VAR_DECL
3060 && TREE_STATIC (decl)
3061 && !DECL_EXTERNAL (decl)
3062 && DECL_INITIAL (decl)
3063 && walk_tree_without_duplicates (&DECL_INITIAL (decl),
3064 has_label_address_in_static_1,
3065 fndecl))
3066 {
3067 reason = G_("function %q+F can never be copied because it saves "
3068 "address of local label in a static variable");
3069 goto fail;
3070 }
3071
3072 fail:
3073 fun->cannot_be_copied_reason = reason;
3074 fun->cannot_be_copied_set = true;
3075 return reason;
3076 }
3077
3078
3079 static const char *inline_forbidden_reason;
3080
3081 /* A callback for walk_gimple_seq to handle statements. Returns non-null
3082 iff a function can not be inlined. Also sets the reason why. */
3083
3084 static tree
3085 inline_forbidden_p_stmt (gimple_stmt_iterator *gsi, bool *handled_ops_p,
3086 struct walk_stmt_info *wip)
3087 {
3088 tree fn = (tree) wip->info;
3089 tree t;
3090 gimple stmt = gsi_stmt (*gsi);
3091
3092 switch (gimple_code (stmt))
3093 {
3094 case GIMPLE_CALL:
3095 /* Refuse to inline alloca call unless user explicitly forced so as
3096 this may change program's memory overhead drastically when the
3097 function using alloca is called in loop. In GCC present in
3098 SPEC2000 inlining into schedule_block cause it to require 2GB of
3099 RAM instead of 256MB. Don't do so for alloca calls emitted for
3100 VLA objects as those can't cause unbounded growth (they're always
3101 wrapped inside stack_save/stack_restore regions. */
3102 if (gimple_alloca_call_p (stmt)
3103 && !gimple_call_alloca_for_var_p (stmt)
3104 && !lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)))
3105 {
3106 inline_forbidden_reason
3107 = G_("function %q+F can never be inlined because it uses "
3108 "alloca (override using the always_inline attribute)");
3109 *handled_ops_p = true;
3110 return fn;
3111 }
3112
3113 t = gimple_call_fndecl (stmt);
3114 if (t == NULL_TREE)
3115 break;
3116
3117 /* We cannot inline functions that call setjmp. */
3118 if (setjmp_call_p (t))
3119 {
3120 inline_forbidden_reason
3121 = G_("function %q+F can never be inlined because it uses setjmp");
3122 *handled_ops_p = true;
3123 return t;
3124 }
3125
3126 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL)
3127 switch (DECL_FUNCTION_CODE (t))
3128 {
3129 /* We cannot inline functions that take a variable number of
3130 arguments. */
3131 case BUILT_IN_VA_START:
3132 case BUILT_IN_NEXT_ARG:
3133 case BUILT_IN_VA_END:
3134 inline_forbidden_reason
3135 = G_("function %q+F can never be inlined because it "
3136 "uses variable argument lists");
3137 *handled_ops_p = true;
3138 return t;
3139
3140 case BUILT_IN_LONGJMP:
3141 /* We can't inline functions that call __builtin_longjmp at
3142 all. The non-local goto machinery really requires the
3143 destination be in a different function. If we allow the
3144 function calling __builtin_longjmp to be inlined into the
3145 function calling __builtin_setjmp, Things will Go Awry. */
3146 inline_forbidden_reason
3147 = G_("function %q+F can never be inlined because "
3148 "it uses setjmp-longjmp exception handling");
3149 *handled_ops_p = true;
3150 return t;
3151
3152 case BUILT_IN_NONLOCAL_GOTO:
3153 /* Similarly. */
3154 inline_forbidden_reason
3155 = G_("function %q+F can never be inlined because "
3156 "it uses non-local goto");
3157 *handled_ops_p = true;
3158 return t;
3159
3160 case BUILT_IN_RETURN:
3161 case BUILT_IN_APPLY_ARGS:
3162 /* If a __builtin_apply_args caller would be inlined,
3163 it would be saving arguments of the function it has
3164 been inlined into. Similarly __builtin_return would
3165 return from the function the inline has been inlined into. */
3166 inline_forbidden_reason
3167 = G_("function %q+F can never be inlined because "
3168 "it uses __builtin_return or __builtin_apply_args");
3169 *handled_ops_p = true;
3170 return t;
3171
3172 default:
3173 break;
3174 }
3175 break;
3176
3177 case GIMPLE_GOTO:
3178 t = gimple_goto_dest (stmt);
3179
3180 /* We will not inline a function which uses computed goto. The
3181 addresses of its local labels, which may be tucked into
3182 global storage, are of course not constant across
3183 instantiations, which causes unexpected behavior. */
3184 if (TREE_CODE (t) != LABEL_DECL)
3185 {
3186 inline_forbidden_reason
3187 = G_("function %q+F can never be inlined "
3188 "because it contains a computed goto");
3189 *handled_ops_p = true;
3190 return t;
3191 }
3192 break;
3193
3194 default:
3195 break;
3196 }
3197
3198 *handled_ops_p = false;
3199 return NULL_TREE;
3200 }
3201
3202 /* Return true if FNDECL is a function that cannot be inlined into
3203 another one. */
3204
3205 static bool
3206 inline_forbidden_p (tree fndecl)
3207 {
3208 struct function *fun = DECL_STRUCT_FUNCTION (fndecl);
3209 struct walk_stmt_info wi;
3210 struct pointer_set_t *visited_nodes;
3211 basic_block bb;
3212 bool forbidden_p = false;
3213
3214 /* First check for shared reasons not to copy the code. */
3215 inline_forbidden_reason = copy_forbidden (fun, fndecl);
3216 if (inline_forbidden_reason != NULL)
3217 return true;
3218
3219 /* Next, walk the statements of the function looking for
3220 constraucts we can't handle, or are non-optimal for inlining. */
3221 visited_nodes = pointer_set_create ();
3222 memset (&wi, 0, sizeof (wi));
3223 wi.info = (void *) fndecl;
3224 wi.pset = visited_nodes;
3225
3226 FOR_EACH_BB_FN (bb, fun)
3227 {
3228 gimple ret;
3229 gimple_seq seq = bb_seq (bb);
3230 ret = walk_gimple_seq (seq, inline_forbidden_p_stmt, NULL, &wi);
3231 forbidden_p = (ret != NULL);
3232 if (forbidden_p)
3233 break;
3234 }
3235
3236 pointer_set_destroy (visited_nodes);
3237 return forbidden_p;
3238 }
3239 \f
3240 /* Return false if the function FNDECL cannot be inlined on account of its
3241 attributes, true otherwise. */
3242 static bool
3243 function_attribute_inlinable_p (const_tree fndecl)
3244 {
3245 if (targetm.attribute_table)
3246 {
3247 const_tree a;
3248
3249 for (a = DECL_ATTRIBUTES (fndecl); a; a = TREE_CHAIN (a))
3250 {
3251 const_tree name = TREE_PURPOSE (a);
3252 int i;
3253
3254 for (i = 0; targetm.attribute_table[i].name != NULL; i++)
3255 if (is_attribute_p (targetm.attribute_table[i].name, name))
3256 return targetm.function_attribute_inlinable_p (fndecl);
3257 }
3258 }
3259
3260 return true;
3261 }
3262
3263 /* Returns nonzero if FN is a function that does not have any
3264 fundamental inline blocking properties. */
3265
3266 bool
3267 tree_inlinable_function_p (tree fn)
3268 {
3269 bool inlinable = true;
3270 bool do_warning;
3271 tree always_inline;
3272
3273 /* If we've already decided this function shouldn't be inlined,
3274 there's no need to check again. */
3275 if (DECL_UNINLINABLE (fn))
3276 return false;
3277
3278 /* We only warn for functions declared `inline' by the user. */
3279 do_warning = (warn_inline
3280 && DECL_DECLARED_INLINE_P (fn)
3281 && !DECL_NO_INLINE_WARNING_P (fn)
3282 && !DECL_IN_SYSTEM_HEADER (fn));
3283
3284 always_inline = lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn));
3285
3286 if (flag_no_inline
3287 && always_inline == NULL)
3288 {
3289 if (do_warning)
3290 warning (OPT_Winline, "function %q+F can never be inlined because it "
3291 "is suppressed using -fno-inline", fn);
3292 inlinable = false;
3293 }
3294
3295 else if (!function_attribute_inlinable_p (fn))
3296 {
3297 if (do_warning)
3298 warning (OPT_Winline, "function %q+F can never be inlined because it "
3299 "uses attributes conflicting with inlining", fn);
3300 inlinable = false;
3301 }
3302
3303 else if (inline_forbidden_p (fn))
3304 {
3305 /* See if we should warn about uninlinable functions. Previously,
3306 some of these warnings would be issued while trying to expand
3307 the function inline, but that would cause multiple warnings
3308 about functions that would for example call alloca. But since
3309 this a property of the function, just one warning is enough.
3310 As a bonus we can now give more details about the reason why a
3311 function is not inlinable. */
3312 if (always_inline)
3313 error (inline_forbidden_reason, fn);
3314 else if (do_warning)
3315 warning (OPT_Winline, inline_forbidden_reason, fn);
3316
3317 inlinable = false;
3318 }
3319
3320 /* Squirrel away the result so that we don't have to check again. */
3321 DECL_UNINLINABLE (fn) = !inlinable;
3322
3323 return inlinable;
3324 }
3325
3326 /* Estimate the cost of a memory move. Use machine dependent
3327 word size and take possible memcpy call into account. */
3328
3329 int
3330 estimate_move_cost (tree type)
3331 {
3332 HOST_WIDE_INT size;
3333
3334 gcc_assert (!VOID_TYPE_P (type));
3335
3336 if (TREE_CODE (type) == VECTOR_TYPE)
3337 {
3338 enum machine_mode inner = TYPE_MODE (TREE_TYPE (type));
3339 enum machine_mode simd
3340 = targetm.vectorize.preferred_simd_mode (inner);
3341 int simd_mode_size = GET_MODE_SIZE (simd);
3342 return ((GET_MODE_SIZE (TYPE_MODE (type)) + simd_mode_size - 1)
3343 / simd_mode_size);
3344 }
3345
3346 size = int_size_in_bytes (type);
3347
3348 if (size < 0 || size > MOVE_MAX_PIECES * MOVE_RATIO (!optimize_size))
3349 /* Cost of a memcpy call, 3 arguments and the call. */
3350 return 4;
3351 else
3352 return ((size + MOVE_MAX_PIECES - 1) / MOVE_MAX_PIECES);
3353 }
3354
3355 /* Returns cost of operation CODE, according to WEIGHTS */
3356
3357 static int
3358 estimate_operator_cost (enum tree_code code, eni_weights *weights,
3359 tree op1 ATTRIBUTE_UNUSED, tree op2)
3360 {
3361 switch (code)
3362 {
3363 /* These are "free" conversions, or their presumed cost
3364 is folded into other operations. */
3365 case RANGE_EXPR:
3366 CASE_CONVERT:
3367 case COMPLEX_EXPR:
3368 case PAREN_EXPR:
3369 case VIEW_CONVERT_EXPR:
3370 return 0;
3371
3372 /* Assign cost of 1 to usual operations.
3373 ??? We may consider mapping RTL costs to this. */
3374 case COND_EXPR:
3375 case VEC_COND_EXPR:
3376 case VEC_PERM_EXPR:
3377
3378 case PLUS_EXPR:
3379 case POINTER_PLUS_EXPR:
3380 case MINUS_EXPR:
3381 case MULT_EXPR:
3382 case MULT_HIGHPART_EXPR:
3383 case FMA_EXPR:
3384
3385 case ADDR_SPACE_CONVERT_EXPR:
3386 case FIXED_CONVERT_EXPR:
3387 case FIX_TRUNC_EXPR:
3388
3389 case NEGATE_EXPR:
3390 case FLOAT_EXPR:
3391 case MIN_EXPR:
3392 case MAX_EXPR:
3393 case ABS_EXPR:
3394
3395 case LSHIFT_EXPR:
3396 case RSHIFT_EXPR:
3397 case LROTATE_EXPR:
3398 case RROTATE_EXPR:
3399 case VEC_LSHIFT_EXPR:
3400 case VEC_RSHIFT_EXPR:
3401
3402 case BIT_IOR_EXPR:
3403 case BIT_XOR_EXPR:
3404 case BIT_AND_EXPR:
3405 case BIT_NOT_EXPR:
3406
3407 case TRUTH_ANDIF_EXPR:
3408 case TRUTH_ORIF_EXPR:
3409 case TRUTH_AND_EXPR:
3410 case TRUTH_OR_EXPR:
3411 case TRUTH_XOR_EXPR:
3412 case TRUTH_NOT_EXPR:
3413
3414 case LT_EXPR:
3415 case LE_EXPR:
3416 case GT_EXPR:
3417 case GE_EXPR:
3418 case EQ_EXPR:
3419 case NE_EXPR:
3420 case ORDERED_EXPR:
3421 case UNORDERED_EXPR:
3422
3423 case UNLT_EXPR:
3424 case UNLE_EXPR:
3425 case UNGT_EXPR:
3426 case UNGE_EXPR:
3427 case UNEQ_EXPR:
3428 case LTGT_EXPR:
3429
3430 case CONJ_EXPR:
3431
3432 case PREDECREMENT_EXPR:
3433 case PREINCREMENT_EXPR:
3434 case POSTDECREMENT_EXPR:
3435 case POSTINCREMENT_EXPR:
3436
3437 case REALIGN_LOAD_EXPR:
3438
3439 case REDUC_MAX_EXPR:
3440 case REDUC_MIN_EXPR:
3441 case REDUC_PLUS_EXPR:
3442 case WIDEN_SUM_EXPR:
3443 case WIDEN_MULT_EXPR:
3444 case DOT_PROD_EXPR:
3445 case WIDEN_MULT_PLUS_EXPR:
3446 case WIDEN_MULT_MINUS_EXPR:
3447 case WIDEN_LSHIFT_EXPR:
3448
3449 case VEC_WIDEN_MULT_HI_EXPR:
3450 case VEC_WIDEN_MULT_LO_EXPR:
3451 case VEC_WIDEN_MULT_EVEN_EXPR:
3452 case VEC_WIDEN_MULT_ODD_EXPR:
3453 case VEC_UNPACK_HI_EXPR:
3454 case VEC_UNPACK_LO_EXPR:
3455 case VEC_UNPACK_FLOAT_HI_EXPR:
3456 case VEC_UNPACK_FLOAT_LO_EXPR:
3457 case VEC_PACK_TRUNC_EXPR:
3458 case VEC_PACK_SAT_EXPR:
3459 case VEC_PACK_FIX_TRUNC_EXPR:
3460 case VEC_WIDEN_LSHIFT_HI_EXPR:
3461 case VEC_WIDEN_LSHIFT_LO_EXPR:
3462
3463 return 1;
3464
3465 /* Few special cases of expensive operations. This is useful
3466 to avoid inlining on functions having too many of these. */
3467 case TRUNC_DIV_EXPR:
3468 case CEIL_DIV_EXPR:
3469 case FLOOR_DIV_EXPR:
3470 case ROUND_DIV_EXPR:
3471 case EXACT_DIV_EXPR:
3472 case TRUNC_MOD_EXPR:
3473 case CEIL_MOD_EXPR:
3474 case FLOOR_MOD_EXPR:
3475 case ROUND_MOD_EXPR:
3476 case RDIV_EXPR:
3477 if (TREE_CODE (op2) != INTEGER_CST)
3478 return weights->div_mod_cost;
3479 return 1;
3480
3481 default:
3482 /* We expect a copy assignment with no operator. */
3483 gcc_assert (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS);
3484 return 0;
3485 }
3486 }
3487
3488
3489 /* Estimate number of instructions that will be created by expanding
3490 the statements in the statement sequence STMTS.
3491 WEIGHTS contains weights attributed to various constructs. */
3492
3493 static
3494 int estimate_num_insns_seq (gimple_seq stmts, eni_weights *weights)
3495 {
3496 int cost;
3497 gimple_stmt_iterator gsi;
3498
3499 cost = 0;
3500 for (gsi = gsi_start (stmts); !gsi_end_p (gsi); gsi_next (&gsi))
3501 cost += estimate_num_insns (gsi_stmt (gsi), weights);
3502
3503 return cost;
3504 }
3505
3506
3507 /* Estimate number of instructions that will be created by expanding STMT.
3508 WEIGHTS contains weights attributed to various constructs. */
3509
3510 int
3511 estimate_num_insns (gimple stmt, eni_weights *weights)
3512 {
3513 unsigned cost, i;
3514 enum gimple_code code = gimple_code (stmt);
3515 tree lhs;
3516 tree rhs;
3517
3518 switch (code)
3519 {
3520 case GIMPLE_ASSIGN:
3521 /* Try to estimate the cost of assignments. We have three cases to
3522 deal with:
3523 1) Simple assignments to registers;
3524 2) Stores to things that must live in memory. This includes
3525 "normal" stores to scalars, but also assignments of large
3526 structures, or constructors of big arrays;
3527
3528 Let us look at the first two cases, assuming we have "a = b + C":
3529 <GIMPLE_ASSIGN <var_decl "a">
3530 <plus_expr <var_decl "b"> <constant C>>
3531 If "a" is a GIMPLE register, the assignment to it is free on almost
3532 any target, because "a" usually ends up in a real register. Hence
3533 the only cost of this expression comes from the PLUS_EXPR, and we
3534 can ignore the GIMPLE_ASSIGN.
3535 If "a" is not a GIMPLE register, the assignment to "a" will most
3536 likely be a real store, so the cost of the GIMPLE_ASSIGN is the cost
3537 of moving something into "a", which we compute using the function
3538 estimate_move_cost. */
3539 if (gimple_clobber_p (stmt))
3540 return 0; /* ={v} {CLOBBER} stmt expands to nothing. */
3541
3542 lhs = gimple_assign_lhs (stmt);
3543 rhs = gimple_assign_rhs1 (stmt);
3544
3545 if (is_gimple_reg (lhs))
3546 cost = 0;
3547 else
3548 cost = estimate_move_cost (TREE_TYPE (lhs));
3549
3550 if (!is_gimple_reg (rhs) && !is_gimple_min_invariant (rhs))
3551 cost += estimate_move_cost (TREE_TYPE (rhs));
3552
3553 cost += estimate_operator_cost (gimple_assign_rhs_code (stmt), weights,
3554 gimple_assign_rhs1 (stmt),
3555 get_gimple_rhs_class (gimple_assign_rhs_code (stmt))
3556 == GIMPLE_BINARY_RHS
3557 ? gimple_assign_rhs2 (stmt) : NULL);
3558 break;
3559
3560 case GIMPLE_COND:
3561 cost = 1 + estimate_operator_cost (gimple_cond_code (stmt), weights,
3562 gimple_op (stmt, 0),
3563 gimple_op (stmt, 1));
3564 break;
3565
3566 case GIMPLE_SWITCH:
3567 /* Take into account cost of the switch + guess 2 conditional jumps for
3568 each case label.
3569
3570 TODO: once the switch expansion logic is sufficiently separated, we can
3571 do better job on estimating cost of the switch. */
3572 if (weights->time_based)
3573 cost = floor_log2 (gimple_switch_num_labels (stmt)) * 2;
3574 else
3575 cost = gimple_switch_num_labels (stmt) * 2;
3576 break;
3577
3578 case GIMPLE_CALL:
3579 {
3580 tree decl = gimple_call_fndecl (stmt);
3581 struct cgraph_node *node = NULL;
3582
3583 /* Do not special case builtins where we see the body.
3584 This just confuse inliner. */
3585 if (!decl || !(node = cgraph_get_node (decl)) || node->analyzed)
3586 ;
3587 /* For buitins that are likely expanded to nothing or
3588 inlined do not account operand costs. */
3589 else if (is_simple_builtin (decl))
3590 return 0;
3591 else if (is_inexpensive_builtin (decl))
3592 return weights->target_builtin_call_cost;
3593 else if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
3594 {
3595 /* We canonicalize x * x to pow (x, 2.0) with -ffast-math, so
3596 specialize the cheap expansion we do here.
3597 ??? This asks for a more general solution. */
3598 switch (DECL_FUNCTION_CODE (decl))
3599 {
3600 case BUILT_IN_POW:
3601 case BUILT_IN_POWF:
3602 case BUILT_IN_POWL:
3603 if (TREE_CODE (gimple_call_arg (stmt, 1)) == REAL_CST
3604 && REAL_VALUES_EQUAL
3605 (TREE_REAL_CST (gimple_call_arg (stmt, 1)), dconst2))
3606 return estimate_operator_cost (MULT_EXPR, weights,
3607 gimple_call_arg (stmt, 0),
3608 gimple_call_arg (stmt, 0));
3609 break;
3610
3611 default:
3612 break;
3613 }
3614 }
3615
3616 cost = node ? weights->call_cost : weights->indirect_call_cost;
3617 if (gimple_call_lhs (stmt))
3618 cost += estimate_move_cost (TREE_TYPE (gimple_call_lhs (stmt)));
3619 for (i = 0; i < gimple_call_num_args (stmt); i++)
3620 {
3621 tree arg = gimple_call_arg (stmt, i);
3622 cost += estimate_move_cost (TREE_TYPE (arg));
3623 }
3624 break;
3625 }
3626
3627 case GIMPLE_RETURN:
3628 return weights->return_cost;
3629
3630 case GIMPLE_GOTO:
3631 case GIMPLE_LABEL:
3632 case GIMPLE_NOP:
3633 case GIMPLE_PHI:
3634 case GIMPLE_PREDICT:
3635 case GIMPLE_DEBUG:
3636 return 0;
3637
3638 case GIMPLE_ASM:
3639 return asm_str_count (gimple_asm_string (stmt));
3640
3641 case GIMPLE_RESX:
3642 /* This is either going to be an external function call with one
3643 argument, or two register copy statements plus a goto. */
3644 return 2;
3645
3646 case GIMPLE_EH_DISPATCH:
3647 /* ??? This is going to turn into a switch statement. Ideally
3648 we'd have a look at the eh region and estimate the number of
3649 edges involved. */
3650 return 10;
3651
3652 case GIMPLE_BIND:
3653 return estimate_num_insns_seq (gimple_bind_body (stmt), weights);
3654
3655 case GIMPLE_EH_FILTER:
3656 return estimate_num_insns_seq (gimple_eh_filter_failure (stmt), weights);
3657
3658 case GIMPLE_CATCH:
3659 return estimate_num_insns_seq (gimple_catch_handler (stmt), weights);
3660
3661 case GIMPLE_TRY:
3662 return (estimate_num_insns_seq (gimple_try_eval (stmt), weights)
3663 + estimate_num_insns_seq (gimple_try_cleanup (stmt), weights));
3664
3665 /* OpenMP directives are generally very expensive. */
3666
3667 case GIMPLE_OMP_RETURN:
3668 case GIMPLE_OMP_SECTIONS_SWITCH:
3669 case GIMPLE_OMP_ATOMIC_STORE:
3670 case GIMPLE_OMP_CONTINUE:
3671 /* ...except these, which are cheap. */
3672 return 0;
3673
3674 case GIMPLE_OMP_ATOMIC_LOAD:
3675 return weights->omp_cost;
3676
3677 case GIMPLE_OMP_FOR:
3678 return (weights->omp_cost
3679 + estimate_num_insns_seq (gimple_omp_body (stmt), weights)
3680 + estimate_num_insns_seq (gimple_omp_for_pre_body (stmt), weights));
3681
3682 case GIMPLE_OMP_PARALLEL:
3683 case GIMPLE_OMP_TASK:
3684 case GIMPLE_OMP_CRITICAL:
3685 case GIMPLE_OMP_MASTER:
3686 case GIMPLE_OMP_ORDERED:
3687 case GIMPLE_OMP_SECTION:
3688 case GIMPLE_OMP_SECTIONS:
3689 case GIMPLE_OMP_SINGLE:
3690 return (weights->omp_cost
3691 + estimate_num_insns_seq (gimple_omp_body (stmt), weights));
3692
3693 case GIMPLE_TRANSACTION:
3694 return (weights->tm_cost
3695 + estimate_num_insns_seq (gimple_transaction_body (stmt),
3696 weights));
3697
3698 default:
3699 gcc_unreachable ();
3700 }
3701
3702 return cost;
3703 }
3704
3705 /* Estimate number of instructions that will be created by expanding
3706 function FNDECL. WEIGHTS contains weights attributed to various
3707 constructs. */
3708
3709 int
3710 estimate_num_insns_fn (tree fndecl, eni_weights *weights)
3711 {
3712 struct function *my_function = DECL_STRUCT_FUNCTION (fndecl);
3713 gimple_stmt_iterator bsi;
3714 basic_block bb;
3715 int n = 0;
3716
3717 gcc_assert (my_function && my_function->cfg);
3718 FOR_EACH_BB_FN (bb, my_function)
3719 {
3720 for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
3721 n += estimate_num_insns (gsi_stmt (bsi), weights);
3722 }
3723
3724 return n;
3725 }
3726
3727
3728 /* Initializes weights used by estimate_num_insns. */
3729
3730 void
3731 init_inline_once (void)
3732 {
3733 eni_size_weights.call_cost = 1;
3734 eni_size_weights.indirect_call_cost = 3;
3735 eni_size_weights.target_builtin_call_cost = 1;
3736 eni_size_weights.div_mod_cost = 1;
3737 eni_size_weights.omp_cost = 40;
3738 eni_size_weights.tm_cost = 10;
3739 eni_size_weights.time_based = false;
3740 eni_size_weights.return_cost = 1;
3741
3742 /* Estimating time for call is difficult, since we have no idea what the
3743 called function does. In the current uses of eni_time_weights,
3744 underestimating the cost does less harm than overestimating it, so
3745 we choose a rather small value here. */
3746 eni_time_weights.call_cost = 10;
3747 eni_time_weights.indirect_call_cost = 15;
3748 eni_time_weights.target_builtin_call_cost = 1;
3749 eni_time_weights.div_mod_cost = 10;
3750 eni_time_weights.omp_cost = 40;
3751 eni_time_weights.tm_cost = 40;
3752 eni_time_weights.time_based = true;
3753 eni_time_weights.return_cost = 2;
3754 }
3755
3756 /* Estimate the number of instructions in a gimple_seq. */
3757
3758 int
3759 count_insns_seq (gimple_seq seq, eni_weights *weights)
3760 {
3761 gimple_stmt_iterator gsi;
3762 int n = 0;
3763 for (gsi = gsi_start (seq); !gsi_end_p (gsi); gsi_next (&gsi))
3764 n += estimate_num_insns (gsi_stmt (gsi), weights);
3765
3766 return n;
3767 }
3768
3769
3770 /* Install new lexical TREE_BLOCK underneath 'current_block'. */
3771
3772 static void
3773 prepend_lexical_block (tree current_block, tree new_block)
3774 {
3775 BLOCK_CHAIN (new_block) = BLOCK_SUBBLOCKS (current_block);
3776 BLOCK_SUBBLOCKS (current_block) = new_block;
3777 BLOCK_SUPERCONTEXT (new_block) = current_block;
3778 }
3779
3780 /* Add local variables from CALLEE to CALLER. */
3781
3782 static inline void
3783 add_local_variables (struct function *callee, struct function *caller,
3784 copy_body_data *id, bool check_var_ann)
3785 {
3786 tree var;
3787 unsigned ix;
3788
3789 FOR_EACH_LOCAL_DECL (callee, ix, var)
3790 if (TREE_STATIC (var) && !TREE_ASM_WRITTEN (var))
3791 {
3792 if (!check_var_ann
3793 || (var_ann (var) && add_referenced_var (var)))
3794 add_local_decl (caller, var);
3795 }
3796 else if (!can_be_nonlocal (var, id))
3797 {
3798 tree new_var = remap_decl (var, id);
3799
3800 /* Remap debug-expressions. */
3801 if (TREE_CODE (new_var) == VAR_DECL
3802 && DECL_DEBUG_EXPR_IS_FROM (new_var)
3803 && new_var != var)
3804 {
3805 tree tem = DECL_DEBUG_EXPR (var);
3806 bool old_regimplify = id->regimplify;
3807 id->remapping_type_depth++;
3808 walk_tree (&tem, copy_tree_body_r, id, NULL);
3809 id->remapping_type_depth--;
3810 id->regimplify = old_regimplify;
3811 SET_DECL_DEBUG_EXPR (new_var, tem);
3812 }
3813 add_local_decl (caller, new_var);
3814 }
3815 }
3816
3817 /* If STMT is a GIMPLE_CALL, replace it with its inline expansion. */
3818
3819 static bool
3820 expand_call_inline (basic_block bb, gimple stmt, copy_body_data *id)
3821 {
3822 tree use_retvar;
3823 tree fn;
3824 struct pointer_map_t *st, *dst;
3825 tree return_slot;
3826 tree modify_dest;
3827 location_t saved_location;
3828 struct cgraph_edge *cg_edge;
3829 cgraph_inline_failed_t reason;
3830 basic_block return_block;
3831 edge e;
3832 gimple_stmt_iterator gsi, stmt_gsi;
3833 bool successfully_inlined = FALSE;
3834 bool purge_dead_abnormal_edges;
3835
3836 /* Set input_location here so we get the right instantiation context
3837 if we call instantiate_decl from inlinable_function_p. */
3838 /* FIXME: instantiate_decl isn't called by inlinable_function_p. */
3839 saved_location = input_location;
3840 input_location = gimple_location (stmt);
3841
3842 /* From here on, we're only interested in CALL_EXPRs. */
3843 if (gimple_code (stmt) != GIMPLE_CALL)
3844 goto egress;
3845
3846 cg_edge = cgraph_edge (id->dst_node, stmt);
3847 gcc_checking_assert (cg_edge);
3848 /* First, see if we can figure out what function is being called.
3849 If we cannot, then there is no hope of inlining the function. */
3850 if (cg_edge->indirect_unknown_callee)
3851 goto egress;
3852 fn = cg_edge->callee->symbol.decl;
3853 gcc_checking_assert (fn);
3854
3855 /* If FN is a declaration of a function in a nested scope that was
3856 globally declared inline, we don't set its DECL_INITIAL.
3857 However, we can't blindly follow DECL_ABSTRACT_ORIGIN because the
3858 C++ front-end uses it for cdtors to refer to their internal
3859 declarations, that are not real functions. Fortunately those
3860 don't have trees to be saved, so we can tell by checking their
3861 gimple_body. */
3862 if (!DECL_INITIAL (fn)
3863 && DECL_ABSTRACT_ORIGIN (fn)
3864 && gimple_has_body_p (DECL_ABSTRACT_ORIGIN (fn)))
3865 fn = DECL_ABSTRACT_ORIGIN (fn);
3866
3867 /* Don't try to inline functions that are not well-suited to inlining. */
3868 if (cg_edge->inline_failed)
3869 {
3870 reason = cg_edge->inline_failed;
3871 /* If this call was originally indirect, we do not want to emit any
3872 inlining related warnings or sorry messages because there are no
3873 guarantees regarding those. */
3874 if (cg_edge->indirect_inlining_edge)
3875 goto egress;
3876
3877 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn))
3878 /* Avoid warnings during early inline pass. */
3879 && cgraph_global_info_ready
3880 /* PR 20090218-1_0.c. Body can be provided by another module. */
3881 && (reason != CIF_BODY_NOT_AVAILABLE || !flag_generate_lto))
3882 {
3883 error ("inlining failed in call to always_inline %q+F: %s", fn,
3884 cgraph_inline_failed_string (reason));
3885 error ("called from here");
3886 }
3887 else if (warn_inline
3888 && DECL_DECLARED_INLINE_P (fn)
3889 && !DECL_NO_INLINE_WARNING_P (fn)
3890 && !DECL_IN_SYSTEM_HEADER (fn)
3891 && reason != CIF_UNSPECIFIED
3892 && !lookup_attribute ("noinline", DECL_ATTRIBUTES (fn))
3893 /* Do not warn about not inlined recursive calls. */
3894 && !cgraph_edge_recursive_p (cg_edge)
3895 /* Avoid warnings during early inline pass. */
3896 && cgraph_global_info_ready)
3897 {
3898 warning (OPT_Winline, "inlining failed in call to %q+F: %s",
3899 fn, _(cgraph_inline_failed_string (reason)));
3900 warning (OPT_Winline, "called from here");
3901 }
3902 goto egress;
3903 }
3904 fn = cg_edge->callee->symbol.decl;
3905
3906 #ifdef ENABLE_CHECKING
3907 if (cg_edge->callee->symbol.decl != id->dst_node->symbol.decl)
3908 verify_cgraph_node (cg_edge->callee);
3909 #endif
3910
3911 /* We will be inlining this callee. */
3912 id->eh_lp_nr = lookup_stmt_eh_lp (stmt);
3913
3914 /* Update the callers EH personality. */
3915 if (DECL_FUNCTION_PERSONALITY (cg_edge->callee->symbol.decl))
3916 DECL_FUNCTION_PERSONALITY (cg_edge->caller->symbol.decl)
3917 = DECL_FUNCTION_PERSONALITY (cg_edge->callee->symbol.decl);
3918
3919 /* Split the block holding the GIMPLE_CALL. */
3920 e = split_block (bb, stmt);
3921 bb = e->src;
3922 return_block = e->dest;
3923 remove_edge (e);
3924
3925 /* split_block splits after the statement; work around this by
3926 moving the call into the second block manually. Not pretty,
3927 but seems easier than doing the CFG manipulation by hand
3928 when the GIMPLE_CALL is in the last statement of BB. */
3929 stmt_gsi = gsi_last_bb (bb);
3930 gsi_remove (&stmt_gsi, false);
3931
3932 /* If the GIMPLE_CALL was in the last statement of BB, it may have
3933 been the source of abnormal edges. In this case, schedule
3934 the removal of dead abnormal edges. */
3935 gsi = gsi_start_bb (return_block);
3936 if (gsi_end_p (gsi))
3937 {
3938 gsi_insert_after (&gsi, stmt, GSI_NEW_STMT);
3939 purge_dead_abnormal_edges = true;
3940 }
3941 else
3942 {
3943 gsi_insert_before (&gsi, stmt, GSI_NEW_STMT);
3944 purge_dead_abnormal_edges = false;
3945 }
3946
3947 stmt_gsi = gsi_start_bb (return_block);
3948
3949 /* Build a block containing code to initialize the arguments, the
3950 actual inline expansion of the body, and a label for the return
3951 statements within the function to jump to. The type of the
3952 statement expression is the return type of the function call. */
3953 id->block = make_node (BLOCK);
3954 BLOCK_ABSTRACT_ORIGIN (id->block) = fn;
3955 BLOCK_SOURCE_LOCATION (id->block) = input_location;
3956 prepend_lexical_block (gimple_block (stmt), id->block);
3957
3958 /* Local declarations will be replaced by their equivalents in this
3959 map. */
3960 st = id->decl_map;
3961 id->decl_map = pointer_map_create ();
3962 dst = id->debug_map;
3963 id->debug_map = NULL;
3964
3965 /* Record the function we are about to inline. */
3966 id->src_fn = fn;
3967 id->src_node = cg_edge->callee;
3968 id->src_cfun = DECL_STRUCT_FUNCTION (fn);
3969 id->gimple_call = stmt;
3970
3971 gcc_assert (!id->src_cfun->after_inlining);
3972
3973 id->entry_bb = bb;
3974 if (lookup_attribute ("cold", DECL_ATTRIBUTES (fn)))
3975 {
3976 gimple_stmt_iterator si = gsi_last_bb (bb);
3977 gsi_insert_after (&si, gimple_build_predict (PRED_COLD_FUNCTION,
3978 NOT_TAKEN),
3979 GSI_NEW_STMT);
3980 }
3981 initialize_inlined_parameters (id, stmt, fn, bb);
3982
3983 if (DECL_INITIAL (fn))
3984 prepend_lexical_block (id->block, remap_blocks (DECL_INITIAL (fn), id));
3985
3986 /* Return statements in the function body will be replaced by jumps
3987 to the RET_LABEL. */
3988 gcc_assert (DECL_INITIAL (fn));
3989 gcc_assert (TREE_CODE (DECL_INITIAL (fn)) == BLOCK);
3990
3991 /* Find the LHS to which the result of this call is assigned. */
3992 return_slot = NULL;
3993 if (gimple_call_lhs (stmt))
3994 {
3995 modify_dest = gimple_call_lhs (stmt);
3996
3997 /* The function which we are inlining might not return a value,
3998 in which case we should issue a warning that the function
3999 does not return a value. In that case the optimizers will
4000 see that the variable to which the value is assigned was not
4001 initialized. We do not want to issue a warning about that
4002 uninitialized variable. */
4003 if (DECL_P (modify_dest))
4004 TREE_NO_WARNING (modify_dest) = 1;
4005
4006 if (gimple_call_return_slot_opt_p (stmt))
4007 {
4008 return_slot = modify_dest;
4009 modify_dest = NULL;
4010 }
4011 }
4012 else
4013 modify_dest = NULL;
4014
4015 /* If we are inlining a call to the C++ operator new, we don't want
4016 to use type based alias analysis on the return value. Otherwise
4017 we may get confused if the compiler sees that the inlined new
4018 function returns a pointer which was just deleted. See bug
4019 33407. */
4020 if (DECL_IS_OPERATOR_NEW (fn))
4021 {
4022 return_slot = NULL;
4023 modify_dest = NULL;
4024 }
4025
4026 /* Declare the return variable for the function. */
4027 use_retvar = declare_return_variable (id, return_slot, modify_dest, bb);
4028
4029 /* Add local vars in this inlined callee to caller. */
4030 add_local_variables (id->src_cfun, cfun, id, true);
4031
4032 if (dump_file && (dump_flags & TDF_DETAILS))
4033 {
4034 fprintf (dump_file, "Inlining ");
4035 print_generic_expr (dump_file, id->src_fn, 0);
4036 fprintf (dump_file, " to ");
4037 print_generic_expr (dump_file, id->dst_fn, 0);
4038 fprintf (dump_file, " with frequency %i\n", cg_edge->frequency);
4039 }
4040
4041 /* This is it. Duplicate the callee body. Assume callee is
4042 pre-gimplified. Note that we must not alter the caller
4043 function in any way before this point, as this CALL_EXPR may be
4044 a self-referential call; if we're calling ourselves, we need to
4045 duplicate our body before altering anything. */
4046 copy_body (id, bb->count,
4047 cg_edge->frequency * REG_BR_PROB_BASE / CGRAPH_FREQ_BASE,
4048 bb, return_block, NULL, NULL);
4049
4050 /* Reset the escaped solution. */
4051 if (cfun->gimple_df)
4052 pt_solution_reset (&cfun->gimple_df->escaped);
4053
4054 /* Clean up. */
4055 if (id->debug_map)
4056 {
4057 pointer_map_destroy (id->debug_map);
4058 id->debug_map = dst;
4059 }
4060 pointer_map_destroy (id->decl_map);
4061 id->decl_map = st;
4062
4063 /* Unlink the calls virtual operands before replacing it. */
4064 unlink_stmt_vdef (stmt);
4065
4066 /* If the inlined function returns a result that we care about,
4067 substitute the GIMPLE_CALL with an assignment of the return
4068 variable to the LHS of the call. That is, if STMT was
4069 'a = foo (...)', substitute the call with 'a = USE_RETVAR'. */
4070 if (use_retvar && gimple_call_lhs (stmt))
4071 {
4072 gimple old_stmt = stmt;
4073 stmt = gimple_build_assign (gimple_call_lhs (stmt), use_retvar);
4074 gsi_replace (&stmt_gsi, stmt, false);
4075 maybe_clean_or_replace_eh_stmt (old_stmt, stmt);
4076 }
4077 else
4078 {
4079 /* Handle the case of inlining a function with no return
4080 statement, which causes the return value to become undefined. */
4081 if (gimple_call_lhs (stmt)
4082 && TREE_CODE (gimple_call_lhs (stmt)) == SSA_NAME)
4083 {
4084 tree name = gimple_call_lhs (stmt);
4085 tree var = SSA_NAME_VAR (name);
4086 tree def = gimple_default_def (cfun, var);
4087
4088 if (def)
4089 {
4090 /* If the variable is used undefined, make this name
4091 undefined via a move. */
4092 stmt = gimple_build_assign (gimple_call_lhs (stmt), def);
4093 gsi_replace (&stmt_gsi, stmt, true);
4094 }
4095 else
4096 {
4097 /* Otherwise make this variable undefined. */
4098 gsi_remove (&stmt_gsi, true);
4099 set_default_def (var, name);
4100 SSA_NAME_DEF_STMT (name) = gimple_build_nop ();
4101 }
4102 }
4103 else
4104 gsi_remove (&stmt_gsi, true);
4105 }
4106
4107 if (purge_dead_abnormal_edges)
4108 {
4109 gimple_purge_dead_eh_edges (return_block);
4110 gimple_purge_dead_abnormal_call_edges (return_block);
4111 }
4112
4113 /* If the value of the new expression is ignored, that's OK. We
4114 don't warn about this for CALL_EXPRs, so we shouldn't warn about
4115 the equivalent inlined version either. */
4116 if (is_gimple_assign (stmt))
4117 {
4118 gcc_assert (gimple_assign_single_p (stmt)
4119 || CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (stmt)));
4120 TREE_USED (gimple_assign_rhs1 (stmt)) = 1;
4121 }
4122
4123 /* Output the inlining info for this abstract function, since it has been
4124 inlined. If we don't do this now, we can lose the information about the
4125 variables in the function when the blocks get blown away as soon as we
4126 remove the cgraph node. */
4127 (*debug_hooks->outlining_inline_function) (cg_edge->callee->symbol.decl);
4128
4129 /* Update callgraph if needed. */
4130 cgraph_remove_node (cg_edge->callee);
4131
4132 id->block = NULL_TREE;
4133 successfully_inlined = TRUE;
4134
4135 egress:
4136 input_location = saved_location;
4137 return successfully_inlined;
4138 }
4139
4140 /* Expand call statements reachable from STMT_P.
4141 We can only have CALL_EXPRs as the "toplevel" tree code or nested
4142 in a MODIFY_EXPR. */
4143
4144 static bool
4145 gimple_expand_calls_inline (basic_block bb, copy_body_data *id)
4146 {
4147 gimple_stmt_iterator gsi;
4148
4149 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4150 {
4151 gimple stmt = gsi_stmt (gsi);
4152
4153 if (is_gimple_call (stmt)
4154 && expand_call_inline (bb, stmt, id))
4155 return true;
4156 }
4157
4158 return false;
4159 }
4160
4161
4162 /* Walk all basic blocks created after FIRST and try to fold every statement
4163 in the STATEMENTS pointer set. */
4164
4165 static void
4166 fold_marked_statements (int first, struct pointer_set_t *statements)
4167 {
4168 for (; first < n_basic_blocks; first++)
4169 if (BASIC_BLOCK (first))
4170 {
4171 gimple_stmt_iterator gsi;
4172
4173 for (gsi = gsi_start_bb (BASIC_BLOCK (first));
4174 !gsi_end_p (gsi);
4175 gsi_next (&gsi))
4176 if (pointer_set_contains (statements, gsi_stmt (gsi)))
4177 {
4178 gimple old_stmt = gsi_stmt (gsi);
4179 tree old_decl = is_gimple_call (old_stmt) ? gimple_call_fndecl (old_stmt) : 0;
4180
4181 if (old_decl && DECL_BUILT_IN (old_decl))
4182 {
4183 /* Folding builtins can create multiple instructions,
4184 we need to look at all of them. */
4185 gimple_stmt_iterator i2 = gsi;
4186 gsi_prev (&i2);
4187 if (fold_stmt (&gsi))
4188 {
4189 gimple new_stmt;
4190 /* If a builtin at the end of a bb folded into nothing,
4191 the following loop won't work. */
4192 if (gsi_end_p (gsi))
4193 {
4194 cgraph_update_edges_for_call_stmt (old_stmt,
4195 old_decl, NULL);
4196 break;
4197 }
4198 if (gsi_end_p (i2))
4199 i2 = gsi_start_bb (BASIC_BLOCK (first));
4200 else
4201 gsi_next (&i2);
4202 while (1)
4203 {
4204 new_stmt = gsi_stmt (i2);
4205 update_stmt (new_stmt);
4206 cgraph_update_edges_for_call_stmt (old_stmt, old_decl,
4207 new_stmt);
4208
4209 if (new_stmt == gsi_stmt (gsi))
4210 {
4211 /* It is okay to check only for the very last
4212 of these statements. If it is a throwing
4213 statement nothing will change. If it isn't
4214 this can remove EH edges. If that weren't
4215 correct then because some intermediate stmts
4216 throw, but not the last one. That would mean
4217 we'd have to split the block, which we can't
4218 here and we'd loose anyway. And as builtins
4219 probably never throw, this all
4220 is mood anyway. */
4221 if (maybe_clean_or_replace_eh_stmt (old_stmt,
4222 new_stmt))
4223 gimple_purge_dead_eh_edges (BASIC_BLOCK (first));
4224 break;
4225 }
4226 gsi_next (&i2);
4227 }
4228 }
4229 }
4230 else if (fold_stmt (&gsi))
4231 {
4232 /* Re-read the statement from GSI as fold_stmt() may
4233 have changed it. */
4234 gimple new_stmt = gsi_stmt (gsi);
4235 update_stmt (new_stmt);
4236
4237 if (is_gimple_call (old_stmt)
4238 || is_gimple_call (new_stmt))
4239 cgraph_update_edges_for_call_stmt (old_stmt, old_decl,
4240 new_stmt);
4241
4242 if (maybe_clean_or_replace_eh_stmt (old_stmt, new_stmt))
4243 gimple_purge_dead_eh_edges (BASIC_BLOCK (first));
4244 }
4245 }
4246 }
4247 }
4248
4249 /* Return true if BB has at least one abnormal outgoing edge. */
4250
4251 static inline bool
4252 has_abnormal_outgoing_edge_p (basic_block bb)
4253 {
4254 edge e;
4255 edge_iterator ei;
4256
4257 FOR_EACH_EDGE (e, ei, bb->succs)
4258 if (e->flags & EDGE_ABNORMAL)
4259 return true;
4260
4261 return false;
4262 }
4263
4264 /* Expand calls to inline functions in the body of FN. */
4265
4266 unsigned int
4267 optimize_inline_calls (tree fn)
4268 {
4269 copy_body_data id;
4270 basic_block bb;
4271 int last = n_basic_blocks;
4272 struct gimplify_ctx gctx;
4273 bool inlined_p = false;
4274
4275 /* Clear out ID. */
4276 memset (&id, 0, sizeof (id));
4277
4278 id.src_node = id.dst_node = cgraph_get_node (fn);
4279 gcc_assert (id.dst_node->analyzed);
4280 id.dst_fn = fn;
4281 /* Or any functions that aren't finished yet. */
4282 if (current_function_decl)
4283 id.dst_fn = current_function_decl;
4284
4285 id.copy_decl = copy_decl_maybe_to_var;
4286 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
4287 id.transform_new_cfg = false;
4288 id.transform_return_to_modify = true;
4289 id.transform_lang_insert_block = NULL;
4290 id.statements_to_fold = pointer_set_create ();
4291
4292 push_gimplify_context (&gctx);
4293
4294 /* We make no attempts to keep dominance info up-to-date. */
4295 free_dominance_info (CDI_DOMINATORS);
4296 free_dominance_info (CDI_POST_DOMINATORS);
4297
4298 /* Register specific gimple functions. */
4299 gimple_register_cfg_hooks ();
4300
4301 /* Reach the trees by walking over the CFG, and note the
4302 enclosing basic-blocks in the call edges. */
4303 /* We walk the blocks going forward, because inlined function bodies
4304 will split id->current_basic_block, and the new blocks will
4305 follow it; we'll trudge through them, processing their CALL_EXPRs
4306 along the way. */
4307 FOR_EACH_BB (bb)
4308 inlined_p |= gimple_expand_calls_inline (bb, &id);
4309
4310 pop_gimplify_context (NULL);
4311
4312 #ifdef ENABLE_CHECKING
4313 {
4314 struct cgraph_edge *e;
4315
4316 verify_cgraph_node (id.dst_node);
4317
4318 /* Double check that we inlined everything we are supposed to inline. */
4319 for (e = id.dst_node->callees; e; e = e->next_callee)
4320 gcc_assert (e->inline_failed);
4321 }
4322 #endif
4323
4324 /* Fold queued statements. */
4325 fold_marked_statements (last, id.statements_to_fold);
4326 pointer_set_destroy (id.statements_to_fold);
4327
4328 gcc_assert (!id.debug_stmts);
4329
4330 /* If we didn't inline into the function there is nothing to do. */
4331 if (!inlined_p)
4332 return 0;
4333
4334 /* Renumber the lexical scoping (non-code) blocks consecutively. */
4335 number_blocks (fn);
4336
4337 delete_unreachable_blocks_update_callgraph (&id);
4338 #ifdef ENABLE_CHECKING
4339 verify_cgraph_node (id.dst_node);
4340 #endif
4341
4342 /* It would be nice to check SSA/CFG/statement consistency here, but it is
4343 not possible yet - the IPA passes might make various functions to not
4344 throw and they don't care to proactively update local EH info. This is
4345 done later in fixup_cfg pass that also execute the verification. */
4346 return (TODO_update_ssa
4347 | TODO_cleanup_cfg
4348 | (gimple_in_ssa_p (cfun) ? TODO_remove_unused_locals : 0)
4349 | (gimple_in_ssa_p (cfun) ? TODO_update_address_taken : 0)
4350 | (profile_status != PROFILE_ABSENT ? TODO_rebuild_frequencies : 0));
4351 }
4352
4353 /* Passed to walk_tree. Copies the node pointed to, if appropriate. */
4354
4355 tree
4356 copy_tree_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
4357 {
4358 enum tree_code code = TREE_CODE (*tp);
4359 enum tree_code_class cl = TREE_CODE_CLASS (code);
4360
4361 /* We make copies of most nodes. */
4362 if (IS_EXPR_CODE_CLASS (cl)
4363 || code == TREE_LIST
4364 || code == TREE_VEC
4365 || code == TYPE_DECL
4366 || code == OMP_CLAUSE)
4367 {
4368 /* Because the chain gets clobbered when we make a copy, we save it
4369 here. */
4370 tree chain = NULL_TREE, new_tree;
4371
4372 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
4373 chain = TREE_CHAIN (*tp);
4374
4375 /* Copy the node. */
4376 new_tree = copy_node (*tp);
4377
4378 /* Propagate mudflap marked-ness. */
4379 if (flag_mudflap && mf_marked_p (*tp))
4380 mf_mark (new_tree);
4381
4382 *tp = new_tree;
4383
4384 /* Now, restore the chain, if appropriate. That will cause
4385 walk_tree to walk into the chain as well. */
4386 if (code == PARM_DECL
4387 || code == TREE_LIST
4388 || code == OMP_CLAUSE)
4389 TREE_CHAIN (*tp) = chain;
4390
4391 /* For now, we don't update BLOCKs when we make copies. So, we
4392 have to nullify all BIND_EXPRs. */
4393 if (TREE_CODE (*tp) == BIND_EXPR)
4394 BIND_EXPR_BLOCK (*tp) = NULL_TREE;
4395 }
4396 else if (code == CONSTRUCTOR)
4397 {
4398 /* CONSTRUCTOR nodes need special handling because
4399 we need to duplicate the vector of elements. */
4400 tree new_tree;
4401
4402 new_tree = copy_node (*tp);
4403
4404 /* Propagate mudflap marked-ness. */
4405 if (flag_mudflap && mf_marked_p (*tp))
4406 mf_mark (new_tree);
4407
4408 CONSTRUCTOR_ELTS (new_tree) = VEC_copy (constructor_elt, gc,
4409 CONSTRUCTOR_ELTS (*tp));
4410 *tp = new_tree;
4411 }
4412 else if (code == STATEMENT_LIST)
4413 /* We used to just abort on STATEMENT_LIST, but we can run into them
4414 with statement-expressions (c++/40975). */
4415 copy_statement_list (tp);
4416 else if (TREE_CODE_CLASS (code) == tcc_type)
4417 *walk_subtrees = 0;
4418 else if (TREE_CODE_CLASS (code) == tcc_declaration)
4419 *walk_subtrees = 0;
4420 else if (TREE_CODE_CLASS (code) == tcc_constant)
4421 *walk_subtrees = 0;
4422 return NULL_TREE;
4423 }
4424
4425 /* The SAVE_EXPR pointed to by TP is being copied. If ST contains
4426 information indicating to what new SAVE_EXPR this one should be mapped,
4427 use that one. Otherwise, create a new node and enter it in ST. FN is
4428 the function into which the copy will be placed. */
4429
4430 static void
4431 remap_save_expr (tree *tp, void *st_, int *walk_subtrees)
4432 {
4433 struct pointer_map_t *st = (struct pointer_map_t *) st_;
4434 tree *n;
4435 tree t;
4436
4437 /* See if we already encountered this SAVE_EXPR. */
4438 n = (tree *) pointer_map_contains (st, *tp);
4439
4440 /* If we didn't already remap this SAVE_EXPR, do so now. */
4441 if (!n)
4442 {
4443 t = copy_node (*tp);
4444
4445 /* Remember this SAVE_EXPR. */
4446 *pointer_map_insert (st, *tp) = t;
4447 /* Make sure we don't remap an already-remapped SAVE_EXPR. */
4448 *pointer_map_insert (st, t) = t;
4449 }
4450 else
4451 {
4452 /* We've already walked into this SAVE_EXPR; don't do it again. */
4453 *walk_subtrees = 0;
4454 t = *n;
4455 }
4456
4457 /* Replace this SAVE_EXPR with the copy. */
4458 *tp = t;
4459 }
4460
4461 /* Called via walk_tree. If *TP points to a DECL_STMT for a local label,
4462 copies the declaration and enters it in the splay_tree in DATA (which is
4463 really an `copy_body_data *'). */
4464
4465 static tree
4466 mark_local_for_remap_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
4467 void *data)
4468 {
4469 copy_body_data *id = (copy_body_data *) data;
4470
4471 /* Don't walk into types. */
4472 if (TYPE_P (*tp))
4473 *walk_subtrees = 0;
4474
4475 else if (TREE_CODE (*tp) == LABEL_EXPR)
4476 {
4477 tree decl = TREE_OPERAND (*tp, 0);
4478
4479 /* Copy the decl and remember the copy. */
4480 insert_decl_map (id, decl, id->copy_decl (decl, id));
4481 }
4482
4483 return NULL_TREE;
4484 }
4485
4486 /* Perform any modifications to EXPR required when it is unsaved. Does
4487 not recurse into EXPR's subtrees. */
4488
4489 static void
4490 unsave_expr_1 (tree expr)
4491 {
4492 switch (TREE_CODE (expr))
4493 {
4494 case TARGET_EXPR:
4495 /* Don't mess with a TARGET_EXPR that hasn't been expanded.
4496 It's OK for this to happen if it was part of a subtree that
4497 isn't immediately expanded, such as operand 2 of another
4498 TARGET_EXPR. */
4499 if (TREE_OPERAND (expr, 1))
4500 break;
4501
4502 TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 3);
4503 TREE_OPERAND (expr, 3) = NULL_TREE;
4504 break;
4505
4506 default:
4507 break;
4508 }
4509 }
4510
4511 /* Called via walk_tree when an expression is unsaved. Using the
4512 splay_tree pointed to by ST (which is really a `splay_tree'),
4513 remaps all local declarations to appropriate replacements. */
4514
4515 static tree
4516 unsave_r (tree *tp, int *walk_subtrees, void *data)
4517 {
4518 copy_body_data *id = (copy_body_data *) data;
4519 struct pointer_map_t *st = id->decl_map;
4520 tree *n;
4521
4522 /* Only a local declaration (variable or label). */
4523 if ((TREE_CODE (*tp) == VAR_DECL && !TREE_STATIC (*tp))
4524 || TREE_CODE (*tp) == LABEL_DECL)
4525 {
4526 /* Lookup the declaration. */
4527 n = (tree *) pointer_map_contains (st, *tp);
4528
4529 /* If it's there, remap it. */
4530 if (n)
4531 *tp = *n;
4532 }
4533
4534 else if (TREE_CODE (*tp) == STATEMENT_LIST)
4535 gcc_unreachable ();
4536 else if (TREE_CODE (*tp) == BIND_EXPR)
4537 copy_bind_expr (tp, walk_subtrees, id);
4538 else if (TREE_CODE (*tp) == SAVE_EXPR
4539 || TREE_CODE (*tp) == TARGET_EXPR)
4540 remap_save_expr (tp, st, walk_subtrees);
4541 else
4542 {
4543 copy_tree_r (tp, walk_subtrees, NULL);
4544
4545 /* Do whatever unsaving is required. */
4546 unsave_expr_1 (*tp);
4547 }
4548
4549 /* Keep iterating. */
4550 return NULL_TREE;
4551 }
4552
4553 /* Copies everything in EXPR and replaces variables, labels
4554 and SAVE_EXPRs local to EXPR. */
4555
4556 tree
4557 unsave_expr_now (tree expr)
4558 {
4559 copy_body_data id;
4560
4561 /* There's nothing to do for NULL_TREE. */
4562 if (expr == 0)
4563 return expr;
4564
4565 /* Set up ID. */
4566 memset (&id, 0, sizeof (id));
4567 id.src_fn = current_function_decl;
4568 id.dst_fn = current_function_decl;
4569 id.decl_map = pointer_map_create ();
4570 id.debug_map = NULL;
4571
4572 id.copy_decl = copy_decl_no_change;
4573 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
4574 id.transform_new_cfg = false;
4575 id.transform_return_to_modify = false;
4576 id.transform_lang_insert_block = NULL;
4577
4578 /* Walk the tree once to find local labels. */
4579 walk_tree_without_duplicates (&expr, mark_local_for_remap_r, &id);
4580
4581 /* Walk the tree again, copying, remapping, and unsaving. */
4582 walk_tree (&expr, unsave_r, &id, NULL);
4583
4584 /* Clean up. */
4585 pointer_map_destroy (id.decl_map);
4586 if (id.debug_map)
4587 pointer_map_destroy (id.debug_map);
4588
4589 return expr;
4590 }
4591
4592 /* Called via walk_gimple_seq. If *GSIP points to a GIMPLE_LABEL for a local
4593 label, copies the declaration and enters it in the splay_tree in DATA (which
4594 is really a 'copy_body_data *'. */
4595
4596 static tree
4597 mark_local_labels_stmt (gimple_stmt_iterator *gsip,
4598 bool *handled_ops_p ATTRIBUTE_UNUSED,
4599 struct walk_stmt_info *wi)
4600 {
4601 copy_body_data *id = (copy_body_data *) wi->info;
4602 gimple stmt = gsi_stmt (*gsip);
4603
4604 if (gimple_code (stmt) == GIMPLE_LABEL)
4605 {
4606 tree decl = gimple_label_label (stmt);
4607
4608 /* Copy the decl and remember the copy. */
4609 insert_decl_map (id, decl, id->copy_decl (decl, id));
4610 }
4611
4612 return NULL_TREE;
4613 }
4614
4615
4616 /* Called via walk_gimple_seq by copy_gimple_seq_and_replace_local.
4617 Using the splay_tree pointed to by ST (which is really a `splay_tree'),
4618 remaps all local declarations to appropriate replacements in gimple
4619 operands. */
4620
4621 static tree
4622 replace_locals_op (tree *tp, int *walk_subtrees, void *data)
4623 {
4624 struct walk_stmt_info *wi = (struct walk_stmt_info*) data;
4625 copy_body_data *id = (copy_body_data *) wi->info;
4626 struct pointer_map_t *st = id->decl_map;
4627 tree *n;
4628 tree expr = *tp;
4629
4630 /* Only a local declaration (variable or label). */
4631 if ((TREE_CODE (expr) == VAR_DECL
4632 && !TREE_STATIC (expr))
4633 || TREE_CODE (expr) == LABEL_DECL)
4634 {
4635 /* Lookup the declaration. */
4636 n = (tree *) pointer_map_contains (st, expr);
4637
4638 /* If it's there, remap it. */
4639 if (n)
4640 *tp = *n;
4641 *walk_subtrees = 0;
4642 }
4643 else if (TREE_CODE (expr) == STATEMENT_LIST
4644 || TREE_CODE (expr) == BIND_EXPR
4645 || TREE_CODE (expr) == SAVE_EXPR)
4646 gcc_unreachable ();
4647 else if (TREE_CODE (expr) == TARGET_EXPR)
4648 {
4649 /* Don't mess with a TARGET_EXPR that hasn't been expanded.
4650 It's OK for this to happen if it was part of a subtree that
4651 isn't immediately expanded, such as operand 2 of another
4652 TARGET_EXPR. */
4653 if (!TREE_OPERAND (expr, 1))
4654 {
4655 TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 3);
4656 TREE_OPERAND (expr, 3) = NULL_TREE;
4657 }
4658 }
4659
4660 /* Keep iterating. */
4661 return NULL_TREE;
4662 }
4663
4664
4665 /* Called via walk_gimple_seq by copy_gimple_seq_and_replace_local.
4666 Using the splay_tree pointed to by ST (which is really a `splay_tree'),
4667 remaps all local declarations to appropriate replacements in gimple
4668 statements. */
4669
4670 static tree
4671 replace_locals_stmt (gimple_stmt_iterator *gsip,
4672 bool *handled_ops_p ATTRIBUTE_UNUSED,
4673 struct walk_stmt_info *wi)
4674 {
4675 copy_body_data *id = (copy_body_data *) wi->info;
4676 gimple stmt = gsi_stmt (*gsip);
4677
4678 if (gimple_code (stmt) == GIMPLE_BIND)
4679 {
4680 tree block = gimple_bind_block (stmt);
4681
4682 if (block)
4683 {
4684 remap_block (&block, id);
4685 gimple_bind_set_block (stmt, block);
4686 }
4687
4688 /* This will remap a lot of the same decls again, but this should be
4689 harmless. */
4690 if (gimple_bind_vars (stmt))
4691 gimple_bind_set_vars (stmt, remap_decls (gimple_bind_vars (stmt), NULL, id));
4692 }
4693
4694 /* Keep iterating. */
4695 return NULL_TREE;
4696 }
4697
4698
4699 /* Copies everything in SEQ and replaces variables and labels local to
4700 current_function_decl. */
4701
4702 gimple_seq
4703 copy_gimple_seq_and_replace_locals (gimple_seq seq)
4704 {
4705 copy_body_data id;
4706 struct walk_stmt_info wi;
4707 struct pointer_set_t *visited;
4708 gimple_seq copy;
4709
4710 /* There's nothing to do for NULL_TREE. */
4711 if (seq == NULL)
4712 return seq;
4713
4714 /* Set up ID. */
4715 memset (&id, 0, sizeof (id));
4716 id.src_fn = current_function_decl;
4717 id.dst_fn = current_function_decl;
4718 id.decl_map = pointer_map_create ();
4719 id.debug_map = NULL;
4720
4721 id.copy_decl = copy_decl_no_change;
4722 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
4723 id.transform_new_cfg = false;
4724 id.transform_return_to_modify = false;
4725 id.transform_lang_insert_block = NULL;
4726
4727 /* Walk the tree once to find local labels. */
4728 memset (&wi, 0, sizeof (wi));
4729 visited = pointer_set_create ();
4730 wi.info = &id;
4731 wi.pset = visited;
4732 walk_gimple_seq (seq, mark_local_labels_stmt, NULL, &wi);
4733 pointer_set_destroy (visited);
4734
4735 copy = gimple_seq_copy (seq);
4736
4737 /* Walk the copy, remapping decls. */
4738 memset (&wi, 0, sizeof (wi));
4739 wi.info = &id;
4740 walk_gimple_seq (copy, replace_locals_stmt, replace_locals_op, &wi);
4741
4742 /* Clean up. */
4743 pointer_map_destroy (id.decl_map);
4744 if (id.debug_map)
4745 pointer_map_destroy (id.debug_map);
4746
4747 return copy;
4748 }
4749
4750
4751 /* Allow someone to determine if SEARCH is a child of TOP from gdb. */
4752
4753 static tree
4754 debug_find_tree_1 (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED, void *data)
4755 {
4756 if (*tp == data)
4757 return (tree) data;
4758 else
4759 return NULL;
4760 }
4761
4762 DEBUG_FUNCTION bool
4763 debug_find_tree (tree top, tree search)
4764 {
4765 return walk_tree_without_duplicates (&top, debug_find_tree_1, search) != 0;
4766 }
4767
4768
4769 /* Declare the variables created by the inliner. Add all the variables in
4770 VARS to BIND_EXPR. */
4771
4772 static void
4773 declare_inline_vars (tree block, tree vars)
4774 {
4775 tree t;
4776 for (t = vars; t; t = DECL_CHAIN (t))
4777 {
4778 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
4779 gcc_assert (!TREE_STATIC (t) && !TREE_ASM_WRITTEN (t));
4780 add_local_decl (cfun, t);
4781 }
4782
4783 if (block)
4784 BLOCK_VARS (block) = chainon (BLOCK_VARS (block), vars);
4785 }
4786
4787 /* Copy NODE (which must be a DECL). The DECL originally was in the FROM_FN,
4788 but now it will be in the TO_FN. PARM_TO_VAR means enable PARM_DECL to
4789 VAR_DECL translation. */
4790
4791 static tree
4792 copy_decl_for_dup_finish (copy_body_data *id, tree decl, tree copy)
4793 {
4794 /* Don't generate debug information for the copy if we wouldn't have
4795 generated it for the copy either. */
4796 DECL_ARTIFICIAL (copy) = DECL_ARTIFICIAL (decl);
4797 DECL_IGNORED_P (copy) = DECL_IGNORED_P (decl);
4798
4799 /* Set the DECL_ABSTRACT_ORIGIN so the debugging routines know what
4800 declaration inspired this copy. */
4801 DECL_ABSTRACT_ORIGIN (copy) = DECL_ORIGIN (decl);
4802
4803 /* The new variable/label has no RTL, yet. */
4804 if (CODE_CONTAINS_STRUCT (TREE_CODE (copy), TS_DECL_WRTL)
4805 && !TREE_STATIC (copy) && !DECL_EXTERNAL (copy))
4806 SET_DECL_RTL (copy, 0);
4807
4808 /* These args would always appear unused, if not for this. */
4809 TREE_USED (copy) = 1;
4810
4811 /* Set the context for the new declaration. */
4812 if (!DECL_CONTEXT (decl))
4813 /* Globals stay global. */
4814 ;
4815 else if (DECL_CONTEXT (decl) != id->src_fn)
4816 /* Things that weren't in the scope of the function we're inlining
4817 from aren't in the scope we're inlining to, either. */
4818 ;
4819 else if (TREE_STATIC (decl))
4820 /* Function-scoped static variables should stay in the original
4821 function. */
4822 ;
4823 else
4824 /* Ordinary automatic local variables are now in the scope of the
4825 new function. */
4826 DECL_CONTEXT (copy) = id->dst_fn;
4827
4828 if (TREE_CODE (decl) == VAR_DECL
4829 /* C++ clones functions during parsing, before
4830 referenced_vars. */
4831 && gimple_referenced_vars (DECL_STRUCT_FUNCTION (id->src_fn))
4832 && referenced_var_lookup (DECL_STRUCT_FUNCTION (id->src_fn),
4833 DECL_UID (decl)))
4834 add_referenced_var (copy);
4835
4836 return copy;
4837 }
4838
4839 static tree
4840 copy_decl_to_var (tree decl, copy_body_data *id)
4841 {
4842 tree copy, type;
4843
4844 gcc_assert (TREE_CODE (decl) == PARM_DECL
4845 || TREE_CODE (decl) == RESULT_DECL);
4846
4847 type = TREE_TYPE (decl);
4848
4849 copy = build_decl (DECL_SOURCE_LOCATION (id->dst_fn),
4850 VAR_DECL, DECL_NAME (decl), type);
4851 if (DECL_PT_UID_SET_P (decl))
4852 SET_DECL_PT_UID (copy, DECL_PT_UID (decl));
4853 TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (decl);
4854 TREE_READONLY (copy) = TREE_READONLY (decl);
4855 TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (decl);
4856 DECL_GIMPLE_REG_P (copy) = DECL_GIMPLE_REG_P (decl);
4857
4858 return copy_decl_for_dup_finish (id, decl, copy);
4859 }
4860
4861 /* Like copy_decl_to_var, but create a return slot object instead of a
4862 pointer variable for return by invisible reference. */
4863
4864 static tree
4865 copy_result_decl_to_var (tree decl, copy_body_data *id)
4866 {
4867 tree copy, type;
4868
4869 gcc_assert (TREE_CODE (decl) == PARM_DECL
4870 || TREE_CODE (decl) == RESULT_DECL);
4871
4872 type = TREE_TYPE (decl);
4873 if (DECL_BY_REFERENCE (decl))
4874 type = TREE_TYPE (type);
4875
4876 copy = build_decl (DECL_SOURCE_LOCATION (id->dst_fn),
4877 VAR_DECL, DECL_NAME (decl), type);
4878 if (DECL_PT_UID_SET_P (decl))
4879 SET_DECL_PT_UID (copy, DECL_PT_UID (decl));
4880 TREE_READONLY (copy) = TREE_READONLY (decl);
4881 TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (decl);
4882 if (!DECL_BY_REFERENCE (decl))
4883 {
4884 TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (decl);
4885 DECL_GIMPLE_REG_P (copy) = DECL_GIMPLE_REG_P (decl);
4886 }
4887
4888 return copy_decl_for_dup_finish (id, decl, copy);
4889 }
4890
4891 tree
4892 copy_decl_no_change (tree decl, copy_body_data *id)
4893 {
4894 tree copy;
4895
4896 copy = copy_node (decl);
4897
4898 /* The COPY is not abstract; it will be generated in DST_FN. */
4899 DECL_ABSTRACT (copy) = 0;
4900 lang_hooks.dup_lang_specific_decl (copy);
4901
4902 /* TREE_ADDRESSABLE isn't used to indicate that a label's address has
4903 been taken; it's for internal bookkeeping in expand_goto_internal. */
4904 if (TREE_CODE (copy) == LABEL_DECL)
4905 {
4906 TREE_ADDRESSABLE (copy) = 0;
4907 LABEL_DECL_UID (copy) = -1;
4908 }
4909
4910 return copy_decl_for_dup_finish (id, decl, copy);
4911 }
4912
4913 static tree
4914 copy_decl_maybe_to_var (tree decl, copy_body_data *id)
4915 {
4916 if (TREE_CODE (decl) == PARM_DECL || TREE_CODE (decl) == RESULT_DECL)
4917 return copy_decl_to_var (decl, id);
4918 else
4919 return copy_decl_no_change (decl, id);
4920 }
4921
4922 /* Return a copy of the function's argument tree. */
4923 static tree
4924 copy_arguments_for_versioning (tree orig_parm, copy_body_data * id,
4925 bitmap args_to_skip, tree *vars)
4926 {
4927 tree arg, *parg;
4928 tree new_parm = NULL;
4929 int i = 0;
4930
4931 parg = &new_parm;
4932
4933 for (arg = orig_parm; arg; arg = DECL_CHAIN (arg), i++)
4934 if (!args_to_skip || !bitmap_bit_p (args_to_skip, i))
4935 {
4936 tree new_tree = remap_decl (arg, id);
4937 if (TREE_CODE (new_tree) != PARM_DECL)
4938 new_tree = id->copy_decl (arg, id);
4939 lang_hooks.dup_lang_specific_decl (new_tree);
4940 *parg = new_tree;
4941 parg = &DECL_CHAIN (new_tree);
4942 }
4943 else if (!pointer_map_contains (id->decl_map, arg))
4944 {
4945 /* Make an equivalent VAR_DECL. If the argument was used
4946 as temporary variable later in function, the uses will be
4947 replaced by local variable. */
4948 tree var = copy_decl_to_var (arg, id);
4949 add_referenced_var (var);
4950 insert_decl_map (id, arg, var);
4951 /* Declare this new variable. */
4952 DECL_CHAIN (var) = *vars;
4953 *vars = var;
4954 }
4955 return new_parm;
4956 }
4957
4958 /* Return a copy of the function's static chain. */
4959 static tree
4960 copy_static_chain (tree static_chain, copy_body_data * id)
4961 {
4962 tree *chain_copy, *pvar;
4963
4964 chain_copy = &static_chain;
4965 for (pvar = chain_copy; *pvar; pvar = &DECL_CHAIN (*pvar))
4966 {
4967 tree new_tree = remap_decl (*pvar, id);
4968 lang_hooks.dup_lang_specific_decl (new_tree);
4969 DECL_CHAIN (new_tree) = DECL_CHAIN (*pvar);
4970 *pvar = new_tree;
4971 }
4972 return static_chain;
4973 }
4974
4975 /* Return true if the function is allowed to be versioned.
4976 This is a guard for the versioning functionality. */
4977
4978 bool
4979 tree_versionable_function_p (tree fndecl)
4980 {
4981 return (!lookup_attribute ("noclone", DECL_ATTRIBUTES (fndecl))
4982 && copy_forbidden (DECL_STRUCT_FUNCTION (fndecl), fndecl) == NULL);
4983 }
4984
4985 /* Delete all unreachable basic blocks and update callgraph.
4986 Doing so is somewhat nontrivial because we need to update all clones and
4987 remove inline function that become unreachable. */
4988
4989 static bool
4990 delete_unreachable_blocks_update_callgraph (copy_body_data *id)
4991 {
4992 bool changed = false;
4993 basic_block b, next_bb;
4994
4995 find_unreachable_blocks ();
4996
4997 /* Delete all unreachable basic blocks. */
4998
4999 for (b = ENTRY_BLOCK_PTR->next_bb; b != EXIT_BLOCK_PTR; b = next_bb)
5000 {
5001 next_bb = b->next_bb;
5002
5003 if (!(b->flags & BB_REACHABLE))
5004 {
5005 gimple_stmt_iterator bsi;
5006
5007 for (bsi = gsi_start_bb (b); !gsi_end_p (bsi); gsi_next (&bsi))
5008 if (gimple_code (gsi_stmt (bsi)) == GIMPLE_CALL)
5009 {
5010 struct cgraph_edge *e;
5011 struct cgraph_node *node;
5012
5013 if ((e = cgraph_edge (id->dst_node, gsi_stmt (bsi))) != NULL)
5014 {
5015 if (!e->inline_failed)
5016 cgraph_remove_node_and_inline_clones (e->callee, id->dst_node);
5017 else
5018 cgraph_remove_edge (e);
5019 }
5020 if (id->transform_call_graph_edges == CB_CGE_MOVE_CLONES
5021 && id->dst_node->clones)
5022 for (node = id->dst_node->clones; node != id->dst_node;)
5023 {
5024 if ((e = cgraph_edge (node, gsi_stmt (bsi))) != NULL)
5025 {
5026 if (!e->inline_failed)
5027 cgraph_remove_node_and_inline_clones (e->callee, id->dst_node);
5028 else
5029 cgraph_remove_edge (e);
5030 }
5031
5032 if (node->clones)
5033 node = node->clones;
5034 else if (node->next_sibling_clone)
5035 node = node->next_sibling_clone;
5036 else
5037 {
5038 while (node != id->dst_node && !node->next_sibling_clone)
5039 node = node->clone_of;
5040 if (node != id->dst_node)
5041 node = node->next_sibling_clone;
5042 }
5043 }
5044 }
5045 delete_basic_block (b);
5046 changed = true;
5047 }
5048 }
5049
5050 return changed;
5051 }
5052
5053 /* Update clone info after duplication. */
5054
5055 static void
5056 update_clone_info (copy_body_data * id)
5057 {
5058 struct cgraph_node *node;
5059 if (!id->dst_node->clones)
5060 return;
5061 for (node = id->dst_node->clones; node != id->dst_node;)
5062 {
5063 /* First update replace maps to match the new body. */
5064 if (node->clone.tree_map)
5065 {
5066 unsigned int i;
5067 for (i = 0; i < VEC_length (ipa_replace_map_p, node->clone.tree_map); i++)
5068 {
5069 struct ipa_replace_map *replace_info;
5070 replace_info = VEC_index (ipa_replace_map_p, node->clone.tree_map, i);
5071 walk_tree (&replace_info->old_tree, copy_tree_body_r, id, NULL);
5072 walk_tree (&replace_info->new_tree, copy_tree_body_r, id, NULL);
5073 }
5074 }
5075 if (node->clones)
5076 node = node->clones;
5077 else if (node->next_sibling_clone)
5078 node = node->next_sibling_clone;
5079 else
5080 {
5081 while (node != id->dst_node && !node->next_sibling_clone)
5082 node = node->clone_of;
5083 if (node != id->dst_node)
5084 node = node->next_sibling_clone;
5085 }
5086 }
5087 }
5088
5089 /* Create a copy of a function's tree.
5090 OLD_DECL and NEW_DECL are FUNCTION_DECL tree nodes
5091 of the original function and the new copied function
5092 respectively. In case we want to replace a DECL
5093 tree with another tree while duplicating the function's
5094 body, TREE_MAP represents the mapping between these
5095 trees. If UPDATE_CLONES is set, the call_stmt fields
5096 of edges of clones of the function will be updated.
5097
5098 If non-NULL ARGS_TO_SKIP determine function parameters to remove
5099 from new version.
5100 If SKIP_RETURN is true, the new version will return void.
5101 If non-NULL BLOCK_TO_COPY determine what basic blocks to copy.
5102 If non_NULL NEW_ENTRY determine new entry BB of the clone.
5103 */
5104 void
5105 tree_function_versioning (tree old_decl, tree new_decl,
5106 VEC(ipa_replace_map_p,gc)* tree_map,
5107 bool update_clones, bitmap args_to_skip,
5108 bool skip_return, bitmap blocks_to_copy,
5109 basic_block new_entry)
5110 {
5111 struct cgraph_node *old_version_node;
5112 struct cgraph_node *new_version_node;
5113 copy_body_data id;
5114 tree p;
5115 unsigned i;
5116 struct ipa_replace_map *replace_info;
5117 basic_block old_entry_block, bb;
5118 VEC (gimple, heap) *init_stmts = VEC_alloc (gimple, heap, 10);
5119
5120 tree old_current_function_decl = current_function_decl;
5121 tree vars = NULL_TREE;
5122
5123 gcc_assert (TREE_CODE (old_decl) == FUNCTION_DECL
5124 && TREE_CODE (new_decl) == FUNCTION_DECL);
5125 DECL_POSSIBLY_INLINED (old_decl) = 1;
5126
5127 old_version_node = cgraph_get_node (old_decl);
5128 gcc_checking_assert (old_version_node);
5129 new_version_node = cgraph_get_node (new_decl);
5130 gcc_checking_assert (new_version_node);
5131
5132 /* Copy over debug args. */
5133 if (DECL_HAS_DEBUG_ARGS_P (old_decl))
5134 {
5135 VEC(tree, gc) **new_debug_args, **old_debug_args;
5136 gcc_checking_assert (decl_debug_args_lookup (new_decl) == NULL);
5137 DECL_HAS_DEBUG_ARGS_P (new_decl) = 0;
5138 old_debug_args = decl_debug_args_lookup (old_decl);
5139 if (old_debug_args)
5140 {
5141 new_debug_args = decl_debug_args_insert (new_decl);
5142 *new_debug_args = VEC_copy (tree, gc, *old_debug_args);
5143 }
5144 }
5145
5146 /* Output the inlining info for this abstract function, since it has been
5147 inlined. If we don't do this now, we can lose the information about the
5148 variables in the function when the blocks get blown away as soon as we
5149 remove the cgraph node. */
5150 (*debug_hooks->outlining_inline_function) (old_decl);
5151
5152 DECL_ARTIFICIAL (new_decl) = 1;
5153 DECL_ABSTRACT_ORIGIN (new_decl) = DECL_ORIGIN (old_decl);
5154 DECL_FUNCTION_PERSONALITY (new_decl) = DECL_FUNCTION_PERSONALITY (old_decl);
5155
5156 /* Prepare the data structures for the tree copy. */
5157 memset (&id, 0, sizeof (id));
5158
5159 /* Generate a new name for the new version. */
5160 id.statements_to_fold = pointer_set_create ();
5161
5162 id.decl_map = pointer_map_create ();
5163 id.debug_map = NULL;
5164 id.src_fn = old_decl;
5165 id.dst_fn = new_decl;
5166 id.src_node = old_version_node;
5167 id.dst_node = new_version_node;
5168 id.src_cfun = DECL_STRUCT_FUNCTION (old_decl);
5169 if (id.src_node->ipa_transforms_to_apply)
5170 {
5171 VEC(ipa_opt_pass,heap) * old_transforms_to_apply = id.dst_node->ipa_transforms_to_apply;
5172 unsigned int i;
5173
5174 id.dst_node->ipa_transforms_to_apply = VEC_copy (ipa_opt_pass, heap,
5175 id.src_node->ipa_transforms_to_apply);
5176 for (i = 0; i < VEC_length (ipa_opt_pass, old_transforms_to_apply); i++)
5177 VEC_safe_push (ipa_opt_pass, heap, id.dst_node->ipa_transforms_to_apply,
5178 VEC_index (ipa_opt_pass,
5179 old_transforms_to_apply,
5180 i));
5181 }
5182
5183 id.copy_decl = copy_decl_no_change;
5184 id.transform_call_graph_edges
5185 = update_clones ? CB_CGE_MOVE_CLONES : CB_CGE_MOVE;
5186 id.transform_new_cfg = true;
5187 id.transform_return_to_modify = false;
5188 id.transform_lang_insert_block = NULL;
5189
5190 current_function_decl = new_decl;
5191 old_entry_block = ENTRY_BLOCK_PTR_FOR_FUNCTION
5192 (DECL_STRUCT_FUNCTION (old_decl));
5193 initialize_cfun (new_decl, old_decl,
5194 old_entry_block->count);
5195 DECL_STRUCT_FUNCTION (new_decl)->gimple_df->ipa_pta
5196 = id.src_cfun->gimple_df->ipa_pta;
5197 push_cfun (DECL_STRUCT_FUNCTION (new_decl));
5198
5199 /* Copy the function's static chain. */
5200 p = DECL_STRUCT_FUNCTION (old_decl)->static_chain_decl;
5201 if (p)
5202 DECL_STRUCT_FUNCTION (new_decl)->static_chain_decl =
5203 copy_static_chain (DECL_STRUCT_FUNCTION (old_decl)->static_chain_decl,
5204 &id);
5205
5206 /* If there's a tree_map, prepare for substitution. */
5207 if (tree_map)
5208 for (i = 0; i < VEC_length (ipa_replace_map_p, tree_map); i++)
5209 {
5210 gimple init;
5211 replace_info = VEC_index (ipa_replace_map_p, tree_map, i);
5212 if (replace_info->replace_p)
5213 {
5214 tree op = replace_info->new_tree;
5215 if (!replace_info->old_tree)
5216 {
5217 int i = replace_info->parm_num;
5218 tree parm;
5219 for (parm = DECL_ARGUMENTS (old_decl); i; parm = DECL_CHAIN (parm))
5220 i --;
5221 replace_info->old_tree = parm;
5222 }
5223
5224
5225 STRIP_NOPS (op);
5226
5227 if (TREE_CODE (op) == VIEW_CONVERT_EXPR)
5228 op = TREE_OPERAND (op, 0);
5229
5230 if (TREE_CODE (op) == ADDR_EXPR)
5231 {
5232 op = get_base_address (TREE_OPERAND (op, 0));
5233 if (op && TREE_CODE (op) == VAR_DECL && !is_global_var (op))
5234 add_referenced_var (op);
5235 }
5236 gcc_assert (TREE_CODE (replace_info->old_tree) == PARM_DECL);
5237 init = setup_one_parameter (&id, replace_info->old_tree,
5238 replace_info->new_tree, id.src_fn,
5239 NULL,
5240 &vars);
5241 if (init)
5242 VEC_safe_push (gimple, heap, init_stmts, init);
5243 }
5244 }
5245 /* Copy the function's arguments. */
5246 if (DECL_ARGUMENTS (old_decl) != NULL_TREE)
5247 DECL_ARGUMENTS (new_decl) =
5248 copy_arguments_for_versioning (DECL_ARGUMENTS (old_decl), &id,
5249 args_to_skip, &vars);
5250
5251 DECL_INITIAL (new_decl) = remap_blocks (DECL_INITIAL (id.src_fn), &id);
5252 BLOCK_SUPERCONTEXT (DECL_INITIAL (new_decl)) = new_decl;
5253
5254 declare_inline_vars (DECL_INITIAL (new_decl), vars);
5255
5256 if (!VEC_empty (tree, DECL_STRUCT_FUNCTION (old_decl)->local_decls))
5257 /* Add local vars. */
5258 add_local_variables (DECL_STRUCT_FUNCTION (old_decl), cfun, &id, false);
5259
5260 if (DECL_RESULT (old_decl) == NULL_TREE)
5261 ;
5262 else if (skip_return && !VOID_TYPE_P (TREE_TYPE (DECL_RESULT (old_decl))))
5263 {
5264 DECL_RESULT (new_decl)
5265 = build_decl (DECL_SOURCE_LOCATION (DECL_RESULT (old_decl)),
5266 RESULT_DECL, NULL_TREE, void_type_node);
5267 DECL_CONTEXT (DECL_RESULT (new_decl)) = new_decl;
5268 cfun->returns_struct = 0;
5269 cfun->returns_pcc_struct = 0;
5270 }
5271 else
5272 {
5273 tree old_name;
5274 DECL_RESULT (new_decl) = remap_decl (DECL_RESULT (old_decl), &id);
5275 lang_hooks.dup_lang_specific_decl (DECL_RESULT (new_decl));
5276 if (gimple_in_ssa_p (id.src_cfun)
5277 && DECL_BY_REFERENCE (DECL_RESULT (old_decl))
5278 && (old_name
5279 = gimple_default_def (id.src_cfun, DECL_RESULT (old_decl))))
5280 {
5281 tree new_name = make_ssa_name (DECL_RESULT (new_decl), NULL);
5282 insert_decl_map (&id, old_name, new_name);
5283 SSA_NAME_DEF_STMT (new_name) = gimple_build_nop ();
5284 set_default_def (DECL_RESULT (new_decl), new_name);
5285 }
5286 }
5287
5288 /* Copy the Function's body. */
5289 copy_body (&id, old_entry_block->count, REG_BR_PROB_BASE,
5290 ENTRY_BLOCK_PTR, EXIT_BLOCK_PTR, blocks_to_copy, new_entry);
5291
5292 /* Renumber the lexical scoping (non-code) blocks consecutively. */
5293 number_blocks (new_decl);
5294
5295 /* We want to create the BB unconditionally, so that the addition of
5296 debug stmts doesn't affect BB count, which may in the end cause
5297 codegen differences. */
5298 bb = split_edge (single_succ_edge (ENTRY_BLOCK_PTR));
5299 while (VEC_length (gimple, init_stmts))
5300 insert_init_stmt (&id, bb, VEC_pop (gimple, init_stmts));
5301 update_clone_info (&id);
5302
5303 /* Remap the nonlocal_goto_save_area, if any. */
5304 if (cfun->nonlocal_goto_save_area)
5305 {
5306 struct walk_stmt_info wi;
5307
5308 memset (&wi, 0, sizeof (wi));
5309 wi.info = &id;
5310 walk_tree (&cfun->nonlocal_goto_save_area, remap_gimple_op_r, &wi, NULL);
5311 }
5312
5313 /* Clean up. */
5314 pointer_map_destroy (id.decl_map);
5315 if (id.debug_map)
5316 pointer_map_destroy (id.debug_map);
5317 free_dominance_info (CDI_DOMINATORS);
5318 free_dominance_info (CDI_POST_DOMINATORS);
5319
5320 fold_marked_statements (0, id.statements_to_fold);
5321 pointer_set_destroy (id.statements_to_fold);
5322 fold_cond_expr_cond ();
5323 delete_unreachable_blocks_update_callgraph (&id);
5324 if (id.dst_node->analyzed)
5325 cgraph_rebuild_references ();
5326 update_ssa (TODO_update_ssa);
5327
5328 /* After partial cloning we need to rescale frequencies, so they are
5329 within proper range in the cloned function. */
5330 if (new_entry)
5331 {
5332 struct cgraph_edge *e;
5333 rebuild_frequencies ();
5334
5335 new_version_node->count = ENTRY_BLOCK_PTR->count;
5336 for (e = new_version_node->callees; e; e = e->next_callee)
5337 {
5338 basic_block bb = gimple_bb (e->call_stmt);
5339 e->frequency = compute_call_stmt_bb_frequency (current_function_decl,
5340 bb);
5341 e->count = bb->count;
5342 }
5343 for (e = new_version_node->indirect_calls; e; e = e->next_callee)
5344 {
5345 basic_block bb = gimple_bb (e->call_stmt);
5346 e->frequency = compute_call_stmt_bb_frequency (current_function_decl,
5347 bb);
5348 e->count = bb->count;
5349 }
5350 }
5351
5352 free_dominance_info (CDI_DOMINATORS);
5353 free_dominance_info (CDI_POST_DOMINATORS);
5354
5355 gcc_assert (!id.debug_stmts);
5356 VEC_free (gimple, heap, init_stmts);
5357 pop_cfun ();
5358 current_function_decl = old_current_function_decl;
5359 gcc_assert (!current_function_decl
5360 || DECL_STRUCT_FUNCTION (current_function_decl) == cfun);
5361 return;
5362 }
5363
5364 /* EXP is CALL_EXPR present in a GENERIC expression tree. Try to integrate
5365 the callee and return the inlined body on success. */
5366
5367 tree
5368 maybe_inline_call_in_expr (tree exp)
5369 {
5370 tree fn = get_callee_fndecl (exp);
5371
5372 /* We can only try to inline "const" functions. */
5373 if (fn && TREE_READONLY (fn) && DECL_SAVED_TREE (fn))
5374 {
5375 struct pointer_map_t *decl_map = pointer_map_create ();
5376 call_expr_arg_iterator iter;
5377 copy_body_data id;
5378 tree param, arg, t;
5379
5380 /* Remap the parameters. */
5381 for (param = DECL_ARGUMENTS (fn), arg = first_call_expr_arg (exp, &iter);
5382 param;
5383 param = DECL_CHAIN (param), arg = next_call_expr_arg (&iter))
5384 *pointer_map_insert (decl_map, param) = arg;
5385
5386 memset (&id, 0, sizeof (id));
5387 id.src_fn = fn;
5388 id.dst_fn = current_function_decl;
5389 id.src_cfun = DECL_STRUCT_FUNCTION (fn);
5390 id.decl_map = decl_map;
5391
5392 id.copy_decl = copy_decl_no_change;
5393 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
5394 id.transform_new_cfg = false;
5395 id.transform_return_to_modify = true;
5396 id.transform_lang_insert_block = NULL;
5397
5398 /* Make sure not to unshare trees behind the front-end's back
5399 since front-end specific mechanisms may rely on sharing. */
5400 id.regimplify = false;
5401 id.do_not_unshare = true;
5402
5403 /* We're not inside any EH region. */
5404 id.eh_lp_nr = 0;
5405
5406 t = copy_tree_body (&id);
5407 pointer_map_destroy (decl_map);
5408
5409 /* We can only return something suitable for use in a GENERIC
5410 expression tree. */
5411 if (TREE_CODE (t) == MODIFY_EXPR)
5412 return TREE_OPERAND (t, 1);
5413 }
5414
5415 return NULL_TREE;
5416 }
5417
5418 /* Duplicate a type, fields and all. */
5419
5420 tree
5421 build_duplicate_type (tree type)
5422 {
5423 struct copy_body_data id;
5424
5425 memset (&id, 0, sizeof (id));
5426 id.src_fn = current_function_decl;
5427 id.dst_fn = current_function_decl;
5428 id.src_cfun = cfun;
5429 id.decl_map = pointer_map_create ();
5430 id.debug_map = NULL;
5431 id.copy_decl = copy_decl_no_change;
5432
5433 type = remap_type_1 (type, &id);
5434
5435 pointer_map_destroy (id.decl_map);
5436 if (id.debug_map)
5437 pointer_map_destroy (id.debug_map);
5438
5439 TYPE_CANONICAL (type) = type;
5440
5441 return type;
5442 }