OSDN Git Service

*** empty log message ***
[pf3gnuchains/gcc-fork.git] / gcc / reload.c
1 /* Search an insn for pseudo regs that must be in hard regs and are not.
2    Copyright (C) 1987, 1988, 1989, 1992 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
19
20
21 /* This file contains subroutines used only from the file reload1.c.
22    It knows how to scan one insn for operands and values
23    that need to be copied into registers to make valid code.
24    It also finds other operands and values which are valid
25    but for which equivalent values in registers exist and
26    ought to be used instead.
27
28    Before processing the first insn of the function, call `init_reload'.
29
30    To scan an insn, call `find_reloads'.  This does two things:
31    1. sets up tables describing which values must be reloaded
32    for this insn, and what kind of hard regs they must be reloaded into;
33    2. optionally record the locations where those values appear in
34    the data, so they can be replaced properly later.
35    This is done only if the second arg to `find_reloads' is nonzero.
36
37    The third arg to `find_reloads' specifies the number of levels
38    of indirect addressing supported by the machine.  If it is zero,
39    indirect addressing is not valid.  If it is one, (MEM (REG n))
40    is valid even if (REG n) did not get a hard register; if it is two,
41    (MEM (MEM (REG n))) is also valid even if (REG n) did not get a
42    hard register, and similarly for higher values.
43
44    Then you must choose the hard regs to reload those pseudo regs into,
45    and generate appropriate load insns before this insn and perhaps
46    also store insns after this insn.  Set up the array `reload_reg_rtx'
47    to contain the REG rtx's for the registers you used.  In some
48    cases `find_reloads' will return a nonzero value in `reload_reg_rtx'
49    for certain reloads.  Then that tells you which register to use,
50    so you do not need to allocate one.  But you still do need to add extra
51    instructions to copy the value into and out of that register.
52
53    Finally you must call `subst_reloads' to substitute the reload reg rtx's
54    into the locations already recorded.
55
56 NOTE SIDE EFFECTS:
57
58    find_reloads can alter the operands of the instruction it is called on.
59
60    1. Two operands of any sort may be interchanged, if they are in a
61    commutative instruction.
62    This happens only if find_reloads thinks the instruction will compile
63    better that way.
64
65    2. Pseudo-registers that are equivalent to constants are replaced
66    with those constants if they are not in hard registers.
67
68 1 happens every time find_reloads is called.
69 2 happens only when REPLACE is 1, which is only when
70 actually doing the reloads, not when just counting them.
71
72
73 Using a reload register for several reloads in one insn:
74
75 When an insn has reloads, it is considered as having three parts:
76 the input reloads, the insn itself after reloading, and the output reloads.
77 Reloads of values used in memory addresses are often needed for only one part.
78
79 When this is so, reload_when_needed records which part needs the reload.
80 Two reloads for different parts of the insn can share the same reload
81 register.
82
83 When a reload is used for addresses in multiple parts, or when it is
84 an ordinary operand, it is classified as RELOAD_OTHER, and cannot share
85 a register with any other reload.  */
86
87 #define REG_OK_STRICT
88
89 #include "config.h"
90 #include "rtl.h"
91 #include "insn-config.h"
92 #include "insn-codes.h"
93 #include "recog.h"
94 #include "reload.h"
95 #include "regs.h"
96 #include "hard-reg-set.h"
97 #include "flags.h"
98 #include "real.h"
99
100 #ifndef REGISTER_MOVE_COST
101 #define REGISTER_MOVE_COST(x, y) 2
102 #endif
103 \f
104 /* The variables set up by `find_reloads' are:
105
106    n_reloads              number of distinct reloads needed; max reload # + 1
107        tables indexed by reload number
108    reload_in              rtx for value to reload from
109    reload_out             rtx for where to store reload-reg afterward if nec
110                            (often the same as reload_in)
111    reload_reg_class       enum reg_class, saying what regs to reload into
112    reload_inmode          enum machine_mode; mode this operand should have
113                            when reloaded, on input.
114    reload_outmode         enum machine_mode; mode this operand should have
115                            when reloaded, on output.
116    reload_strict_low      char; currently always zero; used to mean that this
117                           reload is inside a STRICT_LOW_PART, but we don't
118                           need to know this anymore.
119    reload_optional        char, nonzero for an optional reload.
120                            Optional reloads are ignored unless the
121                            value is already sitting in a register.
122    reload_inc             int, positive amount to increment or decrement by if
123                            reload_in is a PRE_DEC, PRE_INC, POST_DEC, POST_INC.
124                            Ignored otherwise (don't assume it is zero).
125    reload_in_reg          rtx.  A reg for which reload_in is the equivalent.
126                            If reload_in is a symbol_ref which came from
127                            reg_equiv_constant, then this is the pseudo
128                            which has that symbol_ref as equivalent.
129    reload_reg_rtx         rtx.  This is the register to reload into.
130                            If it is zero when `find_reloads' returns,
131                            you must find a suitable register in the class
132                            specified by reload_reg_class, and store here
133                            an rtx for that register with mode from
134                            reload_inmode or reload_outmode.
135    reload_nocombine       char, nonzero if this reload shouldn't be
136                            combined with another reload.
137    reload_needed_for      rtx, operand this reload is needed for address of.
138                            0 means it isn't needed for addressing.
139    reload_needed_for_multiple
140                           int, 1 if this reload needed for more than one thing.
141    reload_when_needed     enum, classifies reload as needed either for
142                            addressing an input reload, addressing an output,
143                            for addressing a non-reloaded mem ref,
144                            or for unspecified purposes (i.e., more than one
145                            of the above).
146    reload_secondary_reload int, gives the reload number of a secondary
147                            reload, when needed; otherwise -1
148    reload_secondary_p     int, 1 if this is a secondary register for one
149                           or more reloads.
150    reload_secondary_icode enum insn_code, if a secondary reload is required,
151                            gives the INSN_CODE that uses the secondary
152                            reload as a scratch register, or CODE_FOR_nothing
153                            if the secondary reload register is to be an
154                            intermediate register.  */
155 int n_reloads;
156
157 rtx reload_in[MAX_RELOADS];
158 rtx reload_out[MAX_RELOADS];
159 enum reg_class reload_reg_class[MAX_RELOADS];
160 enum machine_mode reload_inmode[MAX_RELOADS];
161 enum machine_mode reload_outmode[MAX_RELOADS];
162 char reload_strict_low[MAX_RELOADS];
163 rtx reload_reg_rtx[MAX_RELOADS];
164 char reload_optional[MAX_RELOADS];
165 int reload_inc[MAX_RELOADS];
166 rtx reload_in_reg[MAX_RELOADS];
167 char reload_nocombine[MAX_RELOADS];
168 int reload_needed_for_multiple[MAX_RELOADS];
169 rtx reload_needed_for[MAX_RELOADS];
170 enum reload_when_needed reload_when_needed[MAX_RELOADS];
171 int reload_secondary_reload[MAX_RELOADS];
172 int reload_secondary_p[MAX_RELOADS];
173 enum insn_code reload_secondary_icode[MAX_RELOADS];
174
175 /* All the "earlyclobber" operands of the current insn
176    are recorded here.  */
177 int n_earlyclobbers;
178 rtx reload_earlyclobbers[MAX_RECOG_OPERANDS];
179
180 /* Replacing reloads.
181
182    If `replace_reloads' is nonzero, then as each reload is recorded
183    an entry is made for it in the table `replacements'.
184    Then later `subst_reloads' can look through that table and
185    perform all the replacements needed.  */
186
187 /* Nonzero means record the places to replace.  */
188 static int replace_reloads;
189
190 /* Each replacement is recorded with a structure like this.  */
191 struct replacement
192 {
193   rtx *where;                   /* Location to store in */
194   rtx *subreg_loc;              /* Location of SUBREG if WHERE is inside
195                                    a SUBREG; 0 otherwise.  */
196   int what;                     /* which reload this is for */
197   enum machine_mode mode;       /* mode it must have */
198 };
199
200 static struct replacement replacements[MAX_RECOG_OPERANDS * ((MAX_REGS_PER_ADDRESS * 2) + 1)];
201
202 /* Number of replacements currently recorded.  */
203 static int n_replacements;
204
205 /* MEM-rtx's created for pseudo-regs in stack slots not directly addressable;
206    (see reg_equiv_address).  */
207 static rtx memlocs[MAX_RECOG_OPERANDS * ((MAX_REGS_PER_ADDRESS * 2) + 1)];
208 static int n_memlocs;
209
210 /* The instruction we are doing reloads for;
211    so we can test whether a register dies in it.  */
212 static rtx this_insn;
213
214 /* Nonzero if this instruction is a user-specified asm with operands.  */
215 static int this_insn_is_asm;
216
217 /* If hard_regs_live_known is nonzero,
218    we can tell which hard regs are currently live,
219    at least enough to succeed in choosing dummy reloads.  */
220 static int hard_regs_live_known;
221
222 /* Indexed by hard reg number,
223    element is nonegative if hard reg has been spilled.
224    This vector is passed to `find_reloads' as an argument
225    and is not changed here.  */
226 static short *static_reload_reg_p;
227
228 /* Set to 1 in subst_reg_equivs if it changes anything.  */
229 static int subst_reg_equivs_changed;
230
231 /* On return from push_reload, holds the reload-number for the OUT
232    operand, which can be different for that from the input operand.  */
233 static int output_reloadnum;
234
235 static int alternative_allows_memconst ();
236 static rtx find_dummy_reload ();
237 static rtx find_reloads_toplev ();
238 static int find_reloads_address ();
239 static int find_reloads_address_1 ();
240 static void find_reloads_address_part ();
241 static int hard_reg_set_here_p ();
242 /* static rtx forget_volatility (); */
243 static rtx subst_reg_equivs ();
244 static rtx subst_indexed_address ();
245 rtx find_equiv_reg ();
246 static int find_inc_amount ();
247 \f
248 #ifdef HAVE_SECONDARY_RELOADS
249
250 /* Determine if any secondary reloads are needed for loading (if IN_P is
251    non-zero) or storing (if IN_P is zero) X to or from a reload register of
252    register class RELOAD_CLASS in mode RELOAD_MODE.
253
254    Return the register class of a secondary reload register, or NO_REGS if
255    none.  *PMODE is set to the mode that the register is required in.
256    If the reload register is needed as a scratch register instead of an
257    intermediate register, *PICODE is set to the insn_code of the insn to be
258    used to load or store the primary reload register; otherwise *PICODE
259    is set to CODE_FOR_nothing.
260
261    In some cases (such as storing MQ into an external memory location on
262    the RT), both an intermediate register and a scratch register.  In that
263    case, *PICODE is set to CODE_FOR_nothing, the class for the intermediate
264    register is returned, and the *PTERTIARY_... variables are set to describe
265    the scratch register.  */
266
267 static enum reg_class
268 find_secondary_reload (x, reload_class, reload_mode, in_p, picode, pmode,
269                       ptertiary_class, ptertiary_icode, ptertiary_mode)
270      rtx x;
271      enum reg_class reload_class;
272      enum machine_mode reload_mode;
273      int in_p;
274      enum insn_code *picode;
275      enum machine_mode *pmode;
276      enum reg_class *ptertiary_class;
277      enum insn_code *ptertiary_icode;
278      enum machine_mode *ptertiary_mode;
279 {
280   enum reg_class class = NO_REGS;
281   enum machine_mode mode = reload_mode;
282   enum insn_code icode = CODE_FOR_nothing;
283   enum reg_class t_class = NO_REGS;
284   enum machine_mode t_mode = VOIDmode;
285   enum insn_code t_icode = CODE_FOR_nothing;
286
287   /* If X is a pseudo-register that has an equivalent MEM (actually, if it
288      is still a pseudo-register by now, it *must* have an equivalent MEM
289      but we don't want to assume that), use that equivalent when seeing if
290      a secondary reload is needed since whether or not a reload is needed
291      might be sensitive to the form of the MEM.  */
292
293   if (GET_CODE (x) == REG && REGNO (x) >= FIRST_PSEUDO_REGISTER
294       && reg_equiv_mem[REGNO (x)] != 0)
295     x = reg_equiv_mem[REGNO (x)];
296
297 #ifdef SECONDARY_INPUT_RELOAD_CLASS
298   if (in_p)
299     class = SECONDARY_INPUT_RELOAD_CLASS (reload_class, reload_mode, x);
300 #endif
301
302 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
303   if (! in_p)
304     class = SECONDARY_OUTPUT_RELOAD_CLASS (reload_class, reload_mode, x);
305 #endif
306
307   /* If we don't need any secondary registers, go away; the rest of the
308      values won't be used.  */
309   if (class == NO_REGS)
310     return NO_REGS;
311
312   /* Get a possible insn to use.  If the predicate doesn't accept X, don't
313      use the insn.  */
314
315   icode = (in_p ? reload_in_optab[(int) reload_mode]
316            : reload_out_optab[(int) reload_mode]);
317
318   if (icode != CODE_FOR_nothing
319       && insn_operand_predicate[(int) icode][in_p]
320       && (! (insn_operand_predicate[(int) icode][in_p]) (x, reload_mode)))
321     icode = CODE_FOR_nothing;
322
323   /* If we will be using an insn, see if it can directly handle the reload
324      register we will be using.  If it can, the secondary reload is for a
325      scratch register.  If it can't, we will use the secondary reload for
326      an intermediate register and require a tertiary reload for the scratch
327      register.  */
328
329   if (icode != CODE_FOR_nothing)
330     {
331       /* If IN_P is non-zero, the reload register will be the output in 
332          operand 0.  If IN_P is zero, the reload register will be the input
333          in operand 1.  Outputs should have an initial "=", which we must
334          skip.  */
335
336       char insn_letter = insn_operand_constraint[(int) icode][!in_p][in_p];
337       enum reg_class insn_class
338         = (insn_letter == 'r' ? GENERAL_REGS
339            : REG_CLASS_FROM_LETTER (insn_letter));
340
341       if (insn_class == NO_REGS
342           || (in_p && insn_operand_constraint[(int) icode][!in_p][0] != '=')
343           /* The scratch register's constraint must start with "=&".  */
344           || insn_operand_constraint[(int) icode][2][0] != '='
345           || insn_operand_constraint[(int) icode][2][1] != '&')
346         abort ();
347
348       if (reg_class_subset_p (reload_class, insn_class))
349         mode = insn_operand_mode[(int) icode][2];
350       else
351         {
352           char t_letter = insn_operand_constraint[(int) icode][2][2];
353           class = insn_class;
354           t_mode = insn_operand_mode[(int) icode][2];
355           t_class = (t_letter == 'r' ? GENERAL_REGS
356                      : REG_CLASS_FROM_LETTER (t_letter));
357           t_icode = icode;
358           icode = CODE_FOR_nothing;
359         }
360     }
361
362   *pmode = mode;
363   *picode = icode;
364   *ptertiary_class = t_class;
365   *ptertiary_mode = t_mode;
366   *ptertiary_icode = t_icode;
367
368   return class;
369 }
370 #endif /* HAVE_SECONDARY_RELOADS */
371 \f
372 /* Record one (sometimes two) reload that needs to be performed.
373    IN is an rtx saying where the data are to be found before this instruction.
374    OUT says where they must be stored after the instruction.
375    (IN is zero for data not read, and OUT is zero for data not written.)
376    INLOC and OUTLOC point to the places in the instructions where
377    IN and OUT were found.
378    CLASS is a register class required for the reloaded data.
379    INMODE is the machine mode that the instruction requires
380    for the reg that replaces IN and OUTMODE is likewise for OUT.
381
382    If IN is zero, then OUT's location and mode should be passed as
383    INLOC and INMODE.
384
385    STRICT_LOW is the 1 if there is a containing STRICT_LOW_PART rtx.
386
387    OPTIONAL nonzero means this reload does not need to be performed:
388    it can be discarded if that is more convenient.
389
390    The return value is the reload-number for this reload.
391
392    If both IN and OUT are nonzero, in some rare cases we might
393    want to make two separate reloads.  (Actually we never do this now.)
394    Therefore, the reload-number for OUT is stored in
395    output_reloadnum when we return; the return value applies to IN.
396    Usually (presently always), when IN and OUT are nonzero,
397    the two reload-numbers are equal, but the caller should be careful to
398    distinguish them.  */
399
400 static int
401 push_reload (in, out, inloc, outloc, class,
402              inmode, outmode, strict_low, optional, needed_for)
403      register rtx in, out;
404      rtx *inloc, *outloc;
405      enum reg_class class;
406      enum machine_mode inmode, outmode;
407      int strict_low;
408      int optional;
409      rtx needed_for;
410 {
411   register int i;
412   int dont_share = 0;
413   rtx *in_subreg_loc = 0, *out_subreg_loc = 0;
414   int secondary_reload = -1;
415   enum insn_code secondary_icode = CODE_FOR_nothing;
416
417   /* Compare two RTX's.  */
418 #define MATCHES(x, y) \
419  (x == y || (x != 0 && (GET_CODE (x) == REG                             \
420                         ? GET_CODE (y) == REG && REGNO (x) == REGNO (y) \
421                         : rtx_equal_p (x, y) && ! side_effects_p (x))))
422
423   /* INMODE and/or OUTMODE could be VOIDmode if no mode
424      has been specified for the operand.  In that case,
425      use the operand's mode as the mode to reload.  */
426   if (inmode == VOIDmode && in != 0)
427     inmode = GET_MODE (in);
428   if (outmode == VOIDmode && out != 0)
429     outmode = GET_MODE (out);
430
431   /* If IN is a pseudo register everywhere-equivalent to a constant, and 
432      it is not in a hard register, reload straight from the constant,
433      since we want to get rid of such pseudo registers.
434      Often this is done earlier, but not always in find_reloads_address.  */
435   if (in != 0 && GET_CODE (in) == REG)
436     {
437       register int regno = REGNO (in);
438
439       if (regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
440           && reg_equiv_constant[regno] != 0)
441         in = reg_equiv_constant[regno];
442     }
443
444   /* Likewise for OUT.  Of course, OUT will never be equivalent to
445      an actual constant, but it might be equivalent to a memory location
446      (in the case of a parameter).  */
447   if (out != 0 && GET_CODE (out) == REG)
448     {
449       register int regno = REGNO (out);
450
451       if (regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
452           && reg_equiv_constant[regno] != 0)
453         out = reg_equiv_constant[regno];
454     }
455
456   /* If we have a read-write operand with an address side-effect,
457      change either IN or OUT so the side-effect happens only once.  */
458   if (in != 0 && out != 0 && GET_CODE (in) == MEM && rtx_equal_p (in, out))
459     {
460       if (GET_CODE (XEXP (in, 0)) == POST_INC
461           || GET_CODE (XEXP (in, 0)) == POST_DEC)
462         in = gen_rtx (MEM, GET_MODE (in), XEXP (XEXP (in, 0), 0));
463       if (GET_CODE (XEXP (in, 0)) == PRE_INC
464           || GET_CODE (XEXP (in, 0)) == PRE_DEC)
465         out = gen_rtx (MEM, GET_MODE (out), XEXP (XEXP (out, 0), 0));
466     }
467
468   /* If we are reloading a (SUBREG (MEM ...) ...) or (SUBREG constant ...),
469      really reload just the inside expression in its own mode.
470      If we have (SUBREG:M1 (REG:M2 ...) ...) with M1 wider than M2 and the
471      register is a pseudo, this will become the same as the above case.
472      Do the same for (SUBREG:M1 (REG:M2 ...) ...) for a hard register R where
473      either M1 is not valid for R or M2 is wider than a word but we only
474      need one word to store an M2-sized quantity in R.
475      Note that the case of (SUBREG (CONST_INT...)...) is handled elsewhere;
476      we can't handle it here because CONST_INT does not indicate a mode.
477
478      Similarly, we must reload the inside expression if we have a
479      STRICT_LOW_PART (presumably, in == out in the cas).  */
480
481   if (in != 0 && GET_CODE (in) == SUBREG
482       && (GET_CODE (SUBREG_REG (in)) != REG
483           || strict_low
484           || (GET_CODE (SUBREG_REG (in)) == REG
485               && REGNO (SUBREG_REG (in)) >= FIRST_PSEUDO_REGISTER
486               && (GET_MODE_SIZE (inmode)
487                   > GET_MODE_SIZE (GET_MODE (SUBREG_REG (in)))))
488           || (GET_CODE (SUBREG_REG (in)) == REG
489               && REGNO (SUBREG_REG (in)) < FIRST_PSEUDO_REGISTER
490               && (! HARD_REGNO_MODE_OK (REGNO (SUBREG_REG (in)), inmode)
491                   || (GET_MODE_SIZE (inmode) <= UNITS_PER_WORD
492                       && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (in)))
493                           > UNITS_PER_WORD)
494                       && ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (in)))
495                            / UNITS_PER_WORD)
496                           != HARD_REGNO_NREGS (REGNO (SUBREG_REG (in)),
497                                                GET_MODE (SUBREG_REG (in)))))))))
498     {
499       in_subreg_loc = inloc;
500       inloc = &SUBREG_REG (in);
501       in = *inloc;
502       if (GET_CODE (in) == MEM)
503         /* This is supposed to happen only for paradoxical subregs made by
504            combine.c.  (SUBREG (MEM)) isn't supposed to occur other ways.  */
505         if (GET_MODE_SIZE (GET_MODE (in)) > GET_MODE_SIZE (inmode))
506           abort ();
507       inmode = GET_MODE (in);
508     }
509
510   /* Similarly for paradoxical and problematical SUBREGs on the output.
511      Note that there is no reason we need worry about the previous value
512      of SUBREG_REG (out); even if wider than out,
513      storing in a subreg is entitled to clobber it all
514      (except in the case of STRICT_LOW_PART,
515      and in that case the constraint should label it input-output.)  */
516   if (out != 0 && GET_CODE (out) == SUBREG
517       && (GET_CODE (SUBREG_REG (out)) != REG
518           || strict_low
519           || (GET_CODE (SUBREG_REG (out)) == REG
520               && REGNO (SUBREG_REG (out)) >= FIRST_PSEUDO_REGISTER
521               && (GET_MODE_SIZE (outmode)
522                   > GET_MODE_SIZE (GET_MODE (SUBREG_REG (out)))))
523           || (GET_CODE (SUBREG_REG (out)) == REG
524               && REGNO (SUBREG_REG (out)) < FIRST_PSEUDO_REGISTER
525               && (! HARD_REGNO_MODE_OK (REGNO (SUBREG_REG (out)), outmode)
526                   || (GET_MODE_SIZE (outmode) <= UNITS_PER_WORD
527                       && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (out)))
528                           > UNITS_PER_WORD)
529                       && ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (out)))
530                            / UNITS_PER_WORD)
531                           != HARD_REGNO_NREGS (REGNO (SUBREG_REG (out)),
532                                                GET_MODE (SUBREG_REG (out)))))))))
533     {
534       out_subreg_loc = outloc;
535       outloc = &SUBREG_REG (out);
536       out = *outloc;
537       if (GET_CODE (out) == MEM
538           && GET_MODE_SIZE (GET_MODE (out)) > GET_MODE_SIZE (outmode))
539         abort ();
540       outmode = GET_MODE (out);
541     }
542
543   /* That's all we use STRICT_LOW for, so clear it.  At some point,
544      we may want to get rid of reload_strict_low.  */
545   strict_low = 0;
546
547   /* If IN appears in OUT, we can't share any input-only reload for IN.  */
548   if (in != 0 && out != 0 && GET_CODE (out) == MEM
549       && (GET_CODE (in) == REG || GET_CODE (in) == MEM)
550       && reg_overlap_mentioned_p (in, XEXP (out, 0)))
551     dont_share = 1;
552
553   /* Narrow down the class of register wanted if that is
554      desirable on this machine for efficiency.  */
555   if (in != 0)
556     class = PREFERRED_RELOAD_CLASS (in, class);
557
558   /* Make sure we use a class that can handle the actual pseudo
559      inside any subreg.  For example, on the 386, QImode regs
560      can appear within SImode subregs.  Although GENERAL_REGS
561      can handle SImode, QImode needs a smaller class.  */
562 #ifdef LIMIT_RELOAD_CLASS
563   if (in_subreg_loc)
564     class = LIMIT_RELOAD_CLASS (inmode, class);
565   else if (in != 0 && GET_CODE (in) == SUBREG)
566     class = LIMIT_RELOAD_CLASS (GET_MODE (SUBREG_REG (in)), class);
567
568   if (out_subreg_loc)
569     class = LIMIT_RELOAD_CLASS (outmode, class);
570   if (out != 0 && GET_CODE (out) == SUBREG)
571     class = LIMIT_RELOAD_CLASS (GET_MODE (SUBREG_REG (out)), class);
572 #endif
573
574   if (class == NO_REGS)
575     abort ();
576
577   /* Verify that this class is at least possible for the mode that
578      is specified.  */
579   if (this_insn_is_asm)
580     {
581       enum machine_mode mode;
582       if (GET_MODE_SIZE (inmode) > GET_MODE_SIZE (outmode))
583         mode = inmode;
584       else
585         mode = outmode;
586       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
587         if (HARD_REGNO_MODE_OK (i, mode)
588             && TEST_HARD_REG_BIT (reg_class_contents[(int) class], i))
589           {
590             int nregs = HARD_REGNO_NREGS (i, mode);
591
592             int j;
593             for (j = 1; j < nregs; j++)
594               if (! TEST_HARD_REG_BIT (reg_class_contents[(int) class], i + j))
595                 break;
596             if (j == nregs)
597               break;
598           }
599       if (i == FIRST_PSEUDO_REGISTER)
600         {
601           error_for_asm (this_insn, "impossible register constraint in `asm'");
602           class = ALL_REGS;
603         }
604     }
605
606   /* We can use an existing reload if the class is right
607      and at least one of IN and OUT is a match
608      and the other is at worst neutral.
609      (A zero compared against anything is neutral.)  */
610   for (i = 0; i < n_reloads; i++)
611     if ((reg_class_subset_p (class, reload_reg_class[i])
612          || reg_class_subset_p (reload_reg_class[i], class))
613         && reload_strict_low[i] == strict_low
614         /* If the existing reload has a register, it must fit our class.  */
615         && (reload_reg_rtx[i] == 0
616             || TEST_HARD_REG_BIT (reg_class_contents[(int) class],
617                                   true_regnum (reload_reg_rtx[i])))
618         && ((in != 0 && MATCHES (reload_in[i], in) && ! dont_share
619              && (out == 0 || reload_out[i] == 0 || MATCHES (reload_out[i], out)))
620             ||
621             (out != 0 && MATCHES (reload_out[i], out)
622              && (in == 0 || reload_in[i] == 0 || MATCHES (reload_in[i], in)))))
623       break;
624
625   /* Reloading a plain reg for input can match a reload to postincrement
626      that reg, since the postincrement's value is the right value.
627      Likewise, it can match a preincrement reload, since we regard
628      the preincrementation as happening before any ref in this insn
629      to that register.  */
630   if (i == n_reloads)
631     for (i = 0; i < n_reloads; i++)
632       if ((reg_class_subset_p (class, reload_reg_class[i])
633            || reg_class_subset_p (reload_reg_class[i], class))
634           /* If the existing reload has a register, it must fit our class.  */
635           && (reload_reg_rtx[i] == 0
636               || TEST_HARD_REG_BIT (reg_class_contents[(int) class],
637                                     true_regnum (reload_reg_rtx[i])))
638           && reload_strict_low[i] == strict_low
639           && out == 0 && reload_out[i] == 0 && reload_in[i] != 0
640           && ((GET_CODE (in) == REG
641                && (GET_CODE (reload_in[i]) == POST_INC
642                    || GET_CODE (reload_in[i]) == POST_DEC
643                    || GET_CODE (reload_in[i]) == PRE_INC
644                    || GET_CODE (reload_in[i]) == PRE_DEC)
645                && MATCHES (XEXP (reload_in[i], 0), in))
646               ||
647               (GET_CODE (reload_in[i]) == REG
648                && (GET_CODE (in) == POST_INC
649                    || GET_CODE (in) == POST_DEC
650                    || GET_CODE (in) == PRE_INC
651                    || GET_CODE (in) == PRE_DEC)
652                && MATCHES (XEXP (in, 0), reload_in[i]))))
653         {
654           /* Make sure reload_in ultimately has the increment,
655              not the plain register.  */
656           if (GET_CODE (in) == REG)
657             in = reload_in[i];
658           break;
659         }
660
661   if (i == n_reloads)
662     {
663 #ifdef HAVE_SECONDARY_RELOADS
664       enum reg_class secondary_class = NO_REGS;
665       enum reg_class secondary_out_class = NO_REGS;
666       enum machine_mode secondary_mode = inmode;
667       enum machine_mode secondary_out_mode = outmode;
668       enum insn_code secondary_icode;
669       enum insn_code secondary_out_icode = CODE_FOR_nothing;
670       enum reg_class tertiary_class = NO_REGS;
671       enum reg_class tertiary_out_class = NO_REGS;
672       enum machine_mode tertiary_mode;
673       enum machine_mode tertiary_out_mode;
674       enum insn_code tertiary_icode;
675       enum insn_code tertiary_out_icode = CODE_FOR_nothing;
676       int tertiary_reload = -1;
677
678       /* See if we need a secondary reload register to move between
679          CLASS and IN or CLASS and OUT.  Get the modes and icodes to
680          use for each of them if so.  */
681
682 #ifdef SECONDARY_INPUT_RELOAD_CLASS
683       if (in != 0)
684         secondary_class
685           = find_secondary_reload (in, class, inmode, 1, &secondary_icode,
686                                    &secondary_mode, &tertiary_class,
687                                    &tertiary_icode, &tertiary_mode);
688 #endif
689
690 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
691       if (out != 0 && GET_CODE (out) != SCRATCH)
692         secondary_out_class
693           = find_secondary_reload (out, class, outmode, 0,
694                                    &secondary_out_icode, &secondary_out_mode,
695                                    &tertiary_out_class, &tertiary_out_icode,
696                                    &tertiary_out_mode);
697 #endif
698
699       /* We can only record one secondary and one tertiary reload.  If both
700          IN and OUT need secondary reloads, we can only make an in-out
701          reload if neither need an insn and if the classes are compatible.  */
702
703       if (secondary_class != NO_REGS && secondary_out_class != NO_REGS
704           && reg_class_subset_p (secondary_out_class, secondary_class))
705         secondary_class = secondary_out_class;
706
707       if (secondary_class != NO_REGS && secondary_out_class != NO_REGS
708           && (! reg_class_subset_p (secondary_class, secondary_out_class)
709               || secondary_icode != CODE_FOR_nothing
710               || secondary_out_icode != CODE_FOR_nothing))
711         {
712           push_reload (0, out, 0, outloc, class, VOIDmode, outmode,
713                        strict_low, optional, needed_for);
714           out = 0;
715           outloc = 0;
716           outmode = VOIDmode;
717         }
718
719       /* If we need a secondary reload for OUT but not IN, copy the
720          information.  */
721       if (secondary_class == NO_REGS && secondary_out_class != NO_REGS)
722         {
723           secondary_class = secondary_out_class;
724           secondary_icode = secondary_out_icode;
725           tertiary_class = tertiary_out_class;
726           tertiary_icode = tertiary_out_icode;
727           tertiary_mode = tertiary_out_mode;
728         }
729
730       if (secondary_class != NO_REGS)
731         {
732           /* If we need a tertiary reload, see if we have one we can reuse
733              or else make one.  */
734
735           if (tertiary_class != NO_REGS)
736             {
737               for (tertiary_reload = 0; tertiary_reload < n_reloads;
738                    tertiary_reload++)
739                 if (reload_secondary_p[tertiary_reload]
740                     && (reg_class_subset_p (tertiary_class,
741                                             reload_reg_class[tertiary_reload])
742                         || reg_class_subset_p (reload_reg_class[tertiary_reload],
743                                                tertiary_class))
744                     && ((reload_inmode[tertiary_reload] == tertiary_mode)
745                         || reload_inmode[tertiary_reload] == VOIDmode)
746                     && ((reload_outmode[tertiary_reload] == tertiary_mode)
747                         || reload_outmode[tertiary_reload] == VOIDmode)
748                     && (reload_secondary_icode[tertiary_reload]
749                         == CODE_FOR_nothing))
750                     
751                   {
752                     if (tertiary_mode != VOIDmode)
753                       reload_inmode[tertiary_reload] = tertiary_mode;
754                     if (tertiary_out_mode != VOIDmode)
755                       reload_outmode[tertiary_reload] = tertiary_mode;
756                     if (reg_class_subset_p (tertiary_class,
757                                             reload_reg_class[tertiary_reload]))
758                       reload_reg_class[tertiary_reload] = tertiary_class;
759                     if (reload_needed_for[tertiary_reload] != needed_for)
760                       reload_needed_for_multiple[tertiary_reload] = 1;
761                     reload_optional[tertiary_reload] &= optional;
762                     reload_secondary_p[tertiary_reload] = 1;
763                   }
764
765               if (tertiary_reload == n_reloads)
766                 {
767                   /* We need to make a new tertiary reload for this register
768                      class.  */
769                   reload_in[tertiary_reload] = reload_out[tertiary_reload] = 0;
770                   reload_reg_class[tertiary_reload] = tertiary_class;
771                   reload_inmode[tertiary_reload] = tertiary_mode;
772                   reload_outmode[tertiary_reload] = tertiary_mode;
773                   reload_reg_rtx[tertiary_reload] = 0;
774                   reload_optional[tertiary_reload] = optional;
775                   reload_inc[tertiary_reload] = 0;
776                   reload_strict_low[tertiary_reload] = 0;
777                   /* Maybe we could combine these, but it seems too tricky.  */
778                   reload_nocombine[tertiary_reload] = 1;
779                   reload_in_reg[tertiary_reload] = 0;
780                   reload_needed_for[tertiary_reload] = needed_for;
781                   reload_needed_for_multiple[tertiary_reload] = 0;
782                   reload_secondary_reload[tertiary_reload] = -1;
783                   reload_secondary_icode[tertiary_reload] = CODE_FOR_nothing;
784                   reload_secondary_p[tertiary_reload] = 1;
785
786                   n_reloads++;
787                   i = n_reloads;
788                 }
789             }
790
791           /* See if we can reuse an existing secondary reload.  */
792           for (secondary_reload = 0; secondary_reload < n_reloads;
793                secondary_reload++)
794             if (reload_secondary_p[secondary_reload]
795                 && (reg_class_subset_p (secondary_class,
796                                         reload_reg_class[secondary_reload])
797                     || reg_class_subset_p (reload_reg_class[secondary_reload],
798                                            secondary_class))
799                 && ((reload_inmode[secondary_reload] == secondary_mode)
800                     || reload_inmode[secondary_reload] == VOIDmode)
801                 && ((reload_outmode[secondary_reload] == secondary_out_mode)
802                     || reload_outmode[secondary_reload] == VOIDmode)
803                 && reload_secondary_reload[secondary_reload] == tertiary_reload
804                 && reload_secondary_icode[secondary_reload] == tertiary_icode)
805               {
806                 if (secondary_mode != VOIDmode)
807                   reload_inmode[secondary_reload] = secondary_mode;
808                 if (secondary_out_mode != VOIDmode)
809                   reload_outmode[secondary_reload] = secondary_out_mode;
810                 if (reg_class_subset_p (secondary_class,
811                                         reload_reg_class[secondary_reload]))
812                   reload_reg_class[secondary_reload] = secondary_class;
813                 if (reload_needed_for[secondary_reload] != needed_for)
814                   reload_needed_for_multiple[secondary_reload] = 1;
815                 reload_optional[secondary_reload] &= optional;
816                 reload_secondary_p[secondary_reload] = 1;
817               }
818
819           if (secondary_reload == n_reloads)
820             {
821               /* We need to make a new secondary reload for this register
822                  class.  */
823               reload_in[secondary_reload] = reload_out[secondary_reload] = 0;
824               reload_reg_class[secondary_reload] = secondary_class;
825               reload_inmode[secondary_reload] = secondary_mode;
826               reload_outmode[secondary_reload] = secondary_out_mode;
827               reload_reg_rtx[secondary_reload] = 0;
828               reload_optional[secondary_reload] = optional;
829               reload_inc[secondary_reload] = 0;
830               reload_strict_low[secondary_reload] = 0;
831               /* Maybe we could combine these, but it seems too tricky.  */
832               reload_nocombine[secondary_reload] = 1;
833               reload_in_reg[secondary_reload] = 0;
834               reload_needed_for[secondary_reload] = needed_for;
835               reload_needed_for_multiple[secondary_reload] = 0;
836               reload_secondary_reload[secondary_reload] = tertiary_reload;
837               reload_secondary_icode[secondary_reload] = tertiary_icode;
838               reload_secondary_p[secondary_reload] = 1;
839
840               n_reloads++;
841               i = n_reloads;
842             }
843         }
844 #endif
845
846       /* We found no existing reload suitable for re-use.
847          So add an additional reload.  */
848
849       reload_in[i] = in;
850       reload_out[i] = out;
851       reload_reg_class[i] = class;
852       reload_inmode[i] = inmode;
853       reload_outmode[i] = outmode;
854       reload_reg_rtx[i] = 0;
855       reload_optional[i] = optional;
856       reload_inc[i] = 0;
857       reload_strict_low[i] = strict_low;
858       reload_nocombine[i] = 0;
859       reload_in_reg[i] = inloc ? *inloc : 0;
860       reload_needed_for[i] = needed_for;
861       reload_needed_for_multiple[i] = 0;
862       reload_secondary_reload[i] = secondary_reload;
863       reload_secondary_icode[i] = secondary_icode;
864       reload_secondary_p[i] = 0;
865
866       n_reloads++;
867     }
868   else
869     {
870       /* We are reusing an existing reload,
871          but we may have additional information for it.
872          For example, we may now have both IN and OUT
873          while the old one may have just one of them.  */
874
875       if (inmode != VOIDmode)
876         reload_inmode[i] = inmode;
877       if (outmode != VOIDmode)
878         reload_outmode[i] = outmode;
879       if (in != 0)
880         reload_in[i] = in;
881       if (out != 0)
882         reload_out[i] = out;
883       if (reg_class_subset_p (class, reload_reg_class[i]))
884         reload_reg_class[i] = class;
885       reload_optional[i] &= optional;
886       if (reload_needed_for[i] != needed_for)
887         reload_needed_for_multiple[i] = 1;
888     }
889
890   /* If the ostensible rtx being reload differs from the rtx found
891      in the location to substitute, this reload is not safe to combine
892      because we cannot reliably tell whether it appears in the insn.  */
893
894   if (in != 0 && in != *inloc)
895     reload_nocombine[i] = 1;
896
897 #if 0
898   /* This was replaced by changes in find_reloads_address_1 and the new
899      function inc_for_reload, which go with a new meaning of reload_inc.  */
900
901   /* If this is an IN/OUT reload in an insn that sets the CC,
902      it must be for an autoincrement.  It doesn't work to store
903      the incremented value after the insn because that would clobber the CC.
904      So we must do the increment of the value reloaded from,
905      increment it, store it back, then decrement again.  */
906   if (out != 0 && sets_cc0_p (PATTERN (this_insn)))
907     {
908       out = 0;
909       reload_out[i] = 0;
910       reload_inc[i] = find_inc_amount (PATTERN (this_insn), in);
911       /* If we did not find a nonzero amount-to-increment-by,
912          that contradicts the belief that IN is being incremented
913          in an address in this insn.  */
914       if (reload_inc[i] == 0)
915         abort ();
916     }
917 #endif
918
919   /* If we will replace IN and OUT with the reload-reg,
920      record where they are located so that substitution need
921      not do a tree walk.  */
922
923   if (replace_reloads)
924     {
925       if (inloc != 0)
926         {
927           register struct replacement *r = &replacements[n_replacements++];
928           r->what = i;
929           r->subreg_loc = in_subreg_loc;
930           r->where = inloc;
931           r->mode = inmode;
932         }
933       if (outloc != 0 && outloc != inloc)
934         {
935           register struct replacement *r = &replacements[n_replacements++];
936           r->what = i;
937           r->where = outloc;
938           r->subreg_loc = out_subreg_loc;
939           r->mode = outmode;
940         }
941     }
942
943   /* If this reload is just being introduced and it has both
944      an incoming quantity and an outgoing quantity that are
945      supposed to be made to match, see if either one of the two
946      can serve as the place to reload into.
947
948      If one of them is acceptable, set reload_reg_rtx[i]
949      to that one.  */
950
951   if (in != 0 && out != 0 && in != out && reload_reg_rtx[i] == 0)
952     {
953       reload_reg_rtx[i] = find_dummy_reload (in, out, inloc, outloc,
954                                              reload_reg_class[i], i);
955
956       /* If the outgoing register already contains the same value
957          as the incoming one, we can dispense with loading it.
958          The easiest way to tell the caller that is to give a phony
959          value for the incoming operand (same as outgoing one).  */
960       if (reload_reg_rtx[i] == out
961           && (GET_CODE (in) == REG || CONSTANT_P (in))
962           && 0 != find_equiv_reg (in, this_insn, 0, REGNO (out),
963                                   static_reload_reg_p, i, inmode))
964         reload_in[i] = out;
965     }
966
967   /* If this is an input reload and the operand contains a register that
968      dies in this insn and is used nowhere else, see if it is the right class
969      to be used for this reload.  Use it if so.  (This occurs most commonly
970      in the case of paradoxical SUBREGs and in-out reloads).  We cannot do
971      this if it is also an output reload that mentions the register unless
972      the output is a SUBREG that clobbers an entire register.
973
974      Note that the operand might be one of the spill regs, if it is a
975      pseudo reg and we are in a block where spilling has not taken place.
976      But if there is no spilling in this block, that is OK.
977      An explicitly used hard reg cannot be a spill reg.  */
978
979   if (reload_reg_rtx[i] == 0 && in != 0)
980     {
981       rtx note;
982       int regno;
983
984       for (note = REG_NOTES (this_insn); note; note = XEXP (note, 1))
985         if (REG_NOTE_KIND (note) == REG_DEAD
986             && GET_CODE (XEXP (note, 0)) == REG
987             && (regno = REGNO (XEXP (note, 0))) < FIRST_PSEUDO_REGISTER
988             && reg_mentioned_p (XEXP (note, 0), in)
989             && ! refers_to_regno_for_reload_p (regno,
990                                                (regno
991                                                 + HARD_REGNO_NREGS (regno,
992                                                                     inmode)),
993                                                PATTERN (this_insn), inloc)
994             && (in != out
995                 || (GET_CODE (in) == SUBREG
996                     && (((GET_MODE_SIZE (GET_MODE (in)) + (UNITS_PER_WORD - 1))
997                          / UNITS_PER_WORD)
998                         == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (in)))
999                              + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD))))
1000             /* Make sure the operand fits in the reg that dies.  */
1001             && GET_MODE_SIZE (inmode) <= GET_MODE_SIZE (GET_MODE (XEXP (note, 0)))
1002             && HARD_REGNO_MODE_OK (regno, inmode)
1003             && GET_MODE_SIZE (outmode) <= GET_MODE_SIZE (GET_MODE (XEXP (note, 0)))
1004             && HARD_REGNO_MODE_OK (regno, outmode)
1005             && TEST_HARD_REG_BIT (reg_class_contents[(int) class], regno)
1006             && !fixed_regs[regno])
1007           {
1008             reload_reg_rtx[i] = gen_rtx (REG, inmode, regno);
1009             break;
1010           }
1011     }
1012
1013   if (out)
1014     output_reloadnum = i;
1015
1016   return i;
1017 }
1018
1019 /* Record an additional place we must replace a value
1020    for which we have already recorded a reload.
1021    RELOADNUM is the value returned by push_reload
1022    when the reload was recorded.
1023    This is used in insn patterns that use match_dup.  */
1024
1025 static void
1026 push_replacement (loc, reloadnum, mode)
1027      rtx *loc;
1028      int reloadnum;
1029      enum machine_mode mode;
1030 {
1031   if (replace_reloads)
1032     {
1033       register struct replacement *r = &replacements[n_replacements++];
1034       r->what = reloadnum;
1035       r->where = loc;
1036       r->subreg_loc = 0;
1037       r->mode = mode;
1038     }
1039 }
1040 \f
1041 /* If there is only one output reload, and it is not for an earlyclobber
1042    operand, try to combine it with a (logically unrelated) input reload
1043    to reduce the number of reload registers needed.
1044
1045    This is safe if the input reload does not appear in
1046    the value being output-reloaded, because this implies
1047    it is not needed any more once the original insn completes.
1048
1049    If that doesn't work, see we can use any of the registers that
1050    die in this insn as a reload register.  We can if it is of the right
1051    class and does not appear in the value being output-reloaded.  */
1052
1053 static void
1054 combine_reloads ()
1055 {
1056   int i;
1057   int output_reload = -1;
1058   rtx note;
1059
1060   /* Find the output reload; return unless there is exactly one
1061      and that one is mandatory.  */
1062
1063   for (i = 0; i < n_reloads; i++)
1064     if (reload_out[i] != 0)
1065       {
1066         if (output_reload >= 0)
1067           return;
1068         output_reload = i;
1069       }
1070
1071   if (output_reload < 0 || reload_optional[output_reload])
1072     return;
1073
1074   /* An input-output reload isn't combinable.  */
1075
1076   if (reload_in[output_reload] != 0)
1077     return;
1078
1079   /* If this reload is for an earlyclobber operand, we can't do anyting.  */
1080
1081   for (i = 0; i < n_earlyclobbers; i++)
1082     if (reload_out[output_reload] == reload_earlyclobbers[i])
1083       return;
1084
1085   /* Check each input reload; can we combine it?  */
1086
1087   for (i = 0; i < n_reloads; i++)
1088     if (reload_in[i] && ! reload_optional[i] && ! reload_nocombine[i]
1089         /* Life span of this reload must not extend past main insn.  */
1090         && reload_when_needed[i] != RELOAD_FOR_OUTPUT_RELOAD_ADDRESS
1091         && reload_inmode[i] == reload_outmode[output_reload]
1092         && reload_inc[i] == 0
1093         && reload_reg_rtx[i] == 0
1094         && reload_strict_low[i] == 0
1095         /* Don't combine two reloads with different secondary reloads. */
1096         && (reload_secondary_reload[i] == reload_secondary_reload[output_reload]
1097             || reload_secondary_reload[i] == -1
1098             || reload_secondary_reload[output_reload] == -1)
1099         && (reg_class_subset_p (reload_reg_class[i],
1100                                 reload_reg_class[output_reload])
1101             || reg_class_subset_p (reload_reg_class[output_reload],
1102                                    reload_reg_class[i]))
1103         && (MATCHES (reload_in[i], reload_out[output_reload])
1104             /* Args reversed because the first arg seems to be
1105                the one that we imagine being modified
1106                while the second is the one that might be affected.  */
1107             || (! reg_overlap_mentioned_p (reload_out[output_reload],
1108                                            reload_in[i])
1109                 /* However, if the input is a register that appears inside
1110                    the output, then we also can't share.
1111                    Imagine (set (mem (reg 69)) (plus (reg 69) ...)).
1112                    If the same reload reg is used for both reg 69 and the
1113                    result to be stored in memory, then that result
1114                    will clobber the address of the memory ref.  */
1115                 && ! (GET_CODE (reload_in[i]) == REG
1116                       && reg_overlap_mentioned_p (reload_in[i],
1117                                                   reload_out[output_reload])))))
1118       {
1119         int j;
1120
1121         /* We have found a reload to combine with!  */
1122         reload_out[i] = reload_out[output_reload];
1123         reload_outmode[i] = reload_outmode[output_reload];
1124         /* Mark the old output reload as inoperative.  */
1125         reload_out[output_reload] = 0;
1126         /* The combined reload is needed for the entire insn.  */
1127         reload_needed_for_multiple[i] = 1;
1128         reload_when_needed[i] = RELOAD_OTHER;
1129         /* If the output reload had a secondary reload, copy it. */
1130         if (reload_secondary_reload[output_reload] != -1)
1131           reload_secondary_reload[i] = reload_secondary_reload[output_reload];
1132         /* If required, minimize the register class. */
1133         if (reg_class_subset_p (reload_reg_class[output_reload],
1134                                 reload_reg_class[i]))
1135           reload_reg_class[i] = reload_reg_class[output_reload];
1136
1137         /* Transfer all replacements from the old reload to the combined.  */
1138         for (j = 0; j < n_replacements; j++)
1139           if (replacements[j].what == output_reload)
1140             replacements[j].what = i;
1141
1142         return;
1143       }
1144
1145   /* If this insn has only one operand that is modified or written (assumed
1146      to be the first),  it must be the one corresponding to this reload.  It
1147      is safe to use anything that dies in this insn for that output provided
1148      that it does not occur in the output (we already know it isn't an
1149      earlyclobber.  If this is an asm insn, give up.  */
1150
1151   if (INSN_CODE (this_insn) == -1)
1152     return;
1153
1154   for (i = 1; i < insn_n_operands[INSN_CODE (this_insn)]; i++)
1155     if (insn_operand_constraint[INSN_CODE (this_insn)][i][0] == '='
1156         || insn_operand_constraint[INSN_CODE (this_insn)][i][0] == '+')
1157       return;
1158
1159   /* See if some hard register that dies in this insn and is not used in
1160      the output is the right class.  Only works if the register we pick
1161      up can fully hold our output reload.  */
1162   for (note = REG_NOTES (this_insn); note; note = XEXP (note, 1))
1163     if (REG_NOTE_KIND (note) == REG_DEAD
1164         && GET_CODE (XEXP (note, 0)) == REG
1165         && ! reg_overlap_mentioned_p (XEXP (note, 0),
1166                                       reload_out[output_reload])
1167         && REGNO (XEXP (note, 0)) < FIRST_PSEUDO_REGISTER
1168         && HARD_REGNO_MODE_OK (REGNO (XEXP (note, 0)), reload_outmode[output_reload])
1169         && TEST_HARD_REG_BIT (reg_class_contents[(int) reload_reg_class[output_reload]],
1170                               REGNO (XEXP (note, 0)))
1171         && (HARD_REGNO_NREGS (REGNO (XEXP (note, 0)), reload_outmode[output_reload])
1172             <= HARD_REGNO_NREGS (REGNO (XEXP (note, 0)), GET_MODE (XEXP (note, 0))))
1173         && ! fixed_regs[REGNO (XEXP (note, 0))])
1174       {
1175         reload_reg_rtx[output_reload] = gen_rtx (REG,
1176                                                  reload_outmode[output_reload],
1177                                                  REGNO (XEXP (note, 0)));
1178         return;
1179       }
1180 }
1181 \f
1182 /* Try to find a reload register for an in-out reload (expressions IN and OUT).
1183    See if one of IN and OUT is a register that may be used;
1184    this is desirable since a spill-register won't be needed.
1185    If so, return the register rtx that proves acceptable.
1186
1187    INLOC and OUTLOC are locations where IN and OUT appear in the insn.
1188    CLASS is the register class required for the reload.
1189
1190    If FOR_REAL is >= 0, it is the number of the reload,
1191    and in some cases when it can be discovered that OUT doesn't need
1192    to be computed, clear out reload_out[FOR_REAL].
1193
1194    If FOR_REAL is -1, this should not be done, because this call
1195    is just to see if a register can be found, not to find and install it.  */
1196
1197 static rtx
1198 find_dummy_reload (real_in, real_out, inloc, outloc, class, for_real)
1199      rtx real_in, real_out;
1200      rtx *inloc, *outloc;
1201      enum reg_class class;
1202      int for_real;
1203 {
1204   rtx in = real_in;
1205   rtx out = real_out;
1206   int in_offset = 0;
1207   int out_offset = 0;
1208   rtx value = 0;
1209
1210   /* If operands exceed a word, we can't use either of them
1211      unless they have the same size.  */
1212   if (GET_MODE_SIZE (GET_MODE (real_out)) != GET_MODE_SIZE (GET_MODE (real_in))
1213       && (GET_MODE_SIZE (GET_MODE (real_out)) > UNITS_PER_WORD
1214           || GET_MODE_SIZE (GET_MODE (real_in)) > UNITS_PER_WORD))
1215     return 0;
1216
1217   /* Find the inside of any subregs.  */
1218   while (GET_CODE (out) == SUBREG)
1219     {
1220       out_offset = SUBREG_WORD (out);
1221       out = SUBREG_REG (out);
1222     }
1223   while (GET_CODE (in) == SUBREG)
1224     {
1225       in_offset = SUBREG_WORD (in);
1226       in = SUBREG_REG (in);
1227     }
1228
1229   /* Narrow down the reg class, the same way push_reload will;
1230      otherwise we might find a dummy now, but push_reload won't.  */
1231   class = PREFERRED_RELOAD_CLASS (in, class);
1232
1233   /* See if OUT will do.  */
1234   if (GET_CODE (out) == REG
1235       && REGNO (out) < FIRST_PSEUDO_REGISTER)
1236     {
1237       register int regno = REGNO (out) + out_offset;
1238       int nwords = HARD_REGNO_NREGS (regno, GET_MODE (real_out));
1239
1240       /* When we consider whether the insn uses OUT,
1241          ignore references within IN.  They don't prevent us
1242          from copying IN into OUT, because those refs would
1243          move into the insn that reloads IN.
1244
1245          However, we only ignore IN in its role as this reload.
1246          If the insn uses IN elsewhere and it contains OUT,
1247          that counts.  We can't be sure it's the "same" operand
1248          so it might not go through this reload.  */
1249       *inloc = const0_rtx;
1250
1251       if (regno < FIRST_PSEUDO_REGISTER
1252           /* A fixed reg that can overlap other regs better not be used
1253              for reloading in any way.  */
1254 #ifdef OVERLAPPING_REGNO_P
1255           && ! (fixed_regs[regno] && OVERLAPPING_REGNO_P (regno))
1256 #endif
1257           && ! refers_to_regno_for_reload_p (regno, regno + nwords,
1258                                              PATTERN (this_insn), outloc))
1259         {
1260           int i;
1261           for (i = 0; i < nwords; i++)
1262             if (! TEST_HARD_REG_BIT (reg_class_contents[(int) class],
1263                                      regno + i))
1264               break;
1265
1266           if (i == nwords)
1267             {
1268               if (GET_CODE (real_out) == REG)
1269                 value = real_out;
1270               else
1271                 value = gen_rtx (REG, GET_MODE (real_out), regno);
1272             }
1273         }
1274
1275       *inloc = real_in;
1276     }
1277
1278   /* Consider using IN if OUT was not acceptable
1279      or if OUT dies in this insn (like the quotient in a divmod insn).
1280      We can't use IN unless it is dies in this insn,
1281      which means we must know accurately which hard regs are live.
1282      Also, the result can't go in IN if IN is used within OUT.  */
1283   if (hard_regs_live_known
1284       && GET_CODE (in) == REG
1285       && REGNO (in) < FIRST_PSEUDO_REGISTER
1286       && (value == 0
1287           || find_reg_note (this_insn, REG_UNUSED, real_out))
1288       && find_reg_note (this_insn, REG_DEAD, real_in)
1289       && !fixed_regs[REGNO (in)]
1290       && HARD_REGNO_MODE_OK (REGNO (in), GET_MODE (out)))
1291     {
1292       register int regno = REGNO (in) + in_offset;
1293       int nwords = HARD_REGNO_NREGS (regno, GET_MODE (real_in));
1294
1295       if (! refers_to_regno_for_reload_p (regno, regno + nwords, out, 0)
1296           && ! hard_reg_set_here_p (regno, regno + nwords,
1297                                     PATTERN (this_insn)))
1298         {
1299           int i;
1300           for (i = 0; i < nwords; i++)
1301             if (! TEST_HARD_REG_BIT (reg_class_contents[(int) class],
1302                                      regno + i))
1303               break;
1304
1305           if (i == nwords)
1306             {
1307               /* If we were going to use OUT as the reload reg
1308                  and changed our mind, it means OUT is a dummy that
1309                  dies here.  So don't bother copying value to it.  */
1310               if (for_real >= 0 && value == real_out)
1311                 reload_out[for_real] = 0;
1312               if (GET_CODE (real_in) == REG)
1313                 value = real_in;
1314               else
1315                 value = gen_rtx (REG, GET_MODE (real_in), regno);
1316             }
1317         }
1318     }
1319
1320   return value;
1321 }
1322 \f
1323 /* This page contains subroutines used mainly for determining
1324    whether the IN or an OUT of a reload can serve as the
1325    reload register.  */
1326
1327 /* Return 1 if expression X alters a hard reg in the range
1328    from BEG_REGNO (inclusive) to END_REGNO (exclusive),
1329    either explicitly or in the guise of a pseudo-reg allocated to REGNO.
1330    X should be the body of an instruction.  */
1331
1332 static int
1333 hard_reg_set_here_p (beg_regno, end_regno, x)
1334      register int beg_regno, end_regno;
1335      rtx x;
1336 {
1337   if (GET_CODE (x) == SET || GET_CODE (x) == CLOBBER)
1338     {
1339       register rtx op0 = SET_DEST (x);
1340       while (GET_CODE (op0) == SUBREG)
1341         op0 = SUBREG_REG (op0);
1342       if (GET_CODE (op0) == REG)
1343         {
1344           register int r = REGNO (op0);
1345           /* See if this reg overlaps range under consideration.  */
1346           if (r < end_regno
1347               && r + HARD_REGNO_NREGS (r, GET_MODE (op0)) > beg_regno)
1348             return 1;
1349         }
1350     }
1351   else if (GET_CODE (x) == PARALLEL)
1352     {
1353       register int i = XVECLEN (x, 0) - 1;
1354       for (; i >= 0; i--)
1355         if (hard_reg_set_here_p (beg_regno, end_regno, XVECEXP (x, 0, i)))
1356           return 1;
1357     }
1358
1359   return 0;
1360 }
1361
1362 /* Return 1 if ADDR is a valid memory address for mode MODE,
1363    and check that each pseudo reg has the proper kind of
1364    hard reg.  */
1365
1366 int
1367 strict_memory_address_p (mode, addr)
1368      enum machine_mode mode;
1369      register rtx addr;
1370 {
1371   GO_IF_LEGITIMATE_ADDRESS (mode, addr, win);
1372   return 0;
1373
1374  win:
1375   return 1;
1376 }
1377
1378 \f
1379 /* Like rtx_equal_p except that it allows a REG and a SUBREG to match
1380    if they are the same hard reg, and has special hacks for
1381    autoincrement and autodecrement.
1382    This is specifically intended for find_reloads to use
1383    in determining whether two operands match.
1384    X is the operand whose number is the lower of the two.
1385
1386    The value is 2 if Y contains a pre-increment that matches
1387    a non-incrementing address in X.  */
1388
1389 /* ??? To be completely correct, we should arrange to pass
1390    for X the output operand and for Y the input operand.
1391    For now, we assume that the output operand has the lower number
1392    because that is natural in (SET output (... input ...)).  */
1393
1394 int
1395 operands_match_p (x, y)
1396      register rtx x, y;
1397 {
1398   register int i;
1399   register RTX_CODE code = GET_CODE (x);
1400   register char *fmt;
1401   int success_2;
1402       
1403   if (x == y)
1404     return 1;
1405   if ((code == REG || (code == SUBREG && GET_CODE (SUBREG_REG (x)) == REG))
1406       && (GET_CODE (y) == REG || (GET_CODE (y) == SUBREG
1407                                   && GET_CODE (SUBREG_REG (y)) == REG)))
1408     {
1409       register int j;
1410
1411       if (code == SUBREG)
1412         {
1413           i = REGNO (SUBREG_REG (x));
1414           if (i >= FIRST_PSEUDO_REGISTER)
1415             goto slow;
1416           i += SUBREG_WORD (x);
1417         }
1418       else
1419         i = REGNO (x);
1420
1421       if (GET_CODE (y) == SUBREG)
1422         {
1423           j = REGNO (SUBREG_REG (y));
1424           if (j >= FIRST_PSEUDO_REGISTER)
1425             goto slow;
1426           j += SUBREG_WORD (y);
1427         }
1428       else
1429         j = REGNO (y);
1430
1431       return i == j;
1432     }
1433   /* If two operands must match, because they are really a single
1434      operand of an assembler insn, then two postincrements are invalid
1435      because the assembler insn would increment only once.
1436      On the other hand, an postincrement matches ordinary indexing
1437      if the postincrement is the output operand.  */
1438   if (code == POST_DEC || code == POST_INC)
1439     return operands_match_p (XEXP (x, 0), y);
1440   /* Two preincrements are invalid
1441      because the assembler insn would increment only once.
1442      On the other hand, an preincrement matches ordinary indexing
1443      if the preincrement is the input operand.
1444      In this case, return 2, since some callers need to do special
1445      things when this happens.  */
1446   if (GET_CODE (y) == PRE_DEC || GET_CODE (y) == PRE_INC)
1447     return operands_match_p (x, XEXP (y, 0)) ? 2 : 0;
1448
1449  slow:
1450
1451   /* Now we have disposed of all the cases 
1452      in which different rtx codes can match.  */
1453   if (code != GET_CODE (y))
1454     return 0;
1455   if (code == LABEL_REF)
1456     return XEXP (x, 0) == XEXP (y, 0);
1457   if (code == SYMBOL_REF)
1458     return XSTR (x, 0) == XSTR (y, 0);
1459
1460   /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent.  */
1461
1462   if (GET_MODE (x) != GET_MODE (y))
1463     return 0;
1464
1465   /* Compare the elements.  If any pair of corresponding elements
1466      fail to match, return 0 for the whole things.  */
1467
1468   success_2 = 0;
1469   fmt = GET_RTX_FORMAT (code);
1470   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1471     {
1472       int val;
1473       switch (fmt[i])
1474         {
1475         case 'i':
1476           if (XINT (x, i) != XINT (y, i))
1477             return 0;
1478           break;
1479
1480         case 'e':
1481           val = operands_match_p (XEXP (x, i), XEXP (y, i));
1482           if (val == 0)
1483             return 0;
1484           /* If any subexpression returns 2,
1485              we should return 2 if we are successful.  */
1486           if (val == 2)
1487             success_2 = 1;
1488           break;
1489
1490         case '0':
1491           break;
1492
1493           /* It is believed that rtx's at this level will never
1494              contain anything but integers and other rtx's,
1495              except for within LABEL_REFs and SYMBOL_REFs.  */
1496         default:
1497           abort ();
1498         }
1499     }
1500   return 1 + success_2;
1501 }
1502 \f
1503 /* Return the number of times character C occurs in string S.  */
1504
1505 static int
1506 n_occurrences (c, s)
1507      char c;
1508      char *s;
1509 {
1510   int n = 0;
1511   while (*s)
1512     n += (*s++ == c);
1513   return n;
1514 }
1515 \f
1516 struct decomposition
1517 {
1518   int reg_flag;
1519   int safe;
1520   rtx base;
1521   int start;
1522   int end;
1523 };
1524
1525 /* Describe the range of registers or memory referenced by X.
1526    If X is a register, set REG_FLAG and put the first register 
1527    number into START and the last plus one into END.
1528    If X is a memory reference, put a base address into BASE 
1529    and a range of integer offsets into START and END.
1530    If X is pushing on the stack, we can assume it causes no trouble, 
1531    so we set the SAFE field.  */
1532
1533 static struct decomposition
1534 decompose (x)
1535      rtx x;
1536 {
1537   struct decomposition val;
1538   int all_const = 0;
1539
1540   val.reg_flag = 0;
1541   val.safe = 0;
1542   if (GET_CODE (x) == MEM)
1543     {
1544       rtx base, offset = 0;
1545       rtx addr = XEXP (x, 0);
1546
1547       if (GET_CODE (addr) == PRE_DEC || GET_CODE (addr) == PRE_INC
1548           || GET_CODE (addr) == POST_DEC || GET_CODE (addr) == POST_INC)
1549         {
1550           val.base = XEXP (addr, 0);
1551           val.start = - GET_MODE_SIZE (GET_MODE (x));
1552           val.end = GET_MODE_SIZE (GET_MODE (x));
1553           val.safe = REGNO (val.base) == STACK_POINTER_REGNUM;
1554           return val;
1555         }
1556
1557       if (GET_CODE (addr) == CONST)
1558         {
1559           addr = XEXP (addr, 0);
1560           all_const = 1;
1561         }
1562       if (GET_CODE (addr) == PLUS)
1563         {
1564           if (CONSTANT_P (XEXP (addr, 0)))
1565             {
1566               base = XEXP (addr, 1);
1567               offset = XEXP (addr, 0);
1568             }
1569           else if (CONSTANT_P (XEXP (addr, 1)))
1570             {
1571               base = XEXP (addr, 0);
1572               offset = XEXP (addr, 1);
1573             }
1574         }
1575
1576       if (offset == 0)
1577         {
1578           base = addr;
1579           offset = const0_rtx;
1580         } 
1581       if (GET_CODE (offset) == CONST)
1582         offset = XEXP (offset, 0);
1583       if (GET_CODE (offset) == PLUS)
1584         {
1585           if (GET_CODE (XEXP (offset, 0)) == CONST_INT)
1586             {
1587               base = gen_rtx (PLUS, GET_MODE (base), base, XEXP (offset, 1));
1588               offset = XEXP (offset, 0);
1589             }
1590           else if (GET_CODE (XEXP (offset, 1)) == CONST_INT)
1591             {
1592               base = gen_rtx (PLUS, GET_MODE (base), base, XEXP (offset, 0));
1593               offset = XEXP (offset, 1);
1594             }
1595           else
1596             {
1597               base = gen_rtx (PLUS, GET_MODE (base), base, offset);
1598               offset = const0_rtx;
1599             }
1600         }
1601       else if (GET_CODE (offset) != CONST_INT)
1602         {
1603           base = gen_rtx (PLUS, GET_MODE (base), base, offset);
1604           offset = const0_rtx;
1605         }
1606
1607       if (all_const && GET_CODE (base) == PLUS)
1608         base = gen_rtx (CONST, GET_MODE (base), base);
1609
1610       if (GET_CODE (offset) != CONST_INT)
1611         abort ();
1612
1613       val.start = INTVAL (offset);
1614       val.end = val.start + GET_MODE_SIZE (GET_MODE (x));
1615       val.base = base;
1616       return val;
1617     }
1618   else if (GET_CODE (x) == REG)
1619     {
1620       val.reg_flag = 1;
1621       val.start = true_regnum (x); 
1622       if (val.start < 0)
1623         {
1624           /* A pseudo with no hard reg.  */
1625           val.start = REGNO (x);
1626           val.end = val.start + 1;
1627         }
1628       else
1629         /* A hard reg.  */
1630         val.end = val.start + HARD_REGNO_NREGS (val.start, GET_MODE (x));
1631     }
1632   else if (GET_CODE (x) == SUBREG)
1633     {
1634       if (GET_CODE (SUBREG_REG (x)) != REG)
1635         /* This could be more precise, but it's good enough.  */
1636         return decompose (SUBREG_REG (x));
1637       val.reg_flag = 1;
1638       val.start = true_regnum (x); 
1639       if (val.start < 0)
1640         return decompose (SUBREG_REG (x));
1641       else
1642         /* A hard reg.  */
1643         val.end = val.start + HARD_REGNO_NREGS (val.start, GET_MODE (x));
1644     }
1645   else if (CONSTANT_P (x)
1646            /* This hasn't been assigned yet, so it can't conflict yet.  */
1647            || GET_CODE (x) == SCRATCH)
1648     val.safe = 1;
1649   else
1650     abort ();
1651   return val;
1652 }
1653
1654 /* Return 1 if altering Y will not modify the value of X.
1655    Y is also described by YDATA, which should be decompose (Y).  */
1656
1657 static int
1658 immune_p (x, y, ydata)
1659      rtx x, y;
1660      struct decomposition ydata;
1661 {
1662   struct decomposition xdata;
1663
1664   if (ydata.reg_flag)
1665     return !refers_to_regno_for_reload_p (ydata.start, ydata.end, x, 0);
1666   if (ydata.safe)
1667     return 1;
1668
1669   if (GET_CODE (y) != MEM)
1670     abort ();
1671   /* If Y is memory and X is not, Y can't affect X.  */
1672   if (GET_CODE (x) != MEM)
1673     return 1;
1674
1675   xdata =  decompose (x);
1676
1677   if (! rtx_equal_p (xdata.base, ydata.base))
1678     {
1679       /* If bases are distinct symbolic constants, there is no overlap.  */
1680       if (CONSTANT_P (xdata.base) && CONSTANT_P (ydata.base))
1681         return 1;
1682       /* Constants and stack slots never overlap.  */
1683       if (CONSTANT_P (xdata.base)
1684           && (ydata.base == frame_pointer_rtx
1685               || ydata.base == stack_pointer_rtx))
1686         return 1;
1687       if (CONSTANT_P (ydata.base)
1688           && (xdata.base == frame_pointer_rtx
1689               || xdata.base == stack_pointer_rtx))
1690         return 1;
1691       /* If either base is variable, we don't know anything.  */
1692       return 0;
1693     }
1694
1695
1696   return (xdata.start >= ydata.end || ydata.start >= xdata.end);
1697 }
1698
1699 /* Similiar, but calls decompose.  */
1700
1701 int
1702 safe_from_earlyclobber (op, clobber)
1703      rtx op, clobber;
1704 {
1705   struct decomposition early_data;
1706
1707   early_data = decompose (clobber);
1708   return immune_p (op, clobber, early_data);
1709 }
1710 \f
1711 /* Main entry point of this file: search the body of INSN
1712    for values that need reloading and record them with push_reload.
1713    REPLACE nonzero means record also where the values occur
1714    so that subst_reloads can be used.
1715
1716    IND_LEVELS says how many levels of indirection are supported by this
1717    machine; a value of zero means that a memory reference is not a valid
1718    memory address.
1719
1720    LIVE_KNOWN says we have valid information about which hard
1721    regs are live at each point in the program; this is true when
1722    we are called from global_alloc but false when stupid register
1723    allocation has been done.
1724
1725    RELOAD_REG_P if nonzero is a vector indexed by hard reg number
1726    which is nonnegative if the reg has been commandeered for reloading into.
1727    It is copied into STATIC_RELOAD_REG_P and referenced from there
1728    by various subroutines.  */
1729
1730 void
1731 find_reloads (insn, replace, ind_levels, live_known, reload_reg_p)
1732      rtx insn;
1733      int replace, ind_levels;
1734      int live_known;
1735      short *reload_reg_p;
1736 {
1737   rtx non_reloaded_operands[MAX_RECOG_OPERANDS];
1738   int n_non_reloaded_operands = 0;
1739 #ifdef REGISTER_CONSTRAINTS
1740
1741   enum reload_modified { RELOAD_NOTHING, RELOAD_READ, RELOAD_READ_WRITE, RELOAD_WRITE };
1742
1743   register int insn_code_number;
1744   register int i;
1745   int noperands;
1746   /* These are the constraints for the insn.  We don't change them.  */
1747   char *constraints1[MAX_RECOG_OPERANDS];
1748   /* These start out as the constraints for the insn
1749      and they are chewed up as we consider alternatives.  */
1750   char *constraints[MAX_RECOG_OPERANDS];
1751   /* These are the preferred classes for an operand, or NO_REGS if it isn't
1752      a register.  */
1753   enum reg_class preferred_class[MAX_RECOG_OPERANDS];
1754   char pref_or_nothing[MAX_RECOG_OPERANDS];
1755   /* Nonzero for a MEM operand whose entire address needs a reload.  */
1756   int address_reloaded[MAX_RECOG_OPERANDS];
1757   int no_input_reloads = 0, no_output_reloads = 0;
1758   int n_alternatives;
1759   int this_alternative[MAX_RECOG_OPERANDS];
1760   char this_alternative_win[MAX_RECOG_OPERANDS];
1761   char this_alternative_offmemok[MAX_RECOG_OPERANDS];
1762   char this_alternative_earlyclobber[MAX_RECOG_OPERANDS];
1763   int this_alternative_matches[MAX_RECOG_OPERANDS];
1764   int swapped;
1765   int goal_alternative[MAX_RECOG_OPERANDS];
1766   int this_alternative_number;
1767   int goal_alternative_number;
1768   int operand_reloadnum[MAX_RECOG_OPERANDS];
1769   int goal_alternative_matches[MAX_RECOG_OPERANDS];
1770   int goal_alternative_matched[MAX_RECOG_OPERANDS];
1771   char goal_alternative_win[MAX_RECOG_OPERANDS];
1772   char goal_alternative_offmemok[MAX_RECOG_OPERANDS];
1773   char goal_alternative_earlyclobber[MAX_RECOG_OPERANDS];
1774   int goal_alternative_swapped;
1775   enum reload_modified modified[MAX_RECOG_OPERANDS];
1776   int best;
1777   int commutative;
1778   char operands_match[MAX_RECOG_OPERANDS][MAX_RECOG_OPERANDS];
1779   rtx substed_operand[MAX_RECOG_OPERANDS];
1780   rtx body = PATTERN (insn);
1781   rtx set = single_set (insn);
1782   int goal_earlyclobber, this_earlyclobber;
1783   enum machine_mode operand_mode[MAX_RECOG_OPERANDS];
1784
1785   this_insn = insn;
1786   this_insn_is_asm = 0;         /* Tentative.  */
1787   n_reloads = 0;
1788   n_replacements = 0;
1789   n_memlocs = 0;
1790   n_earlyclobbers = 0;
1791   replace_reloads = replace;
1792   hard_regs_live_known = live_known;
1793   static_reload_reg_p = reload_reg_p;
1794
1795   /* JUMP_INSNs and CALL_INSNs are not allowed to have any output reloads;
1796      neither are insns that SET cc0.  Insns that use CC0 are not allowed
1797      to have any input reloads.  */
1798   if (GET_CODE (insn) == JUMP_INSN || GET_CODE (insn) == CALL_INSN)
1799     no_output_reloads = 1;
1800
1801 #ifdef HAVE_cc0
1802   if (reg_referenced_p (cc0_rtx, PATTERN (insn)))
1803     no_input_reloads = 1;
1804   if (reg_set_p (cc0_rtx, PATTERN (insn)))
1805     no_output_reloads = 1;
1806 #endif
1807      
1808   /* Find what kind of insn this is.  NOPERANDS gets number of operands.
1809      Make OPERANDS point to a vector of operand values.
1810      Make OPERAND_LOCS point to a vector of pointers to
1811      where the operands were found.
1812      Fill CONSTRAINTS and CONSTRAINTS1 with pointers to the
1813      constraint-strings for this insn.
1814      Return if the insn needs no reload processing.  */
1815
1816   switch (GET_CODE (body))
1817     {
1818     case USE:
1819     case CLOBBER:
1820     case ASM_INPUT:
1821     case ADDR_VEC:
1822     case ADDR_DIFF_VEC:
1823       return;
1824
1825     case SET:
1826       /* Dispose quickly of (set (reg..) (reg..)) if both have hard regs and it
1827          is cheap to move between them.  If it is not, there may not be an insn
1828          to do the copy, so we may need a reload.  */
1829       if (GET_CODE (SET_DEST (body)) == REG
1830           && REGNO (SET_DEST (body)) < FIRST_PSEUDO_REGISTER
1831           && GET_CODE (SET_SRC (body)) == REG
1832           && REGNO (SET_SRC (body)) < FIRST_PSEUDO_REGISTER
1833           && REGISTER_MOVE_COST (REGNO_REG_CLASS (REGNO (SET_SRC (body))),
1834                                  REGNO_REG_CLASS (REGNO (SET_DEST (body)))) == 2)
1835         return;
1836     case PARALLEL:
1837     case ASM_OPERANDS:
1838       noperands = asm_noperands (body);
1839       if (noperands >= 0)
1840         {
1841           /* This insn is an `asm' with operands.  */
1842
1843           insn_code_number = -1;
1844           this_insn_is_asm = 1;
1845
1846           /* expand_asm_operands makes sure there aren't too many operands.  */
1847           if (noperands > MAX_RECOG_OPERANDS)
1848             abort ();
1849
1850           /* Now get the operand values and constraints out of the insn.  */
1851
1852           decode_asm_operands (body, recog_operand, recog_operand_loc,
1853                                constraints, operand_mode);
1854           if (noperands > 0)
1855             {
1856               bcopy (constraints, constraints1, noperands * sizeof (char *));
1857               n_alternatives = n_occurrences (',', constraints[0]) + 1;
1858               for (i = 1; i < noperands; i++)
1859                 if (n_alternatives != n_occurrences (',', constraints[i]) + 1)
1860                   {
1861                     error_for_asm (insn, "operand constraints differ in number of alternatives");
1862                     /* Avoid further trouble with this insn.  */
1863                     PATTERN (insn) = gen_rtx (USE, VOIDmode, const0_rtx);
1864                     n_reloads = 0;
1865                     return;
1866                   }
1867             }
1868           break;
1869         }
1870
1871     default:
1872       /* Ordinary insn: recognize it, get the operands via insn_extract
1873          and get the constraints.  */
1874
1875       insn_code_number = recog_memoized (insn);
1876       if (insn_code_number < 0)
1877         fatal_insn_not_found (insn);
1878
1879       noperands = insn_n_operands[insn_code_number];
1880       n_alternatives = insn_n_alternatives[insn_code_number];
1881       /* Just return "no reloads" if insn has no operands with constraints.  */
1882       if (n_alternatives == 0)
1883         return;
1884       insn_extract (insn);
1885       for (i = 0; i < noperands; i++)
1886         {
1887           constraints[i] = constraints1[i]
1888             = insn_operand_constraint[insn_code_number][i];
1889           operand_mode[i] = insn_operand_mode[insn_code_number][i];
1890         }
1891     }
1892
1893   if (noperands == 0)
1894     return;
1895
1896   commutative = -1;
1897
1898   /* If we will need to know, later, whether some pair of operands
1899      are the same, we must compare them now and save the result.
1900      Reloading the base and index registers will clobber them
1901      and afterward they will fail to match.  */
1902
1903   for (i = 0; i < noperands; i++)
1904     {
1905       register char *p;
1906       register int c;
1907
1908       substed_operand[i] = recog_operand[i];
1909       p = constraints[i];
1910
1911       /* Scan this operand's constraint to see if it should match another.  */
1912
1913       while (c = *p++)
1914         if (c == '%')
1915           {
1916             /* The last operand should not be marked commutative.  This
1917                problem is hard to detect, so make it obvious by calling
1918                abort here.  */
1919             if (i == noperands - 1)
1920               abort ();
1921
1922             commutative = i;
1923           }
1924         else if (c >= '0' && c <= '9')
1925           {
1926             c -= '0';
1927             operands_match[c][i]
1928               = operands_match_p (recog_operand[c], recog_operand[i]);
1929             /* If C can be commuted with C+1, and C might need to match I,
1930                then C+1 might also need to match I.  */
1931             if (commutative >= 0)
1932               {
1933                 if (c == commutative || c == commutative + 1)
1934                   {
1935                     int other = c + (c == commutative ? 1 : -1);
1936                     operands_match[other][i]
1937                       = operands_match_p (recog_operand[other], recog_operand[i]);
1938                   }
1939                 if (i == commutative || i == commutative + 1)
1940                   {
1941                     int other = i + (i == commutative ? 1 : -1);
1942                     operands_match[c][other]
1943                       = operands_match_p (recog_operand[c], recog_operand[other]);
1944                   }
1945                 /* Note that C is supposed to be less than I.
1946                    No need to consider altering both C and I
1947                    because in that case we would alter one into the other.  */
1948               }
1949           }
1950     }
1951
1952   /* Examine each operand that is a memory reference or memory address
1953      and reload parts of the addresses into index registers.
1954      While we are at it, initialize the array `modified'.
1955      Also here any references to pseudo regs that didn't get hard regs
1956      but are equivalent to constants get replaced in the insn itself
1957      with those constants.  Nobody will ever see them again. 
1958
1959      Finally, set up the preferred classes of each operand.  */
1960
1961   for (i = 0; i < noperands; i++)
1962     {
1963       register RTX_CODE code = GET_CODE (recog_operand[i]);
1964       modified[i] = RELOAD_READ;
1965       address_reloaded[i] = 0;
1966       preferred_class[i]
1967         = ((code == REG && REGNO (recog_operand[i]) > FIRST_PSEUDO_REGISTER)
1968            ? reg_preferred_class (REGNO (recog_operand[i])) : NO_REGS);
1969       pref_or_nothing[i]
1970         = (code == REG && REGNO (recog_operand[i]) > FIRST_PSEUDO_REGISTER
1971            && reg_preferred_or_nothing (REGNO (recog_operand[i])));
1972
1973       if (constraints[i][0] == 'p')
1974         {
1975           find_reloads_address (VOIDmode, 0,
1976                                 recog_operand[i], recog_operand_loc[i],
1977                                 recog_operand[i], ind_levels);
1978           substed_operand[i] = recog_operand[i] = *recog_operand_loc[i];
1979         }
1980       else if (code == MEM)
1981         {
1982           if (find_reloads_address (GET_MODE (recog_operand[i]),
1983                                     recog_operand_loc[i],
1984                                     XEXP (recog_operand[i], 0),
1985                                     &XEXP (recog_operand[i], 0),
1986                                     recog_operand[i], ind_levels))
1987             address_reloaded[i] = 1;
1988           substed_operand[i] = recog_operand[i] = *recog_operand_loc[i];
1989         }
1990       else if (code == SUBREG)
1991         substed_operand[i] = recog_operand[i] = *recog_operand_loc[i]
1992           = find_reloads_toplev (recog_operand[i], ind_levels,
1993                                  set != 0
1994                                  && &SET_DEST (set) == recog_operand_loc[i]);
1995       else if (code == REG)
1996         {
1997           /* This is equivalent to calling find_reloads_toplev.
1998              The code is duplicated for speed.
1999              When we find a pseudo always equivalent to a constant,
2000              we replace it by the constant.  We must be sure, however,
2001              that we don't try to replace it in the insn in which it
2002              is being set.   */
2003           register int regno = REGNO (recog_operand[i]);
2004           if (reg_equiv_constant[regno] != 0
2005               && (set == 0 || &SET_DEST (set) != recog_operand_loc[i]))
2006             substed_operand[i] = recog_operand[i]
2007               = reg_equiv_constant[regno];
2008 #if 0 /* This might screw code in reload1.c to delete prior output-reload
2009          that feeds this insn.  */
2010           if (reg_equiv_mem[regno] != 0)
2011             substed_operand[i] = recog_operand[i]
2012               = reg_equiv_mem[regno];
2013 #endif
2014           if (reg_equiv_address[regno] != 0)
2015             {
2016               /* If reg_equiv_address is not a constant address, copy it,
2017                  since it may be shared.  */
2018               rtx address = reg_equiv_address[regno];
2019
2020               if (rtx_varies_p (address))
2021                 address = copy_rtx (address);
2022
2023               /* If this is an output operand, we must output a CLOBBER
2024                  after INSN so find_equiv_reg knows REGNO is being written. */
2025               if (constraints[i][0] == '='
2026                   || constraints[i][0] == '+')
2027                 emit_insn_after (gen_rtx (CLOBBER, VOIDmode, recog_operand[i]),
2028                                  insn);
2029
2030               *recog_operand_loc[i] = recog_operand[i]
2031                 = gen_rtx (MEM, GET_MODE (recog_operand[i]), address);
2032               RTX_UNCHANGING_P (recog_operand[i])
2033                 = RTX_UNCHANGING_P (regno_reg_rtx[regno]);
2034               find_reloads_address (GET_MODE (recog_operand[i]),
2035                                     recog_operand_loc[i],
2036                                     XEXP (recog_operand[i], 0),
2037                                     &XEXP (recog_operand[i], 0),
2038                                     recog_operand[i], ind_levels);
2039               substed_operand[i] = recog_operand[i] = *recog_operand_loc[i];
2040
2041               /* This is no longer a psuedo register.  To prevent later code
2042                  from thinking it still is, we must reset the preferred_class
2043                  to NO_REGS.  */
2044               preferred_class[i] = NO_REGS;
2045             }
2046         }
2047     }
2048
2049   /* If this is simply a copy from operand 1 to operand 0, merge the
2050      preferred classes for the operands.  */
2051   if (set != 0 && noperands >= 2 && recog_operand[0] == SET_DEST (set)
2052       && recog_operand[1] == SET_SRC (set))
2053     {
2054       preferred_class[0] = preferred_class[1]
2055         = reg_class_subunion[(int) preferred_class[0]][(int) preferred_class[1]];
2056       pref_or_nothing[0] |= pref_or_nothing[1];
2057       pref_or_nothing[1] |= pref_or_nothing[0];
2058     }
2059
2060   /* Now see what we need for pseudo-regs that didn't get hard regs
2061      or got the wrong kind of hard reg.  For this, we must consider
2062      all the operands together against the register constraints.  */
2063
2064   best = MAX_RECOG_OPERANDS + 300;
2065
2066   swapped = 0;
2067   goal_alternative_swapped = 0;
2068  try_swapped:
2069
2070   /* The constraints are made of several alternatives.
2071      Each operand's constraint looks like foo,bar,... with commas
2072      separating the alternatives.  The first alternatives for all
2073      operands go together, the second alternatives go together, etc.
2074
2075      First loop over alternatives.  */
2076
2077   for (this_alternative_number = 0;
2078        this_alternative_number < n_alternatives;
2079        this_alternative_number++)
2080     {
2081       /* Loop over operands for one constraint alternative.  */
2082       /* LOSERS counts those that don't fit this alternative
2083          and would require loading.  */
2084       int losers = 0;
2085       /* BAD is set to 1 if it some operand can't fit this alternative
2086          even after reloading.  */
2087       int bad = 0;
2088       /* REJECT is a count of how undesirable this alternative says it is
2089          if any reloading is required.  If the alternative matches exactly
2090          then REJECT is ignored, but otherwise it gets this much
2091          counted against it in addition to the reloading needed.  Each 
2092          ? counts three times here since we want the disparaging caused by
2093          a bad register class to only count 1/3 as much.  */
2094       int reject = 0;
2095
2096       this_earlyclobber = 0;
2097
2098       for (i = 0; i < noperands; i++)
2099         {
2100           register char *p = constraints[i];
2101           register int win = 0;
2102           /* 0 => this operand can be reloaded somehow for this alternative */
2103           int badop = 1;
2104           /* 0 => this operand can be reloaded if the alternative allows regs.  */
2105           int winreg = 0;
2106           int c;
2107           register rtx operand = recog_operand[i];
2108           int offset = 0;
2109           /* Nonzero means this is a MEM that must be reloaded into a reg
2110              regardless of what the constraint says.  */
2111           int force_reload = 0;
2112           int offmemok = 0;
2113           int earlyclobber = 0;
2114
2115           /* If the operand is a SUBREG, extract
2116              the REG or MEM (or maybe even a constant) within.
2117              (Constants can occur as a result of reg_equiv_constant.)  */
2118
2119           while (GET_CODE (operand) == SUBREG)
2120             {
2121               offset += SUBREG_WORD (operand);
2122               operand = SUBREG_REG (operand);
2123               /* Force reload if this is not a register or if there may may
2124                  be a problem accessing the register in the outer mode.  */
2125               if (GET_CODE (operand) != REG
2126 #ifdef BYTE_LOADS_ZERO_EXTEND
2127                   /* Nonparadoxical subreg of a pseudoreg.
2128                      Don't to load the full width if on this machine
2129                      we expected the fetch to zero-extend.  */
2130                   || ((GET_MODE_SIZE (operand_mode[i])
2131                        > GET_MODE_SIZE (GET_MODE (operand)))
2132                       && REGNO (operand) >= FIRST_PSEUDO_REGISTER)
2133 #endif /* BYTE_LOADS_ZERO_EXTEND */
2134                   /* Subreg of a hard reg which can't handle the subreg's mode
2135                      or which would handle that mode in the wrong number of
2136                      registers for subregging to work.  */
2137                   || (REGNO (operand) < FIRST_PSEUDO_REGISTER
2138                       && (! HARD_REGNO_MODE_OK (REGNO (operand),
2139                                                 operand_mode[i])
2140                           || (GET_MODE_SIZE (operand_mode[i]) <= UNITS_PER_WORD
2141                               && (GET_MODE_SIZE (GET_MODE (operand))
2142                                   > UNITS_PER_WORD)
2143                               && ((GET_MODE_SIZE (GET_MODE (operand))
2144                                    / UNITS_PER_WORD)
2145                                   != HARD_REGNO_NREGS (REGNO (operand),
2146                                                        GET_MODE (operand)))))))
2147                 force_reload = 1;
2148             }
2149
2150           this_alternative[i] = (int) NO_REGS;
2151           this_alternative_win[i] = 0;
2152           this_alternative_offmemok[i] = 0;
2153           this_alternative_earlyclobber[i] = 0;
2154           this_alternative_matches[i] = -1;
2155
2156           /* An empty constraint or empty alternative
2157              allows anything which matched the pattern.  */
2158           if (*p == 0 || *p == ',')
2159             win = 1, badop = 0;
2160
2161           /* Scan this alternative's specs for this operand;
2162              set WIN if the operand fits any letter in this alternative.
2163              Otherwise, clear BADOP if this operand could
2164              fit some letter after reloads,
2165              or set WINREG if this operand could fit after reloads
2166              provided the constraint allows some registers.  */
2167
2168           while (*p && (c = *p++) != ',')
2169             switch (c)
2170               {
2171               case '=':
2172                 modified[i] = RELOAD_WRITE;
2173                 break;
2174
2175               case '+':
2176                 modified[i] = RELOAD_READ_WRITE;
2177                 break;
2178
2179               case '*':
2180                 break;
2181
2182               case '%':
2183                 commutative = i;
2184                 break;
2185
2186               case '?':
2187                 reject += 3;
2188                 break;
2189
2190               case '!':
2191                 reject = 300;
2192                 break;
2193
2194               case '#':
2195                 /* Ignore rest of this alternative as far as
2196                    reloading is concerned.  */
2197                 while (*p && *p != ',') p++;
2198                 break;
2199
2200               case '0':
2201               case '1':
2202               case '2':
2203               case '3':
2204               case '4':
2205                 c -= '0';
2206                 this_alternative_matches[i] = c;
2207                 /* We are supposed to match a previous operand.
2208                    If we do, we win if that one did.
2209                    If we do not, count both of the operands as losers.
2210                    (This is too conservative, since most of the time
2211                    only a single reload insn will be needed to make
2212                    the two operands win.  As a result, this alternative
2213                    may be rejected when it is actually desirable.)  */
2214                 if ((swapped && (c != commutative || i != commutative + 1))
2215                     /* If we are matching as if two operands were swapped,
2216                        also pretend that operands_match had been computed
2217                        with swapped.
2218                        But if I is the second of those and C is the first,
2219                        don't exchange them, because operands_match is valid
2220                        only on one side of its diagonal.  */
2221                     ? (operands_match
2222                         [(c == commutative || c == commutative + 1)
2223                          ? 2*commutative + 1 - c : c]
2224                         [(i == commutative || i == commutative + 1)
2225                          ? 2*commutative + 1 - i : i])
2226                     : operands_match[c][i])
2227                   win = this_alternative_win[c];
2228                 else
2229                   {
2230                     /* Operands don't match.  */
2231                     rtx value;
2232                     /* Retroactively mark the operand we had to match
2233                        as a loser, if it wasn't already.  */
2234                     if (this_alternative_win[c])
2235                       losers++;
2236                     this_alternative_win[c] = 0;
2237                     if (this_alternative[c] == (int) NO_REGS)
2238                       bad = 1;
2239                     /* But count the pair only once in the total badness of
2240                        this alternative, if the pair can be a dummy reload.  */
2241                     value
2242                       = find_dummy_reload (recog_operand[i], recog_operand[c],
2243                                            recog_operand_loc[i], recog_operand_loc[c],
2244                                            this_alternative[c], -1);
2245
2246                     if (value != 0)
2247                       losers--;
2248                   }
2249                 /* This can be fixed with reloads if the operand
2250                    we are supposed to match can be fixed with reloads.  */
2251                 badop = 0;
2252                 this_alternative[i] = this_alternative[c];
2253                 break;
2254
2255               case 'p':
2256                 /* All necessary reloads for an address_operand
2257                    were handled in find_reloads_address.  */
2258                 this_alternative[i] = (int) ALL_REGS;
2259                 win = 1;
2260                 break;
2261
2262               case 'm':
2263                 if (force_reload)
2264                   break;
2265                 if (GET_CODE (operand) == MEM
2266                     || (GET_CODE (operand) == REG
2267                         && REGNO (operand) >= FIRST_PSEUDO_REGISTER
2268                         && reg_renumber[REGNO (operand)] < 0))
2269                   win = 1;
2270                 if (CONSTANT_P (operand))
2271                   badop = 0;
2272                 break;
2273
2274               case '<':
2275                 if (GET_CODE (operand) == MEM
2276                     && ! address_reloaded[i]
2277                     && (GET_CODE (XEXP (operand, 0)) == PRE_DEC
2278                         || GET_CODE (XEXP (operand, 0)) == POST_DEC))
2279                   win = 1;
2280                 break;
2281
2282               case '>':
2283                 if (GET_CODE (operand) == MEM
2284                     && ! address_reloaded[i]
2285                     && (GET_CODE (XEXP (operand, 0)) == PRE_INC
2286                         || GET_CODE (XEXP (operand, 0)) == POST_INC))
2287                   win = 1;
2288                 break;
2289
2290                 /* Memory operand whose address is not offsettable.  */
2291               case 'V':
2292                 if (force_reload)
2293                   break;
2294                 if (GET_CODE (operand) == MEM
2295                     && ! (ind_levels ? offsettable_memref_p (operand)
2296                           : offsettable_nonstrict_memref_p (operand))
2297                     /* Certain mem addresses will become offsettable
2298                        after they themselves are reloaded.  This is important;
2299                        we don't want our own handling of unoffsettables
2300                        to override the handling of reg_equiv_address.  */
2301                     && !(GET_CODE (XEXP (operand, 0)) == REG
2302                          && (ind_levels == 0
2303                              || reg_equiv_address[REGNO (XEXP (operand, 0))] != 0)))
2304                   win = 1;
2305                 break;
2306
2307                 /* Memory operand whose address is offsettable.  */
2308               case 'o':
2309                 if (force_reload)
2310                   break;
2311                 if ((GET_CODE (operand) == MEM
2312                      /* If IND_LEVELS, find_reloads_address won't reload a
2313                         pseudo that didn't get a hard reg, so we have to
2314                         reject that case.  */
2315                      && (ind_levels ? offsettable_memref_p (operand)
2316                          : offsettable_nonstrict_memref_p (operand)))
2317                     /* Certain mem addresses will become offsettable
2318                        after they themselves are reloaded.  This is important;
2319                        we don't want our own handling of unoffsettables
2320                        to override the handling of reg_equiv_address.  */
2321                     || (GET_CODE (operand) == MEM
2322                         && GET_CODE (XEXP (operand, 0)) == REG
2323                         && (ind_levels == 0
2324                             || reg_equiv_address[REGNO (XEXP (operand, 0))] != 0))
2325                     || (GET_CODE (operand) == REG
2326                         && REGNO (operand) >= FIRST_PSEUDO_REGISTER
2327                         && reg_renumber[REGNO (operand)] < 0))
2328                   win = 1;
2329                 if (CONSTANT_P (operand) || GET_CODE (operand) == MEM)
2330                   badop = 0;
2331                 offmemok = 1;
2332                 break;
2333
2334               case '&':
2335                 /* Output operand that is stored before the need for the
2336                    input operands (and their index registers) is over.  */
2337                 earlyclobber = 1, this_earlyclobber = 1;
2338                 break;
2339
2340               case 'E':
2341                 /* Match any floating double constant, but only if
2342                    we can examine the bits of it reliably.  */
2343                 if ((HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
2344                      || HOST_BITS_PER_INT != BITS_PER_WORD)
2345                     && GET_MODE (operand) != VOIDmode && ! flag_pretend_float)
2346                   break;
2347                 if (GET_CODE (operand) == CONST_DOUBLE)
2348                   win = 1;
2349                 break;
2350
2351               case 'F':
2352                 if (GET_CODE (operand) == CONST_DOUBLE)
2353                   win = 1;
2354                 break;
2355
2356               case 'G':
2357               case 'H':
2358                 if (GET_CODE (operand) == CONST_DOUBLE
2359                     && CONST_DOUBLE_OK_FOR_LETTER_P (operand, c))
2360                   win = 1;
2361                 break;
2362
2363               case 's':
2364                 if (GET_CODE (operand) == CONST_INT
2365                     || (GET_CODE (operand) == CONST_DOUBLE
2366                         && GET_MODE (operand) == VOIDmode))
2367                   break;
2368               case 'i':
2369                 if (CONSTANT_P (operand)
2370 #ifdef LEGITIMATE_PIC_OPERAND_P
2371                     && (! flag_pic || LEGITIMATE_PIC_OPERAND_P (operand))
2372 #endif
2373                     )
2374                   win = 1;
2375                 break;
2376
2377               case 'n':
2378                 if (GET_CODE (operand) == CONST_INT
2379                     || (GET_CODE (operand) == CONST_DOUBLE
2380                         && GET_MODE (operand) == VOIDmode))
2381                   win = 1;
2382                 break;
2383
2384               case 'I':
2385               case 'J':
2386               case 'K':
2387               case 'L':
2388               case 'M':
2389               case 'N':
2390               case 'O':
2391               case 'P':
2392                 if (GET_CODE (operand) == CONST_INT
2393                     && CONST_OK_FOR_LETTER_P (INTVAL (operand), c))
2394                   win = 1;
2395                 break;
2396
2397               case 'X':
2398                 win = 1;
2399                 break;
2400
2401               case 'g':
2402                 if (! force_reload
2403                     /* A PLUS is never a valid operand, but reload can make
2404                        it from a register when eliminating registers.  */
2405                     && GET_CODE (operand) != PLUS
2406                     /* A SCRATCH is not a valid operand.  */
2407                     && GET_CODE (operand) != SCRATCH
2408 #ifdef LEGITIMATE_PIC_OPERAND_P
2409                     && (! CONSTANT_P (operand) 
2410                         || ! flag_pic 
2411                         || LEGITIMATE_PIC_OPERAND_P (operand))
2412 #endif
2413                     && (GENERAL_REGS == ALL_REGS
2414                         || GET_CODE (operand) != REG
2415                         || (REGNO (operand) >= FIRST_PSEUDO_REGISTER
2416                             && reg_renumber[REGNO (operand)] < 0)))
2417                   win = 1;
2418                 /* Drop through into 'r' case */
2419
2420               case 'r':
2421                 this_alternative[i]
2422                   = (int) reg_class_subunion[this_alternative[i]][(int) GENERAL_REGS];
2423                 goto reg;
2424
2425 #ifdef EXTRA_CONSTRAINT
2426               case 'Q':
2427               case 'R':
2428               case 'S':
2429               case 'T':
2430               case 'U':
2431                 if (EXTRA_CONSTRAINT (operand, c))
2432                   win = 1;
2433                 break;
2434 #endif
2435   
2436               default:
2437                 this_alternative[i]
2438                   = (int) reg_class_subunion[this_alternative[i]][(int) REG_CLASS_FROM_LETTER (c)];
2439                 
2440               reg:
2441                 if (GET_MODE (operand) == BLKmode)
2442                   break;
2443                 winreg = 1;
2444                 if (GET_CODE (operand) == REG
2445                     && reg_fits_class_p (operand, this_alternative[i],
2446                                          offset, GET_MODE (recog_operand[i])))
2447                   win = 1;
2448                 break;
2449               }
2450
2451           constraints[i] = p;
2452
2453           /* If this operand could be handled with a reg,
2454              and some reg is allowed, then this operand can be handled.  */
2455           if (winreg && this_alternative[i] != (int) NO_REGS)
2456             badop = 0;
2457
2458           /* Record which operands fit this alternative.  */
2459           this_alternative_earlyclobber[i] = earlyclobber;
2460           if (win && ! force_reload)
2461             this_alternative_win[i] = 1;
2462           else
2463             {
2464               this_alternative_offmemok[i] = offmemok;
2465               losers++;
2466               if (badop)
2467                 bad = 1;
2468               /* Alternative loses if it has no regs for a reg operand.  */
2469               if (GET_CODE (operand) == REG
2470                   && this_alternative[i] == (int) NO_REGS
2471                   && this_alternative_matches[i] < 0)
2472                 bad = 1;
2473
2474               /* Alternative loses if it requires a type of reload not
2475                  permitted for this insn.  We can always reload SCRATCH
2476                  and objects with a REG_UNUSED note.  */
2477               if (GET_CODE (operand) != SCRATCH && modified[i] != RELOAD_READ
2478                   && no_output_reloads
2479                   && ! find_reg_note (insn, REG_UNUSED, operand))
2480                 bad = 1;
2481               else if (modified[i] != RELOAD_WRITE && no_input_reloads)
2482                 bad = 1;
2483
2484               /* We prefer to reload pseudos over reloading other things,
2485                  since such reloads may be able to be eliminated later.
2486                  If we are reloading a SCRATCH, we won't be generating any
2487                  insns, just using a register, so it is also preferred. 
2488                  So bump REJECT in other cases.  */
2489               if (GET_CODE (operand) != REG && GET_CODE (operand) != SCRATCH)
2490                 reject++;
2491             }
2492
2493           /* If this operand is a pseudo register that didn't get a hard 
2494              reg and this alternative accepts some register, see if the
2495              class that we want is a subset of the preferred class for this
2496              register.  If not, but it intersects that class, use the
2497              preferred class instead.  If it does not intersect the preferred
2498              class, show that usage of this alternative should be discouraged;
2499              it will be discouraged more still if the register is `preferred
2500              or nothing'.  We do this because it increases the chance of
2501              reusing our spill register in a later insn and avoiding a pair
2502              of memory stores and loads.
2503
2504              Don't bother with this if this alternative will accept this
2505              operand.
2506
2507              Don't do this if the preferred class has only one register
2508              because we might otherwise exhaust the class.  */
2509
2510
2511           if (! win && this_alternative[i] != (int) NO_REGS
2512               && reg_class_size[(int) preferred_class[i]] > 1)
2513             {
2514               if (! reg_class_subset_p (this_alternative[i],
2515                                         preferred_class[i]))
2516                 {
2517                   /* Since we don't have a way of forming the intersection,
2518                      we just do something special if the preferred class
2519                      is a subset of the class we have; that's the most 
2520                      common case anyway.  */
2521                   if (reg_class_subset_p (preferred_class[i],
2522                                           this_alternative[i]))
2523                     this_alternative[i] = (int) preferred_class[i];
2524                   else
2525                     reject += (1 + pref_or_nothing[i]);
2526                 }
2527             }
2528         }
2529
2530       /* Now see if any output operands that are marked "earlyclobber"
2531          in this alternative conflict with any input operands
2532          or any memory addresses.  */
2533
2534       for (i = 0; i < noperands; i++)
2535         if (this_alternative_earlyclobber[i]
2536             && this_alternative_win[i])
2537           {
2538             struct decomposition early_data; 
2539             int j;
2540
2541             early_data = decompose (recog_operand[i]);
2542
2543             if (modified[i] == RELOAD_READ)
2544               {
2545                 if (this_insn_is_asm)
2546                   warning_for_asm (this_insn,
2547                                    "`&' constraint used with input operand");
2548                 else
2549                   abort ();
2550                 continue;
2551               }
2552             
2553             if (this_alternative[i] == NO_REGS)
2554               {
2555                 this_alternative_earlyclobber[i] = 0;
2556                 if (this_insn_is_asm)
2557                   error_for_asm (this_insn,
2558                                  "`&' constraint used with no register class");
2559                 else
2560                   abort ();
2561               }
2562
2563             for (j = 0; j < noperands; j++)
2564               /* Is this an input operand or a memory ref?  */
2565               if ((GET_CODE (recog_operand[j]) == MEM
2566                    || modified[j] != RELOAD_WRITE)
2567                   && j != i
2568                   /* Ignore things like match_operator operands.  */
2569                   && *constraints1[j] != 0
2570                   /* Don't count an input operand that is constrained to match
2571                      the early clobber operand.  */
2572                   && ! (this_alternative_matches[j] == i
2573                         && rtx_equal_p (recog_operand[i], recog_operand[j]))
2574                   /* Is it altered by storing the earlyclobber operand?  */
2575                   && !immune_p (recog_operand[j], recog_operand[i], early_data))
2576                 {
2577                   /* If the output is in a single-reg class,
2578                      it's costly to reload it, so reload the input instead.  */
2579                   if (reg_class_size[this_alternative[i]] == 1
2580                       && (GET_CODE (recog_operand[j]) == REG
2581                           || GET_CODE (recog_operand[j]) == SUBREG))
2582                     {
2583                       losers++;
2584                       this_alternative_win[j] = 0;
2585                     }
2586                   else
2587                     break;
2588                 }
2589             /* If an earlyclobber operand conflicts with something,
2590                it must be reloaded, so request this and count the cost.  */
2591             if (j != noperands)
2592               {
2593                 losers++;
2594                 this_alternative_win[i] = 0;
2595                 for (j = 0; j < noperands; j++)
2596                   if (this_alternative_matches[j] == i
2597                       && this_alternative_win[j])
2598                     {
2599                       this_alternative_win[j] = 0;
2600                       losers++;
2601                     }
2602               }
2603           }
2604
2605       /* If one alternative accepts all the operands, no reload required,
2606          choose that alternative; don't consider the remaining ones.  */
2607       if (losers == 0)
2608         {
2609           /* Unswap these so that they are never swapped at `finish'.  */
2610           if (commutative >= 0)
2611             {
2612               recog_operand[commutative] = substed_operand[commutative];
2613               recog_operand[commutative + 1]
2614                 = substed_operand[commutative + 1];
2615             }
2616           for (i = 0; i < noperands; i++)
2617             {
2618               goal_alternative_win[i] = 1;
2619               goal_alternative[i] = this_alternative[i];
2620               goal_alternative_offmemok[i] = this_alternative_offmemok[i];
2621               goal_alternative_matches[i] = this_alternative_matches[i];
2622               goal_alternative_earlyclobber[i]
2623                 = this_alternative_earlyclobber[i];
2624             }
2625           goal_alternative_number = this_alternative_number;
2626           goal_alternative_swapped = swapped;
2627           goal_earlyclobber = this_earlyclobber;
2628           goto finish;
2629         }
2630
2631       /* REJECT, set by the ! and ? constraint characters and when a register
2632          would be reloaded into a non-preferred class, discourages the use of
2633          this alternative for a reload goal.  REJECT is incremented by three
2634          for each ? and one for each non-preferred class.  */
2635       losers = losers * 3 + reject;
2636
2637       /* If this alternative can be made to work by reloading,
2638          and it needs less reloading than the others checked so far,
2639          record it as the chosen goal for reloading.  */
2640       if (! bad && best > losers)
2641         {
2642           for (i = 0; i < noperands; i++)
2643             {
2644               goal_alternative[i] = this_alternative[i];
2645               goal_alternative_win[i] = this_alternative_win[i];
2646               goal_alternative_offmemok[i] = this_alternative_offmemok[i];
2647               goal_alternative_matches[i] = this_alternative_matches[i];
2648               goal_alternative_earlyclobber[i]
2649                 = this_alternative_earlyclobber[i];
2650             }
2651           goal_alternative_swapped = swapped;
2652           best = losers;
2653           goal_alternative_number = this_alternative_number;
2654           goal_earlyclobber = this_earlyclobber;
2655         }
2656     }
2657
2658   /* If insn is commutative (it's safe to exchange a certain pair of operands)
2659      then we need to try each alternative twice,
2660      the second time matching those two operands
2661      as if we had exchanged them.
2662      To do this, really exchange them in operands.
2663
2664      If we have just tried the alternatives the second time,
2665      return operands to normal and drop through.  */
2666
2667   if (commutative >= 0)
2668     {
2669       swapped = !swapped;
2670       if (swapped)
2671         {
2672           register enum reg_class tclass;
2673           register int t;
2674
2675           recog_operand[commutative] = substed_operand[commutative + 1];
2676           recog_operand[commutative + 1] = substed_operand[commutative];
2677
2678           tclass = preferred_class[commutative];
2679           preferred_class[commutative] = preferred_class[commutative + 1];
2680           preferred_class[commutative + 1] = tclass;
2681
2682           t = pref_or_nothing[commutative];
2683           pref_or_nothing[commutative] = pref_or_nothing[commutative + 1];
2684           pref_or_nothing[commutative + 1] = t;
2685
2686           bcopy (constraints1, constraints, noperands * sizeof (char *));
2687           goto try_swapped;
2688         }
2689       else
2690         {
2691           recog_operand[commutative] = substed_operand[commutative];
2692           recog_operand[commutative + 1] = substed_operand[commutative + 1];
2693         }
2694     }
2695
2696   /* The operands don't meet the constraints.
2697      goal_alternative describes the alternative
2698      that we could reach by reloading the fewest operands.
2699      Reload so as to fit it.  */
2700
2701   if (best == MAX_RECOG_OPERANDS + 300)
2702     {
2703       /* No alternative works with reloads??  */
2704       if (insn_code_number >= 0)
2705         abort ();
2706       error_for_asm (insn, "inconsistent operand constraints in an `asm'");
2707       /* Avoid further trouble with this insn.  */
2708       PATTERN (insn) = gen_rtx (USE, VOIDmode, const0_rtx);
2709       n_reloads = 0;
2710       return;
2711     }
2712
2713   /* Jump to `finish' from above if all operands are valid already.
2714      In that case, goal_alternative_win is all 1.  */
2715  finish:
2716
2717   /* Right now, for any pair of operands I and J that are required to match,
2718      with I < J,
2719      goal_alternative_matches[J] is I.
2720      Set up goal_alternative_matched as the inverse function:
2721      goal_alternative_matched[I] = J.  */
2722
2723   for (i = 0; i < noperands; i++)
2724     goal_alternative_matched[i] = -1;
2725
2726   for (i = 0; i < noperands; i++)
2727     if (! goal_alternative_win[i]
2728         && goal_alternative_matches[i] >= 0)
2729       goal_alternative_matched[goal_alternative_matches[i]] = i;
2730
2731   /* If the best alternative is with operands 1 and 2 swapped,
2732      consider them swapped before reporting the reloads.  */
2733
2734   if (goal_alternative_swapped)
2735     {
2736       register rtx tem;
2737
2738       tem = substed_operand[commutative];
2739       substed_operand[commutative] = substed_operand[commutative + 1];
2740       substed_operand[commutative + 1] = tem;
2741       tem = recog_operand[commutative];
2742       recog_operand[commutative] = recog_operand[commutative + 1];
2743       recog_operand[commutative + 1] = tem;
2744     }
2745
2746   /* Perform whatever substitutions on the operands we are supposed
2747      to make due to commutativity or replacement of registers
2748      with equivalent constants or memory slots.  */
2749
2750   for (i = 0; i < noperands; i++)
2751     {
2752       *recog_operand_loc[i] = substed_operand[i];
2753       /* While we are looping on operands, initialize this.  */
2754       operand_reloadnum[i] = -1;
2755     }
2756
2757   /* Any constants that aren't allowed and can't be reloaded
2758      into registers are here changed into memory references.  */
2759   for (i = 0; i < noperands; i++)
2760     if (! goal_alternative_win[i]
2761         && CONSTANT_P (recog_operand[i])
2762         && (PREFERRED_RELOAD_CLASS (recog_operand[i],
2763                                     (enum reg_class) goal_alternative[i])
2764             == NO_REGS)
2765         && operand_mode[i] != VOIDmode)
2766       {
2767         *recog_operand_loc[i] = recog_operand[i]
2768           = find_reloads_toplev (force_const_mem (operand_mode[i],
2769                                                   recog_operand[i]),
2770                                  ind_levels, 0);
2771         if (alternative_allows_memconst (constraints1[i],
2772                                          goal_alternative_number))
2773           goal_alternative_win[i] = 1;
2774       }
2775
2776   /* Now record reloads for all the operands that need them.  */
2777   for (i = 0; i < noperands; i++)
2778     if (! goal_alternative_win[i])
2779       {
2780         /* Operands that match previous ones have already been handled.  */
2781         if (goal_alternative_matches[i] >= 0)
2782           ;
2783         /* Handle an operand with a nonoffsettable address
2784            appearing where an offsettable address will do
2785            by reloading the address into a base register.  */
2786         else if (goal_alternative_matched[i] == -1
2787                  && goal_alternative_offmemok[i]
2788                  && GET_CODE (recog_operand[i]) == MEM)
2789           {
2790             operand_reloadnum[i]
2791               = push_reload (XEXP (recog_operand[i], 0), 0,
2792                              &XEXP (recog_operand[i], 0), 0,
2793                              BASE_REG_CLASS, GET_MODE (XEXP (recog_operand[i], 0)),
2794                              VOIDmode, 0, 0, 0);
2795             reload_inc[operand_reloadnum[i]]
2796               = GET_MODE_SIZE (GET_MODE (recog_operand[i]));
2797           }
2798         else if (goal_alternative_matched[i] == -1)
2799           operand_reloadnum[i] =
2800             push_reload (modified[i] != RELOAD_WRITE ? recog_operand[i] : 0,
2801                          modified[i] != RELOAD_READ ? recog_operand[i] : 0,
2802                          modified[i] != RELOAD_WRITE ? recog_operand_loc[i] : 0,
2803                          modified[i] != RELOAD_READ ? recog_operand_loc[i] : 0,
2804                          (enum reg_class) goal_alternative[i],
2805                          (modified[i] == RELOAD_WRITE ? VOIDmode : operand_mode[i]),
2806                          (modified[i] == RELOAD_READ ? VOIDmode : operand_mode[i]),
2807                          (insn_code_number < 0 ? 0
2808                           : insn_operand_strict_low[insn_code_number][i]),
2809                          0, 0);
2810         /* In a matching pair of operands, one must be input only
2811            and the other must be output only.
2812            Pass the input operand as IN and the other as OUT.  */
2813         else if (modified[i] == RELOAD_READ
2814                  && modified[goal_alternative_matched[i]] == RELOAD_WRITE)
2815           {
2816             operand_reloadnum[i]
2817               = push_reload (recog_operand[i],
2818                              recog_operand[goal_alternative_matched[i]],
2819                              recog_operand_loc[i],
2820                              recog_operand_loc[goal_alternative_matched[i]],
2821                              (enum reg_class) goal_alternative[i],
2822                              operand_mode[i],
2823                              operand_mode[goal_alternative_matched[i]],
2824                              0, 0, 0);
2825             operand_reloadnum[goal_alternative_matched[i]] = output_reloadnum;
2826           }
2827         else if (modified[i] == RELOAD_WRITE
2828                  && modified[goal_alternative_matched[i]] == RELOAD_READ)
2829           {
2830             operand_reloadnum[goal_alternative_matched[i]]
2831               = push_reload (recog_operand[goal_alternative_matched[i]],
2832                              recog_operand[i],
2833                              recog_operand_loc[goal_alternative_matched[i]],
2834                              recog_operand_loc[i],
2835                              (enum reg_class) goal_alternative[i],
2836                              operand_mode[goal_alternative_matched[i]],
2837                              operand_mode[i],
2838                              0, 0, 0);
2839             operand_reloadnum[i] = output_reloadnum;
2840           }
2841         else if (insn_code_number >= 0)
2842           abort ();
2843         else
2844           {
2845             error_for_asm (insn, "inconsistent operand constraints in an `asm'");
2846             /* Avoid further trouble with this insn.  */
2847             PATTERN (insn) = gen_rtx (USE, VOIDmode, const0_rtx);
2848             n_reloads = 0;
2849             return;
2850           }
2851       }
2852     else if (goal_alternative_matched[i] < 0
2853              && goal_alternative_matches[i] < 0
2854              && optimize)
2855       {
2856         rtx operand = recog_operand[i];
2857         /* For each non-matching operand that's a pseudo-register 
2858            that didn't get a hard register, make an optional reload.
2859            This may get done even if the insn needs no reloads otherwise.  */
2860         /* (It would be safe to make an optional reload for a matching pair
2861            of operands, but we don't bother yet.)  */
2862         while (GET_CODE (operand) == SUBREG)
2863           operand = XEXP (operand, 0);
2864         if (GET_CODE (operand) == REG
2865             && REGNO (operand) >= FIRST_PSEUDO_REGISTER
2866             && reg_renumber[REGNO (operand)] < 0
2867             && (enum reg_class) goal_alternative[i] != NO_REGS
2868             /* Don't make optional output reloads for jump insns
2869                (such as aobjeq on the vax).  */
2870             && (modified[i] == RELOAD_READ
2871                 || GET_CODE (insn) != JUMP_INSN))
2872           operand_reloadnum[i]
2873             = push_reload (modified[i] != RELOAD_WRITE ? recog_operand[i] : 0,
2874                            modified[i] != RELOAD_READ ? recog_operand[i] : 0,
2875                            modified[i] != RELOAD_WRITE ? recog_operand_loc[i] : 0,
2876                            modified[i] != RELOAD_READ ? recog_operand_loc[i] : 0,
2877                            (enum reg_class) goal_alternative[i],
2878                            (modified[i] == RELOAD_WRITE ? VOIDmode : operand_mode[i]),
2879                            (modified[i] == RELOAD_READ ? VOIDmode : operand_mode[i]),
2880                            (insn_code_number < 0 ? 0
2881                             : insn_operand_strict_low[insn_code_number][i]),
2882                            1, 0);
2883         /* Make an optional reload for an explicit mem ref.  */
2884         else if (GET_CODE (operand) == MEM
2885                  && (enum reg_class) goal_alternative[i] != NO_REGS
2886                  /* Don't make optional output reloads for jump insns
2887                     (such as aobjeq on the vax).  */
2888                  && (modified[i] == RELOAD_READ
2889                      || GET_CODE (insn) != JUMP_INSN))
2890           operand_reloadnum[i]
2891             = push_reload (modified[i] != RELOAD_WRITE ? recog_operand[i] : 0,
2892                            modified[i] != RELOAD_READ ? recog_operand[i] : 0,
2893                            modified[i] != RELOAD_WRITE ? recog_operand_loc[i] : 0,
2894                            modified[i] != RELOAD_READ ? recog_operand_loc[i] : 0,
2895                            (enum reg_class) goal_alternative[i],
2896                            (modified[i] == RELOAD_WRITE ? VOIDmode : operand_mode[i]),
2897                            (modified[i] == RELOAD_READ ? VOIDmode : operand_mode[i]),
2898                            (insn_code_number < 0 ? 0
2899                             : insn_operand_strict_low[insn_code_number][i]),
2900                            1, 0);
2901         else
2902           non_reloaded_operands[n_non_reloaded_operands++] = recog_operand[i];
2903       }
2904     else if (goal_alternative_matched[i] < 0
2905              && goal_alternative_matches[i] < 0)
2906       non_reloaded_operands[n_non_reloaded_operands++] = recog_operand[i];
2907
2908   /* Record the values of the earlyclobber operands for the caller.  */
2909   if (goal_earlyclobber)
2910     for (i = 0; i < noperands; i++)
2911       if (goal_alternative_earlyclobber[i])
2912         reload_earlyclobbers[n_earlyclobbers++] = recog_operand[i];
2913
2914   /* If this insn pattern contains any MATCH_DUP's, make sure that
2915      they will be substituted if the operands they match are substituted.
2916      Also do now any substitutions we already did on the operands.
2917
2918      Don't do this if we aren't making replacements because we might be
2919      propagating things allocated by frame pointer elimination into places
2920      it doesn't expect.  */
2921
2922   if (insn_code_number >= 0 && replace)
2923     for (i = insn_n_dups[insn_code_number] - 1; i >= 0; i--)
2924       {
2925         int opno = recog_dup_num[i];
2926         *recog_dup_loc[i] = *recog_operand_loc[opno];
2927         if (operand_reloadnum[opno] >= 0)
2928           push_replacement (recog_dup_loc[i], operand_reloadnum[opno],
2929                             insn_operand_mode[insn_code_number][opno]);
2930       }
2931
2932 #if 0
2933   /* This loses because reloading of prior insns can invalidate the equivalence
2934      (or at least find_equiv_reg isn't smart enough to find it any more),
2935      causing this insn to need more reload regs than it needed before.
2936      It may be too late to make the reload regs available.
2937      Now this optimization is done safely in choose_reload_regs.  */
2938
2939   /* For each reload of a reg into some other class of reg,
2940      search for an existing equivalent reg (same value now) in the right class.
2941      We can use it as long as we don't need to change its contents.  */
2942   for (i = 0; i < n_reloads; i++)
2943     if (reload_reg_rtx[i] == 0
2944         && reload_in[i] != 0
2945         && GET_CODE (reload_in[i]) == REG
2946         && reload_out[i] == 0)
2947       {
2948         reload_reg_rtx[i]
2949           = find_equiv_reg (reload_in[i], insn, reload_reg_class[i], -1,
2950                             static_reload_reg_p, 0, reload_inmode[i]);
2951         /* Prevent generation of insn to load the value
2952            because the one we found already has the value.  */
2953         if (reload_reg_rtx[i])
2954           reload_in[i] = reload_reg_rtx[i];
2955       }
2956 #endif
2957
2958 #else /* no REGISTER_CONSTRAINTS */
2959   int noperands;
2960   int insn_code_number;
2961   int goal_earlyclobber = 0; /* Always 0, to make combine_reloads happen.  */
2962   register int i;
2963   rtx body = PATTERN (insn);
2964
2965   n_reloads = 0;
2966   n_replacements = 0;
2967   n_earlyclobbers = 0;
2968   replace_reloads = replace;
2969   this_insn = insn;
2970
2971   /* Find what kind of insn this is.  NOPERANDS gets number of operands.
2972      Store the operand values in RECOG_OPERAND and the locations
2973      of the words in the insn that point to them in RECOG_OPERAND_LOC.
2974      Return if the insn needs no reload processing.  */
2975
2976   switch (GET_CODE (body))
2977     {
2978     case USE:
2979     case CLOBBER:
2980     case ASM_INPUT:
2981     case ADDR_VEC:
2982     case ADDR_DIFF_VEC:
2983       return;
2984
2985     case PARALLEL:
2986     case SET:
2987       noperands = asm_noperands (body);
2988       if (noperands >= 0)
2989         {
2990           /* This insn is an `asm' with operands.
2991              First, find out how many operands, and allocate space.  */
2992
2993           insn_code_number = -1;
2994           /* ??? This is a bug! ???
2995              Give up and delete this insn if it has too many operands.  */
2996           if (noperands > MAX_RECOG_OPERANDS)
2997             abort ();
2998
2999           /* Now get the operand values out of the insn.  */
3000
3001           decode_asm_operands (body, recog_operand, recog_operand_loc, 0, 0);
3002           break;
3003         }
3004
3005     default:
3006       /* Ordinary insn: recognize it, allocate space for operands and
3007          constraints, and get them out via insn_extract.  */
3008
3009       insn_code_number = recog_memoized (insn);
3010       noperands = insn_n_operands[insn_code_number];
3011       insn_extract (insn);
3012     }
3013
3014   if (noperands == 0)
3015     return;
3016
3017   for (i = 0; i < noperands; i++)
3018     {
3019       register RTX_CODE code = GET_CODE (recog_operand[i]);
3020       int is_set_dest = GET_CODE (body) == SET && (i == 0);
3021
3022       if (insn_code_number >= 0)
3023         if (insn_operand_address_p[insn_code_number][i])
3024           find_reloads_address (VOIDmode, 0,
3025                                 recog_operand[i], recog_operand_loc[i],
3026                                 recog_operand[i], ind_levels);
3027       if (code == MEM)
3028         find_reloads_address (GET_MODE (recog_operand[i]),
3029                               recog_operand_loc[i],
3030                               XEXP (recog_operand[i], 0),
3031                               &XEXP (recog_operand[i], 0),
3032                               recog_operand[i], ind_levels);
3033       if (code == SUBREG)
3034         recog_operand[i] = *recog_operand_loc[i]
3035           = find_reloads_toplev (recog_operand[i], ind_levels, is_set_dest);
3036       if (code == REG)
3037         {
3038           register int regno = REGNO (recog_operand[i]);
3039           if (reg_equiv_constant[regno] != 0 && !is_set_dest)
3040             recog_operand[i] = *recog_operand_loc[i]
3041               = reg_equiv_constant[regno];
3042 #if 0 /* This might screw code in reload1.c to delete prior output-reload
3043          that feeds this insn.  */
3044           if (reg_equiv_mem[regno] != 0)
3045             recog_operand[i] = *recog_operand_loc[i]
3046               = reg_equiv_mem[regno];
3047 #endif
3048         }
3049       /* All operands are non-reloaded.  */
3050       non_reloaded_operands[n_non_reloaded_operands++] = recog_operand[i];
3051     }
3052 #endif /* no REGISTER_CONSTRAINTS */
3053
3054   /* Determine which part of the insn each reload is needed for,
3055      based on which operand the reload is needed for.
3056      Reloads of entire operands are classified as RELOAD_OTHER.
3057      So are reloads for which a unique purpose is not known.  */
3058
3059   for (i = 0; i < n_reloads; i++)
3060     {
3061       reload_when_needed[i] = RELOAD_OTHER;
3062
3063       if (reload_needed_for[i] != 0 && ! reload_needed_for_multiple[i])
3064         {
3065           int j;
3066           int output_address = 0;
3067           int input_address = 0;
3068           int operand_address = 0;
3069
3070           /* This reload is needed only for the address of something.
3071              Determine whether it is needed for addressing an operand
3072              being reloaded for input, whether it is needed for an
3073              operand being reloaded for output, and whether it is needed
3074              for addressing an operand that won't really be reloaded.
3075
3076              Note that we know that this reload is needed in only one address,
3077              but we have not yet checked for the case where that same address
3078              is used in both input and output reloads.
3079              The following code detects this case.  */
3080
3081           for (j = 0; j < n_reloads; j++)
3082             if (reload_needed_for[i] == reload_in[j]
3083                 || reload_needed_for[i] == reload_out[j])
3084               {
3085                 if (reload_optional[j])
3086                   operand_address = 1;
3087                 else
3088                   {
3089                     if (reload_needed_for[i] == reload_in[j])
3090                       input_address = 1;
3091                     if (reload_needed_for[i] == reload_out[j])
3092                       output_address = 1;
3093                   }
3094               }
3095           /* Don't ignore memrefs without optional reloads.  */
3096           for (j = 0; j < n_non_reloaded_operands; j++)
3097             if (reload_needed_for[i] == non_reloaded_operands[j])
3098               operand_address = 1;
3099
3100           /* If it is needed for only one of those, record which one.  */
3101
3102           if (input_address && ! output_address && ! operand_address)
3103             reload_when_needed[i] = RELOAD_FOR_INPUT_RELOAD_ADDRESS;
3104           if (output_address && ! input_address && ! operand_address)
3105             reload_when_needed[i] = RELOAD_FOR_OUTPUT_RELOAD_ADDRESS;
3106           if (operand_address && ! input_address && ! output_address)
3107             reload_when_needed[i] = RELOAD_FOR_OPERAND_ADDRESS;
3108
3109           /* Indicate those RELOAD_OTHER reloads which, though they have
3110              0 for reload_output, still cannot overlap an output reload.  */
3111
3112           if (output_address && reload_when_needed[i] == RELOAD_OTHER)
3113             reload_needed_for_multiple[i] = 1;
3114         }
3115     }
3116
3117   /* Perhaps an output reload can be combined with another
3118      to reduce needs by one.  */
3119   if (!goal_earlyclobber)
3120     combine_reloads ();
3121 }
3122
3123 /* Return 1 if alternative number ALTNUM in constraint-string CONSTRAINT
3124    accepts a memory operand with constant address.  */
3125
3126 static int
3127 alternative_allows_memconst (constraint, altnum)
3128      char *constraint;
3129      int altnum;
3130 {
3131   register int c;
3132   /* Skip alternatives before the one requested.  */
3133   while (altnum > 0)
3134     {
3135       while (*constraint++ != ',');
3136       altnum--;
3137     }
3138   /* Scan the requested alternative for 'm' or 'o'.
3139      If one of them is present, this alternative accepts memory constants.  */
3140   while ((c = *constraint++) && c != ',' && c != '#')
3141     if (c == 'm' || c == 'o')
3142       return 1;
3143   return 0;
3144 }
3145 \f
3146 /* Scan X for memory references and scan the addresses for reloading.
3147    Also checks for references to "constant" regs that we want to eliminate
3148    and replaces them with the values they stand for.
3149    We may alter X descructively if it contains a reference to such.
3150    If X is just a constant reg, we return the equivalent value
3151    instead of X.
3152
3153    IND_LEVELS says how many levels of indirect addressing this machine
3154    supports.
3155
3156    IS_SET_DEST is true if X is the destination of a SET, which is not
3157    appropriate to be replaced by a constant.  */
3158
3159 static rtx
3160 find_reloads_toplev (x, ind_levels, is_set_dest)
3161      rtx x;
3162      int ind_levels;
3163      int is_set_dest;
3164 {
3165   register RTX_CODE code = GET_CODE (x);
3166
3167   register char *fmt = GET_RTX_FORMAT (code);
3168   register int i;
3169
3170   if (code == REG)
3171     {
3172       /* This code is duplicated for speed in find_reloads.  */
3173       register int regno = REGNO (x);
3174       if (reg_equiv_constant[regno] != 0 && !is_set_dest)
3175         x = reg_equiv_constant[regno];
3176 #if 0
3177 /*  This creates (subreg (mem...)) which would cause an unnecessary
3178     reload of the mem.  */
3179       else if (reg_equiv_mem[regno] != 0)
3180         x = reg_equiv_mem[regno];
3181 #endif
3182       else if (reg_equiv_address[regno] != 0)
3183         {
3184           /* If reg_equiv_address varies, it may be shared, so copy it.  */
3185           rtx addr = reg_equiv_address[regno];
3186
3187           if (rtx_varies_p (addr))
3188             addr = copy_rtx (addr);
3189
3190           x = gen_rtx (MEM, GET_MODE (x), addr);
3191           RTX_UNCHANGING_P (x) = RTX_UNCHANGING_P (regno_reg_rtx[regno]);
3192           find_reloads_address (GET_MODE (x), 0,
3193                                 XEXP (x, 0),
3194                                 &XEXP (x, 0), x, ind_levels);
3195         }
3196       return x;
3197     }
3198   if (code == MEM)
3199     {
3200       rtx tem = x;
3201       find_reloads_address (GET_MODE (x), &tem, XEXP (x, 0), &XEXP (x, 0),
3202                             x, ind_levels);
3203       return tem;
3204     }
3205
3206   if (code == SUBREG && GET_CODE (SUBREG_REG (x)) == REG)
3207     {
3208       /* Check for SUBREG containing a REG that's equivalent to a constant. 
3209          If the constant has a known value, truncate it right now.
3210          Similarly if we are extracting a single-word of a multi-word
3211          constant.  If the constant is symbolic, allow it to be substituted
3212          normally.  push_reload will strip the subreg later.  If the
3213          constant is VOIDmode, abort because we will lose the mode of
3214          the register (this should never happen because one of the cases
3215          above should handle it).  */
3216
3217       register int regno = REGNO (SUBREG_REG (x));
3218       rtx tem;
3219
3220       if (subreg_lowpart_p (x)
3221           && regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
3222           && reg_equiv_constant[regno] != 0
3223           && (tem = gen_lowpart_common (GET_MODE (x),
3224                                         reg_equiv_constant[regno])) != 0)
3225         return tem;
3226
3227       if (GET_MODE_BITSIZE (GET_MODE (x)) == BITS_PER_WORD
3228           && regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
3229           && reg_equiv_constant[regno] != 0
3230           && (tem = operand_subword (reg_equiv_constant[regno],
3231                                      SUBREG_WORD (x), 0,
3232                                      GET_MODE (SUBREG_REG (x)))) != 0)
3233         return tem;
3234
3235       if (regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
3236           && reg_equiv_constant[regno] != 0
3237           && GET_MODE (reg_equiv_constant[regno]) == VOIDmode)
3238         abort ();
3239
3240       /* If the subreg contains a reg that will be converted to a mem,
3241          convert the subreg to a narrower memref now.
3242          Otherwise, we would get (subreg (mem ...) ...),
3243          which would force reload of the mem.
3244
3245          We also need to do this if there is an equivalent MEM that is
3246          not offsettable.  In that case, alter_subreg would produce an
3247          invalid address on big-endian machines.
3248
3249          For machines that zero-extend byte loads, we must not reload using
3250          a wider mode if we have a paradoxical SUBREG.  find_reloads will
3251          force a reload in that case.  So we should not do anything here.  */
3252
3253       else if (regno >= FIRST_PSEUDO_REGISTER
3254 #ifdef BYTE_LOADS_ZERO_EXTEND
3255                && (GET_MODE_SIZE (GET_MODE (x))
3256                    <= GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
3257 #endif
3258                && (reg_equiv_address[regno] != 0
3259                    || (reg_equiv_mem[regno] != 0
3260                        && ! offsettable_memref_p (reg_equiv_mem[regno]))))
3261         {
3262           int offset = SUBREG_WORD (x) * UNITS_PER_WORD;
3263           rtx addr = (reg_equiv_address[regno] ? reg_equiv_address[regno]
3264                       : XEXP (reg_equiv_mem[regno], 0));
3265 #if BYTES_BIG_ENDIAN
3266           int size;
3267           size = GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)));
3268           offset += MIN (size, UNITS_PER_WORD);
3269           size = GET_MODE_SIZE (GET_MODE (x));
3270           offset -= MIN (size, UNITS_PER_WORD);
3271 #endif
3272           addr = plus_constant (addr, offset);
3273           x = gen_rtx (MEM, GET_MODE (x), addr);
3274           RTX_UNCHANGING_P (x) = RTX_UNCHANGING_P (regno_reg_rtx[regno]);
3275           find_reloads_address (GET_MODE (x), 0,
3276                                 XEXP (x, 0),
3277                                 &XEXP (x, 0), x, ind_levels);
3278         }
3279
3280     }
3281
3282   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
3283     {
3284       if (fmt[i] == 'e')
3285         XEXP (x, i) = find_reloads_toplev (XEXP (x, i),
3286                                            ind_levels, is_set_dest);
3287     }
3288   return x;
3289 }
3290
3291 static rtx
3292 make_memloc (ad, regno)
3293      rtx ad;
3294      int regno;
3295 {
3296   register int i;
3297   rtx tem = reg_equiv_address[regno];
3298   for (i = 0; i < n_memlocs; i++)
3299     if (rtx_equal_p (tem, XEXP (memlocs[i], 0)))
3300       return memlocs[i];
3301
3302   /* If TEM might contain a pseudo, we must copy it to avoid
3303      modifying it when we do the substitution for the reload.  */
3304   if (rtx_varies_p (tem))
3305     tem = copy_rtx (tem);
3306
3307   tem = gen_rtx (MEM, GET_MODE (ad), tem);
3308   RTX_UNCHANGING_P (tem) = RTX_UNCHANGING_P (regno_reg_rtx[regno]);
3309   memlocs[n_memlocs++] = tem;
3310   return tem;
3311 }
3312
3313 /* Record all reloads needed for handling memory address AD
3314    which appears in *LOC in a memory reference to mode MODE
3315    which itself is found in location  *MEMREFLOC.
3316    Note that we take shortcuts assuming that no multi-reg machine mode
3317    occurs as part of an address.
3318
3319    OPERAND is the operand of the insn within which this address appears.
3320
3321    IND_LEVELS says how many levels of indirect addressing this machine
3322    supports.
3323
3324    Value is nonzero if this address is reloaded or replaced as a whole.
3325    This is interesting to the caller if the address is an autoincrement.
3326
3327    Note that there is no verification that the address will be valid after
3328    this routine does its work.  Instead, we rely on the fact that the address
3329    was valid when reload started.  So we need only undo things that reload
3330    could have broken.  These are wrong register types, pseudos not allocated
3331    to a hard register, and frame pointer elimination.  */
3332
3333 static int
3334 find_reloads_address (mode, memrefloc, ad, loc, operand, ind_levels)
3335      enum machine_mode mode;
3336      rtx *memrefloc;
3337      rtx ad;
3338      rtx *loc;
3339      rtx operand;
3340      int ind_levels;
3341 {
3342   register int regno;
3343   rtx tem;
3344
3345   /* If the address is a register, see if it is a legitimate address and
3346      reload if not.  We first handle the cases where we need not reload
3347      or where we must reload in a non-standard way.  */
3348
3349   if (GET_CODE (ad) == REG)
3350     {
3351       regno = REGNO (ad);
3352
3353       if (reg_equiv_constant[regno] != 0
3354           && strict_memory_address_p (mode, reg_equiv_constant[regno]))
3355         {
3356           *loc = ad = reg_equiv_constant[regno];
3357           return 1;
3358         }
3359
3360       else if (reg_equiv_address[regno] != 0)
3361         {
3362           tem = make_memloc (ad, regno);
3363           find_reloads_address (GET_MODE (tem), 0, XEXP (tem, 0),
3364                                 &XEXP (tem, 0), operand, ind_levels);
3365           push_reload (tem, 0, loc, 0, BASE_REG_CLASS,
3366                        GET_MODE (ad), VOIDmode, 0, 0,
3367                        operand);
3368           return 1;
3369         }
3370
3371       else if (reg_equiv_mem[regno] != 0)
3372         {
3373           tem = XEXP (reg_equiv_mem[regno], 0);
3374
3375           /* If we can't indirect any more, a pseudo must be reloaded.
3376              If the pseudo's address in its MEM is a SYMBOL_REF, it
3377              must be reloaded unless indirect_symref_ok.  Otherwise, it
3378              can be reloaded if the address is REG or REG + CONST_INT.  */
3379
3380           if (ind_levels > 0
3381               && ! (GET_CODE (tem) == SYMBOL_REF && ! indirect_symref_ok)
3382               && ((GET_CODE (tem) == REG
3383                    && REGNO (tem) < FIRST_PSEUDO_REGISTER)
3384                   || (GET_CODE (tem) == PLUS
3385                       && GET_CODE (XEXP (tem, 0)) == REG
3386                       && REGNO (XEXP (tem, 0)) < FIRST_PSEUDO_REGISTER
3387                       && GET_CODE (XEXP (tem, 1)) == CONST_INT)))
3388             return 0;
3389         }
3390
3391       /* The only remaining case where we can avoid a reload is if this is a
3392          hard register that is valid as a base register and which is not the
3393          subject of a CLOBBER in this insn.  */
3394
3395       else if (regno < FIRST_PSEUDO_REGISTER && REGNO_OK_FOR_BASE_P (regno)
3396                && ! regno_clobbered_p (regno, this_insn))
3397         return 0;
3398
3399       /* If we do not have one of the cases above, we must do the reload.  */
3400       push_reload (ad, 0, loc, 0, BASE_REG_CLASS,
3401                    GET_MODE (ad), VOIDmode, 0, 0, operand);
3402       return 1;
3403     }
3404
3405   if (strict_memory_address_p (mode, ad))
3406     {
3407       /* The address appears valid, so reloads are not needed.
3408          But the address may contain an eliminable register.
3409          This can happen because a machine with indirect addressing
3410          may consider a pseudo register by itself a valid address even when
3411          it has failed to get a hard reg.
3412          So do a tree-walk to find and eliminate all such regs.  */
3413
3414       /* But first quickly dispose of a common case.  */
3415       if (GET_CODE (ad) == PLUS
3416           && GET_CODE (XEXP (ad, 1)) == CONST_INT
3417           && GET_CODE (XEXP (ad, 0)) == REG
3418           && reg_equiv_constant[REGNO (XEXP (ad, 0))] == 0)
3419         return 0;
3420
3421       subst_reg_equivs_changed = 0;
3422       *loc = subst_reg_equivs (ad);
3423
3424       if (! subst_reg_equivs_changed)
3425         return 0;
3426
3427       /* Check result for validity after substitution.  */
3428       if (strict_memory_address_p (mode, ad))
3429         return 0;
3430     }
3431
3432   /* The address is not valid.  We have to figure out why.  One possibility
3433      is that it is itself a MEM.  This can happen when the frame pointer is
3434      being eliminated, a pseudo is not allocated to a hard register, and the
3435      offset between the frame and stack pointers is not its initial value.
3436      In that case the pseudo will have been replaced by a MEM referring to
3437      the stack pointer.  */
3438   if (GET_CODE (ad) == MEM)
3439     {
3440       /* First ensure that the address in this MEM is valid.  Then, unless
3441          indirect addresses are valid, reload the MEM into a register.  */
3442       tem = ad;
3443       find_reloads_address (GET_MODE (ad), &tem, XEXP (ad, 0), &XEXP (ad, 0),
3444                             operand, ind_levels == 0 ? 0 : ind_levels - 1);
3445       /* Check similar cases as for indirect addresses as above except
3446          that we can allow pseudos and a MEM since they should have been
3447          taken care of above.  */
3448
3449       if (ind_levels == 0
3450           || (GET_CODE (XEXP (tem, 0)) == SYMBOL_REF && ! indirect_symref_ok)
3451           || GET_CODE (XEXP (tem, 0)) == MEM
3452           || ! (GET_CODE (XEXP (tem, 0)) == REG
3453                 || (GET_CODE (XEXP (tem, 0)) == PLUS
3454                     && GET_CODE (XEXP (XEXP (tem, 0), 0)) == REG
3455                     && GET_CODE (XEXP (XEXP (tem, 0), 1)) == CONST_INT)))
3456         {
3457           /* Must use TEM here, not AD, since it is the one that will
3458              have any subexpressions reloaded, if needed.  */
3459           push_reload (tem, 0, loc, 0,
3460                        BASE_REG_CLASS, GET_MODE (tem), VOIDmode, 0,
3461                        0, operand);
3462           return 1;
3463         }
3464       else
3465         return 0;
3466     }
3467
3468   /* If we have address of a stack slot but it's not valid
3469      (displacement is too large), compute the sum in a register.  */
3470   else if (GET_CODE (ad) == PLUS
3471            && (XEXP (ad, 0) == frame_pointer_rtx
3472 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
3473                || XEXP (ad, 0) == arg_pointer_rtx
3474 #endif
3475                || XEXP (ad, 0) == stack_pointer_rtx)
3476            && GET_CODE (XEXP (ad, 1)) == CONST_INT)
3477     {
3478       /* Unshare the MEM rtx so we can safely alter it.  */
3479       if (memrefloc)
3480         {
3481           rtx oldref = *memrefloc;
3482           *memrefloc = copy_rtx (*memrefloc);
3483           loc = &XEXP (*memrefloc, 0);
3484           if (operand == oldref)
3485             operand = *memrefloc;
3486         }
3487       if (double_reg_address_ok)
3488         {
3489           /* Unshare the sum as well.  */
3490           *loc = ad = copy_rtx (ad);
3491           /* Reload the displacement into an index reg.
3492              We assume the frame pointer or arg pointer is a base reg.  */
3493           find_reloads_address_part (XEXP (ad, 1), &XEXP (ad, 1),
3494                                      INDEX_REG_CLASS, GET_MODE (ad), operand,
3495                                      ind_levels);
3496         }
3497       else
3498         {
3499           /* If the sum of two regs is not necessarily valid,
3500              reload the sum into a base reg.
3501              That will at least work.  */
3502           find_reloads_address_part (ad, loc, BASE_REG_CLASS, Pmode,
3503                                      operand, ind_levels);
3504         }
3505       return 1;
3506     }
3507
3508   /* If we have an indexed stack slot, there are three possible reasons why
3509      it might be invalid: The index might need to be reloaded, the address
3510      might have been made by frame pointer elimination and hence have a
3511      constant out of range, or both reasons might apply.  
3512
3513      We can easily check for an index needing reload, but even if that is the
3514      case, we might also have an invalid constant.  To avoid making the
3515      conservative assumption and requiring two reloads, we see if this address
3516      is valid when not interpreted strictly.  If it is, the only problem is
3517      that the index needs a reload and find_reloads_address_1 will take care
3518      of it.
3519
3520      There is still a case when we might generate an extra reload,
3521      however.  In certain cases eliminate_regs will return a MEM for a REG
3522      (see the code there for details).  In those cases, memory_address_p
3523      applied to our address will return 0 so we will think that our offset
3524      must be too large.  But it might indeed be valid and the only problem
3525      is that a MEM is present where a REG should be.  This case should be
3526      very rare and there doesn't seem to be any way to avoid it.
3527
3528      If we decide to do something here, it must be that
3529      `double_reg_address_ok' is true and that this address rtl was made by
3530      eliminate_regs.  We generate a reload of the fp/sp/ap + constant and
3531      rework the sum so that the reload register will be added to the index.
3532      This is safe because we know the address isn't shared.
3533
3534      We check for fp/ap/sp as both the first and second operand of the
3535      innermost PLUS.  */
3536
3537   else if (GET_CODE (ad) == PLUS && GET_CODE (XEXP (ad, 1)) == CONST_INT
3538            && GET_CODE (XEXP (ad, 0)) == PLUS
3539            && (XEXP (XEXP (ad, 0), 0) == frame_pointer_rtx
3540 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
3541                || XEXP (XEXP (ad, 0), 0) == arg_pointer_rtx
3542 #endif
3543                || XEXP (XEXP (ad, 0), 0) == stack_pointer_rtx)
3544            && ! memory_address_p (mode, ad))
3545     {
3546       *loc = ad = gen_rtx (PLUS, GET_MODE (ad),
3547                            plus_constant (XEXP (XEXP (ad, 0), 0),
3548                                           INTVAL (XEXP (ad, 1))),
3549                            XEXP (XEXP (ad, 0), 1));
3550       find_reloads_address_part (XEXP (ad, 0), &XEXP (ad, 0), BASE_REG_CLASS,
3551                                  GET_MODE (ad), operand, ind_levels);
3552       find_reloads_address_1 (XEXP (ad, 1), 1, &XEXP (ad, 1), operand, 0);
3553
3554       return 1;
3555     }
3556                            
3557   else if (GET_CODE (ad) == PLUS && GET_CODE (XEXP (ad, 1)) == CONST_INT
3558            && GET_CODE (XEXP (ad, 0)) == PLUS
3559            && (XEXP (XEXP (ad, 0), 1) == frame_pointer_rtx
3560 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
3561                || XEXP (XEXP (ad, 0), 1) == arg_pointer_rtx
3562 #endif
3563                || XEXP (XEXP (ad, 0), 1) == stack_pointer_rtx)
3564            && ! memory_address_p (mode, ad))
3565     {
3566       *loc = ad = gen_rtx (PLUS, GET_MODE (ad),
3567                            plus_constant (XEXP (XEXP (ad, 0), 1),
3568                                           INTVAL (XEXP (ad, 1))),
3569                            XEXP (XEXP (ad, 0), 0));
3570       find_reloads_address_part (XEXP (ad, 0), &XEXP (ad, 0), BASE_REG_CLASS,
3571                                  GET_MODE (ad), operand, ind_levels);
3572       find_reloads_address_1 (XEXP (ad, 1), 1, &XEXP (ad, 1), operand, 0);
3573
3574       return 1;
3575     }
3576                            
3577   /* See if address becomes valid when an eliminable register
3578      in a sum is replaced.  */
3579
3580   tem = ad;
3581   if (GET_CODE (ad) == PLUS)
3582     tem = subst_indexed_address (ad);
3583   if (tem != ad && strict_memory_address_p (mode, tem))
3584     {
3585       /* Ok, we win that way.  Replace any additional eliminable
3586          registers.  */
3587
3588       subst_reg_equivs_changed = 0;
3589       tem = subst_reg_equivs (tem);
3590
3591       /* Make sure that didn't make the address invalid again.  */
3592
3593       if (! subst_reg_equivs_changed || strict_memory_address_p (mode, tem))
3594         {
3595           *loc = tem;
3596           return 0;
3597         }
3598     }
3599
3600   /* If constants aren't valid addresses, reload the constant address
3601      into a register.  */
3602   if (CONSTANT_ADDRESS_P (ad) && ! strict_memory_address_p (mode, ad))
3603     {
3604       /* If AD is in address in the constant pool, the MEM rtx may be shared.
3605          Unshare it so we can safely alter it.  */
3606       if (memrefloc && GET_CODE (ad) == SYMBOL_REF
3607           && CONSTANT_POOL_ADDRESS_P (ad))
3608         {
3609           rtx oldref = *memrefloc;
3610           *memrefloc = copy_rtx (*memrefloc);
3611           loc = &XEXP (*memrefloc, 0);
3612           if (operand == oldref)
3613             operand = *memrefloc;
3614         }
3615
3616       find_reloads_address_part (ad, loc, BASE_REG_CLASS, Pmode, operand,
3617                                  ind_levels);
3618       return 1;
3619     }
3620
3621   return find_reloads_address_1 (ad, 0, loc, operand, ind_levels);
3622 }
3623 \f
3624 /* Find all pseudo regs appearing in AD
3625    that are eliminable in favor of equivalent values
3626    and do not have hard regs; replace them by their equivalents.  */
3627
3628 static rtx
3629 subst_reg_equivs (ad)
3630      rtx ad;
3631 {
3632   register RTX_CODE code = GET_CODE (ad);
3633   register int i;
3634   register char *fmt;
3635
3636   switch (code)
3637     {
3638     case HIGH:
3639     case CONST_INT:
3640     case CONST:
3641     case CONST_DOUBLE:
3642     case SYMBOL_REF:
3643     case LABEL_REF:
3644     case PC:
3645     case CC0:
3646       return ad;
3647
3648     case REG:
3649       {
3650         register int regno = REGNO (ad);
3651
3652         if (reg_equiv_constant[regno] != 0)
3653           {
3654             subst_reg_equivs_changed = 1;
3655             return reg_equiv_constant[regno];
3656           }
3657       }
3658       return ad;
3659
3660     case PLUS:
3661       /* Quickly dispose of a common case.  */
3662       if (XEXP (ad, 0) == frame_pointer_rtx
3663           && GET_CODE (XEXP (ad, 1)) == CONST_INT)
3664         return ad;
3665     }
3666
3667   fmt = GET_RTX_FORMAT (code);
3668   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
3669     if (fmt[i] == 'e')
3670       XEXP (ad, i) = subst_reg_equivs (XEXP (ad, i));
3671   return ad;
3672 }
3673 \f
3674 /* Compute the sum of X and Y, making canonicalizations assumed in an
3675    address, namely: sum constant integers, surround the sum of two
3676    constants with a CONST, put the constant as the second operand, and
3677    group the constant on the outermost sum.
3678
3679    This routine assumes both inputs are already in canonical form.  */
3680
3681 rtx
3682 form_sum (x, y)
3683      rtx x, y;
3684 {
3685   rtx tem;
3686
3687   if (GET_CODE (x) == CONST_INT)
3688     return plus_constant (y, INTVAL (x));
3689   else if (GET_CODE (y) == CONST_INT)
3690     return plus_constant (x, INTVAL (y));
3691   else if (CONSTANT_P (x))
3692     tem = x, x = y, y = tem;
3693
3694   if (GET_CODE (x) == PLUS && CONSTANT_P (XEXP (x, 1)))
3695     return form_sum (XEXP (x, 0), form_sum (XEXP (x, 1), y));
3696
3697   /* Note that if the operands of Y are specified in the opposite
3698      order in the recursive calls below, infinite recursion will occur.  */
3699   if (GET_CODE (y) == PLUS && CONSTANT_P (XEXP (y, 1)))
3700     return form_sum (form_sum (x, XEXP (y, 0)), XEXP (y, 1));
3701
3702   /* If both constant, encapsulate sum.  Otherwise, just form sum.  A
3703      constant will have been placed second.  */
3704   if (CONSTANT_P (x) && CONSTANT_P (y))
3705     {
3706       if (GET_CODE (x) == CONST)
3707         x = XEXP (x, 0);
3708       if (GET_CODE (y) == CONST)
3709         y = XEXP (y, 0);
3710
3711       return gen_rtx (CONST, VOIDmode, gen_rtx (PLUS, Pmode, x, y));
3712     }
3713
3714   return gen_rtx (PLUS, Pmode, x, y);
3715 }
3716 \f
3717 /* If ADDR is a sum containing a pseudo register that should be
3718    replaced with a constant (from reg_equiv_constant),
3719    return the result of doing so, and also apply the associative
3720    law so that the result is more likely to be a valid address.
3721    (But it is not guaranteed to be one.)
3722
3723    Note that at most one register is replaced, even if more are
3724    replaceable.  Also, we try to put the result into a canonical form
3725    so it is more likely to be a valid address.
3726
3727    In all other cases, return ADDR.  */
3728
3729 static rtx
3730 subst_indexed_address (addr)
3731      rtx addr;
3732 {
3733   rtx op0 = 0, op1 = 0, op2 = 0;
3734   rtx tem;
3735   int regno;
3736
3737   if (GET_CODE (addr) == PLUS)
3738     {
3739       /* Try to find a register to replace.  */
3740       op0 = XEXP (addr, 0), op1 = XEXP (addr, 1), op2 = 0;
3741       if (GET_CODE (op0) == REG
3742           && (regno = REGNO (op0)) >= FIRST_PSEUDO_REGISTER
3743           && reg_renumber[regno] < 0
3744           && reg_equiv_constant[regno] != 0)
3745         op0 = reg_equiv_constant[regno];
3746       else if (GET_CODE (op1) == REG
3747           && (regno = REGNO (op1)) >= FIRST_PSEUDO_REGISTER
3748           && reg_renumber[regno] < 0
3749           && reg_equiv_constant[regno] != 0)
3750         op1 = reg_equiv_constant[regno];
3751       else if (GET_CODE (op0) == PLUS
3752                && (tem = subst_indexed_address (op0)) != op0)
3753         op0 = tem;
3754       else if (GET_CODE (op1) == PLUS
3755                && (tem = subst_indexed_address (op1)) != op1)
3756         op1 = tem;
3757       else
3758         return addr;
3759
3760       /* Pick out up to three things to add.  */
3761       if (GET_CODE (op1) == PLUS)
3762         op2 = XEXP (op1, 1), op1 = XEXP (op1, 0);
3763       else if (GET_CODE (op0) == PLUS)
3764         op2 = op1, op1 = XEXP (op0, 1), op0 = XEXP (op0, 0);
3765
3766       /* Compute the sum.  */
3767       if (op2 != 0)
3768         op1 = form_sum (op1, op2);
3769       if (op1 != 0)
3770         op0 = form_sum (op0, op1);
3771
3772       return op0;
3773     }
3774   return addr;
3775 }
3776 \f
3777 /* Record the pseudo registers we must reload into hard registers
3778    in a subexpression of a would-be memory address, X.
3779    (This function is not called if the address we find is strictly valid.)
3780    CONTEXT = 1 means we are considering regs as index regs,
3781    = 0 means we are considering them as base regs.
3782
3783    OPERAND is the operand of the insn within which this address appears.
3784
3785    IND_LEVELS says how many levels of indirect addressing are
3786    supported at this point in the address.
3787
3788    We return nonzero if X, as a whole, is reloaded or replaced.  */
3789
3790 /* Note that we take shortcuts assuming that no multi-reg machine mode
3791    occurs as part of an address.
3792    Also, this is not fully machine-customizable; it works for machines
3793    such as vaxes and 68000's and 32000's, but other possible machines
3794    could have addressing modes that this does not handle right.  */
3795
3796 static int
3797 find_reloads_address_1 (x, context, loc, operand, ind_levels)
3798      rtx x;
3799      int context;
3800      rtx *loc;
3801      rtx operand;
3802      int ind_levels;
3803 {
3804   register RTX_CODE code = GET_CODE (x);
3805
3806   if (code == PLUS)
3807     {
3808       register rtx op0 = XEXP (x, 0);
3809       register rtx op1 = XEXP (x, 1);
3810       register RTX_CODE code0 = GET_CODE (op0);
3811       register RTX_CODE code1 = GET_CODE (op1);
3812       if (code0 == MULT || code0 == SIGN_EXTEND || code1 == MEM)
3813         {
3814           find_reloads_address_1 (op0, 1, &XEXP (x, 0), operand, ind_levels);
3815           find_reloads_address_1 (op1, 0, &XEXP (x, 1), operand, ind_levels);
3816         }
3817       else if (code1 == MULT || code1 == SIGN_EXTEND || code0 == MEM)
3818         {
3819           find_reloads_address_1 (op0, 0, &XEXP (x, 0), operand, ind_levels);
3820           find_reloads_address_1 (op1, 1, &XEXP (x, 1), operand, ind_levels);
3821         }
3822       else if (code0 == CONST_INT || code0 == CONST
3823                || code0 == SYMBOL_REF || code0 == LABEL_REF)
3824         {
3825           find_reloads_address_1 (op1, 0, &XEXP (x, 1), operand, ind_levels);
3826         }
3827       else if (code1 == CONST_INT || code1 == CONST
3828                || code1 == SYMBOL_REF || code1 == LABEL_REF)
3829         {
3830           find_reloads_address_1 (op0, 0, &XEXP (x, 0), operand, ind_levels);
3831         }
3832       else if (code0 == REG && code1 == REG)
3833         {
3834           if (REG_OK_FOR_INDEX_P (op0)
3835               && REG_OK_FOR_BASE_P (op1))
3836             return 0;
3837           else if (REG_OK_FOR_INDEX_P (op1)
3838               && REG_OK_FOR_BASE_P (op0))
3839             return 0;
3840           else if (REG_OK_FOR_BASE_P (op1))
3841             find_reloads_address_1 (op0, 1, &XEXP (x, 0), operand, ind_levels);
3842           else if (REG_OK_FOR_BASE_P (op0))
3843             find_reloads_address_1 (op1, 1, &XEXP (x, 1), operand, ind_levels);
3844           else if (REG_OK_FOR_INDEX_P (op1))
3845             find_reloads_address_1 (op0, 0, &XEXP (x, 0), operand, ind_levels);
3846           else if (REG_OK_FOR_INDEX_P (op0))
3847             find_reloads_address_1 (op1, 0, &XEXP (x, 1), operand, ind_levels);
3848           else
3849             {
3850               find_reloads_address_1 (op0, 1, &XEXP (x, 0), operand,
3851                                       ind_levels);
3852               find_reloads_address_1 (op1, 0, &XEXP (x, 1), operand,
3853                                       ind_levels);
3854             }
3855         }
3856       else if (code0 == REG)
3857         {
3858           find_reloads_address_1 (op0, 1, &XEXP (x, 0), operand, ind_levels);
3859           find_reloads_address_1 (op1, 0, &XEXP (x, 1), operand, ind_levels);
3860         }
3861       else if (code1 == REG)
3862         {
3863           find_reloads_address_1 (op1, 1, &XEXP (x, 1), operand, ind_levels);
3864           find_reloads_address_1 (op0, 0, &XEXP (x, 0), operand, ind_levels);
3865         }
3866     }
3867   else if (code == POST_INC || code == POST_DEC
3868            || code == PRE_INC || code == PRE_DEC)
3869     {
3870       if (GET_CODE (XEXP (x, 0)) == REG)
3871         {
3872           register int regno = REGNO (XEXP (x, 0));
3873           int value = 0;
3874           rtx x_orig = x;
3875
3876           /* A register that is incremented cannot be constant!  */
3877           if (regno >= FIRST_PSEUDO_REGISTER
3878               && reg_equiv_constant[regno] != 0)
3879             abort ();
3880
3881           /* Handle a register that is equivalent to a memory location
3882              which cannot be addressed directly.  */
3883           if (reg_equiv_address[regno] != 0)
3884             {
3885               rtx tem = make_memloc (XEXP (x, 0), regno);
3886               /* First reload the memory location's address.  */
3887               find_reloads_address (GET_MODE (tem), 0, XEXP (tem, 0),
3888                                     &XEXP (tem, 0), operand, ind_levels);
3889               /* Put this inside a new increment-expression.  */
3890               x = gen_rtx (GET_CODE (x), GET_MODE (x), tem);
3891               /* Proceed to reload that, as if it contained a register.  */
3892             }
3893
3894           /* If we have a hard register that is ok as an index,
3895              don't make a reload.  If an autoincrement of a nice register
3896              isn't "valid", it must be that no autoincrement is "valid".
3897              If that is true and something made an autoincrement anyway,
3898              this must be a special context where one is allowed.
3899              (For example, a "push" instruction.)
3900              We can't improve this address, so leave it alone.  */
3901
3902           /* Otherwise, reload the autoincrement into a suitable hard reg
3903              and record how much to increment by.  */
3904
3905           if (reg_renumber[regno] >= 0)
3906             regno = reg_renumber[regno];
3907           if ((regno >= FIRST_PSEUDO_REGISTER
3908                || !(context ? REGNO_OK_FOR_INDEX_P (regno)
3909                     : REGNO_OK_FOR_BASE_P (regno))))
3910             {
3911               register rtx link;
3912
3913               int reloadnum
3914                 = push_reload (x, 0, loc, 0,
3915                                context ? INDEX_REG_CLASS : BASE_REG_CLASS,
3916                                GET_MODE (x), GET_MODE (x), VOIDmode, 0, operand);
3917               reload_inc[reloadnum]
3918                 = find_inc_amount (PATTERN (this_insn), XEXP (x_orig, 0));
3919
3920               value = 1;
3921
3922 #ifdef AUTO_INC_DEC
3923               /* Update the REG_INC notes.  */
3924
3925               for (link = REG_NOTES (this_insn);
3926                    link; link = XEXP (link, 1))
3927                 if (REG_NOTE_KIND (link) == REG_INC
3928                     && REGNO (XEXP (link, 0)) == REGNO (XEXP (x_orig, 0)))
3929                   push_replacement (&XEXP (link, 0), reloadnum, VOIDmode);
3930 #endif
3931             }
3932           return value;
3933         }
3934       else if (GET_CODE (XEXP (x, 0)) == MEM)
3935         {
3936           /* This is probably the result of a substitution, by eliminate_regs,
3937              of an equivalent address for a pseudo that was not allocated to a
3938              hard register.  Verify that the specified address is valid and
3939              reload it into a register.  */
3940           rtx tem = XEXP (x, 0);
3941           register rtx link;
3942           int reloadnum;
3943
3944           /* Since we know we are going to reload this item, don't decrement
3945              for the indirection level.
3946
3947              Note that this is actually conservative:  it would be slightly
3948              more efficient to use the value of SPILL_INDIRECT_LEVELS from
3949              reload1.c here.  */
3950           find_reloads_address (GET_MODE (x), &XEXP (x, 0),
3951                                 XEXP (XEXP (x, 0), 0), &XEXP (XEXP (x, 0), 0),
3952                                 operand, ind_levels);
3953
3954           reloadnum = push_reload (x, 0, loc, 0,
3955                                    context ? INDEX_REG_CLASS : BASE_REG_CLASS,
3956                                    GET_MODE (x), VOIDmode, 0, 0, operand);
3957           reload_inc[reloadnum]
3958             = find_inc_amount (PATTERN (this_insn), XEXP (x, 0));
3959
3960           link = FIND_REG_INC_NOTE (this_insn, tem);
3961           if (link != 0)
3962             push_replacement (&XEXP (link, 0), reloadnum, VOIDmode);
3963
3964           return 1;
3965         }
3966     }
3967   else if (code == MEM)
3968     {
3969       /* This is probably the result of a substitution, by eliminate_regs,
3970          of an equivalent address for a pseudo that was not allocated to a
3971          hard register.  Verify that the specified address is valid and reload
3972          it into a register.
3973
3974          Since we know we are going to reload this item, don't decrement
3975          for the indirection level.
3976
3977          Note that this is actually conservative:  it would be slightly more
3978          efficient to use the value of SPILL_INDIRECT_LEVELS from
3979          reload1.c here.  */
3980
3981       find_reloads_address (GET_MODE (x), loc, XEXP (x, 0), &XEXP (x, 0),
3982                             operand, ind_levels);
3983
3984       push_reload (*loc, 0, loc, 0,
3985                    context ? INDEX_REG_CLASS : BASE_REG_CLASS,
3986                    GET_MODE (x), VOIDmode, 0, 0, operand);
3987       return 1;
3988     }
3989   else if (code == REG)
3990     {
3991       register int regno = REGNO (x);
3992
3993       if (reg_equiv_constant[regno] != 0)
3994         {
3995           push_reload (reg_equiv_constant[regno], 0, loc, 0,
3996                        context ? INDEX_REG_CLASS : BASE_REG_CLASS,
3997                        GET_MODE (x), VOIDmode, 0, 0, operand);
3998           return 1;
3999         }
4000
4001 #if 0 /* This might screw code in reload1.c to delete prior output-reload
4002          that feeds this insn.  */
4003       if (reg_equiv_mem[regno] != 0)
4004         {
4005           push_reload (reg_equiv_mem[regno], 0, loc, 0,
4006                        context ? INDEX_REG_CLASS : BASE_REG_CLASS,
4007                        GET_MODE (x), VOIDmode, 0, 0, operand);
4008           return 1;
4009         }
4010 #endif
4011       if (reg_equiv_address[regno] != 0)
4012         {
4013           x = make_memloc (x, regno);
4014           find_reloads_address (GET_MODE (x), 0, XEXP (x, 0), &XEXP (x, 0),
4015                                 operand, ind_levels);
4016         }
4017
4018       if (reg_renumber[regno] >= 0)
4019         regno = reg_renumber[regno];
4020       if ((regno >= FIRST_PSEUDO_REGISTER
4021            || !(context ? REGNO_OK_FOR_INDEX_P (regno)
4022                 : REGNO_OK_FOR_BASE_P (regno))))
4023         {
4024           push_reload (x, 0, loc, 0,
4025                        context ? INDEX_REG_CLASS : BASE_REG_CLASS,
4026                        GET_MODE (x), VOIDmode, 0, 0, operand);
4027           return 1;
4028         }
4029
4030       /* If a register appearing in an address is the subject of a CLOBBER
4031          in this insn, reload it into some other register to be safe.
4032          The CLOBBER is supposed to make the register unavailable
4033          from before this insn to after it.  */
4034       if (regno_clobbered_p (regno, this_insn))
4035         {
4036           push_reload (x, 0, loc, 0,
4037                        context ? INDEX_REG_CLASS : BASE_REG_CLASS,
4038                        GET_MODE (x), VOIDmode, 0, 0, operand);
4039           return 1;
4040         }
4041     }
4042   else
4043     {
4044       register char *fmt = GET_RTX_FORMAT (code);
4045       register int i;
4046       for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4047         {
4048           if (fmt[i] == 'e')
4049             find_reloads_address_1 (XEXP (x, i), context, &XEXP (x, i),
4050                                     operand, ind_levels);
4051         }
4052     }
4053
4054   return 0;
4055 }
4056 \f
4057 /* X, which is found at *LOC, is a part of an address that needs to be
4058    reloaded into a register of class CLASS.  If X is a constant, or if
4059    X is a PLUS that contains a constant, check that the constant is a
4060    legitimate operand and that we are supposed to be able to load
4061    it into the register.
4062
4063    If not, force the constant into memory and reload the MEM instead.
4064
4065    MODE is the mode to use, in case X is an integer constant.
4066
4067    NEEDED_FOR says which operand this reload is needed for.
4068
4069    IND_LEVELS says how many levels of indirect addressing this machine
4070    supports.  */
4071
4072 static void
4073 find_reloads_address_part (x, loc, class, mode, needed_for, ind_levels)
4074      rtx x;
4075      rtx *loc;
4076      enum reg_class class;
4077      enum machine_mode mode;
4078      rtx needed_for;
4079      int ind_levels;
4080 {
4081   if (CONSTANT_P (x)
4082       && (! LEGITIMATE_CONSTANT_P (x)
4083           || PREFERRED_RELOAD_CLASS (x, class) == NO_REGS))
4084     {
4085       rtx tem = x = force_const_mem (mode, x);
4086       find_reloads_address (mode, &tem, XEXP (tem, 0), &XEXP (tem, 0),
4087                             needed_for, ind_levels);
4088     }
4089
4090   else if (GET_CODE (x) == PLUS
4091            && CONSTANT_P (XEXP (x, 1))
4092            && (! LEGITIMATE_CONSTANT_P (XEXP (x, 1))
4093                || PREFERRED_RELOAD_CLASS (XEXP (x, 1), class) == NO_REGS))
4094     {
4095       rtx tem = force_const_mem (GET_MODE (x), XEXP (x, 1));
4096
4097       x = gen_rtx (PLUS, GET_MODE (x), XEXP (x, 0), tem);
4098       find_reloads_address (mode, &tem, XEXP (tem, 0), &XEXP (tem, 0),
4099                             needed_for, ind_levels);
4100     }
4101
4102   push_reload (x, 0, loc, 0, class, mode, VOIDmode, 0, 0, needed_for);
4103 }
4104 \f
4105 /* Substitute into X the registers into which we have reloaded
4106    the things that need reloading.  The array `replacements'
4107    says contains the locations of all pointers that must be changed
4108    and says what to replace them with.
4109
4110    Return the rtx that X translates into; usually X, but modified.  */
4111
4112 void
4113 subst_reloads ()
4114 {
4115   register int i;
4116
4117   for (i = 0; i < n_replacements; i++)
4118     {
4119       register struct replacement *r = &replacements[i];
4120       register rtx reloadreg = reload_reg_rtx[r->what];
4121       if (reloadreg)
4122         {
4123           /* Encapsulate RELOADREG so its machine mode matches what
4124              used to be there.  */
4125           if (GET_MODE (reloadreg) != r->mode && r->mode != VOIDmode)
4126             reloadreg = gen_rtx (REG, r->mode, REGNO (reloadreg));
4127
4128           /* If we are putting this into a SUBREG and RELOADREG is a
4129              SUBREG, we would be making nested SUBREGs, so we have to fix
4130              this up.  Note that r->where == &SUBREG_REG (*r->subreg_loc).  */
4131
4132           if (r->subreg_loc != 0 && GET_CODE (reloadreg) == SUBREG)
4133             {
4134               if (GET_MODE (*r->subreg_loc)
4135                   == GET_MODE (SUBREG_REG (reloadreg)))
4136                 *r->subreg_loc = SUBREG_REG (reloadreg);
4137               else
4138                 {
4139                   *r->where = SUBREG_REG (reloadreg);
4140                   SUBREG_WORD (*r->subreg_loc) += SUBREG_WORD (reloadreg);
4141                 }
4142             }
4143           else
4144             *r->where = reloadreg;
4145         }
4146       /* If reload got no reg and isn't optional, something's wrong.  */
4147       else if (! reload_optional[r->what])
4148         abort ();
4149     }
4150 }
4151 \f
4152 /* Make a copy of any replacements being done into X and move those copies
4153    to locations in Y, a copy of X.  We only look at the highest level of
4154    the RTL.  */
4155
4156 void
4157 copy_replacements (x, y)
4158      rtx x;
4159      rtx y;
4160 {
4161   int i, j;
4162   enum rtx_code code = GET_CODE (x);
4163   char *fmt = GET_RTX_FORMAT (code);
4164   struct replacement *r;
4165
4166   /* We can't support X being a SUBREG because we might then need to know its
4167      location if something inside it was replaced.  */
4168   if (code == SUBREG)
4169     abort ();
4170
4171   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4172     if (fmt[i] == 'e')
4173       for (j = 0; j < n_replacements; j++)
4174         {
4175           if (replacements[j].subreg_loc == &XEXP (x, i))
4176             {
4177               r = &replacements[n_replacements++];
4178               r->where = replacements[j].where;
4179               r->subreg_loc = &XEXP (y, i);
4180               r->what = replacements[j].what;
4181               r->mode = replacements[j].mode;
4182             }
4183           else if (replacements[j].where == &XEXP (x, i))
4184             {
4185               r = &replacements[n_replacements++];
4186               r->where = &XEXP (y, i);
4187               r->subreg_loc = 0;
4188               r->what = replacements[j].what;
4189               r->mode = replacements[j].mode;
4190             }
4191         }
4192 }
4193 \f
4194 /* If LOC was scheduled to be replaced by something, return the replacement.
4195    Otherwise, return *LOC.  */
4196
4197 rtx
4198 find_replacement (loc)
4199      rtx *loc;
4200 {
4201   struct replacement *r;
4202
4203   for (r = &replacements[0]; r < &replacements[n_replacements]; r++)
4204     {
4205       rtx reloadreg = reload_reg_rtx[r->what];
4206
4207       if (reloadreg && r->where == loc)
4208         {
4209           if (r->mode != VOIDmode && GET_MODE (reloadreg) != r->mode)
4210             reloadreg = gen_rtx (REG, r->mode, REGNO (reloadreg));
4211
4212           return reloadreg;
4213         }
4214       else if (reloadreg && r->subreg_loc == loc)
4215         {
4216           /* RELOADREG must be either a REG or a SUBREG.
4217
4218              ??? Is it actually still ever a SUBREG?  If so, why?  */
4219
4220           if (GET_CODE (reloadreg) == REG)
4221             return gen_rtx (REG, GET_MODE (*loc),
4222                             REGNO (reloadreg) + SUBREG_WORD (*loc));
4223           else if (GET_MODE (reloadreg) == GET_MODE (*loc))
4224             return reloadreg;
4225           else
4226             return gen_rtx (SUBREG, GET_MODE (*loc), SUBREG_REG (reloadreg),
4227                             SUBREG_WORD (reloadreg) + SUBREG_WORD (*loc));
4228         }
4229     }
4230
4231   return *loc;
4232 }
4233 \f
4234 /* Return nonzero if register in range [REGNO, ENDREGNO)
4235    appears either explicitly or implicitly in X
4236    other than being stored into.
4237
4238    References contained within the substructure at LOC do not count.
4239    LOC may be zero, meaning don't ignore anything.
4240
4241    This is similar to refers_to_regno_p in rtlanal.c except that we
4242    look at equivalences for pseudos that didn't get hard registers.  */
4243
4244 int
4245 refers_to_regno_for_reload_p (regno, endregno, x, loc)
4246      int regno, endregno;
4247      rtx x;
4248      rtx *loc;
4249 {
4250   register int i;
4251   register RTX_CODE code;
4252   register char *fmt;
4253
4254   if (x == 0)
4255     return 0;
4256
4257  repeat:
4258   code = GET_CODE (x);
4259
4260   switch (code)
4261     {
4262     case REG:
4263       i = REGNO (x);
4264
4265       if (i >= FIRST_PSEUDO_REGISTER && reg_renumber[i] == -1
4266           && ((reg_equiv_address[i]
4267                && refers_to_regno_for_reload_p (regno, endregno,
4268                                                 reg_equiv_address[i], 0))
4269               || (reg_equiv_mem[i]
4270                   && refers_to_regno_for_reload_p (regno, endregno,
4271                                                    XEXP (reg_equiv_mem[i], 0),
4272                                                    0))))
4273         return 1;
4274
4275       return (endregno > i
4276               && regno < i + (i < FIRST_PSEUDO_REGISTER 
4277                               ? HARD_REGNO_NREGS (i, GET_MODE (x))
4278                               : 1));
4279
4280     case SUBREG:
4281       /* If this is a SUBREG of a hard reg, we can see exactly which
4282          registers are being modified.  Otherwise, handle normally.  */
4283       if (GET_CODE (SUBREG_REG (x)) == REG
4284           && REGNO (SUBREG_REG (x)) < FIRST_PSEUDO_REGISTER)
4285         {
4286           int inner_regno = REGNO (SUBREG_REG (x)) + SUBREG_WORD (x);
4287           int inner_endregno
4288             = inner_regno + (inner_regno < FIRST_PSEUDO_REGISTER
4289                              ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
4290
4291           return endregno > inner_regno && regno < inner_endregno;
4292         }
4293       break;
4294
4295     case CLOBBER:
4296     case SET:
4297       if (&SET_DEST (x) != loc
4298           /* Note setting a SUBREG counts as referring to the REG it is in for
4299              a pseudo but not for hard registers since we can
4300              treat each word individually.  */
4301           && ((GET_CODE (SET_DEST (x)) == SUBREG
4302                && loc != &SUBREG_REG (SET_DEST (x))
4303                && GET_CODE (SUBREG_REG (SET_DEST (x))) == REG
4304                && REGNO (SUBREG_REG (SET_DEST (x))) >= FIRST_PSEUDO_REGISTER
4305                && refers_to_regno_for_reload_p (regno, endregno,
4306                                                 SUBREG_REG (SET_DEST (x)),
4307                                                 loc))
4308               || (GET_CODE (SET_DEST (x)) != REG
4309                   && refers_to_regno_for_reload_p (regno, endregno,
4310                                                    SET_DEST (x), loc))))
4311         return 1;
4312
4313       if (code == CLOBBER || loc == &SET_SRC (x))
4314         return 0;
4315       x = SET_SRC (x);
4316       goto repeat;
4317     }
4318
4319   /* X does not match, so try its subexpressions.  */
4320
4321   fmt = GET_RTX_FORMAT (code);
4322   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4323     {
4324       if (fmt[i] == 'e' && loc != &XEXP (x, i))
4325         {
4326           if (i == 0)
4327             {
4328               x = XEXP (x, 0);
4329               goto repeat;
4330             }
4331           else
4332             if (refers_to_regno_for_reload_p (regno, endregno,
4333                                               XEXP (x, i), loc))
4334               return 1;
4335         }
4336       else if (fmt[i] == 'E')
4337         {
4338           register int j;
4339           for (j = XVECLEN (x, i) - 1; j >=0; j--)
4340             if (loc != &XVECEXP (x, i, j)
4341                 && refers_to_regno_for_reload_p (regno, endregno,
4342                                                  XVECEXP (x, i, j), loc))
4343               return 1;
4344         }
4345     }
4346   return 0;
4347 }
4348 \f
4349 #if 0
4350
4351 /* [[This function is currently obsolete, now that volatility
4352    is represented by a special bit `volatil' so VOLATILE is never used;
4353    and UNCHANGING has never been brought into use.]]
4354
4355    Alter X by eliminating all VOLATILE and UNCHANGING expressions.
4356    Each of them is replaced by its operand.
4357    Thus, (PLUS (VOLATILE (MEM (REG 5))) (CONST_INT 4))
4358    becomes (PLUS (MEM (REG 5)) (CONST_INT 4)).
4359
4360    If X is itself a VOLATILE expression,
4361    we return the expression that should replace it
4362    but we do not modify X.  */
4363
4364 static rtx
4365 forget_volatility (x)
4366      register rtx x;
4367 {
4368   enum rtx_code code = GET_CODE (x);
4369   register char *fmt;
4370   register int i;
4371   register rtx value = 0;
4372
4373   switch (code)
4374     {
4375     case LABEL_REF:
4376     case SYMBOL_REF:
4377     case CONST_INT:
4378     case CONST_DOUBLE:
4379     case CONST:
4380     case REG:
4381     case CC0:
4382     case PC:
4383       return x;
4384
4385     case VOLATILE:
4386     case UNCHANGING:
4387       return XEXP (x, 0);
4388     }
4389
4390   fmt = GET_RTX_FORMAT (code);
4391   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4392     {
4393       if (fmt[i] == 'e')
4394         XEXP (x, i) = forget_volatility (XEXP (x, i));
4395       if (fmt[i] == 'E')
4396         {
4397           register int j;
4398           for (j = XVECLEN (x, i) - 1; j >= 0; j--)
4399             XVECEXP (x, i, j) = forget_volatility (XVECEXP (x, i, j));
4400         }
4401     }
4402
4403   return x;
4404 }
4405
4406 #endif
4407 \f
4408 /* Check the insns before INSN to see if there is a suitable register
4409    containing the same value as GOAL.
4410    If OTHER is -1, look for a register in class CLASS.
4411    Otherwise, just see if register number OTHER shares GOAL's value.
4412
4413    Return an rtx for the register found, or zero if none is found.
4414
4415    If RELOAD_REG_P is (short *)1,
4416    we reject any hard reg that appears in reload_reg_rtx
4417    because such a hard reg is also needed coming into this insn.
4418
4419    If RELOAD_REG_P is any other nonzero value,
4420    it is a vector indexed by hard reg number
4421    and we reject any hard reg whose element in the vector is nonnegative
4422    as well as any that appears in reload_reg_rtx.
4423
4424    If GOAL is zero, then GOALREG is a register number; we look
4425    for an equivalent for that register.
4426
4427    MODE is the machine mode of the value we want an equivalence for.
4428    If GOAL is nonzero and not VOIDmode, then it must have mode MODE.
4429
4430    This function is used by jump.c as well as in the reload pass.
4431
4432    If GOAL is the sum of the stack pointer and a constant, we treat it
4433    as if it were a constant except that sp is required to be unchanging.  */
4434
4435 rtx
4436 find_equiv_reg (goal, insn, class, other, reload_reg_p, goalreg, mode)
4437      register rtx goal;
4438      rtx insn;
4439      enum reg_class class;
4440      register int other;
4441      short *reload_reg_p;
4442      int goalreg;
4443      enum machine_mode mode;
4444 {
4445   register rtx p = insn;
4446   rtx valtry, value, where;
4447   register rtx pat;
4448   register int regno = -1;
4449   int valueno;
4450   int goal_mem = 0;
4451   int goal_const = 0;
4452   int goal_mem_addr_varies = 0;
4453   int need_stable_sp = 0;
4454   int nregs;
4455   int valuenregs;
4456
4457   if (goal == 0)
4458     regno = goalreg;
4459   else if (GET_CODE (goal) == REG)
4460     regno = REGNO (goal);
4461   else if (GET_CODE (goal) == MEM)
4462     {
4463       enum rtx_code code = GET_CODE (XEXP (goal, 0));
4464       if (MEM_VOLATILE_P (goal))
4465         return 0;
4466       if (flag_float_store && GET_MODE_CLASS (GET_MODE (goal)) == MODE_FLOAT)
4467         return 0;
4468       /* An address with side effects must be reexecuted.  */
4469       switch (code)
4470         {
4471         case POST_INC:
4472         case PRE_INC:
4473         case POST_DEC:
4474         case PRE_DEC:
4475           return 0;
4476         }
4477       goal_mem = 1;
4478     }
4479   else if (CONSTANT_P (goal))
4480     goal_const = 1;
4481   else if (GET_CODE (goal) == PLUS
4482            && XEXP (goal, 0) == stack_pointer_rtx
4483            && CONSTANT_P (XEXP (goal, 1)))
4484     goal_const = need_stable_sp = 1;
4485   else
4486     return 0;
4487
4488   /* On some machines, certain regs must always be rejected
4489      because they don't behave the way ordinary registers do.  */
4490   
4491 #ifdef OVERLAPPING_REGNO_P
4492    if (regno >= 0 && regno < FIRST_PSEUDO_REGISTER
4493        && OVERLAPPING_REGNO_P (regno))
4494      return 0;
4495 #endif      
4496
4497   /* Scan insns back from INSN, looking for one that copies
4498      a value into or out of GOAL.
4499      Stop and give up if we reach a label.  */
4500
4501   while (1)
4502     {
4503       p = PREV_INSN (p);
4504       if (p == 0 || GET_CODE (p) == CODE_LABEL)
4505         return 0;
4506       if (GET_CODE (p) == INSN
4507           /* If we don't want spill regs ... */
4508           && (! (reload_reg_p != 0 && reload_reg_p != (short *)1)
4509           /* ... then ignore insns introduced by reload; they aren't useful
4510              and can cause results in reload_as_needed to be different
4511              from what they were when calculating the need for spills.
4512              If we notice an input-reload insn here, we will reject it below,
4513              but it might hide a usable equivalent.  That makes bad code.
4514              It may even abort: perhaps no reg was spilled for this insn
4515              because it was assumed we would find that equivalent.  */
4516               || INSN_UID (p) < reload_first_uid))
4517         {
4518           rtx tem;
4519           pat = single_set (p);
4520           /* First check for something that sets some reg equal to GOAL.  */
4521           if (pat != 0
4522               && ((regno >= 0
4523                    && true_regnum (SET_SRC (pat)) == regno
4524                    && (valueno = true_regnum (valtry = SET_DEST (pat))) >= 0)
4525                   ||
4526                   (regno >= 0
4527                    && true_regnum (SET_DEST (pat)) == regno
4528                    && (valueno = true_regnum (valtry = SET_SRC (pat))) >= 0)
4529                   ||
4530                   (goal_const && rtx_equal_p (SET_SRC (pat), goal)
4531                    && (valueno = true_regnum (valtry = SET_DEST (pat))) >= 0)
4532                   || (goal_mem
4533                       && (valueno = true_regnum (valtry = SET_DEST (pat))) >= 0
4534                       && rtx_renumbered_equal_p (goal, SET_SRC (pat)))
4535                   || (goal_mem
4536                       && (valueno = true_regnum (valtry = SET_SRC (pat))) >= 0
4537                       && rtx_renumbered_equal_p (goal, SET_DEST (pat)))
4538                   /* If we are looking for a constant,
4539                      and something equivalent to that constant was copied
4540                      into a reg, we can use that reg.  */
4541                   || (goal_const && (tem = find_reg_note (p, REG_EQUIV, 0))
4542                       && rtx_equal_p (XEXP (tem, 0), goal)
4543                       && (valueno = true_regnum (valtry = SET_DEST (pat))))
4544                   || (goal_const && (tem = find_reg_note (p, REG_EQUIV, 0))
4545                       && GET_CODE (SET_DEST (pat)) == REG
4546                       && GET_CODE (XEXP (tem, 0)) == CONST_DOUBLE
4547                       && GET_MODE_CLASS (GET_MODE (XEXP (tem, 0))) == MODE_FLOAT
4548                       && GET_CODE (goal) == CONST_INT
4549                       && INTVAL (goal) == CONST_DOUBLE_LOW (XEXP (tem, 0))
4550                       && (valtry = operand_subword (SET_DEST (pat), 0, 0,
4551                                                     VOIDmode))
4552                       && (valueno = true_regnum (valtry)))
4553                   || (goal_const && (tem = find_reg_note (p, REG_EQUIV, 0))
4554                       && GET_CODE (SET_DEST (pat)) == REG
4555                       && GET_CODE (XEXP (tem, 0)) == CONST_DOUBLE
4556                       && GET_MODE_CLASS (GET_MODE (XEXP (tem, 0))) == MODE_FLOAT
4557                       && GET_CODE (goal) == CONST_INT
4558                       && INTVAL (goal) == CONST_DOUBLE_HIGH (XEXP (tem, 0))
4559                       && (valtry
4560                           = operand_subword (SET_DEST (pat), 1, 0, VOIDmode))
4561                       && (valueno = true_regnum (valtry)))))
4562             if (other >= 0
4563                 ? valueno == other
4564                 : ((unsigned) valueno < FIRST_PSEUDO_REGISTER
4565                    && TEST_HARD_REG_BIT (reg_class_contents[(int) class],
4566                                          valueno)))
4567               {
4568                 value = valtry;
4569                 where = p;
4570                 break;
4571               }
4572         }
4573     }
4574
4575   /* We found a previous insn copying GOAL into a suitable other reg VALUE
4576      (or copying VALUE into GOAL, if GOAL is also a register).
4577      Now verify that VALUE is really valid.  */
4578
4579   /* VALUENO is the register number of VALUE; a hard register.  */
4580
4581   /* Don't try to re-use something that is killed in this insn.  We want
4582      to be able to trust REG_UNUSED notes.  */
4583   if (find_reg_note (where, REG_UNUSED, value))
4584     return 0;
4585
4586   /* If we propose to get the value from the stack pointer or if GOAL is
4587      a MEM based on the stack pointer, we need a stable SP.  */
4588   if (valueno == STACK_POINTER_REGNUM
4589       || (goal_mem && reg_overlap_mentioned_p (stack_pointer_rtx, goal)))
4590     need_stable_sp = 1;
4591
4592   /* Reject VALUE if the copy-insn moved the wrong sort of datum.  */
4593   if (GET_MODE (value) != mode)
4594     return 0;
4595
4596   /* Reject VALUE if it was loaded from GOAL
4597      and is also a register that appears in the address of GOAL.  */
4598
4599   if (goal_mem && value == SET_DEST (PATTERN (where))
4600       && refers_to_regno_p (valueno,
4601                             valueno + HARD_REGNO_NREGS (valueno, mode),
4602                             goal, 0))
4603     return 0;
4604
4605   /* Reject registers that overlap GOAL.  */
4606
4607   if (!goal_mem && !goal_const
4608       && regno + HARD_REGNO_NREGS (regno, mode) > valueno
4609       && regno < valueno + HARD_REGNO_NREGS (valueno, mode))
4610     return 0;
4611
4612   /* Reject VALUE if it is one of the regs reserved for reloads.
4613      Reload1 knows how to reuse them anyway, and it would get
4614      confused if we allocated one without its knowledge.
4615      (Now that insns introduced by reload are ignored above,
4616      this case shouldn't happen, but I'm not positive.)  */
4617
4618   if (reload_reg_p != 0 && reload_reg_p != (short *)1
4619       && reload_reg_p[valueno] >= 0)
4620     return 0;
4621
4622   /* On some machines, certain regs must always be rejected
4623      because they don't behave the way ordinary registers do.  */
4624   
4625 #ifdef OVERLAPPING_REGNO_P
4626   if (OVERLAPPING_REGNO_P (valueno))
4627     return 0;
4628 #endif      
4629
4630   nregs = HARD_REGNO_NREGS (regno, mode);
4631   valuenregs = HARD_REGNO_NREGS (valueno, mode);
4632
4633   /* Reject VALUE if it is a register being used for an input reload
4634      even if it is not one of those reserved.  */
4635
4636   if (reload_reg_p != 0)
4637     {
4638       int i;
4639       for (i = 0; i < n_reloads; i++)
4640         if (reload_reg_rtx[i] != 0 && reload_in[i])
4641           {
4642             int regno1 = REGNO (reload_reg_rtx[i]);
4643             int nregs1 = HARD_REGNO_NREGS (regno1,
4644                                            GET_MODE (reload_reg_rtx[i]));
4645             if (regno1 < valueno + valuenregs
4646                 && regno1 + nregs1 > valueno)
4647               return 0;
4648           }
4649     }
4650
4651   if (goal_mem)
4652     goal_mem_addr_varies = rtx_addr_varies_p (goal);
4653
4654   /* Now verify that the values of GOAL and VALUE remain unaltered
4655      until INSN is reached.  */
4656
4657   p = insn;
4658   while (1)
4659     {
4660       p = PREV_INSN (p);
4661       if (p == where)
4662         return value;
4663
4664       /* Don't trust the conversion past a function call
4665          if either of the two is in a call-clobbered register, or memory.  */
4666       if (GET_CODE (p) == CALL_INSN
4667           && ((regno >= 0 && regno < FIRST_PSEUDO_REGISTER
4668                && call_used_regs[regno])
4669               ||
4670               (valueno >= 0 && valueno < FIRST_PSEUDO_REGISTER
4671                && call_used_regs[valueno])
4672               ||
4673               goal_mem
4674               || need_stable_sp))
4675         return 0;
4676
4677 #ifdef INSN_CLOBBERS_REGNO_P
4678       if ((valueno >= 0 && valueno < FIRST_PSEUDO_REGISTER
4679           && INSN_CLOBBERS_REGNO_P (p, valueno))
4680           || (regno >= 0 && regno < FIRST_PSEUDO_REGISTER
4681           && INSN_CLOBBERS_REGNO_P (p, regno)))
4682         return 0;
4683 #endif
4684
4685       if (GET_RTX_CLASS (GET_CODE (p)) == 'i')
4686         {
4687           /* If this insn P stores in either GOAL or VALUE, return 0.
4688              If GOAL is a memory ref and this insn writes memory, return 0.
4689              If GOAL is a memory ref and its address is not constant,
4690              and this insn P changes a register used in GOAL, return 0.  */
4691
4692           pat = PATTERN (p);
4693           if (GET_CODE (pat) == SET || GET_CODE (pat) == CLOBBER)
4694             {
4695               register rtx dest = SET_DEST (pat);
4696               while (GET_CODE (dest) == SUBREG
4697                      || GET_CODE (dest) == ZERO_EXTRACT
4698                      || GET_CODE (dest) == SIGN_EXTRACT
4699                      || GET_CODE (dest) == STRICT_LOW_PART)
4700                 dest = XEXP (dest, 0);
4701               if (GET_CODE (dest) == REG)
4702                 {
4703                   register int xregno = REGNO (dest);
4704                   int xnregs;
4705                   if (REGNO (dest) < FIRST_PSEUDO_REGISTER)
4706                     xnregs = HARD_REGNO_NREGS (xregno, GET_MODE (dest));
4707                   else
4708                     xnregs = 1;
4709                   if (xregno < regno + nregs && xregno + xnregs > regno)
4710                     return 0;
4711                   if (xregno < valueno + valuenregs
4712                       && xregno + xnregs > valueno)
4713                     return 0;
4714                   if (goal_mem_addr_varies
4715                       && reg_overlap_mentioned_p (dest, goal))
4716                     return 0;
4717                 }
4718               else if (goal_mem && GET_CODE (dest) == MEM
4719                        && ! push_operand (dest, GET_MODE (dest)))
4720                 return 0;
4721               else if (need_stable_sp && push_operand (dest, GET_MODE (dest)))
4722                 return 0;
4723             }
4724           else if (GET_CODE (pat) == PARALLEL)
4725             {
4726               register int i;
4727               for (i = XVECLEN (pat, 0) - 1; i >= 0; i--)
4728                 {
4729                   register rtx v1 = XVECEXP (pat, 0, i);
4730                   if (GET_CODE (v1) == SET || GET_CODE (v1) == CLOBBER)
4731                     {
4732                       register rtx dest = SET_DEST (v1);
4733                       while (GET_CODE (dest) == SUBREG
4734                              || GET_CODE (dest) == ZERO_EXTRACT
4735                              || GET_CODE (dest) == SIGN_EXTRACT
4736                              || GET_CODE (dest) == STRICT_LOW_PART)
4737                         dest = XEXP (dest, 0);
4738                       if (GET_CODE (dest) == REG)
4739                         {
4740                           register int xregno = REGNO (dest);
4741                           int xnregs;
4742                           if (REGNO (dest) < FIRST_PSEUDO_REGISTER)
4743                             xnregs = HARD_REGNO_NREGS (xregno, GET_MODE (dest));
4744                           else
4745                             xnregs = 1;
4746                           if (xregno < regno + nregs
4747                               && xregno + xnregs > regno)
4748                             return 0;
4749                           if (xregno < valueno + valuenregs
4750                               && xregno + xnregs > valueno)
4751                             return 0;
4752                           if (goal_mem_addr_varies
4753                               && reg_overlap_mentioned_p (dest, goal))
4754                             return 0;
4755                         }
4756                       else if (goal_mem && GET_CODE (dest) == MEM
4757                                && ! push_operand (dest, GET_MODE (dest)))
4758                         return 0;
4759                       else if (need_stable_sp
4760                                && push_operand (dest, GET_MODE (dest)))
4761                         return 0;
4762                     }
4763                 }
4764             }
4765
4766 #ifdef AUTO_INC_DEC
4767           /* If this insn auto-increments or auto-decrements
4768              either regno or valueno, return 0 now.
4769              If GOAL is a memory ref and its address is not constant,
4770              and this insn P increments a register used in GOAL, return 0.  */
4771           {
4772             register rtx link;
4773
4774             for (link = REG_NOTES (p); link; link = XEXP (link, 1))
4775               if (REG_NOTE_KIND (link) == REG_INC
4776                   && GET_CODE (XEXP (link, 0)) == REG)
4777                 {
4778                   register int incno = REGNO (XEXP (link, 0));
4779                   if (incno < regno + nregs && incno >= regno)
4780                     return 0;
4781                   if (incno < valueno + valuenregs && incno >= valueno)
4782                     return 0;
4783                   if (goal_mem_addr_varies
4784                       && reg_overlap_mentioned_p (XEXP (link, 0), goal))
4785                     return 0;
4786                 }
4787           }
4788 #endif
4789         }
4790     }
4791 }
4792 \f
4793 /* Find a place where INCED appears in an increment or decrement operator
4794    within X, and return the amount INCED is incremented or decremented by.
4795    The value is always positive.  */
4796
4797 static int
4798 find_inc_amount (x, inced)
4799      rtx x, inced;
4800 {
4801   register enum rtx_code code = GET_CODE (x);
4802   register char *fmt;
4803   register int i;
4804
4805   if (code == MEM)
4806     {
4807       register rtx addr = XEXP (x, 0);
4808       if ((GET_CODE (addr) == PRE_DEC
4809            || GET_CODE (addr) == POST_DEC
4810            || GET_CODE (addr) == PRE_INC
4811            || GET_CODE (addr) == POST_INC)
4812           && XEXP (addr, 0) == inced)
4813         return GET_MODE_SIZE (GET_MODE (x));
4814     }
4815
4816   fmt = GET_RTX_FORMAT (code);
4817   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4818     {
4819       if (fmt[i] == 'e')
4820         {
4821           register int tem = find_inc_amount (XEXP (x, i), inced);
4822           if (tem != 0)
4823             return tem;
4824         }
4825       if (fmt[i] == 'E')
4826         {
4827           register int j;
4828           for (j = XVECLEN (x, i) - 1; j >= 0; j--)
4829             {
4830               register int tem = find_inc_amount (XVECEXP (x, i, j), inced);
4831               if (tem != 0)
4832                 return tem;
4833             }
4834         }
4835     }
4836
4837   return 0;
4838 }
4839 \f
4840 /* Return 1 if register REGNO is the subject of a clobber in insn INSN.  */
4841
4842 int
4843 regno_clobbered_p (regno, insn)
4844      int regno;
4845      rtx insn;
4846 {
4847   if (GET_CODE (PATTERN (insn)) == CLOBBER
4848       && GET_CODE (XEXP (PATTERN (insn), 0)) == REG)
4849     return REGNO (XEXP (PATTERN (insn), 0)) == regno;
4850
4851   if (GET_CODE (PATTERN (insn)) == PARALLEL)
4852     {
4853       int i = XVECLEN (PATTERN (insn), 0) - 1;
4854
4855       for (; i >= 0; i--)
4856         {
4857           rtx elt = XVECEXP (PATTERN (insn), 0, i);
4858           if (GET_CODE (elt) == CLOBBER && GET_CODE (XEXP (elt, 0)) == REG
4859               && REGNO (XEXP (elt, 0)) == regno)
4860             return 1;
4861         }
4862     }
4863
4864   return 0;
4865 }