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