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