OSDN Git Service

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