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