OSDN Git Service

Change copyright header to refer to version 3 of the GNU General Public License and...
[pf3gnuchains/gcc-fork.git] / gcc / tree-inline.c
1 /* Tree inlining.
2    Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007
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
55 /* I'm not real happy about this, but we need to handle gimple and
56    non-gimple trees.  */
57 #include "tree-gimple.h"
58
59 /* Inlining, Cloning, Versioning, Parallelization
60
61    Inlining: a function body is duplicated, but the PARM_DECLs are
62    remapped into VAR_DECLs, and non-void RETURN_EXPRs become
63    GIMPLE_MODIFY_STMTs that store to a dedicated returned-value variable.
64    The duplicated eh_region info of the copy will later be appended
65    to the info for the caller; the eh_region info in copied throwing
66    statements and RESX_EXPRs is adjusted accordingly.
67
68    Cloning: (only in C++) We have one body for a con/de/structor, and
69    multiple function decls, each with a unique parameter list.
70    Duplicate the body, using the given splay tree; some parameters
71    will become constants (like 0 or 1).
72
73    Versioning: a function body is duplicated and the result is a new
74    function rather than into blocks of an existing function as with
75    inlining.  Some parameters will become constants.
76
77    Parallelization: a region of a function is duplicated resulting in
78    a new function.  Variables may be replaced with complex expressions
79    to enable shared variable semantics.
80
81    All of these will simultaneously lookup any callgraph edges.  If
82    we're going to inline the duplicated function body, and the given
83    function has some cloned callgraph nodes (one for each place this
84    function will be inlined) those callgraph edges will be duplicated.
85    If we're cloning the body, those callgraph edges will be
86    updated to point into the new body.  (Note that the original
87    callgraph node and edge list will not be altered.)
88
89    See the CALL_EXPR handling case in copy_body_r ().  */
90
91 /* 0 if we should not perform inlining.
92    1 if we should expand functions calls inline at the tree level.
93    2 if we should consider *all* functions to be inline
94    candidates.  */
95
96 int flag_inline_trees = 0;
97
98 /* To Do:
99
100    o In order to make inlining-on-trees work, we pessimized
101      function-local static constants.  In particular, they are now
102      always output, even when not addressed.  Fix this by treating
103      function-local static constants just like global static
104      constants; the back-end already knows not to output them if they
105      are not needed.
106
107    o Provide heuristics to clamp inlining of recursive template
108      calls?  */
109
110
111 /* Weights that estimate_num_insns uses for heuristics in inlining.  */
112
113 eni_weights eni_inlining_weights;
114
115 /* Weights that estimate_num_insns uses to estimate the size of the
116    produced code.  */
117
118 eni_weights eni_size_weights;
119
120 /* Weights that estimate_num_insns uses to estimate the time necessary
121    to execute the produced code.  */
122
123 eni_weights eni_time_weights;
124
125 /* Prototypes.  */
126
127 static tree declare_return_variable (copy_body_data *, tree, tree, tree *);
128 static tree copy_generic_body (copy_body_data *);
129 static bool inlinable_function_p (tree);
130 static void remap_block (tree *, copy_body_data *);
131 static tree remap_decls (tree, copy_body_data *);
132 static void copy_bind_expr (tree *, int *, copy_body_data *);
133 static tree mark_local_for_remap_r (tree *, int *, void *);
134 static void unsave_expr_1 (tree);
135 static tree unsave_r (tree *, int *, void *);
136 static void declare_inline_vars (tree, tree);
137 static void remap_save_expr (tree *, void *, int *);
138 static void add_lexical_block (tree current_block, tree new_block);
139 static tree copy_decl_to_var (tree, copy_body_data *);
140 static tree copy_result_decl_to_var (tree, copy_body_data *);
141 static tree copy_decl_no_change (tree, copy_body_data *);
142 static tree copy_decl_maybe_to_var (tree, copy_body_data *);
143
144 /* Insert a tree->tree mapping for ID.  Despite the name suggests
145    that the trees should be variables, it is used for more than that.  */
146
147 void
148 insert_decl_map (copy_body_data *id, tree key, tree value)
149 {
150   *pointer_map_insert (id->decl_map, key) = value;
151
152   /* Always insert an identity map as well.  If we see this same new
153      node again, we won't want to duplicate it a second time.  */
154   if (key != value)
155     *pointer_map_insert (id->decl_map, value) = value;
156 }
157
158 /* Construct new SSA name for old NAME. ID is the inline context.  */
159
160 static tree
161 remap_ssa_name (tree name, copy_body_data *id)
162 {
163   tree new;
164   tree *n;
165
166   gcc_assert (TREE_CODE (name) == SSA_NAME);
167
168   n = (tree *) pointer_map_contains (id->decl_map, name);
169   if (n)
170     return *n;
171
172   /* Do not set DEF_STMT yet as statement is not copied yet. We do that
173      in copy_bb.  */
174   new = remap_decl (SSA_NAME_VAR (name), id);
175   /* We might've substituted constant or another SSA_NAME for
176      the variable. 
177
178      Replace the SSA name representing RESULT_DECL by variable during
179      inlining:  this saves us from need to introduce PHI node in a case
180      return value is just partly initialized.  */
181   if ((TREE_CODE (new) == VAR_DECL || TREE_CODE (new) == PARM_DECL)
182       && (TREE_CODE (SSA_NAME_VAR (name)) != RESULT_DECL
183           || !id->transform_return_to_modify))
184     {
185       new = make_ssa_name (new, NULL);
186       insert_decl_map (id, name, new);
187       if (IS_EMPTY_STMT (SSA_NAME_DEF_STMT (name)))
188         {
189           SSA_NAME_DEF_STMT (new) = build_empty_stmt ();
190           if (gimple_default_def (id->src_cfun, SSA_NAME_VAR (name)) == name)
191             set_default_def (SSA_NAME_VAR (new), new);
192         }
193       SSA_NAME_OCCURS_IN_ABNORMAL_PHI (new)
194         = SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name);
195       TREE_TYPE (new) = TREE_TYPE (SSA_NAME_VAR (new));
196     }
197   else
198     insert_decl_map (id, name, new);
199   return new;
200 }
201
202 /* Remap DECL during the copying of the BLOCK tree for the function.  */
203
204 tree
205 remap_decl (tree decl, copy_body_data *id)
206 {
207   tree *n;
208   tree fn;
209
210   /* We only remap local variables in the current function.  */
211   fn = id->src_fn;
212
213   /* See if we have remapped this declaration.  */
214
215   n = (tree *) pointer_map_contains (id->decl_map, decl);
216
217   /* If we didn't already have an equivalent for this declaration,
218      create one now.  */
219   if (!n)
220     {
221       /* Make a copy of the variable or label.  */
222       tree t = id->copy_decl (decl, id);
223      
224       /* Remember it, so that if we encounter this local entity again
225          we can reuse this copy.  Do this early because remap_type may
226          need this decl for TYPE_STUB_DECL.  */
227       insert_decl_map (id, decl, t);
228
229       if (!DECL_P (t))
230         return t;
231
232       /* Remap types, if necessary.  */
233       TREE_TYPE (t) = remap_type (TREE_TYPE (t), id);
234       if (TREE_CODE (t) == TYPE_DECL)
235         DECL_ORIGINAL_TYPE (t) = remap_type (DECL_ORIGINAL_TYPE (t), id);
236
237       /* Remap sizes as necessary.  */
238       walk_tree (&DECL_SIZE (t), copy_body_r, id, NULL);
239       walk_tree (&DECL_SIZE_UNIT (t), copy_body_r, id, NULL);
240
241       /* If fields, do likewise for offset and qualifier.  */
242       if (TREE_CODE (t) == FIELD_DECL)
243         {
244           walk_tree (&DECL_FIELD_OFFSET (t), copy_body_r, id, NULL);
245           if (TREE_CODE (DECL_CONTEXT (t)) == QUAL_UNION_TYPE)
246             walk_tree (&DECL_QUALIFIER (t), copy_body_r, id, NULL);
247         }
248
249       if (cfun && gimple_in_ssa_p (cfun)
250           && (TREE_CODE (t) == VAR_DECL
251               || TREE_CODE (t) == RESULT_DECL || TREE_CODE (t) == PARM_DECL))
252         {
253           tree def = gimple_default_def (id->src_cfun, decl);
254           get_var_ann (t);
255           if (TREE_CODE (decl) != PARM_DECL && def)
256             {
257               tree map = remap_ssa_name (def, id);
258               /* Watch out RESULT_DECLs whose SSA names map directly
259                  to them.  */
260               if (TREE_CODE (map) == SSA_NAME)
261                 set_default_def (t, map);
262             }
263           add_referenced_var (t);
264         }
265       return t;
266     }
267
268   return unshare_expr (*n);
269 }
270
271 static tree
272 remap_type_1 (tree type, copy_body_data *id)
273 {
274   tree *node;
275   tree new, t;
276
277   if (type == NULL)
278     return type;
279
280   /* See if we have remapped this type.  */
281   node = (tree *) pointer_map_contains (id->decl_map, type);
282   if (node)
283     return *node;
284
285   /* The type only needs remapping if it's variably modified.  */
286   if (! variably_modified_type_p (type, id->src_fn))
287     {
288       insert_decl_map (id, type, type);
289       return type;
290     }
291
292   /* We do need a copy.  build and register it now.  If this is a pointer or
293      reference type, remap the designated type and make a new pointer or
294      reference type.  */
295   if (TREE_CODE (type) == POINTER_TYPE)
296     {
297       new = build_pointer_type_for_mode (remap_type (TREE_TYPE (type), id),
298                                          TYPE_MODE (type),
299                                          TYPE_REF_CAN_ALIAS_ALL (type));
300       insert_decl_map (id, type, new);
301       return new;
302     }
303   else if (TREE_CODE (type) == REFERENCE_TYPE)
304     {
305       new = build_reference_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);
309       return new;
310     }
311   else
312     new = copy_node (type);
313
314   insert_decl_map (id, type, new);
315
316   /* This is a new type, not a copy of an old type.  Need to reassociate
317      variants.  We can handle everything except the main variant lazily.  */
318   t = TYPE_MAIN_VARIANT (type);
319   if (type != t)
320     {
321       t = remap_type (t, id);
322       TYPE_MAIN_VARIANT (new) = t;
323       TYPE_NEXT_VARIANT (new) = TYPE_MAIN_VARIANT (t);
324       TYPE_NEXT_VARIANT (t) = new;
325     }
326   else
327     {
328       TYPE_MAIN_VARIANT (new) = new;
329       TYPE_NEXT_VARIANT (new) = NULL;
330     }
331
332   if (TYPE_STUB_DECL (type))
333     TYPE_STUB_DECL (new) = remap_decl (TYPE_STUB_DECL (type), id);
334
335   /* Lazily create pointer and reference types.  */
336   TYPE_POINTER_TO (new) = NULL;
337   TYPE_REFERENCE_TO (new) = NULL;
338
339   switch (TREE_CODE (new))
340     {
341     case INTEGER_TYPE:
342     case REAL_TYPE:
343     case ENUMERAL_TYPE:
344     case BOOLEAN_TYPE:
345       t = TYPE_MIN_VALUE (new);
346       if (t && TREE_CODE (t) != INTEGER_CST)
347         walk_tree (&TYPE_MIN_VALUE (new), copy_body_r, id, NULL);
348
349       t = TYPE_MAX_VALUE (new);
350       if (t && TREE_CODE (t) != INTEGER_CST)
351         walk_tree (&TYPE_MAX_VALUE (new), copy_body_r, id, NULL);
352       return new;
353
354     case FUNCTION_TYPE:
355       TREE_TYPE (new) = remap_type (TREE_TYPE (new), id);
356       walk_tree (&TYPE_ARG_TYPES (new), copy_body_r, id, NULL);
357       return new;
358
359     case ARRAY_TYPE:
360       TREE_TYPE (new) = remap_type (TREE_TYPE (new), id);
361       TYPE_DOMAIN (new) = remap_type (TYPE_DOMAIN (new), id);
362       break;
363
364     case RECORD_TYPE:
365     case UNION_TYPE:
366     case QUAL_UNION_TYPE:
367       {
368         tree f, nf = NULL;
369
370         for (f = TYPE_FIELDS (new); f ; f = TREE_CHAIN (f))
371           {
372             t = remap_decl (f, id);
373             DECL_CONTEXT (t) = new;
374             TREE_CHAIN (t) = nf;
375             nf = t;
376           }
377         TYPE_FIELDS (new) = nreverse (nf);
378       }
379       break;
380
381     case OFFSET_TYPE:
382     default:
383       /* Shouldn't have been thought variable sized.  */
384       gcc_unreachable ();
385     }
386
387   walk_tree (&TYPE_SIZE (new), copy_body_r, id, NULL);
388   walk_tree (&TYPE_SIZE_UNIT (new), copy_body_r, id, NULL);
389
390   return new;
391 }
392
393 tree
394 remap_type (tree type, copy_body_data *id)
395 {
396   tree *node;
397
398   if (type == NULL)
399     return type;
400
401   /* See if we have remapped this type.  */
402   node = (tree *) pointer_map_contains (id->decl_map, type);
403   if (node)
404     return *node;
405
406   /* The type only needs remapping if it's variably modified.  */
407   if (! variably_modified_type_p (type, id->src_fn))
408     {
409       insert_decl_map (id, type, type);
410       return type;
411     }
412
413   return remap_type_1 (type, id);
414 }
415
416 static tree
417 remap_decls (tree decls, copy_body_data *id)
418 {
419   tree old_var;
420   tree new_decls = NULL_TREE;
421
422   /* Remap its variables.  */
423   for (old_var = decls; old_var; old_var = TREE_CHAIN (old_var))
424     {
425       tree new_var;
426
427       /* We can not chain the local static declarations into the unexpanded_var_list
428          as we can't duplicate them or break one decl rule.  Go ahead and link
429          them into unexpanded_var_list.  */
430       if (!lang_hooks.tree_inlining.auto_var_in_fn_p (old_var, id->src_fn)
431           && !DECL_EXTERNAL (old_var))
432         {
433           cfun->unexpanded_var_list = tree_cons (NULL_TREE, old_var,
434                                                  cfun->unexpanded_var_list);
435           continue;
436         }
437
438       /* Remap the variable.  */
439       new_var = remap_decl (old_var, id);
440
441       /* If we didn't remap this variable, so we can't mess with its
442          TREE_CHAIN.  If we remapped this variable to the return slot, it's
443          already declared somewhere else, so don't declare it here.  */
444       if (!new_var || new_var == id->retvar)
445         ;
446       else
447         {
448           gcc_assert (DECL_P (new_var));
449           TREE_CHAIN (new_var) = new_decls;
450           new_decls = new_var;
451         }
452     }
453
454   return nreverse (new_decls);
455 }
456
457 /* Copy the BLOCK to contain remapped versions of the variables
458    therein.  And hook the new block into the block-tree.  */
459
460 static void
461 remap_block (tree *block, copy_body_data *id)
462 {
463   tree old_block;
464   tree new_block;
465   tree fn;
466
467   /* Make the new block.  */
468   old_block = *block;
469   new_block = make_node (BLOCK);
470   TREE_USED (new_block) = TREE_USED (old_block);
471   BLOCK_ABSTRACT_ORIGIN (new_block) = old_block;
472   BLOCK_SOURCE_LOCATION (new_block) = BLOCK_SOURCE_LOCATION (old_block);
473   *block = new_block;
474
475   /* Remap its variables.  */
476   BLOCK_VARS (new_block) = remap_decls (BLOCK_VARS (old_block), id);
477
478   fn = id->dst_fn;
479
480   if (id->transform_lang_insert_block)
481     lang_hooks.decls.insert_block (new_block);
482
483   /* Remember the remapped block.  */
484   insert_decl_map (id, old_block, new_block);
485 }
486
487 /* Copy the whole block tree and root it in id->block.  */
488 static tree
489 remap_blocks (tree block, copy_body_data *id)
490 {
491   tree t;
492   tree new = block;
493
494   if (!block)
495     return NULL;
496
497   remap_block (&new, id);
498   gcc_assert (new != block);
499   for (t = BLOCK_SUBBLOCKS (block); t ; t = BLOCK_CHAIN (t))
500     add_lexical_block (new, remap_blocks (t, id));
501   return new;
502 }
503
504 static void
505 copy_statement_list (tree *tp)
506 {
507   tree_stmt_iterator oi, ni;
508   tree new;
509
510   new = alloc_stmt_list ();
511   ni = tsi_start (new);
512   oi = tsi_start (*tp);
513   *tp = new;
514
515   for (; !tsi_end_p (oi); tsi_next (&oi))
516     tsi_link_after (&ni, tsi_stmt (oi), TSI_NEW_STMT);
517 }
518
519 static void
520 copy_bind_expr (tree *tp, int *walk_subtrees, copy_body_data *id)
521 {
522   tree block = BIND_EXPR_BLOCK (*tp);
523   /* Copy (and replace) the statement.  */
524   copy_tree_r (tp, walk_subtrees, NULL);
525   if (block)
526     {
527       remap_block (&block, id);
528       BIND_EXPR_BLOCK (*tp) = block;
529     }
530
531   if (BIND_EXPR_VARS (*tp))
532     /* This will remap a lot of the same decls again, but this should be
533        harmless.  */
534     BIND_EXPR_VARS (*tp) = remap_decls (BIND_EXPR_VARS (*tp), id);
535 }
536
537 /* Called from copy_body_id via walk_tree.  DATA is really an
538    `copy_body_data *'.  */
539
540 tree
541 copy_body_r (tree *tp, int *walk_subtrees, void *data)
542 {
543   copy_body_data *id = (copy_body_data *) data;
544   tree fn = id->src_fn;
545   tree new_block;
546
547   /* Begin by recognizing trees that we'll completely rewrite for the
548      inlining context.  Our output for these trees is completely
549      different from out input (e.g. RETURN_EXPR is deleted, and morphs
550      into an edge).  Further down, we'll handle trees that get
551      duplicated and/or tweaked.  */
552
553   /* When requested, RETURN_EXPRs should be transformed to just the
554      contained GIMPLE_MODIFY_STMT.  The branch semantics of the return will
555      be handled elsewhere by manipulating the CFG rather than a statement.  */
556   if (TREE_CODE (*tp) == RETURN_EXPR && id->transform_return_to_modify)
557     {
558       tree assignment = TREE_OPERAND (*tp, 0);
559
560       /* If we're returning something, just turn that into an
561          assignment into the equivalent of the original RESULT_DECL.
562          If the "assignment" is just the result decl, the result
563          decl has already been set (e.g. a recent "foo (&result_decl,
564          ...)"); just toss the entire RETURN_EXPR.  */
565       if (assignment && TREE_CODE (assignment) == GIMPLE_MODIFY_STMT)
566         {
567           /* Replace the RETURN_EXPR with (a copy of) the
568              GIMPLE_MODIFY_STMT hanging underneath.  */
569           *tp = copy_node (assignment);
570         }
571       else /* Else the RETURN_EXPR returns no value.  */
572         {
573           *tp = NULL;
574           return (tree) (void *)1;
575         }
576     }
577   else if (TREE_CODE (*tp) == SSA_NAME)
578     {
579       *tp = remap_ssa_name (*tp, id);
580       *walk_subtrees = 0;
581       return NULL;
582     }
583
584   /* Local variables and labels need to be replaced by equivalent
585      variables.  We don't want to copy static variables; there's only
586      one of those, no matter how many times we inline the containing
587      function.  Similarly for globals from an outer function.  */
588   else if (lang_hooks.tree_inlining.auto_var_in_fn_p (*tp, fn))
589     {
590       tree new_decl;
591
592       /* Remap the declaration.  */
593       new_decl = remap_decl (*tp, id);
594       gcc_assert (new_decl);
595       /* Replace this variable with the copy.  */
596       STRIP_TYPE_NOPS (new_decl);
597       *tp = new_decl;
598       *walk_subtrees = 0;
599     }
600   else if (TREE_CODE (*tp) == STATEMENT_LIST)
601     copy_statement_list (tp);
602   else if (TREE_CODE (*tp) == SAVE_EXPR)
603     remap_save_expr (tp, id->decl_map, walk_subtrees);
604   else if (TREE_CODE (*tp) == LABEL_DECL
605            && (! DECL_CONTEXT (*tp)
606                || decl_function_context (*tp) == id->src_fn))
607     /* These may need to be remapped for EH handling.  */
608     *tp = remap_decl (*tp, id);
609   else if (TREE_CODE (*tp) == BIND_EXPR)
610     copy_bind_expr (tp, walk_subtrees, id);
611   /* Types may need remapping as well.  */
612   else if (TYPE_P (*tp))
613     *tp = remap_type (*tp, id);
614
615   /* If this is a constant, we have to copy the node iff the type will be
616      remapped.  copy_tree_r will not copy a constant.  */
617   else if (CONSTANT_CLASS_P (*tp))
618     {
619       tree new_type = remap_type (TREE_TYPE (*tp), id);
620
621       if (new_type == TREE_TYPE (*tp))
622         *walk_subtrees = 0;
623
624       else if (TREE_CODE (*tp) == INTEGER_CST)
625         *tp = build_int_cst_wide (new_type, TREE_INT_CST_LOW (*tp),
626                                   TREE_INT_CST_HIGH (*tp));
627       else
628         {
629           *tp = copy_node (*tp);
630           TREE_TYPE (*tp) = new_type;
631         }
632     }
633
634   /* Otherwise, just copy the node.  Note that copy_tree_r already
635      knows not to copy VAR_DECLs, etc., so this is safe.  */
636   else
637     {
638       /* Here we handle trees that are not completely rewritten.
639          First we detect some inlining-induced bogosities for
640          discarding.  */
641       if (TREE_CODE (*tp) == GIMPLE_MODIFY_STMT
642           && GIMPLE_STMT_OPERAND (*tp, 0) == GIMPLE_STMT_OPERAND (*tp, 1)
643           && (lang_hooks.tree_inlining.auto_var_in_fn_p
644               (GIMPLE_STMT_OPERAND (*tp, 0), fn)))
645         {
646           /* Some assignments VAR = VAR; don't generate any rtl code
647              and thus don't count as variable modification.  Avoid
648              keeping bogosities like 0 = 0.  */
649           tree decl = GIMPLE_STMT_OPERAND (*tp, 0), value;
650           tree *n;
651
652           n = (tree *) pointer_map_contains (id->decl_map, decl);
653           if (n)
654             {
655               value = *n;
656               STRIP_TYPE_NOPS (value);
657               if (TREE_CONSTANT (value) || TREE_READONLY_DECL_P (value))
658                 {
659                   *tp = build_empty_stmt ();
660                   return copy_body_r (tp, walk_subtrees, data);
661                 }
662             }
663         }
664       else if (TREE_CODE (*tp) == INDIRECT_REF)
665         {
666           /* Get rid of *& from inline substitutions that can happen when a
667              pointer argument is an ADDR_EXPR.  */
668           tree decl = TREE_OPERAND (*tp, 0);
669           tree *n;
670
671           n = (tree *) pointer_map_contains (id->decl_map, decl);
672           if (n)
673             {
674               tree new;
675               tree old;
676               /* If we happen to get an ADDR_EXPR in n->value, strip
677                  it manually here as we'll eventually get ADDR_EXPRs
678                  which lie about their types pointed to.  In this case
679                  build_fold_indirect_ref wouldn't strip the INDIRECT_REF,
680                  but we absolutely rely on that.  As fold_indirect_ref
681                  does other useful transformations, try that first, though.  */
682               tree type = TREE_TYPE (TREE_TYPE (*n));
683               new = unshare_expr (*n);
684               old = *tp;
685               *tp = fold_indirect_ref_1 (type, new);
686               if (! *tp)
687                 {
688                   if (TREE_CODE (new) == ADDR_EXPR)
689                     *tp = TREE_OPERAND (new, 0);
690                   else
691                     {
692                       *tp = build1 (INDIRECT_REF, type, new);
693                       TREE_THIS_VOLATILE (*tp) = TREE_THIS_VOLATILE (old);
694                     }
695                 }
696               *walk_subtrees = 0;
697               return NULL;
698             }
699         }
700
701       /* Here is the "usual case".  Copy this tree node, and then
702          tweak some special cases.  */
703       copy_tree_r (tp, walk_subtrees, NULL);
704
705       /* Global variables we didn't seen yet needs to go into referenced
706          vars.  */
707       if (gimple_in_ssa_p (cfun) && TREE_CODE (*tp) == VAR_DECL)
708         add_referenced_var (*tp);
709        
710       /* If EXPR has block defined, map it to newly constructed block.
711          When inlining we want EXPRs without block appear in the block
712          of function call.  */
713       if (EXPR_P (*tp) || GIMPLE_STMT_P (*tp))
714         {
715           new_block = id->block;
716           if (TREE_BLOCK (*tp))
717             {
718               tree *n;
719               n = (tree *) pointer_map_contains (id->decl_map,
720                                                  TREE_BLOCK (*tp));
721               gcc_assert (n);
722               new_block = *n;
723             }
724           TREE_BLOCK (*tp) = new_block;
725         }
726
727       if (TREE_CODE (*tp) == RESX_EXPR && id->eh_region_offset)
728         TREE_OPERAND (*tp, 0) =
729           build_int_cst
730             (NULL_TREE,
731              id->eh_region_offset + TREE_INT_CST_LOW (TREE_OPERAND (*tp, 0)));
732
733       if (!GIMPLE_TUPLE_P (*tp) && TREE_CODE (*tp) != OMP_CLAUSE)
734         TREE_TYPE (*tp) = remap_type (TREE_TYPE (*tp), id);
735
736       /* The copied TARGET_EXPR has never been expanded, even if the
737          original node was expanded already.  */
738       if (TREE_CODE (*tp) == TARGET_EXPR && TREE_OPERAND (*tp, 3))
739         {
740           TREE_OPERAND (*tp, 1) = TREE_OPERAND (*tp, 3);
741           TREE_OPERAND (*tp, 3) = NULL_TREE;
742         }
743
744       /* Variable substitution need not be simple.  In particular, the
745          INDIRECT_REF substitution above.  Make sure that TREE_CONSTANT
746          and friends are up-to-date.  */
747       else if (TREE_CODE (*tp) == ADDR_EXPR)
748         {
749           walk_tree (&TREE_OPERAND (*tp, 0), copy_body_r, id, NULL);
750           /* Handle the case where we substituted an INDIRECT_REF
751              into the operand of the ADDR_EXPR.  */
752           if (TREE_CODE (TREE_OPERAND (*tp, 0)) == INDIRECT_REF)
753             *tp = TREE_OPERAND (TREE_OPERAND (*tp, 0), 0);
754           else
755             recompute_tree_invariant_for_addr_expr (*tp);
756           *walk_subtrees = 0;
757         }
758     }
759
760   /* Keep iterating.  */
761   return NULL_TREE;
762 }
763
764 /* Copy basic block, scale profile accordingly.  Edges will be taken care of
765    later  */
766
767 static basic_block
768 copy_bb (copy_body_data *id, basic_block bb, int frequency_scale, int count_scale)
769 {
770   block_stmt_iterator bsi, copy_bsi;
771   basic_block copy_basic_block;
772
773   /* create_basic_block() will append every new block to
774      basic_block_info automatically.  */
775   copy_basic_block = create_basic_block (NULL, (void *) 0,
776                                          (basic_block) bb->prev_bb->aux);
777   copy_basic_block->count = bb->count * count_scale / REG_BR_PROB_BASE;
778
779   /* We are going to rebuild frequencies from scratch.  These values have just
780      small importance to drive canonicalize_loop_headers.  */
781   copy_basic_block->frequency = ((gcov_type)bb->frequency
782                                      * frequency_scale / REG_BR_PROB_BASE);
783   if (copy_basic_block->frequency > BB_FREQ_MAX)
784     copy_basic_block->frequency = BB_FREQ_MAX;
785   copy_bsi = bsi_start (copy_basic_block);
786
787   for (bsi = bsi_start (bb);
788        !bsi_end_p (bsi); bsi_next (&bsi))
789     {
790       tree stmt = bsi_stmt (bsi);
791       tree orig_stmt = stmt;
792
793       walk_tree (&stmt, copy_body_r, id, NULL);
794
795       /* RETURN_EXPR might be removed,
796          this is signalled by making stmt pointer NULL.  */
797       if (stmt)
798         {
799           tree call, decl;
800
801           gimple_duplicate_stmt_histograms (cfun, stmt, id->src_cfun, orig_stmt);
802
803           /* With return slot optimization we can end up with
804              non-gimple (foo *)&this->m, fix that here.  */
805           if (TREE_CODE (stmt) == GIMPLE_MODIFY_STMT
806               && TREE_CODE (GIMPLE_STMT_OPERAND (stmt, 1)) == NOP_EXPR
807               && !is_gimple_val (TREE_OPERAND (GIMPLE_STMT_OPERAND (stmt, 1), 0)))
808             gimplify_stmt (&stmt);
809
810           bsi_insert_after (&copy_bsi, stmt, BSI_NEW_STMT);
811
812           /* Process new statement.  gimplify_stmt possibly turned statement
813              into multiple statements, we need to process all of them.  */
814           while (!bsi_end_p (copy_bsi))
815             {
816               stmt = bsi_stmt (copy_bsi);
817               call = get_call_expr_in (stmt);
818
819               /* Statements produced by inlining can be unfolded, especially
820                  when we constant propagated some operands.  We can't fold
821                  them right now for two reasons:
822                  1) folding require SSA_NAME_DEF_STMTs to be correct
823                  2) we can't change function calls to builtins.
824                  So we just mark statement for later folding.  We mark
825                  all new statements, instead just statements that has changed
826                  by some nontrivial substitution so even statements made
827                  foldable indirectly are updated.  If this turns out to be
828                  expensive, copy_body can be told to watch for nontrivial
829                  changes.  */
830               if (id->statements_to_fold)
831                 pointer_set_insert (id->statements_to_fold, stmt);
832               /* We're duplicating a CALL_EXPR.  Find any corresponding
833                  callgraph edges and update or duplicate them.  */
834               if (call && (decl = get_callee_fndecl (call)))
835                 {
836                   struct cgraph_node *node;
837                   struct cgraph_edge *edge;
838                  
839                   switch (id->transform_call_graph_edges)
840                     {
841                     case CB_CGE_DUPLICATE:
842                       edge = cgraph_edge (id->src_node, orig_stmt);
843                       if (edge)
844                         cgraph_clone_edge (edge, id->dst_node, stmt,
845                                            REG_BR_PROB_BASE, 1, edge->frequency, true);
846                       break;
847
848                     case CB_CGE_MOVE_CLONES:
849                       for (node = id->dst_node->next_clone;
850                            node;
851                            node = node->next_clone)
852                         {
853                           edge = cgraph_edge (node, orig_stmt);
854                           gcc_assert (edge);
855                           cgraph_set_call_stmt (edge, stmt);
856                         }
857                       /* FALLTHRU */
858
859                     case CB_CGE_MOVE:
860                       edge = cgraph_edge (id->dst_node, orig_stmt);
861                       if (edge)
862                         cgraph_set_call_stmt (edge, stmt);
863                       break;
864
865                     default:
866                       gcc_unreachable ();
867                     }
868                 }
869               /* If you think we can abort here, you are wrong.
870                  There is no region 0 in tree land.  */
871               gcc_assert (lookup_stmt_eh_region_fn (id->src_cfun, orig_stmt)
872                           != 0);
873
874               if (tree_could_throw_p (stmt)
875                   /* When we are cloning for inlining, we are supposed to
876                      construct a clone that calls precisely the same functions
877                      as original.  However IPA optimizers might've proved
878                      earlier some function calls as non-trapping that might
879                      render some basic blocks dead that might become
880                      unreachable.
881
882                      We can't update SSA with unreachable blocks in CFG and thus
883                      we prevent the scenario by preserving even the "dead" eh
884                      edges until the point they are later removed by
885                      fixup_cfg pass.  */
886                   || (id->transform_call_graph_edges == CB_CGE_MOVE_CLONES
887                       && lookup_stmt_eh_region_fn (id->src_cfun, orig_stmt) > 0))
888                 {
889                   int region = lookup_stmt_eh_region_fn (id->src_cfun, orig_stmt);
890                   /* Add an entry for the copied tree in the EH hashtable.
891                      When cloning or versioning, use the hashtable in
892                      cfun, and just copy the EH number.  When inlining, use the
893                      hashtable in the caller, and adjust the region number.  */
894                   if (region > 0)
895                     add_stmt_to_eh_region (stmt, region + id->eh_region_offset);
896
897                   /* If this tree doesn't have a region associated with it,
898                      and there is a "current region,"
899                      then associate this tree with the current region
900                      and add edges associated with this region.  */
901                   if ((lookup_stmt_eh_region_fn (id->src_cfun,
902                                                  orig_stmt) <= 0
903                        && id->eh_region > 0)
904                       && tree_could_throw_p (stmt))
905                     add_stmt_to_eh_region (stmt, id->eh_region);
906                 }
907               if (gimple_in_ssa_p (cfun))
908                 {
909                    ssa_op_iter i;
910                    tree def;
911
912                    find_new_referenced_vars (bsi_stmt_ptr (copy_bsi));
913                    FOR_EACH_SSA_TREE_OPERAND (def, stmt, i, SSA_OP_DEF)
914                     if (TREE_CODE (def) == SSA_NAME)
915                       SSA_NAME_DEF_STMT (def) = stmt;
916                 }
917               bsi_next (&copy_bsi);
918             }
919           copy_bsi = bsi_last (copy_basic_block);
920         }
921     }
922   return copy_basic_block;
923 }
924
925 /* Inserting Single Entry Multiple Exit region in SSA form into code in SSA
926    form is quite easy, since dominator relationship for old basic blocks does
927    not change.
928
929    There is however exception where inlining might change dominator relation
930    across EH edges from basic block within inlined functions destinating
931    to landing pads in function we inline into.
932
933    The function mark PHI_RESULT of such PHI nodes for renaming; it is
934    safe the EH edges are abnormal and SSA_NAME_OCCURS_IN_ABNORMAL_PHI
935    must be set.  This means, that there will be no overlapping live ranges
936    for the underlying symbol.
937
938    This might change in future if we allow redirecting of EH edges and
939    we might want to change way build CFG pre-inlining to include
940    all the possible edges then.  */
941 static void
942 update_ssa_across_eh_edges (basic_block bb)
943 {
944   edge e;
945   edge_iterator ei;
946
947   FOR_EACH_EDGE (e, ei, bb->succs)
948     if (!e->dest->aux
949         || ((basic_block)e->dest->aux)->index == ENTRY_BLOCK)
950       {
951         tree phi;
952
953         gcc_assert (e->flags & EDGE_EH);
954         for (phi = phi_nodes (e->dest); phi; phi = PHI_CHAIN (phi))
955           {
956             gcc_assert (SSA_NAME_OCCURS_IN_ABNORMAL_PHI
957                         (PHI_RESULT (phi)));
958             mark_sym_for_renaming
959               (SSA_NAME_VAR (PHI_RESULT (phi)));
960           }
961       }
962 }
963
964 /* Copy edges from BB into its copy constructed earlier, scale profile
965    accordingly.  Edges will be taken care of later.  Assume aux
966    pointers to point to the copies of each BB.  */
967 static void
968 copy_edges_for_bb (basic_block bb, int count_scale)
969 {
970   basic_block new_bb = (basic_block) bb->aux;
971   edge_iterator ei;
972   edge old_edge;
973   block_stmt_iterator bsi;
974   int flags;
975
976   /* Use the indices from the original blocks to create edges for the
977      new ones.  */
978   FOR_EACH_EDGE (old_edge, ei, bb->succs)
979     if (!(old_edge->flags & EDGE_EH))
980       {
981         edge new;
982
983         flags = old_edge->flags;
984
985         /* Return edges do get a FALLTHRU flag when the get inlined.  */
986         if (old_edge->dest->index == EXIT_BLOCK && !old_edge->flags
987             && old_edge->dest->aux != EXIT_BLOCK_PTR)
988           flags |= EDGE_FALLTHRU;
989         new = make_edge (new_bb, (basic_block) old_edge->dest->aux, flags);
990         new->count = old_edge->count * count_scale / REG_BR_PROB_BASE;
991         new->probability = old_edge->probability;
992       }
993
994   if (bb->index == ENTRY_BLOCK || bb->index == EXIT_BLOCK)
995     return;
996
997   for (bsi = bsi_start (new_bb); !bsi_end_p (bsi);)
998     {
999       tree copy_stmt;
1000
1001       copy_stmt = bsi_stmt (bsi);
1002       update_stmt (copy_stmt);
1003       if (gimple_in_ssa_p (cfun))
1004         mark_symbols_for_renaming (copy_stmt);
1005       /* Do this before the possible split_block.  */
1006       bsi_next (&bsi);
1007
1008       /* If this tree could throw an exception, there are two
1009          cases where we need to add abnormal edge(s): the
1010          tree wasn't in a region and there is a "current
1011          region" in the caller; or the original tree had
1012          EH edges.  In both cases split the block after the tree,
1013          and add abnormal edge(s) as needed; we need both
1014          those from the callee and the caller.
1015          We check whether the copy can throw, because the const
1016          propagation can change an INDIRECT_REF which throws
1017          into a COMPONENT_REF which doesn't.  If the copy
1018          can throw, the original could also throw.  */
1019
1020       if (tree_can_throw_internal (copy_stmt))
1021         {
1022           if (!bsi_end_p (bsi))
1023             /* Note that bb's predecessor edges aren't necessarily
1024                right at this point; split_block doesn't care.  */
1025             {
1026               edge e = split_block (new_bb, copy_stmt);
1027
1028               new_bb = e->dest;
1029               new_bb->aux = e->src->aux;
1030               bsi = bsi_start (new_bb);
1031             }
1032
1033            make_eh_edges (copy_stmt);
1034
1035            if (gimple_in_ssa_p (cfun))
1036              update_ssa_across_eh_edges (bb_for_stmt (copy_stmt));
1037         }
1038     }
1039 }
1040
1041 /* Copy the PHIs.  All blocks and edges are copied, some blocks
1042    was possibly split and new outgoing EH edges inserted.
1043    BB points to the block of original function and AUX pointers links
1044    the original and newly copied blocks.  */
1045
1046 static void
1047 copy_phis_for_bb (basic_block bb, copy_body_data *id)
1048 {
1049   basic_block new_bb = bb->aux;
1050   edge_iterator ei;
1051   tree phi;
1052
1053   for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
1054     {
1055       tree res = PHI_RESULT (phi);
1056       tree new_res = res;
1057       tree new_phi;
1058       edge new_edge;
1059
1060       if (is_gimple_reg (res))
1061         {
1062           walk_tree (&new_res, copy_body_r, id, NULL);
1063           SSA_NAME_DEF_STMT (new_res)
1064             = new_phi = create_phi_node (new_res, new_bb);
1065           FOR_EACH_EDGE (new_edge, ei, new_bb->preds)
1066             {
1067               edge old_edge = find_edge (new_edge->src->aux, bb);
1068               tree arg = PHI_ARG_DEF_FROM_EDGE (phi, old_edge);
1069               tree new_arg = arg;
1070
1071               walk_tree (&new_arg, copy_body_r, id, NULL);
1072               gcc_assert (new_arg);
1073               add_phi_arg (new_phi, new_arg, new_edge);
1074             }
1075         }
1076     }
1077 }
1078
1079 /* Wrapper for remap_decl so it can be used as a callback.  */
1080 static tree
1081 remap_decl_1 (tree decl, void *data)
1082 {
1083   return remap_decl (decl, (copy_body_data *) data);
1084 }
1085
1086 /* Build struct function and associated datastructures for the new clone
1087    NEW_FNDECL to be build.  CALLEE_FNDECL is the original */
1088
1089 static void
1090 initialize_cfun (tree new_fndecl, tree callee_fndecl, gcov_type count,
1091                  int frequency)
1092 {
1093   struct function *new_cfun
1094      = (struct function *) ggc_alloc_cleared (sizeof (struct function));
1095   struct function *src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
1096   int count_scale, frequency_scale;
1097
1098   if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count)
1099     count_scale = (REG_BR_PROB_BASE * count
1100                    / ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count);
1101   else
1102     count_scale = 1;
1103
1104   if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency)
1105     frequency_scale = (REG_BR_PROB_BASE * frequency
1106                        /
1107                        ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency);
1108   else
1109     frequency_scale = count_scale;
1110
1111   /* Register specific tree functions.  */
1112   tree_register_cfg_hooks ();
1113   *new_cfun = *DECL_STRUCT_FUNCTION (callee_fndecl);
1114   new_cfun->funcdef_no = get_next_funcdef_no ();
1115   VALUE_HISTOGRAMS (new_cfun) = NULL;
1116   new_cfun->unexpanded_var_list = NULL;
1117   new_cfun->cfg = NULL;
1118   new_cfun->decl = new_fndecl /*= copy_node (callee_fndecl)*/;
1119   DECL_STRUCT_FUNCTION (new_fndecl) = new_cfun;
1120   push_cfun (new_cfun);
1121   init_empty_tree_cfg ();
1122
1123   ENTRY_BLOCK_PTR->count =
1124     (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count * count_scale /
1125      REG_BR_PROB_BASE);
1126   ENTRY_BLOCK_PTR->frequency =
1127     (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency *
1128      frequency_scale / REG_BR_PROB_BASE);
1129   EXIT_BLOCK_PTR->count =
1130     (EXIT_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count * count_scale /
1131      REG_BR_PROB_BASE);
1132   EXIT_BLOCK_PTR->frequency =
1133     (EXIT_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency *
1134      frequency_scale / REG_BR_PROB_BASE);
1135   if (src_cfun->eh)
1136     init_eh_for_function ();
1137
1138   if (src_cfun->gimple_df)
1139     {
1140       init_tree_ssa ();
1141       cfun->gimple_df->in_ssa_p = true;
1142       init_ssa_operands ();
1143     }
1144   pop_cfun ();
1145 }
1146
1147 /* Make a copy of the body of FN so that it can be inserted inline in
1148    another function.  Walks FN via CFG, returns new fndecl.  */
1149
1150 static tree
1151 copy_cfg_body (copy_body_data * id, gcov_type count, int frequency,
1152                basic_block entry_block_map, basic_block exit_block_map)
1153 {
1154   tree callee_fndecl = id->src_fn;
1155   /* Original cfun for the callee, doesn't change.  */
1156   struct function *src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
1157   struct function *cfun_to_copy;
1158   basic_block bb;
1159   tree new_fndecl = NULL;
1160   int count_scale, frequency_scale;
1161   int last;
1162
1163   if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count)
1164     count_scale = (REG_BR_PROB_BASE * count
1165                    / ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->count);
1166   else
1167     count_scale = 1;
1168
1169   if (ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency)
1170     frequency_scale = (REG_BR_PROB_BASE * frequency
1171                        /
1172                        ENTRY_BLOCK_PTR_FOR_FUNCTION (src_cfun)->frequency);
1173   else
1174     frequency_scale = count_scale;
1175
1176   /* Register specific tree functions.  */
1177   tree_register_cfg_hooks ();
1178
1179   /* Must have a CFG here at this point.  */
1180   gcc_assert (ENTRY_BLOCK_PTR_FOR_FUNCTION
1181               (DECL_STRUCT_FUNCTION (callee_fndecl)));
1182
1183   cfun_to_copy = id->src_cfun = DECL_STRUCT_FUNCTION (callee_fndecl);
1184
1185
1186   ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy)->aux = entry_block_map;
1187   EXIT_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy)->aux = exit_block_map;
1188   entry_block_map->aux = ENTRY_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy);
1189   exit_block_map->aux = EXIT_BLOCK_PTR_FOR_FUNCTION (cfun_to_copy);
1190
1191   /* Duplicate any exception-handling regions.  */
1192   if (cfun->eh)
1193     {
1194       id->eh_region_offset
1195         = duplicate_eh_regions (cfun_to_copy, remap_decl_1, id,
1196                                 0, id->eh_region);
1197     }
1198   /* Use aux pointers to map the original blocks to copy.  */
1199   FOR_EACH_BB_FN (bb, cfun_to_copy)
1200     {
1201       basic_block new = copy_bb (id, bb, frequency_scale, count_scale);
1202       bb->aux = new;
1203       new->aux = bb;
1204     }
1205
1206   last = last_basic_block;
1207   /* Now that we've duplicated the blocks, duplicate their edges.  */
1208   FOR_ALL_BB_FN (bb, cfun_to_copy)
1209     copy_edges_for_bb (bb, count_scale);
1210   if (gimple_in_ssa_p (cfun))
1211     FOR_ALL_BB_FN (bb, cfun_to_copy)
1212       copy_phis_for_bb (bb, id);
1213   FOR_ALL_BB_FN (bb, cfun_to_copy)
1214     {
1215       ((basic_block)bb->aux)->aux = NULL;
1216       bb->aux = NULL;
1217     }
1218   /* Zero out AUX fields of newly created block during EH edge
1219      insertion. */
1220   for (; last < last_basic_block; last++)
1221     BASIC_BLOCK (last)->aux = NULL;
1222   entry_block_map->aux = NULL;
1223   exit_block_map->aux = NULL;
1224
1225   return new_fndecl;
1226 }
1227
1228 /* Make a copy of the body of FN so that it can be inserted inline in
1229    another function.  */
1230
1231 static tree
1232 copy_generic_body (copy_body_data *id)
1233 {
1234   tree body;
1235   tree fndecl = id->src_fn;
1236
1237   body = DECL_SAVED_TREE (fndecl);
1238   walk_tree (&body, copy_body_r, id, NULL);
1239
1240   return body;
1241 }
1242
1243 static tree
1244 copy_body (copy_body_data *id, gcov_type count, int frequency,
1245            basic_block entry_block_map, basic_block exit_block_map)
1246 {
1247   tree fndecl = id->src_fn;
1248   tree body;
1249
1250   /* If this body has a CFG, walk CFG and copy.  */
1251   gcc_assert (ENTRY_BLOCK_PTR_FOR_FUNCTION (DECL_STRUCT_FUNCTION (fndecl)));
1252   body = copy_cfg_body (id, count, frequency, entry_block_map, exit_block_map);
1253
1254   return body;
1255 }
1256
1257 /* Return true if VALUE is an ADDR_EXPR of an automatic variable
1258    defined in function FN, or of a data member thereof.  */
1259
1260 static bool
1261 self_inlining_addr_expr (tree value, tree fn)
1262 {
1263   tree var;
1264
1265   if (TREE_CODE (value) != ADDR_EXPR)
1266     return false;
1267
1268   var = get_base_address (TREE_OPERAND (value, 0));
1269
1270   return var && lang_hooks.tree_inlining.auto_var_in_fn_p (var, fn);
1271 }
1272
1273 static void
1274 setup_one_parameter (copy_body_data *id, tree p, tree value, tree fn,
1275                      basic_block bb, tree *vars)
1276 {
1277   tree init_stmt;
1278   tree var;
1279   tree var_sub;
1280   tree rhs = value;
1281   tree def = (gimple_in_ssa_p (cfun)
1282               ? gimple_default_def (id->src_cfun, p) : NULL);
1283
1284   if (value
1285       && value != error_mark_node
1286       && !useless_type_conversion_p (TREE_TYPE (p), TREE_TYPE (value)))
1287     rhs = fold_build1 (NOP_EXPR, TREE_TYPE (p), value);
1288
1289   /* If the parameter is never assigned to, has no SSA_NAMEs created,
1290      we may not need to create a new variable here at all.  Instead, we may
1291      be able to just use the argument value.  */
1292   if (TREE_READONLY (p)
1293       && !TREE_ADDRESSABLE (p)
1294       && value && !TREE_SIDE_EFFECTS (value)
1295       && !def)
1296     {
1297       /* We may produce non-gimple trees by adding NOPs or introduce
1298          invalid sharing when operand is not really constant.
1299          It is not big deal to prohibit constant propagation here as
1300          we will constant propagate in DOM1 pass anyway.  */
1301       if (is_gimple_min_invariant (value)
1302           && useless_type_conversion_p (TREE_TYPE (p),
1303                                                  TREE_TYPE (value))
1304           /* We have to be very careful about ADDR_EXPR.  Make sure
1305              the base variable isn't a local variable of the inlined
1306              function, e.g., when doing recursive inlining, direct or
1307              mutually-recursive or whatever, which is why we don't
1308              just test whether fn == current_function_decl.  */
1309           && ! self_inlining_addr_expr (value, fn))
1310         {
1311           insert_decl_map (id, p, value);
1312           return;
1313         }
1314     }
1315
1316   /* Make an equivalent VAR_DECL.  Note that we must NOT remap the type
1317      here since the type of this decl must be visible to the calling
1318      function.  */
1319   var = copy_decl_to_var (p, id);
1320   if (gimple_in_ssa_p (cfun) && TREE_CODE (var) == VAR_DECL)
1321     {
1322       get_var_ann (var);
1323       add_referenced_var (var);
1324     }
1325
1326   /* See if the frontend wants to pass this by invisible reference.  If
1327      so, our new VAR_DECL will have REFERENCE_TYPE, and we need to
1328      replace uses of the PARM_DECL with dereferences.  */
1329   if (TREE_TYPE (var) != TREE_TYPE (p)
1330       && POINTER_TYPE_P (TREE_TYPE (var))
1331       && TREE_TYPE (TREE_TYPE (var)) == TREE_TYPE (p))
1332     {
1333       insert_decl_map (id, var, var);
1334       var_sub = build_fold_indirect_ref (var);
1335     }
1336   else
1337     var_sub = var;
1338
1339   /* Register the VAR_DECL as the equivalent for the PARM_DECL;
1340      that way, when the PARM_DECL is encountered, it will be
1341      automatically replaced by the VAR_DECL.  */
1342   insert_decl_map (id, p, var_sub);
1343
1344   /* Declare this new variable.  */
1345   TREE_CHAIN (var) = *vars;
1346   *vars = var;
1347
1348   /* Make gimplifier happy about this variable.  */
1349   DECL_SEEN_IN_BIND_EXPR_P (var) = 1;
1350
1351   /* Even if P was TREE_READONLY, the new VAR should not be.
1352      In the original code, we would have constructed a
1353      temporary, and then the function body would have never
1354      changed the value of P.  However, now, we will be
1355      constructing VAR directly.  The constructor body may
1356      change its value multiple times as it is being
1357      constructed.  Therefore, it must not be TREE_READONLY;
1358      the back-end assumes that TREE_READONLY variable is
1359      assigned to only once.  */
1360   if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (p)))
1361     TREE_READONLY (var) = 0;
1362
1363   /* If there is no setup required and we are in SSA, take the easy route
1364      replacing all SSA names representing the function parameter by the
1365      SSA name passed to function.
1366
1367      We need to construct map for the variable anyway as it might be used
1368      in different SSA names when parameter is set in function.
1369
1370      FIXME: This usually kills the last connection in between inlined
1371      function parameter and the actual value in debug info.  Can we do
1372      better here?  If we just inserted the statement, copy propagation
1373      would kill it anyway as it always did in older versions of GCC.
1374
1375      We might want to introduce a notion that single SSA_NAME might
1376      represent multiple variables for purposes of debugging. */
1377   if (gimple_in_ssa_p (cfun) && rhs && def && is_gimple_reg (p)
1378       && (TREE_CODE (rhs) == SSA_NAME
1379           || is_gimple_min_invariant (rhs))
1380       && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (def))
1381     {
1382       insert_decl_map (id, def, rhs);
1383       return;
1384     }
1385
1386   /* Initialize this VAR_DECL from the equivalent argument.  Convert
1387      the argument to the proper type in case it was promoted.  */
1388   if (value)
1389     {
1390       block_stmt_iterator bsi = bsi_last (bb);
1391
1392       if (rhs == error_mark_node)
1393         {
1394           insert_decl_map (id, p, var_sub);
1395           return;
1396         }
1397
1398       STRIP_USELESS_TYPE_CONVERSION (rhs);
1399
1400       /* We want to use GIMPLE_MODIFY_STMT, not INIT_EXPR here so that we
1401          keep our trees in gimple form.  */
1402       if (def && gimple_in_ssa_p (cfun) && is_gimple_reg (p))
1403         {
1404           def = remap_ssa_name (def, id);
1405           init_stmt = build_gimple_modify_stmt (def, rhs);
1406           SSA_NAME_DEF_STMT (def) = init_stmt;
1407           SSA_NAME_IS_DEFAULT_DEF (def) = 0;
1408           set_default_def (var, NULL);
1409         }
1410       else
1411         init_stmt = build_gimple_modify_stmt (var, rhs);
1412
1413       /* If we did not create a gimple value and we did not create a gimple
1414          cast of a gimple value, then we will need to gimplify INIT_STMTS
1415          at the end.  Note that is_gimple_cast only checks the outer
1416          tree code, not its operand.  Thus the explicit check that its
1417          operand is a gimple value.  */
1418       if ((!is_gimple_val (rhs)
1419           && (!is_gimple_cast (rhs)
1420               || !is_gimple_val (TREE_OPERAND (rhs, 0))))
1421           || !is_gimple_reg (var))
1422         {
1423           tree_stmt_iterator i;
1424
1425           push_gimplify_context ();
1426           gimplify_stmt (&init_stmt);
1427           if (gimple_in_ssa_p (cfun)
1428               && init_stmt && TREE_CODE (init_stmt) == STATEMENT_LIST)
1429             {
1430               /* The replacement can expose previously unreferenced
1431                  variables.  */
1432               for (i = tsi_start (init_stmt); !tsi_end_p (i); tsi_next (&i))
1433                 find_new_referenced_vars (tsi_stmt_ptr (i));
1434              }
1435           pop_gimplify_context (NULL);
1436         }
1437
1438       /* If VAR represents a zero-sized variable, it's possible that the
1439          assignment statment may result in no gimple statements.  */
1440       if (init_stmt)
1441         bsi_insert_after (&bsi, init_stmt, BSI_NEW_STMT);
1442       if (gimple_in_ssa_p (cfun))
1443         for (;!bsi_end_p (bsi); bsi_next (&bsi))
1444           mark_symbols_for_renaming (bsi_stmt (bsi));
1445     }
1446 }
1447
1448 /* Generate code to initialize the parameters of the function at the
1449    top of the stack in ID from the CALL_EXPR EXP.  */
1450
1451 static void
1452 initialize_inlined_parameters (copy_body_data *id, tree exp,
1453                                tree fn, basic_block bb)
1454 {
1455   tree parms;
1456   tree a;
1457   tree p;
1458   tree vars = NULL_TREE;
1459   call_expr_arg_iterator iter;
1460   tree static_chain = CALL_EXPR_STATIC_CHAIN (exp);
1461
1462   /* Figure out what the parameters are.  */
1463   parms = DECL_ARGUMENTS (fn);
1464
1465   /* Loop through the parameter declarations, replacing each with an
1466      equivalent VAR_DECL, appropriately initialized.  */
1467   for (p = parms, a = first_call_expr_arg (exp, &iter); p;
1468        a = next_call_expr_arg (&iter), p = TREE_CHAIN (p))
1469     setup_one_parameter (id, p, a, fn, bb, &vars);
1470
1471   /* Initialize the static chain.  */
1472   p = DECL_STRUCT_FUNCTION (fn)->static_chain_decl;
1473   gcc_assert (fn != current_function_decl);
1474   if (p)
1475     {
1476       /* No static chain?  Seems like a bug in tree-nested.c.  */
1477       gcc_assert (static_chain);
1478
1479       setup_one_parameter (id, p, static_chain, fn, bb, &vars);
1480     }
1481
1482   declare_inline_vars (id->block, vars);
1483 }
1484
1485 /* Declare a return variable to replace the RESULT_DECL for the
1486    function we are calling.  An appropriate DECL_STMT is returned.
1487    The USE_STMT is filled to contain a use of the declaration to
1488    indicate the return value of the function.
1489
1490    RETURN_SLOT, if non-null is place where to store the result.  It
1491    is set only for CALL_EXPR_RETURN_SLOT_OPT.  MODIFY_DEST, if non-null,
1492    was the LHS of the GIMPLE_MODIFY_STMT to which this call is the RHS.
1493
1494    The return value is a (possibly null) value that is the result of the
1495    function as seen by the callee.  *USE_P is a (possibly null) value that
1496    holds the result as seen by the caller.  */
1497
1498 static tree
1499 declare_return_variable (copy_body_data *id, tree return_slot, tree modify_dest,
1500                          tree *use_p)
1501 {
1502   tree callee = id->src_fn;
1503   tree caller = id->dst_fn;
1504   tree result = DECL_RESULT (callee);
1505   tree callee_type = TREE_TYPE (result);
1506   tree caller_type = TREE_TYPE (TREE_TYPE (callee));
1507   tree var, use;
1508
1509   /* We don't need to do anything for functions that don't return
1510      anything.  */
1511   if (!result || VOID_TYPE_P (callee_type))
1512     {
1513       *use_p = NULL_TREE;
1514       return NULL_TREE;
1515     }
1516
1517   /* If there was a return slot, then the return value is the
1518      dereferenced address of that object.  */
1519   if (return_slot)
1520     {
1521       /* The front end shouldn't have used both return_slot and
1522          a modify expression.  */
1523       gcc_assert (!modify_dest);
1524       if (DECL_BY_REFERENCE (result))
1525         {
1526           tree return_slot_addr = build_fold_addr_expr (return_slot);
1527           STRIP_USELESS_TYPE_CONVERSION (return_slot_addr);
1528
1529           /* We are going to construct *&return_slot and we can't do that
1530              for variables believed to be not addressable. 
1531
1532              FIXME: This check possibly can match, because values returned
1533              via return slot optimization are not believed to have address
1534              taken by alias analysis.  */
1535           gcc_assert (TREE_CODE (return_slot) != SSA_NAME);
1536           if (gimple_in_ssa_p (cfun))
1537             {
1538               HOST_WIDE_INT bitsize;
1539               HOST_WIDE_INT bitpos;
1540               tree offset;
1541               enum machine_mode mode;
1542               int unsignedp;
1543               int volatilep;
1544               tree base;
1545               base = get_inner_reference (return_slot, &bitsize, &bitpos,
1546                                           &offset,
1547                                           &mode, &unsignedp, &volatilep,
1548                                           false);
1549               if (TREE_CODE (base) == INDIRECT_REF)
1550                 base = TREE_OPERAND (base, 0);
1551               if (TREE_CODE (base) == SSA_NAME)
1552                 base = SSA_NAME_VAR (base);
1553               mark_sym_for_renaming (base);
1554             }
1555           var = return_slot_addr;
1556         }
1557       else
1558         {
1559           var = return_slot;
1560           gcc_assert (TREE_CODE (var) != SSA_NAME);
1561         }
1562       if ((TREE_CODE (TREE_TYPE (result)) == COMPLEX_TYPE
1563            || TREE_CODE (TREE_TYPE (result)) == VECTOR_TYPE)
1564           && !DECL_GIMPLE_REG_P (result)
1565           && DECL_P (var))
1566         DECL_GIMPLE_REG_P (var) = 0;
1567       use = NULL;
1568       goto done;
1569     }
1570
1571   /* All types requiring non-trivial constructors should have been handled.  */
1572   gcc_assert (!TREE_ADDRESSABLE (callee_type));
1573
1574   /* Attempt to avoid creating a new temporary variable.  */
1575   if (modify_dest
1576       && TREE_CODE (modify_dest) != SSA_NAME)
1577     {
1578       bool use_it = false;
1579
1580       /* We can't use MODIFY_DEST if there's type promotion involved.  */
1581       if (!useless_type_conversion_p (callee_type, caller_type))
1582         use_it = false;
1583
1584       /* ??? If we're assigning to a variable sized type, then we must
1585          reuse the destination variable, because we've no good way to
1586          create variable sized temporaries at this point.  */
1587       else if (TREE_CODE (TYPE_SIZE_UNIT (caller_type)) != INTEGER_CST)
1588         use_it = true;
1589
1590       /* If the callee cannot possibly modify MODIFY_DEST, then we can
1591          reuse it as the result of the call directly.  Don't do this if
1592          it would promote MODIFY_DEST to addressable.  */
1593       else if (TREE_ADDRESSABLE (result))
1594         use_it = false;
1595       else
1596         {
1597           tree base_m = get_base_address (modify_dest);
1598
1599           /* If the base isn't a decl, then it's a pointer, and we don't
1600              know where that's going to go.  */
1601           if (!DECL_P (base_m))
1602             use_it = false;
1603           else if (is_global_var (base_m))
1604             use_it = false;
1605           else if ((TREE_CODE (TREE_TYPE (result)) == COMPLEX_TYPE
1606                     || TREE_CODE (TREE_TYPE (result)) == VECTOR_TYPE)
1607                    && !DECL_GIMPLE_REG_P (result)
1608                    && DECL_GIMPLE_REG_P (base_m))
1609             use_it = false;
1610           else if (!TREE_ADDRESSABLE (base_m))
1611             use_it = true;
1612         }
1613
1614       if (use_it)
1615         {
1616           var = modify_dest;
1617           use = NULL;
1618           goto done;
1619         }
1620     }
1621
1622   gcc_assert (TREE_CODE (TYPE_SIZE_UNIT (callee_type)) == INTEGER_CST);
1623
1624   var = copy_result_decl_to_var (result, id);
1625   if (gimple_in_ssa_p (cfun))
1626     {
1627       get_var_ann (var);
1628       add_referenced_var (var);
1629     }
1630
1631   DECL_SEEN_IN_BIND_EXPR_P (var) = 1;
1632   DECL_STRUCT_FUNCTION (caller)->unexpanded_var_list
1633     = tree_cons (NULL_TREE, var,
1634                  DECL_STRUCT_FUNCTION (caller)->unexpanded_var_list);
1635
1636   /* Do not have the rest of GCC warn about this variable as it should
1637      not be visible to the user.  */
1638   TREE_NO_WARNING (var) = 1;
1639
1640   declare_inline_vars (id->block, var);
1641
1642   /* Build the use expr.  If the return type of the function was
1643      promoted, convert it back to the expected type.  */
1644   use = var;
1645   if (!useless_type_conversion_p (caller_type, TREE_TYPE (var)))
1646     use = fold_convert (caller_type, var);
1647     
1648   STRIP_USELESS_TYPE_CONVERSION (use);
1649
1650   if (DECL_BY_REFERENCE (result))
1651     var = build_fold_addr_expr (var);
1652
1653  done:
1654   /* Register the VAR_DECL as the equivalent for the RESULT_DECL; that
1655      way, when the RESULT_DECL is encountered, it will be
1656      automatically replaced by the VAR_DECL.  */
1657   insert_decl_map (id, result, var);
1658
1659   /* Remember this so we can ignore it in remap_decls.  */
1660   id->retvar = var;
1661
1662   *use_p = use;
1663   return var;
1664 }
1665
1666 /* Returns nonzero if a function can be inlined as a tree.  */
1667
1668 bool
1669 tree_inlinable_function_p (tree fn)
1670 {
1671   return inlinable_function_p (fn);
1672 }
1673
1674 static const char *inline_forbidden_reason;
1675
1676 static tree
1677 inline_forbidden_p_1 (tree *nodep, int *walk_subtrees ATTRIBUTE_UNUSED,
1678                       void *fnp)
1679 {
1680   tree node = *nodep;
1681   tree fn = (tree) fnp;
1682   tree t;
1683
1684   switch (TREE_CODE (node))
1685     {
1686     case CALL_EXPR:
1687       /* Refuse to inline alloca call unless user explicitly forced so as
1688          this may change program's memory overhead drastically when the
1689          function using alloca is called in loop.  In GCC present in
1690          SPEC2000 inlining into schedule_block cause it to require 2GB of
1691          RAM instead of 256MB.  */
1692       if (alloca_call_p (node)
1693           && !lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)))
1694         {
1695           inline_forbidden_reason
1696             = G_("function %q+F can never be inlined because it uses "
1697                  "alloca (override using the always_inline attribute)");
1698           return node;
1699         }
1700       t = get_callee_fndecl (node);
1701       if (! t)
1702         break;
1703
1704       /* We cannot inline functions that call setjmp.  */
1705       if (setjmp_call_p (t))
1706         {
1707           inline_forbidden_reason
1708             = G_("function %q+F can never be inlined because it uses setjmp");
1709           return node;
1710         }
1711
1712       if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL)
1713         switch (DECL_FUNCTION_CODE (t))
1714           {
1715             /* We cannot inline functions that take a variable number of
1716                arguments.  */
1717           case BUILT_IN_VA_START:
1718           case BUILT_IN_STDARG_START:
1719           case BUILT_IN_NEXT_ARG:
1720           case BUILT_IN_VA_END:
1721             inline_forbidden_reason
1722               = G_("function %q+F can never be inlined because it "
1723                    "uses variable argument lists");
1724             return node;
1725
1726           case BUILT_IN_LONGJMP:
1727             /* We can't inline functions that call __builtin_longjmp at
1728                all.  The non-local goto machinery really requires the
1729                destination be in a different function.  If we allow the
1730                function calling __builtin_longjmp to be inlined into the
1731                function calling __builtin_setjmp, Things will Go Awry.  */
1732             inline_forbidden_reason
1733               = G_("function %q+F can never be inlined because "
1734                    "it uses setjmp-longjmp exception handling");
1735             return node;
1736
1737           case BUILT_IN_NONLOCAL_GOTO:
1738             /* Similarly.  */
1739             inline_forbidden_reason
1740               = G_("function %q+F can never be inlined because "
1741                    "it uses non-local goto");
1742             return node;
1743
1744           case BUILT_IN_RETURN:
1745           case BUILT_IN_APPLY_ARGS:
1746             /* If a __builtin_apply_args caller would be inlined,
1747                it would be saving arguments of the function it has
1748                been inlined into.  Similarly __builtin_return would
1749                return from the function the inline has been inlined into.  */
1750             inline_forbidden_reason
1751               = G_("function %q+F can never be inlined because "
1752                    "it uses __builtin_return or __builtin_apply_args");
1753             return node;
1754
1755           default:
1756             break;
1757           }
1758       break;
1759
1760     case GOTO_EXPR:
1761       t = TREE_OPERAND (node, 0);
1762
1763       /* We will not inline a function which uses computed goto.  The
1764          addresses of its local labels, which may be tucked into
1765          global storage, are of course not constant across
1766          instantiations, which causes unexpected behavior.  */
1767       if (TREE_CODE (t) != LABEL_DECL)
1768         {
1769           inline_forbidden_reason
1770             = G_("function %q+F can never be inlined "
1771                  "because it contains a computed goto");
1772           return node;
1773         }
1774       break;
1775
1776     case LABEL_EXPR:
1777       t = TREE_OPERAND (node, 0);
1778       if (DECL_NONLOCAL (t))
1779         {
1780           /* We cannot inline a function that receives a non-local goto
1781              because we cannot remap the destination label used in the
1782              function that is performing the non-local goto.  */
1783           inline_forbidden_reason
1784             = G_("function %q+F can never be inlined "
1785                  "because it receives a non-local goto");
1786           return node;
1787         }
1788       break;
1789
1790     case RECORD_TYPE:
1791     case UNION_TYPE:
1792       /* We cannot inline a function of the form
1793
1794            void F (int i) { struct S { int ar[i]; } s; }
1795
1796          Attempting to do so produces a catch-22.
1797          If walk_tree examines the TYPE_FIELDS chain of RECORD_TYPE/
1798          UNION_TYPE nodes, then it goes into infinite recursion on a
1799          structure containing a pointer to its own type.  If it doesn't,
1800          then the type node for S doesn't get adjusted properly when
1801          F is inlined. 
1802
1803          ??? This is likely no longer true, but it's too late in the 4.0
1804          cycle to try to find out.  This should be checked for 4.1.  */
1805       for (t = TYPE_FIELDS (node); t; t = TREE_CHAIN (t))
1806         if (variably_modified_type_p (TREE_TYPE (t), NULL))
1807           {
1808             inline_forbidden_reason
1809               = G_("function %q+F can never be inlined "
1810                    "because it uses variable sized variables");
1811             return node;
1812           }
1813
1814     default:
1815       break;
1816     }
1817
1818   return NULL_TREE;
1819 }
1820
1821 /* Return subexpression representing possible alloca call, if any.  */
1822 static tree
1823 inline_forbidden_p (tree fndecl)
1824 {
1825   location_t saved_loc = input_location;
1826   block_stmt_iterator bsi;
1827   basic_block bb;
1828   tree ret = NULL_TREE;
1829
1830   FOR_EACH_BB_FN (bb, DECL_STRUCT_FUNCTION (fndecl))
1831     for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
1832       {
1833         ret = walk_tree_without_duplicates (bsi_stmt_ptr (bsi),
1834                                     inline_forbidden_p_1, fndecl);
1835         if (ret)
1836           goto egress;
1837       }
1838
1839 egress:
1840   input_location = saved_loc;
1841   return ret;
1842 }
1843
1844 /* Returns nonzero if FN is a function that does not have any
1845    fundamental inline blocking properties.  */
1846
1847 static bool
1848 inlinable_function_p (tree fn)
1849 {
1850   bool inlinable = true;
1851
1852   /* If we've already decided this function shouldn't be inlined,
1853      there's no need to check again.  */
1854   if (DECL_UNINLINABLE (fn))
1855     return false;
1856
1857   /* See if there is any language-specific reason it cannot be
1858      inlined.  (It is important that this hook be called early because
1859      in C++ it may result in template instantiation.)
1860      If the function is not inlinable for language-specific reasons,
1861      it is left up to the langhook to explain why.  */
1862   inlinable = !lang_hooks.tree_inlining.cannot_inline_tree_fn (&fn);
1863
1864   /* If we don't have the function body available, we can't inline it.
1865      However, this should not be recorded since we also get here for
1866      forward declared inline functions.  Therefore, return at once.  */
1867   if (!DECL_SAVED_TREE (fn))
1868     return false;
1869
1870   /* If we're not inlining at all, then we cannot inline this function.  */
1871   else if (!flag_inline_trees)
1872     inlinable = false;
1873
1874   /* Only try to inline functions if DECL_INLINE is set.  This should be
1875      true for all functions declared `inline', and for all other functions
1876      as well with -finline-functions.
1877
1878      Don't think of disregarding DECL_INLINE when flag_inline_trees == 2;
1879      it's the front-end that must set DECL_INLINE in this case, because
1880      dwarf2out loses if a function that does not have DECL_INLINE set is
1881      inlined anyway.  That is why we have both DECL_INLINE and
1882      DECL_DECLARED_INLINE_P.  */
1883   /* FIXME: When flag_inline_trees dies, the check for flag_unit_at_a_time
1884             here should be redundant.  */
1885   else if (!DECL_INLINE (fn) && !flag_unit_at_a_time)
1886     inlinable = false;
1887
1888   else if (inline_forbidden_p (fn))
1889     {
1890       /* See if we should warn about uninlinable functions.  Previously,
1891          some of these warnings would be issued while trying to expand
1892          the function inline, but that would cause multiple warnings
1893          about functions that would for example call alloca.  But since
1894          this a property of the function, just one warning is enough.
1895          As a bonus we can now give more details about the reason why a
1896          function is not inlinable.
1897          We only warn for functions declared `inline' by the user.  */
1898       bool do_warning = (warn_inline
1899                          && DECL_INLINE (fn)
1900                          && DECL_DECLARED_INLINE_P (fn)
1901                          && !DECL_IN_SYSTEM_HEADER (fn));
1902
1903       if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)))
1904         sorry (inline_forbidden_reason, fn);
1905       else if (do_warning)
1906         warning (OPT_Winline, inline_forbidden_reason, fn);
1907
1908       inlinable = false;
1909     }
1910
1911   /* Squirrel away the result so that we don't have to check again.  */
1912   DECL_UNINLINABLE (fn) = !inlinable;
1913
1914   return inlinable;
1915 }
1916
1917 /* Estimate the cost of a memory move.  Use machine dependent
1918    word size and take possible memcpy call into account.  */
1919
1920 int
1921 estimate_move_cost (tree type)
1922 {
1923   HOST_WIDE_INT size;
1924
1925   size = int_size_in_bytes (type);
1926
1927   if (size < 0 || size > MOVE_MAX_PIECES * MOVE_RATIO)
1928     /* Cost of a memcpy call, 3 arguments and the call.  */
1929     return 4;
1930   else
1931     return ((size + MOVE_MAX_PIECES - 1) / MOVE_MAX_PIECES);
1932 }
1933
1934 /* Arguments for estimate_num_insns_1.  */
1935
1936 struct eni_data
1937 {
1938   /* Used to return the number of insns.  */
1939   int count;
1940
1941   /* Weights of various constructs.  */
1942   eni_weights *weights;
1943 };
1944
1945 /* Used by estimate_num_insns.  Estimate number of instructions seen
1946    by given statement.  */
1947
1948 static tree
1949 estimate_num_insns_1 (tree *tp, int *walk_subtrees, void *data)
1950 {
1951   struct eni_data *d = data;
1952   tree x = *tp;
1953   unsigned cost;
1954
1955   if (IS_TYPE_OR_DECL_P (x))
1956     {
1957       *walk_subtrees = 0;
1958       return NULL;
1959     }
1960   /* Assume that constants and references counts nothing.  These should
1961      be majorized by amount of operations among them we count later
1962      and are common target of CSE and similar optimizations.  */
1963   else if (CONSTANT_CLASS_P (x) || REFERENCE_CLASS_P (x))
1964     return NULL;
1965
1966   switch (TREE_CODE (x))
1967     {
1968     /* Containers have no cost.  */
1969     case TREE_LIST:
1970     case TREE_VEC:
1971     case BLOCK:
1972     case COMPONENT_REF:
1973     case BIT_FIELD_REF:
1974     case INDIRECT_REF:
1975     case ALIGN_INDIRECT_REF:
1976     case MISALIGNED_INDIRECT_REF:
1977     case ARRAY_REF:
1978     case ARRAY_RANGE_REF:
1979     case OBJ_TYPE_REF:
1980     case EXC_PTR_EXPR: /* ??? */
1981     case FILTER_EXPR: /* ??? */
1982     case COMPOUND_EXPR:
1983     case BIND_EXPR:
1984     case WITH_CLEANUP_EXPR:
1985     case NOP_EXPR:
1986     case CONVERT_EXPR:
1987     case VIEW_CONVERT_EXPR:
1988     case SAVE_EXPR:
1989     case ADDR_EXPR:
1990     case COMPLEX_EXPR:
1991     case RANGE_EXPR:
1992     case CASE_LABEL_EXPR:
1993     case SSA_NAME:
1994     case CATCH_EXPR:
1995     case EH_FILTER_EXPR:
1996     case STATEMENT_LIST:
1997     case ERROR_MARK:
1998     case NON_LVALUE_EXPR:
1999     case FDESC_EXPR:
2000     case VA_ARG_EXPR:
2001     case TRY_CATCH_EXPR:
2002     case TRY_FINALLY_EXPR:
2003     case LABEL_EXPR:
2004     case GOTO_EXPR:
2005     case RETURN_EXPR:
2006     case EXIT_EXPR:
2007     case LOOP_EXPR:
2008     case PHI_NODE:
2009     case WITH_SIZE_EXPR:
2010     case OMP_CLAUSE:
2011     case OMP_RETURN:
2012     case OMP_CONTINUE:
2013       break;
2014
2015     /* We don't account constants for now.  Assume that the cost is amortized
2016        by operations that do use them.  We may re-consider this decision once
2017        we are able to optimize the tree before estimating its size and break
2018        out static initializers.  */
2019     case IDENTIFIER_NODE:
2020     case INTEGER_CST:
2021     case REAL_CST:
2022     case COMPLEX_CST:
2023     case VECTOR_CST:
2024     case STRING_CST:
2025       *walk_subtrees = 0;
2026       return NULL;
2027
2028       /* CHANGE_DYNAMIC_TYPE_EXPR explicitly expands to nothing.  */
2029     case CHANGE_DYNAMIC_TYPE_EXPR:
2030       *walk_subtrees = 0;
2031       return NULL;
2032
2033     /* Try to estimate the cost of assignments.  We have three cases to
2034        deal with:
2035         1) Simple assignments to registers;
2036         2) Stores to things that must live in memory.  This includes
2037            "normal" stores to scalars, but also assignments of large
2038            structures, or constructors of big arrays;
2039         3) TARGET_EXPRs.
2040
2041        Let us look at the first two cases, assuming we have "a = b + C":
2042        <GIMPLE_MODIFY_STMT <var_decl "a">
2043                            <plus_expr <var_decl "b"> <constant C>>
2044        If "a" is a GIMPLE register, the assignment to it is free on almost
2045        any target, because "a" usually ends up in a real register.  Hence
2046        the only cost of this expression comes from the PLUS_EXPR, and we
2047        can ignore the GIMPLE_MODIFY_STMT.
2048        If "a" is not a GIMPLE register, the assignment to "a" will most
2049        likely be a real store, so the cost of the GIMPLE_MODIFY_STMT is the cost
2050        of moving something into "a", which we compute using the function
2051        estimate_move_cost.
2052
2053        The third case deals with TARGET_EXPRs, for which the semantics are
2054        that a temporary is assigned, unless the TARGET_EXPR itself is being
2055        assigned to something else.  In the latter case we do not need the
2056        temporary.  E.g. in:
2057                 <GIMPLE_MODIFY_STMT <var_decl "a"> <target_expr>>, the
2058        GIMPLE_MODIFY_STMT is free.  */
2059     case INIT_EXPR:
2060     case GIMPLE_MODIFY_STMT:
2061       /* Is the right and side a TARGET_EXPR?  */
2062       if (TREE_CODE (GENERIC_TREE_OPERAND (x, 1)) == TARGET_EXPR)
2063         break;
2064       /* ... fall through ...  */
2065
2066     case TARGET_EXPR:
2067       x = GENERIC_TREE_OPERAND (x, 0);
2068       /* Is this an assignments to a register?  */
2069       if (is_gimple_reg (x))
2070         break;
2071       /* Otherwise it's a store, so fall through to compute the move cost.  */
2072
2073     case CONSTRUCTOR:
2074       d->count += estimate_move_cost (TREE_TYPE (x));
2075       break;
2076
2077     /* Assign cost of 1 to usual operations.
2078        ??? We may consider mapping RTL costs to this.  */
2079     case COND_EXPR:
2080     case VEC_COND_EXPR:
2081
2082     case PLUS_EXPR:
2083     case POINTER_PLUS_EXPR:
2084     case MINUS_EXPR:
2085     case MULT_EXPR:
2086
2087     case FIX_TRUNC_EXPR:
2088
2089     case NEGATE_EXPR:
2090     case FLOAT_EXPR:
2091     case MIN_EXPR:
2092     case MAX_EXPR:
2093     case ABS_EXPR:
2094
2095     case LSHIFT_EXPR:
2096     case RSHIFT_EXPR:
2097     case LROTATE_EXPR:
2098     case RROTATE_EXPR:
2099     case VEC_LSHIFT_EXPR:
2100     case VEC_RSHIFT_EXPR:
2101
2102     case BIT_IOR_EXPR:
2103     case BIT_XOR_EXPR:
2104     case BIT_AND_EXPR:
2105     case BIT_NOT_EXPR:
2106
2107     case TRUTH_ANDIF_EXPR:
2108     case TRUTH_ORIF_EXPR:
2109     case TRUTH_AND_EXPR:
2110     case TRUTH_OR_EXPR:
2111     case TRUTH_XOR_EXPR:
2112     case TRUTH_NOT_EXPR:
2113
2114     case LT_EXPR:
2115     case LE_EXPR:
2116     case GT_EXPR:
2117     case GE_EXPR:
2118     case EQ_EXPR:
2119     case NE_EXPR:
2120     case ORDERED_EXPR:
2121     case UNORDERED_EXPR:
2122
2123     case UNLT_EXPR:
2124     case UNLE_EXPR:
2125     case UNGT_EXPR:
2126     case UNGE_EXPR:
2127     case UNEQ_EXPR:
2128     case LTGT_EXPR:
2129
2130     case CONJ_EXPR:
2131
2132     case PREDECREMENT_EXPR:
2133     case PREINCREMENT_EXPR:
2134     case POSTDECREMENT_EXPR:
2135     case POSTINCREMENT_EXPR:
2136
2137     case ASM_EXPR:
2138
2139     case REALIGN_LOAD_EXPR:
2140
2141     case REDUC_MAX_EXPR:
2142     case REDUC_MIN_EXPR:
2143     case REDUC_PLUS_EXPR:
2144     case WIDEN_SUM_EXPR:
2145     case DOT_PROD_EXPR: 
2146     case VEC_WIDEN_MULT_HI_EXPR:
2147     case VEC_WIDEN_MULT_LO_EXPR:
2148     case VEC_UNPACK_HI_EXPR:
2149     case VEC_UNPACK_LO_EXPR:
2150     case VEC_UNPACK_FLOAT_HI_EXPR:
2151     case VEC_UNPACK_FLOAT_LO_EXPR:
2152     case VEC_PACK_TRUNC_EXPR:
2153     case VEC_PACK_SAT_EXPR:
2154     case VEC_PACK_FIX_TRUNC_EXPR:
2155
2156     case WIDEN_MULT_EXPR:
2157
2158     case VEC_EXTRACT_EVEN_EXPR:
2159     case VEC_EXTRACT_ODD_EXPR:
2160     case VEC_INTERLEAVE_HIGH_EXPR:
2161     case VEC_INTERLEAVE_LOW_EXPR:
2162
2163     case RESX_EXPR:
2164       d->count += 1;
2165       break;
2166
2167     case SWITCH_EXPR:
2168       /* TODO: Cost of a switch should be derived from the number of
2169          branches.  */
2170       d->count += d->weights->switch_cost;
2171       break;
2172
2173     /* Few special cases of expensive operations.  This is useful
2174        to avoid inlining on functions having too many of these.  */
2175     case TRUNC_DIV_EXPR:
2176     case CEIL_DIV_EXPR:
2177     case FLOOR_DIV_EXPR:
2178     case ROUND_DIV_EXPR:
2179     case EXACT_DIV_EXPR:
2180     case TRUNC_MOD_EXPR:
2181     case CEIL_MOD_EXPR:
2182     case FLOOR_MOD_EXPR:
2183     case ROUND_MOD_EXPR:
2184     case RDIV_EXPR:
2185       d->count += d->weights->div_mod_cost;
2186       break;
2187     case CALL_EXPR:
2188       {
2189         tree decl = get_callee_fndecl (x);
2190
2191         cost = d->weights->call_cost;
2192         if (decl && DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
2193           switch (DECL_FUNCTION_CODE (decl))
2194             {
2195             case BUILT_IN_CONSTANT_P:
2196               *walk_subtrees = 0;
2197               return NULL_TREE;
2198             case BUILT_IN_EXPECT:
2199               return NULL_TREE;
2200             /* Prefetch instruction is not expensive.  */
2201             case BUILT_IN_PREFETCH:
2202               cost = 1;
2203               break;
2204             default:
2205               break;
2206             }
2207
2208         /* Our cost must be kept in sync with cgraph_estimate_size_after_inlining
2209            that does use function declaration to figure out the arguments.  */
2210         if (!decl)
2211           {
2212             tree a;
2213             call_expr_arg_iterator iter;
2214             FOR_EACH_CALL_EXPR_ARG (a, iter, x)
2215               d->count += estimate_move_cost (TREE_TYPE (a));
2216           }
2217         else
2218           {
2219             tree arg;
2220             for (arg = DECL_ARGUMENTS (decl); arg; arg = TREE_CHAIN (arg))
2221               d->count += estimate_move_cost (TREE_TYPE (arg));
2222           }
2223
2224         d->count += cost;
2225         break;
2226       }
2227
2228     case OMP_PARALLEL:
2229     case OMP_FOR:
2230     case OMP_SECTIONS:
2231     case OMP_SINGLE:
2232     case OMP_SECTION:
2233     case OMP_MASTER:
2234     case OMP_ORDERED:
2235     case OMP_CRITICAL:
2236     case OMP_ATOMIC:
2237       /* OpenMP directives are generally very expensive.  */
2238       d->count += d->weights->omp_cost;
2239       break;
2240
2241     default:
2242       gcc_unreachable ();
2243     }
2244   return NULL;
2245 }
2246
2247 /* Estimate number of instructions that will be created by expanding EXPR.
2248    WEIGHTS contains weights attributed to various constructs.  */
2249
2250 int
2251 estimate_num_insns (tree expr, eni_weights *weights)
2252 {
2253   struct pointer_set_t *visited_nodes;
2254   basic_block bb;
2255   block_stmt_iterator bsi;
2256   struct function *my_function;
2257   struct eni_data data;
2258
2259   data.count = 0;
2260   data.weights = weights;
2261
2262   /* If we're given an entire function, walk the CFG.  */
2263   if (TREE_CODE (expr) == FUNCTION_DECL)
2264     {
2265       my_function = DECL_STRUCT_FUNCTION (expr);
2266       gcc_assert (my_function && my_function->cfg);
2267       visited_nodes = pointer_set_create ();
2268       FOR_EACH_BB_FN (bb, my_function)
2269         {
2270           for (bsi = bsi_start (bb);
2271                !bsi_end_p (bsi);
2272                bsi_next (&bsi))
2273             {
2274               walk_tree (bsi_stmt_ptr (bsi), estimate_num_insns_1,
2275                          &data, visited_nodes);
2276             }
2277         }
2278       pointer_set_destroy (visited_nodes);
2279     }
2280   else
2281     walk_tree_without_duplicates (&expr, estimate_num_insns_1, &data);
2282
2283   return data.count;
2284 }
2285
2286 /* Initializes weights used by estimate_num_insns.  */
2287
2288 void
2289 init_inline_once (void)
2290 {
2291   eni_inlining_weights.call_cost = PARAM_VALUE (PARAM_INLINE_CALL_COST);
2292   eni_inlining_weights.div_mod_cost = 10;
2293   eni_inlining_weights.switch_cost = 1;
2294   eni_inlining_weights.omp_cost = 40;
2295
2296   eni_size_weights.call_cost = 1;
2297   eni_size_weights.div_mod_cost = 1;
2298   eni_size_weights.switch_cost = 10;
2299   eni_size_weights.omp_cost = 40;
2300
2301   /* Estimating time for call is difficult, since we have no idea what the
2302      called function does.  In the current uses of eni_time_weights,
2303      underestimating the cost does less harm than overestimating it, so
2304      we choose a rather small value here.  */
2305   eni_time_weights.call_cost = 10;
2306   eni_time_weights.div_mod_cost = 10;
2307   eni_time_weights.switch_cost = 4;
2308   eni_time_weights.omp_cost = 40;
2309 }
2310
2311 typedef struct function *function_p;
2312
2313 DEF_VEC_P(function_p);
2314 DEF_VEC_ALLOC_P(function_p,heap);
2315
2316 /* Initialized with NOGC, making this poisonous to the garbage collector.  */
2317 static VEC(function_p,heap) *cfun_stack;
2318
2319 void
2320 push_cfun (struct function *new_cfun)
2321 {
2322   VEC_safe_push (function_p, heap, cfun_stack, cfun);
2323   cfun = new_cfun;
2324 }
2325
2326 void
2327 pop_cfun (void)
2328 {
2329   cfun = VEC_pop (function_p, cfun_stack);
2330 }
2331
2332 /* Install new lexical TREE_BLOCK underneath 'current_block'.  */
2333 static void
2334 add_lexical_block (tree current_block, tree new_block)
2335 {
2336   tree *blk_p;
2337
2338   /* Walk to the last sub-block.  */
2339   for (blk_p = &BLOCK_SUBBLOCKS (current_block);
2340        *blk_p;
2341        blk_p = &TREE_CHAIN (*blk_p))
2342     ;
2343   *blk_p = new_block;
2344   BLOCK_SUPERCONTEXT (new_block) = current_block;
2345 }
2346
2347 /* If *TP is a CALL_EXPR, replace it with its inline expansion.  */
2348
2349 static bool
2350 expand_call_inline (basic_block bb, tree stmt, tree *tp, void *data)
2351 {
2352   copy_body_data *id;
2353   tree t;
2354   tree use_retvar;
2355   tree fn;
2356   struct pointer_map_t *st;
2357   tree return_slot;
2358   tree modify_dest;
2359   location_t saved_location;
2360   struct cgraph_edge *cg_edge;
2361   const char *reason;
2362   basic_block return_block;
2363   edge e;
2364   block_stmt_iterator bsi, stmt_bsi;
2365   bool successfully_inlined = FALSE;
2366   bool purge_dead_abnormal_edges;
2367   tree t_step;
2368   tree var;
2369
2370   /* See what we've got.  */
2371   id = (copy_body_data *) data;
2372   t = *tp;
2373
2374   /* Set input_location here so we get the right instantiation context
2375      if we call instantiate_decl from inlinable_function_p.  */
2376   saved_location = input_location;
2377   if (EXPR_HAS_LOCATION (t))
2378     input_location = EXPR_LOCATION (t);
2379
2380   /* From here on, we're only interested in CALL_EXPRs.  */
2381   if (TREE_CODE (t) != CALL_EXPR)
2382     goto egress;
2383
2384   /* First, see if we can figure out what function is being called.
2385      If we cannot, then there is no hope of inlining the function.  */
2386   fn = get_callee_fndecl (t);
2387   if (!fn)
2388     goto egress;
2389
2390   /* Turn forward declarations into real ones.  */
2391   fn = cgraph_node (fn)->decl;
2392
2393   /* If fn is a declaration of a function in a nested scope that was
2394      globally declared inline, we don't set its DECL_INITIAL.
2395      However, we can't blindly follow DECL_ABSTRACT_ORIGIN because the
2396      C++ front-end uses it for cdtors to refer to their internal
2397      declarations, that are not real functions.  Fortunately those
2398      don't have trees to be saved, so we can tell by checking their
2399      DECL_SAVED_TREE.  */
2400   if (! DECL_INITIAL (fn)
2401       && DECL_ABSTRACT_ORIGIN (fn)
2402       && DECL_SAVED_TREE (DECL_ABSTRACT_ORIGIN (fn)))
2403     fn = DECL_ABSTRACT_ORIGIN (fn);
2404
2405   /* Objective C and fortran still calls tree_rest_of_compilation directly.
2406      Kill this check once this is fixed.  */
2407   if (!id->dst_node->analyzed)
2408     goto egress;
2409
2410   cg_edge = cgraph_edge (id->dst_node, stmt);
2411
2412   /* Constant propagation on argument done during previous inlining
2413      may create new direct call.  Produce an edge for it.  */
2414   if (!cg_edge)
2415     {
2416       struct cgraph_node *dest = cgraph_node (fn);
2417
2418       /* We have missing edge in the callgraph.  This can happen in one case
2419          where previous inlining turned indirect call into direct call by
2420          constant propagating arguments.  In all other cases we hit a bug
2421          (incorrect node sharing is most common reason for missing edges.  */
2422       gcc_assert (dest->needed || !flag_unit_at_a_time);
2423       cgraph_create_edge (id->dst_node, dest, stmt,
2424                           bb->count, CGRAPH_FREQ_BASE,
2425                           bb->loop_depth)->inline_failed
2426         = N_("originally indirect function call not considered for inlining");
2427       if (dump_file)
2428         {
2429            fprintf (dump_file, "Created new direct edge to %s",
2430                     cgraph_node_name (dest));
2431         }
2432       goto egress;
2433     }
2434
2435   /* Don't try to inline functions that are not well-suited to
2436      inlining.  */
2437   if (!cgraph_inline_p (cg_edge, &reason))
2438     {
2439       if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn))
2440           /* Avoid warnings during early inline pass. */
2441           && (!flag_unit_at_a_time || cgraph_global_info_ready))
2442         {
2443           sorry ("inlining failed in call to %q+F: %s", fn, reason);
2444           sorry ("called from here");
2445         }
2446       else if (warn_inline && DECL_DECLARED_INLINE_P (fn)
2447                && !DECL_IN_SYSTEM_HEADER (fn)
2448                && strlen (reason)
2449                && !lookup_attribute ("noinline", DECL_ATTRIBUTES (fn))
2450                /* Avoid warnings during early inline pass. */
2451                && (!flag_unit_at_a_time || cgraph_global_info_ready))
2452         {
2453           warning (OPT_Winline, "inlining failed in call to %q+F: %s",
2454                    fn, reason);
2455           warning (OPT_Winline, "called from here");
2456         }
2457       goto egress;
2458     }
2459   fn = cg_edge->callee->decl;
2460
2461 #ifdef ENABLE_CHECKING
2462   if (cg_edge->callee->decl != id->dst_node->decl)
2463     verify_cgraph_node (cg_edge->callee);
2464 #endif
2465
2466   /* We will be inlining this callee.  */
2467   id->eh_region = lookup_stmt_eh_region (stmt);
2468
2469   /* Split the block holding the CALL_EXPR.  */
2470   e = split_block (bb, stmt);
2471   bb = e->src;
2472   return_block = e->dest;
2473   remove_edge (e);
2474
2475   /* split_block splits after the statement; work around this by
2476      moving the call into the second block manually.  Not pretty,
2477      but seems easier than doing the CFG manipulation by hand
2478      when the CALL_EXPR is in the last statement of BB.  */
2479   stmt_bsi = bsi_last (bb);
2480   bsi_remove (&stmt_bsi, false);
2481
2482   /* If the CALL_EXPR was in the last statement of BB, it may have
2483      been the source of abnormal edges.  In this case, schedule
2484      the removal of dead abnormal edges.  */
2485   bsi = bsi_start (return_block);
2486   if (bsi_end_p (bsi))
2487     {
2488       bsi_insert_after (&bsi, stmt, BSI_NEW_STMT);
2489       purge_dead_abnormal_edges = true;
2490     }
2491   else
2492     {
2493       bsi_insert_before (&bsi, stmt, BSI_NEW_STMT);
2494       purge_dead_abnormal_edges = false;
2495     }
2496
2497   stmt_bsi = bsi_start (return_block);
2498
2499   /* Build a block containing code to initialize the arguments, the
2500      actual inline expansion of the body, and a label for the return
2501      statements within the function to jump to.  The type of the
2502      statement expression is the return type of the function call.  */
2503   id->block = make_node (BLOCK);
2504   BLOCK_ABSTRACT_ORIGIN (id->block) = fn;
2505   BLOCK_SOURCE_LOCATION (id->block) = input_location;
2506   add_lexical_block (TREE_BLOCK (stmt), id->block);
2507
2508   /* Local declarations will be replaced by their equivalents in this
2509      map.  */
2510   st = id->decl_map;
2511   id->decl_map = pointer_map_create ();
2512
2513   /* Record the function we are about to inline.  */
2514   id->src_fn = fn;
2515   id->src_node = cg_edge->callee;
2516   id->src_cfun = DECL_STRUCT_FUNCTION (fn);
2517
2518   initialize_inlined_parameters (id, t, fn, bb);
2519
2520   if (DECL_INITIAL (fn))
2521     add_lexical_block (id->block, remap_blocks (DECL_INITIAL (fn), id));
2522
2523   /* Return statements in the function body will be replaced by jumps
2524      to the RET_LABEL.  */
2525
2526   gcc_assert (DECL_INITIAL (fn));
2527   gcc_assert (TREE_CODE (DECL_INITIAL (fn)) == BLOCK);
2528
2529   /* Find the lhs to which the result of this call is assigned.  */
2530   return_slot = NULL;
2531   if (TREE_CODE (stmt) == GIMPLE_MODIFY_STMT)
2532     {
2533       modify_dest = GIMPLE_STMT_OPERAND (stmt, 0);
2534
2535       /* The function which we are inlining might not return a value,
2536          in which case we should issue a warning that the function
2537          does not return a value.  In that case the optimizers will
2538          see that the variable to which the value is assigned was not
2539          initialized.  We do not want to issue a warning about that
2540          uninitialized variable.  */
2541       if (DECL_P (modify_dest))
2542         TREE_NO_WARNING (modify_dest) = 1;
2543       if (CALL_EXPR_RETURN_SLOT_OPT (t))
2544         {
2545           return_slot = modify_dest;
2546           modify_dest = NULL;
2547         }
2548     }
2549   else
2550     modify_dest = NULL;
2551
2552   /* Declare the return variable for the function.  */
2553   declare_return_variable (id, return_slot,
2554                            modify_dest, &use_retvar);
2555
2556   /* This is it.  Duplicate the callee body.  Assume callee is
2557      pre-gimplified.  Note that we must not alter the caller
2558      function in any way before this point, as this CALL_EXPR may be
2559      a self-referential call; if we're calling ourselves, we need to
2560      duplicate our body before altering anything.  */
2561   copy_body (id, bb->count, bb->frequency, bb, return_block);
2562
2563   /* Add local vars in this inlined callee to caller.  */
2564   t_step = id->src_cfun->unexpanded_var_list;
2565   for (; t_step; t_step = TREE_CHAIN (t_step))
2566     {
2567       var = TREE_VALUE (t_step);
2568       if (TREE_STATIC (var) && !TREE_ASM_WRITTEN (var))
2569         cfun->unexpanded_var_list = tree_cons (NULL_TREE, var,
2570                                                cfun->unexpanded_var_list);
2571       else
2572         cfun->unexpanded_var_list = tree_cons (NULL_TREE, remap_decl (var, id),
2573                                                cfun->unexpanded_var_list);
2574     }
2575
2576   /* Clean up.  */
2577   pointer_map_destroy (id->decl_map);
2578   id->decl_map = st;
2579
2580   /* If the inlined function returns a result that we care about,
2581      clobber the CALL_EXPR with a reference to the return variable.  */
2582   if (use_retvar && (TREE_CODE (bsi_stmt (stmt_bsi)) != CALL_EXPR))
2583     {
2584       *tp = use_retvar;
2585       if (gimple_in_ssa_p (cfun))
2586         {
2587           update_stmt (stmt);
2588           mark_symbols_for_renaming (stmt);
2589         }
2590       maybe_clean_or_replace_eh_stmt (stmt, stmt);
2591     }
2592   else
2593     /* We're modifying a TSI owned by gimple_expand_calls_inline();
2594        tsi_delink() will leave the iterator in a sane state.  */
2595     {
2596       /* Handle case of inlining function that miss return statement so 
2597          return value becomes undefined.  */
2598       if (TREE_CODE (stmt) == GIMPLE_MODIFY_STMT
2599           && TREE_CODE (GIMPLE_STMT_OPERAND (stmt, 0)) == SSA_NAME)
2600         {
2601           tree name = TREE_OPERAND (stmt, 0);
2602           tree var = SSA_NAME_VAR (TREE_OPERAND (stmt, 0));
2603           tree def = gimple_default_def (cfun, var);
2604
2605           /* If the variable is used undefined, make this name undefined via
2606              move.  */
2607           if (def)
2608             {
2609               TREE_OPERAND (stmt, 1) = def;
2610               update_stmt (stmt);
2611             }
2612           /* Otherwise make this variable undefined.  */
2613           else
2614             {
2615               bsi_remove (&stmt_bsi, true);
2616               set_default_def (var, name);
2617               SSA_NAME_DEF_STMT (name) = build_empty_stmt ();
2618             }
2619         }
2620       else
2621         bsi_remove (&stmt_bsi, true);
2622     }
2623
2624   if (purge_dead_abnormal_edges)
2625     tree_purge_dead_abnormal_call_edges (return_block);
2626
2627   /* If the value of the new expression is ignored, that's OK.  We
2628      don't warn about this for CALL_EXPRs, so we shouldn't warn about
2629      the equivalent inlined version either.  */
2630   TREE_USED (*tp) = 1;
2631
2632   /* Output the inlining info for this abstract function, since it has been
2633      inlined.  If we don't do this now, we can lose the information about the
2634      variables in the function when the blocks get blown away as soon as we
2635      remove the cgraph node.  */
2636   (*debug_hooks->outlining_inline_function) (cg_edge->callee->decl);
2637
2638   /* Update callgraph if needed.  */
2639   cgraph_remove_node (cg_edge->callee);
2640
2641   id->block = NULL_TREE;
2642   successfully_inlined = TRUE;
2643
2644  egress:
2645   input_location = saved_location;
2646   return successfully_inlined;
2647 }
2648
2649 /* Expand call statements reachable from STMT_P.
2650    We can only have CALL_EXPRs as the "toplevel" tree code or nested
2651    in a GIMPLE_MODIFY_STMT.  See tree-gimple.c:get_call_expr_in().  We can
2652    unfortunately not use that function here because we need a pointer
2653    to the CALL_EXPR, not the tree itself.  */
2654
2655 static bool
2656 gimple_expand_calls_inline (basic_block bb, copy_body_data *id)
2657 {
2658   block_stmt_iterator bsi;
2659
2660   /* Register specific tree functions.  */
2661   tree_register_cfg_hooks ();
2662   for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
2663     {
2664       tree *expr_p = bsi_stmt_ptr (bsi);
2665       tree stmt = *expr_p;
2666
2667       if (TREE_CODE (*expr_p) == GIMPLE_MODIFY_STMT)
2668         expr_p = &GIMPLE_STMT_OPERAND (*expr_p, 1);
2669       if (TREE_CODE (*expr_p) == WITH_SIZE_EXPR)
2670         expr_p = &TREE_OPERAND (*expr_p, 0);
2671       if (TREE_CODE (*expr_p) == CALL_EXPR)
2672         if (expand_call_inline (bb, stmt, expr_p, id))
2673           return true;
2674     }
2675   return false;
2676 }
2677
2678 /* Walk all basic blocks created after FIRST and try to fold every statement
2679    in the STATEMENTS pointer set.  */
2680 static void
2681 fold_marked_statements (int first, struct pointer_set_t *statements)
2682 {
2683   for (;first < n_basic_blocks;first++)
2684     if (BASIC_BLOCK (first))
2685       {
2686         block_stmt_iterator bsi;
2687         for (bsi = bsi_start (BASIC_BLOCK (first));
2688              !bsi_end_p (bsi); bsi_next (&bsi))
2689           if (pointer_set_contains (statements, bsi_stmt (bsi)))
2690             {
2691               tree old_stmt = bsi_stmt (bsi);
2692               if (fold_stmt (bsi_stmt_ptr (bsi)))
2693                 {
2694                   update_stmt (bsi_stmt (bsi));
2695                   if (maybe_clean_or_replace_eh_stmt (old_stmt, bsi_stmt (bsi)))
2696                      tree_purge_dead_eh_edges (BASIC_BLOCK (first));
2697                 }
2698             }
2699       }
2700 }
2701
2702 /* Return true if BB has at least one abnormal outgoing edge.  */
2703
2704 static inline bool
2705 has_abnormal_outgoing_edge_p (basic_block bb)
2706 {
2707   edge e;
2708   edge_iterator ei;
2709
2710   FOR_EACH_EDGE (e, ei, bb->succs)
2711     if (e->flags & EDGE_ABNORMAL)
2712       return true;
2713
2714   return false;
2715 }
2716
2717 /* When a block from the inlined function contains a call with side-effects
2718    in the middle gets inlined in a function with non-locals labels, the call
2719    becomes a potential non-local goto so we need to add appropriate edge.  */
2720
2721 static void
2722 make_nonlocal_label_edges (void)
2723 {
2724   block_stmt_iterator bsi;
2725   basic_block bb;
2726
2727   FOR_EACH_BB (bb)
2728     {
2729       for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
2730         {
2731           tree stmt = bsi_stmt (bsi);
2732           if (tree_can_make_abnormal_goto (stmt))
2733             {
2734               if (stmt == bsi_stmt (bsi_last (bb)))
2735                 {
2736                   if (!has_abnormal_outgoing_edge_p (bb))
2737                     make_abnormal_goto_edges (bb, true);
2738                 }
2739               else
2740                 {
2741                   edge e = split_block (bb, stmt);
2742                   bb = e->src;
2743                   make_abnormal_goto_edges (bb, true);
2744                 }
2745               break;
2746             }
2747
2748           /* Update PHIs on nonlocal goto receivers we (possibly)
2749              just created new edges into.  */
2750           if (TREE_CODE (stmt) == LABEL_EXPR
2751               && gimple_in_ssa_p (cfun))
2752             {
2753               tree target = LABEL_EXPR_LABEL (stmt);
2754               if (DECL_NONLOCAL (target))
2755                 {
2756                   tree phi;
2757
2758                   for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
2759                     {
2760                       gcc_assert (SSA_NAME_OCCURS_IN_ABNORMAL_PHI
2761                                   (PHI_RESULT (phi)));
2762                       mark_sym_for_renaming
2763                         (SSA_NAME_VAR (PHI_RESULT (phi)));
2764                     }
2765                 }
2766             }
2767         }
2768     }
2769 }
2770
2771 /* Expand calls to inline functions in the body of FN.  */
2772
2773 unsigned int
2774 optimize_inline_calls (tree fn)
2775 {
2776   copy_body_data id;
2777   tree prev_fn;
2778   basic_block bb;
2779   int last = n_basic_blocks;
2780   /* There is no point in performing inlining if errors have already
2781      occurred -- and we might crash if we try to inline invalid
2782      code.  */
2783   if (errorcount || sorrycount)
2784     return 0;
2785
2786   /* Clear out ID.  */
2787   memset (&id, 0, sizeof (id));
2788
2789   id.src_node = id.dst_node = cgraph_node (fn);
2790   id.dst_fn = fn;
2791   /* Or any functions that aren't finished yet.  */
2792   prev_fn = NULL_TREE;
2793   if (current_function_decl)
2794     {
2795       id.dst_fn = current_function_decl;
2796       prev_fn = current_function_decl;
2797     }
2798
2799   id.copy_decl = copy_decl_maybe_to_var;
2800   id.transform_call_graph_edges = CB_CGE_DUPLICATE;
2801   id.transform_new_cfg = false;
2802   id.transform_return_to_modify = true;
2803   id.transform_lang_insert_block = false;
2804   id.statements_to_fold = pointer_set_create ();
2805
2806   push_gimplify_context ();
2807
2808   /* We make no attempts to keep dominance info up-to-date.  */
2809   free_dominance_info (CDI_DOMINATORS);
2810   free_dominance_info (CDI_POST_DOMINATORS);
2811
2812   /* Reach the trees by walking over the CFG, and note the
2813      enclosing basic-blocks in the call edges.  */
2814   /* We walk the blocks going forward, because inlined function bodies
2815      will split id->current_basic_block, and the new blocks will
2816      follow it; we'll trudge through them, processing their CALL_EXPRs
2817      along the way.  */
2818   FOR_EACH_BB (bb)
2819     gimple_expand_calls_inline (bb, &id);
2820
2821   pop_gimplify_context (NULL);
2822   /* Renumber the (code) basic_blocks consecutively.  */
2823   compact_blocks ();
2824   /* Renumber the lexical scoping (non-code) blocks consecutively.  */
2825   number_blocks (fn);
2826
2827 #ifdef ENABLE_CHECKING
2828     {
2829       struct cgraph_edge *e;
2830
2831       verify_cgraph_node (id.dst_node);
2832
2833       /* Double check that we inlined everything we are supposed to inline.  */
2834       for (e = id.dst_node->callees; e; e = e->next_callee)
2835         gcc_assert (e->inline_failed);
2836     }
2837 #endif
2838
2839   /* We are not going to maintain the cgraph edges up to date.
2840      Kill it so it won't confuse us.  */
2841   cgraph_node_remove_callees (id.dst_node);
2842
2843   fold_marked_statements (last, id.statements_to_fold);
2844   pointer_set_destroy (id.statements_to_fold);
2845   fold_cond_expr_cond ();
2846   if (current_function_has_nonlocal_label)
2847     make_nonlocal_label_edges ();
2848   /* It would be nice to check SSA/CFG/statement consistency here, but it is
2849      not possible yet - the IPA passes might make various functions to not
2850      throw and they don't care to proactively update local EH info.  This is
2851      done later in fixup_cfg pass that also execute the verification.  */
2852   return (TODO_update_ssa | TODO_cleanup_cfg
2853           | (gimple_in_ssa_p (cfun) ? TODO_remove_unused_locals : 0)
2854           | (profile_status != PROFILE_ABSENT ? TODO_rebuild_frequencies : 0));
2855 }
2856
2857 /* FN is a function that has a complete body, and CLONE is a function whose
2858    body is to be set to a copy of FN, mapping argument declarations according
2859    to the ARG_MAP splay_tree.  */
2860
2861 void
2862 clone_body (tree clone, tree fn, void *arg_map)
2863 {
2864   copy_body_data id;
2865
2866   /* Clone the body, as if we were making an inline call.  But, remap the
2867      parameters in the callee to the parameters of caller.  */
2868   memset (&id, 0, sizeof (id));
2869   id.src_fn = fn;
2870   id.dst_fn = clone;
2871   id.src_cfun = DECL_STRUCT_FUNCTION (fn);
2872   id.decl_map = (struct pointer_map_t *)arg_map;
2873
2874   id.copy_decl = copy_decl_no_change;
2875   id.transform_call_graph_edges = CB_CGE_DUPLICATE;
2876   id.transform_new_cfg = true;
2877   id.transform_return_to_modify = false;
2878   id.transform_lang_insert_block = true;
2879
2880   /* We're not inside any EH region.  */
2881   id.eh_region = -1;
2882
2883   /* Actually copy the body.  */
2884   append_to_statement_list_force (copy_generic_body (&id), &DECL_SAVED_TREE (clone));
2885 }
2886
2887 /* Passed to walk_tree.  Copies the node pointed to, if appropriate.  */
2888
2889 tree
2890 copy_tree_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
2891 {
2892   enum tree_code code = TREE_CODE (*tp);
2893   enum tree_code_class cl = TREE_CODE_CLASS (code);
2894
2895   /* We make copies of most nodes.  */
2896   if (IS_EXPR_CODE_CLASS (cl)
2897       || IS_GIMPLE_STMT_CODE_CLASS (cl)
2898       || code == TREE_LIST
2899       || code == TREE_VEC
2900       || code == TYPE_DECL
2901       || code == OMP_CLAUSE)
2902     {
2903       /* Because the chain gets clobbered when we make a copy, we save it
2904          here.  */
2905       tree chain = NULL_TREE, new;
2906
2907       if (!GIMPLE_TUPLE_P (*tp))
2908         chain = TREE_CHAIN (*tp);
2909
2910       /* Copy the node.  */
2911       new = copy_node (*tp);
2912
2913       /* Propagate mudflap marked-ness.  */
2914       if (flag_mudflap && mf_marked_p (*tp))
2915         mf_mark (new);
2916
2917       *tp = new;
2918
2919       /* Now, restore the chain, if appropriate.  That will cause
2920          walk_tree to walk into the chain as well.  */
2921       if (code == PARM_DECL
2922           || code == TREE_LIST
2923           || code == OMP_CLAUSE)
2924         TREE_CHAIN (*tp) = chain;
2925
2926       /* For now, we don't update BLOCKs when we make copies.  So, we
2927          have to nullify all BIND_EXPRs.  */
2928       if (TREE_CODE (*tp) == BIND_EXPR)
2929         BIND_EXPR_BLOCK (*tp) = NULL_TREE;
2930     }
2931   else if (code == CONSTRUCTOR)
2932     {
2933       /* CONSTRUCTOR nodes need special handling because
2934          we need to duplicate the vector of elements.  */
2935       tree new;
2936
2937       new = copy_node (*tp);
2938
2939       /* Propagate mudflap marked-ness.  */
2940       if (flag_mudflap && mf_marked_p (*tp))
2941         mf_mark (new);
2942
2943       CONSTRUCTOR_ELTS (new) = VEC_copy (constructor_elt, gc,
2944                                          CONSTRUCTOR_ELTS (*tp));
2945       *tp = new;
2946     }
2947   else if (TREE_CODE_CLASS (code) == tcc_type)
2948     *walk_subtrees = 0;
2949   else if (TREE_CODE_CLASS (code) == tcc_declaration)
2950     *walk_subtrees = 0;
2951   else if (TREE_CODE_CLASS (code) == tcc_constant)
2952     *walk_subtrees = 0;
2953   else
2954     gcc_assert (code != STATEMENT_LIST);
2955   return NULL_TREE;
2956 }
2957
2958 /* The SAVE_EXPR pointed to by TP is being copied.  If ST contains
2959    information indicating to what new SAVE_EXPR this one should be mapped,
2960    use that one.  Otherwise, create a new node and enter it in ST.  FN is
2961    the function into which the copy will be placed.  */
2962
2963 static void
2964 remap_save_expr (tree *tp, void *st_, int *walk_subtrees)
2965 {
2966   struct pointer_map_t *st = (struct pointer_map_t *) st_;
2967   tree *n;
2968   tree t;
2969
2970   /* See if we already encountered this SAVE_EXPR.  */
2971   n = (tree *) pointer_map_contains (st, *tp);
2972
2973   /* If we didn't already remap this SAVE_EXPR, do so now.  */
2974   if (!n)
2975     {
2976       t = copy_node (*tp);
2977
2978       /* Remember this SAVE_EXPR.  */
2979       *pointer_map_insert (st, *tp) = t;
2980       /* Make sure we don't remap an already-remapped SAVE_EXPR.  */
2981       *pointer_map_insert (st, t) = t;
2982     }
2983   else
2984     {
2985       /* We've already walked into this SAVE_EXPR; don't do it again.  */
2986       *walk_subtrees = 0;
2987       t = *n;
2988     }
2989
2990   /* Replace this SAVE_EXPR with the copy.  */
2991   *tp = t;
2992 }
2993
2994 /* Called via walk_tree.  If *TP points to a DECL_STMT for a local label,
2995    copies the declaration and enters it in the splay_tree in DATA (which is
2996    really an `copy_body_data *').  */
2997
2998 static tree
2999 mark_local_for_remap_r (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED,
3000                         void *data)
3001 {
3002   copy_body_data *id = (copy_body_data *) data;
3003
3004   /* Don't walk into types.  */
3005   if (TYPE_P (*tp))
3006     *walk_subtrees = 0;
3007
3008   else if (TREE_CODE (*tp) == LABEL_EXPR)
3009     {
3010       tree decl = TREE_OPERAND (*tp, 0);
3011
3012       /* Copy the decl and remember the copy.  */
3013       insert_decl_map (id, decl, id->copy_decl (decl, id));
3014     }
3015
3016   return NULL_TREE;
3017 }
3018
3019 /* Perform any modifications to EXPR required when it is unsaved.  Does
3020    not recurse into EXPR's subtrees.  */
3021
3022 static void
3023 unsave_expr_1 (tree expr)
3024 {
3025   switch (TREE_CODE (expr))
3026     {
3027     case TARGET_EXPR:
3028       /* Don't mess with a TARGET_EXPR that hasn't been expanded.
3029          It's OK for this to happen if it was part of a subtree that
3030          isn't immediately expanded, such as operand 2 of another
3031          TARGET_EXPR.  */
3032       if (TREE_OPERAND (expr, 1))
3033         break;
3034
3035       TREE_OPERAND (expr, 1) = TREE_OPERAND (expr, 3);
3036       TREE_OPERAND (expr, 3) = NULL_TREE;
3037       break;
3038
3039     default:
3040       break;
3041     }
3042 }
3043
3044 /* Called via walk_tree when an expression is unsaved.  Using the
3045    splay_tree pointed to by ST (which is really a `splay_tree'),
3046    remaps all local declarations to appropriate replacements.  */
3047
3048 static tree
3049 unsave_r (tree *tp, int *walk_subtrees, void *data)
3050 {
3051   copy_body_data *id = (copy_body_data *) data;
3052   struct pointer_map_t *st = id->decl_map;
3053   tree *n;
3054
3055   /* Only a local declaration (variable or label).  */
3056   if ((TREE_CODE (*tp) == VAR_DECL && !TREE_STATIC (*tp))
3057       || TREE_CODE (*tp) == LABEL_DECL)
3058     {
3059       /* Lookup the declaration.  */
3060       n = (tree *) pointer_map_contains (st, *tp);
3061
3062       /* If it's there, remap it.  */
3063       if (n)
3064         *tp = *n;
3065     }
3066
3067   else if (TREE_CODE (*tp) == STATEMENT_LIST)
3068     copy_statement_list (tp);
3069   else if (TREE_CODE (*tp) == BIND_EXPR)
3070     copy_bind_expr (tp, walk_subtrees, id);
3071   else if (TREE_CODE (*tp) == SAVE_EXPR)
3072     remap_save_expr (tp, st, walk_subtrees);
3073   else
3074     {
3075       copy_tree_r (tp, walk_subtrees, NULL);
3076
3077       /* Do whatever unsaving is required.  */
3078       unsave_expr_1 (*tp);
3079     }
3080
3081   /* Keep iterating.  */
3082   return NULL_TREE;
3083 }
3084
3085 /* Copies everything in EXPR and replaces variables, labels
3086    and SAVE_EXPRs local to EXPR.  */
3087
3088 tree
3089 unsave_expr_now (tree expr)
3090 {
3091   copy_body_data id;
3092
3093   /* There's nothing to do for NULL_TREE.  */
3094   if (expr == 0)
3095     return expr;
3096
3097   /* Set up ID.  */
3098   memset (&id, 0, sizeof (id));
3099   id.src_fn = current_function_decl;
3100   id.dst_fn = current_function_decl;
3101   id.decl_map = pointer_map_create ();
3102
3103   id.copy_decl = copy_decl_no_change;
3104   id.transform_call_graph_edges = CB_CGE_DUPLICATE;
3105   id.transform_new_cfg = false;
3106   id.transform_return_to_modify = false;
3107   id.transform_lang_insert_block = false;
3108
3109   /* Walk the tree once to find local labels.  */
3110   walk_tree_without_duplicates (&expr, mark_local_for_remap_r, &id);
3111
3112   /* Walk the tree again, copying, remapping, and unsaving.  */
3113   walk_tree (&expr, unsave_r, &id, NULL);
3114
3115   /* Clean up.  */
3116   pointer_map_destroy (id.decl_map);
3117
3118   return expr;
3119 }
3120
3121 /* Allow someone to determine if SEARCH is a child of TOP from gdb.  */
3122
3123 static tree
3124 debug_find_tree_1 (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED, void *data)
3125 {
3126   if (*tp == data)
3127     return (tree) data;
3128   else
3129     return NULL;
3130 }
3131
3132 bool
3133 debug_find_tree (tree top, tree search)
3134 {
3135   return walk_tree_without_duplicates (&top, debug_find_tree_1, search) != 0;
3136 }
3137
3138
3139 /* Declare the variables created by the inliner.  Add all the variables in
3140    VARS to BIND_EXPR.  */
3141
3142 static void
3143 declare_inline_vars (tree block, tree vars)
3144 {
3145   tree t;
3146   for (t = vars; t; t = TREE_CHAIN (t))
3147     {
3148       DECL_SEEN_IN_BIND_EXPR_P (t) = 1;
3149       gcc_assert (!TREE_STATIC (t) && !TREE_ASM_WRITTEN (t));
3150       cfun->unexpanded_var_list =
3151         tree_cons (NULL_TREE, t,
3152                    cfun->unexpanded_var_list);
3153     }
3154
3155   if (block)
3156     BLOCK_VARS (block) = chainon (BLOCK_VARS (block), vars);
3157 }
3158
3159
3160 /* Copy NODE (which must be a DECL).  The DECL originally was in the FROM_FN,
3161    but now it will be in the TO_FN.  PARM_TO_VAR means enable PARM_DECL to
3162    VAR_DECL translation.  */
3163
3164 static tree
3165 copy_decl_for_dup_finish (copy_body_data *id, tree decl, tree copy)
3166 {
3167   /* Don't generate debug information for the copy if we wouldn't have
3168      generated it for the copy either.  */
3169   DECL_ARTIFICIAL (copy) = DECL_ARTIFICIAL (decl);
3170   DECL_IGNORED_P (copy) = DECL_IGNORED_P (decl);
3171
3172   /* Set the DECL_ABSTRACT_ORIGIN so the debugging routines know what
3173      declaration inspired this copy.  */ 
3174   DECL_ABSTRACT_ORIGIN (copy) = DECL_ORIGIN (decl);
3175
3176   /* The new variable/label has no RTL, yet.  */
3177   if (CODE_CONTAINS_STRUCT (TREE_CODE (copy), TS_DECL_WRTL)
3178       && !TREE_STATIC (copy) && !DECL_EXTERNAL (copy))
3179     SET_DECL_RTL (copy, NULL_RTX);
3180   
3181   /* These args would always appear unused, if not for this.  */
3182   TREE_USED (copy) = 1;
3183
3184   /* Set the context for the new declaration.  */
3185   if (!DECL_CONTEXT (decl))
3186     /* Globals stay global.  */
3187     ;
3188   else if (DECL_CONTEXT (decl) != id->src_fn)
3189     /* Things that weren't in the scope of the function we're inlining
3190        from aren't in the scope we're inlining to, either.  */
3191     ;
3192   else if (TREE_STATIC (decl))
3193     /* Function-scoped static variables should stay in the original
3194        function.  */
3195     ;
3196   else
3197     /* Ordinary automatic local variables are now in the scope of the
3198        new function.  */
3199     DECL_CONTEXT (copy) = id->dst_fn;
3200
3201   return copy;
3202 }
3203
3204 static tree
3205 copy_decl_to_var (tree decl, copy_body_data *id)
3206 {
3207   tree copy, type;
3208
3209   gcc_assert (TREE_CODE (decl) == PARM_DECL
3210               || TREE_CODE (decl) == RESULT_DECL);
3211
3212   type = TREE_TYPE (decl);
3213
3214   copy = build_decl (VAR_DECL, DECL_NAME (decl), type);
3215   TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (decl);
3216   TREE_READONLY (copy) = TREE_READONLY (decl);
3217   TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (decl);
3218   DECL_GIMPLE_REG_P (copy) = DECL_GIMPLE_REG_P (decl);
3219   DECL_NO_TBAA_P (copy) = DECL_NO_TBAA_P (decl);
3220
3221   return copy_decl_for_dup_finish (id, decl, copy);
3222 }
3223
3224 /* Like copy_decl_to_var, but create a return slot object instead of a
3225    pointer variable for return by invisible reference.  */
3226
3227 static tree
3228 copy_result_decl_to_var (tree decl, copy_body_data *id)
3229 {
3230   tree copy, type;
3231
3232   gcc_assert (TREE_CODE (decl) == PARM_DECL
3233               || TREE_CODE (decl) == RESULT_DECL);
3234
3235   type = TREE_TYPE (decl);
3236   if (DECL_BY_REFERENCE (decl))
3237     type = TREE_TYPE (type);
3238
3239   copy = build_decl (VAR_DECL, DECL_NAME (decl), type);
3240   TREE_READONLY (copy) = TREE_READONLY (decl);
3241   TREE_THIS_VOLATILE (copy) = TREE_THIS_VOLATILE (decl);
3242   if (!DECL_BY_REFERENCE (decl))
3243     {
3244       TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (decl);
3245       DECL_GIMPLE_REG_P (copy) = DECL_GIMPLE_REG_P (decl);
3246       DECL_NO_TBAA_P (copy) = DECL_NO_TBAA_P (decl);
3247     }
3248
3249   return copy_decl_for_dup_finish (id, decl, copy);
3250 }
3251
3252
3253 static tree
3254 copy_decl_no_change (tree decl, copy_body_data *id)
3255 {
3256   tree copy;
3257
3258   copy = copy_node (decl);
3259
3260   /* The COPY is not abstract; it will be generated in DST_FN.  */
3261   DECL_ABSTRACT (copy) = 0;
3262   lang_hooks.dup_lang_specific_decl (copy);
3263
3264   /* TREE_ADDRESSABLE isn't used to indicate that a label's address has
3265      been taken; it's for internal bookkeeping in expand_goto_internal.  */
3266   if (TREE_CODE (copy) == LABEL_DECL)
3267     {
3268       TREE_ADDRESSABLE (copy) = 0;
3269       LABEL_DECL_UID (copy) = -1;
3270     }
3271
3272   return copy_decl_for_dup_finish (id, decl, copy);
3273 }
3274
3275 static tree
3276 copy_decl_maybe_to_var (tree decl, copy_body_data *id)
3277 {
3278   if (TREE_CODE (decl) == PARM_DECL || TREE_CODE (decl) == RESULT_DECL)
3279     return copy_decl_to_var (decl, id);
3280   else
3281     return copy_decl_no_change (decl, id);
3282 }
3283
3284 /* Return a copy of the function's argument tree.  */
3285 static tree
3286 copy_arguments_for_versioning (tree orig_parm, copy_body_data * id)
3287 {
3288   tree *arg_copy, *parg;
3289
3290   arg_copy = &orig_parm;
3291   for (parg = arg_copy; *parg; parg = &TREE_CHAIN (*parg))
3292     {
3293       tree new = remap_decl (*parg, id);
3294       lang_hooks.dup_lang_specific_decl (new);
3295       TREE_CHAIN (new) = TREE_CHAIN (*parg);
3296       *parg = new;
3297     }
3298   return orig_parm;
3299 }
3300
3301 /* Return a copy of the function's static chain.  */
3302 static tree
3303 copy_static_chain (tree static_chain, copy_body_data * id)
3304 {
3305   tree *chain_copy, *pvar;
3306
3307   chain_copy = &static_chain;
3308   for (pvar = chain_copy; *pvar; pvar = &TREE_CHAIN (*pvar))
3309     {
3310       tree new = remap_decl (*pvar, id);
3311       lang_hooks.dup_lang_specific_decl (new);
3312       TREE_CHAIN (new) = TREE_CHAIN (*pvar);
3313       *pvar = new;
3314     }
3315   return static_chain;
3316 }
3317
3318 /* Return true if the function is allowed to be versioned.
3319    This is a guard for the versioning functionality.  */
3320 bool
3321 tree_versionable_function_p (tree fndecl)
3322 {
3323   if (fndecl == NULL_TREE)
3324     return false;
3325   /* ??? There are cases where a function is
3326      uninlinable but can be versioned.  */
3327   if (!tree_inlinable_function_p (fndecl))
3328     return false;
3329   
3330   return true;
3331 }
3332
3333 /* Create a copy of a function's tree.
3334    OLD_DECL and NEW_DECL are FUNCTION_DECL tree nodes
3335    of the original function and the new copied function
3336    respectively.  In case we want to replace a DECL 
3337    tree with another tree while duplicating the function's 
3338    body, TREE_MAP represents the mapping between these 
3339    trees. If UPDATE_CLONES is set, the call_stmt fields
3340    of edges of clones of the function will be updated.  */
3341 void
3342 tree_function_versioning (tree old_decl, tree new_decl, varray_type tree_map,
3343                           bool update_clones)
3344 {
3345   struct cgraph_node *old_version_node;
3346   struct cgraph_node *new_version_node;
3347   copy_body_data id;
3348   tree p;
3349   unsigned i;
3350   struct ipa_replace_map *replace_info;
3351   basic_block old_entry_block;
3352   tree t_step;
3353   tree old_current_function_decl = current_function_decl;
3354
3355   gcc_assert (TREE_CODE (old_decl) == FUNCTION_DECL
3356               && TREE_CODE (new_decl) == FUNCTION_DECL);
3357   DECL_POSSIBLY_INLINED (old_decl) = 1;
3358
3359   old_version_node = cgraph_node (old_decl);
3360   new_version_node = cgraph_node (new_decl);
3361
3362   DECL_ARTIFICIAL (new_decl) = 1;
3363   DECL_ABSTRACT_ORIGIN (new_decl) = DECL_ORIGIN (old_decl);
3364
3365   /* Prepare the data structures for the tree copy.  */
3366   memset (&id, 0, sizeof (id));
3367
3368   /* Generate a new name for the new version. */
3369   if (!update_clones)
3370     {
3371       DECL_NAME (new_decl) =  create_tmp_var_name (NULL);
3372       SET_DECL_ASSEMBLER_NAME (new_decl, DECL_NAME (new_decl));
3373       SET_DECL_RTL (new_decl, NULL_RTX);
3374       id.statements_to_fold = pointer_set_create ();
3375     }
3376   
3377   id.decl_map = pointer_map_create ();
3378   id.src_fn = old_decl;
3379   id.dst_fn = new_decl;
3380   id.src_node = old_version_node;
3381   id.dst_node = new_version_node;
3382   id.src_cfun = DECL_STRUCT_FUNCTION (old_decl);
3383   
3384   id.copy_decl = copy_decl_no_change;
3385   id.transform_call_graph_edges
3386     = update_clones ? CB_CGE_MOVE_CLONES : CB_CGE_MOVE;
3387   id.transform_new_cfg = true;
3388   id.transform_return_to_modify = false;
3389   id.transform_lang_insert_block = false;
3390
3391   current_function_decl = new_decl;
3392   old_entry_block = ENTRY_BLOCK_PTR_FOR_FUNCTION
3393     (DECL_STRUCT_FUNCTION (old_decl));
3394   initialize_cfun (new_decl, old_decl,
3395                    old_entry_block->count,
3396                    old_entry_block->frequency);
3397   push_cfun (DECL_STRUCT_FUNCTION (new_decl));
3398   
3399   /* Copy the function's static chain.  */
3400   p = DECL_STRUCT_FUNCTION (old_decl)->static_chain_decl;
3401   if (p)
3402     DECL_STRUCT_FUNCTION (new_decl)->static_chain_decl =
3403       copy_static_chain (DECL_STRUCT_FUNCTION (old_decl)->static_chain_decl,
3404                          &id);
3405   /* Copy the function's arguments.  */
3406   if (DECL_ARGUMENTS (old_decl) != NULL_TREE)
3407     DECL_ARGUMENTS (new_decl) =
3408       copy_arguments_for_versioning (DECL_ARGUMENTS (old_decl), &id);
3409   
3410   /* If there's a tree_map, prepare for substitution.  */
3411   if (tree_map)
3412     for (i = 0; i < VARRAY_ACTIVE_SIZE (tree_map); i++)
3413       {
3414         replace_info = VARRAY_GENERIC_PTR (tree_map, i);
3415         if (replace_info->replace_p)
3416           insert_decl_map (&id, replace_info->old_tree,
3417                            replace_info->new_tree);
3418       }
3419   
3420   DECL_INITIAL (new_decl) = remap_blocks (DECL_INITIAL (id.src_fn), &id);
3421   
3422   /* Renumber the lexical scoping (non-code) blocks consecutively.  */
3423   number_blocks (id.dst_fn);
3424   
3425   if (DECL_STRUCT_FUNCTION (old_decl)->unexpanded_var_list != NULL_TREE)
3426     /* Add local vars.  */
3427     for (t_step = DECL_STRUCT_FUNCTION (old_decl)->unexpanded_var_list;
3428          t_step; t_step = TREE_CHAIN (t_step))
3429       {
3430         tree var = TREE_VALUE (t_step);
3431         if (TREE_STATIC (var) && !TREE_ASM_WRITTEN (var))
3432           cfun->unexpanded_var_list = tree_cons (NULL_TREE, var,
3433                                                  cfun->unexpanded_var_list);
3434         else
3435           cfun->unexpanded_var_list =
3436             tree_cons (NULL_TREE, remap_decl (var, &id),
3437                        cfun->unexpanded_var_list);
3438       }
3439   
3440   /* Copy the Function's body.  */
3441   copy_body (&id, old_entry_block->count, old_entry_block->frequency, ENTRY_BLOCK_PTR, EXIT_BLOCK_PTR);
3442   
3443   if (DECL_RESULT (old_decl) != NULL_TREE)
3444     {
3445       tree *res_decl = &DECL_RESULT (old_decl);
3446       DECL_RESULT (new_decl) = remap_decl (*res_decl, &id);
3447       lang_hooks.dup_lang_specific_decl (DECL_RESULT (new_decl));
3448     }
3449   
3450   /* Renumber the lexical scoping (non-code) blocks consecutively.  */
3451   number_blocks (new_decl);
3452
3453   /* Clean up.  */
3454   pointer_map_destroy (id.decl_map);
3455   if (!update_clones)
3456     {
3457       fold_marked_statements (0, id.statements_to_fold);
3458       pointer_set_destroy (id.statements_to_fold);
3459       fold_cond_expr_cond ();
3460     }
3461   if (gimple_in_ssa_p (cfun))
3462     {
3463       free_dominance_info (CDI_DOMINATORS);
3464       free_dominance_info (CDI_POST_DOMINATORS);
3465       if (!update_clones)
3466         delete_unreachable_blocks ();
3467       update_ssa (TODO_update_ssa);
3468       if (!update_clones)
3469         {
3470           fold_cond_expr_cond ();
3471           if (need_ssa_update_p ())
3472             update_ssa (TODO_update_ssa);
3473         }
3474     }
3475   free_dominance_info (CDI_DOMINATORS);
3476   free_dominance_info (CDI_POST_DOMINATORS);
3477   pop_cfun ();
3478   current_function_decl = old_current_function_decl;
3479   gcc_assert (!current_function_decl
3480               || DECL_STRUCT_FUNCTION (current_function_decl) == cfun);
3481   return;
3482 }
3483
3484 /* Duplicate a type, fields and all.  */
3485
3486 tree
3487 build_duplicate_type (tree type)
3488 {
3489   struct copy_body_data id;
3490
3491   memset (&id, 0, sizeof (id));
3492   id.src_fn = current_function_decl;
3493   id.dst_fn = current_function_decl;
3494   id.src_cfun = cfun;
3495   id.decl_map = pointer_map_create ();
3496
3497   type = remap_type_1 (type, &id);
3498
3499   pointer_map_destroy (id.decl_map);
3500
3501   return type;
3502 }