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