OSDN Git Service

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