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