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