OSDN Git Service

*** empty log message ***
[pf3gnuchains/gcc-fork.git] / gcc / integrate.c
1 /* Procedure integration for GNU CC.
2    Copyright (C) 1988, 1991 Free Software Foundation, Inc.
3    Contributed by Michael Tiemann (tiemann@cygnus.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, 675 Mass Ave, Cambridge, MA 02139, USA.  */
20
21
22 #include <stdio.h>
23
24 #include "config.h"
25 #include "rtl.h"
26 #include "tree.h"
27 #include "flags.h"
28 #include "insn-config.h"
29 #include "insn-flags.h"
30 #include "expr.h"
31 #include "output.h"
32 #include "integrate.h"
33 #include "real.h"
34 #include "function.h"
35
36 #include "obstack.h"
37 #define obstack_chunk_alloc     xmalloc
38 #define obstack_chunk_free      free
39 extern int xmalloc ();
40 extern void free ();
41
42 extern struct obstack *function_maybepermanent_obstack;
43
44 extern tree pushdecl ();
45 extern tree poplevel ();
46
47 /* Similar, but round to the next highest integer that meets the
48    alignment.  */
49 #define CEIL_ROUND(VALUE,ALIGN) (((VALUE) + (ALIGN) - 1) & ~((ALIGN)- 1))
50
51 /* Default max number of insns a function can have and still be inline.
52    This is overridden on RISC machines.  */
53 #ifndef INTEGRATE_THRESHOLD
54 #define INTEGRATE_THRESHOLD(DECL) \
55   (8 * (8 + list_length (DECL_ARGUMENTS (DECL))))
56 #endif
57 \f
58 /* Save any constant pool constants in an insn.  */
59 static void save_constants ();
60
61 /* Note when parameter registers are the destination of a SET.  */
62 static void note_modified_parmregs ();
63
64 /* Copy an rtx for save_for_inline_copying.  */
65 static rtx copy_for_inline ();
66
67 /* Make copies of MEMs in DECL_RTLs.  */
68 static void copy_decl_rtls ();
69
70 static tree copy_decl_tree ();
71
72 /* Return the constant equivalent of a given rtx, or 0 if none.  */
73 static rtx const_equiv ();
74
75 static void integrate_parm_decls ();
76 static void integrate_decl_tree ();
77
78 static void subst_constants ();
79 static rtx fold_out_const_cc0 ();
80 \f
81 /* Zero if the current function (whose FUNCTION_DECL is FNDECL)
82    is safe and reasonable to integrate into other functions.
83    Nonzero means value is a warning message with a single %s
84    for the function's name.  */
85
86 char *
87 function_cannot_inline_p (fndecl)
88      register tree fndecl;
89 {
90   register rtx insn;
91   tree last = tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl)));
92   int max_insns = INTEGRATE_THRESHOLD (fndecl);
93   register int ninsns = 0;
94   register tree parms;
95
96   /* No inlines with varargs.  `grokdeclarator' gives a warning
97      message about that if `inline' is specified.  This code
98      it put in to catch the volunteers.  */
99   if ((last && TREE_VALUE (last) != void_type_node)
100       || (DECL_ARGUMENTS (fndecl) && DECL_NAME (DECL_ARGUMENTS (fndecl))
101           && ! strcmp (IDENTIFIER_POINTER (DECL_NAME (DECL_ARGUMENTS (fndecl))),
102                        "__builtin_va_alist")))
103     return "varargs function cannot be inline";
104
105   if (current_function_calls_alloca)
106     return "function using alloca cannot be inline";
107
108   if (current_function_contains_functions)
109     return "function with nested functions cannot be inline";
110
111   /* This restriction may be eliminated sometime soon.  But for now, don't
112      worry about remapping the static chain.  */
113   if (current_function_needs_context)
114     return "nested function cannot be inline";
115
116   /* If its not even close, don't even look.  */
117   if (!TREE_INLINE (fndecl) && get_max_uid () > 3 * max_insns)
118     return "function too large to be inline";
119
120 #if 0
121   /* Large stacks are OK now that inlined functions can share them.  */
122   /* Don't inline functions with large stack usage,
123      since they can make other recursive functions burn up stack.  */
124   if (!TREE_INLINE (fndecl) && get_frame_size () > 100)
125     return "function stack frame for inlining";
126 #endif
127
128 #if 0
129   /* Don't inline functions which do not specify a function prototype and
130      have BLKmode argument or take the address of a parameter.  */
131   for (parms = DECL_ARGUMENTS (fndecl); parms; parms = TREE_CHAIN (parms))
132     {
133       if (TYPE_MODE (TREE_TYPE (parms)) == BLKmode)
134         TREE_ADDRESSABLE (parms) = 1;
135       if (last == NULL_TREE && TREE_ADDRESSABLE (parms))
136         return "no prototype, and parameter address used; cannot be inline";
137     }
138 #endif
139
140   /* We can't inline functions that return structures
141      the old-fashioned PCC way, copying into a static block.  */
142   if (current_function_returns_pcc_struct)
143     return "inline functions not supported for this return value type";
144
145   /* We can't inline functions that return structures of varying size.  */
146   if (int_size_in_bytes (TREE_TYPE (TREE_TYPE (fndecl))) < 0)
147     return "function with varying-size return value cannot be inline";
148
149   /* Cannot inline a function with a varying size argument.  */
150   for (parms = DECL_ARGUMENTS (fndecl); parms; parms = TREE_CHAIN (parms))
151     if (int_size_in_bytes (TREE_TYPE (parms)) < 0)
152       return "function with varying-size parameter cannot be inline";
153
154   if (!TREE_INLINE (fndecl) && get_max_uid () > max_insns)
155     {
156       for (ninsns = 0, insn = get_first_nonparm_insn (); insn && ninsns < max_insns;
157            insn = NEXT_INSN (insn))
158         {
159           if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
160             ninsns++;
161         }
162
163       if (ninsns >= max_insns)
164         return "function too large to be inline";
165     }
166
167   /* We cannot inline this function if forced_labels is non-zero.  This
168      implies that a label in this function was used as an initializer.
169      Because labels can not be duplicated, all labels in the function
170      will be renamed when it is inlined.  However, there is no way to find
171      and fix all variables initialized with addresses of labels in this
172      function, hence inlining is impossible.  */
173
174   if (forced_labels)
175     return "function with label addresses used in initializers cannot inline";
176
177   return 0;
178 }
179 \f
180 /* Variables used within save_for_inline.  */
181
182 /* Mapping from old pseudo-register to new pseudo-registers.
183    The first element of this map is reg_map[FIRST_PSEUDO_REGISTER].
184    It is allocated in `save_for_inline' and `expand_inline_function',
185    and deallocated on exit from each of those routines.  */
186 static rtx *reg_map;
187
188 /* Mapping from old code-labels to new code-labels.
189    The first element of this map is label_map[min_labelno].
190    It is allocated in `save_for_inline' and `expand_inline_function',
191    and deallocated on exit from each of those routines.  */
192 static rtx *label_map;
193
194 /* Mapping from old insn uid's to copied insns.
195    It is allocated in `save_for_inline' and `expand_inline_function',
196    and deallocated on exit from each of those routines.  */
197 static rtx *insn_map;
198
199 /* Map pseudo reg number into the PARM_DECL for the parm living in the reg.
200    Zero for a reg that isn't a parm's home.
201    Only reg numbers less than max_parm_reg are mapped here.  */
202 static tree *parmdecl_map;
203
204 /* Keep track of first pseudo-register beyond those that are parms.  */
205 static int max_parm_reg;
206
207 /* When an insn is being copied by copy_for_inline,
208    this is nonzero if we have copied an ASM_OPERANDS.
209    In that case, it is the original input-operand vector.  */
210 static rtvec orig_asm_operands_vector;
211
212 /* When an insn is being copied by copy_for_inline,
213    this is nonzero if we have copied an ASM_OPERANDS.
214    In that case, it is the copied input-operand vector.  */
215 static rtvec copy_asm_operands_vector;
216
217 /* Likewise, this is the copied constraints vector.  */
218 static rtvec copy_asm_constraints_vector;
219
220 /* In save_for_inline, nonzero if past the parm-initialization insns.  */
221 static int in_nonparm_insns;
222 \f
223 /* Subroutine for `save_for_inline{copying,nocopy}'.  Performs initialization
224    needed to save FNDECL's insns and info for future inline expansion.  */
225    
226 static rtx
227 initialize_for_inline (fndecl, min_labelno, max_labelno, max_reg, copy)
228      tree fndecl;
229      int min_labelno;
230      int max_labelno;
231      int max_reg;
232      int copy;
233 {
234   int function_flags, i;
235   rtvec arg_vector;
236   tree parms;
237
238   /* Compute the values of any flags we must restore when inlining this.  */
239
240   function_flags
241     = (current_function_calls_alloca * FUNCTION_FLAGS_CALLS_ALLOCA
242        + current_function_calls_setjmp * FUNCTION_FLAGS_CALLS_SETJMP
243        + current_function_calls_longjmp * FUNCTION_FLAGS_CALLS_LONGJMP
244        + current_function_returns_struct * FUNCTION_FLAGS_RETURNS_STRUCT
245        + current_function_returns_pcc_struct * FUNCTION_FLAGS_RETURNS_PCC_STRUCT
246        + current_function_needs_context * FUNCTION_FLAGS_NEEDS_CONTEXT
247        + current_function_has_nonlocal_label * FUNCTION_FLAGS_HAS_NONLOCAL_LABEL
248        + current_function_returns_pointer * FUNCTION_FLAGS_RETURNS_POINTER
249        + current_function_uses_const_pool * FUNCTION_FLAGS_USES_CONST_POOL
250        + current_function_uses_pic_offset_table * FUNCTION_FLAGS_USES_PIC_OFFSET_TABLE);
251
252   /* Clear out PARMDECL_MAP.  It was allocated in the caller's frame.  */
253   bzero (parmdecl_map, max_parm_reg * sizeof (tree));
254   arg_vector = rtvec_alloc (list_length (DECL_ARGUMENTS (fndecl)));
255
256   for (parms = DECL_ARGUMENTS (fndecl), i = 0;
257        parms;
258        parms = TREE_CHAIN (parms), i++)
259     {
260       rtx p = DECL_RTL (parms);
261
262       if (GET_CODE (p) == MEM && copy)
263         {
264           /* Copy the rtl so that modifications of the addresses
265              later in compilation won't affect this arg_vector.
266              Virtual register instantiation can screw the address
267              of the rtl.  */
268           rtx new = copy_rtx (p);
269
270           /* Don't leave the old copy anywhere in this decl.  */
271           if (DECL_RTL (parms) == DECL_INCOMING_RTL (parms)
272               || (GET_CODE (DECL_RTL (parms)) == MEM
273                   && GET_CODE (DECL_INCOMING_RTL (parms)) == MEM
274                   && (XEXP (DECL_RTL (parms), 0)
275                       == XEXP (DECL_INCOMING_RTL (parms), 0))))
276             DECL_INCOMING_RTL (parms) = new;
277           DECL_RTL (parms) = new;
278         }
279
280       RTVEC_ELT (arg_vector, i) = p;
281
282       if (GET_CODE (p) == REG)
283         parmdecl_map[REGNO (p)] = parms;
284       TREE_READONLY (parms) = 1;
285     }
286
287   /* Assume we start out in the insns that set up the parameters.  */
288   in_nonparm_insns = 0;
289
290   /* The list of DECL_SAVED_INSNS, starts off with a header which
291      contains the following information:
292
293      the first insn of the function (not including the insns that copy
294      parameters into registers).
295      the first parameter insn of the function,
296      the first label used by that function,
297      the last label used by that function,
298      the highest register number used for parameters,
299      the total number of registers used,
300      the size of the incoming stack area for parameters,
301      the number of bytes popped on return,
302      the stack slot list,
303      some flags that are used to restore compiler globals,
304      the value of current_function_outgoing_args_size,
305      the original argument vector,
306      and the original DECL_INITIAL.  */
307
308   return gen_inline_header_rtx (NULL, NULL, min_labelno, max_labelno,
309                                 max_parm_reg, max_reg,
310                                 current_function_args_size,
311                                 current_function_pops_args,
312                                 stack_slot_list, function_flags,
313                                 current_function_outgoing_args_size,
314                                 arg_vector, (rtx) DECL_INITIAL (fndecl));
315 }
316
317 /* Subroutine for `save_for_inline{copying,nocopy}'.  Finishes up the
318    things that must be done to make FNDECL expandable as an inline function.
319    HEAD contains the chain of insns to which FNDECL will expand.  */
320    
321 static void
322 finish_inline (fndecl, head)
323      tree fndecl;
324      rtx head;
325 {
326   NEXT_INSN (head) = get_first_nonparm_insn ();
327   FIRST_PARM_INSN (head) = get_insns ();
328   DECL_SAVED_INSNS (fndecl) = head;
329   DECL_FRAME_SIZE (fndecl) = get_frame_size ();
330   TREE_INLINE (fndecl) = 1;
331 }
332
333 /* Make the insns and PARM_DECLs of the current function permanent
334    and record other information in DECL_SAVED_INSNS to allow inlining
335    of this function in subsequent calls.
336
337    This function is called when we are going to immediately compile
338    the insns for FNDECL.  The insns in maybepermanent_obstack cannot be
339    modified by the compilation process, so we copy all of them to
340    new storage and consider the new insns to be the insn chain to be
341    compiled.  */
342
343 void
344 save_for_inline_copying (fndecl)
345      tree fndecl;
346 {
347   rtx first_insn, last_insn, insn;
348   rtx head, copy;
349   int max_labelno, min_labelno, i, len;
350   int max_reg;
351   int max_uid;
352   rtx first_nonparm_insn;
353
354   /* Make and emit a return-label if we have not already done so. 
355      Do this before recording the bounds on label numbers. */
356
357   if (return_label == 0)
358     {
359       return_label = gen_label_rtx ();
360       emit_label (return_label);
361     }
362
363   /* Get some bounds on the labels and registers used.  */
364
365   max_labelno = max_label_num ();
366   min_labelno = get_first_label_num ();
367   max_reg = max_reg_num ();
368
369   /* Set up PARMDECL_MAP which maps pseudo-reg number to its PARM_DECL.
370      Later we set TREE_READONLY to 0 if the parm is modified inside the fn.
371      Also set up ARG_VECTOR, which holds the unmodified DECL_RTX values
372      for the parms, prior to elimination of virtual registers.
373      These values are needed for substituting parms properly.  */
374
375   max_parm_reg = max_parm_reg_num ();
376   parmdecl_map = (tree *) alloca (max_parm_reg * sizeof (tree));
377
378   head = initialize_for_inline (fndecl, min_labelno, max_labelno, max_reg, 1);
379
380   if (current_function_uses_const_pool)
381     {
382       /* Replace any constant pool references with the actual constant.  We
383          will put the constants back in the copy made below.  */
384       for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
385         if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
386           {
387             save_constants (&PATTERN (insn));
388             if (REG_NOTES (insn))
389               save_constants (&REG_NOTES (insn));
390           }
391
392       /* Clear out the constant pool so that we can recreate it with the
393          copied constants below.  */
394       init_const_rtx_hash_table ();
395       clear_const_double_mem ();
396     }
397
398   max_uid = INSN_UID (head);
399
400   /* We have now allocated all that needs to be allocated permanently
401      on the rtx obstack.  Set our high-water mark, so that we
402      can free the rest of this when the time comes.  */
403
404   preserve_data ();
405
406   /* Copy the chain insns of this function.
407      Install the copied chain as the insns of this function,
408      for continued compilation;
409      the original chain is recorded as the DECL_SAVED_INSNS
410      for inlining future calls.  */
411
412   /* If there are insns that copy parms from the stack into pseudo registers,
413      those insns are not copied.  `expand_inline_function' must
414      emit the correct code to handle such things.  */
415
416   insn = get_insns ();
417   if (GET_CODE (insn) != NOTE)
418     abort ();
419   first_insn = rtx_alloc (NOTE);
420   NOTE_SOURCE_FILE (first_insn) = NOTE_SOURCE_FILE (insn);
421   NOTE_LINE_NUMBER (first_insn) = NOTE_LINE_NUMBER (insn);
422   INSN_UID (first_insn) = INSN_UID (insn);
423   PREV_INSN (first_insn) = NULL;
424   NEXT_INSN (first_insn) = NULL;
425   last_insn = first_insn;
426
427   /* Each pseudo-reg in the old insn chain must have a unique rtx in the copy.
428      Make these new rtx's now, and install them in regno_reg_rtx, so they
429      will be the official pseudo-reg rtx's for the rest of compilation.  */
430
431   reg_map = (rtx *) alloca ((max_reg + 1) * sizeof (rtx));
432
433   len = sizeof (struct rtx_def) + (GET_RTX_LENGTH (REG) - 1) * sizeof (rtunion);
434   for (i = max_reg - 1; i > LAST_VIRTUAL_REGISTER; i--)
435     reg_map[i] = (rtx)obstack_copy (function_maybepermanent_obstack,
436                                     regno_reg_rtx[i], len);
437
438   bcopy (reg_map + LAST_VIRTUAL_REGISTER + 1,
439          regno_reg_rtx + LAST_VIRTUAL_REGISTER + 1,
440          (max_reg - (LAST_VIRTUAL_REGISTER + 1)) * sizeof (rtx));
441
442   /* Likewise each label rtx must have a unique rtx as its copy.  */
443
444   label_map = (rtx *)alloca ((max_labelno - min_labelno) * sizeof (rtx));
445   label_map -= min_labelno;
446
447   for (i = min_labelno; i < max_labelno; i++)
448     label_map[i] = gen_label_rtx ();
449
450   /* Record the mapping of old insns to copied insns.  */
451
452   insn_map = (rtx *) alloca (max_uid * sizeof (rtx));
453   bzero (insn_map, max_uid * sizeof (rtx));
454
455   /* Get the insn which signals the end of parameter setup code.  */
456   first_nonparm_insn = get_first_nonparm_insn ();
457
458   /* Copy any entries in regno_reg_rtx or DECL_RTLs that reference MEM
459      (the former occurs when a variable has its address taken)
460      since these may be shared and can be changed by virtual
461      register instantiation.  DECL_RTL values for our arguments
462      have already been copied by initialize_for_inline.  */
463   for (i = LAST_VIRTUAL_REGISTER + 1; i < max_reg; i++)
464     if (GET_CODE (regno_reg_rtx[i]) == MEM)
465       XEXP (regno_reg_rtx[i], 0)
466         = copy_for_inline (XEXP (regno_reg_rtx[i], 0));
467
468   /* Copy the tree of subblocks of the function, and the decls in them.
469      We will use the copy for compiling this function, then restore the original
470      subblocks and decls for use when inlining this function.
471
472      Several parts of the compiler modify BLOCK trees.  In particular,
473      instantiate_virtual_regs will instantiate any virtual regs
474      mentioned in the DECL_RTLs of the decls, and loop
475      unrolling will replicate any BLOCK trees inside an unrolled loop.
476
477      The modified subblocks or DECL_RTLs would be incorrect for the original rtl
478      which we will use for inlining.  The rtl might even contain pseudoregs
479      whose space has been freed.  */
480
481   DECL_INITIAL (fndecl) = copy_decl_tree (DECL_INITIAL (fndecl));
482
483   /* Now copy each DECL_RTL which is a MEM,
484      so it is safe to modify their addresses.  */
485   copy_decl_rtls (DECL_INITIAL (fndecl));
486
487   /* Now copy the chain of insns.  Do this twice.  The first copy the insn
488      itself and its body.  The second time copy of REG_NOTES.  This is because
489      a REG_NOTE may have a forward pointer to another insn.  */
490
491   for (insn = NEXT_INSN (insn); insn; insn = NEXT_INSN (insn))
492     {
493       orig_asm_operands_vector = 0;
494
495       if (insn == first_nonparm_insn)
496         in_nonparm_insns = 1;
497
498       switch (GET_CODE (insn))
499         {
500         case NOTE:
501           /* No need to keep these.  */
502           if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED)
503             continue;
504
505           copy = rtx_alloc (NOTE);
506           NOTE_SOURCE_FILE (copy) = NOTE_SOURCE_FILE (insn);
507           NOTE_LINE_NUMBER (copy) = NOTE_LINE_NUMBER (insn);
508           break;
509
510         case INSN:
511         case CALL_INSN:
512         case JUMP_INSN:
513           copy = rtx_alloc (GET_CODE (insn));
514           PATTERN (copy) = copy_for_inline (PATTERN (insn));
515           INSN_CODE (copy) = -1;
516           LOG_LINKS (copy) = NULL;
517           RTX_INTEGRATED_P (copy) = RTX_INTEGRATED_P (insn);
518           break;
519
520         case CODE_LABEL:
521           copy = label_map[CODE_LABEL_NUMBER (insn)];
522           LABEL_NAME (copy) = LABEL_NAME (insn);
523           break;
524
525         case BARRIER:
526           copy = rtx_alloc (BARRIER);
527           break;
528
529         default:
530           abort ();
531         }
532       INSN_UID (copy) = INSN_UID (insn);
533       insn_map[INSN_UID (insn)] = copy;
534       NEXT_INSN (last_insn) = copy;
535       PREV_INSN (copy) = last_insn;
536       last_insn = copy;
537     }
538
539   /* Now copy the REG_NOTES.  */
540   for (insn = NEXT_INSN (get_insns ()); insn; insn = NEXT_INSN (insn))
541     if (GET_RTX_CLASS (GET_CODE (insn)) == 'i'
542         && insn_map[INSN_UID(insn)])
543       REG_NOTES (insn_map[INSN_UID (insn)])
544         = copy_for_inline (REG_NOTES (insn));
545
546   NEXT_INSN (last_insn) = NULL;
547
548   finish_inline (fndecl, head);
549
550   set_new_first_and_last_insn (first_insn, last_insn);
551 }
552
553 /* Make a copy of the entire tree of blocks BLOCK, and return it.  */
554
555 static tree
556 copy_decl_tree (block)
557      tree block;
558 {
559   tree t, vars, subblocks;
560
561   vars = copy_list (BLOCK_VARS (block));
562   subblocks = 0;
563
564   /* Process all subblocks.  */
565   for (t = BLOCK_SUBBLOCKS (block); t; t = TREE_CHAIN (t))
566     {
567       tree copy = copy_decl_tree (t);
568       TREE_CHAIN (copy) = subblocks;
569       subblocks = copy;
570     }
571
572   t = copy_node (block);
573   BLOCK_VARS (t) = vars;
574   BLOCK_SUBBLOCKS (t) = nreverse (subblocks);
575   return t;
576 }
577
578 /* Copy DECL_RTLs in all decls in the given BLOCK node.  */
579
580 static void
581 copy_decl_rtls (block)
582      tree block;
583 {
584   tree t;
585
586   for (t = BLOCK_VARS (block); t; t = TREE_CHAIN (t))
587     if (DECL_RTL (t) && GET_CODE (DECL_RTL (t)) == MEM)
588       DECL_RTL (t) = copy_for_inline (DECL_RTL (t));
589
590   /* Process all subblocks.  */
591   for (t = BLOCK_SUBBLOCKS (block); t; t = TREE_CHAIN (t))
592     copy_decl_rtls (t);
593 }
594
595 /* Make the insns and PARM_DECLs of the current function permanent
596    and record other information in DECL_SAVED_INSNS to allow inlining
597    of this function in subsequent calls.
598
599    This routine need not copy any insns because we are not going
600    to immediately compile the insns in the insn chain.  There
601    are two cases when we would compile the insns for FNDECL:
602    (1) when FNDECL is expanded inline, and (2) when FNDECL needs to
603    be output at the end of other compilation, because somebody took
604    its address.  In the first case, the insns of FNDECL are copied
605    as it is expanded inline, so FNDECL's saved insns are not
606    modified.  In the second case, FNDECL is used for the last time,
607    so modifying the rtl is not a problem.
608
609    ??? Actually, we do not verify that FNDECL is not inline expanded
610    by other functions which must also be written down at the end
611    of compilation.  We could set flag_no_inline to nonzero when
612    the time comes to write down such functions.  */
613
614 void
615 save_for_inline_nocopy (fndecl)
616      tree fndecl;
617 {
618   rtx insn;
619   rtx head, copy;
620   tree parms;
621   int max_labelno, min_labelno, i, len;
622   int max_reg;
623   int max_uid;
624   rtx first_nonparm_insn;
625   int function_flags;
626
627   /* Set up PARMDECL_MAP which maps pseudo-reg number to its PARM_DECL.
628      Later we set TREE_READONLY to 0 if the parm is modified inside the fn.
629      Also set up ARG_VECTOR, which holds the unmodified DECL_RTX values
630      for the parms, prior to elimination of virtual registers.
631      These values are needed for substituting parms properly.  */
632
633   max_parm_reg = max_parm_reg_num ();
634   parmdecl_map = (tree *) alloca (max_parm_reg * sizeof (tree));
635
636   /* Make and emit a return-label if we have not already done so.  */
637
638   if (return_label == 0)
639     {
640       return_label = gen_label_rtx ();
641       emit_label (return_label);
642     }
643
644   head = initialize_for_inline (fndecl, get_first_label_num (),
645                                 max_label_num (), max_reg_num (), 0);
646
647   /* If there are insns that copy parms from the stack into pseudo registers,
648      those insns are not copied.  `expand_inline_function' must
649      emit the correct code to handle such things.  */
650
651   insn = get_insns ();
652   if (GET_CODE (insn) != NOTE)
653     abort ();
654
655   /* Get the insn which signals the end of parameter setup code.  */
656   first_nonparm_insn = get_first_nonparm_insn ();
657
658   /* Now just scan the chain of insns to see what happens to our
659      PARM_DECLs.  If a PARM_DECL is used but never modified, we
660      can substitute its rtl directly when expanding inline (and
661      perform constant folding when its incoming value is constant).
662      Otherwise, we have to copy its value into a new register and track
663      the new register's life.  */
664
665   for (insn = NEXT_INSN (insn); insn; insn = NEXT_INSN (insn))
666     {
667       if (insn == first_nonparm_insn)
668         in_nonparm_insns = 1;
669
670       if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
671         {
672           if (current_function_uses_const_pool)
673             {
674               /* Replace any constant pool references with the actual constant.
675                  We will put the constant back if we need to write the
676                  function out after all.  */
677               save_constants (&PATTERN (insn));
678               if (REG_NOTES (insn))
679                 save_constants (&REG_NOTES (insn));
680             }
681
682           /* Record what interesting things happen to our parameters.  */
683           note_stores (PATTERN (insn), note_modified_parmregs);
684         }
685     }
686
687   /* We have now allocated all that needs to be allocated permanently
688      on the rtx obstack.  Set our high-water mark, so that we
689      can free the rest of this when the time comes.  */
690
691   preserve_data ();
692
693   finish_inline (fndecl, head);
694 }
695 \f
696 /* Given PX, a pointer into an insn, search for references to the constant
697    pool.  Replace each with a CONST that has the mode of the original
698    constant, contains the constant, and has RTX_INTEGRATED_P set.
699    Similarly, constant pool addresses not enclosed in a MEM are replaced
700    with an ADDRESS rtx which also gives the constant, mode, and has
701    RTX_INTEGRATED_P set.  */
702
703 static void
704 save_constants (px)
705      rtx *px;
706 {
707   rtx x;
708   int i, j;
709
710  again:
711   x = *px;
712
713   /* If this is a CONST_DOUBLE, don't try to fix things up in 
714      CONST_DOUBLE_MEM, because this is an infinite recursion.  */
715   if (GET_CODE (x) == CONST_DOUBLE)
716     return;
717   else if (GET_CODE (x) == MEM && GET_CODE (XEXP (x, 0)) == SYMBOL_REF
718            && CONSTANT_POOL_ADDRESS_P (XEXP (x,0)))
719     {
720       enum machine_mode const_mode = get_pool_mode (XEXP (x, 0));
721       rtx new = gen_rtx (CONST, const_mode, get_pool_constant (XEXP (x, 0)));
722       RTX_INTEGRATED_P (new) = 1;
723
724       /* If the MEM was in a different mode than the constant (perhaps we
725          were only looking at the low-order part), surround it with a 
726          SUBREG so we can save both modes.  */
727
728       if (GET_MODE (x) != const_mode)
729         {
730           new = gen_rtx (SUBREG, GET_MODE (x), new, 0);
731           RTX_INTEGRATED_P (new) = 1;
732         }
733
734       *px = new;
735       save_constants (&XEXP (*px, 0));
736     }
737   else if (GET_CODE (x) == SYMBOL_REF
738            && CONSTANT_POOL_ADDRESS_P (x))
739     {
740       *px = gen_rtx (ADDRESS, get_pool_mode (x), get_pool_constant (x));
741       save_constants (&XEXP (*px, 0));
742       RTX_INTEGRATED_P (*px) = 1;
743     }
744
745   else
746     {
747       char *fmt = GET_RTX_FORMAT (GET_CODE (x));
748       int len = GET_RTX_LENGTH (GET_CODE (x));
749
750       for (i = len-1; i >= 0; i--)
751         {
752           switch (fmt[i])
753             {
754             case 'E':
755               for (j = 0; j < XVECLEN (x, i); j++)
756                 save_constants (&XVECEXP (x, i, j));
757               break;
758
759             case 'e':
760               if (XEXP (x, i) == 0)
761                 continue;
762               if (i == 0)
763                 {
764                   /* Hack tail-recursion here.  */
765                   px = &XEXP (x, 0);
766                   goto again;
767                 }
768               save_constants (&XEXP (x, i));
769               break;
770             }
771         }
772     }
773 }
774 \f
775 /* Note whether a parameter is modified or not.  */
776
777 static void
778 note_modified_parmregs (reg, x)
779      rtx reg;
780      rtx x;
781 {
782   if (GET_CODE (reg) == REG && in_nonparm_insns
783       && REGNO (reg) < max_parm_reg
784       && REGNO (reg) >= FIRST_PSEUDO_REGISTER
785       && parmdecl_map[REGNO (reg)] != 0)
786     TREE_READONLY (parmdecl_map[REGNO (reg)]) = 0;
787 }
788
789 /* Copy the rtx ORIG recursively, replacing pseudo-regs and labels
790    according to `reg_map' and `label_map'.  The original rtl insns
791    will be saved for inlining; this is used to make a copy
792    which is used to finish compiling the inline function itself.
793
794    If we find a "saved" constant pool entry, one which was replaced with
795    the value of the constant, convert it back to a constant pool entry.
796    Since the pool wasn't touched, this should simply restore the old
797    address.
798
799    All other kinds of rtx are copied except those that can never be
800    changed during compilation.  */
801
802 static rtx
803 copy_for_inline (orig)
804      rtx orig;
805 {
806   register rtx x = orig;
807   register int i;
808   register enum rtx_code code;
809   register char *format_ptr;
810
811   if (x == 0)
812     return x;
813
814   code = GET_CODE (x);
815
816   /* These types may be freely shared.  */
817
818   switch (code)
819     {
820     case QUEUED:
821     case CONST_INT:
822     case SYMBOL_REF:
823     case PC:
824     case CC0:
825       return x;
826
827     case CONST_DOUBLE:
828       /* We have to make a new CONST_DOUBLE to ensure that we account for
829          it correctly.  Using the old CONST_DOUBLE_MEM data is wrong.  */
830       if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
831         {
832           REAL_VALUE_TYPE d;
833
834           REAL_VALUE_FROM_CONST_DOUBLE (d, x);
835           return immed_real_const_1 (d, GET_MODE (x));
836         }
837       else
838         return immed_double_const (CONST_DOUBLE_LOW (x), CONST_DOUBLE_HIGH (x),
839                                    VOIDmode);
840
841     case CONST:
842       /* Get constant pool entry for constant in the pool.  */
843       if (RTX_INTEGRATED_P (x))
844         return validize_mem (force_const_mem (GET_MODE (x),
845                                               copy_for_inline (XEXP (x, 0))));
846       break;
847
848     case SUBREG:
849       /* Get constant pool entry, but access in different mode.  */
850       if (RTX_INTEGRATED_P (x))
851         {
852           rtx new
853             = force_const_mem (GET_MODE (SUBREG_REG (x)),
854                                copy_for_inline (XEXP (SUBREG_REG (x), 0)));
855
856           PUT_MODE (new, GET_MODE (x));
857           return validize_mem (new);
858         }
859       break;
860
861     case ADDRESS:
862       /* If not special for constant pool error.  Else get constant pool
863          address.  */
864       if (! RTX_INTEGRATED_P (x))
865         abort ();
866
867       return XEXP (force_const_mem (GET_MODE (x),
868                                     copy_for_inline (XEXP (x, 0))), 0);
869
870     case ASM_OPERANDS:
871       /* If a single asm insn contains multiple output operands
872          then it contains multiple ASM_OPERANDS rtx's that share operand 3.
873          We must make sure that the copied insn continues to share it.  */
874       if (orig_asm_operands_vector == XVEC (orig, 3))
875         {
876           x = rtx_alloc (ASM_OPERANDS);
877           XSTR (x, 0) = XSTR (orig, 0);
878           XSTR (x, 1) = XSTR (orig, 1);
879           XINT (x, 2) = XINT (orig, 2);
880           XVEC (x, 3) = copy_asm_operands_vector;
881           XVEC (x, 4) = copy_asm_constraints_vector;
882           XSTR (x, 5) = XSTR (orig, 5);
883           XINT (x, 6) = XINT (orig, 6);
884           return x;
885         }
886       break;
887
888     case MEM:
889       /* A MEM is usually allowed to be shared if its address is constant
890          or is a constant plus one of the special registers.
891
892          We do not allow sharing of addresses that are either a special
893          register or the sum of a constant and a special register because
894          it is possible for unshare_all_rtl to copy the address, into memory
895          that won't be saved.  Although the MEM can safely be shared, and
896          won't be copied there, the address itself cannot be shared, and may
897          need to be copied. 
898
899          There are also two exceptions with constants: The first is if the
900          constant is a LABEL_REF or the sum of the LABEL_REF
901          and an integer.  This case can happen if we have an inline
902          function that supplies a constant operand to the call of another
903          inline function that uses it in a switch statement.  In this case,
904          we will be replacing the LABEL_REF, so we have to replace this MEM
905          as well.
906
907          The second case is if we have a (const (plus (address ..) ...)).
908          In that case we need to put back the address of the constant pool
909          entry.  */
910
911       if (CONSTANT_ADDRESS_P (XEXP (x, 0))
912           && GET_CODE (XEXP (x, 0)) != LABEL_REF
913           && ! (GET_CODE (XEXP (x, 0)) == CONST
914                 && (GET_CODE (XEXP (XEXP (x, 0), 0)) == PLUS
915                     && ((GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 0))
916                         == LABEL_REF)
917                         || (GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 0))
918                             == ADDRESS)))))
919         return x;
920       break;
921
922     case LABEL_REF:
923       {
924         /* Must point to the new insn.  */
925         return gen_rtx (LABEL_REF, GET_MODE (orig),
926                         label_map[CODE_LABEL_NUMBER (XEXP (orig, 0))]);
927       }
928
929     case REG:
930       if (REGNO (x) > LAST_VIRTUAL_REGISTER)
931         return reg_map [REGNO (x)];
932       else
933         return x;
934
935     case SET:
936       /* If a parm that gets modified lives in a pseudo-reg,
937          clear its TREE_READONLY to prevent certain optimizations.  */
938       {
939         rtx dest = SET_DEST (x);
940
941         while (GET_CODE (dest) == STRICT_LOW_PART
942                || GET_CODE (dest) == ZERO_EXTRACT
943                || GET_CODE (dest) == SUBREG)
944           dest = XEXP (dest, 0);
945
946         if (GET_CODE (dest) == REG
947             && REGNO (dest) < max_parm_reg
948             && REGNO (dest) >= FIRST_PSEUDO_REGISTER
949             && parmdecl_map[REGNO (dest)] != 0
950             /* The insn to load an arg pseudo from a stack slot
951                does not count as modifying it.  */
952             && in_nonparm_insns)
953           TREE_READONLY (parmdecl_map[REGNO (dest)]) = 0;
954       }
955       break;
956
957 #if 0 /* This is a good idea, but here is the wrong place for it.  */
958       /* Arrange that CONST_INTs always appear as the second operand
959          if they appear, and that `frame_pointer_rtx' or `arg_pointer_rtx'
960          always appear as the first.  */
961     case PLUS:
962       if (GET_CODE (XEXP (x, 0)) == CONST_INT
963           || (XEXP (x, 1) == frame_pointer_rtx
964               || (ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
965                   && XEXP (x, 1) == arg_pointer_rtx)))
966         {
967           rtx t = XEXP (x, 0);
968           XEXP (x, 0) = XEXP (x, 1);
969           XEXP (x, 1) = t;
970         }
971       break;
972 #endif
973     }
974
975   /* Replace this rtx with a copy of itself.  */
976
977   x = rtx_alloc (code);
978   bcopy (orig, x, (sizeof (*x) - sizeof (x->fld)
979                    + sizeof (x->fld[0]) * GET_RTX_LENGTH (code)));
980
981   /* Now scan the subexpressions recursively.
982      We can store any replaced subexpressions directly into X
983      since we know X is not shared!  Any vectors in X
984      must be copied if X was copied.  */
985
986   format_ptr = GET_RTX_FORMAT (code);
987
988   for (i = 0; i < GET_RTX_LENGTH (code); i++)
989     {
990       switch (*format_ptr++)
991         {
992         case 'e':
993           XEXP (x, i) = copy_for_inline (XEXP (x, i));
994           break;
995
996         case 'u':
997           /* Change any references to old-insns to point to the
998              corresponding copied insns.  */
999           XEXP (x, i) = insn_map[INSN_UID (XEXP (x, i))];
1000           break;
1001
1002         case 'E':
1003           if (XVEC (x, i) != NULL && XVECLEN (x, i) != 0)
1004             {
1005               register int j;
1006
1007               XVEC (x, i) = gen_rtvec_v (XVECLEN (x, i), &XVECEXP (x, i, 0));
1008               for (j = 0; j < XVECLEN (x, i); j++)
1009                 XVECEXP (x, i, j)
1010                   = copy_for_inline (XVECEXP (x, i, j));
1011             }
1012           break;
1013         }
1014     }
1015
1016   if (code == ASM_OPERANDS && orig_asm_operands_vector == 0)
1017     {
1018       orig_asm_operands_vector = XVEC (orig, 3);
1019       copy_asm_operands_vector = XVEC (x, 3);
1020       copy_asm_constraints_vector = XVEC (x, 4);
1021     }
1022
1023   return x;
1024 }
1025
1026 /* Unfortunately, we need a global copy of const_equiv map for communication
1027    with a function called from note_stores.  Be *very* careful that this
1028    is used properly in the presence of recursion.  */
1029
1030 rtx *global_const_equiv_map;
1031 \f
1032 #define FIXED_BASE_PLUS_P(X) \
1033   (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 1)) == CONST_INT  \
1034    && GET_CODE (XEXP (X, 0)) == REG                             \
1035    && REGNO (XEXP (X, 0)) >= FIRST_VIRTUAL_REGISTER             \
1036    && REGNO (XEXP (X, 0)) < LAST_VIRTUAL_REGISTER)
1037
1038 /* Integrate the procedure defined by FNDECL.  Note that this function
1039    may wind up calling itself.  Since the static variables are not
1040    reentrant, we do not assign them until after the possibility
1041    or recursion is eliminated.
1042
1043    If IGNORE is nonzero, do not produce a value.
1044    Otherwise store the value in TARGET if it is nonzero and that is convenient.
1045
1046    Value is:
1047    (rtx)-1 if we could not substitute the function
1048    0 if we substituted it and it does not produce a value
1049    else an rtx for where the value is stored.  */
1050
1051 rtx
1052 expand_inline_function (fndecl, parms, target, ignore, type, structure_value_addr)
1053      tree fndecl, parms;
1054      rtx target;
1055      int ignore;
1056      tree type;
1057      rtx structure_value_addr;
1058 {
1059   tree formal, actual;
1060   rtx header = DECL_SAVED_INSNS (fndecl);
1061   rtx insns = FIRST_FUNCTION_INSN (header);
1062   rtx parm_insns = FIRST_PARM_INSN (header);
1063   tree *arg_trees;
1064   rtx *arg_vals;
1065   rtx insn;
1066   int max_regno;
1067   register int i;
1068   int min_labelno = FIRST_LABELNO (header);
1069   int max_labelno = LAST_LABELNO (header);
1070   int nargs;
1071   rtx local_return_label = 0;
1072   rtx loc;
1073   rtx temp;
1074   struct inline_remap *map;
1075   rtx cc0_insn = 0;
1076   rtvec arg_vector = ORIGINAL_ARG_VECTOR (header);
1077
1078   /* Allow for equivalences of the pseudos we make for virtual fp and ap.  */
1079   max_regno = MAX_REGNUM (header) + 3;
1080   if (max_regno < FIRST_PSEUDO_REGISTER)
1081     abort ();
1082
1083   nargs = list_length (DECL_ARGUMENTS (fndecl));
1084
1085   /* We expect PARMS to have the right length; don't crash if not.  */
1086   if (list_length (parms) != nargs)
1087     return (rtx)-1;
1088   /* Also check that the parms type match.  Since the appropriate
1089      conversions or default promotions have already been applied,
1090      the machine modes should match exactly.  */
1091   for (formal = DECL_ARGUMENTS (fndecl),
1092        actual = parms;
1093        formal;
1094        formal = TREE_CHAIN (formal),
1095        actual = TREE_CHAIN (actual))
1096     {
1097       tree arg = TREE_VALUE (actual);
1098       enum machine_mode mode = TYPE_MODE (DECL_ARG_TYPE (formal));
1099       if (mode != TYPE_MODE (TREE_TYPE (arg)))
1100         return (rtx)-1;
1101       /* If they are block mode, the types should match exactly.
1102          They don't match exactly if TREE_TYPE (FORMAL) == ERROR_MARK_NODE,
1103          which could happen if the parameter has incomplete type.  */
1104       if (mode == BLKmode && TREE_TYPE (arg) != TREE_TYPE (formal))
1105         return (rtx)-1;
1106     }
1107
1108   /* Make a binding contour to keep inline cleanups called at
1109      outer function-scope level from looking like they are shadowing
1110      parameter declarations.  */
1111   pushlevel (0);
1112
1113   /* Make a fresh binding contour that we can easily remove.  */
1114   pushlevel (0);
1115   expand_start_bindings (0);
1116   if (GET_CODE (parm_insns) == NOTE
1117       && NOTE_LINE_NUMBER (parm_insns) > 0)
1118     emit_note (NOTE_SOURCE_FILE (parm_insns), NOTE_LINE_NUMBER (parm_insns));
1119
1120   /* Expand the function arguments.  Do this first so that any
1121      new registers get created before we allocate the maps.  */
1122
1123   arg_vals = (rtx *) alloca (nargs * sizeof (rtx));
1124   arg_trees = (tree *) alloca (nargs * sizeof (tree));
1125
1126   for (formal = DECL_ARGUMENTS (fndecl), actual = parms, i = 0;
1127        formal;
1128        formal = TREE_CHAIN (formal), actual = TREE_CHAIN (actual), i++)
1129     {
1130       /* Actual parameter, converted to the type of the argument within the
1131          function.  */
1132       tree arg = convert (TREE_TYPE (formal), TREE_VALUE (actual));
1133       /* Mode of the variable used within the function.  */
1134       enum machine_mode mode = TYPE_MODE (TREE_TYPE (formal));
1135       /* Where parameter is located in the function.  */
1136       rtx copy;
1137
1138       emit_note (DECL_SOURCE_FILE (formal), DECL_SOURCE_LINE (formal));
1139
1140       arg_trees[i] = arg;
1141       loc = RTVEC_ELT (arg_vector, i);
1142
1143       /* If this is an object passed by invisible reference, we copy the
1144          object into a stack slot and save its address.  If this will go
1145          into memory, we do nothing now.  Otherwise, we just expand the
1146          argument.  */
1147       if (GET_CODE (loc) == MEM && GET_CODE (XEXP (loc, 0)) == REG
1148           && REGNO (XEXP (loc, 0)) > LAST_VIRTUAL_REGISTER)
1149         {
1150           enum machine_mode mode = TYPE_MODE (TREE_TYPE (arg));
1151           rtx stack_slot = assign_stack_temp (mode, int_size_in_bytes (TREE_TYPE (arg)), 1);
1152
1153           store_expr (arg, stack_slot, 0);
1154
1155           arg_vals[i] = XEXP (stack_slot, 0);
1156         }
1157       else if (GET_CODE (loc) != MEM)
1158         arg_vals[i] = expand_expr (arg, 0, mode, EXPAND_SUM);
1159       else
1160         arg_vals[i] = 0;
1161
1162       if (arg_vals[i] != 0
1163           && (! TREE_READONLY (formal)
1164               /* If the parameter is not read-only, copy our argument through
1165                  a register.  Also, we cannot use ARG_VALS[I] if it overlaps
1166                  TARGET in any way.  In the inline function, they will likely
1167                  be two different pseudos, and `safe_from_p' will make all
1168                  sorts of smart assumptions about their not conflicting.
1169                  But if ARG_VALS[I] overlaps TARGET, these assumptions are
1170                  wrong, so put ARG_VALS[I] into a fresh register.  */
1171               || (target != 0
1172                   && (GET_CODE (arg_vals[i]) == REG
1173                       || GET_CODE (arg_vals[i]) == SUBREG
1174                       || GET_CODE (arg_vals[i]) == MEM)
1175                   && reg_overlap_mentioned_p (arg_vals[i], target))))
1176         arg_vals[i] = copy_to_mode_reg (mode, arg_vals[i]);
1177     }
1178         
1179   /* Allocate the structures we use to remap things.  */
1180
1181   map = (struct inline_remap *) alloca (sizeof (struct inline_remap));
1182   map->fndecl = fndecl;
1183
1184   map->reg_map = (rtx *) alloca (max_regno * sizeof (rtx));
1185   bzero (map->reg_map, max_regno * sizeof (rtx));
1186
1187   map->label_map = (rtx *)alloca ((max_labelno - min_labelno) * sizeof (rtx));
1188   map->label_map -= min_labelno;
1189
1190   map->insn_map = (rtx *) alloca (INSN_UID (header) * sizeof (rtx));
1191   bzero (map->insn_map, INSN_UID (header) * sizeof (rtx));
1192   map->min_insnno = 0;
1193   map->max_insnno = INSN_UID (header);
1194
1195   /* const_equiv_map maps pseudos in our routine to constants, so it needs to
1196      be large enough for all our pseudos.  This is the number we are currently
1197      using plus the number in the called routine, plus 15 for each arg,
1198      five to compute the virtual frame pointer, and five for the return value.
1199      This should be enough for most cases.  We do not reference entries
1200      outside the range of the map.
1201
1202      ??? These numbers are quite arbitrary and were obtained by
1203      experimentation.  At some point, we should try to allocate the
1204      table after all the parameters are set up so we an more accurately
1205      estimate the number of pseudos we will need.  */
1206
1207   map->const_equiv_map_size
1208     = max_reg_num () + (max_regno - FIRST_PSEUDO_REGISTER) + 15 * nargs + 10;
1209
1210   map->const_equiv_map
1211     = (rtx *)alloca (map->const_equiv_map_size * sizeof (rtx));
1212   bzero (map->const_equiv_map, map->const_equiv_map_size * sizeof (rtx));
1213
1214   map->const_age_map
1215     = (unsigned *)alloca (map->const_equiv_map_size * sizeof (unsigned));
1216   bzero (map->const_age_map, map->const_equiv_map_size * sizeof (unsigned));
1217   map->const_age = 0;
1218
1219   /* Record the current insn in case we have to set up pointers to frame
1220      and argument memory blocks.  */
1221   map->insns_at_start = get_last_insn ();
1222
1223   /* Update the outgoing argument size to allow for those in the inlined
1224      function.  */
1225   if (OUTGOING_ARGS_SIZE (header) > current_function_outgoing_args_size)
1226     current_function_outgoing_args_size = OUTGOING_ARGS_SIZE (header);
1227
1228   /* If the inline function needs to make PIC references, that means
1229      that this function's PIC offset table must be used.  */
1230   if (FUNCTION_FLAGS (header) & FUNCTION_FLAGS_USES_PIC_OFFSET_TABLE)
1231     current_function_uses_pic_offset_table = 1;
1232
1233   /* Process each argument.  For each, set up things so that the function's
1234      reference to the argument will refer to the argument being passed.
1235      We only replace REG with REG here.  Any simplifications are done
1236      via const_equiv_map.
1237
1238      We make two passes:  In the first, we deal with parameters that will
1239      be placed into registers, since we need to ensure that the allocated
1240      register number fits in const_equiv_map.  Then we store all non-register
1241      parameters into their memory location.  */
1242
1243   for (i = 0; i < nargs; i++)
1244     {
1245       rtx copy = arg_vals[i];
1246
1247       loc = RTVEC_ELT (arg_vector, i);
1248
1249       /* There are three cases, each handled separately.  */
1250       if (GET_CODE (loc) == MEM && GET_CODE (XEXP (loc, 0)) == REG
1251           && REGNO (XEXP (loc, 0)) > LAST_VIRTUAL_REGISTER)
1252         {
1253           /* This must be an object passed by invisible reference (it could
1254              also be a variable-sized object, but we forbid inlining functions
1255              with variable-sized arguments).  COPY is the address of the
1256              actual value (this computation will cause it to be copied).  We
1257              map that address for the register, noting the actual address as
1258              an equivalent in case it can be substituted into the insns.  */
1259
1260           if (GET_CODE (copy) != REG)
1261             {
1262               temp = copy_addr_to_reg (copy);
1263               if (CONSTANT_P (copy) || FIXED_BASE_PLUS_P (copy))
1264                 {
1265                   map->const_equiv_map[REGNO (temp)] = copy;
1266                   map->const_age_map[REGNO (temp)] = CONST_AGE_PARM;
1267                 }
1268               copy = temp;
1269             }
1270           map->reg_map[REGNO (XEXP (loc, 0))] = copy;
1271         }
1272       else if (GET_CODE (loc) == MEM)
1273         {
1274           /* This is the case of a parameter that lives in memory.
1275              It will live in the block we allocate in the called routine's
1276              frame that simulates the incoming argument area.  Do nothing
1277              now; we will call store_expr later.  */
1278           ;
1279         }
1280       else if (GET_CODE (loc) == REG)
1281         {
1282           /* This is the good case where the parameter is in a register.
1283              If it is read-only and our argument is a constant, set up the
1284              constant equivalence.  */
1285           if (GET_CODE (copy) != REG && GET_CODE (copy) != SUBREG)
1286             {
1287               temp = copy_to_mode_reg (GET_MODE (loc), copy);
1288               if (CONSTANT_P (copy) || FIXED_BASE_PLUS_P (copy))
1289                 {
1290                   map->const_equiv_map[REGNO (temp)] = copy;
1291                   map->const_age_map[REGNO (temp)] = CONST_AGE_PARM;
1292                 }
1293               copy = temp;
1294             }
1295           map->reg_map[REGNO (loc)] = copy;
1296         }
1297       else
1298         abort ();
1299
1300       /* Free any temporaries we made setting up this parameter.  */
1301       free_temp_slots ();
1302     }
1303
1304   /* Now do the parameters that will be placed in memory.  */
1305
1306   for (formal = DECL_ARGUMENTS (fndecl), i = 0;
1307        formal; formal = TREE_CHAIN (formal), i++)
1308     {
1309       rtx copy = arg_vals[i];
1310
1311       loc = RTVEC_ELT (arg_vector, i);
1312
1313       if (GET_CODE (loc) == MEM
1314           /* Exclude case handled above.  */
1315           && ! (GET_CODE (XEXP (loc, 0)) == REG
1316                 && REGNO (XEXP (loc, 0)) > LAST_VIRTUAL_REGISTER))
1317         {
1318           emit_note (DECL_SOURCE_FILE (formal), DECL_SOURCE_LINE (formal));
1319
1320           /* Compute the address in the area we reserved and store the
1321              value there.  */
1322           temp = copy_rtx_and_substitute (loc, map);
1323           subst_constants (&temp, 0, map);
1324           apply_change_group ();
1325           if (! memory_address_p (GET_MODE (temp), XEXP (temp, 0)))
1326             temp = change_address (temp, VOIDmode, XEXP (temp, 0));
1327           store_expr (arg_trees[i], temp, 0);
1328
1329           /* Free any temporaries we made setting up this parameter.  */
1330           free_temp_slots ();
1331         }
1332     }
1333
1334   /* Deal with the places that the function puts its result.
1335      We are driven by what is placed into DECL_RESULT.
1336
1337      Initially, we assume that we don't have anything special handling for
1338      REG_FUNCTION_RETURN_VALUE_P.  */
1339
1340   map->inline_target = 0;
1341   loc = DECL_RTL (DECL_RESULT (fndecl));
1342   if (TYPE_MODE (type) == VOIDmode)
1343     /* There is no return value to worry about.  */
1344     ;
1345   else if (GET_CODE (loc) == MEM)
1346     {
1347       if (! structure_value_addr || ! aggregate_value_p (DECL_RESULT (fndecl)))
1348         abort ();
1349   
1350       /* Pass the function the address in which to return a structure value.
1351          Note that a constructor can cause someone to call us with
1352          STRUCTURE_VALUE_ADDR, but the initialization takes place
1353          via the first parameter, rather than the struct return address.
1354
1355          We have two cases:  If the address is a simple register indirect,
1356          use the mapping mechanism to point that register to our structure
1357          return address.  Otherwise, store the structure return value into
1358          the place that it will be referenced from.  */
1359
1360       if (GET_CODE (XEXP (loc, 0)) == REG)
1361         {
1362           temp = force_reg (Pmode, structure_value_addr);
1363           map->reg_map[REGNO (XEXP (loc, 0))] = temp;
1364           if (CONSTANT_P (structure_value_addr)
1365               || (GET_CODE (structure_value_addr) == PLUS
1366                   && XEXP (structure_value_addr, 0) == virtual_stack_vars_rtx
1367                   && GET_CODE (XEXP (structure_value_addr, 1)) == CONST_INT))
1368             {
1369               map->const_equiv_map[REGNO (temp)] = structure_value_addr;
1370               map->const_age_map[REGNO (temp)] = CONST_AGE_PARM;
1371             }
1372         }
1373       else
1374         {
1375           temp = copy_rtx_and_substitute (loc, map);
1376           subst_constants (&temp, 0, map);
1377           apply_change_group ();
1378           emit_move_insn (temp, structure_value_addr);
1379         }
1380     }
1381   else if (ignore)
1382     /* We will ignore the result value, so don't look at its structure.
1383        Note that preparations for an aggregate return value
1384        do need to be made (above) even if it will be ignored.  */
1385     ;
1386   else if (GET_CODE (loc) == REG)
1387     {
1388       /* The function returns an object in a register and we use the return
1389          value.  Set up our target for remapping.  */
1390
1391       /* Machine mode function was declared to return.   */
1392       enum machine_mode departing_mode = TYPE_MODE (type);
1393       /* (Possibly wider) machine mode it actually computes
1394          (for the sake of callers that fail to declare it right).  */
1395       enum machine_mode arriving_mode
1396         = TYPE_MODE (TREE_TYPE (DECL_RESULT (fndecl)));
1397       rtx reg_to_map;
1398
1399       /* Don't use MEMs as direct targets because on some machines
1400          substituting a MEM for a REG makes invalid insns.
1401          Let the combiner substitute the MEM if that is valid.  */
1402       if (target == 0 || GET_CODE (target) != REG
1403           || GET_MODE (target) != departing_mode)
1404         target = gen_reg_rtx (departing_mode);
1405
1406       /* If function's value was promoted before return,
1407          avoid machine mode mismatch when we substitute INLINE_TARGET.
1408          But TARGET is what we will return to the caller.  */
1409       if (arriving_mode != departing_mode)
1410         reg_to_map = gen_rtx (SUBREG, arriving_mode, target, 0);
1411       else
1412         reg_to_map = target;
1413
1414       /* Usually, the result value is the machine's return register.
1415          Sometimes it may be a pseudo. Handle both cases.  */
1416       if (REG_FUNCTION_VALUE_P (loc))
1417         map->inline_target = reg_to_map;
1418       else
1419         map->reg_map[REGNO (loc)] = reg_to_map;
1420     }
1421
1422   /* Make new label equivalences for the labels in the called function.  */
1423   for (i = min_labelno; i < max_labelno; i++)
1424     map->label_map[i] = gen_label_rtx ();
1425
1426   /* Perform postincrements before actually calling the function.  */
1427   emit_queue ();
1428
1429   /* Clean up stack so that variables might have smaller offsets.  */
1430   do_pending_stack_adjust ();
1431
1432   /* Save a copy of the location of const_equiv_map for mark_stores, called
1433      via note_stores.  */
1434   global_const_equiv_map = map->const_equiv_map;
1435
1436   /* Now copy the insns one by one.  Do this in two passes, first the insns and
1437      then their REG_NOTES, just like save_for_inline.  */
1438
1439   /* This loop is very similar to the loop in copy_loop_body in unroll.c.  */
1440
1441   for (insn = insns; insn; insn = NEXT_INSN (insn))
1442     {
1443       rtx copy, pattern;
1444
1445       map->orig_asm_operands_vector = 0;
1446
1447       switch (GET_CODE (insn))
1448         {
1449         case INSN:
1450           pattern = PATTERN (insn);
1451           copy = 0;
1452           if (GET_CODE (pattern) == USE
1453               && GET_CODE (XEXP (pattern, 0)) == REG
1454               && REG_FUNCTION_VALUE_P (XEXP (pattern, 0)))
1455             /* The (USE (REG n)) at return from the function should
1456                be ignored since we are changing (REG n) into
1457                inline_target.  */
1458             break;
1459
1460           /* Ignore setting a function value that we don't want to use.  */
1461           if (map->inline_target == 0
1462               && GET_CODE (pattern) == SET
1463               && GET_CODE (SET_DEST (pattern)) == REG
1464               && REG_FUNCTION_VALUE_P (SET_DEST (pattern)))
1465             break;
1466
1467           copy = emit_insn (copy_rtx_and_substitute (pattern, map));
1468           /* REG_NOTES will be copied later.  */
1469
1470 #ifdef HAVE_cc0
1471           /* If this insn is setting CC0, it may need to look at
1472              the insn that uses CC0 to see what type of insn it is.
1473              In that case, the call to recog via validate_change will
1474              fail.  So don't substitute constants here.  Instead,
1475              do it when we emit the following insn.
1476
1477              For example, see the pyr.md file.  That machine has signed and
1478              unsigned compares.  The compare patterns must check the
1479              following branch insn to see which what kind of compare to
1480              emit.
1481
1482              If the previous insn set CC0, substitute constants on it as
1483              well.  */
1484           if (sets_cc0_p (PATTERN (copy)) != 0)
1485             cc0_insn = copy;
1486           else
1487             {
1488               if (cc0_insn)
1489                 try_constants (cc0_insn, map);
1490               cc0_insn = 0;
1491               try_constants (copy, map);
1492             }
1493 #else
1494           try_constants (copy, map);
1495 #endif
1496           break;
1497
1498         case JUMP_INSN:
1499           if (GET_CODE (PATTERN (insn)) == RETURN)
1500             {
1501               if (local_return_label == 0)
1502                 local_return_label = gen_label_rtx ();
1503               pattern = gen_jump (local_return_label);
1504             }
1505           else
1506             pattern = copy_rtx_and_substitute (PATTERN (insn), map);
1507
1508           copy = emit_jump_insn (pattern);
1509
1510 #ifdef HAVE_cc0
1511           if (cc0_insn)
1512             try_constants (cc0_insn, map);
1513           cc0_insn = 0;
1514 #endif
1515           try_constants (copy, map);
1516
1517           /* If this used to be a conditional jump insn but whose branch
1518              direction is now know, we must do something special.  */
1519           if (condjump_p (insn) && ! simplejump_p (insn) && map->last_pc_value)
1520             {
1521 #ifdef HAVE_cc0
1522               /* The previous insn set cc0 for us.  So delete it.  */
1523               delete_insn (PREV_INSN (copy));
1524 #endif
1525
1526               /* If this is now a no-op, delete it.  */
1527               if (map->last_pc_value == pc_rtx)
1528                 {
1529                   delete_insn (copy);
1530                   copy = 0;
1531                 }
1532               else
1533                 /* Otherwise, this is unconditional jump so we must put a
1534                    BARRIER after it.  We could do some dead code elimination
1535                    here, but jump.c will do it just as well.  */
1536                 emit_barrier ();
1537             }
1538           break;
1539
1540         case CALL_INSN:
1541           pattern = copy_rtx_and_substitute (PATTERN (insn), map);
1542           copy = emit_call_insn (pattern);
1543
1544 #ifdef HAVE_cc0
1545           if (cc0_insn)
1546             try_constants (cc0_insn, map);
1547           cc0_insn = 0;
1548 #endif
1549           try_constants (copy, map);
1550
1551           /* Be lazy and assume CALL_INSNs clobber all hard registers.  */
1552           for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1553             map->const_equiv_map[i] = 0;
1554           break;
1555
1556         case CODE_LABEL:
1557           copy = emit_label (map->label_map[CODE_LABEL_NUMBER (insn)]);
1558           map->const_age++;
1559           break;
1560
1561         case BARRIER:
1562           copy = emit_barrier ();
1563           break;
1564
1565         case NOTE:
1566           /* It is important to discard function-end and function-beg notes,
1567              so we have only one of each in the current function.
1568              Also, NOTE_INSN_DELETED notes aren't useful (save_for_inline
1569              deleted these in the copy used for continuing compilation,
1570              not the copy used for inlining).  */
1571           if (NOTE_LINE_NUMBER (insn) != NOTE_INSN_FUNCTION_END
1572               && NOTE_LINE_NUMBER (insn) != NOTE_INSN_FUNCTION_BEG
1573               && NOTE_LINE_NUMBER (insn) != NOTE_INSN_DELETED)
1574             copy = emit_note (NOTE_SOURCE_FILE (insn), NOTE_LINE_NUMBER (insn));
1575           else
1576             copy = 0;
1577           break;
1578
1579         default:
1580           abort ();
1581           break;
1582         }
1583
1584       if (copy)
1585         RTX_INTEGRATED_P (copy) = 1;
1586
1587       map->insn_map[INSN_UID (insn)] = copy;
1588     }
1589
1590   /* Now copy the REG_NOTES.  */
1591   for (insn = insns; insn; insn = NEXT_INSN (insn))
1592     if (GET_RTX_CLASS (GET_CODE (insn)) == 'i'
1593         && map->insn_map[INSN_UID (insn)])
1594       REG_NOTES (map->insn_map[INSN_UID (insn)])
1595         = copy_rtx_and_substitute (REG_NOTES (insn), map);
1596
1597   if (local_return_label)
1598     emit_label (local_return_label);
1599
1600   /* Make copies of the decls of the symbols in the inline function, so that
1601      the copies of the variables get declared in the current function.  Set
1602      up things so that lookup_static_chain knows that to interpret registers
1603      in SAVE_EXPRs for TYPE_SIZEs as local.  */
1604
1605   inline_function_decl = fndecl;
1606   integrate_decl_tree ((tree) ORIGINAL_DECL_INITIAL (header), 0, map, 0);
1607   integrate_parm_decls (DECL_ARGUMENTS (fndecl), map, arg_vector);
1608   inline_function_decl = 0;
1609
1610   /* End the scope containing the copied formal parameter variables.  */
1611
1612   expand_end_bindings (getdecls (), 1, 1);
1613   poplevel (1, 1, 0);
1614   poplevel (0, 0, 0);
1615   emit_line_note (input_filename, lineno);
1616
1617   if (structure_value_addr)
1618     return gen_rtx (MEM, TYPE_MODE (type),
1619                     memory_address (TYPE_MODE (type), structure_value_addr));
1620   return target;
1621 }
1622 \f
1623 /* Given a chain of PARM_DECLs, ARGS, copy each decl into a VAR_DECL,
1624    push all of those decls and give each one the corresponding home.  */
1625
1626 static void
1627 integrate_parm_decls (args, map, arg_vector)
1628      tree args;
1629      struct inline_remap *map;
1630      rtvec arg_vector;
1631 {
1632   register tree tail;
1633   register int i;
1634
1635   for (tail = args, i = 0; tail; tail = TREE_CHAIN (tail), i++)
1636     {
1637       register tree decl = build_decl (VAR_DECL, DECL_NAME (tail),
1638                                        TREE_TYPE (tail));
1639       rtx new_decl_rtl
1640         = copy_rtx_and_substitute (RTVEC_ELT (arg_vector, i), map);
1641
1642       /* These args would always appear unused, if not for this.  */
1643       TREE_USED (decl) = 1;
1644       /* Prevent warning for shadowing with these.  */
1645       DECL_FROM_INLINE (decl) = 1;
1646       pushdecl (decl);
1647       /* Fully instantiate the address with the equivalent form so that the
1648          debugging information contains the actual register, instead of the
1649          virtual register.   Do this by not passing an insn to
1650          subst_constants.  */
1651       subst_constants (&new_decl_rtl, 0, map);
1652       apply_change_group ();
1653       DECL_RTL (decl) = new_decl_rtl;
1654     }
1655 }
1656
1657 /* Given a BLOCK node LET, push decls and levels so as to construct in the
1658    current function a tree of contexts isomorphic to the one that is given.
1659
1660    LEVEL indicates how far down into the BLOCK tree is the node we are
1661    currently traversing.  It is always zero for the initial call.
1662
1663    MAP, if nonzero, is a pointer to a inline_remap map which indicates how
1664    registers used in the DECL_RTL field should be remapped.  If it is zero,
1665    no mapping is necessary.
1666
1667    FUNCTIONBODY indicates whether the top level block tree corresponds to
1668    a function body.  This is identical in meaning to the functionbody
1669    argument of poplevel.  */
1670
1671 static void
1672 integrate_decl_tree (let, level, map, functionbody)
1673      tree let;
1674      int level;
1675      struct inline_remap *map;
1676      int functionbody;
1677 {
1678   tree t, node;
1679
1680   pushlevel (0);
1681   
1682   for (t = BLOCK_VARS (let); t; t = TREE_CHAIN (t))
1683     {
1684       tree d = build_decl (TREE_CODE (t), DECL_NAME (t), TREE_TYPE (t));
1685       DECL_SOURCE_LINE (d) = DECL_SOURCE_LINE (t);
1686       DECL_SOURCE_FILE (d) = DECL_SOURCE_FILE (t);
1687       if (! functionbody && DECL_RTL (t) != 0)
1688         {
1689           DECL_RTL (d) = copy_rtx_and_substitute (DECL_RTL (t), map);
1690           /* Fully instantiate the address with the equivalent form so that the
1691              debugging information contains the actual register, instead of the
1692              virtual register.   Do this by not passing an insn to
1693              subst_constants.  */
1694           subst_constants (&DECL_RTL (d), 0, map);
1695           apply_change_group ();
1696         }
1697       else if (DECL_RTL (t))
1698         DECL_RTL (d) = copy_rtx (DECL_RTL (t));
1699       TREE_EXTERNAL (d) = TREE_EXTERNAL (t);
1700       TREE_STATIC (d) = TREE_STATIC (t);
1701       TREE_PUBLIC (d) = TREE_PUBLIC (t);
1702       TREE_CONSTANT (d) = TREE_CONSTANT (t);
1703       TREE_ADDRESSABLE (d) = TREE_ADDRESSABLE (t);
1704       TREE_READONLY (d) = TREE_READONLY (t);
1705       TREE_SIDE_EFFECTS (d) = TREE_SIDE_EFFECTS (t);
1706       /* These args would always appear unused, if not for this.  */
1707       TREE_USED (d) = 1;
1708       /* Prevent warning for shadowing with these.  */
1709       DECL_FROM_INLINE (d) = 1;
1710       pushdecl (d);
1711     }
1712
1713   for (t = BLOCK_SUBBLOCKS (let); t; t = TREE_CHAIN (t))
1714     integrate_decl_tree (t, level + 1, map, functionbody);
1715
1716   node = poplevel (level > 0, 0, level == 0 && functionbody);
1717   if (node)
1718     TREE_USED (node) = TREE_USED (let);
1719 }
1720 \f
1721 /* Create a new copy of an rtx.
1722    Recursively copies the operands of the rtx,
1723    except for those few rtx codes that are sharable.
1724
1725    We always return an rtx that is similar to that incoming rtx, with the
1726    exception of possibly changing a REG to a SUBREG or vice versa.  No
1727    rtl is ever emitted.
1728
1729    Handle constants that need to be placed in the constant pool by
1730    calling `force_const_mem'.  */
1731
1732 rtx
1733 copy_rtx_and_substitute (orig, map)
1734      register rtx orig;
1735      struct inline_remap *map;
1736 {
1737   register rtx copy, temp;
1738   register int i, j;
1739   register RTX_CODE code;
1740   register enum machine_mode mode;
1741   register char *format_ptr;
1742   int regno;
1743
1744   if (orig == 0)
1745     return 0;
1746
1747   code = GET_CODE (orig);
1748   mode = GET_MODE (orig);
1749
1750   switch (code)
1751     {
1752     case REG:
1753       /* If the stack pointer register shows up, it must be part of
1754          stack-adjustments (*not* because we eliminated the frame pointer!).
1755          Small hard registers are returned as-is.  Pseudo-registers
1756          go through their `reg_map'.  */
1757       regno = REGNO (orig);
1758       if (regno <= LAST_VIRTUAL_REGISTER)
1759         {
1760           /* Some hard registers are also mapped,
1761              but others are not translated.  */
1762           if (map->reg_map[regno] != 0)
1763             return map->reg_map[regno];
1764
1765           /* If this is the virtual frame pointer, make space in current
1766              function's stack frame for the stack frame of the inline function.
1767
1768              Copy the address of this area into a pseudo.  Map
1769              virtual_stack_vars_rtx to this pseudo and set up a constant
1770              equivalence for it to be the address.  This will substitute the
1771              address into insns where it can be substituted and use the new
1772              pseudo where it can't.  */
1773           if (regno == VIRTUAL_STACK_VARS_REGNUM)
1774             {
1775               rtx loc, seq;
1776               int size = DECL_FRAME_SIZE (map->fndecl);
1777               int rounded;
1778
1779               start_sequence ();
1780               loc = assign_stack_temp (BLKmode, size, 1);
1781               loc = XEXP (loc, 0);
1782 #ifdef FRAME_GROWS_DOWNWARD
1783               /* In this case, virtual_stack_vars_rtx points to one byte
1784                  higher than the top of the frame area.  So compute the offset
1785                  to one byte higher than our substitute frame.
1786                  Keep the fake frame pointer aligned like a real one.  */
1787               rounded = CEIL_ROUND (size, BIGGEST_ALIGNMENT / BITS_PER_UNIT);
1788               loc = plus_constant (loc, rounded);
1789 #endif
1790               map->reg_map[regno] = temp = force_operand (loc, 0);
1791               map->const_equiv_map[REGNO (temp)] = loc;
1792               map->const_age_map[REGNO (temp)] = CONST_AGE_PARM;
1793
1794               seq = gen_sequence ();
1795               end_sequence ();
1796               emit_insn_after (seq, map->insns_at_start);
1797               return temp;
1798             }
1799           else if (regno == VIRTUAL_INCOMING_ARGS_REGNUM)
1800             {
1801               /* Do the same for a block to contain any arguments referenced
1802                  in memory. */
1803               rtx loc, seq;
1804               int size = FUNCTION_ARGS_SIZE (DECL_SAVED_INSNS (map->fndecl));
1805
1806               start_sequence ();
1807               loc = assign_stack_temp (BLKmode, size, 1);
1808               loc = XEXP (loc, 0);
1809               map->reg_map[regno] = temp = force_operand (loc, 0);
1810               map->const_equiv_map[REGNO (temp)] = loc;
1811               map->const_age_map[REGNO (temp)] = CONST_AGE_PARM;
1812
1813               seq = gen_sequence ();
1814               end_sequence ();
1815               emit_insn_after (seq, map->insns_at_start);
1816               return temp;
1817             }
1818           else if (REG_FUNCTION_VALUE_P (orig))
1819             {
1820               /* This is a reference to the function return value.  If
1821                  the function doesn't have a return value, error.  If the
1822                  mode doesn't agree, make a SUBREG.  */
1823               if (map->inline_target == 0)
1824                 /* Must be unrolling loops or replicating code if we
1825                    reach here, so return the register unchanged.  */
1826                 return orig;
1827               else if (mode != GET_MODE (map->inline_target))
1828                 return gen_rtx (SUBREG, mode, map->inline_target, 0);
1829               else
1830                 return map->inline_target;
1831             }
1832           return orig;
1833         }
1834       if (map->reg_map[regno] == NULL)
1835         {
1836           map->reg_map[regno] = gen_reg_rtx (mode);
1837           REG_USERVAR_P (map->reg_map[regno]) = REG_USERVAR_P (orig);
1838           REG_LOOP_TEST_P (map->reg_map[regno]) = REG_LOOP_TEST_P (orig);
1839           RTX_UNCHANGING_P (map->reg_map[regno]) = RTX_UNCHANGING_P (orig);
1840           /* A reg with REG_FUNCTION_VALUE_P true will never reach here.  */
1841         }
1842       return map->reg_map[regno];
1843
1844     case SUBREG:
1845       copy = copy_rtx_and_substitute (SUBREG_REG (orig), map);
1846       /* SUBREG is ordinary, but don't make nested SUBREGs.  */
1847       if (GET_CODE (copy) == SUBREG)
1848         return gen_rtx (SUBREG, GET_MODE (orig), SUBREG_REG (copy),
1849                         SUBREG_WORD (orig) + SUBREG_WORD (copy));
1850       else
1851         return gen_rtx (SUBREG, GET_MODE (orig), copy,
1852                         SUBREG_WORD (orig));
1853
1854     case USE:
1855     case CLOBBER:
1856       /* USE and CLOBBER are ordinary, but we convert (use (subreg foo))
1857          to (use foo).  */
1858       copy = copy_rtx_and_substitute (XEXP (orig, 0), map);
1859       if (GET_CODE (copy) == SUBREG)
1860         copy = SUBREG_REG (copy);
1861       return gen_rtx (code, VOIDmode, copy);
1862
1863     case CODE_LABEL:
1864       LABEL_PRESERVE_P (map->label_map[CODE_LABEL_NUMBER (orig)])
1865         = LABEL_PRESERVE_P (orig);
1866       return map->label_map[CODE_LABEL_NUMBER (orig)];
1867
1868     case LABEL_REF:
1869       copy = rtx_alloc (LABEL_REF);
1870       PUT_MODE (copy, mode);
1871       XEXP (copy, 0) = map->label_map[CODE_LABEL_NUMBER (XEXP (orig, 0))];
1872       LABEL_OUTSIDE_LOOP_P (copy) = LABEL_OUTSIDE_LOOP_P (orig);
1873       return copy;
1874
1875     case PC:
1876     case CC0:
1877     case CONST_INT:
1878       return orig;
1879
1880     case SYMBOL_REF:
1881       /* Symbols which represent the address of a label stored in the constant
1882          pool must be modified to point to a constant pool entry for the
1883          remapped label.  Otherwise, symbols are returned unchanged.  */
1884       if (CONSTANT_POOL_ADDRESS_P (orig))
1885         {
1886           rtx constant = get_pool_constant (orig);
1887           if (GET_CODE (constant) == LABEL_REF)
1888             {
1889               copy = rtx_alloc (LABEL_REF);
1890               PUT_MODE (copy, mode);
1891               XEXP (copy, 0)
1892                 = map->label_map[CODE_LABEL_NUMBER (XEXP (constant, 0))];
1893               LABEL_OUTSIDE_LOOP_P (copy) = LABEL_OUTSIDE_LOOP_P (orig);
1894               copy = force_const_mem (Pmode, copy);
1895               return XEXP (copy, 0);
1896             }
1897         }
1898       return orig;
1899
1900     case CONST_DOUBLE:
1901       /* We have to make a new copy of this CONST_DOUBLE because don't want
1902          to use the old value of CONST_DOUBLE_MEM.  Also, this may be a
1903          duplicate of a CONST_DOUBLE we have already seen.  */
1904       if (GET_MODE_CLASS (GET_MODE (orig)) == MODE_FLOAT)
1905         {
1906           REAL_VALUE_TYPE d;
1907
1908           REAL_VALUE_FROM_CONST_DOUBLE (d, orig);
1909           return immed_real_const_1 (d, GET_MODE (orig));
1910         }
1911       else
1912         return immed_double_const (CONST_DOUBLE_LOW (orig),
1913                                    CONST_DOUBLE_HIGH (orig), VOIDmode);
1914
1915     case CONST:
1916       /* Make new constant pool entry for a constant
1917          that was in the pool of the inline function.  */
1918       if (RTX_INTEGRATED_P (orig))
1919         {
1920           /* If this was an address of a constant pool entry that itself
1921              had to be placed in the constant pool, it might not be a
1922              valid address.  So the recursive call below might turn it
1923              into a register.  In that case, it isn't a constant any
1924              more, so return it.  This has the potential of changing a
1925              MEM into a REG, but we'll assume that it safe.  */
1926           temp = copy_rtx_and_substitute (XEXP (orig, 0), map);
1927           if (! CONSTANT_P (temp))
1928             return temp;
1929           return validize_mem (force_const_mem (GET_MODE (orig), temp));
1930         }
1931       break;
1932
1933     case ADDRESS:
1934       /* If from constant pool address, make new constant pool entry and
1935          return its address.  */
1936       if (! RTX_INTEGRATED_P (orig))
1937         abort ();
1938
1939       temp = force_const_mem (GET_MODE (orig),
1940                               copy_rtx_and_substitute (XEXP (orig, 0), map));
1941
1942 #if 0
1943       /* Legitimizing the address here is incorrect.
1944
1945          The only ADDRESS rtx's that can reach here are ones created by
1946          save_constants.  Hence the operand of the ADDRESS is always legal
1947          in this position of the instruction, since the original rtx without
1948          the ADDRESS was legal.
1949
1950          The reason we don't legitimize the address here is that on the
1951          Sparc, the caller may have a (high ...) surrounding this ADDRESS.
1952          This code forces the operand of the address to a register, which
1953          fails because we can not take the HIGH part of a register.
1954
1955          Also, change_address may create new registers.  These registers
1956          will not have valid reg_map entries.  This can cause try_constants()
1957          to fail because assumes that all registers in the rtx have valid
1958          reg_map entries, and it may end up replacing one of these new
1959          registers with junk. */
1960
1961       if (! memory_address_p (GET_MODE (temp), XEXP (temp, 0)))
1962         temp = change_address (temp, GET_MODE (temp), XEXP (temp, 0));
1963 #endif
1964
1965       return XEXP (temp, 0);
1966
1967     case ASM_OPERANDS:
1968       /* If a single asm insn contains multiple output operands
1969          then it contains multiple ASM_OPERANDS rtx's that share operand 3.
1970          We must make sure that the copied insn continues to share it.  */
1971       if (map->orig_asm_operands_vector == XVEC (orig, 3))
1972         {
1973           copy = rtx_alloc (ASM_OPERANDS);
1974           XSTR (copy, 0) = XSTR (orig, 0);
1975           XSTR (copy, 1) = XSTR (orig, 1);
1976           XINT (copy, 2) = XINT (orig, 2);
1977           XVEC (copy, 3) = map->copy_asm_operands_vector;
1978           XVEC (copy, 4) = map->copy_asm_constraints_vector;
1979           XSTR (copy, 5) = XSTR (orig, 5);
1980           XINT (copy, 6) = XINT (orig, 6);
1981           return copy;
1982         }
1983       break;
1984
1985     case CALL:
1986       /* This is given special treatment because the first
1987          operand of a CALL is a (MEM ...) which may get
1988          forced into a register for cse.  This is undesirable
1989          if function-address cse isn't wanted or if we won't do cse.  */
1990 #ifndef NO_FUNCTION_CSE
1991       if (! (optimize && ! flag_no_function_cse))
1992 #endif
1993         return gen_rtx (CALL, GET_MODE (orig),
1994                         gen_rtx (MEM, GET_MODE (XEXP (orig, 0)),
1995                                  copy_rtx_and_substitute (XEXP (XEXP (orig, 0), 0), map)),
1996                         copy_rtx_and_substitute (XEXP (orig, 1), map));
1997       break;
1998
1999 #if 0
2000       /* Must be ifdefed out for loop unrolling to work.  */
2001     case RETURN:
2002       abort ();
2003 #endif
2004
2005     case SET:
2006       /* If this is setting fp or ap, it means that we have a nonlocal goto.
2007          Don't alter that.
2008          If the nonlocal goto is into the current function,
2009          this will result in unnecessarily bad code, but should work.  */
2010       if (SET_DEST (orig) == virtual_stack_vars_rtx
2011           || SET_DEST (orig) == virtual_incoming_args_rtx)
2012         return gen_rtx (SET, VOIDmode, SET_DEST (orig),
2013                         copy_rtx_and_substitute (SET_SRC (orig), map));
2014       break;
2015
2016     case MEM:
2017       copy = rtx_alloc (MEM);
2018       PUT_MODE (copy, mode);
2019       XEXP (copy, 0) = copy_rtx_and_substitute (XEXP (orig, 0), map);
2020       MEM_IN_STRUCT_P (copy) = MEM_IN_STRUCT_P (orig);
2021       MEM_VOLATILE_P (copy) = MEM_VOLATILE_P (orig);
2022       RTX_UNCHANGING_P (copy) = RTX_UNCHANGING_P (orig);
2023       return copy;
2024     }
2025
2026   copy = rtx_alloc (code);
2027   PUT_MODE (copy, mode);
2028   copy->in_struct = orig->in_struct;
2029   copy->volatil = orig->volatil;
2030   copy->unchanging = orig->unchanging;
2031
2032   format_ptr = GET_RTX_FORMAT (GET_CODE (copy));
2033
2034   for (i = 0; i < GET_RTX_LENGTH (GET_CODE (copy)); i++)
2035     {
2036       switch (*format_ptr++)
2037         {
2038         case '0':
2039           break;
2040
2041         case 'e':
2042           XEXP (copy, i) = copy_rtx_and_substitute (XEXP (orig, i), map);
2043           break;
2044
2045         case 'u':
2046           /* Change any references to old-insns to point to the
2047              corresponding copied insns.  */
2048           XEXP (copy, i) = map->insn_map[INSN_UID (XEXP (orig, i))];
2049           break;
2050
2051         case 'E':
2052           XVEC (copy, i) = XVEC (orig, i);
2053           if (XVEC (orig, i) != NULL && XVECLEN (orig, i) != 0)
2054             {
2055               XVEC (copy, i) = rtvec_alloc (XVECLEN (orig, i));
2056               for (j = 0; j < XVECLEN (copy, i); j++)
2057                 XVECEXP (copy, i, j)
2058                   = copy_rtx_and_substitute (XVECEXP (orig, i, j), map);
2059             }
2060           break;
2061
2062         case 'i':
2063           XINT (copy, i) = XINT (orig, i);
2064           break;
2065
2066         case 's':
2067           XSTR (copy, i) = XSTR (orig, i);
2068           break;
2069
2070         default:
2071           abort ();
2072         }
2073     }
2074
2075   if (code == ASM_OPERANDS && map->orig_asm_operands_vector == 0)
2076     {
2077       map->orig_asm_operands_vector = XVEC (orig, 3);
2078       map->copy_asm_operands_vector = XVEC (copy, 3);
2079       map->copy_asm_constraints_vector = XVEC (copy, 4);
2080     }
2081
2082   return copy;
2083 }
2084 \f
2085 /* Substitute known constant values into INSN, if that is valid.  */
2086
2087 void
2088 try_constants (insn, map)
2089      rtx insn;
2090      struct inline_remap *map;
2091 {
2092   int i;
2093
2094   map->num_sets = 0;
2095   subst_constants (&PATTERN (insn), insn, map);
2096
2097   /* Apply the changes if they are valid; otherwise discard them.  */
2098   apply_change_group ();
2099
2100   /* Show we don't know the value of anything stored or clobbered.  */
2101   note_stores (PATTERN (insn), mark_stores);
2102   map->last_pc_value = 0;
2103 #ifdef HAVE_cc0
2104   map->last_cc0_value = 0;
2105 #endif
2106
2107   /* Set up any constant equivalences made in this insn.  */
2108   for (i = 0; i < map->num_sets; i++)
2109     {
2110       if (GET_CODE (map->equiv_sets[i].dest) == REG)
2111         {
2112           int regno = REGNO (map->equiv_sets[i].dest);
2113
2114           if (map->const_equiv_map[regno] == 0
2115               /* Following clause is a hack to make case work where GNU C++
2116                  reassigns a variable to make cse work right.  */
2117               || ! rtx_equal_p (map->const_equiv_map[regno],
2118                                 map->equiv_sets[i].equiv))
2119             {
2120               map->const_equiv_map[regno] = map->equiv_sets[i].equiv;
2121               map->const_age_map[regno] = map->const_age;
2122             }
2123         }
2124       else if (map->equiv_sets[i].dest == pc_rtx)
2125         map->last_pc_value = map->equiv_sets[i].equiv;
2126 #ifdef HAVE_cc0
2127       else if (map->equiv_sets[i].dest == cc0_rtx)
2128         map->last_cc0_value = map->equiv_sets[i].equiv;
2129 #endif
2130     }
2131 }
2132 \f
2133 /* Substitute known constants for pseudo regs in the contents of LOC,
2134    which are part of INSN.
2135    If INSN is zero, the substitution should always be done (this is used to
2136    update DECL_RTL).
2137    These changes are taken out by try_constants if the result is not valid.
2138
2139    Note that we are more concerned with determining when the result of a SET
2140    is a constant, for further propagation, than actually inserting constants
2141    into insns; cse will do the latter task better.
2142
2143    This function is also used to adjust address of items previously addressed
2144    via the virtual stack variable or virtual incoming arguments registers.  */
2145
2146 static void
2147 subst_constants (loc, insn, map)
2148      rtx *loc;
2149      rtx insn;
2150      struct inline_remap *map;
2151 {
2152   rtx x = *loc;
2153   register int i;
2154   register enum rtx_code code;
2155   register char *format_ptr;
2156   int num_changes = num_validated_changes ();
2157   rtx new = 0;
2158   enum machine_mode op0_mode;
2159
2160   code = GET_CODE (x);
2161
2162   switch (code)
2163     {
2164     case PC:
2165     case CONST_INT:
2166     case CONST_DOUBLE:
2167     case SYMBOL_REF:
2168     case CONST:
2169     case LABEL_REF:
2170     case ADDRESS:
2171       return;
2172
2173 #ifdef HAVE_cc0
2174     case CC0:
2175       validate_change (insn, loc, map->last_cc0_value, 1);
2176       return;
2177 #endif
2178
2179     case USE:
2180     case CLOBBER:
2181       /* The only thing we can do with a USE or CLOBBER is possibly do
2182          some substitutions in a MEM within it.  */
2183       if (GET_CODE (XEXP (x, 0)) == MEM)
2184         subst_constants (&XEXP (XEXP (x, 0), 0), insn, map);
2185       return;
2186
2187     case REG:
2188       /* Substitute for parms and known constants.  Don't replace
2189          hard regs used as user variables with constants.  */
2190       {
2191         int regno = REGNO (x);
2192
2193         if (! (regno < FIRST_PSEUDO_REGISTER && REG_USERVAR_P (x))
2194             && regno < map->const_equiv_map_size
2195             && map->const_equiv_map[regno] != 0
2196             && map->const_age_map[regno] >= map->const_age)
2197           validate_change (insn, loc, map->const_equiv_map[regno], 1);
2198         return;
2199       }
2200
2201     case SUBREG:
2202       /* SUBREG is ordinary, but don't make nested SUBREGs and try to simplify
2203          constants.  */
2204       {
2205         rtx inner = SUBREG_REG (x);
2206         rtx new = 0;
2207
2208         /* We can't call subst_constants on &SUBREG_REG (x) because any
2209            constant or SUBREG wouldn't be valid inside our SUBEG.  Instead,
2210            see what is inside, try to form the new SUBREG and see if that is
2211            valid.  We handle two cases: extracting a full word in an 
2212            integral mode and extracting the low part.  */
2213         subst_constants (&inner, 0, map);
2214
2215         if (GET_MODE_CLASS (GET_MODE (x)) == MODE_INT
2216             && GET_MODE_SIZE (GET_MODE (x)) == UNITS_PER_WORD
2217             && GET_MODE (SUBREG_REG (x)) != VOIDmode)
2218           new = operand_subword (inner, SUBREG_WORD (x), 0,
2219                                  GET_MODE (SUBREG_REG (x)));
2220
2221         if (new == 0 && subreg_lowpart_p (x))
2222           new = gen_lowpart_common (GET_MODE (x), inner);
2223
2224         if (new)
2225           validate_change (insn, loc, new, 1);
2226
2227         return;
2228       }
2229
2230     case MEM:
2231       subst_constants (&XEXP (x, 0), insn, map);
2232
2233       /* If a memory address got spoiled, change it back.  */
2234       if (insn != 0 && num_validated_changes () != num_changes
2235           && !memory_address_p (GET_MODE (x), XEXP (x, 0)))
2236         cancel_changes (num_changes);
2237       return;
2238
2239     case SET:
2240       {
2241         /* Substitute constants in our source, and in any arguments to a
2242            complex (e..g, ZERO_EXTRACT) destination, but not in the destination
2243            itself.  */
2244         rtx *dest_loc = &SET_DEST (x);
2245         rtx dest = *dest_loc;
2246         rtx src, tem;
2247
2248         subst_constants (&SET_SRC (x), insn, map);
2249         src = SET_SRC (x);
2250
2251         while (GET_CODE (*dest_loc) == ZERO_EXTRACT
2252                || GET_CODE (*dest_loc) == SIGN_EXTRACT
2253                || GET_CODE (*dest_loc) == SUBREG
2254                || GET_CODE (*dest_loc) == STRICT_LOW_PART)
2255           {
2256             if (GET_CODE (*dest_loc) == ZERO_EXTRACT)
2257               {
2258                 subst_constants (&XEXP (*dest_loc, 1), insn, map);
2259                 subst_constants (&XEXP (*dest_loc, 2), insn, map);
2260               }
2261             dest_loc = &XEXP (*dest_loc, 0);
2262           }
2263
2264         /* Check for the case of DEST a SUBREG, both it and the underlying
2265            register are less than one word, and the SUBREG has the wider mode.
2266            In the case, we are really setting the underlying register to the
2267            source converted to the mode of DEST.  So indicate that.  */
2268         if (GET_CODE (dest) == SUBREG
2269             && GET_MODE_SIZE (GET_MODE (dest)) <= UNITS_PER_WORD
2270             && GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest))) <= UNITS_PER_WORD
2271             && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest)))
2272                       <= GET_MODE_SIZE (GET_MODE (dest)))
2273             && (tem = gen_lowpart_if_possible (GET_MODE (dest), src)))
2274           src = tem, dest = SUBREG_REG (dest);
2275
2276         /* If storing a recognizable value save it for later recording.  */
2277         if ((map->num_sets < MAX_RECOG_OPERANDS)
2278             && (CONSTANT_P (src)
2279                 || (GET_CODE (src) == PLUS
2280                     && GET_CODE (XEXP (src, 0)) == REG
2281                     && REGNO (XEXP (src, 0)) >= FIRST_VIRTUAL_REGISTER
2282                     && REGNO (XEXP (src, 0)) <= LAST_VIRTUAL_REGISTER
2283                     && CONSTANT_P (XEXP (src, 1)))
2284                 || GET_CODE (src) == COMPARE
2285 #ifdef HAVE_cc0
2286                 || dest == cc0_rtx
2287 #endif
2288                 || (dest == pc_rtx
2289                     && (src == pc_rtx || GET_CODE (src) == RETURN
2290                         || GET_CODE (src) == LABEL_REF))))
2291           {
2292             /* Normally, this copy won't do anything.  But, if SRC is a COMPARE
2293                it will cause us to save the COMPARE with any constants
2294                substituted, which is what we want for later.  */
2295             map->equiv_sets[map->num_sets].equiv = copy_rtx (src);
2296             map->equiv_sets[map->num_sets++].dest = dest;
2297           }
2298
2299         return;
2300       }
2301     }
2302
2303   format_ptr = GET_RTX_FORMAT (code);
2304   
2305   /* If the first operand is an expression, save its mode for later.  */
2306   if (*format_ptr == 'e')
2307     op0_mode = GET_MODE (XEXP (x, 0));
2308
2309   for (i = 0; i < GET_RTX_LENGTH (code); i++)
2310     {
2311       switch (*format_ptr++)
2312         {
2313         case '0':
2314           break;
2315
2316         case 'e':
2317           if (XEXP (x, i))
2318             subst_constants (&XEXP (x, i), insn, map);
2319           break;
2320
2321         case 'u':
2322         case 'i':
2323         case 's':
2324           break;
2325
2326         case 'E':
2327           if (XVEC (x, i) != NULL && XVECLEN (x, i) != 0)
2328             {
2329               int j;
2330               for (j = 0; j < XVECLEN (x, i); j++)
2331                 subst_constants (&XVECEXP (x, i, j), insn, map);
2332             }
2333           break;
2334
2335         default:
2336           abort ();
2337         }
2338     }
2339
2340   /* If this is a commutative operation, move a constant to the second
2341      operand unless the second operand is already a CONST_INT.  */
2342   if ((GET_RTX_CLASS (code) == 'c' || code == NE || code == EQ)
2343       && CONSTANT_P (XEXP (x, 0)) && GET_CODE (XEXP (x, 1)) != CONST_INT)
2344     {
2345       rtx tem = XEXP (x, 0);
2346       validate_change (insn, &XEXP (x, 0), XEXP (x, 1), 1);
2347       validate_change (insn, &XEXP (x, 1), tem, 1);
2348     }
2349
2350   /* Simplify the expression in case we put in some constants.  */
2351   switch (GET_RTX_CLASS (code))
2352     {
2353     case '1':
2354       new = simplify_unary_operation (code, GET_MODE (x),
2355                                       XEXP (x, 0), op0_mode);
2356       break;
2357
2358     case '<':
2359       {
2360         enum machine_mode op_mode = GET_MODE (XEXP (x, 0));
2361         if (op_mode == VOIDmode)
2362           op_mode = GET_MODE (XEXP (x, 1));
2363         new = simplify_relational_operation (code, op_mode,
2364                                              XEXP (x, 0), XEXP (x, 1));
2365         break;
2366       }
2367
2368     case '2':
2369     case 'c':
2370       new = simplify_binary_operation (code, GET_MODE (x),
2371                                        XEXP (x, 0), XEXP (x, 1));
2372       break;
2373
2374     case 'b':
2375     case '3':
2376       new = simplify_ternary_operation (code, GET_MODE (x), op0_mode,
2377                                         XEXP (x, 0), XEXP (x, 1), XEXP (x, 2));
2378       break;
2379     }
2380
2381   if (new)
2382     validate_change (insn, loc, new, 1);
2383 }
2384
2385 /* Show that register modified no longer contain known constants.  We are
2386    called from note_stores with parts of the new insn.  */
2387
2388 void
2389 mark_stores (dest, x)
2390      rtx dest;
2391      rtx x;
2392 {
2393   if (GET_CODE (dest) == SUBREG)
2394     dest = SUBREG_REG (dest);
2395
2396   if (GET_CODE (dest) == REG)
2397     global_const_equiv_map[REGNO (dest)] = 0;
2398 }
2399 \f
2400 /* If any CONST expressions with RTX_INTEGRATED_P are present in the rtx
2401    pointed to by PX, they represent constants in the constant pool.
2402    Replace these with a new memory reference obtained from force_const_mem.
2403    Similarly, ADDRESS expressions with RTX_INTEGRATED_P represent the
2404    address of a constant pool entry.  Replace them with the address of
2405    a new constant pool entry obtained from force_const_mem.  */
2406
2407 static void
2408 restore_constants (px)
2409      rtx *px;
2410 {
2411   rtx x = *px;
2412   int i, j;
2413   char *fmt;
2414
2415   if (x == 0)
2416     return;
2417
2418   if (GET_CODE (x) == CONST_DOUBLE)
2419     {
2420       /* We have to make a new CONST_DOUBLE to ensure that we account for
2421          it correctly.  Using the old CONST_DOUBLE_MEM data is wrong.  */
2422       if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
2423         {
2424           REAL_VALUE_TYPE d;
2425
2426           REAL_VALUE_FROM_CONST_DOUBLE (d, x);
2427           *px = immed_real_const_1 (d, GET_MODE (x));
2428         }
2429       else
2430         *px = immed_double_const (CONST_DOUBLE_LOW (x), CONST_DOUBLE_HIGH (x),
2431                                   VOIDmode);
2432     }
2433
2434   else if (RTX_INTEGRATED_P (x) && GET_CODE (x) == CONST)
2435     {
2436       restore_constants (&XEXP (x, 0));
2437       *px = validize_mem (force_const_mem (GET_MODE (x), XEXP (x, 0)));
2438     }
2439   else if (RTX_INTEGRATED_P (x) && GET_CODE (x) == SUBREG)
2440     {
2441       /* This must be (subreg/i:M1 (const/i:M2 ...) 0).  */
2442       rtx new = XEXP (SUBREG_REG (x), 0);
2443
2444       restore_constants (&new);
2445       new = force_const_mem (GET_MODE (SUBREG_REG (x)), new);
2446       PUT_MODE (new, GET_MODE (x));
2447       *px = validize_mem (new);
2448     }
2449   else if (RTX_INTEGRATED_P (x) && GET_CODE (x) == ADDRESS)
2450     {
2451       restore_constants (&XEXP (x, 0));
2452       *px = XEXP (force_const_mem (GET_MODE (x), XEXP (x, 0)), 0);
2453     }
2454   else
2455     {
2456       fmt = GET_RTX_FORMAT (GET_CODE (x));
2457       for (i = 0; i < GET_RTX_LENGTH (GET_CODE (x)); i++)
2458         {
2459           switch (*fmt++)
2460             {
2461             case 'E':
2462               for (j = 0; j < XVECLEN (x, i); j++)
2463                 restore_constants (&XVECEXP (x, i, j));
2464               break;
2465
2466             case 'e':
2467               restore_constants (&XEXP (x, i));
2468               break;
2469             }
2470         }
2471     }
2472 }
2473 \f
2474 /* Output the assembly language code for the function FNDECL
2475    from its DECL_SAVED_INSNS.  Used for inline functions that are output
2476    at end of compilation instead of where they came in the source.  */
2477
2478 void
2479 output_inline_function (fndecl)
2480      tree fndecl;
2481 {
2482   rtx head = DECL_SAVED_INSNS (fndecl);
2483   rtx last;
2484
2485   temporary_allocation ();
2486
2487   current_function_decl = fndecl;
2488
2489   /* This call is only used to initialize global variables.  */
2490   init_function_start (fndecl, "lossage", 1);
2491
2492   /* Redo parameter determinations in case the FUNCTION_...
2493      macros took machine-specific actions that need to be redone.  */
2494   assign_parms (fndecl, 1);
2495
2496   /* Set stack frame size.  */
2497   assign_stack_local (BLKmode, DECL_FRAME_SIZE (fndecl), 0);
2498
2499   restore_reg_data (FIRST_PARM_INSN (head));
2500
2501   stack_slot_list = STACK_SLOT_LIST (head);
2502
2503   if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_CALLS_ALLOCA)
2504     current_function_calls_alloca = 1;
2505
2506   if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_CALLS_SETJMP)
2507     current_function_calls_setjmp = 1;
2508
2509   if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_CALLS_LONGJMP)
2510     current_function_calls_longjmp = 1;
2511
2512   if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_RETURNS_STRUCT)
2513     current_function_returns_struct = 1;
2514
2515   if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_RETURNS_PCC_STRUCT)
2516     current_function_returns_pcc_struct = 1;
2517
2518   if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_NEEDS_CONTEXT)
2519     current_function_needs_context = 1;
2520
2521   if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_HAS_NONLOCAL_LABEL)
2522     current_function_has_nonlocal_label = 1;
2523
2524   if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_RETURNS_POINTER)
2525     current_function_returns_pointer = 1;
2526
2527   if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_USES_CONST_POOL)
2528     current_function_uses_const_pool = 1;
2529
2530   if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_USES_PIC_OFFSET_TABLE)
2531     current_function_uses_pic_offset_table = 1;
2532
2533   current_function_outgoing_args_size = OUTGOING_ARGS_SIZE (head);
2534   current_function_pops_args = POPS_ARGS (head);
2535
2536   /* There is no need to output a return label again.  */
2537   return_label = 0;
2538
2539   expand_function_end (DECL_SOURCE_FILE (fndecl), DECL_SOURCE_LINE (fndecl));
2540
2541   /* Find last insn and rebuild the constant pool.  */
2542   for (last = FIRST_PARM_INSN (head);
2543        NEXT_INSN (last); last = NEXT_INSN (last))
2544     {
2545       if (GET_RTX_CLASS (GET_CODE (last)) == 'i')
2546         {
2547           restore_constants (&PATTERN (last));
2548           restore_constants (&REG_NOTES (last));
2549         }
2550     }
2551
2552   set_new_first_and_last_insn (FIRST_PARM_INSN (head), last);
2553   set_new_first_and_last_label_num (FIRST_LABELNO (head), LAST_LABELNO (head));
2554
2555   /* Compile this function all the way down to assembly code.  */
2556   rest_of_compilation (fndecl);
2557
2558   current_function_decl = 0;
2559
2560   permanent_allocation ();
2561 }