OSDN Git Service

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