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