OSDN Git Service

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