OSDN Git Service

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