ipa-cp.c (ipcp_print_edge_profiles): Test for node->analyzed rather than for DECL_SAV...
[gcc.git] / gcc / tree-inline.c
1 /* Tree inlining.
2 Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
3 Free Software Foundation, Inc.
4 Contributed by Alexandre Oliva <aoliva@redhat.com>
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "toplev.h"
27 #include "tree.h"
28 #include "tree-inline.h"
29 #include "rtl.h"
30 #include "expr.h"
31 #include "flags.h"
32 #include "params.h"
33 #include "input.h"
34 #include "insn-config.h"
35 #include "varray.h"
36 #include "hashtab.h"
37 #include "langhooks.h"
38 #include "basic-block.h"
39 #include "tree-iterator.h"
40 #include "cgraph.h"
41 #include "intl.h"
42 #include "tree-mudflap.h"
43 #include "tree-flow.h"
44 #include "function.h"
45 #include "ggc.h"
46 #include "tree-flow.h"
47 #include "diagnostic.h"
48 #include "except.h"
49 #include "debug.h"
50 #include "pointer-set.h"
51 #include "ipa-prop.h"
52 #include "value-prof.h"
53 #include "tree-pass.h"
54 #include "target.h"
55 #include "integrate.h"
56
57 /* I'm not real happy about this, but we need to handle gimple and
58 non-gimple trees. */
59 #include "tree-gimple.h"
60
61 /* Inlining, Cloning, Versioning, Parallelization
62
63 Inlining: a function body is duplicated, but the PARM_DECLs are
64 remapped into VAR_DECLs, and non-void RETURN_EXPRs become
65 GIMPLE_MODIFY_STMTs that store to a dedicated returned-value variable.
66 The duplicated eh_region info of the copy will later be appended
67 to the info for the caller; the eh_region info in copied throwing
68 statements and RESX_EXPRs is adjusted accordingly.
69
70 Cloning: (only in C++) We have one body for a con/de/structor, and
71 multiple function decls, each with a unique parameter list.
72 Duplicate the body, using the given splay tree; some parameters
73 will become constants (like 0 or 1).
74
75 Versioning: a function body is duplicated and the result is a new
76 function rather than into blocks of an existing function as with
77 inlining. Some parameters will become constants.
78
79 Parallelization: a region of a function is duplicated resulting in
80 a new function. Variables may be replaced with complex expressions
81 to enable shared variable semantics.
82
83 All of these will simultaneously lookup any callgraph edges. If
84 we're going to inline the duplicated function body, and the given
85 function has some cloned callgraph nodes (one for each place this
86 function will be inlined) those callgraph edges will be duplicated.
87 If we're cloning the body, those callgraph edges will be
88 updated to point into the new body. (Note that the original
89 callgraph node and edge list will not be altered.)
90
91 See the CALL_EXPR handling case in copy_body_r (). */
92
93 /* 0 if we should not perform inlining.
94 1 if we should expand functions calls inline at the tree level.
95 2 if we should consider *all* functions to be inline
96 candidates. */
97
98 int flag_inline_trees = 0;
99
100 /* To Do:
101
102 o In order to make inlining-on-trees work, we pessimized
103 function-local static constants. In particular, they are now
104 always output, even when not addressed. Fix this by treating
105 function-local static constants just like global static
106 constants; the back-end already knows not to output them if they
107 are not needed.
108
109 o Provide heuristics to clamp inlining of recursive template
110 calls? */
111
112
113 /* Weights that estimate_num_insns uses for heuristics in inlining. */
114
115 eni_weights eni_inlining_weights;
116
117 /* Weights that estimate_num_insns uses to estimate the size of the
118 produced code. */
119
120 eni_weights eni_size_weights;
121
122 /* Weights that estimate_num_insns uses to estimate the time necessary
123 to execute the produced code. */
124
125 eni_weights eni_time_weights;
126
127 /* Prototypes. */
128
129 static tree declare_return_variable (copy_body_data *, tree, tree, tree *);
130 static bool inlinable_function_p (tree);
131 static void remap_block (tree *, copy_body_data *);
132 static tree remap_decls (tree, copy_body_data *);
133 static void copy_bind_expr (tree *, int *, copy_body_data *);
134 static tree mark_local_for_remap_r (tree *, int *, void *);
135 static void unsave_expr_1 (tree);
136 static tree unsave_r (tree *, int *, void *);
137 static void declare_inline_vars (tree, tree);
138 static void remap_save_expr (tree *, void *, int *);
139 static void add_lexical_block (tree current_block, tree new_block);
140 static tree copy_decl_to_var (tree, copy_body_data *);
141 static tree copy_result_decl_to_var (tree, copy_body_data *);
142 static tree copy_decl_maybe_to_var (tree, copy_body_data *);
143
144 /* Insert a tree->tree mapping for ID. Despite the name suggests
145 that the trees should be variables, it is used for more than that. */
146
147 void
148 insert_decl_map (copy_body_data *id, tree key, tree value)
149 {
150 *pointer_map_insert (id->decl_map, key) = value;
151
152 /* Always insert an identity map as well. If we see this same new
153 node again, we won't want to duplicate it a second time. */
154 if (key != value)
155 *pointer_map_insert (id->decl_map, value) = value;
156 }
157
158 /* Construct new SSA name for old NAME. ID is the inline context. */
159
160 static tree
161 remap_ssa_name (tree name, copy_body_data *id)
162 {
163 tree new;
164 tree *n;
165
166 gcc_assert (TREE_CODE (name) == SSA_NAME);
167
168 n = (tree *) pointer_map_contains (id->decl_map, name);
169 if (n)
170 return *n;
171
172 /* Do not set DEF_STMT yet as statement is not copied yet. We do that
173 in copy_bb. */
174 new = remap_decl (SSA_NAME_VAR (name), id);
175 /* We might've substituted constant or another SSA_NAME for
176 the variable.
177
178 Replace the SSA name representing RESULT_DECL by variable during
179 inlining: this saves us from need to introduce PHI node in a case
180 return value is just partly initialized. */
181 if ((TREE_CODE (new) == VAR_DECL || TREE_CODE (new) == PARM_DECL)
182 && (TREE_CODE (SSA_NAME_VAR (name)) != RESULT_DECL
183 || !id->transform_return_to_modify))
184 {
185 new = make_ssa_name (new, NULL);
186 insert_decl_map (id, name, new);
187 SSA_NAME_OCCURS_IN_ABNORMAL_PHI (new)
188 = SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name);
189 TREE_TYPE (new) = TREE_TYPE (SSA_NAME_VAR (new));
190 if (IS_EMPTY_STMT (SSA_NAME_DEF_STMT (name)))
191 {
192 /* By inlining function having uninitialized variable, we might
193 extend the lifetime (variable might get reused). This cause
194 ICE in the case we end up extending lifetime of SSA name across
195 abnormal edge, but also increase register pressure.
196
197 We simply initialize all uninitialized vars by 0 except for case
198 we are inlining to very first BB. We can avoid this for all
199 BBs that are not withing strongly connected regions of the CFG,
200 but this is bit expensive to test.
201 */
202 if (id->entry_bb && is_gimple_reg (SSA_NAME_VAR (name))
203 && TREE_CODE (SSA_NAME_VAR (name)) != PARM_DECL
204 && (id->entry_bb != EDGE_SUCC (ENTRY_BLOCK_PTR, 0)->dest
205 || EDGE_COUNT (id->entry_bb->preds) != 1))
206 {
207 block_stmt_iterator bsi = bsi_last (id->entry_bb);
208 tree init_stmt
209 = build_gimple_modify_stmt (new,
210 fold_convert (TREE_TYPE (new),
211 integer_zero_node));
212 bsi_insert_after (&bsi, init_stmt, BSI_NEW_STMT);
213 SSA_NAME_DEF_STMT (new) = init_stmt;
214 SSA_NAME_IS_DEFAULT_DEF (new) = 0;
215 }
216 else
217 {
218 SSA_NAME_DEF_STMT (new) = build_empty_stmt ();
219 if (gimple_default_def (id->src_cfun, SSA_NAME_VAR (name)) == name)
220 set_default_def (SSA_NAME_VAR (new), new);
221 }
222 }
223 }
224 else
225 insert_decl_map (id, name, new);
226 return new;
227 }
228
229 /* Remap DECL during the copying of the BLOCK tree for the function. */
230
231 tree
232 remap_decl (tree decl, copy_body_data *id)
233 {
234 tree *n;
235 tree fn;
236
237 /* We only remap local variables in the current function. */
238 fn = id->src_fn;
239
240 /* See if we have remapped this declaration. */
241
242 n = (tree *) pointer_map_contains (id->decl_map, decl);
243
244 /* If we didn't already have an equivalent for this declaration,
245 create one now. */
246 if (!n)
247 {
248 /* Make a copy of the variable or label. */
249 tree t = id->copy_decl (decl, id);
250
251 /* Remember it, so that if we encounter this local entity again
252 we can reuse this copy. Do this early because remap_type may
253 need this decl for TYPE_STUB_DECL. */
254 insert_decl_map (id, decl, t);
255
256 if (!DECL_P (t))
257 return t;
258
259 /* Remap types, if necessary. */
260 TREE_TYPE (t) = remap_type (TREE_TYPE (t), id);
261 if (TREE_CODE (t) == TYPE_DECL)
262 DECL_ORIGINAL_TYPE (t) = remap_type (DECL_ORIGINAL_TYPE (t), id);
263
264 /* Remap sizes as necessary. */
265 walk_tree (&DECL_SIZE (t), copy_body_r, id, NULL);
266 walk_tree (&DECL_SIZE_UNIT (t), copy_body_r, id, NULL);
267
268 /* If fields, do likewise for offset and qualifier. */
269 if (TREE_CODE (t) == FIELD_DECL)
270 {
271 walk_tree (&DECL_FIELD_OFFSET (t), copy_body_r, id, NULL);
272 if (TREE_CODE (DECL_CONTEXT (t)) == QUAL_UNION_TYPE)
273 walk_tree (&DECL_QUALIFIER (t), copy_body_r, id, NULL);
274 }
275
276 if (cfun && gimple_in_ssa_p (cfun)
277 && (TREE_CODE (t) == VAR_DECL
278 || TREE_CODE (t) == RESULT_DECL || TREE_CODE (t) == PARM_DECL))
279 {
280 tree def = gimple_default_def (id->src_cfun, decl);
281 get_var_ann (t);
282 if (TREE_CODE (decl) != PARM_DECL && def)
283 {
284 tree map = remap_ssa_name (def, id);
285 /* Watch out RESULT_DECLs whose SSA names map directly
286 to them. */
287 if (TREE_CODE (map) == SSA_NAME
288 && IS_EMPTY_STMT (SSA_NAME_DEF_STMT (map)))
289 set_default_def (t, map);
290 }
291 add_referenced_var (t);
292 }
293 return t;
294 }
295
296 return unshare_expr (*n);
297 }
298
299 static tree
300 remap_type_1 (tree type, copy_body_data *id)
301 {
302 tree new, t;
303
304 /* We do need a copy. build and register it now. If this is a pointer or
305 reference type, remap the designated type and make a new pointer or
306 reference type. */
307 if (TREE_CODE (type) == POINTER_TYPE)
308 {
309 new = build_pointer_type_for_mode (remap_type (TREE_TYPE (type), id),
310 TYPE_MODE (type),
311 TYPE_REF_CAN_ALIAS_ALL (type));
312 insert_decl_map (id, type, new);
313 return new;
314 }
315 else if (TREE_CODE (type) == REFERENCE_TYPE)
316 {
317 new = build_reference_type_for_mode (remap_type (TREE_TYPE (type), id),
318 TYPE_MODE (type),
319 TYPE_REF_CAN_ALIAS_ALL (type));
320 insert_decl_map (id, type, new);
321 return new;
322 }
323 else
324 new = copy_node (type);
325
326 insert_decl_map (id, type, new);
327
328 /* This is a new type, not a copy of an old type. Need to reassociate
329 variants. We can handle everything except the main variant lazily. */
330 t = TYPE_MAIN_VARIANT (type);
331 if (type != t)
332 {
333 t = remap_type (t, id);
334 TYPE_MAIN_VARIANT (new) = t;
335 TYPE_NEXT_VARIANT (new) = TYPE_NEXT_VARIANT (t);
336 TYPE_NEXT_VARIANT (t) = new;
337 }
338 else
339 {
340 TYPE_MAIN_VARIANT (new) = new;
341 TYPE_NEXT_VARIANT (new) = NULL;
342 }
343
344 if (TYPE_STUB_DECL (type))
345 TYPE_STUB_DECL (new) = remap_decl (TYPE_STUB_DECL (type), id);
346
347 /* Lazily create pointer and reference types. */
348 TYPE_POINTER_TO (new) = NULL;
349 TYPE_REFERENCE_TO (new) = NULL;
350
351 switch (TREE_CODE (new))
352 {
353 case INTEGER_TYPE:
354 case REAL_TYPE:
355 case FIXED_POINT_TYPE:
356 case ENUMERAL_TYPE:
357 case BOOLEAN_TYPE:
358 t = TYPE_MIN_VALUE (new);
359 if (t && TREE_CODE (t) != INTEGER_CST)
360 walk_tree (&TYPE_MIN_VALUE (new), copy_body_r, id, NULL);
361
362 t = TYPE_MAX_VALUE (new);
363 if (t && TREE_CODE (t) != INTEGER_CST)
364 walk_tree (&TYPE_MAX_VALUE (new), copy_body_r, id, NULL);
365 return new;
366
367 case FUNCTION_TYPE:
368 TREE_TYPE (new) = remap_type (TREE_TYPE (new), id);
369 walk_tree (&TYPE_ARG_TYPES (new), copy_body_r, id, NULL);
370 return new;
371
372 case ARRAY_TYPE:
373 TREE_TYPE (new) = remap_type (TREE_TYPE (new), id);
374 TYPE_DOMAIN (new) = remap_type (TYPE_DOMAIN (new), id);
375 break;
376
377 case RECORD_TYPE:
378 case UNION_TYPE:
379 case QUAL_UNION_TYPE:
380 {
381 tree f, nf = NULL;
382
383 for (f = TYPE_FIELDS (new); f ; f = TREE_CHAIN (f))
384 {
385 t = remap_decl (f, id);
386 DECL_CONTEXT (t) = new;
387 TREE_CHAIN (t) = nf;
388 nf = t;
389 }
390 TYPE_FIELDS (new) = nreverse (nf);
391 }
392 break;
393
394 case OFFSET_TYPE:
395 default:
396 /* Shouldn't have been thought variable sized. */
397 gcc_unreachable ();
398 }
399
400 walk_tree (&TYPE_SIZE (new), copy_body_r, id, NULL);
401 walk_tree (&TYPE_SIZE_UNIT (new), copy_body_r, id, NULL);
402
403 return new;
404 }
405
406 tree
407 remap_type (tree type, copy_body_data *id)
408 {
409 tree *node;
410 tree tmp;
411
412 if (type == NULL)
413 return type;
414
415 /* See if we have remapped this type. */
416 node = (tree *) pointer_map_contains (id->decl_map, type);
417 if (node)
418 return *node;
419
420 /* The type only needs remapping if it's variably modified. */
421 if (! variably_modified_type_p (type, id->src_fn))
422 {
423 insert_decl_map (id, type, type);
424 return type;
425 }
426
427 id->remapping_type_depth++;
428 tmp = remap_type_1 (type, id);
429 id->remapping_type_depth--;
430
431 return tmp;
432 }
433
434 static tree
435 remap_decls (tree decls, copy_body_data *id)
436 {
437 tree old_var;
438 tree new_decls = NULL_TREE;
439
440 /* Remap its variables. */
441 for (old_var = decls; old_var; old_var = TREE_CHAIN (old_var))
442 {
443 tree new_var;
444
445 /* We can not chain the local static declarations into the local_decls
446 as we can't duplicate them or break one decl rule. Go ahead and link
447 them into local_decls. */
448 if (!auto_var_in_fn_p (old_var, id->src_fn)
449 && !DECL_EXTERNAL (old_var))
450 {
451 cfun->local_decls = tree_cons (NULL_TREE, old_var,
452 cfun->local_decls);
453 continue;
454 }
455
456 /* Remap the variable. */
457 new_var = remap_decl (old_var, id);
458
459 /* If we didn't remap this variable, so we can't mess with its
460 TREE_CHAIN. If we remapped this variable to the return slot, it's
461 already declared somewhere else, so don't declare it here. */
462 if (!new_var || new_var == id->retvar)
463 ;
464 else
465 {
466 gcc_assert (DECL_P (new_var));
467 TREE_CHAIN (new_var) = new_decls;
468 new_decls = new_var;
469 }
470 }
471
472 return nreverse (new_decls);
473 }
474
475 /* Copy the BLOCK to contain remapped versions of the variables
476 therein. And hook the new block into the block-tree. */
477
478 static void
479 remap_block (tree *block, copy_body_data *id)
480 {
481 tree old_block;
482 tree new_block;
483 tree fn;
484
485 /* Make the new block. */
486 old_block = *block;
487 new_block = make_node (BLOCK);
488 TREE_USED (new_block) = TREE_USED (old_block);
489 BLOCK_ABSTRACT_ORIGIN (new_block) = old_block;
490 BLOCK_SOURCE_LOCATION (new_block) = BLOCK_SOURCE_LOCATION (old_block);
491 *block = new_block;
492
493 /* Remap its variables. */
494 BLOCK_VARS (new_block) = remap_decls (BLOCK_VARS (old_block), id);
495
496 fn = id->dst_fn;
497
498 if (id->transform_lang_insert_block)
499 id->transform_lang_insert_block (new_block);
500
501 /* Remember the remapped block. */
502 insert_decl_map (id, old_block, new_block);
503 }
504
505 /* Copy the whole block tree and root it in id->block. */
506 static tree
507 remap_blocks (tree block, copy_body_data *id)
508 {
509 tree t;
510 tree new = block;
511
512 if (!block)
513 return NULL;
514
515 remap_block (&new, id);
516 gcc_assert (new != block);
517 for (t = BLOCK_SUBBLOCKS (block); t ; t = BLOCK_CHAIN (t))
518 add_lexical_block (new, remap_blocks (t, id));
519 return new;
520 }
521
522 static void
523 copy_statement_list (tree *tp)
524 {
525 tree_stmt_iterator oi, ni;
526 tree new;
527
528 new = alloc_stmt_list ();
529 ni = tsi_start (new);
530 oi = tsi_start (*tp);
531 *tp = new;
532
533 for (; !tsi_end_p (oi); tsi_next (&oi))
534 tsi_link_after (&ni, tsi_stmt (oi), TSI_NEW_STMT);
535 }
536
537 static void
538 copy_bind_expr (tree *tp, int *walk_subtrees, copy_body_data *id)
539 {
540 tree block = BIND_EXPR_BLOCK (*tp);
541 /* Copy (and replace) the statement. */
542 copy_tree_r (tp, walk_subtrees, NULL);
543 if (block)
544 {
545 remap_block (&block, id);
546 BIND_EXPR_BLOCK (*tp) = block;
547 }
548
549 if (BIND_EXPR_VARS (*tp))
550 /* This will remap a lot of the same decls again, but this should be
551 harmless. */
552 BIND_EXPR_VARS (*tp) = remap_decls (BIND_EXPR_VARS (*tp), id);
553 }
554
555 /* Called from copy_body_id via walk_tree. DATA is really an
556 `copy_body_data *'. */
557
558 tree
559 copy_body_r (tree *tp, int *walk_subtrees, void *data)
560 {
561 copy_body_data *id = (copy_body_data *) data;
562 tree fn = id->src_fn;
563 tree new_block;
564
565 /* Begin by recognizing trees that we'll completely rewrite for the
566 inlining context. Our output for these trees is completely
567 different from out input (e.g. RETURN_EXPR is deleted, and morphs
568 into an edge). Further down, we'll handle trees that get
569 duplicated and/or tweaked. */
570
571 /* When requested, RETURN_EXPRs should be transformed to just the
572 contained GIMPLE_MODIFY_STMT. The branch semantics of the return will
573 be handled elsewhere by manipulating the CFG rather than a statement. */
574 if (TREE_CODE (*tp) == RETURN_EXPR && id->transform_return_to_modify)
575 {
576 tree assignment = TREE_OPERAND (*tp, 0);
577
578 /* If we're returning something, just turn that into an
579 assignment into the equivalent of the original RESULT_DECL.
580 If the "assignment" is just the result decl, the result
581 decl has already been set (e.g. a recent "foo (&result_decl,
582 ...)"); just toss the entire RETURN_EXPR. */
583 if (assignment && TREE_CODE (assignment) == GIMPLE_MODIFY_STMT)
584 {
585 /* Replace the RETURN_EXPR with (a copy of) the
586 GIMPLE_MODIFY_STMT hanging underneath. */
587 *tp = copy_node (assignment);
588 }
589 else /* Else the RETURN_EXPR returns no value. */
590 {
591 *tp = NULL;
592 return (tree) (void *)1;
593 }
594 }
595 else if (TREE_CODE (*tp) == SSA_NAME)
596 {
597 *tp = remap_ssa_name (*tp, id);
598 *walk_subtrees = 0;
599 return NULL;
600 }
601
602 /* Local variables and labels need to be replaced by equivalent
603 variables. We don't want to copy static variables; there's only
604 one of those, no matter how many times we inline the containing
605 function. Similarly for globals from an outer function. */
606 else if (auto_var_in_fn_p (*tp, fn))
607 {
608 tree new_decl;
609
610 /* Remap the declaration. */
611 new_decl = remap_decl (*tp, id);
612 gcc_assert (new_decl);
613 /* Replace this variable with the copy. */
614 STRIP_TYPE_NOPS (new_decl);
615 *tp = new_decl;
616 *walk_subtrees = 0;
617 }
618 else if (TREE_CODE (*tp) == STATEMENT_LIST)
619 copy_statement_list (tp);
620 else if (TREE_CODE (*tp) == SAVE_EXPR)
621 remap_save_expr (tp, id->decl_map, walk_subtrees);
622 else if (TREE_CODE (*tp) == LABEL_DECL
623 && (! DECL_CONTEXT (*tp)
624 || decl_function_context (*tp) == id->src_fn))
625 /* These may need to be remapped for EH handling. */
626 *tp = remap_decl (*tp, id);
627 else if (TREE_CODE (*tp) == BIND_EXPR)
628 copy_bind_expr (tp, walk_subtrees, id);
629 /* Types may need remapping as well. */
630 else if (TYPE_P (*tp))
631 *tp = remap_type (*tp, id);
632
633 /* If this is a constant, we have to copy the node iff the type will be
634 remapped. copy_tree_r will not copy a constant. */
635 else if (CONSTANT_CLASS_P (*tp))
636 {
637 tree new_type = remap_type (TREE_TYPE (*tp), id);
638
639 if (new_type == TREE_TYPE (*tp))
640 *walk_subtrees = 0;
641
642 else if (TREE_CODE (*tp) == INTEGER_CST)
643 *tp = build_int_cst_wide (new_type, TREE_INT_CST_LOW (*tp),
644 TREE_INT_CST_HIGH (*tp));
645 else
646 {
647 *tp = copy_node (*tp);
648 TREE_TYPE (*tp) = new_type;
649 }
650 }
651
652 /* Otherwise, just copy the node. Note that copy_tree_r already
653 knows not to copy VAR_DECLs, etc., so this is safe. */
654 else
655 {
656 /* Here we handle trees that are not completely rewritten.
657 First we detect some inlining-induced bogosities for
658 discarding. */
659 if (TREE_CODE (*tp) == GIMPLE_MODIFY_STMT
660 && GIMPLE_STMT_OPERAND (*tp, 0) == GIMPLE_STMT_OPERAND (*tp, 1)
661 && (auto_var_in_fn_p (GIMPLE_STMT_OPERAND (*tp, 0), fn)))
662 {
663 /* Some assignments VAR = VAR; don't generate any rtl code
664 and thus don't count as variable modification. Avoid
665 keeping bogosities like 0 = 0. */
666 tree decl = GIMPLE_STMT_OPERAND (*tp, 0), value;
667 tree *n;
668
669 n = (tree *) pointer_map_contains (id->decl_map, decl);
670 if (n)
671 {
672 value = *n;
673 STRIP_TYPE_NOPS (value);
674 if (TREE_CONSTANT (value) || TREE_READONLY (value))
675 {
676 *tp = build_empty_stmt ();
677 return copy_body_r (tp, walk_subtrees, data);
678 }
679 }
680 }
681 else if (TREE_CODE (*tp) == INDIRECT_REF)
682 {
683 /* Get rid of *& from inline substitutions that can happen when a
684 pointer argument is an ADDR_EXPR. */
685 tree decl = TREE_OPERAND (*tp, 0);
686 tree *n;
687
688 n = (tree *) pointer_map_contains (id->decl_map, decl);
689 if (n)
690 {
691 tree new;
692 tree old;
693 /* If we happen to get an ADDR_EXPR in n->value, strip
694 it manually here as we'll eventually get ADDR_EXPRs
695 which lie about their types pointed to. In this case
696 build_fold_indirect_ref wouldn't strip the INDIRECT_REF,
697 but we absolutely rely on that. As fold_indirect_ref
698 does other useful transformations, try that first, though. */
699 tree type = TREE_TYPE (TREE_TYPE (*n));
700 new = unshare_expr (*n);
701 old = *tp;
702 *tp = gimple_fold_indirect_ref (new);
703 if (! *tp)
704 {
705 if (TREE_CODE (new) == ADDR_EXPR)
706 {
707 *tp = fold_indirect_ref_1 (type, new);
708 /* ??? We should either assert here or build
709 a VIEW_CONVERT_EXPR instead of blindly leaking
710 incompatible types to our IL. */
711 if (! *tp)
712 *tp = TREE_OPERAND (new, 0);
713 }
714 else
715 {
716 *tp = build1 (INDIRECT_REF, type, new);
717 TREE_THIS_VOLATILE (*tp) = TREE_THIS_VOLATILE (old);
718 TREE_SIDE_EFFECTS (*tp) = TREE_SIDE_EFFECTS (old);
719 }
720 }
721 *walk_subtrees = 0;
722 return NULL;
723 }
724 }
725
726 /* Here is the "usual case". Copy this tree node, and then
727 tweak some special cases. */
728 copy_tree_r (tp, walk_subtrees, NULL);
729
730 /* Global variables we haven't seen yet needs to go into referenced
731 vars. If not referenced from types only. */
732 if (gimple_in_ssa_p (cfun) && TREE_CODE (*tp) == VAR_DECL
733 && id->remapping_type_depth == 0)
734 add_referenced_var (*tp);
735
736 /* If EXPR has block defined, map it to newly constructed block.
737 When inlining we want EXPRs without block appear in the block
738 of function call. */
739 if (EXPR_P (*tp) || GIMPLE_STMT_P (*tp))
740 {
741 new_block = id->block;
742 if (TREE_BLOCK (*tp))
743 {
744 tree *n;
745 n = (tree *) pointer_map_contains (id->decl_map,
746 TREE_BLOCK (*tp));
747 gcc_assert (n);
748 new_block = *n;
749 }
750 TREE_BLOCK (*tp) = new_block;
751 }
752
753 if (TREE_CODE (*tp) == RESX_EXPR && id->eh_region_offset)
754 TREE_OPERAND (*tp, 0) =
755 build_int_cst
756 (NULL_TREE,
757 id->eh_region_offset + TREE_INT_CST_LOW (TREE_OPERAND (*tp, 0)));
758
759 if (!GIMPLE_TUPLE_P (*tp) && TREE_CODE (*tp) != OMP_CLAUSE)
760 TREE_TYPE (*tp) = remap_type (TREE_TYPE (*tp), id);
761
762 /* The copied TARGET_EXPR has never been expanded, even if the
763 original node was expanded already. */
764 if (TREE_CODE (*tp) == TARGET_EXPR && TREE_OPERAND (*tp, 3))
765 {
766 TREE_OPERAND (*tp, 1) = TREE_OPERAND (*tp, 3);
767 TREE_OPERAND (*tp, 3) = NULL_TREE;
768 }
769
770 /* Variable substitution need not be simple. In particular, the
771 INDIRECT_REF substitution above. Make sure that TREE_CONSTANT
772 and friends are up-to-date. */
773 else if (TREE_CODE (*tp) == ADDR_EXPR)
774 {
775 int invariant = is_gimple_min_invariant (*tp);
776 walk_tree (&TREE_OPERAND (*tp, 0), copy_body_r, id, NULL);
777 /* Handle the case where we substituted an INDIRECT_REF
778 into the operand of the ADDR_EXPR. */
779 if (TREE_CODE (TREE_OPERAND (*tp, 0)) == INDIRECT_REF)
780 *tp = TREE_OPERAND (TREE_OPERAND (*tp, 0), 0);
781 else
782 recompute_tree_invariant_for_addr_expr (*tp);
783 /* If this used to be invariant, but is not any longer,
784 then regimplification is probably needed. */
785 if (invariant && !is_gimple_min_invariant (*tp))
786 id->regimplify = true;
787 *walk_subtrees = 0;
788 }
789 }
790
791 /* Keep iterating. */
792 return NULL_TREE;
793 }
794
795 /* Copy basic block, scale profile accordingly. Edges will be taken care of
796 later */
797
798 static basic_block
799 copy_bb (copy_body_data *id, basic_block bb, int frequency_scale,
800 gcov_type count_scale)
801 {
802 block_stmt_iterator bsi, copy_bsi;
803 basic_block copy_basic_block;
804
805 /* create_basic_block() will append every new block to
806 basic_block_info automatically. */
807 copy_basic_block = create_basic_block (NULL, (void *) 0,
808 (basic_block) bb->prev_bb->aux);
809 copy_basic_block->count = bb->count * count_scale / REG_BR_PROB_BASE;
810
811 /* We are going to rebuild frequencies from scratch. These values have just
812 small importance to drive canonicalize_loop_headers. */
813 copy_basic_block->frequency = ((gcov_type)bb->frequency
814 * frequency_scale / REG_BR_PROB_BASE);
815 if (copy_basic_block->frequency > BB_FREQ_MAX)
816 copy_basic_block->frequency = BB_FREQ_MAX;
817 copy_bsi = bsi_start (copy_basic_block);
818
819 for (bsi = bsi_start (bb);
820 !bsi_end_p (bsi); bsi_next (&bsi))
821 {
822 tree stmt = bsi_stmt (bsi);
823 tree orig_stmt = stmt;
824
825 id->regimplify = false;
826 walk_tree (&stmt, copy_body_r, id, NULL);
827
828 /* RETURN_EXPR might be removed,
829 this is signalled by making stmt pointer NULL. */
830 if (stmt)
831 {
832 tree call, decl;
833
834 gimple_duplicate_stmt_histograms (cfun, stmt, id->src_cfun, orig_stmt);
835
836 /* With return slot optimization we can end up with
837 non-gimple (foo *)&this->m, fix that here. */
838 if ((TREE_CODE (stmt) == GIMPLE_MODIFY_STMT
839 && TREE_CODE (GIMPLE_STMT_OPERAND (stmt, 1)) == NOP_EXPR
840 && !is_gimple_val (TREE_OPERAND (GIMPLE_STMT_OPERAND (stmt, 1), 0)))
841 || id->regimplify)
842 gimplify_stmt (&stmt);
843
844 bsi_insert_after (&copy_bsi, stmt, BSI_NEW_STMT);
845
846 /* Process new statement. gimplify_stmt possibly turned statement
847 into multiple statements, we need to process all of them. */
848 while (!bsi_end_p (copy_bsi))
849 {
850 tree *stmtp = bsi_stmt_ptr (copy_bsi);
851 tree stmt = *stmtp;
852 call = get_call_expr_in (stmt);
853
854 if (call && CALL_EXPR_VA_ARG_PACK (call) && id->call_expr)
855 {
856 /* __builtin_va_arg_pack () should be replaced by
857 all arguments corresponding to ... in the caller. */
858 tree p, *argarray, new_call, *call_ptr;
859 int nargs = call_expr_nargs (id->call_expr);
860
861 for (p = DECL_ARGUMENTS (id->src_fn); p; p = TREE_CHAIN (p))
862 nargs--;
863
864 argarray = (tree *) alloca ((nargs + call_expr_nargs (call))
865 * sizeof (tree));
866
867 memcpy (argarray, CALL_EXPR_ARGP (call),
868 call_expr_nargs (call) * sizeof (*argarray));
869 memcpy (argarray + call_expr_nargs (call),
870 CALL_EXPR_ARGP (id->call_expr)
871 + (call_expr_nargs (id->call_expr) - nargs),
872 nargs * sizeof (*argarray));
873
874 new_call = build_call_array (TREE_TYPE (call),
875 CALL_EXPR_FN (call),
876 nargs + call_expr_nargs (call),
877 argarray);
878 /* Copy all CALL_EXPR flags, locus and block, except
879 CALL_EXPR_VA_ARG_PACK flag. */
880 CALL_EXPR_STATIC_CHAIN (new_call)
881 = CALL_EXPR_STATIC_CHAIN (call);
882 CALL_EXPR_TAILCALL (new_call) = CALL_EXPR_TAILCALL (call);
883 CALL_EXPR_RETURN_SLOT_OPT (new_call)
884 = CALL_EXPR_RETURN_SLOT_OPT (call);
885 CALL_FROM_THUNK_P (new_call) = CALL_FROM_THUNK_P (call);
886 CALL_CANNOT_INLINE_P (new_call)
887 = CALL_CANNOT_INLINE_P (call);
888 TREE_NOTHROW (new_call) = TREE_NOTHROW (call);
889 SET_EXPR_LOCUS (new_call, EXPR_LOCUS (call));
890 TREE_BLOCK (new_call) = TREE_BLOCK (call);
891
892 call_ptr = stmtp;
893 if (TREE_CODE (*call_ptr) == GIMPLE_MODIFY_STMT)
894 call_ptr = &GIMPLE_STMT_OPERAND (*call_ptr, 1);
895 if (TREE_CODE (*call_ptr) == WITH_SIZE_EXPR)
896 call_ptr = &TREE_OPERAND (*call_ptr, 0);
897 gcc_assert (*call_ptr == call);
898 if (call_ptr == stmtp)
899 {
900 bsi_replace (&copy_bsi, new_call, true);
901 stmtp = bsi_stmt_ptr (copy_bsi);
902 stmt = *stmtp;
903 }
904 else
905 {
906 *call_ptr = new_call;
907 stmt = *stmtp;
908 update_stmt (stmt);
909 }
910 }
911 else if (call
912 && id->call_expr
913 && (decl = get_callee_fndecl (call))
914 && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL
915 && DECL_FUNCTION_CODE (decl)
916 == BUILT_IN_VA_ARG_PACK_LEN)
917 {
918 /* __builtin_va_arg_pack_len () should be replaced by
919 the number of anonymous arguments. */
920 int nargs = call_expr_nargs (id->call_expr);
921 tree count, *call_ptr, p;
922
923 for (p = DECL_ARGUMENTS (id->src_fn); p; p = TREE_CHAIN (p))
924 nargs--;
925
926 count = build_int_cst (integer_type_node, nargs);
927 call_ptr = stmtp;
928 if (TREE_CODE (*call_ptr) == GIMPLE_MODIFY_STMT)
929 call_ptr = &GIMPLE_STMT_OPERAND (*call_ptr, 1);
930 if (TREE_CODE (*call_ptr) == WITH_SIZE_EXPR)
931 call_ptr = &TREE_OPERAND (*call_ptr, 0);
932 gcc_assert (*call_ptr == call && call_ptr != stmtp);
933 *call_ptr = count;
934 stmt = *stmtp;
935 update_stmt (stmt);
936 call = NULL_TREE;
937 }
938
939 /* Statements produced by inlining can be unfolded, especially
940 when we constant propagated some operands. We can't fold
941 them right now for two reasons:
942 1) folding require SSA_NAME_DEF_STMTs to be correct
943 2) we can't change function calls to builtins.
944 So we just mark statement for later folding. We mark
945 all new statements, instead just statements that has changed
946 by some nontrivial substitution so even statements made
947 foldable indirectly are updated. If this turns out to be
948 expensive, copy_body can be told to watch for nontrivial
949 changes. */
950 if (id->statements_to_fold)
951 pointer_set_insert (id->statements_to_fold, stmt);
952 /* We're duplicating a CALL_EXPR. Find any corresponding
953 callgraph edges and update or duplicate them. */
954 if (call)
955 {
956 struct cgraph_node *node;
957 struct cgraph_edge *edge;
958
959 switch (id->transform_call_graph_edges)
960 {
961 case CB_CGE_DUPLICATE:
962 edge = cgraph_edge (id->src_node, orig_stmt);
963 if (edge)
964 cgraph_clone_edge (edge, id->dst_node, stmt,
965 REG_BR_PROB_BASE, 1,
966 edge->frequency, true);
967 break;
968
969 case CB_CGE_MOVE_CLONES:
970 for (node = id->dst_node->next_clone;
971 node;
972 node = node->next_clone)
973 {
974 edge = cgraph_edge (node, orig_stmt);
975 if (edge)
976 cgraph_set_call_stmt (edge, stmt);
977 }
978 /* FALLTHRU */
979
980 case CB_CGE_MOVE:
981 edge = cgraph_edge (id->dst_node, orig_stmt);
982 if (edge)
983 cgraph_set_call_stmt (edge, stmt);
984 break;
985
986 default:
987 gcc_unreachable ();
988 }
989 }
990 /* If you think we can abort here, you are wrong.
991 There is no region 0 in tree land. */
992 gcc_assert (lookup_stmt_eh_region_fn (id->src_cfun, orig_stmt)
993 != 0);
994
995 if (tree_could_throw_p (stmt)
996 /* When we are cloning for inlining, we are supposed to
997 construct a clone that calls precisely the same functions
998 as original. However IPA optimizers might've proved
999 earlier some function calls as non-trapping that might
1000 render some basic blocks dead that might become
1001 unreachable.
1002
1003 We can't update SSA with unreachable blocks in CFG and thus
1004 we prevent the scenario by preserving even the "dead" eh
1005 edges until the point they are later removed by
1006 fixup_cfg pass. */
1007 || (id->transform_call_graph_edges == CB_CGE_MOVE_CLONES
1008 && lookup_stmt_eh_region_fn (id->src_cfun, orig_stmt) > 0))
1009 {
1010 int region = lookup_stmt_eh_region_fn (id->src_cfun, orig_stmt);
1011 /* Add an entry for the copied tree in the EH hashtable.
1012 When cloning or versioning, use the hashtable in
1013 cfun, and just copy the EH number. When inlining, use the
1014 hashtable in the caller, and adjust the region number. */
1015 if (region > 0)
1016 add_stmt_to_eh_region (stmt, region + id->eh_region_offset);
1017
1018 /* If this tree doesn't have a region associated with it,
1019 and there is a "current region,"
1020 then associate this tree with the current region
1021 and add edges associated with this region. */
1022 if ((lookup_stmt_eh_region_fn (id->src_cfun,
1023 orig_stmt) <= 0
1024 && id->eh_region > 0)
1025 && tree_could_throw_p (stmt))
1026 add_stmt_to_eh_region (stmt, id->eh_region);
1027 }
1028 if (gimple_in_ssa_p (cfun))
1029 {
1030 ssa_op_iter i;
1031 tree def;
1032
1033 find_new_referenced_vars (bsi_stmt_ptr (copy_bsi));
1034 FOR_EACH_SSA_TREE_OPERAND (def, stmt, i, SSA_OP_DEF)
1035 if (TREE_CODE (def) == SSA_NAME)
1036 SSA_NAME_DEF_STMT (def) = stmt;
1037 }
1038 bsi_next (&copy_bsi);
1039 }
1040 copy_bsi = bsi_last (copy_basic_block);
1041 }
1042 }
1043 return copy_basic_block;
1044 }
1045
1046 /* Inserting Single Entry Multiple Exit region in SSA form into code in SSA
1047 form is quite easy, since dominator relationship for old basic blocks does
1048 not change.
1049
1050 There is however exception where inlining might change dominator relation
1051 across EH edges from basic block within inlined functions destinating
1052 to landing pads in function we inline into.
1053
1054 The function fills in PHI_RESULTs of such PHI nodes if they refer
1055 to gimple regs. Otherwise, the function mark PHI_RESULT of such
1056 PHI nodes for renaming. For non-gimple regs, renaming is safe: the
1057 EH edges are abnormal and SSA_NAME_OCCURS_IN_ABNORMAL_PHI must be
1058 set, and this means that there will be no overlapping live ranges
1059 for the underlying symbol.
1060
1061 This might change in future if we allow redirecting of EH edges and
1062 we might want to change way build CFG pre-inlining to include
1063 all the possible edges then. */
1064 static void
1065 update_ssa_across_abnormal_edges (basic_block bb, basic_block ret_bb,
1066 bool can_throw, bool nonlocal_goto)
1067 {
1068 edge e;
1069 edge_iterator ei;
1070
1071 FOR_EACH_EDGE (e, ei, bb->succs)
1072 if (!e->dest->aux
1073 || ((basic_block)e->dest->aux)->index == ENTRY_BLOCK)
1074 {
1075 tree phi;
1076
1077 gcc_assert (e->flags & EDGE_ABNORMAL);
1078 if (!nonlocal_goto)
1079 gcc_assert (e->flags & EDGE_EH);
1080 if (!can_throw)
1081 gcc_assert (!(e->flags & EDGE_EH));
1082 for (phi = phi_nodes (e->dest); phi; phi = PHI_CHAIN (phi))
1083 {
1084 edge re;
1085
1086 /* There shouldn't be any PHI nodes in the ENTRY_BLOCK. */
1087 gcc_assert (!e->dest->aux);
1088
1089 gcc_assert (SSA_NAME_OCCURS_IN_ABNORMAL_PHI
1090 (PHI_RESULT (phi)));
1091
1092 if (!is_gimple_reg (PHI_RESULT (phi)))
1093 {
1094 mark_sym_for_renaming
1095 (SSA_NAME_VAR (PHI_RESULT (phi)));
1096 continue;
1097 }
1098
1099 re = find_edge (ret_bb, e->dest);
1100 gcc_assert (re);
1101 gcc_assert ((re->flags & (EDGE_EH | EDGE_ABNORMAL))
1102 == (e->flags & (EDGE_EH | EDGE_ABNORMAL)));
1103
1104 SET_USE (PHI_ARG_DEF_PTR_FROM_EDGE (phi, e),
1105 USE_FROM_PTR (PHI_ARG_DEF_PTR_FROM_EDGE (phi, re)));
1106 }
1107 }
1108 }
1109
1110 /* Copy edges from BB into its copy constructed earlier, scale profile
1111 accordingly. Edges will be taken care of later. Assume aux
1112 pointers to point to the copies of each BB. */
1113 static void
1114 copy_edges_for_bb (basic_block bb, gcov_type count_scale, basic_block ret_bb)
1115 {
1116 basic_block new_bb = (basic_block) bb->aux;
1117 edge_iterator ei;
1118 edge old_edge;
1119 block_stmt_iterator bsi;
1120 int flags;
1121
1122 /* Use the indices from the original blocks to create edges for the
1123 new ones. */
1124 FOR_EACH_EDGE (old_edge, ei, bb->succs)
1125 if (!(old_edge->flags & EDGE_EH))
1126 {
1127 edge new;
1128
1129 flags = old_edge->flags;
1130
1131 /* Return edges do get a FALLTHRU flag when the get inlined. */
1132 if (old_edge->dest->index == EXIT_BLOCK && !old_edge->flags
1133 && old_edge->dest->aux != EXIT_BLOCK_PTR)
1134 flags |= EDGE_FALLTHRU;
1135 new = make_edge (new_bb, (basic_block) old_edge->dest->aux, flags);
1136 new->count = old_edge->count * count_scale / REG_BR_PROB_BASE;
1137 new->probability = old_edge->probability;
1138 }
1139
1140 if (bb->index == ENTRY_BLOCK || bb->index == EXIT_BLOCK)
1141 return;
1142
1143 for (bsi = bsi_start (new_bb); !bsi_end_p (bsi);)
1144 {
1145 tree copy_stmt;
1146 bool can_throw, nonlocal_goto;
1147
1148 copy_stmt = bsi_stmt (bsi);
1149 update_stmt (copy_stmt);
1150 if (gimple_in_ssa_p (cfun))
1151 mark_symbols_for_renaming (copy_stmt);
1152 /* Do this before the possible split_block. */
1153 bsi_next (&bsi);
1154
1155 /* If this tree could throw an exception, there are two
1156 cases where we need to add abnormal edge(s): the
1157 tree wasn't in a region and there is a "current
1158 region" in the caller; or the original tree had
1159 EH edges. In both cases split the block after the tree,
1160 and add abnormal edge(s) as needed; we need both
1161 those from the callee and the caller.
1162 We check whether the copy can throw, because the const
1163 propagation can change an INDIRECT_REF which throws
1164 into a COMPONENT_REF which doesn't. If the copy
1165 can throw, the original could also throw. */
1166
1167 can_throw = tree_can_throw_internal (copy_stmt);
1168 nonlocal_goto = tree_can_make_abnormal_goto (copy_stmt);
1169
1170 if (can_throw || nonlocal_goto)
1171 {
1172 if (!bsi_end_p (bsi))
1173 /* Note that bb's predecessor edges aren't necessarily
1174 right at this point; split_block doesn't care. */
1175 {
1176 edge e = split_block (new_bb, copy_stmt);
1177
1178 new_bb = e->dest;
1179 new_bb->aux = e->src->aux;
1180 bsi = bsi_start (new_bb);
1181 }
1182 }
1183
1184 if (can_throw)
1185 make_eh_edges (copy_stmt);
1186
1187 if (nonlocal_goto)
1188 make_abnormal_goto_edges (bb_for_stmt (copy_stmt), true);
1189
1190 if ((can_throw || nonlocal_goto)
1191 && gimple_in_ssa_p (cfun))
1192 update_ssa_across_abnormal_edges (bb_for_stmt (copy_stmt), ret_bb,
1193 can_throw, nonlocal_goto);
1194 }
1195 }
1196
1197 /* Copy the PHIs. All blocks and edges are copied, some blocks
1198 was possibly split and new outgoing EH edges inserted.
1199 BB points to the block of original function and AUX pointers links
1200 the original and newly copied blocks. */
1201
1202 static void
1203 copy_phis_for_bb (basic_block bb, copy_body_data *id)
1204 {
1205 basic_block const new_bb = (basic_block) bb->aux;
1206 edge_iterator ei;
1207 tree phi;
1208
1209 for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
1210 {
1211 tree res = PHI_RESULT (phi);
1212 tree new_res = res;
1213 tree new_phi;
1214 edge new_edge;
1215
1216 if (is_gimple_reg (res))
1217 {
1218 walk_tree (&new_res, copy_body_r, id, NULL);
1219 SSA_NAME_DEF_STMT (new_res)
1220 = new_phi = create_phi_node (new_res, new_bb);
1221 FOR_EACH_EDGE (new_edge, ei, new_bb->preds)
1222 {
1223 edge const old_edge = find_edge ((basic_block) new_edge->src->aux, bb);
1224 tree arg = PHI_ARG_DEF_FROM_EDGE (phi, old_edge);
1225 tree new_arg = arg;
1226
1227 walk_tree (&new_arg, copy_body_r, id, NULL);
1228 gcc_assert (new_arg);
1229 /* With return slot optimization we can end up with
1230 non-gimple (foo *)&this->m, fix that here. */
1231 if (TREE_CODE (new_arg) != SSA_NAME
1232 && TREE_CODE (new_arg) != FUNCTION_DECL
1233 && !is_gimple_val (new_arg))
1234 {
1235 tree stmts = NULL_TREE;
1236 new_arg = force_gimple_operand (new_arg, &stmts,
1237 true, NULL);
1238 bsi_insert_on_edge_immediate (new_edge, stmts);
1239 }
1240 add_phi_arg (new_phi, new_arg, new_edge);
1241 }
1242 }
1243 }
1244 }
1245
1246 /* Wrapper for remap_decl so it can be used as a callback. */
1247 static tree
1248 remap_decl_1 (tree decl, void *data)
1249 {
1250 return remap_decl (decl, (copy_body_data *) data);
1251 }
1252
1253 /* Build struct function and associated datastructures for the new clone
1254 NEW_FNDECL to be build. CALLEE_FNDECL is the original */
1255
1256 static void
1257 initialize_cfun (tree new_fndecl, tree callee_fndecl, gcov_type count,
1258 int frequency)
1259 {
1260 struct function *new_cfun
1261 = (struct function *) ggc_alloc_cleared (sizeof (struct function));
1262 struct function *src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
1263 gcov_type count_scale, frequency_scale;
1264
1265 if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count)
1266 count_scale = (REG_BR_PROB_BASE * count
1267 / ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count);
1268 else
1269 count_scale = 1;
1270
1271 if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency)
1272 frequency_scale = (REG_BR_PROB_BASE * frequency
1273 /
1274 ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency);
1275 else
1276 frequency_scale = count_scale;
1277
1278 /* Register specific tree functions. */
1279 tree_register_cfg_hooks ();
1280 *new_cfun = *DECL_STRUCT_FUNCTION (callee_fndecl);
1281 new_cfun->funcdef_no = get_next_funcdef_no ();
1282 VALUE_HISTOGRAMS (new_cfun) = NULL;
1283 new_cfun->local_decls = NULL;
1284 new_cfun->cfg = NULL;
1285 new_cfun->decl = new_fndecl /*= copy_node (callee_fndecl)*/;
1286 DECL_STRUCT_FUNCTION (new_fndecl) = new_cfun;
1287 push_cfun (new_cfun);
1288 init_empty_tree_cfg ();
1289
1290 ENTRY_BLOCK_PTR->count =
1291 (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count * count_scale /
1292 REG_BR_PROB_BASE);
1293 ENTRY_BLOCK_PTR->frequency =
1294 (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency *
1295 frequency_scale / REG_BR_PROB_BASE);
1296 EXIT_BLOCK_PTR->count =
1297 (EXIT_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count * count_scale /
1298 REG_BR_PROB_BASE);
1299 EXIT_BLOCK_PTR->frequency =
1300 (EXIT_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency *
1301 frequency_scale / REG_BR_PROB_BASE);
1302 if (src_cfun->eh)
1303 init_eh_for_function ();
1304
1305 if (src_cfun->gimple_df)
1306 {
1307 init_tree_ssa (cfun);
1308 cfun->gimple_df->in_ssa_p = true;
1309 init_ssa_operands ();
1310 }
1311 pop_cfun ();
1312 }
1313
1314 /* Make a copy of the body of FN so that it can be inserted inline in
1315 another function. Walks FN via CFG, returns new fndecl. */
1316
1317 static tree
1318 copy_cfg_body (copy_body_data * id, gcov_type count, int frequency,
1319 basic_block entry_block_map, basic_block exit_block_map)
1320 {
1321 tree callee_fndecl = id->src_fn;
1322 /* Original cfun for the callee, doesn't change. */
1323 struct function *src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
1324 struct function *cfun_to_copy;
1325 basic_block bb;
1326 tree new_fndecl = NULL;
1327 gcov_type count_scale, frequency_scale;
1328 int last;
1329
1330 if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count)
1331 count_scale = (REG_BR_PROB_BASE * count
1332 / ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count);
1333 else
1334 count_scale = 1;
1335
1336 if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency)
1337 frequency_scale = (REG_BR_PROB_BASE * frequency
1338 /
1339 ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency);
1340 else
1341 frequency_scale = count_scale;
1342
1343 /* Register specific tree functions. */
1344 tree_register_cfg_hooks ();
1345
1346 /* Must have a CFG here at this point. */
1347 gcc_assert (ENTRY_BLOCK_PTR_FOR_FUNCTION
1348 (DECL_STRUCT_FUNCTION (callee_fndecl)));
1349
1350 cfun_to_copy = id->src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
1351
1352
1353 ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy)->aux = entry_block_map;
1354 EXIT_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy)->aux = exit_block_map;
1355 entry_block_map->aux = ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy);
1356 exit_block_map->aux = EXIT_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy);
1357
1358 /* Duplicate any exception-handling regions. */
1359 if (cfun->eh)
1360 {
1361 id->eh_region_offset
1362 = duplicate_eh_regions (cfun_to_copy, remap_decl_1, id,
1363 0, id->eh_region);
1364 }
1365 /* Use aux pointers to map the original blocks to copy. */
1366 FOR_EACH_BB_FN (bb, cfun_to_copy)
1367 {
1368 basic_block new = copy_bb (id, bb, frequency_scale, count_scale);
1369 bb->aux = new;
1370 new->aux = bb;
1371 }
1372
1373 last = last_basic_block;
1374 /* Now that we've duplicated the blocks, duplicate their edges. */
1375 FOR_ALL_BB_FN (bb, cfun_to_copy)
1376 copy_edges_for_bb (bb, count_scale, exit_block_map);
1377 if (gimple_in_ssa_p (cfun))
1378 FOR_ALL_BB_FN (bb, cfun_to_copy)
1379 copy_phis_for_bb (bb, id);
1380 FOR_ALL_BB_FN (bb, cfun_to_copy)
1381 {
1382 ((basic_block)bb->aux)->aux = NULL;
1383 bb->aux = NULL;
1384 }
1385 /* Zero out AUX fields of newly created block during EH edge
1386 insertion. */
1387 for (; last < last_basic_block; last++)
1388 BASIC_BLOCK (last)->aux = NULL;
1389 entry_block_map->aux = NULL;
1390 exit_block_map->aux = NULL;
1391
1392 return new_fndecl;
1393 }
1394
1395 /* Make a copy of the body of FN so that it can be inserted inline in
1396 another function. */
1397
1398 tree
1399 copy_generic_body (copy_body_data *id)
1400 {
1401 tree body;
1402 tree fndecl = id->src_fn;
1403
1404 body = DECL_SAVED_TREE (fndecl);
1405 walk_tree (&body, copy_body_r, id, NULL);
1406
1407 return body;
1408 }
1409
1410 static tree
1411 copy_body (copy_body_data *id, gcov_type count, int frequency,
1412 basic_block entry_block_map, basic_block exit_block_map)
1413 {
1414 tree fndecl = id->src_fn;
1415 tree body;
1416
1417 /* If this body has a CFG, walk CFG and copy. */
1418 gcc_assert (ENTRY_BLOCK_PTR_FOR_FUNCTION (DECL_STRUCT_FUNCTION (fndecl)));
1419 body = copy_cfg_body (id, count, frequency, entry_block_map, exit_block_map);
1420
1421 return body;
1422 }
1423
1424 /* Return true if VALUE is an ADDR_EXPR of an automatic variable
1425 defined in function FN, or of a data member thereof. */
1426
1427 static bool
1428 self_inlining_addr_expr (tree value, tree fn)
1429 {
1430 tree var;
1431
1432 if (TREE_CODE (value) != ADDR_EXPR)
1433 return false;
1434
1435 var = get_base_address (TREE_OPERAND (value, 0));
1436
1437 return var && auto_var_in_fn_p (var, fn);
1438 }
1439
1440 static void
1441 setup_one_parameter (copy_body_data *id, tree p, tree value, tree fn,
1442 basic_block bb, tree *vars)
1443 {
1444 tree init_stmt;
1445 tree var;
1446 tree rhs = value;
1447 tree def = (gimple_in_ssa_p (cfun)
1448 ? gimple_default_def (id->src_cfun, p) : NULL);
1449
1450 if (value
1451 && value != error_mark_node
1452 && !useless_type_conversion_p (TREE_TYPE (p), TREE_TYPE (value)))
1453 {
1454 if (fold_convertible_p (TREE_TYPE (p), value))
1455 rhs = fold_build1 (NOP_EXPR, TREE_TYPE (p), value);
1456 else
1457 /* ??? For valid (GIMPLE) programs we should not end up here.
1458 Still if something has gone wrong and we end up with truly
1459 mismatched types here, fall back to using a VIEW_CONVERT_EXPR
1460 to not leak invalid GIMPLE to the following passes. */
1461 rhs = fold_build1 (VIEW_CONVERT_EXPR, TREE_TYPE (p), value);
1462 }
1463
1464 /* If the parameter is never assigned to, has no SSA_NAMEs created,
1465 we may not need to create a new variable here at all. Instead, we may
1466 be able to just use the argument value. */
1467 if (TREE_READONLY (p)
1468 && !TREE_ADDRESSABLE (p)
1469 && value && !TREE_SIDE_EFFECTS (value)
1470 && !def)
1471 {
1472 /* We may produce non-gimple trees by adding NOPs or introduce
1473 invalid sharing when operand is not really constant.
1474 It is not big deal to prohibit constant propagation here as
1475 we will constant propagate in DOM1 pass anyway. */
1476 if (is_gimple_min_invariant (value)
1477 && useless_type_conversion_p (TREE_TYPE (p),
1478 TREE_TYPE (value))
1479 /* We have to be very careful about ADDR_EXPR. Make sure
1480 the base variable isn't a local variable of the inlined
1481 function, e.g., when doing recursive inlining, direct or
1482 mutually-recursive or whatever, which is why we don't
1483 just test whether fn == current_function_decl. */
1484 && ! self_inlining_addr_expr (value, fn))
1485 {
1486 insert_decl_map (id, p, value);
1487 return;
1488 }
1489 }
1490
1491 /* Make an equivalent VAR_DECL. Note that we must NOT remap the type
1492 here since the type of this decl must be visible to the calling
1493 function. */
1494 var = copy_decl_to_var (p, id);
1495 if (gimple_in_ssa_p (cfun) && TREE_CODE (var) == VAR_DECL)
1496 {
1497 get_var_ann (var);
1498 add_referenced_var (var);
1499 }
1500
1501 /* Register the VAR_DECL as the equivalent for the PARM_DECL;
1502 that way, when the PARM_DECL is encountered, it will be
1503 automatically replaced by the VAR_DECL. */
1504 insert_decl_map (id, p, var);
1505
1506 /* Declare this new variable. */
1507 TREE_CHAIN (var) = *vars;
1508 *vars = var;
1509
1510 /* Make gimplifier happy about this variable. */
1511 DECL_SEEN_IN_BIND_EXPR_P (var) = 1;
1512
1513 /* Even if P was TREE_READONLY, the new VAR should not be.
1514 In the original code, we would have constructed a
1515 temporary, and then the function body would have never
1516 changed the value of P. However, now, we will be
1517 constructing VAR directly. The constructor body may
1518 change its value multiple times as it is being
1519 constructed. Therefore, it must not be TREE_READONLY;
1520 the back-end assumes that TREE_READONLY variable is
1521 assigned to only once. */
1522 if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (p)))
1523 TREE_READONLY (var) = 0;
1524
1525 /* If there is no setup required and we are in SSA, take the easy route
1526 replacing all SSA names representing the function parameter by the
1527 SSA name passed to function.
1528
1529 We need to construct map for the variable anyway as it might be used
1530 in different SSA names when parameter is set in function.
1531
1532 FIXME: This usually kills the last connection in between inlined
1533 function parameter and the actual value in debug info. Can we do
1534 better here? If we just inserted the statement, copy propagation
1535 would kill it anyway as it always did in older versions of GCC.
1536
1537 We might want to introduce a notion that single SSA_NAME might
1538 represent multiple variables for purposes of debugging. */
1539 if (gimple_in_ssa_p (cfun) && rhs && def && is_gimple_reg (p)
1540 && (TREE_CODE (rhs) == SSA_NAME
1541 || is_gimple_min_invariant (rhs))
1542 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (def))
1543 {
1544 insert_decl_map (id, def, rhs);
1545 return;
1546 }
1547
1548 /* If the value of argument is never used, don't care about initializing
1549 it. */
1550 if (gimple_in_ssa_p (cfun) && !def && is_gimple_reg (p))
1551 {
1552 gcc_assert (!value || !TREE_SIDE_EFFECTS (value));
1553 return;
1554 }
1555
1556 /* Initialize this VAR_DECL from the equivalent argument. Convert
1557 the argument to the proper type in case it was promoted. */
1558 if (value)
1559 {
1560 block_stmt_iterator bsi = bsi_last (bb);
1561
1562 if (rhs == error_mark_node)
1563 {
1564 insert_decl_map (id, p, var);
1565 return;
1566 }
1567
1568 STRIP_USELESS_TYPE_CONVERSION (rhs);
1569
1570 /* We want to use GIMPLE_MODIFY_STMT, not INIT_EXPR here so that we
1571 keep our trees in gimple form. */
1572 if (def && gimple_in_ssa_p (cfun) && is_gimple_reg (p))
1573 {
1574 def = remap_ssa_name (def, id);
1575 init_stmt = build_gimple_modify_stmt (def, rhs);
1576 SSA_NAME_DEF_STMT (def) = init_stmt;
1577 SSA_NAME_IS_DEFAULT_DEF (def) = 0;
1578 set_default_def (var, NULL);
1579 }
1580 else
1581 init_stmt = build_gimple_modify_stmt (var, rhs);
1582
1583 /* If we did not create a gimple value and we did not create a gimple
1584 cast of a gimple value, then we will need to gimplify INIT_STMTS
1585 at the end. Note that is_gimple_cast only checks the outer
1586 tree code, not its operand. Thus the explicit check that its
1587 operand is a gimple value. */
1588 if ((!is_gimple_val (rhs)
1589 && (!is_gimple_cast (rhs)
1590 || !is_gimple_val (TREE_OPERAND (rhs, 0))))
1591 || !is_gimple_reg (var))
1592 {
1593 tree_stmt_iterator i;
1594 struct gimplify_ctx gctx;
1595
1596 push_gimplify_context (&gctx);
1597 gimplify_stmt (&init_stmt);
1598 if (gimple_in_ssa_p (cfun)
1599 && init_stmt && TREE_CODE (init_stmt) == STATEMENT_LIST)
1600 {
1601 /* The replacement can expose previously unreferenced
1602 variables. */
1603 for (i = tsi_start (init_stmt); !tsi_end_p (i); tsi_next (&i))
1604 find_new_referenced_vars (tsi_stmt_ptr (i));
1605 }
1606 pop_gimplify_context (NULL);
1607 }
1608
1609 /* If VAR represents a zero-sized variable, it's possible that the
1610 assignment statement may result in no gimple statements. */
1611 if (init_stmt)
1612 bsi_insert_after (&bsi, init_stmt, BSI_NEW_STMT);
1613 if (gimple_in_ssa_p (cfun))
1614 for (;!bsi_end_p (bsi); bsi_next (&bsi))
1615 mark_symbols_for_renaming (bsi_stmt (bsi));
1616 }
1617 }
1618
1619 /* Generate code to initialize the parameters of the function at the
1620 top of the stack in ID from the CALL_EXPR EXP. */
1621
1622 static void
1623 initialize_inlined_parameters (copy_body_data *id, tree exp,
1624 tree fn, basic_block bb)
1625 {
1626 tree parms;
1627 tree a;
1628 tree p;
1629 tree vars = NULL_TREE;
1630 call_expr_arg_iterator iter;
1631 tree static_chain = CALL_EXPR_STATIC_CHAIN (exp);
1632
1633 /* Figure out what the parameters are. */
1634 parms = DECL_ARGUMENTS (fn);
1635
1636 /* Loop through the parameter declarations, replacing each with an
1637 equivalent VAR_DECL, appropriately initialized. */
1638 for (p = parms, a = first_call_expr_arg (exp, &iter); p;
1639 a = next_call_expr_arg (&iter), p = TREE_CHAIN (p))
1640 setup_one_parameter (id, p, a, fn, bb, &vars);
1641
1642 /* Initialize the static chain. */
1643 p = DECL_STRUCT_FUNCTION (fn)->static_chain_decl;
1644 gcc_assert (fn != current_function_decl);
1645 if (p)
1646 {
1647 /* No static chain? Seems like a bug in tree-nested.c. */
1648 gcc_assert (static_chain);
1649
1650 setup_one_parameter (id, p, static_chain, fn, bb, &vars);
1651 }
1652
1653 declare_inline_vars (id->block, vars);
1654 }
1655
1656 /* Declare a return variable to replace the RESULT_DECL for the
1657 function we are calling. An appropriate DECL_STMT is returned.
1658 The USE_STMT is filled to contain a use of the declaration to
1659 indicate the return value of the function.
1660
1661 RETURN_SLOT, if non-null is place where to store the result. It
1662 is set only for CALL_EXPR_RETURN_SLOT_OPT. MODIFY_DEST, if non-null,
1663 was the LHS of the GIMPLE_MODIFY_STMT to which this call is the RHS.
1664
1665 The return value is a (possibly null) value that is the result of the
1666 function as seen by the callee. *USE_P is a (possibly null) value that
1667 holds the result as seen by the caller. */
1668
1669 static tree
1670 declare_return_variable (copy_body_data *id, tree return_slot, tree modify_dest,
1671 tree *use_p)
1672 {
1673 tree callee = id->src_fn;
1674 tree caller = id->dst_fn;
1675 tree result = DECL_RESULT (callee);
1676 tree callee_type = TREE_TYPE (result);
1677 tree caller_type = TREE_TYPE (TREE_TYPE (callee));
1678 tree var, use;
1679
1680 /* We don't need to do anything for functions that don't return
1681 anything. */
1682 if (!result || VOID_TYPE_P (callee_type))
1683 {
1684 *use_p = NULL_TREE;
1685 return NULL_TREE;
1686 }
1687
1688 /* If there was a return slot, then the return value is the
1689 dereferenced address of that object. */
1690 if (return_slot)
1691 {
1692 /* The front end shouldn't have used both return_slot and
1693 a modify expression. */
1694 gcc_assert (!modify_dest);
1695 if (DECL_BY_REFERENCE (result))
1696 {
1697 tree return_slot_addr = build_fold_addr_expr (return_slot);
1698 STRIP_USELESS_TYPE_CONVERSION (return_slot_addr);
1699
1700 /* We are going to construct *&return_slot and we can't do that
1701 for variables believed to be not addressable.
1702
1703 FIXME: This check possibly can match, because values returned
1704 via return slot optimization are not believed to have address
1705 taken by alias analysis. */
1706 gcc_assert (TREE_CODE (return_slot) != SSA_NAME);
1707 if (gimple_in_ssa_p (cfun))
1708 {
1709 HOST_WIDE_INT bitsize;
1710 HOST_WIDE_INT bitpos;
1711 tree offset;
1712 enum machine_mode mode;
1713 int unsignedp;
1714 int volatilep;
1715 tree base;
1716 base = get_inner_reference (return_slot, &bitsize, &bitpos,
1717 &offset,
1718 &mode, &unsignedp, &volatilep,
1719 false);
1720 if (TREE_CODE (base) == INDIRECT_REF)
1721 base = TREE_OPERAND (base, 0);
1722 if (TREE_CODE (base) == SSA_NAME)
1723 base = SSA_NAME_VAR (base);
1724 mark_sym_for_renaming (base);
1725 }
1726 var = return_slot_addr;
1727 }
1728 else
1729 {
1730 var = return_slot;
1731 gcc_assert (TREE_CODE (var) != SSA_NAME);
1732 TREE_ADDRESSABLE (var) |= TREE_ADDRESSABLE (result);
1733 }
1734 if ((TREE_CODE (TREE_TYPE (result)) == COMPLEX_TYPE
1735 || TREE_CODE (TREE_TYPE (result)) == VECTOR_TYPE)
1736 && !DECL_GIMPLE_REG_P (result)
1737 && DECL_P (var))
1738 DECL_GIMPLE_REG_P (var) = 0;
1739 use = NULL;
1740 goto done;
1741 }
1742
1743 /* All types requiring non-trivial constructors should have been handled. */
1744 gcc_assert (!TREE_ADDRESSABLE (callee_type));
1745
1746 /* Attempt to avoid creating a new temporary variable. */
1747 if (modify_dest
1748 && TREE_CODE (modify_dest) != SSA_NAME)
1749 {
1750 bool use_it = false;
1751
1752 /* We can't use MODIFY_DEST if there's type promotion involved. */
1753 if (!useless_type_conversion_p (callee_type, caller_type))
1754 use_it = false;
1755
1756 /* ??? If we're assigning to a variable sized type, then we must
1757 reuse the destination variable, because we've no good way to
1758 create variable sized temporaries at this point. */
1759 else if (TREE_CODE (TYPE_SIZE_UNIT (caller_type)) != INTEGER_CST)
1760 use_it = true;
1761
1762 /* If the callee cannot possibly modify MODIFY_DEST, then we can
1763 reuse it as the result of the call directly. Don't do this if
1764 it would promote MODIFY_DEST to addressable. */
1765 else if (TREE_ADDRESSABLE (result))
1766 use_it = false;
1767 else
1768 {
1769 tree base_m = get_base_address (modify_dest);
1770
1771 /* If the base isn't a decl, then it's a pointer, and we don't
1772 know where that's going to go. */
1773 if (!DECL_P (base_m))
1774 use_it = false;
1775 else if (is_global_var (base_m))
1776 use_it = false;
1777 else if ((TREE_CODE (TREE_TYPE (result)) == COMPLEX_TYPE
1778 || TREE_CODE (TREE_TYPE (result)) == VECTOR_TYPE)
1779 && !DECL_GIMPLE_REG_P (result)
1780 && DECL_GIMPLE_REG_P (base_m))
1781 use_it = false;
1782 else if (!TREE_ADDRESSABLE (base_m))
1783 use_it = true;
1784 }
1785
1786 if (use_it)
1787 {
1788 var = modify_dest;
1789 use = NULL;
1790 goto done;
1791 }
1792 }
1793
1794 gcc_assert (TREE_CODE (TYPE_SIZE_UNIT (callee_type)) == INTEGER_CST);
1795
1796 var = copy_result_decl_to_var (result, id);
1797 if (gimple_in_ssa_p (cfun))
1798 {
1799 get_var_ann (var);
1800 add_referenced_var (var);
1801 }
1802
1803 DECL_SEEN_IN_BIND_EXPR_P (var) = 1;
1804 DECL_STRUCT_FUNCTION (caller)->local_decls
1805 = tree_cons (NULL_TREE, var,
1806 DECL_STRUCT_FUNCTION (caller)->local_decls);
1807
1808 /* Do not have the rest of GCC warn about this variable as it should
1809 not be visible to the user. */
1810 TREE_NO_WARNING (var) = 1;
1811
1812 declare_inline_vars (id->block, var);
1813
1814 /* Build the use expr. If the return type of the function was
1815 promoted, convert it back to the expected type. */
1816 use = var;
1817 if (!useless_type_conversion_p (caller_type, TREE_TYPE (var)))
1818 use = fold_convert (caller_type, var);
1819
1820 STRIP_USELESS_TYPE_CONVERSION (use);
1821
1822 if (DECL_BY_REFERENCE (result))
1823 var = build_fold_addr_expr (var);
1824
1825 done:
1826 /* Register the VAR_DECL as the equivalent for the RESULT_DECL; that
1827 way, when the RESULT_DECL is encountered, it will be
1828 automatically replaced by the VAR_DECL. */
1829 insert_decl_map (id, result, var);
1830
1831 /* Remember this so we can ignore it in remap_decls. */
1832 id->retvar = var;
1833
1834 *use_p = use;
1835 return var;
1836 }
1837
1838 /* Returns nonzero if a function can be inlined as a tree. */
1839
1840 bool
1841 tree_inlinable_function_p (tree fn)
1842 {
1843 return inlinable_function_p (fn);
1844 }
1845
1846 static const char *inline_forbidden_reason;
1847
1848 static tree
1849 inline_forbidden_p_1 (tree *nodep, int *walk_subtrees ATTRIBUTE_UNUSED,
1850 void *fnp)
1851 {
1852 tree node = *nodep;
1853 tree fn = (tree) fnp;
1854 tree t;
1855
1856 switch (TREE_CODE (node))
1857 {
1858 case CALL_EXPR:
1859 /* Refuse to inline alloca call unless user explicitly forced so as
1860 this may change program's memory overhead drastically when the
1861 function using alloca is called in loop. In GCC present in
1862 SPEC2000 inlining into schedule_block cause it to require 2GB of
1863 RAM instead of 256MB. */
1864 if (alloca_call_p (node)
1865 && !lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)))
1866 {
1867 inline_forbidden_reason
1868 = G_("function %q+F can never be inlined because it uses "
1869 "alloca (override using the always_inline attribute)");
1870 return node;
1871 }
1872 t = get_callee_fndecl (node);
1873 if (! t)
1874 break;
1875
1876 /* We cannot inline functions that call setjmp. */
1877 if (setjmp_call_p (t))
1878 {
1879 inline_forbidden_reason
1880 = G_("function %q+F can never be inlined because it uses setjmp");
1881 return node;
1882 }
1883
1884 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL)
1885 switch (DECL_FUNCTION_CODE (t))
1886 {
1887 /* We cannot inline functions that take a variable number of
1888 arguments. */
1889 case BUILT_IN_VA_START:
1890 case BUILT_IN_NEXT_ARG:
1891 case BUILT_IN_VA_END:
1892 inline_forbidden_reason
1893 = G_("function %q+F can never be inlined because it "
1894 "uses variable argument lists");
1895 return node;
1896
1897 case BUILT_IN_LONGJMP:
1898 /* We can't inline functions that call __builtin_longjmp at
1899 all. The non-local goto machinery really requires the
1900 destination be in a different function. If we allow the
1901 function calling __builtin_longjmp to be inlined into the
1902 function calling __builtin_setjmp, Things will Go Awry. */
1903 inline_forbidden_reason
1904 = G_("function %q+F can never be inlined because "
1905 "it uses setjmp-longjmp exception handling");
1906 return node;
1907
1908 case BUILT_IN_NONLOCAL_GOTO:
1909 /* Similarly. */
1910 inline_forbidden_reason
1911 = G_("function %q+F can never be inlined because "
1912 "it uses non-local goto");
1913 return node;
1914
1915 case BUILT_IN_RETURN:
1916 case BUILT_IN_APPLY_ARGS:
1917 /* If a __builtin_apply_args caller would be inlined,
1918 it would be saving arguments of the function it has
1919 been inlined into. Similarly __builtin_return would
1920 return from the function the inline has been inlined into. */
1921 inline_forbidden_reason
1922 = G_("function %q+F can never be inlined because "
1923 "it uses __builtin_return or __builtin_apply_args");
1924 return node;
1925
1926 default:
1927 break;
1928 }
1929 break;
1930
1931 case GOTO_EXPR:
1932 t = TREE_OPERAND (node, 0);
1933
1934 /* We will not inline a function which uses computed goto. The
1935 addresses of its local labels, which may be tucked into
1936 global storage, are of course not constant across
1937 instantiations, which causes unexpected behavior. */
1938 if (TREE_CODE (t) != LABEL_DECL)
1939 {
1940 inline_forbidden_reason
1941 = G_("function %q+F can never be inlined "
1942 "because it contains a computed goto");
1943 return node;
1944 }
1945 break;
1946
1947 case LABEL_EXPR:
1948 t = TREE_OPERAND (node, 0);
1949 if (DECL_NONLOCAL (t))
1950 {
1951 /* We cannot inline a function that receives a non-local goto
1952 because we cannot remap the destination label used in the
1953 function that is performing the non-local goto. */
1954 inline_forbidden_reason
1955 = G_("function %q+F can never be inlined "
1956 "because it receives a non-local goto");
1957 return node;
1958 }
1959 break;
1960
1961 case RECORD_TYPE:
1962 case UNION_TYPE:
1963 /* We cannot inline a function of the form
1964
1965 void F (int i) { struct S { int ar[i]; } s; }
1966
1967 Attempting to do so produces a catch-22.
1968 If walk_tree examines the TYPE_FIELDS chain of RECORD_TYPE/
1969 UNION_TYPE nodes, then it goes into infinite recursion on a
1970 structure containing a pointer to its own type. If it doesn't,
1971 then the type node for S doesn't get adjusted properly when
1972 F is inlined.
1973
1974 ??? This is likely no longer true, but it's too late in the 4.0
1975 cycle to try to find out. This should be checked for 4.1. */
1976 for (t = TYPE_FIELDS (node); t; t = TREE_CHAIN (t))
1977 if (variably_modified_type_p (TREE_TYPE (t), NULL))
1978 {
1979 inline_forbidden_reason
1980 = G_("function %q+F can never be inlined "
1981 "because it uses variable sized variables");
1982 return node;
1983 }
1984
1985 default:
1986 break;
1987 }
1988
1989 return NULL_TREE;
1990 }
1991
1992 static tree
1993 inline_forbidden_p_2 (tree *nodep, int *walk_subtrees,
1994 void *fnp)
1995 {
1996 tree node = *nodep;
1997 tree fn = (tree) fnp;
1998
1999 if (TREE_CODE (node) == LABEL_DECL && DECL_CONTEXT (node) == fn)
2000 {
2001 inline_forbidden_reason
2002 = G_("function %q+F can never be inlined "
2003 "because it saves address of local label in a static variable");
2004 return node;
2005 }
2006
2007 if (TYPE_P (node))
2008 *walk_subtrees = 0;
2009
2010 return NULL_TREE;
2011 }
2012
2013 /* Return subexpression representing possible alloca call, if any. */
2014 static tree
2015 inline_forbidden_p (tree fndecl)
2016 {
2017 location_t saved_loc = input_location;
2018 block_stmt_iterator bsi;
2019 basic_block bb;
2020 tree ret = NULL_TREE;
2021 struct function *fun = DECL_STRUCT_FUNCTION (fndecl);
2022 tree step;
2023
2024 FOR_EACH_BB_FN (bb, fun)
2025 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
2026 {
2027 ret = walk_tree_without_duplicates (bsi_stmt_ptr (bsi),
2028 inline_forbidden_p_1, fndecl);
2029 if (ret)
2030 goto egress;
2031 }
2032
2033 for (step = fun->local_decls; step; step = TREE_CHAIN (step))
2034 {
2035 tree decl = TREE_VALUE (step);
2036 if (TREE_CODE (decl) == VAR_DECL
2037 && TREE_STATIC (decl)
2038 && !DECL_EXTERNAL (decl)
2039 && DECL_INITIAL (decl))
2040 ret = walk_tree_without_duplicates (&DECL_INITIAL (decl),
2041 inline_forbidden_p_2, fndecl);
2042 if (ret)
2043 goto egress;
2044 }
2045
2046 egress:
2047 input_location = saved_loc;
2048 return ret;
2049 }
2050
2051 /* Returns nonzero if FN is a function that does not have any
2052 fundamental inline blocking properties. */
2053
2054 static bool
2055 inlinable_function_p (tree fn)
2056 {
2057 bool inlinable = true;
2058 bool do_warning;
2059 tree always_inline;
2060
2061 /* If we've already decided this function shouldn't be inlined,
2062 there's no need to check again. */
2063 if (DECL_UNINLINABLE (fn))
2064 return false;
2065
2066 /* We only warn for functions declared `inline' by the user. */
2067 do_warning = (warn_inline
2068 && DECL_INLINE (fn)
2069 && DECL_DECLARED_INLINE_P (fn)
2070 && !DECL_IN_SYSTEM_HEADER (fn));
2071
2072 always_inline = lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn));
2073
2074 if (flag_really_no_inline
2075 && always_inline == NULL)
2076 {
2077 if (do_warning)
2078 warning (OPT_Winline, "function %q+F can never be inlined because it "
2079 "is suppressed using -fno-inline", fn);
2080 inlinable = false;
2081 }
2082
2083 /* Don't auto-inline anything that might not be bound within
2084 this unit of translation. */
2085 else if (!DECL_DECLARED_INLINE_P (fn)
2086 && DECL_REPLACEABLE_P (fn))
2087 inlinable = false;
2088
2089 else if (!function_attribute_inlinable_p (fn))
2090 {
2091 if (do_warning)
2092 warning (OPT_Winline, "function %q+F can never be inlined because it "
2093 "uses attributes conflicting with inlining", fn);
2094 inlinable = false;
2095 }
2096
2097 /* If we don't have the function body available, we can't inline it.
2098 However, this should not be recorded since we also get here for
2099 forward declared inline functions. Therefore, return at once. */
2100 if (!DECL_SAVED_TREE (fn))
2101 return false;
2102
2103 /* If we're not inlining at all, then we cannot inline this function. */
2104 else if (!flag_inline_trees)
2105 inlinable = false;
2106
2107 /* Only try to inline functions if DECL_INLINE is set. This should be
2108 true for all functions declared `inline', and for all other functions
2109 as well with -finline-functions.
2110
2111 Don't think of disregarding DECL_INLINE when flag_inline_trees == 2;
2112 it's the front-end that must set DECL_INLINE in this case, because
2113 dwarf2out loses if a function that does not have DECL_INLINE set is
2114 inlined anyway. That is why we have both DECL_INLINE and
2115 DECL_DECLARED_INLINE_P. */
2116 /* FIXME: When flag_inline_trees dies, the check for flag_unit_at_a_time
2117 here should be redundant. */
2118 else if (!DECL_INLINE (fn) && !flag_unit_at_a_time)
2119 inlinable = false;
2120
2121 else if (inline_forbidden_p (fn))
2122 {
2123 /* See if we should warn about uninlinable functions. Previously,
2124 some of these warnings would be issued while trying to expand
2125 the function inline, but that would cause multiple warnings
2126 about functions that would for example call alloca. But since
2127 this a property of the function, just one warning is enough.
2128 As a bonus we can now give more details about the reason why a
2129 function is not inlinable. */
2130 if (always_inline)
2131 sorry (inline_forbidden_reason, fn);
2132 else if (do_warning)
2133 warning (OPT_Winline, inline_forbidden_reason, fn);
2134
2135 inlinable = false;
2136 }
2137
2138 /* Squirrel away the result so that we don't have to check again. */
2139 DECL_UNINLINABLE (fn) = !inlinable;
2140
2141 return inlinable;
2142 }
2143
2144 /* Estimate the cost of a memory move. Use machine dependent
2145 word size and take possible memcpy call into account. */
2146
2147 int
2148 estimate_move_cost (tree type)
2149 {
2150 HOST_WIDE_INT size;
2151
2152 size = int_size_in_bytes (type);
2153
2154 if (size < 0 || size > MOVE_MAX_PIECES * MOVE_RATIO)
2155 /* Cost of a memcpy call, 3 arguments and the call. */
2156 return 4;
2157 else
2158 return ((size + MOVE_MAX_PIECES - 1) / MOVE_MAX_PIECES);
2159 }
2160
2161 /* Arguments for estimate_num_insns_1. */
2162
2163 struct eni_data
2164 {
2165 /* Used to return the number of insns. */
2166 int count;
2167
2168 /* Weights of various constructs. */
2169 eni_weights *weights;
2170 };
2171
2172 /* Used by estimate_num_insns. Estimate number of instructions seen
2173 by given statement. */
2174
2175 static tree
2176 estimate_num_insns_1 (tree *tp, int *walk_subtrees, void *data)
2177 {
2178 struct eni_data *const d = (struct eni_data *) data;
2179 tree x = *tp;
2180 unsigned cost;
2181
2182 if (IS_TYPE_OR_DECL_P (x))
2183 {
2184 *walk_subtrees = 0;
2185 return NULL;
2186 }
2187 /* Assume that constants and references counts nothing. These should
2188 be majorized by amount of operations among them we count later
2189 and are common target of CSE and similar optimizations. */
2190 else if (CONSTANT_CLASS_P (x) || REFERENCE_CLASS_P (x))
2191 return NULL;
2192
2193 switch (TREE_CODE (x))
2194 {
2195 /* Containers have no cost. */
2196 case TREE_LIST:
2197 case TREE_VEC:
2198 case BLOCK:
2199 case COMPONENT_REF:
2200 case BIT_FIELD_REF:
2201 case INDIRECT_REF:
2202 case ALIGN_INDIRECT_REF:
2203 case MISALIGNED_INDIRECT_REF:
2204 case ARRAY_REF:
2205 case ARRAY_RANGE_REF:
2206 case OBJ_TYPE_REF:
2207 case EXC_PTR_EXPR: /* ??? */
2208 case FILTER_EXPR: /* ??? */
2209 case COMPOUND_EXPR:
2210 case BIND_EXPR:
2211 case WITH_CLEANUP_EXPR:
2212 case PAREN_EXPR:
2213 CASE_CONVERT:
2214 case VIEW_CONVERT_EXPR:
2215 case SAVE_EXPR:
2216 case ADDR_EXPR:
2217 case COMPLEX_EXPR:
2218 case RANGE_EXPR:
2219 case CASE_LABEL_EXPR:
2220 case SSA_NAME:
2221 case CATCH_EXPR:
2222 case EH_FILTER_EXPR:
2223 case STATEMENT_LIST:
2224 case ERROR_MARK:
2225 case FDESC_EXPR:
2226 case VA_ARG_EXPR:
2227 case TRY_CATCH_EXPR:
2228 case TRY_FINALLY_EXPR:
2229 case LABEL_EXPR:
2230 case GOTO_EXPR:
2231 case RETURN_EXPR:
2232 case EXIT_EXPR:
2233 case LOOP_EXPR:
2234 case PHI_NODE:
2235 case WITH_SIZE_EXPR:
2236 case OMP_CLAUSE:
2237 case OMP_RETURN:
2238 case OMP_CONTINUE:
2239 case OMP_SECTIONS_SWITCH:
2240 case OMP_ATOMIC_STORE:
2241 break;
2242
2243 /* We don't account constants for now. Assume that the cost is amortized
2244 by operations that do use them. We may re-consider this decision once
2245 we are able to optimize the tree before estimating its size and break
2246 out static initializers. */
2247 case IDENTIFIER_NODE:
2248 case INTEGER_CST:
2249 case REAL_CST:
2250 case FIXED_CST:
2251 case COMPLEX_CST:
2252 case VECTOR_CST:
2253 case STRING_CST:
2254 case PREDICT_EXPR:
2255 *walk_subtrees = 0;
2256 return NULL;
2257
2258 /* CHANGE_DYNAMIC_TYPE_EXPR explicitly expands to nothing. */
2259 case CHANGE_DYNAMIC_TYPE_EXPR:
2260 *walk_subtrees = 0;
2261 return NULL;
2262
2263 /* Try to estimate the cost of assignments. We have three cases to
2264 deal with:
2265 1) Simple assignments to registers;
2266 2) Stores to things that must live in memory. This includes
2267 "normal" stores to scalars, but also assignments of large
2268 structures, or constructors of big arrays;
2269 3) TARGET_EXPRs.
2270
2271 Let us look at the first two cases, assuming we have "a = b + C":
2272 <GIMPLE_MODIFY_STMT <var_decl "a">
2273 <plus_expr <var_decl "b"> <constant C>>
2274 If "a" is a GIMPLE register, the assignment to it is free on almost
2275 any target, because "a" usually ends up in a real register. Hence
2276 the only cost of this expression comes from the PLUS_EXPR, and we
2277 can ignore the GIMPLE_MODIFY_STMT.
2278 If "a" is not a GIMPLE register, the assignment to "a" will most
2279 likely be a real store, so the cost of the GIMPLE_MODIFY_STMT is the cost
2280 of moving something into "a", which we compute using the function
2281 estimate_move_cost.
2282
2283 The third case deals with TARGET_EXPRs, for which the semantics are
2284 that a temporary is assigned, unless the TARGET_EXPR itself is being
2285 assigned to something else. In the latter case we do not need the
2286 temporary. E.g. in:
2287 <GIMPLE_MODIFY_STMT <var_decl "a"> <target_expr>>, the
2288 GIMPLE_MODIFY_STMT is free. */
2289 case INIT_EXPR:
2290 case GIMPLE_MODIFY_STMT:
2291 /* Is the right and side a TARGET_EXPR? */
2292 if (TREE_CODE (GENERIC_TREE_OPERAND (x, 1)) == TARGET_EXPR)
2293 break;
2294 /* ... fall through ... */
2295
2296 case TARGET_EXPR:
2297 x = GENERIC_TREE_OPERAND (x, 0);
2298 /* Is this an assignments to a register? */
2299 if (is_gimple_reg (x))
2300 break;
2301 /* Otherwise it's a store, so fall through to compute the move cost. */
2302
2303 case CONSTRUCTOR:
2304 d->count += estimate_move_cost (TREE_TYPE (x));
2305 break;
2306
2307 /* Assign cost of 1 to usual operations.
2308 ??? We may consider mapping RTL costs to this. */
2309 case COND_EXPR:
2310 case VEC_COND_EXPR:
2311
2312 case PLUS_EXPR:
2313 case POINTER_PLUS_EXPR:
2314 case MINUS_EXPR:
2315 case MULT_EXPR:
2316
2317 case FIXED_CONVERT_EXPR:
2318 case FIX_TRUNC_EXPR:
2319
2320 case NEGATE_EXPR:
2321 case FLOAT_EXPR:
2322 case MIN_EXPR:
2323 case MAX_EXPR:
2324 case ABS_EXPR:
2325
2326 case LSHIFT_EXPR:
2327 case RSHIFT_EXPR:
2328 case LROTATE_EXPR:
2329 case RROTATE_EXPR:
2330 case VEC_LSHIFT_EXPR:
2331 case VEC_RSHIFT_EXPR:
2332
2333 case BIT_IOR_EXPR:
2334 case BIT_XOR_EXPR:
2335 case BIT_AND_EXPR:
2336 case BIT_NOT_EXPR:
2337
2338 case TRUTH_ANDIF_EXPR:
2339 case TRUTH_ORIF_EXPR:
2340 case TRUTH_AND_EXPR:
2341 case TRUTH_OR_EXPR:
2342 case TRUTH_XOR_EXPR:
2343 case TRUTH_NOT_EXPR:
2344
2345 case LT_EXPR:
2346 case LE_EXPR:
2347 case GT_EXPR:
2348 case GE_EXPR:
2349 case EQ_EXPR:
2350 case NE_EXPR:
2351 case ORDERED_EXPR:
2352 case UNORDERED_EXPR:
2353
2354 case UNLT_EXPR:
2355 case UNLE_EXPR:
2356 case UNGT_EXPR:
2357 case UNGE_EXPR:
2358 case UNEQ_EXPR:
2359 case LTGT_EXPR:
2360
2361 case CONJ_EXPR:
2362
2363 case PREDECREMENT_EXPR:
2364 case PREINCREMENT_EXPR:
2365 case POSTDECREMENT_EXPR:
2366 case POSTINCREMENT_EXPR:
2367
2368 case ASM_EXPR:
2369
2370 case REALIGN_LOAD_EXPR:
2371
2372 case REDUC_MAX_EXPR:
2373 case REDUC_MIN_EXPR:
2374 case REDUC_PLUS_EXPR:
2375 case WIDEN_SUM_EXPR:
2376 case DOT_PROD_EXPR:
2377 case VEC_WIDEN_MULT_HI_EXPR:
2378 case VEC_WIDEN_MULT_LO_EXPR:
2379 case VEC_UNPACK_HI_EXPR:
2380 case VEC_UNPACK_LO_EXPR:
2381 case VEC_UNPACK_FLOAT_HI_EXPR:
2382 case VEC_UNPACK_FLOAT_LO_EXPR:
2383 case VEC_PACK_TRUNC_EXPR:
2384 case VEC_PACK_SAT_EXPR:
2385 case VEC_PACK_FIX_TRUNC_EXPR:
2386
2387 case WIDEN_MULT_EXPR:
2388
2389 case VEC_EXTRACT_EVEN_EXPR:
2390 case VEC_EXTRACT_ODD_EXPR:
2391 case VEC_INTERLEAVE_HIGH_EXPR:
2392 case VEC_INTERLEAVE_LOW_EXPR:
2393
2394 case RESX_EXPR:
2395 d->count += 1;
2396 break;
2397
2398 case SWITCH_EXPR:
2399 /* Take into account cost of the switch + guess 2 conditional jumps for
2400 each case label.
2401
2402 TODO: once the switch expansion logic is sufficiently separated, we can
2403 do better job on estimating cost of the switch. */
2404 d->count += TREE_VEC_LENGTH (SWITCH_LABELS (x)) * 2;
2405 break;
2406
2407 /* Few special cases of expensive operations. This is useful
2408 to avoid inlining on functions having too many of these. */
2409 case TRUNC_DIV_EXPR:
2410 case CEIL_DIV_EXPR:
2411 case FLOOR_DIV_EXPR:
2412 case ROUND_DIV_EXPR:
2413 case EXACT_DIV_EXPR:
2414 case TRUNC_MOD_EXPR:
2415 case CEIL_MOD_EXPR:
2416 case FLOOR_MOD_EXPR:
2417 case ROUND_MOD_EXPR:
2418 case RDIV_EXPR:
2419 d->count += d->weights->div_mod_cost;
2420 break;
2421 case CALL_EXPR:
2422 {
2423 tree decl = get_callee_fndecl (x);
2424 tree addr = CALL_EXPR_FN (x);
2425 tree funtype = TREE_TYPE (addr);
2426
2427 gcc_assert (POINTER_TYPE_P (funtype));
2428 funtype = TREE_TYPE (funtype);
2429
2430 if (decl && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_MD)
2431 cost = d->weights->target_builtin_call_cost;
2432 else
2433 cost = d->weights->call_cost;
2434
2435 if (decl && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
2436 switch (DECL_FUNCTION_CODE (decl))
2437 {
2438 case BUILT_IN_CONSTANT_P:
2439 *walk_subtrees = 0;
2440 return NULL_TREE;
2441 case BUILT_IN_EXPECT:
2442 return NULL_TREE;
2443 /* Prefetch instruction is not expensive. */
2444 case BUILT_IN_PREFETCH:
2445 cost = 1;
2446 break;
2447 default:
2448 break;
2449 }
2450
2451 if (decl)
2452 funtype = TREE_TYPE (decl);
2453
2454 /* Our cost must be kept in sync with cgraph_estimate_size_after_inlining
2455 that does use function declaration to figure out the arguments.
2456
2457 When we deal with function with no body nor prototype, base estimates on
2458 actual parameters of the call expression. Otherwise use either the actual
2459 arguments types or function declaration for more precise answer. */
2460 if (decl && DECL_ARGUMENTS (decl))
2461 {
2462 tree arg;
2463 for (arg = DECL_ARGUMENTS (decl); arg; arg = TREE_CHAIN (arg))
2464 d->count += estimate_move_cost (TREE_TYPE (arg));
2465 }
2466 else if (funtype && prototype_p (funtype))
2467 {
2468 tree t;
2469 for (t = TYPE_ARG_TYPES (funtype); t; t = TREE_CHAIN (t))
2470 d->count += estimate_move_cost (TREE_VALUE (t));
2471 }
2472 else
2473 {
2474 tree a;
2475 call_expr_arg_iterator iter;
2476 FOR_EACH_CALL_EXPR_ARG (a, iter, x)
2477 d->count += estimate_move_cost (TREE_TYPE (a));
2478 }
2479
2480 d->count += cost;
2481 break;
2482 }
2483
2484 case OMP_PARALLEL:
2485 case OMP_TASK:
2486 case OMP_FOR:
2487 case OMP_SECTIONS:
2488 case OMP_SINGLE:
2489 case OMP_SECTION:
2490 case OMP_MASTER:
2491 case OMP_ORDERED:
2492 case OMP_CRITICAL:
2493 case OMP_ATOMIC:
2494 case OMP_ATOMIC_LOAD:
2495 /* OpenMP directives are generally very expensive. */
2496 d->count += d->weights->omp_cost;
2497 break;
2498
2499 default:
2500 gcc_unreachable ();
2501 }
2502 return NULL;
2503 }
2504
2505 /* Estimate number of instructions that will be created by expanding EXPR.
2506 WEIGHTS contains weights attributed to various constructs. */
2507
2508 int
2509 estimate_num_insns (tree expr, eni_weights *weights)
2510 {
2511 struct pointer_set_t *visited_nodes;
2512 basic_block bb;
2513 block_stmt_iterator bsi;
2514 struct function *my_function;
2515 struct eni_data data;
2516
2517 data.count = 0;
2518 data.weights = weights;
2519
2520 /* If we're given an entire function, walk the CFG. */
2521 if (TREE_CODE (expr) == FUNCTION_DECL)
2522 {
2523 my_function = DECL_STRUCT_FUNCTION (expr);
2524 gcc_assert (my_function && my_function->cfg);
2525 visited_nodes = pointer_set_create ();
2526 FOR_EACH_BB_FN (bb, my_function)
2527 {
2528 for (bsi = bsi_start (bb);
2529 !bsi_end_p (bsi);
2530 bsi_next (&bsi))
2531 {
2532 walk_tree (bsi_stmt_ptr (bsi), estimate_num_insns_1,
2533 &data, visited_nodes);
2534 }
2535 }
2536 pointer_set_destroy (visited_nodes);
2537 }
2538 else
2539 walk_tree_without_duplicates (&expr, estimate_num_insns_1, &data);
2540
2541 return data.count;
2542 }
2543
2544 /* Initializes weights used by estimate_num_insns. */
2545
2546 void
2547 init_inline_once (void)
2548 {
2549 eni_inlining_weights.call_cost = PARAM_VALUE (PARAM_INLINE_CALL_COST);
2550 eni_inlining_weights.target_builtin_call_cost = 1;
2551 eni_inlining_weights.div_mod_cost = 10;
2552 eni_inlining_weights.omp_cost = 40;
2553
2554 eni_size_weights.call_cost = 1;
2555 eni_size_weights.target_builtin_call_cost = 1;
2556 eni_size_weights.div_mod_cost = 1;
2557 eni_size_weights.omp_cost = 40;
2558
2559 /* Estimating time for call is difficult, since we have no idea what the
2560 called function does. In the current uses of eni_time_weights,
2561 underestimating the cost does less harm than overestimating it, so
2562 we choose a rather small value here. */
2563 eni_time_weights.call_cost = 10;
2564 eni_time_weights.target_builtin_call_cost = 10;
2565 eni_time_weights.div_mod_cost = 10;
2566 eni_time_weights.omp_cost = 40;
2567 }
2568
2569 /* Install new lexical TREE_BLOCK underneath 'current_block'. */
2570 static void
2571 add_lexical_block (tree current_block, tree new_block)
2572 {
2573 tree *blk_p;
2574
2575 /* Walk to the last sub-block. */
2576 for (blk_p = &BLOCK_SUBBLOCKS (current_block);
2577 *blk_p;
2578 blk_p = &BLOCK_CHAIN (*blk_p))
2579 ;
2580 *blk_p = new_block;
2581 BLOCK_SUPERCONTEXT (new_block) = current_block;
2582 }
2583
2584 /* Fetch callee declaration from the call graph edge going from NODE and
2585 associated with STMR call statement. Return NULL_TREE if not found. */
2586 static tree
2587 get_indirect_callee_fndecl (struct cgraph_node *node, tree stmt)
2588 {
2589 struct cgraph_edge *cs;
2590
2591 cs = cgraph_edge (node, stmt);
2592 if (cs)
2593 return cs->callee->decl;
2594
2595 return NULL_TREE;
2596 }
2597
2598 /* If *TP is a CALL_EXPR, replace it with its inline expansion. */
2599
2600 static bool
2601 expand_call_inline (basic_block bb, tree stmt, tree *tp, void *data)
2602 {
2603 copy_body_data *id;
2604 tree t;
2605 tree retvar, use_retvar;
2606 tree fn;
2607 struct pointer_map_t *st;
2608 tree return_slot;
2609 tree modify_dest;
2610 location_t saved_location;
2611 struct cgraph_edge *cg_edge;
2612 const char *reason;
2613 basic_block return_block;
2614 edge e;
2615 block_stmt_iterator bsi, stmt_bsi;
2616 bool successfully_inlined = FALSE;
2617 bool purge_dead_abnormal_edges;
2618 tree t_step;
2619 tree var;
2620
2621 /* See what we've got. */
2622 id = (copy_body_data *) data;
2623 t = *tp;
2624
2625 /* Set input_location here so we get the right instantiation context
2626 if we call instantiate_decl from inlinable_function_p. */
2627 saved_location = input_location;
2628 if (EXPR_HAS_LOCATION (t))
2629 input_location = EXPR_LOCATION (t);
2630
2631 /* From here on, we're only interested in CALL_EXPRs. */
2632 if (TREE_CODE (t) != CALL_EXPR)
2633 goto egress;
2634
2635 /* First, see if we can figure out what function is being called.
2636 If we cannot, then there is no hope of inlining the function. */
2637 fn = get_callee_fndecl (t);
2638 if (!fn)
2639 {
2640 fn = get_indirect_callee_fndecl (id->dst_node, stmt);
2641 if (!fn)
2642 goto egress;
2643 }
2644
2645 /* Turn forward declarations into real ones. */
2646 fn = cgraph_node (fn)->decl;
2647
2648 /* If fn is a declaration of a function in a nested scope that was
2649 globally declared inline, we don't set its DECL_INITIAL.
2650 However, we can't blindly follow DECL_ABSTRACT_ORIGIN because the
2651 C++ front-end uses it for cdtors to refer to their internal
2652 declarations, that are not real functions. Fortunately those
2653 don't have trees to be saved, so we can tell by checking their
2654 DECL_SAVED_TREE. */
2655 if (! DECL_INITIAL (fn)
2656 && DECL_ABSTRACT_ORIGIN (fn)
2657 && DECL_SAVED_TREE (DECL_ABSTRACT_ORIGIN (fn)))
2658 fn = DECL_ABSTRACT_ORIGIN (fn);
2659
2660 /* Objective C and fortran still calls tree_rest_of_compilation directly.
2661 Kill this check once this is fixed. */
2662 if (!id->dst_node->analyzed)
2663 goto egress;
2664
2665 cg_edge = cgraph_edge (id->dst_node, stmt);
2666
2667 /* Constant propagation on argument done during previous inlining
2668 may create new direct call. Produce an edge for it. */
2669 if (!cg_edge)
2670 {
2671 struct cgraph_node *dest = cgraph_node (fn);
2672
2673 /* We have missing edge in the callgraph. This can happen in one case
2674 where previous inlining turned indirect call into direct call by
2675 constant propagating arguments. In all other cases we hit a bug
2676 (incorrect node sharing is most common reason for missing edges. */
2677 gcc_assert (dest->needed || !flag_unit_at_a_time);
2678 cgraph_create_edge (id->dst_node, dest, stmt,
2679 bb->count, CGRAPH_FREQ_BASE,
2680 bb->loop_depth)->inline_failed
2681 = N_("originally indirect function call not considered for inlining");
2682 if (dump_file)
2683 {
2684 fprintf (dump_file, "Created new direct edge to %s",
2685 cgraph_node_name (dest));
2686 }
2687 goto egress;
2688 }
2689
2690 /* Don't try to inline functions that are not well-suited to
2691 inlining. */
2692 if (!cgraph_inline_p (cg_edge, &reason))
2693 {
2694 /* If this call was originally indirect, we do not want to emit any
2695 inlining related warnings or sorry messages because there are no
2696 guarantees regarding those. */
2697 if (cg_edge->indirect_call)
2698 goto egress;
2699
2700 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn))
2701 /* Avoid warnings during early inline pass. */
2702 && (!flag_unit_at_a_time || cgraph_global_info_ready))
2703 {
2704 sorry ("inlining failed in call to %q+F: %s", fn, reason);
2705 sorry ("called from here");
2706 }
2707 else if (warn_inline && DECL_DECLARED_INLINE_P (fn)
2708 && !DECL_IN_SYSTEM_HEADER (fn)
2709 && strlen (reason)
2710 && !lookup_attribute ("noinline", DECL_ATTRIBUTES (fn))
2711 /* Avoid warnings during early inline pass. */
2712 && (!flag_unit_at_a_time || cgraph_global_info_ready))
2713 {
2714 warning (OPT_Winline, "inlining failed in call to %q+F: %s",
2715 fn, reason);
2716 warning (OPT_Winline, "called from here");
2717 }
2718 goto egress;
2719 }
2720 fn = cg_edge->callee->decl;
2721
2722 #ifdef ENABLE_CHECKING
2723 if (cg_edge->callee->decl != id->dst_node->decl)
2724 verify_cgraph_node (cg_edge->callee);
2725 #endif
2726
2727 /* We will be inlining this callee. */
2728 id->eh_region = lookup_stmt_eh_region (stmt);
2729
2730 /* Split the block holding the CALL_EXPR. */
2731 e = split_block (bb, stmt);
2732 bb = e->src;
2733 return_block = e->dest;
2734 remove_edge (e);
2735
2736 /* split_block splits after the statement; work around this by
2737 moving the call into the second block manually. Not pretty,
2738 but seems easier than doing the CFG manipulation by hand
2739 when the CALL_EXPR is in the last statement of BB. */
2740 stmt_bsi = bsi_last (bb);
2741 bsi_remove (&stmt_bsi, false);
2742
2743 /* If the CALL_EXPR was in the last statement of BB, it may have
2744 been the source of abnormal edges. In this case, schedule
2745 the removal of dead abnormal edges. */
2746 bsi = bsi_start (return_block);
2747 if (bsi_end_p (bsi))
2748 {
2749 bsi_insert_after (&bsi, stmt, BSI_NEW_STMT);
2750 purge_dead_abnormal_edges = true;
2751 }
2752 else
2753 {
2754 bsi_insert_before (&bsi, stmt, BSI_NEW_STMT);
2755 purge_dead_abnormal_edges = false;
2756 }
2757
2758 stmt_bsi = bsi_start (return_block);
2759
2760 /* Build a block containing code to initialize the arguments, the
2761 actual inline expansion of the body, and a label for the return
2762 statements within the function to jump to. The type of the
2763 statement expression is the return type of the function call. */
2764 id->block = make_node (BLOCK);
2765 BLOCK_ABSTRACT_ORIGIN (id->block) = fn;
2766 BLOCK_SOURCE_LOCATION (id->block) = input_location;
2767 add_lexical_block (TREE_BLOCK (stmt), id->block);
2768
2769 /* Local declarations will be replaced by their equivalents in this
2770 map. */
2771 st = id->decl_map;
2772 id->decl_map = pointer_map_create ();
2773
2774 /* Record the function we are about to inline. */
2775 id->src_fn = fn;
2776 id->src_node = cg_edge->callee;
2777 id->src_cfun = DECL_STRUCT_FUNCTION (fn);
2778 id->call_expr = t;
2779
2780 gcc_assert (!id->src_cfun->after_inlining);
2781
2782 id->entry_bb = bb;
2783 initialize_inlined_parameters (id, t, fn, bb);
2784
2785 if (DECL_INITIAL (fn))
2786 add_lexical_block (id->block, remap_blocks (DECL_INITIAL (fn), id));
2787
2788 /* Return statements in the function body will be replaced by jumps
2789 to the RET_LABEL. */
2790
2791 gcc_assert (DECL_INITIAL (fn));
2792 gcc_assert (TREE_CODE (DECL_INITIAL (fn)) == BLOCK);
2793
2794 /* Find the lhs to which the result of this call is assigned. */
2795 return_slot = NULL;
2796 if (TREE_CODE (stmt) == GIMPLE_MODIFY_STMT)
2797 {
2798 modify_dest = GIMPLE_STMT_OPERAND (stmt, 0);
2799
2800 /* The function which we are inlining might not return a value,
2801 in which case we should issue a warning that the function
2802 does not return a value. In that case the optimizers will
2803 see that the variable to which the value is assigned was not
2804 initialized. We do not want to issue a warning about that
2805 uninitialized variable. */
2806 if (DECL_P (modify_dest))
2807 TREE_NO_WARNING (modify_dest) = 1;
2808 if (CALL_EXPR_RETURN_SLOT_OPT (t))
2809 {
2810 return_slot = modify_dest;
2811 modify_dest = NULL;
2812 }
2813 }
2814 else
2815 modify_dest = NULL;
2816
2817 /* If we are inlining a call to the C++ operator new, we don't want
2818 to use type based alias analysis on the return value. Otherwise
2819 we may get confused if the compiler sees that the inlined new
2820 function returns a pointer which was just deleted. See bug
2821 33407. */
2822 if (DECL_IS_OPERATOR_NEW (fn))
2823 {
2824 return_slot = NULL;
2825 modify_dest = NULL;
2826 }
2827
2828 /* Declare the return variable for the function. */
2829 retvar = declare_return_variable (id, return_slot,
2830 modify_dest, &use_retvar);
2831
2832 if (DECL_IS_OPERATOR_NEW (fn))
2833 {
2834 gcc_assert (TREE_CODE (retvar) == VAR_DECL
2835 && POINTER_TYPE_P (TREE_TYPE (retvar)));
2836 DECL_NO_TBAA_P (retvar) = 1;
2837 }
2838
2839 /* This is it. Duplicate the callee body. Assume callee is
2840 pre-gimplified. Note that we must not alter the caller
2841 function in any way before this point, as this CALL_EXPR may be
2842 a self-referential call; if we're calling ourselves, we need to
2843 duplicate our body before altering anything. */
2844 copy_body (id, bb->count, bb->frequency, bb, return_block);
2845
2846 /* Add local vars in this inlined callee to caller. */
2847 t_step = id->src_cfun->local_decls;
2848 for (; t_step; t_step = TREE_CHAIN (t_step))
2849 {
2850 var = TREE_VALUE (t_step);
2851 if (TREE_STATIC (var) && !TREE_ASM_WRITTEN (var))
2852 cfun->local_decls = tree_cons (NULL_TREE, var,
2853 cfun->local_decls);
2854 else
2855 cfun->local_decls = tree_cons (NULL_TREE, remap_decl (var, id),
2856 cfun->local_decls);
2857 }
2858
2859 /* Clean up. */
2860 pointer_map_destroy (id->decl_map);
2861 id->decl_map = st;
2862
2863 /* If the inlined function returns a result that we care about,
2864 clobber the CALL_EXPR with a reference to the return variable. */
2865 if (use_retvar && (TREE_CODE (bsi_stmt (stmt_bsi)) != CALL_EXPR))
2866 {
2867 *tp = use_retvar;
2868 if (gimple_in_ssa_p (cfun))
2869 {
2870 update_stmt (stmt);
2871 mark_symbols_for_renaming (stmt);
2872 }
2873 maybe_clean_or_replace_eh_stmt (stmt, stmt);
2874 }
2875 else
2876 /* We're modifying a TSI owned by gimple_expand_calls_inline();
2877 tsi_delink() will leave the iterator in a sane state. */
2878 {
2879 /* Handle case of inlining function that miss return statement so
2880 return value becomes undefined. */
2881 if (TREE_CODE (stmt) == GIMPLE_MODIFY_STMT
2882 && TREE_CODE (GIMPLE_STMT_OPERAND (stmt, 0)) == SSA_NAME)
2883 {
2884 tree name = GIMPLE_STMT_OPERAND (stmt, 0);
2885 tree var = SSA_NAME_VAR (GIMPLE_STMT_OPERAND (stmt, 0));
2886 tree def = gimple_default_def (cfun, var);
2887
2888 /* If the variable is used undefined, make this name undefined via
2889 move. */
2890 if (def)
2891 {
2892 GIMPLE_STMT_OPERAND (stmt, 1) = def;
2893 update_stmt (stmt);
2894 }
2895 /* Otherwise make this variable undefined. */
2896 else
2897 {
2898 bsi_remove (&stmt_bsi, true);
2899 set_default_def (var, name);
2900 SSA_NAME_DEF_STMT (name) = build_empty_stmt ();
2901 }
2902 }
2903 else
2904 bsi_remove (&stmt_bsi, true);
2905 }
2906
2907 if (purge_dead_abnormal_edges)
2908 tree_purge_dead_abnormal_call_edges (return_block);
2909
2910 /* If the value of the new expression is ignored, that's OK. We
2911 don't warn about this for CALL_EXPRs, so we shouldn't warn about
2912 the equivalent inlined version either. */
2913 TREE_USED (*tp) = 1;
2914
2915 /* Output the inlining info for this abstract function, since it has been
2916 inlined. If we don't do this now, we can lose the information about the
2917 variables in the function when the blocks get blown away as soon as we
2918 remove the cgraph node. */
2919 (*debug_hooks->outlining_inline_function) (cg_edge->callee->decl);
2920
2921 /* Update callgraph if needed. */
2922 cgraph_remove_node (cg_edge->callee);
2923
2924 id->block = NULL_TREE;
2925 successfully_inlined = TRUE;
2926
2927 egress:
2928 input_location = saved_location;
2929 return successfully_inlined;
2930 }
2931
2932 /* Expand call statements reachable from STMT_P.
2933 We can only have CALL_EXPRs as the "toplevel" tree code or nested
2934 in a GIMPLE_MODIFY_STMT. See tree-gimple.c:get_call_expr_in(). We can
2935 unfortunately not use that function here because we need a pointer
2936 to the CALL_EXPR, not the tree itself. */
2937
2938 static bool
2939 gimple_expand_calls_inline (basic_block bb, copy_body_data *id)
2940 {
2941 block_stmt_iterator bsi;
2942
2943 /* Register specific tree functions. */
2944 tree_register_cfg_hooks ();
2945 for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
2946 {
2947 tree *expr_p = bsi_stmt_ptr (bsi);
2948 tree stmt = *expr_p;
2949
2950 if (TREE_CODE (*expr_p) == GIMPLE_MODIFY_STMT)
2951 expr_p = &GIMPLE_STMT_OPERAND (*expr_p, 1);
2952 if (TREE_CODE (*expr_p) == WITH_SIZE_EXPR)
2953 expr_p = &TREE_OPERAND (*expr_p, 0);
2954 if (TREE_CODE (*expr_p) == CALL_EXPR)
2955 if (expand_call_inline (bb, stmt, expr_p, id))
2956 return true;
2957 }
2958 return false;
2959 }
2960
2961 /* Walk all basic blocks created after FIRST and try to fold every statement
2962 in the STATEMENTS pointer set. */
2963 static void
2964 fold_marked_statements (int first, struct pointer_set_t *statements)
2965 {
2966 for (;first < n_basic_blocks;first++)
2967 if (BASIC_BLOCK (first))
2968 {
2969 block_stmt_iterator bsi;
2970 for (bsi = bsi_start (BASIC_BLOCK (first));
2971 !bsi_end_p (bsi); bsi_next (&bsi))
2972 if (pointer_set_contains (statements, bsi_stmt (bsi)))
2973 {
2974 tree old_stmt = bsi_stmt (bsi);
2975 tree old_call = get_call_expr_in (old_stmt);
2976
2977 if (fold_stmt (bsi_stmt_ptr (bsi)))
2978 {
2979 update_stmt (bsi_stmt (bsi));
2980 if (old_call)
2981 cgraph_update_edges_for_call_stmt (old_stmt, old_call,
2982 bsi_stmt (bsi));
2983 if (maybe_clean_or_replace_eh_stmt (old_stmt,
2984 bsi_stmt (bsi)))
2985 tree_purge_dead_eh_edges (BASIC_BLOCK (first));
2986 }
2987 }
2988 }
2989 }
2990
2991 /* Return true if BB has at least one abnormal outgoing edge. */
2992
2993 static inline bool
2994 has_abnormal_outgoing_edge_p (basic_block bb)
2995 {
2996 edge e;
2997 edge_iterator ei;
2998
2999 FOR_EACH_EDGE (e, ei, bb->succs)
3000 if (e->flags & EDGE_ABNORMAL)
3001 return true;
3002
3003 return false;
3004 }
3005
3006 /* Expand calls to inline functions in the body of FN. */
3007
3008 unsigned int
3009 optimize_inline_calls (tree fn)
3010 {
3011 copy_body_data id;
3012 tree prev_fn;
3013 basic_block bb;
3014 int last = n_basic_blocks;
3015 struct gimplify_ctx gctx;
3016
3017 /* There is no point in performing inlining if errors have already
3018 occurred -- and we might crash if we try to inline invalid
3019 code. */
3020 if (errorcount || sorrycount)
3021 return 0;
3022
3023 /* Clear out ID. */
3024 memset (&id, 0, sizeof (id));
3025
3026 id.src_node = id.dst_node = cgraph_node (fn);
3027 id.dst_fn = fn;
3028 /* Or any functions that aren't finished yet. */
3029 prev_fn = NULL_TREE;
3030 if (current_function_decl)
3031 {
3032 id.dst_fn = current_function_decl;
3033 prev_fn = current_function_decl;
3034 }
3035
3036 id.copy_decl = copy_decl_maybe_to_var;
3037 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
3038 id.transform_new_cfg = false;
3039 id.transform_return_to_modify = true;
3040 id.transform_lang_insert_block = NULL;
3041 id.statements_to_fold = pointer_set_create ();
3042
3043 push_gimplify_context (&gctx);
3044
3045 /* We make no attempts to keep dominance info up-to-date. */
3046 free_dominance_info (CDI_DOMINATORS);
3047 free_dominance_info (CDI_POST_DOMINATORS);
3048
3049 /* Reach the trees by walking over the CFG, and note the
3050 enclosing basic-blocks in the call edges. */
3051 /* We walk the blocks going forward, because inlined function bodies
3052 will split id->current_basic_block, and the new blocks will
3053 follow it; we'll trudge through them, processing their CALL_EXPRs
3054 along the way. */
3055 FOR_EACH_BB (bb)
3056 gimple_expand_calls_inline (bb, &id);
3057
3058 pop_gimplify_context (NULL);
3059
3060 #ifdef ENABLE_CHECKING
3061 {
3062 struct cgraph_edge *e;
3063
3064 verify_cgraph_node (id.dst_node);
3065
3066 /* Double check that we inlined everything we are supposed to inline. */
3067 for (e = id.dst_node->callees; e; e = e->next_callee)
3068 gcc_assert (e->inline_failed);
3069 }
3070 #endif
3071
3072 /* Fold the statements before compacting/renumbering the basic blocks. */
3073 fold_marked_statements (last, id.statements_to_fold);
3074 pointer_set_destroy (id.statements_to_fold);
3075
3076 /* Renumber the (code) basic_blocks consecutively. */
3077 compact_blocks ();
3078 /* Renumber the lexical scoping (non-code) blocks consecutively. */
3079 number_blocks (fn);
3080
3081 /* We are not going to maintain the cgraph edges up to date.
3082 Kill it so it won't confuse us. */
3083 cgraph_node_remove_callees (id.dst_node);
3084
3085 fold_cond_expr_cond ();
3086 /* It would be nice to check SSA/CFG/statement consistency here, but it is
3087 not possible yet - the IPA passes might make various functions to not
3088 throw and they don't care to proactively update local EH info. This is
3089 done later in fixup_cfg pass that also execute the verification. */
3090 return (TODO_update_ssa | TODO_cleanup_cfg
3091 | (gimple_in_ssa_p (cfun) ? TODO_remove_unused_locals : 0)
3092 | (profile_status != PROFILE_ABSENT ? TODO_rebuild_frequencies : 0));
3093 }
3094
3095 /* Passed to walk_tree. Copies the node pointed to, if appropriate. */
3096
3097 tree
3098 copy_tree_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
3099 {
3100 enum tree_code code = TREE_CODE (*tp);
3101 enum tree_code_class cl = TREE_CODE_CLASS (code);
3102
3103 /* We make copies of most nodes. */
3104 if (IS_EXPR_CODE_CLASS (cl)
3105 || IS_GIMPLE_STMT_CODE_CLASS (cl)
3106 || code == TREE_LIST
3107 || code == TREE_VEC
3108 || code == TYPE_DECL
3109 || code == OMP_CLAUSE)
3110 {
3111 /* Because the chain gets clobbered when we make a copy, we save it
3112 here. */
3113 tree chain = NULL_TREE, new;
3114
3115 if (!GIMPLE_TUPLE_P (*tp))
3116 chain = TREE_CHAIN (*tp);
3117
3118 /* Copy the node. */
3119 new = copy_node (*tp);
3120
3121 /* Propagate mudflap marked-ness. */
3122 if (flag_mudflap && mf_marked_p (*tp))
3123 mf_mark (new);
3124
3125 *tp = new;
3126
3127 /* Now, restore the chain, if appropriate. That will cause
3128 walk_tree to walk into the chain as well. */
3129 if (code == PARM_DECL
3130 || code == TREE_LIST
3131 || code == OMP_CLAUSE)
3132 TREE_CHAIN (*tp) = chain;
3133
3134 /* For now, we don't update BLOCKs when we make copies. So, we
3135 have to nullify all BIND_EXPRs. */
3136 if (TREE_CODE (*tp) == BIND_EXPR)
3137 BIND_EXPR_BLOCK (*tp) = NULL_TREE;
3138 }
3139 else if (code == CONSTRUCTOR)
3140 {
3141 /* CONSTRUCTOR nodes need special handling because
3142 we need to duplicate the vector of elements. */
3143 tree new;
3144
3145 new = copy_node (*tp);
3146
3147 /* Propagate mudflap marked-ness. */
3148 if (flag_mudflap && mf_marked_p (*tp))
3149 mf_mark (new);
3150
3151 CONSTRUCTOR_ELTS (new) = VEC_copy (constructor_elt, gc,
3152 CONSTRUCTOR_ELTS (*tp));
3153 *tp = new;
3154 }
3155 else if (TREE_CODE_CLASS (code) == tcc_type)
3156 *walk_subtrees = 0;
3157 else if (TREE_CODE_CLASS (code) == tcc_declaration)
3158 *walk_subtrees = 0;
3159 else if (TREE_CODE_CLASS (code) == tcc_constant)
3160 *walk_subtrees = 0;
3161 else
3162 gcc_assert (code != STATEMENT_LIST);
3163 return NULL_TREE;
3164 }
3165
3166 /* The SAVE_EXPR pointed to by TP is being copied. If ST contains
3167 information indicating to what new SAVE_EXPR this one should be mapped,
3168 use that one. Otherwise, create a new node and enter it in ST. FN is
3169 the function into which the copy will be placed. */
3170
3171 static void
3172 remap_save_expr (tree *tp, void *st_, int *walk_subtrees)
3173 {
3174 struct pointer_map_t *st = (struct pointer_map_t *) st_;
3175 tree *n;
3176 tree t;
3177
3178 /* See if we already encountered this SAVE_EXPR. */
3179 n = (tree *) pointer_map_contains (st, *tp);
3180
3181 /* If we didn't already remap this SAVE_EXPR, do so now. */
3182 if (!n)
3183 {
3184 t = copy_node (*tp);
3185
3186 /* Remember this SAVE_EXPR. */
3187 *pointer_map_insert (st, *tp) = t;
3188 /* Make sure we don't remap an already-remapped SAVE_EXPR. */
3189 *pointer_map_insert (st, t) = t;
3190 }
3191 else
3192 {
3193 /* We've already walked into this SAVE_EXPR; don't do it again. */
3194 *walk_subtrees = 0;
3195 t = *n;
3196 }
3197
3198 /* Replace this SAVE_EXPR with the copy. */
3199 *tp = t;
3200 }
3201
3202 /* Called via walk_tree. If *TP points to a DECL_STMT for a local label,
3203 copies the declaration and enters it in the splay_tree in DATA (which is
3204 really an `copy_body_data *'). */
3205
3206 static tree
3207 mark_local_for_remap_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
3208 void *data)
3209 {
3210 copy_body_data *id = (copy_body_data *) data;
3211
3212 /* Don't walk into types. */
3213 if (TYPE_P (*tp))
3214 *walk_subtrees = 0;
3215
3216 else if (TREE_CODE (*tp) == LABEL_EXPR)
3217 {
3218 tree decl = TREE_OPERAND (*tp, 0);
3219
3220 /* Copy the decl and remember the copy. */
3221 insert_decl_map (id, decl, id->copy_decl (decl, id));
3222 }
3223
3224 return NULL_TREE;
3225 }
3226
3227 /* Perform any modifications to EXPR required when it is unsaved. Does
3228 not recurse into EXPR's subtrees. */
3229
3230 static void
3231 unsave_expr_1 (tree expr)
3232 {
3233 switch (TREE_CODE (expr))
3234 {
3235 case TARGET_EXPR:
3236 /* Don't mess with a TARGET_EXPR that hasn't been expanded.
3237 It's OK for this to happen if it was part of a subtree that
3238 isn't immediately expanded, such as operand 2 of another
3239 TARGET_EXPR. */
3240 if (TREE_OPERAND (expr, 1))
3241 break;
3242
3243 TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 3);
3244 TREE_OPERAND (expr, 3) = NULL_TREE;
3245 break;
3246
3247 default:
3248 break;
3249 }
3250 }
3251
3252 /* Called via walk_tree when an expression is unsaved. Using the
3253 splay_tree pointed to by ST (which is really a `splay_tree'),
3254 remaps all local declarations to appropriate replacements. */
3255
3256 static tree
3257 unsave_r (tree *tp, int *walk_subtrees, void *data)
3258 {
3259 copy_body_data *id = (copy_body_data *) data;
3260 struct pointer_map_t *st = id->decl_map;
3261 tree *n;
3262
3263 /* Only a local declaration (variable or label). */
3264 if ((TREE_CODE (*tp) == VAR_DECL && !TREE_STATIC (*tp))
3265 || TREE_CODE (*tp) == LABEL_DECL)
3266 {
3267 /* Lookup the declaration. */
3268 n = (tree *) pointer_map_contains (st, *tp);
3269
3270 /* If it's there, remap it. */
3271 if (n)
3272 *tp = *n;
3273 }
3274
3275 else if (TREE_CODE (*tp) == STATEMENT_LIST)
3276 copy_statement_list (tp);
3277 else if (TREE_CODE (*tp) == BIND_EXPR)
3278 copy_bind_expr (tp, walk_subtrees, id);
3279 else if (TREE_CODE (*tp) == SAVE_EXPR)
3280 remap_save_expr (tp, st, walk_subtrees);
3281 else
3282 {
3283 copy_tree_r (tp, walk_subtrees, NULL);
3284
3285 /* Do whatever unsaving is required. */
3286 unsave_expr_1 (*tp);
3287 }
3288
3289 /* Keep iterating. */
3290 return NULL_TREE;
3291 }
3292
3293 /* Copies everything in EXPR and replaces variables, labels
3294 and SAVE_EXPRs local to EXPR. */
3295
3296 tree
3297 unsave_expr_now (tree expr)
3298 {
3299 copy_body_data id;
3300
3301 /* There's nothing to do for NULL_TREE. */
3302 if (expr == 0)
3303 return expr;
3304
3305 /* Set up ID. */
3306 memset (&id, 0, sizeof (id));
3307 id.src_fn = current_function_decl;
3308 id.dst_fn = current_function_decl;
3309 id.decl_map = pointer_map_create ();
3310
3311 id.copy_decl = copy_decl_no_change;
3312 id.transform_call_graph_edges = CB_CGE_DUPLICATE;
3313 id.transform_new_cfg = false;
3314 id.transform_return_to_modify = false;
3315 id.transform_lang_insert_block = NULL;
3316
3317 /* Walk the tree once to find local labels. */
3318 walk_tree_without_duplicates (&expr, mark_local_for_remap_r, &id);
3319
3320 /* Walk the tree again, copying, remapping, and unsaving. */
3321 walk_tree (&expr, unsave_r, &id, NULL);
3322
3323 /* Clean up. */
3324 pointer_map_destroy (id.decl_map);
3325
3326 return expr;
3327 }
3328
3329 /* Allow someone to determine if SEARCH is a child of TOP from gdb. */
3330
3331 static tree
3332 debug_find_tree_1 (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED, void *data)
3333 {
3334 if (*tp == data)
3335 return (tree) data;
3336 else
3337 return NULL;
3338 }
3339
3340 bool
3341 debug_find_tree (tree top, tree search)
3342 {
3343 return walk_tree_without_duplicates (&top, debug_find_tree_1, search) != 0;
3344 }
3345
3346
3347 /* Declare the variables created by the inliner. Add all the variables in
3348 VARS to BIND_EXPR. */
3349
3350 static void
3351 declare_inline_vars (tree block, tree vars)
3352 {
3353 tree t;
3354 for (t = vars; t; t = TREE_CHAIN (t))
3355 {
3356 DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
3357 gcc_assert (!TREE_STATIC (t) && !TREE_ASM_WRITTEN (t));
3358 cfun->local_decls = tree_cons (NULL_TREE, t, cfun->local_decls);
3359 }
3360
3361 if (block)
3362 BLOCK_VARS (block) = chainon (BLOCK_VARS (block), vars);
3363 }
3364
3365
3366 /* Copy NODE (which must be a DECL). The DECL originally was in the FROM_FN,
3367 but now it will be in the TO_FN. PARM_TO_VAR means enable PARM_DECL to
3368 VAR_DECL translation. */
3369
3370 static tree
3371 copy_decl_for_dup_finish (copy_body_data *id, tree decl, tree copy)
3372 {
3373 /* Don't generate debug information for the copy if we wouldn't have
3374 generated it for the copy either. */
3375 DECL_ARTIFICIAL (copy) = DECL_ARTIFICIAL (decl);
3376 DECL_IGNORED_P (copy) = DECL_IGNORED_P (decl);
3377
3378 /* Set the DECL_ABSTRACT_ORIGIN so the debugging routines know what
3379 declaration inspired this copy. */
3380 DECL_ABSTRACT_ORIGIN (copy) = DECL_ORIGIN (decl);
3381
3382 /* The new variable/label has no RTL, yet. */
3383 if (CODE_CONTAINS_STRUCT (TREE_CODE (copy), TS_DECL_WRTL)
3384 && !TREE_STATIC (copy) && !DECL_EXTERNAL (copy))
3385 SET_DECL_RTL (copy, NULL_RTX);
3386
3387 /* These args would always appear unused, if not for this. */
3388 TREE_USED (copy) = 1;
3389
3390 /* Set the context for the new declaration. */
3391 if (!DECL_CONTEXT (decl))
3392 /* Globals stay global. */
3393 ;
3394 else if (DECL_CONTEXT (decl) != id->src_fn)
3395 /* Things that weren't in the scope of the function we're inlining
3396 from aren't in the scope we're inlining to, either. */
3397 ;
3398 else if (TREE_STATIC (decl))
3399 /* Function-scoped static variables should stay in the original
3400 function. */
3401 ;
3402 else
3403 /* Ordinary automatic local variables are now in the scope of the
3404 new function. */
3405 DECL_CONTEXT (copy) = id->dst_fn;
3406
3407 return copy;
3408 }
3409
3410 static tree
3411 copy_decl_to_var (tree decl, copy_body_data *id)
3412 {
3413 tree copy, type;
3414
3415 gcc_assert (TREE_CODE (decl) == PARM_DECL
3416 || TREE_CODE (decl) == RESULT_DECL);
3417
3418 type = TREE_TYPE (decl);
3419
3420 copy = build_decl (VAR_DECL, DECL_NAME (decl), type);
3421 TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (decl);
3422 TREE_READONLY (copy) = TREE_READONLY (decl);
3423 TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (decl);
3424 DECL_GIMPLE_REG_P (copy) = DECL_GIMPLE_REG_P (decl);
3425 DECL_NO_TBAA_P (copy) = DECL_NO_TBAA_P (decl);
3426
3427 return copy_decl_for_dup_finish (id, decl, copy);
3428 }
3429
3430 /* Like copy_decl_to_var, but create a return slot object instead of a
3431 pointer variable for return by invisible reference. */
3432
3433 static tree
3434 copy_result_decl_to_var (tree decl, copy_body_data *id)
3435 {
3436 tree copy, type;
3437
3438 gcc_assert (TREE_CODE (decl) == PARM_DECL
3439 || TREE_CODE (decl) == RESULT_DECL);
3440
3441 type = TREE_TYPE (decl);
3442 if (DECL_BY_REFERENCE (decl))
3443 type = TREE_TYPE (type);
3444
3445 copy = build_decl (VAR_DECL, DECL_NAME (decl), type);
3446 TREE_READONLY (copy) = TREE_READONLY (decl);
3447 TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (decl);
3448 if (!DECL_BY_REFERENCE (decl))
3449 {
3450 TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (decl);
3451 DECL_GIMPLE_REG_P (copy) = DECL_GIMPLE_REG_P (decl);
3452 DECL_NO_TBAA_P (copy) = DECL_NO_TBAA_P (decl);
3453 }
3454
3455 return copy_decl_for_dup_finish (id, decl, copy);
3456 }
3457
3458
3459 tree
3460 copy_decl_no_change (tree decl, copy_body_data *id)
3461 {
3462 tree copy;
3463
3464 copy = copy_node (decl);
3465
3466 /* The COPY is not abstract; it will be generated in DST_FN. */
3467 DECL_ABSTRACT (copy) = 0;
3468 lang_hooks.dup_lang_specific_decl (copy);
3469
3470 /* TREE_ADDRESSABLE isn't used to indicate that a label's address has
3471 been taken; it's for internal bookkeeping in expand_goto_internal. */
3472 if (TREE_CODE (copy) == LABEL_DECL)
3473 {
3474 TREE_ADDRESSABLE (copy) = 0;
3475 LABEL_DECL_UID (copy) = -1;
3476 }
3477
3478 return copy_decl_for_dup_finish (id, decl, copy);
3479 }
3480
3481 static tree
3482 copy_decl_maybe_to_var (tree decl, copy_body_data *id)
3483 {
3484 if (TREE_CODE (decl) == PARM_DECL || TREE_CODE (decl) == RESULT_DECL)
3485 return copy_decl_to_var (decl, id);
3486 else
3487 return copy_decl_no_change (decl, id);
3488 }
3489
3490 /* Return a copy of the function's argument tree. */
3491 static tree
3492 copy_arguments_for_versioning (tree orig_parm, copy_body_data * id)
3493 {
3494 tree *arg_copy, *parg;
3495
3496 arg_copy = &orig_parm;
3497 for (parg = arg_copy; *parg; parg = &TREE_CHAIN (*parg))
3498 {
3499 tree new = remap_decl (*parg, id);
3500 lang_hooks.dup_lang_specific_decl (new);
3501 TREE_CHAIN (new) = TREE_CHAIN (*parg);
3502 *parg = new;
3503 }
3504 return orig_parm;
3505 }
3506
3507 /* Return a copy of the function's static chain. */
3508 static tree
3509 copy_static_chain (tree static_chain, copy_body_data * id)
3510 {
3511 tree *chain_copy, *pvar;
3512
3513 chain_copy = &static_chain;
3514 for (pvar = chain_copy; *pvar; pvar = &TREE_CHAIN (*pvar))
3515 {
3516 tree new = remap_decl (*pvar, id);
3517 lang_hooks.dup_lang_specific_decl (new);
3518 TREE_CHAIN (new) = TREE_CHAIN (*pvar);
3519 *pvar = new;
3520 }
3521 return static_chain;
3522 }
3523
3524 /* Return true if the function is allowed to be versioned.
3525 This is a guard for the versioning functionality. */
3526 bool
3527 tree_versionable_function_p (tree fndecl)
3528 {
3529 if (fndecl == NULL_TREE)
3530 return false;
3531 /* ??? There are cases where a function is
3532 uninlinable but can be versioned. */
3533 if (!tree_inlinable_function_p (fndecl))
3534 return false;
3535
3536 return true;
3537 }
3538
3539 /* Create a copy of a function's tree.
3540 OLD_DECL and NEW_DECL are FUNCTION_DECL tree nodes
3541 of the original function and the new copied function
3542 respectively. In case we want to replace a DECL
3543 tree with another tree while duplicating the function's
3544 body, TREE_MAP represents the mapping between these
3545 trees. If UPDATE_CLONES is set, the call_stmt fields
3546 of edges of clones of the function will be updated. */
3547 void
3548 tree_function_versioning (tree old_decl, tree new_decl, varray_type tree_map,
3549 bool update_clones)
3550 {
3551 struct cgraph_node *old_version_node;
3552 struct cgraph_node *new_version_node;
3553 copy_body_data id;
3554 tree p;
3555 unsigned i;
3556 struct ipa_replace_map *replace_info;
3557 basic_block old_entry_block;
3558 tree t_step;
3559 tree old_current_function_decl = current_function_decl;
3560
3561 gcc_assert (TREE_CODE (old_decl) == FUNCTION_DECL
3562 && TREE_CODE (new_decl) == FUNCTION_DECL);
3563 DECL_POSSIBLY_INLINED (old_decl) = 1;
3564
3565 old_version_node = cgraph_node (old_decl);
3566 new_version_node = cgraph_node (new_decl);
3567
3568 DECL_ARTIFICIAL (new_decl) = 1;
3569 DECL_ABSTRACT_ORIGIN (new_decl) = DECL_ORIGIN (old_decl);
3570
3571 /* Prepare the data structures for the tree copy. */
3572 memset (&id, 0, sizeof (id));
3573
3574 /* Generate a new name for the new version. */
3575 if (!update_clones)
3576 {
3577 DECL_NAME (new_decl) = create_tmp_var_name (NULL);
3578 SET_DECL_ASSEMBLER_NAME (new_decl, DECL_NAME (new_decl));
3579 SET_DECL_RTL (new_decl, NULL_RTX);
3580 id.statements_to_fold = pointer_set_create ();
3581 }
3582
3583 id.decl_map = pointer_map_create ();
3584 id.src_fn = old_decl;
3585 id.dst_fn = new_decl;
3586 id.src_node = old_version_node;
3587 id.dst_node = new_version_node;
3588 id.src_cfun = DECL_STRUCT_FUNCTION (old_decl);
3589
3590 id.copy_decl = copy_decl_no_change;
3591 id.transform_call_graph_edges
3592 = update_clones ? CB_CGE_MOVE_CLONES : CB_CGE_MOVE;
3593 id.transform_new_cfg = true;
3594 id.transform_return_to_modify = false;
3595 id.transform_lang_insert_block = NULL;
3596
3597 current_function_decl = new_decl;
3598 old_entry_block = ENTRY_BLOCK_PTR_FOR_FUNCTION
3599 (DECL_STRUCT_FUNCTION (old_decl));
3600 initialize_cfun (new_decl, old_decl,
3601 old_entry_block->count,
3602 old_entry_block->frequency);
3603 push_cfun (DECL_STRUCT_FUNCTION (new_decl));
3604
3605 /* Copy the function's static chain. */
3606 p = DECL_STRUCT_FUNCTION (old_decl)->static_chain_decl;
3607 if (p)
3608 DECL_STRUCT_FUNCTION (new_decl)->static_chain_decl =
3609 copy_static_chain (DECL_STRUCT_FUNCTION (old_decl)->static_chain_decl,
3610 &id);
3611 /* Copy the function's arguments. */
3612 if (DECL_ARGUMENTS (old_decl) != NULL_TREE)
3613 DECL_ARGUMENTS (new_decl) =
3614 copy_arguments_for_versioning (DECL_ARGUMENTS (old_decl), &id);
3615
3616 /* If there's a tree_map, prepare for substitution. */
3617 if (tree_map)
3618 for (i = 0; i < VARRAY_ACTIVE_SIZE (tree_map); i++)
3619 {
3620 replace_info = (struct ipa_replace_map *) VARRAY_GENERIC_PTR (tree_map, i);
3621 if (replace_info->replace_p)
3622 insert_decl_map (&id, replace_info->old_tree,
3623 replace_info->new_tree);
3624 }
3625
3626 DECL_INITIAL (new_decl) = remap_blocks (DECL_INITIAL (id.src_fn), &id);
3627
3628 /* Renumber the lexical scoping (non-code) blocks consecutively. */
3629 number_blocks (id.dst_fn);
3630
3631 if (DECL_STRUCT_FUNCTION (old_decl)->local_decls != NULL_TREE)
3632 /* Add local vars. */
3633 for (t_step = DECL_STRUCT_FUNCTION (old_decl)->local_decls;
3634 t_step; t_step = TREE_CHAIN (t_step))
3635 {
3636 tree var = TREE_VALUE (t_step);
3637 if (TREE_STATIC (var) && !TREE_ASM_WRITTEN (var))
3638 cfun->local_decls = tree_cons (NULL_TREE, var, cfun->local_decls);
3639 else
3640 cfun->local_decls =
3641 tree_cons (NULL_TREE, remap_decl (var, &id),
3642 cfun->local_decls);
3643 }
3644
3645 /* Copy the Function's body. */
3646 copy_body (&id, old_entry_block->count, old_entry_block->frequency, ENTRY_BLOCK_PTR, EXIT_BLOCK_PTR);
3647
3648 if (DECL_RESULT (old_decl) != NULL_TREE)
3649 {
3650 tree *res_decl = &DECL_RESULT (old_decl);
3651 DECL_RESULT (new_decl) = remap_decl (*res_decl, &id);
3652 lang_hooks.dup_lang_specific_decl (DECL_RESULT (new_decl));
3653 }
3654
3655 /* Renumber the lexical scoping (non-code) blocks consecutively. */
3656 number_blocks (new_decl);
3657
3658 /* Clean up. */
3659 pointer_map_destroy (id.decl_map);
3660 if (!update_clones)
3661 {
3662 fold_marked_statements (0, id.statements_to_fold);
3663 pointer_set_destroy (id.statements_to_fold);
3664 fold_cond_expr_cond ();
3665 }
3666 if (gimple_in_ssa_p (cfun))
3667 {
3668 free_dominance_info (CDI_DOMINATORS);
3669 free_dominance_info (CDI_POST_DOMINATORS);
3670 if (!update_clones)
3671 delete_unreachable_blocks ();
3672 update_ssa (TODO_update_ssa);
3673 if (!update_clones)
3674 {
3675 fold_cond_expr_cond ();
3676 if (need_ssa_update_p ())
3677 update_ssa (TODO_update_ssa);
3678 }
3679 }
3680 free_dominance_info (CDI_DOMINATORS);
3681 free_dominance_info (CDI_POST_DOMINATORS);
3682 pop_cfun ();
3683 current_function_decl = old_current_function_decl;
3684 gcc_assert (!current_function_decl
3685 || DECL_STRUCT_FUNCTION (current_function_decl) == cfun);
3686 return;
3687 }
3688
3689 /* Duplicate a type, fields and all. */
3690
3691 tree
3692 build_duplicate_type (tree type)
3693 {
3694 struct copy_body_data id;
3695
3696 memset (&id, 0, sizeof (id));
3697 id.src_fn = current_function_decl;
3698 id.dst_fn = current_function_decl;
3699 id.src_cfun = cfun;
3700 id.decl_map = pointer_map_create ();
3701 id.copy_decl = copy_decl_no_change;
3702
3703 type = remap_type_1 (type, &id);
3704
3705 pointer_map_destroy (id.decl_map);
3706
3707 TYPE_CANONICAL (type) = type;
3708
3709 return type;
3710 }
3711
3712 /* Return whether it is safe to inline a function because it used different
3713 target specific options or different optimization options. */
3714 bool
3715 tree_can_inline_p (tree caller, tree callee)
3716 {
3717 /* Don't inline a function with a higher optimization level than the
3718 caller, or with different space constraints (hot/cold functions). */
3719 tree caller_tree = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (caller);
3720 tree callee_tree = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (callee);
3721
3722 if (caller_tree != callee_tree)
3723 {
3724 struct cl_optimization *caller_opt
3725 = TREE_OPTIMIZATION ((caller_tree)
3726 ? caller_tree
3727 : optimization_default_node);
3728
3729 struct cl_optimization *callee_opt
3730 = TREE_OPTIMIZATION ((callee_tree)
3731 ? callee_tree
3732 : optimization_default_node);
3733
3734 if ((caller_opt->optimize > callee_opt->optimize)
3735 || (caller_opt->optimize_size != callee_opt->optimize_size))
3736 return false;
3737 }
3738
3739 /* Allow the backend to decide if inlining is ok. */
3740 return targetm.target_option.can_inline_p (caller, callee);
3741 }