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