OSDN Git Service

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