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