OSDN Git Service

* gcc.c-torture/compile/20021120-1.c: New test.
[pf3gnuchains/gcc-fork.git] / gcc / tree-inline.c
1 /* Control and data flow functions for trees.
2    Copyright 2001, 2002 Free Software Foundation, Inc.
3    Contributed by Alexandre Oliva <aoliva@redhat.com>
4
5 This file is part of GNU CC.
6
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING.  If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.  */
21
22 #include "config.h"
23 #include "system.h"
24 #include "toplev.h"
25 #include "tree.h"
26 #include "tree-inline.h"
27 #include "rtl.h"
28 #include "expr.h"
29 #include "flags.h"
30 #include "params.h"
31 #include "input.h"
32 #include "insn-config.h"
33 #include "integrate.h"
34 #include "varray.h"
35 #include "hashtab.h"
36 #include "splay-tree.h"
37 #include "langhooks.h"
38
39 /* This should be eventually be generalized to other languages, but
40    this would require a shared function-as-trees infrastructure.  */
41 #ifndef INLINER_FOR_JAVA
42 #include "c-common.h"
43 #else /* INLINER_FOR_JAVA */
44 #include "parse.h"
45 #include "java-tree.h"
46 #endif /* INLINER_FOR_JAVA */
47
48 /* 0 if we should not perform inlining.
49    1 if we should expand functions calls inline at the tree level.
50    2 if we should consider *all* functions to be inline
51    candidates.  */
52
53 int flag_inline_trees = 0;
54
55 /* To Do:
56
57    o In order to make inlining-on-trees work, we pessimized
58      function-local static constants.  In particular, they are now
59      always output, even when not addressed.  Fix this by treating
60      function-local static constants just like global static
61      constants; the back-end already knows not to output them if they
62      are not needed.
63
64    o Provide heuristics to clamp inlining of recursive template
65      calls?  */
66
67 /* Data required for function inlining.  */
68
69 typedef struct inline_data
70 {
71   /* A stack of the functions we are inlining.  For example, if we are
72      compiling `f', which calls `g', which calls `h', and we are
73      inlining the body of `h', the stack will contain, `h', followed
74      by `g', followed by `f'.  The first few elements of the stack may
75      contain other functions that we know we should not recurse into,
76      even though they are not directly being inlined.  */
77   varray_type fns;
78   /* The index of the first element of FNS that really represents an
79      inlined function.  */
80   unsigned first_inlined_fn;
81   /* The label to jump to when a return statement is encountered.  If
82      this value is NULL, then return statements will simply be
83      remapped as return statements, rather than as jumps.  */
84   tree ret_label;
85   /* The map from local declarations in the inlined function to
86      equivalents in the function into which it is being inlined.  */
87   splay_tree decl_map;
88   /* Nonzero if we are currently within the cleanup for a
89      TARGET_EXPR.  */
90   int in_target_cleanup_p;
91   /* A stack of the TARGET_EXPRs that we are currently processing.  */
92   varray_type target_exprs;
93   /* A list of the functions current function has inlined.  */
94   varray_type inlined_fns;
95   /* The approximate number of statements we have inlined in the
96      current call stack.  */
97   int inlined_stmts;
98   /* We use the same mechanism to build clones that we do to perform
99      inlining.  However, there are a few places where we need to
100      distinguish between those two situations.  This flag is true if
101      we are cloning, rather than inlining.  */
102   bool cloning_p;
103   /* Hash table used to prevent walk_tree from visiting the same node
104      umpteen million times.  */
105   htab_t tree_pruner;
106 } inline_data;
107
108 /* Prototypes.  */
109
110 static tree declare_return_variable PARAMS ((inline_data *, tree *));
111 static tree copy_body_r PARAMS ((tree *, int *, void *));
112 static tree copy_body PARAMS ((inline_data *));
113 static tree expand_call_inline PARAMS ((tree *, int *, void *));
114 static void expand_calls_inline PARAMS ((tree *, inline_data *));
115 static int inlinable_function_p PARAMS ((tree, inline_data *));
116 static tree remap_decl PARAMS ((tree, inline_data *));
117 #ifndef INLINER_FOR_JAVA
118 static tree initialize_inlined_parameters PARAMS ((inline_data *, tree, tree));
119 static void remap_block PARAMS ((tree, tree, inline_data *));
120 static void copy_scope_stmt PARAMS ((tree *, int *, inline_data *));
121 #else /* INLINER_FOR_JAVA */
122 static tree initialize_inlined_parameters PARAMS ((inline_data *, tree, tree, tree));
123 static void remap_block PARAMS ((tree *, tree, inline_data *));
124 static tree add_stmt_to_compound PARAMS ((tree, tree, tree));
125 #endif /* INLINER_FOR_JAVA */
126 static tree find_alloca_call_1 PARAMS ((tree *, int *, void *));
127 static tree find_alloca_call PARAMS ((tree));
128
129 /* The approximate number of instructions per statement.  This number
130    need not be particularly accurate; it is used only to make
131    decisions about when a function is too big to inline.  */
132 #define INSNS_PER_STMT (10)
133
134 /* Remap DECL during the copying of the BLOCK tree for the function.  */
135
136 static tree
137 remap_decl (decl, id)
138      tree decl;
139      inline_data *id;
140 {
141   splay_tree_node n;
142   tree fn;
143
144   /* We only remap local variables in the current function.  */
145   fn = VARRAY_TOP_TREE (id->fns);
146   if (! (*lang_hooks.tree_inlining.auto_var_in_fn_p) (decl, fn))
147     return NULL_TREE;
148
149   /* See if we have remapped this declaration.  */
150   n = splay_tree_lookup (id->decl_map, (splay_tree_key) decl);
151   /* If we didn't already have an equivalent for this declaration,
152      create one now.  */
153   if (!n)
154     {
155       tree t;
156
157       /* Make a copy of the variable or label.  */
158       t = copy_decl_for_inlining (decl, fn,
159                                   VARRAY_TREE (id->fns, 0));
160
161       /* The decl T could be a dynamic array or other variable size type,
162          in which case some fields need to be remapped because they may
163          contain SAVE_EXPRs.  */
164       if (TREE_TYPE (t) && TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE
165           && TYPE_DOMAIN (TREE_TYPE (t)))
166         {
167           TREE_TYPE (t) = copy_node (TREE_TYPE (t));
168           TYPE_DOMAIN (TREE_TYPE (t))
169             = copy_node (TYPE_DOMAIN (TREE_TYPE (t)));
170           walk_tree (&TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (t))),
171                      copy_body_r, id, NULL);
172         }
173
174 #ifndef INLINER_FOR_JAVA
175       if (! DECL_NAME (t) && TREE_TYPE (t)
176           && (*lang_hooks.tree_inlining.anon_aggr_type_p) (TREE_TYPE (t)))
177         {
178           /* For a VAR_DECL of anonymous type, we must also copy the
179              member VAR_DECLS here and rechain the
180              DECL_ANON_UNION_ELEMS.  */
181           tree members = NULL;
182           tree src;
183
184           for (src = DECL_ANON_UNION_ELEMS (t); src;
185                src = TREE_CHAIN (src))
186             {
187               tree member = remap_decl (TREE_VALUE (src), id);
188
189               if (TREE_PURPOSE (src))
190                 abort ();
191               members = tree_cons (NULL, member, members);
192             }
193           DECL_ANON_UNION_ELEMS (t) = nreverse (members);
194         }
195 #endif /* not INLINER_FOR_JAVA */
196
197       /* Remember it, so that if we encounter this local entity
198          again we can reuse this copy.  */
199       n = splay_tree_insert (id->decl_map,
200                              (splay_tree_key) decl,
201                              (splay_tree_value) t);
202     }
203
204   return (tree) n->value;
205 }
206
207 #ifndef INLINER_FOR_JAVA
208 /* Copy the SCOPE_STMT_BLOCK associated with SCOPE_STMT to contain
209    remapped versions of the variables therein.  And hook the new block
210    into the block-tree.  If non-NULL, the DECLS are declarations to
211    add to use instead of the BLOCK_VARS in the old block.  */
212 #else /* INLINER_FOR_JAVA */
213 /* Copy the BLOCK to contain remapped versions of the variables
214    therein.  And hook the new block into the block-tree.  */
215 #endif /* INLINER_FOR_JAVA */
216
217 static void
218 #ifndef INLINER_FOR_JAVA
219 remap_block (scope_stmt, decls, id)
220      tree scope_stmt;
221 #else /* INLINER_FOR_JAVA */
222 remap_block (block, decls, id)
223      tree *block;
224 #endif /* INLINER_FOR_JAVA */
225      tree decls;
226      inline_data *id;
227 {
228 #ifndef INLINER_FOR_JAVA
229   /* We cannot do this in the cleanup for a TARGET_EXPR since we do
230      not know whether or not expand_expr will actually write out the
231      code we put there.  If it does not, then we'll have more BLOCKs
232      than block-notes, and things will go awry.  At some point, we
233      should make the back-end handle BLOCK notes in a tidier way,
234      without requiring a strict correspondence to the block-tree; then
235      this check can go.  */
236   if (id->in_target_cleanup_p)
237     {
238       SCOPE_STMT_BLOCK (scope_stmt) = NULL_TREE;
239       return;
240     }
241
242   /* If this is the beginning of a scope, remap the associated BLOCK.  */
243   if (SCOPE_BEGIN_P (scope_stmt) && SCOPE_STMT_BLOCK (scope_stmt))
244     {
245       tree old_block;
246       tree new_block;
247       tree old_var;
248       tree fn;
249
250       /* Make the new block.  */
251       old_block = SCOPE_STMT_BLOCK (scope_stmt);
252       new_block = make_node (BLOCK);
253       TREE_USED (new_block) = TREE_USED (old_block);
254       BLOCK_ABSTRACT_ORIGIN (new_block) = old_block;
255       SCOPE_STMT_BLOCK (scope_stmt) = new_block;
256
257       /* Remap its variables.  */
258       for (old_var = decls ? decls : BLOCK_VARS (old_block);
259            old_var;
260            old_var = TREE_CHAIN (old_var))
261         {
262           tree new_var;
263
264           /* Remap the variable.  */
265           new_var = remap_decl (old_var, id);
266           /* If we didn't remap this variable, so we can't mess with
267              its TREE_CHAIN.  If we remapped this variable to
268              something other than a declaration (say, if we mapped it
269              to a constant), then we must similarly omit any mention
270              of it here.  */
271           if (!new_var || !DECL_P (new_var))
272             ;
273           else
274             {
275               TREE_CHAIN (new_var) = BLOCK_VARS (new_block);
276               BLOCK_VARS (new_block) = new_var;
277             }
278         }
279       /* We put the BLOCK_VARS in reverse order; fix that now.  */
280       BLOCK_VARS (new_block) = nreverse (BLOCK_VARS (new_block));
281       fn = VARRAY_TREE (id->fns, 0);
282       if (id->cloning_p)
283         /* We're building a clone; DECL_INITIAL is still
284            error_mark_node, and current_binding_level is the parm
285            binding level.  */
286         (*lang_hooks.decls.insert_block) (new_block);
287       else
288         {
289           /* Attach this new block after the DECL_INITIAL block for the
290              function into which this block is being inlined.  In
291              rest_of_compilation we will straighten out the BLOCK tree.  */
292           tree *first_block;
293           if (DECL_INITIAL (fn))
294             first_block = &BLOCK_CHAIN (DECL_INITIAL (fn));
295           else
296             first_block = &DECL_INITIAL (fn);
297           BLOCK_CHAIN (new_block) = *first_block;
298           *first_block = new_block;
299         }
300       /* Remember the remapped block.  */
301       splay_tree_insert (id->decl_map,
302                          (splay_tree_key) old_block,
303                          (splay_tree_value) new_block);
304     }
305   /* If this is the end of a scope, set the SCOPE_STMT_BLOCK to be the
306      remapped block.  */
307   else if (SCOPE_END_P (scope_stmt) && SCOPE_STMT_BLOCK (scope_stmt))
308     {
309       splay_tree_node n;
310
311       /* Find this block in the table of remapped things.  */
312       n = splay_tree_lookup (id->decl_map,
313                              (splay_tree_key) SCOPE_STMT_BLOCK (scope_stmt));
314       if (! n)
315         abort ();
316       SCOPE_STMT_BLOCK (scope_stmt) = (tree) n->value;
317     }
318 #else /* INLINER_FOR_JAVA */
319   tree old_block;
320   tree new_block;
321   tree old_var;
322   tree fn;
323
324   /* Make the new block.  */
325   old_block = *block;
326   new_block = make_node (BLOCK);
327   TREE_USED (new_block) = TREE_USED (old_block);
328   BLOCK_ABSTRACT_ORIGIN (new_block) = old_block;
329   BLOCK_SUBBLOCKS (new_block) = BLOCK_SUBBLOCKS (old_block);
330   TREE_SIDE_EFFECTS (new_block) = TREE_SIDE_EFFECTS (old_block);
331   TREE_TYPE (new_block) = TREE_TYPE (old_block);
332   *block = new_block;
333
334   /* Remap its variables.  */
335   for (old_var = decls ? decls : BLOCK_VARS (old_block);
336        old_var;
337        old_var = TREE_CHAIN (old_var))
338     {
339       tree new_var;
340
341       /* All local class initialization flags go in the outermost
342          scope.  */
343       if (LOCAL_CLASS_INITIALIZATION_FLAG_P (old_var))
344         {
345           /* We may already have one.  */
346           if (! splay_tree_lookup (id->decl_map, (splay_tree_key) old_var))
347             {
348               tree outermost_block;
349               new_var = remap_decl (old_var, id);
350               DECL_ABSTRACT_ORIGIN (new_var) = NULL;
351               outermost_block = DECL_SAVED_TREE (current_function_decl);
352               TREE_CHAIN (new_var) = BLOCK_VARS (outermost_block);
353               BLOCK_VARS (outermost_block) = new_var;
354             }
355           continue;
356         }
357
358       /* Remap the variable.  */
359       new_var = remap_decl (old_var, id);
360       /* If we didn't remap this variable, so we can't mess with
361          its TREE_CHAIN.  If we remapped this variable to
362          something other than a declaration (say, if we mapped it
363          to a constant), then we must similarly omit any mention
364          of it here.  */
365       if (!new_var || !DECL_P (new_var))
366         ;
367       else
368         {
369           TREE_CHAIN (new_var) = BLOCK_VARS (new_block);
370           BLOCK_VARS (new_block) = new_var;
371         }
372     }
373   /* We put the BLOCK_VARS in reverse order; fix that now.  */
374   BLOCK_VARS (new_block) = nreverse (BLOCK_VARS (new_block));
375   fn = VARRAY_TREE (id->fns, 0);
376   /* Remember the remapped block.  */
377   splay_tree_insert (id->decl_map,
378                      (splay_tree_key) old_block,
379                      (splay_tree_value) new_block);
380 #endif /* INLINER_FOR_JAVA */
381 }
382
383 #ifndef INLINER_FOR_JAVA
384 /* Copy the SCOPE_STMT pointed to by TP.  */
385
386 static void
387 copy_scope_stmt (tp, walk_subtrees, id)
388      tree *tp;
389      int *walk_subtrees;
390      inline_data *id;
391 {
392   tree block;
393
394   /* Remember whether or not this statement was nullified.  When
395      making a copy, copy_tree_r always sets SCOPE_NULLIFIED_P (and
396      doesn't copy the SCOPE_STMT_BLOCK) to free callers from having to
397      deal with copying BLOCKs if they do not wish to do so.  */
398   block = SCOPE_STMT_BLOCK (*tp);
399   /* Copy (and replace) the statement.  */
400   copy_tree_r (tp, walk_subtrees, NULL);
401   /* Restore the SCOPE_STMT_BLOCK.  */
402   SCOPE_STMT_BLOCK (*tp) = block;
403
404   /* Remap the associated block.  */
405   remap_block (*tp, NULL_TREE, id);
406 }
407 #endif /* not INLINER_FOR_JAVA */
408
409 /* Called from copy_body via walk_tree.  DATA is really an
410    `inline_data *'.  */
411 static tree
412 copy_body_r (tp, walk_subtrees, data)
413      tree *tp;
414      int *walk_subtrees;
415      void *data;
416 {
417   inline_data* id;
418   tree fn;
419
420   /* Set up.  */
421   id = (inline_data *) data;
422   fn = VARRAY_TOP_TREE (id->fns);
423
424 #if 0
425   /* All automatic variables should have a DECL_CONTEXT indicating
426      what function they come from.  */
427   if ((TREE_CODE (*tp) == VAR_DECL || TREE_CODE (*tp) == LABEL_DECL)
428       && DECL_NAMESPACE_SCOPE_P (*tp))
429     if (! DECL_EXTERNAL (*tp) && ! TREE_STATIC (*tp))
430       abort ();
431 #endif
432
433 #ifdef INLINER_FOR_JAVA
434   if (TREE_CODE (*tp) == BLOCK)
435     remap_block (tp, NULL_TREE, id);
436 #endif
437
438   /* If this is a RETURN_STMT, change it into an EXPR_STMT and a
439      GOTO_STMT with the RET_LABEL as its target.  */
440 #ifndef INLINER_FOR_JAVA
441   if (TREE_CODE (*tp) == RETURN_STMT && id->ret_label)
442 #else /* INLINER_FOR_JAVA */
443   if (TREE_CODE (*tp) == RETURN_EXPR && id->ret_label)
444 #endif /* INLINER_FOR_JAVA */
445     {
446       tree return_stmt = *tp;
447       tree goto_stmt;
448
449       /* Build the GOTO_STMT.  */
450 #ifndef INLINER_FOR_JAVA
451       goto_stmt = build_stmt (GOTO_STMT, id->ret_label);
452       TREE_CHAIN (goto_stmt) = TREE_CHAIN (return_stmt);
453       GOTO_FAKE_P (goto_stmt) = 1;
454 #else /* INLINER_FOR_JAVA */
455       tree assignment = TREE_OPERAND (return_stmt, 0);
456       goto_stmt = build1 (GOTO_EXPR, void_type_node, id->ret_label);
457       TREE_SIDE_EFFECTS (goto_stmt) = 1;
458 #endif /* INLINER_FOR_JAVA */
459
460       /* If we're returning something, just turn that into an
461          assignment into the equivalent of the original
462          RESULT_DECL.  */
463 #ifndef INLINER_FOR_JAVA
464       if (RETURN_STMT_EXPR (return_stmt))
465         {
466           *tp = build_stmt (EXPR_STMT,
467                             RETURN_STMT_EXPR (return_stmt));
468           STMT_IS_FULL_EXPR_P (*tp) = 1;
469           /* And then jump to the end of the function.  */
470           TREE_CHAIN (*tp) = goto_stmt;
471         }
472 #else /* INLINER_FOR_JAVA */
473       if (assignment)
474         {
475           copy_body_r (&assignment, walk_subtrees, data);
476           *tp = build (COMPOUND_EXPR, void_type_node, assignment, goto_stmt);
477           TREE_SIDE_EFFECTS (*tp) = 1;
478         }
479 #endif /* INLINER_FOR_JAVA */
480       /* If we're not returning anything just do the jump.  */
481       else
482         *tp = goto_stmt;
483     }
484   /* Local variables and labels need to be replaced by equivalent
485      variables.  We don't want to copy static variables; there's only
486      one of those, no matter how many times we inline the containing
487      function.  */
488   else if ((*lang_hooks.tree_inlining.auto_var_in_fn_p) (*tp, fn))
489     {
490       tree new_decl;
491
492       /* Remap the declaration.  */
493       new_decl = remap_decl (*tp, id);
494       if (! new_decl)
495         abort ();
496       /* Replace this variable with the copy.  */
497       STRIP_TYPE_NOPS (new_decl);
498       *tp = new_decl;
499     }
500 #if 0
501   else if (nonstatic_local_decl_p (*tp)
502            && DECL_CONTEXT (*tp) != VARRAY_TREE (id->fns, 0))
503     abort ();
504 #endif
505   else if (TREE_CODE (*tp) == SAVE_EXPR)
506     remap_save_expr (tp, id->decl_map, VARRAY_TREE (id->fns, 0),
507                      walk_subtrees);
508   else if (TREE_CODE (*tp) == UNSAVE_EXPR)
509     /* UNSAVE_EXPRs should not be generated until expansion time.  */
510     abort ();
511 #ifndef INLINER_FOR_JAVA
512   /* For a SCOPE_STMT, we must copy the associated block so that we
513      can write out debugging information for the inlined variables.  */
514   else if (TREE_CODE (*tp) == SCOPE_STMT && !id->in_target_cleanup_p)
515     copy_scope_stmt (tp, walk_subtrees, id);
516 #else /* INLINER_FOR_JAVA */
517   else if (TREE_CODE (*tp) == LABELED_BLOCK_EXPR)
518     {
519       /* We need a new copy of this labeled block; the EXIT_BLOCK_EXPR
520          will refer to it, so save a copy ready for remapping.  We
521          save it in the decl_map, although it isn't a decl.  */
522       tree new_block = copy_node (*tp);
523       splay_tree_insert (id->decl_map,
524                          (splay_tree_key) *tp,
525                          (splay_tree_value) new_block);
526       *tp = new_block;
527     }
528   else if (TREE_CODE (*tp) == EXIT_BLOCK_EXPR)
529     {
530       splay_tree_node n
531         = splay_tree_lookup (id->decl_map,
532                              (splay_tree_key) TREE_OPERAND (*tp, 0));
533       /* We _must_ have seen the enclosing LABELED_BLOCK_EXPR.  */
534       if (! n)
535         abort ();
536       *tp = copy_node (*tp);
537       TREE_OPERAND (*tp, 0) = (tree) n->value;
538     }
539 #endif /* INLINER_FOR_JAVA */
540   /* Otherwise, just copy the node.  Note that copy_tree_r already
541      knows not to copy VAR_DECLs, etc., so this is safe.  */
542   else
543     {
544       copy_tree_r (tp, walk_subtrees, NULL);
545
546       /* The copied TARGET_EXPR has never been expanded, even if the
547          original node was expanded already.  */
548       if (TREE_CODE (*tp) == TARGET_EXPR && TREE_OPERAND (*tp, 3))
549         {
550           TREE_OPERAND (*tp, 1) = TREE_OPERAND (*tp, 3);
551           TREE_OPERAND (*tp, 3) = NULL_TREE;
552         }
553       else if (TREE_CODE (*tp) == MODIFY_EXPR
554                && TREE_OPERAND (*tp, 0) == TREE_OPERAND (*tp, 1)
555                && ((*lang_hooks.tree_inlining.auto_var_in_fn_p)
556                    (TREE_OPERAND (*tp, 0), fn)))
557         {
558           /* Some assignments VAR = VAR; don't generate any rtl code
559              and thus don't count as variable modification.  Avoid
560              keeping bogosities like 0 = 0.  */
561           tree decl = TREE_OPERAND (*tp, 0), value;
562           splay_tree_node n;
563
564           n = splay_tree_lookup (id->decl_map, (splay_tree_key) decl);
565           if (n)
566             {
567               value = (tree) n->value;
568               STRIP_TYPE_NOPS (value);
569               if (TREE_CONSTANT (value) || TREE_READONLY_DECL_P (value))
570                 *tp = value;
571             }
572         }
573     }
574
575   /* Keep iterating.  */
576   return NULL_TREE;
577 }
578
579 /* Make a copy of the body of FN so that it can be inserted inline in
580    another function.  */
581
582 static tree
583 copy_body (id)
584      inline_data *id;
585 {
586   tree body;
587
588   body = DECL_SAVED_TREE (VARRAY_TOP_TREE (id->fns));
589   walk_tree (&body, copy_body_r, id, NULL);
590
591   return body;
592 }
593
594 /* Generate code to initialize the parameters of the function at the
595    top of the stack in ID from the ARGS (presented as a TREE_LIST).  */
596
597 static tree
598 #ifndef INLINER_FOR_JAVA
599 initialize_inlined_parameters (id, args, fn)
600 #else /* INLINER_FOR_JAVA */
601 initialize_inlined_parameters (id, args, fn, block)
602 #endif /* INLINER_FOR_JAVA */
603      inline_data *id;
604      tree args;
605      tree fn;
606 #ifdef INLINER_FOR_JAVA
607      tree block;
608 #endif /* INLINER_FOR_JAVA */
609 {
610   tree init_stmts;
611   tree parms;
612   tree a;
613   tree p;
614 #ifdef INLINER_FOR_JAVA
615   tree vars = NULL_TREE;
616 #endif /* INLINER_FOR_JAVA */
617
618   /* Figure out what the parameters are.  */
619   parms = DECL_ARGUMENTS (fn);
620
621   /* Start with no initializations whatsoever.  */
622   init_stmts = NULL_TREE;
623
624   /* Loop through the parameter declarations, replacing each with an
625      equivalent VAR_DECL, appropriately initialized.  */
626   for (p = parms, a = args; p;
627        a = a ? TREE_CHAIN (a) : a, p = TREE_CHAIN (p))
628     {
629 #ifndef INLINER_FOR_JAVA
630       tree init_stmt;
631       tree cleanup;
632 #endif /* not INLINER_FOR_JAVA */
633       tree var;
634       tree value;
635
636       /* Find the initializer.  */
637       value = (*lang_hooks.tree_inlining.convert_parm_for_inlining)
638               (p, a ? TREE_VALUE (a) : NULL_TREE, fn);
639
640       /* If the parameter is never assigned to, we may not need to
641          create a new variable here at all.  Instead, we may be able
642          to just use the argument value.  */
643       if (TREE_READONLY (p)
644           && !TREE_ADDRESSABLE (p)
645           && value && !TREE_SIDE_EFFECTS (value))
646         {
647           /* Simplify the value, if possible.  */
648           value = fold (DECL_P (value) ? decl_constant_value (value) : value);
649
650           /* We can't risk substituting complex expressions.  They
651              might contain variables that will be assigned to later.
652              Theoretically, we could check the expression to see if
653              all of the variables that determine its value are
654              read-only, but we don't bother.  */
655           if (TREE_CONSTANT (value) || TREE_READONLY_DECL_P (value))
656             {
657               /* If this is a declaration, wrap it a NOP_EXPR so that
658                  we don't try to put the VALUE on the list of
659                  BLOCK_VARS.  */
660               if (DECL_P (value))
661                 value = build1 (NOP_EXPR, TREE_TYPE (value), value);
662
663               splay_tree_insert (id->decl_map,
664                                  (splay_tree_key) p,
665                                  (splay_tree_value) value);
666               continue;
667             }
668         }
669
670       /* Make an equivalent VAR_DECL.  */
671       var = copy_decl_for_inlining (p, fn, VARRAY_TREE (id->fns, 0));
672       /* Register the VAR_DECL as the equivalent for the PARM_DECL;
673          that way, when the PARM_DECL is encountered, it will be
674          automatically replaced by the VAR_DECL.  */
675       splay_tree_insert (id->decl_map,
676                          (splay_tree_key) p,
677                          (splay_tree_value) var);
678
679       /* Declare this new variable.  */
680 #ifndef INLINER_FOR_JAVA
681       init_stmt = build_stmt (DECL_STMT, var);
682       TREE_CHAIN (init_stmt) = init_stmts;
683       init_stmts = init_stmt;
684 #else /* INLINER_FOR_JAVA */
685       TREE_CHAIN (var) = vars;
686       vars = var;
687 #endif /* INLINER_FOR_JAVA */
688
689       /* Initialize this VAR_DECL from the equivalent argument.  If
690          the argument is an object, created via a constructor or copy,
691          this will not result in an extra copy: the TARGET_EXPR
692          representing the argument will be bound to VAR, and the
693          object will be constructed in VAR.  */
694       if (! TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (p)))
695 #ifndef INLINER_FOR_JAVA
696         DECL_INITIAL (var) = value;
697       else
698         {
699           /* Even if P was TREE_READONLY, the new VAR should not be.
700              In the original code, we would have constructed a
701              temporary, and then the function body would have never
702              changed the value of P.  However, now, we will be
703              constructing VAR directly.  The constructor body may
704              change its value multiple times as it is being
705              constructed.  Therefore, it must not be TREE_READONLY;
706              the back-end assumes that TREE_READONLY variable is
707              assigned to only once.  */
708           TREE_READONLY (var) = 0;
709
710           /* Build a run-time initialization.  */
711           init_stmt = build_stmt (EXPR_STMT,
712                                   build (INIT_EXPR, TREE_TYPE (p),
713                                          var, value));
714           /* Add this initialization to the list.  Note that we want the
715              declaration *after* the initialization because we are going
716              to reverse all the initialization statements below.  */
717           TREE_CHAIN (init_stmt) = init_stmts;
718           init_stmts = init_stmt;
719         }
720
721       /* See if we need to clean up the declaration.  */
722       cleanup = (*lang_hooks.maybe_build_cleanup) (var);
723       if (cleanup)
724         {
725           tree cleanup_stmt;
726           /* Build the cleanup statement.  */
727           cleanup_stmt = build_stmt (CLEANUP_STMT, var, cleanup);
728           /* Add it to the *front* of the list; the list will be
729              reversed below.  */
730           TREE_CHAIN (cleanup_stmt) = init_stmts;
731           init_stmts = cleanup_stmt;
732         }
733 #else /* INLINER_FOR_JAVA */
734         {
735           tree assignment = build (MODIFY_EXPR, TREE_TYPE (p), var, value);
736           init_stmts = add_stmt_to_compound (init_stmts, TREE_TYPE (p),
737                                              assignment);
738         }
739       else
740         {
741           /* Java objects don't ever need constructing when being
742              passed as arguments because only call by reference is
743              supported.  */
744           abort ();
745         }
746 #endif /* INLINER_FOR_JAVA */
747     }
748
749 #ifndef INLINER_FOR_JAVA
750   /* Evaluate trailing arguments.  */
751   for (; a; a = TREE_CHAIN (a))
752     {
753       tree init_stmt;
754       tree value = TREE_VALUE (a);
755
756       if (! value || ! TREE_SIDE_EFFECTS (value))
757         continue;
758
759       init_stmt = build_stmt (EXPR_STMT, value);
760       TREE_CHAIN (init_stmt) = init_stmts;
761       init_stmts = init_stmt;
762     }
763
764   /* The initialization statements have been built up in reverse
765      order.  Straighten them out now.  */
766   return nreverse (init_stmts);
767 #else /* INLINER_FOR_JAVA */
768   BLOCK_VARS (block) = nreverse (vars);
769   return init_stmts;
770 #endif /* INLINER_FOR_JAVA */
771 }
772
773 /* Declare a return variable to replace the RESULT_DECL for the
774    function we are calling.  An appropriate DECL_STMT is returned.
775    The USE_STMT is filled in to contain a use of the declaration to
776    indicate the return value of the function.  */
777
778 #ifndef INLINER_FOR_JAVA
779 static tree
780 declare_return_variable (id, use_stmt)
781      struct inline_data *id;
782      tree *use_stmt;
783 #else /* INLINER_FOR_JAVA */
784 static tree
785 declare_return_variable (id, var)
786      struct inline_data *id;
787      tree *var;
788 #endif /* INLINER_FOR_JAVA */
789 {
790   tree fn = VARRAY_TOP_TREE (id->fns);
791   tree result = DECL_RESULT (fn);
792 #ifndef INLINER_FOR_JAVA
793   tree var;
794 #endif /* not INLINER_FOR_JAVA */
795   int need_return_decl = 1;
796
797   /* We don't need to do anything for functions that don't return
798      anything.  */
799   if (!result || VOID_TYPE_P (TREE_TYPE (result)))
800     {
801 #ifndef INLINER_FOR_JAVA
802       *use_stmt = NULL_TREE;
803 #else /* INLINER_FOR_JAVA */
804       *var = NULL_TREE;
805 #endif /* INLINER_FOR_JAVA */
806       return NULL_TREE;
807     }
808
809 #ifndef INLINER_FOR_JAVA
810   var = ((*lang_hooks.tree_inlining.copy_res_decl_for_inlining)
811          (result, fn, VARRAY_TREE (id->fns, 0), id->decl_map,
812           &need_return_decl, &id->target_exprs));
813
814   /* Register the VAR_DECL as the equivalent for the RESULT_DECL; that
815      way, when the RESULT_DECL is encountered, it will be
816      automatically replaced by the VAR_DECL.  */
817   splay_tree_insert (id->decl_map,
818                      (splay_tree_key) result,
819                      (splay_tree_value) var);
820
821   /* Build the USE_STMT.  If the return type of the function was
822      promoted, convert it back to the expected type.  */
823   if (TREE_TYPE (var) == TREE_TYPE (TREE_TYPE (fn)))
824     *use_stmt = build_stmt (EXPR_STMT, var);
825   else
826     *use_stmt = build_stmt (EXPR_STMT,
827                             build1 (NOP_EXPR, TREE_TYPE (TREE_TYPE (fn)),
828                                     var));
829   TREE_ADDRESSABLE (*use_stmt) = 1;
830
831   /* Build the declaration statement if FN does not return an
832      aggregate.  */
833   if (need_return_decl)
834     return build_stmt (DECL_STMT, var);
835 #else /* INLINER_FOR_JAVA */
836   *var = ((*lang_hooks.tree_inlining.copy_res_decl_for_inlining)
837          (result, fn, VARRAY_TREE (id->fns, 0), id->decl_map,
838           &need_return_decl, NULL_TREE));
839
840   splay_tree_insert (id->decl_map,
841                      (splay_tree_key) result,
842                      (splay_tree_value) *var);
843   DECL_IGNORED_P (*var) = 1;
844   if (need_return_decl)
845     return *var;
846 #endif /* INLINER_FOR_JAVA */
847   /* If FN does return an aggregate, there's no need to declare the
848      return variable; we're using a variable in our caller's frame.  */
849   else
850     return NULL_TREE;
851 }
852
853 /* Returns nonzero if a function can be inlined as a tree.  */
854
855 int
856 tree_inlinable_function_p (fn)
857      tree fn;
858 {
859   return inlinable_function_p (fn, NULL);
860 }
861
862 /* if *TP is possibly call to alloca, return nonzero.  */
863 static tree
864 find_alloca_call_1 (tp, walk_subtrees, data)
865      tree *tp;
866      int *walk_subtrees ATTRIBUTE_UNUSED;
867      void *data ATTRIBUTE_UNUSED;
868 {
869   if (alloca_call_p (*tp))
870     return *tp;
871   return NULL;
872 }
873
874 /* Return subexpression representing possible alloca call,
875    if any.  */
876 static tree
877 find_alloca_call (exp)
878      tree exp;
879 {
880   return walk_tree (&exp, find_alloca_call_1, NULL, NULL);
881 }
882
883 /* Returns nonzero if FN is a function that can be inlined into the
884    inlining context ID_.  If ID_ is NULL, check whether the function
885    can be inlined at all.  */
886
887 static int
888 inlinable_function_p (fn, id)
889      tree fn;
890      inline_data *id;
891 {
892   int inlinable;
893   int currfn_insns;
894
895   /* If we've already decided this function shouldn't be inlined,
896      there's no need to check again.  */
897   if (DECL_UNINLINABLE (fn))
898     return 0;
899
900   /* Assume it is not inlinable.  */
901   inlinable = 0;
902
903   /* The number of instructions (estimated) of current function.  */
904   currfn_insns = DECL_NUM_STMTS (fn) * INSNS_PER_STMT;
905
906   /* If we're not inlining things, then nothing is inlinable.  */
907   if (! flag_inline_trees)
908     ;
909   /* If we're not inlining all functions and the function was not
910      declared `inline', we don't inline it.  Don't think of
911      disregarding DECL_INLINE when flag_inline_trees == 2; it's the
912      front-end that must set DECL_INLINE in this case, because
913      dwarf2out loses if a function is inlined that doesn't have
914      DECL_INLINE set.  */
915   else if (! DECL_INLINE (fn))
916     ;
917   /* We can't inline functions that are too big.  Only allow a single
918      function to be of MAX_INLINE_INSNS_SINGLE size.  Make special
919      allowance for extern inline functions, though.  */
920   else if (! (*lang_hooks.tree_inlining.disregard_inline_limits) (fn)
921            && currfn_insns > MAX_INLINE_INSNS_SINGLE)
922     ;
923   /* Refuse to inline alloca call unless user explicitly forced so as this may
924      change program's memory overhead drastically when the function using alloca
925      is called in loop.  In GCC present in SPEC2000 inlining into schedule_block
926      cause it to require 2GB of ram instead of 256MB.  */
927   else if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)) == NULL
928            && find_alloca_call (DECL_SAVED_TREE (fn)))
929     ;
930   /* All is well.  We can inline this function.  Traditionally, GCC
931      has refused to inline functions using alloca, or functions whose
932      values are returned in a PARALLEL, and a few other such obscure
933      conditions.  We are not equally constrained at the tree level.  */
934   else
935     inlinable = 1;
936
937   /* Squirrel away the result so that we don't have to check again.  */
938   DECL_UNINLINABLE (fn) = ! inlinable;
939
940   /* In case we don't disregard the inlining limits and we basically
941      can inline this function, investigate further.  */
942   if (! (*lang_hooks.tree_inlining.disregard_inline_limits) (fn)
943       && inlinable)
944     {
945       int sum_insns = (id ? id->inlined_stmts : 0) * INSNS_PER_STMT
946                      + currfn_insns;
947       /* In the extreme case that we have exceeded the recursive inlining
948          limit by a huge factor (128), we just say no. Should not happen
949          in real life.  */
950       if (sum_insns > MAX_INLINE_INSNS * 128)
951          inlinable = 0;
952       /* If we did not hit the extreme limit, we use a linear function
953          with slope -1/MAX_INLINE_SLOPE to exceedingly decrease the
954          allowable size. We always allow a size of MIN_INLINE_INSNS
955          though.  */
956       else if ((sum_insns > MAX_INLINE_INSNS)
957                && (currfn_insns > MIN_INLINE_INSNS))
958         {
959           int max_curr = MAX_INLINE_INSNS_SINGLE
960                         - (sum_insns - MAX_INLINE_INSNS) / MAX_INLINE_SLOPE;
961           if (currfn_insns > max_curr)
962             inlinable = 0;
963         }
964     }
965
966   if (inlinable && (*lang_hooks.tree_inlining.cannot_inline_tree_fn) (&fn))
967     inlinable = 0;
968
969   /* If we don't have the function body available, we can't inline
970      it.  */
971   if (! DECL_SAVED_TREE (fn))
972     inlinable = 0;
973
974   /* Check again, language hooks may have modified it.  */
975   if (! inlinable || DECL_UNINLINABLE (fn))
976     return 0;
977
978   /* Don't do recursive inlining, either.  We don't record this in
979      DECL_UNINLINABLE; we may be able to inline this function later.  */
980   if (id)
981     {
982       size_t i;
983
984       for (i = 0; i < VARRAY_ACTIVE_SIZE (id->fns); ++i)
985         if (VARRAY_TREE (id->fns, i) == fn)
986           return 0;
987
988       if (DECL_INLINED_FNS (fn))
989         {
990           int j;
991           tree inlined_fns = DECL_INLINED_FNS (fn);
992
993           for (j = 0; j < TREE_VEC_LENGTH (inlined_fns); ++j)
994             if (TREE_VEC_ELT (inlined_fns, j) == VARRAY_TREE (id->fns, 0))
995               return 0;
996         }
997     }
998
999   /* Return the result.  */
1000   return inlinable;
1001 }
1002
1003 /* If *TP is a CALL_EXPR, replace it with its inline expansion.  */
1004
1005 static tree
1006 expand_call_inline (tp, walk_subtrees, data)
1007      tree *tp;
1008      int *walk_subtrees;
1009      void *data;
1010 {
1011   inline_data *id;
1012   tree t;
1013   tree expr;
1014   tree stmt;
1015 #ifndef INLINER_FOR_JAVA
1016   tree chain;
1017   tree scope_stmt;
1018   tree use_stmt;
1019 #else /* INLINER_FOR_JAVA */
1020   tree retvar;
1021 #endif /* INLINER_FOR_JAVA */
1022   tree fn;
1023   tree arg_inits;
1024   tree *inlined_body;
1025   splay_tree st;
1026
1027   /* See what we've got.  */
1028   id = (inline_data *) data;
1029   t = *tp;
1030
1031   /* Recurse, but letting recursive invocations know that we are
1032      inside the body of a TARGET_EXPR.  */
1033   if (TREE_CODE (*tp) == TARGET_EXPR)
1034     {
1035 #ifndef INLINER_FOR_JAVA
1036       int i, len = first_rtl_op (TARGET_EXPR);
1037
1038       /* We're walking our own subtrees.  */
1039       *walk_subtrees = 0;
1040
1041       /* Push *TP on the stack of pending TARGET_EXPRs.  */
1042       VARRAY_PUSH_TREE (id->target_exprs, *tp);
1043
1044       /* Actually walk over them.  This loop is the body of
1045          walk_trees, omitting the case where the TARGET_EXPR
1046          itself is handled.  */
1047       for (i = 0; i < len; ++i)
1048         {
1049           if (i == 2)
1050             ++id->in_target_cleanup_p;
1051           walk_tree (&TREE_OPERAND (*tp, i), expand_call_inline, data,
1052                      id->tree_pruner);
1053           if (i == 2)
1054             --id->in_target_cleanup_p;
1055         }
1056
1057       /* We're done with this TARGET_EXPR now.  */
1058       VARRAY_POP (id->target_exprs);
1059
1060       return NULL_TREE;
1061 #else /* INLINER_FOR_JAVA */
1062       abort ();
1063 #endif /* INLINER_FOR_JAVA */
1064     }
1065
1066   if (TYPE_P (t))
1067     /* Because types were not copied in copy_body, CALL_EXPRs beneath
1068        them should not be expanded.  This can happen if the type is a
1069        dynamic array type, for example.  */
1070     *walk_subtrees = 0;
1071
1072   /* From here on, we're only interested in CALL_EXPRs.  */
1073   if (TREE_CODE (t) != CALL_EXPR)
1074     return NULL_TREE;
1075
1076   /* First, see if we can figure out what function is being called.
1077      If we cannot, then there is no hope of inlining the function.  */
1078   fn = get_callee_fndecl (t);
1079   if (!fn)
1080     return NULL_TREE;
1081
1082   /* If fn is a declaration of a function in a nested scope that was
1083      globally declared inline, we don't set its DECL_INITIAL.
1084      However, we can't blindly follow DECL_ABSTRACT_ORIGIN because the
1085      C++ front-end uses it for cdtors to refer to their internal
1086      declarations, that are not real functions.  Fortunately those
1087      don't have trees to be saved, so we can tell by checking their
1088      DECL_SAVED_TREE.  */
1089   if (! DECL_INITIAL (fn)
1090       && DECL_ABSTRACT_ORIGIN (fn)
1091       && DECL_SAVED_TREE (DECL_ABSTRACT_ORIGIN (fn)))
1092     fn = DECL_ABSTRACT_ORIGIN (fn);
1093
1094   /* Don't try to inline functions that are not well-suited to
1095      inlining.  */
1096   if (!inlinable_function_p (fn, id))
1097     return NULL_TREE;
1098
1099   if (! (*lang_hooks.tree_inlining.start_inlining) (fn))
1100     return NULL_TREE;
1101
1102   /* Set the current filename and line number to the function we are
1103      inlining so that when we create new _STMT nodes here they get
1104      line numbers corresponding to the function we are calling.  We
1105      wrap the whole inlined body in an EXPR_WITH_FILE_AND_LINE as well
1106      because individual statements don't record the filename.  */
1107   push_srcloc (DECL_SOURCE_FILE (fn), DECL_SOURCE_LINE (fn));
1108
1109 #ifndef INLINER_FOR_JAVA
1110   /* Build a statement-expression containing code to initialize the
1111      arguments, the actual inline expansion of the body, and a label
1112      for the return statements within the function to jump to.  The
1113      type of the statement expression is the return type of the
1114      function call.  */
1115   expr = build1 (STMT_EXPR, TREE_TYPE (TREE_TYPE (fn)), make_node (COMPOUND_STMT));
1116   /* There is no scope associated with the statement-expression.  */
1117   STMT_EXPR_NO_SCOPE (expr) = 1;
1118   stmt = STMT_EXPR_STMT (expr);
1119 #else /* INLINER_FOR_JAVA */
1120   /* Build a block containing code to initialize the arguments, the
1121      actual inline expansion of the body, and a label for the return
1122      statements within the function to jump to.  The type of the
1123      statement expression is the return type of the function call.  */
1124   stmt = NULL;
1125   expr = build (BLOCK, TREE_TYPE (TREE_TYPE (fn)), stmt);
1126 #endif /* INLINER_FOR_JAVA */
1127
1128   /* Local declarations will be replaced by their equivalents in this
1129      map.  */
1130   st = id->decl_map;
1131   id->decl_map = splay_tree_new (splay_tree_compare_pointers,
1132                                  NULL, NULL);
1133
1134   /* Initialize the parameters.  */
1135 #ifndef INLINER_FOR_JAVA
1136   arg_inits = initialize_inlined_parameters (id, TREE_OPERAND (t, 1), fn);
1137   /* Expand any inlined calls in the initializers.  Do this before we
1138      push FN on the stack of functions we are inlining; we want to
1139      inline calls to FN that appear in the initializers for the
1140      parameters.  */
1141   expand_calls_inline (&arg_inits, id);
1142   /* And add them to the tree.  */
1143   COMPOUND_BODY (stmt) = chainon (COMPOUND_BODY (stmt), arg_inits);
1144 #else /* INLINER_FOR_JAVA */
1145   arg_inits = initialize_inlined_parameters (id, TREE_OPERAND (t, 1), fn, expr);
1146   if (arg_inits)
1147     {
1148       /* Expand any inlined calls in the initializers.  Do this before we
1149          push FN on the stack of functions we are inlining; we want to
1150          inline calls to FN that appear in the initializers for the
1151          parameters.  */
1152       expand_calls_inline (&arg_inits, id);
1153
1154       /* And add them to the tree.  */
1155       BLOCK_EXPR_BODY (expr) = add_stmt_to_compound (BLOCK_EXPR_BODY (expr),
1156                                                      TREE_TYPE (arg_inits),
1157                                                      arg_inits);
1158     }
1159 #endif /* INLINER_FOR_JAVA */
1160
1161   /* Record the function we are about to inline so that we can avoid
1162      recursing into it.  */
1163   VARRAY_PUSH_TREE (id->fns, fn);
1164
1165   /* Record the function we are about to inline if optimize_function
1166      has not been called on it yet and we don't have it in the list.  */
1167   if (! DECL_INLINED_FNS (fn))
1168     {
1169       int i;
1170
1171       for (i = VARRAY_ACTIVE_SIZE (id->inlined_fns) - 1; i >= 0; i--)
1172         if (VARRAY_TREE (id->inlined_fns, i) == fn)
1173           break;
1174       if (i < 0)
1175         VARRAY_PUSH_TREE (id->inlined_fns, fn);
1176     }
1177
1178   /* Return statements in the function body will be replaced by jumps
1179      to the RET_LABEL.  */
1180   id->ret_label = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
1181   DECL_CONTEXT (id->ret_label) = VARRAY_TREE (id->fns, 0);
1182
1183   if (! DECL_INITIAL (fn)
1184       || TREE_CODE (DECL_INITIAL (fn)) != BLOCK)
1185     abort ();
1186
1187 #ifndef INLINER_FOR_JAVA
1188   /* Create a block to put the parameters in.  We have to do this
1189      after the parameters have been remapped because remapping
1190      parameters is different from remapping ordinary variables.  */
1191   scope_stmt = build_stmt (SCOPE_STMT, DECL_INITIAL (fn));
1192   SCOPE_BEGIN_P (scope_stmt) = 1;
1193   SCOPE_NO_CLEANUPS_P (scope_stmt) = 1;
1194   remap_block (scope_stmt, DECL_ARGUMENTS (fn), id);
1195   TREE_CHAIN (scope_stmt) = COMPOUND_BODY (stmt);
1196   COMPOUND_BODY (stmt) = scope_stmt;
1197
1198   /* Tell the debugging backends that this block represents the
1199      outermost scope of the inlined function.  */
1200   if (SCOPE_STMT_BLOCK (scope_stmt))
1201     BLOCK_ABSTRACT_ORIGIN (SCOPE_STMT_BLOCK (scope_stmt)) = DECL_ORIGIN (fn);
1202
1203   /* Declare the return variable for the function.  */
1204   COMPOUND_BODY (stmt)
1205     = chainon (COMPOUND_BODY (stmt),
1206                declare_return_variable (id, &use_stmt));
1207 #else /* INLINER_FOR_JAVA */
1208   {
1209     /* Declare the return variable for the function.  */
1210     tree decl = declare_return_variable (id, &retvar);
1211     if (retvar)
1212       {
1213         tree *next = &BLOCK_VARS (expr);
1214         while (*next)
1215           next = &TREE_CHAIN (*next);
1216         *next = decl;
1217       }
1218   }
1219 #endif /* INLINER_FOR_JAVA */
1220
1221   /* After we've initialized the parameters, we insert the body of the
1222      function itself.  */
1223 #ifndef INLINER_FOR_JAVA
1224   inlined_body = &COMPOUND_BODY (stmt);
1225   while (*inlined_body)
1226     inlined_body = &TREE_CHAIN (*inlined_body);
1227   *inlined_body = copy_body (id);
1228 #else /* INLINER_FOR_JAVA */
1229   {
1230     tree new_body;
1231     java_inlining_map_static_initializers (fn, id->decl_map);
1232     new_body = copy_body (id);
1233     TREE_TYPE (new_body) = TREE_TYPE (TREE_TYPE (fn));
1234     BLOCK_EXPR_BODY (expr)
1235       = add_stmt_to_compound (BLOCK_EXPR_BODY (expr),
1236                               TREE_TYPE (new_body), new_body);
1237     inlined_body = &BLOCK_EXPR_BODY (expr);
1238   }
1239 #endif /* INLINER_FOR_JAVA */
1240
1241   /* After the body of the function comes the RET_LABEL.  This must come
1242      before we evaluate the returned value below, because that evalulation
1243      may cause RTL to be generated.  */
1244 #ifndef INLINER_FOR_JAVA
1245   COMPOUND_BODY (stmt)
1246     = chainon (COMPOUND_BODY (stmt),
1247                build_stmt (LABEL_STMT, id->ret_label));
1248 #else /* INLINER_FOR_JAVA */
1249   {
1250     tree label = build1 (LABEL_EXPR, void_type_node, id->ret_label);
1251     BLOCK_EXPR_BODY (expr)
1252       = add_stmt_to_compound (BLOCK_EXPR_BODY (expr), void_type_node, label);
1253     TREE_SIDE_EFFECTS (label) = TREE_SIDE_EFFECTS (t);
1254   }
1255 #endif /* INLINER_FOR_JAVA */
1256
1257   /* Finally, mention the returned value so that the value of the
1258      statement-expression is the returned value of the function.  */
1259 #ifndef INLINER_FOR_JAVA
1260   COMPOUND_BODY (stmt) = chainon (COMPOUND_BODY (stmt), use_stmt);
1261
1262   /* Close the block for the parameters.  */
1263   scope_stmt = build_stmt (SCOPE_STMT, DECL_INITIAL (fn));
1264   SCOPE_NO_CLEANUPS_P (scope_stmt) = 1;
1265   remap_block (scope_stmt, NULL_TREE, id);
1266   COMPOUND_BODY (stmt)
1267     = chainon (COMPOUND_BODY (stmt), scope_stmt);
1268 #else /* INLINER_FOR_JAVA */
1269   if (retvar)
1270     {
1271       /* Mention the retvar.  If the return type of the function was
1272          promoted, convert it back to the expected type.  */
1273       if (TREE_TYPE (TREE_TYPE (fn)) != TREE_TYPE (retvar))
1274         retvar = build1 (NOP_EXPR, TREE_TYPE (TREE_TYPE (fn)), retvar);
1275       BLOCK_EXPR_BODY (expr)
1276         = add_stmt_to_compound (BLOCK_EXPR_BODY (expr),
1277                                 TREE_TYPE (retvar), retvar);
1278     }
1279
1280   java_inlining_merge_static_initializers (fn, id->decl_map);
1281 #endif /* INLINER_FOR_JAVA */
1282
1283   /* Clean up.  */
1284   splay_tree_delete (id->decl_map);
1285   id->decl_map = st;
1286
1287   /* The new expression has side-effects if the old one did.  */
1288   TREE_SIDE_EFFECTS (expr) = TREE_SIDE_EFFECTS (t);
1289
1290   /* Replace the call by the inlined body.  Wrap it in an
1291      EXPR_WITH_FILE_LOCATION so that we'll get debugging line notes
1292      pointing to the right place.  */
1293 #ifndef INLINER_FOR_JAVA
1294   chain = TREE_CHAIN (*tp);
1295   *tp = build_expr_wfl (expr, DECL_SOURCE_FILE (fn), DECL_SOURCE_LINE (fn),
1296                         /*col=*/0);
1297 #else /* INLINER_FOR_JAVA */
1298   *tp = build_expr_wfl (expr, DECL_SOURCE_FILE (fn),
1299                         DECL_SOURCE_LINE_FIRST(fn),
1300                         /*col=*/0);
1301 #endif /* INLINER_FOR_JAVA */
1302   EXPR_WFL_EMIT_LINE_NOTE (*tp) = 1;
1303 #ifndef INLINER_FOR_JAVA
1304   TREE_CHAIN (*tp) = chain;
1305 #endif /* not INLINER_FOR_JAVA */
1306   pop_srcloc ();
1307
1308   /* If the value of the new expression is ignored, that's OK.  We
1309      don't warn about this for CALL_EXPRs, so we shouldn't warn about
1310      the equivalent inlined version either.  */
1311   TREE_USED (*tp) = 1;
1312
1313   /* Our function now has more statements than it did before.  */
1314   DECL_NUM_STMTS (VARRAY_TREE (id->fns, 0)) += DECL_NUM_STMTS (fn);
1315   /* For accounting, subtract one for the saved call/ret.  */
1316   id->inlined_stmts += DECL_NUM_STMTS (fn) - 1;
1317
1318   /* Recurse into the body of the just inlined function.  */
1319   expand_calls_inline (inlined_body, id);
1320   VARRAY_POP (id->fns);
1321
1322   /* If we've returned to the top level, clear out the record of how
1323      much inlining has been done.  */
1324   if (VARRAY_ACTIVE_SIZE (id->fns) == id->first_inlined_fn)
1325     id->inlined_stmts = 0;
1326
1327   /* Don't walk into subtrees.  We've already handled them above.  */
1328   *walk_subtrees = 0;
1329
1330   (*lang_hooks.tree_inlining.end_inlining) (fn);
1331
1332   /* Keep iterating.  */
1333   return NULL_TREE;
1334 }
1335 /* Walk over the entire tree *TP, replacing CALL_EXPRs with inline
1336    expansions as appropriate.  */
1337
1338 static void
1339 expand_calls_inline (tp, id)
1340      tree *tp;
1341      inline_data *id;
1342 {
1343   /* Search through *TP, replacing all calls to inline functions by
1344      appropriate equivalents.  Use walk_tree in no-duplicates mode
1345      to avoid exponential time complexity.  (We can't just use
1346      walk_tree_without_duplicates, because of the special TARGET_EXPR
1347      handling in expand_calls.  The hash table is set up in
1348      optimize_function.  */
1349   walk_tree (tp, expand_call_inline, id, id->tree_pruner);
1350 }
1351
1352 /* Expand calls to inline functions in the body of FN.  */
1353
1354 void
1355 optimize_inline_calls (fn)
1356      tree fn;
1357 {
1358   inline_data id;
1359   tree prev_fn;
1360
1361   /* Clear out ID.  */
1362   memset (&id, 0, sizeof (id));
1363
1364   /* Don't allow recursion into FN.  */
1365   VARRAY_TREE_INIT (id.fns, 32, "fns");
1366   VARRAY_PUSH_TREE (id.fns, fn);
1367   /* Or any functions that aren't finished yet.  */
1368   prev_fn = NULL_TREE;
1369   if (current_function_decl)
1370     {
1371       VARRAY_PUSH_TREE (id.fns, current_function_decl);
1372       prev_fn = current_function_decl;
1373     }
1374
1375   prev_fn = ((*lang_hooks.tree_inlining.add_pending_fn_decls)
1376              (&id.fns, prev_fn));
1377
1378   /* Create the stack of TARGET_EXPRs.  */
1379   VARRAY_TREE_INIT (id.target_exprs, 32, "target_exprs");
1380
1381   /* Create the list of functions this call will inline.  */
1382   VARRAY_TREE_INIT (id.inlined_fns, 32, "inlined_fns");
1383
1384   /* Keep track of the low-water mark, i.e., the point where the first
1385      real inlining is represented in ID.FNS.  */
1386   id.first_inlined_fn = VARRAY_ACTIVE_SIZE (id.fns);
1387
1388   /* Replace all calls to inline functions with the bodies of those
1389      functions.  */
1390   id.tree_pruner = htab_create (37, htab_hash_pointer,
1391                                 htab_eq_pointer, NULL);
1392   expand_calls_inline (&DECL_SAVED_TREE (fn), &id);
1393
1394   /* Clean up.  */
1395   htab_delete (id.tree_pruner);
1396   if (DECL_LANG_SPECIFIC (fn))
1397     {
1398       tree ifn = make_tree_vec (VARRAY_ACTIVE_SIZE (id.inlined_fns));
1399
1400       if (VARRAY_ACTIVE_SIZE (id.inlined_fns))
1401         memcpy (&TREE_VEC_ELT (ifn, 0), &VARRAY_TREE (id.inlined_fns, 0),
1402                 VARRAY_ACTIVE_SIZE (id.inlined_fns) * sizeof (tree));
1403       DECL_INLINED_FNS (fn) = ifn;
1404     }
1405 }
1406
1407 /* FN is a function that has a complete body, and CLONE is a function
1408    whose body is to be set to a copy of FN, mapping argument
1409    declarations according to the ARG_MAP splay_tree.  */
1410
1411 void
1412 clone_body (clone, fn, arg_map)
1413      tree clone, fn;
1414      void *arg_map;
1415 {
1416   inline_data id;
1417
1418   /* Clone the body, as if we were making an inline call.  But, remap
1419      the parameters in the callee to the parameters of caller.  If
1420      there's an in-charge parameter, map it to an appropriate
1421      constant.  */
1422   memset (&id, 0, sizeof (id));
1423   VARRAY_TREE_INIT (id.fns, 2, "fns");
1424   VARRAY_PUSH_TREE (id.fns, clone);
1425   VARRAY_PUSH_TREE (id.fns, fn);
1426   id.decl_map = (splay_tree)arg_map;
1427
1428   /* Cloning is treated slightly differently from inlining.  Set
1429      CLONING_P so that it's clear which operation we're performing.  */
1430   id.cloning_p = true;
1431
1432   /* Actually copy the body.  */
1433   TREE_CHAIN (DECL_SAVED_TREE (clone)) = copy_body (&id);
1434 }
1435
1436 /* Apply FUNC to all the sub-trees of TP in a pre-order traversal.
1437    FUNC is called with the DATA and the address of each sub-tree.  If
1438    FUNC returns a non-NULL value, the traversal is aborted, and the
1439    value returned by FUNC is returned.  If HTAB is non-NULL it is used
1440    to record the nodes visited, and to avoid visiting a node more than
1441    once.  */
1442
1443 tree
1444 walk_tree (tp, func, data, htab_)
1445      tree *tp;
1446      walk_tree_fn func;
1447      void *data;
1448      void *htab_;
1449 {
1450   htab_t htab = (htab_t) htab_;
1451   enum tree_code code;
1452   int walk_subtrees;
1453   tree result;
1454
1455 #define WALK_SUBTREE(NODE)                              \
1456   do                                                    \
1457     {                                                   \
1458       result = walk_tree (&(NODE), func, data, htab);   \
1459       if (result)                                       \
1460         return result;                                  \
1461     }                                                   \
1462   while (0)
1463
1464 #define WALK_SUBTREE_TAIL(NODE)                         \
1465   do                                                    \
1466     {                                                   \
1467        tp = & (NODE);                                   \
1468        goto tail_recurse;                               \
1469     }                                                   \
1470   while (0)
1471
1472  tail_recurse:
1473   /* Skip empty subtrees.  */
1474   if (!*tp)
1475     return NULL_TREE;
1476
1477   if (htab)
1478     {
1479       void **slot;
1480
1481       /* Don't walk the same tree twice, if the user has requested
1482          that we avoid doing so.  */
1483       if (htab_find (htab, *tp))
1484         return NULL_TREE;
1485       /* If we haven't already seen this node, add it to the table.  */
1486       slot = htab_find_slot (htab, *tp, INSERT);
1487       *slot = *tp;
1488     }
1489
1490   /* Call the function.  */
1491   walk_subtrees = 1;
1492   result = (*func) (tp, &walk_subtrees, data);
1493
1494   /* If we found something, return it.  */
1495   if (result)
1496     return result;
1497
1498   code = TREE_CODE (*tp);
1499
1500 #ifndef INLINER_FOR_JAVA
1501   /* Even if we didn't, FUNC may have decided that there was nothing
1502      interesting below this point in the tree.  */
1503   if (!walk_subtrees)
1504     {
1505       if (statement_code_p (code) || code == TREE_LIST
1506           || (*lang_hooks.tree_inlining.tree_chain_matters_p) (*tp))
1507         /* But we still need to check our siblings.  */
1508         WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
1509       else
1510         return NULL_TREE;
1511     }
1512
1513   /* Handle common cases up front.  */
1514   if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code))
1515       || TREE_CODE_CLASS (code) == 'r'
1516       || TREE_CODE_CLASS (code) == 's')
1517 #else /* INLINER_FOR_JAVA */
1518   if (code != EXIT_BLOCK_EXPR
1519       && code != SAVE_EXPR
1520       && (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code))
1521           || TREE_CODE_CLASS (code) == 'r'
1522           || TREE_CODE_CLASS (code) == 's'))
1523 #endif /* INLINER_FOR_JAVA */
1524     {
1525       int i, len;
1526
1527 #ifndef INLINER_FOR_JAVA
1528       /* Set lineno here so we get the right instantiation context
1529          if we call instantiate_decl from inlinable_function_p.  */
1530       if (statement_code_p (code) && !STMT_LINENO_FOR_FN_P (*tp))
1531         lineno = STMT_LINENO (*tp);
1532 #endif /* not INLINER_FOR_JAVA */
1533
1534       /* Walk over all the sub-trees of this operand.  */
1535       len = first_rtl_op (code);
1536       /* TARGET_EXPRs are peculiar: operands 1 and 3 can be the same.
1537          But, we only want to walk once.  */
1538       if (code == TARGET_EXPR
1539           && TREE_OPERAND (*tp, 3) == TREE_OPERAND (*tp, 1))
1540         --len;
1541       /* Go through the subtrees.  We need to do this in forward order so
1542          that the scope of a FOR_EXPR is handled properly.  */
1543       for (i = 0; i < len; ++i)
1544         WALK_SUBTREE (TREE_OPERAND (*tp, i));
1545
1546 #ifndef INLINER_FOR_JAVA
1547       /* For statements, we also walk the chain so that we cover the
1548          entire statement tree.  */
1549       if (statement_code_p (code))
1550         {
1551           if (code == DECL_STMT
1552               && DECL_STMT_DECL (*tp)
1553               && DECL_P (DECL_STMT_DECL (*tp)))
1554             {
1555               /* Walk the DECL_INITIAL and DECL_SIZE.  We don't want to walk
1556                  into declarations that are just mentioned, rather than
1557                  declared; they don't really belong to this part of the tree.
1558                  And, we can see cycles: the initializer for a declaration can
1559                  refer to the declaration itself.  */
1560               WALK_SUBTREE (DECL_INITIAL (DECL_STMT_DECL (*tp)));
1561               WALK_SUBTREE (DECL_SIZE (DECL_STMT_DECL (*tp)));
1562               WALK_SUBTREE (DECL_SIZE_UNIT (DECL_STMT_DECL (*tp)));
1563             }
1564
1565           /* This can be tail-recursion optimized if we write it this way.  */
1566           WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
1567         }
1568
1569 #endif /* not INLINER_FOR_JAVA */
1570       /* We didn't find what we were looking for.  */
1571       return NULL_TREE;
1572     }
1573   else if (TREE_CODE_CLASS (code) == 'd')
1574     {
1575       WALK_SUBTREE_TAIL (TREE_TYPE (*tp));
1576     }
1577   else if (TREE_CODE_CLASS (code) == 't')
1578     {
1579       WALK_SUBTREE (TYPE_SIZE (*tp));
1580       WALK_SUBTREE (TYPE_SIZE_UNIT (*tp));
1581       /* Also examine various special fields, below.  */
1582     }
1583
1584   result = (*lang_hooks.tree_inlining.walk_subtrees) (tp, &walk_subtrees, func,
1585                                                       data, htab);
1586   if (result || ! walk_subtrees)
1587     return result;
1588
1589   /* Not one of the easy cases.  We must explicitly go through the
1590      children.  */
1591   switch (code)
1592     {
1593     case ERROR_MARK:
1594     case IDENTIFIER_NODE:
1595     case INTEGER_CST:
1596     case REAL_CST:
1597     case VECTOR_CST:
1598     case STRING_CST:
1599     case REAL_TYPE:
1600     case COMPLEX_TYPE:
1601     case VECTOR_TYPE:
1602     case VOID_TYPE:
1603     case BOOLEAN_TYPE:
1604     case UNION_TYPE:
1605     case ENUMERAL_TYPE:
1606     case BLOCK:
1607     case RECORD_TYPE:
1608       /* None of thse have subtrees other than those already walked
1609          above.  */
1610       break;
1611
1612     case POINTER_TYPE:
1613     case REFERENCE_TYPE:
1614       WALK_SUBTREE_TAIL (TREE_TYPE (*tp));
1615       break;
1616
1617     case TREE_LIST:
1618       WALK_SUBTREE (TREE_VALUE (*tp));
1619       WALK_SUBTREE_TAIL (TREE_CHAIN (*tp));
1620       break;
1621
1622     case TREE_VEC:
1623       {
1624         int len = TREE_VEC_LENGTH (*tp);
1625
1626         if (len == 0)
1627           break;
1628
1629         /* Walk all elements but the first.  */
1630         while (--len)
1631           WALK_SUBTREE (TREE_VEC_ELT (*tp, len));
1632
1633         /* Now walk the first one as a tail call.  */
1634         WALK_SUBTREE_TAIL (TREE_VEC_ELT (*tp, 0));
1635       }
1636
1637     case COMPLEX_CST:
1638       WALK_SUBTREE (TREE_REALPART (*tp));
1639       WALK_SUBTREE_TAIL (TREE_IMAGPART (*tp));
1640
1641     case CONSTRUCTOR:
1642       WALK_SUBTREE_TAIL (CONSTRUCTOR_ELTS (*tp));
1643
1644     case METHOD_TYPE:
1645       WALK_SUBTREE (TYPE_METHOD_BASETYPE (*tp));
1646       /* Fall through.  */
1647
1648     case FUNCTION_TYPE:
1649       WALK_SUBTREE (TREE_TYPE (*tp));
1650       {
1651         tree arg = TYPE_ARG_TYPES (*tp);
1652
1653         /* We never want to walk into default arguments.  */
1654         for (; arg; arg = TREE_CHAIN (arg))
1655           WALK_SUBTREE (TREE_VALUE (arg));
1656       }
1657       break;
1658
1659     case ARRAY_TYPE:
1660       WALK_SUBTREE (TREE_TYPE (*tp));
1661       WALK_SUBTREE_TAIL (TYPE_DOMAIN (*tp));
1662
1663     case INTEGER_TYPE:
1664       WALK_SUBTREE (TYPE_MIN_VALUE (*tp));
1665       WALK_SUBTREE_TAIL (TYPE_MAX_VALUE (*tp));
1666
1667     case OFFSET_TYPE:
1668       WALK_SUBTREE (TREE_TYPE (*tp));
1669       WALK_SUBTREE_TAIL (TYPE_OFFSET_BASETYPE (*tp));
1670
1671 #ifdef INLINER_FOR_JAVA
1672     case EXIT_BLOCK_EXPR:
1673       WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 1));
1674
1675     case SAVE_EXPR:
1676       WALK_SUBTREE_TAIL (TREE_OPERAND (*tp, 0));
1677 #endif /* INLINER_FOR_JAVA */
1678
1679     default:
1680       abort ();
1681     }
1682
1683   /* We didn't find what we were looking for.  */
1684   return NULL_TREE;
1685
1686 #undef WALK_SUBTREE
1687 #undef WALK_SUBTREE_TAIL
1688 }
1689
1690 /* Like walk_tree, but does not walk duplicate nodes more than
1691    once.  */
1692
1693 tree
1694 walk_tree_without_duplicates (tp, func, data)
1695      tree *tp;
1696      walk_tree_fn func;
1697      void *data;
1698 {
1699   tree result;
1700   htab_t htab;
1701
1702   htab = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
1703   result = walk_tree (tp, func, data, htab);
1704   htab_delete (htab);
1705   return result;
1706 }
1707
1708 /* Passed to walk_tree.  Copies the node pointed to, if appropriate.  */
1709
1710 tree
1711 copy_tree_r (tp, walk_subtrees, data)
1712      tree *tp;
1713      int *walk_subtrees;
1714      void *data ATTRIBUTE_UNUSED;
1715 {
1716   enum tree_code code = TREE_CODE (*tp);
1717
1718   /* We make copies of most nodes.  */
1719   if (IS_EXPR_CODE_CLASS (TREE_CODE_CLASS (code))
1720       || TREE_CODE_CLASS (code) == 'r'
1721       || TREE_CODE_CLASS (code) == 'c'
1722       || TREE_CODE_CLASS (code) == 's'
1723       || code == TREE_LIST
1724       || code == TREE_VEC
1725       || (*lang_hooks.tree_inlining.tree_chain_matters_p) (*tp))
1726     {
1727       /* Because the chain gets clobbered when we make a copy, we save it
1728          here.  */
1729       tree chain = TREE_CHAIN (*tp);
1730
1731       /* Copy the node.  */
1732       *tp = copy_node (*tp);
1733
1734       /* Now, restore the chain, if appropriate.  That will cause
1735          walk_tree to walk into the chain as well.  */
1736       if (code == PARM_DECL || code == TREE_LIST
1737 #ifndef INLINER_FOR_JAVA
1738           || (*lang_hooks.tree_inlining.tree_chain_matters_p) (*tp)
1739           || statement_code_p (code))
1740         TREE_CHAIN (*tp) = chain;
1741
1742       /* For now, we don't update BLOCKs when we make copies.  So, we
1743          have to nullify all scope-statements.  */
1744       if (TREE_CODE (*tp) == SCOPE_STMT)
1745         SCOPE_STMT_BLOCK (*tp) = NULL_TREE;
1746 #else /* INLINER_FOR_JAVA */
1747           || (*lang_hooks.tree_inlining.tree_chain_matters_p) (*tp))
1748         TREE_CHAIN (*tp) = chain;
1749 #endif /* INLINER_FOR_JAVA */
1750     }
1751   else if (TREE_CODE_CLASS (code) == 't' && !variably_modified_type_p (*tp))
1752     /* Types only need to be copied if they are variably modified.  */
1753     *walk_subtrees = 0;
1754
1755   return NULL_TREE;
1756 }
1757
1758 /* The SAVE_EXPR pointed to by TP is being copied.  If ST contains
1759    information indicating to what new SAVE_EXPR this one should be
1760    mapped, use that one.  Otherwise, create a new node and enter it in
1761    ST.  FN is the function into which the copy will be placed.  */
1762
1763 void
1764 remap_save_expr (tp, st_, fn, walk_subtrees)
1765      tree *tp;
1766      void *st_;
1767      tree fn;
1768      int *walk_subtrees;
1769 {
1770   splay_tree st = (splay_tree) st_;
1771   splay_tree_node n;
1772
1773   /* See if we already encountered this SAVE_EXPR.  */
1774   n = splay_tree_lookup (st, (splay_tree_key) *tp);
1775
1776   /* If we didn't already remap this SAVE_EXPR, do so now.  */
1777   if (!n)
1778     {
1779       tree t = copy_node (*tp);
1780
1781       /* The SAVE_EXPR is now part of the function into which we
1782          are inlining this body.  */
1783       SAVE_EXPR_CONTEXT (t) = fn;
1784       /* And we haven't evaluated it yet.  */
1785       SAVE_EXPR_RTL (t) = NULL_RTX;
1786       /* Remember this SAVE_EXPR.  */
1787       n = splay_tree_insert (st,
1788                              (splay_tree_key) *tp,
1789                              (splay_tree_value) t);
1790       /* Make sure we don't remap an already-remapped SAVE_EXPR.  */
1791       splay_tree_insert (st, (splay_tree_key) t,
1792                          (splay_tree_value) error_mark_node);
1793     }
1794   else
1795     /* We've already walked into this SAVE_EXPR, so we needn't do it
1796        again.  */
1797     *walk_subtrees = 0;
1798
1799   /* Replace this SAVE_EXPR with the copy.  */
1800   *tp = (tree) n->value;
1801 }
1802
1803 #ifdef INLINER_FOR_JAVA
1804 /* Add STMT to EXISTING if possible, otherwise create a new
1805    COMPOUND_EXPR and add STMT to it.  */
1806
1807 static tree
1808 add_stmt_to_compound (existing, type, stmt)
1809      tree existing, type, stmt;
1810 {
1811   if (!stmt)
1812     return existing;
1813   else if (existing)
1814     return build (COMPOUND_EXPR, type, existing, stmt);
1815   else
1816     return stmt;
1817 }
1818
1819 #endif /* INLINER_FOR_JAVA */