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