OSDN Git Service

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