OSDN Git Service

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