OSDN Git Service

* reload.c (find_reloads): In code to promote RELOAD_FOR_X_ADDR_ADDR
[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, 88, 89, 92-97, 1998 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, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21
22 /* This file contains subroutines used only from the file reload1.c.
23    It knows how to scan one insn for operands and values
24    that need to be copied into registers to make valid code.
25    It also finds other operands and values which are valid
26    but for which equivalent values in registers exist and
27    ought to be used instead.
28
29    Before processing the first insn of the function, call `init_reload'.
30
31    To scan an insn, call `find_reloads'.  This does two things:
32    1. sets up tables describing which values must be reloaded
33    for this insn, and what kind of hard regs they must be reloaded into;
34    2. optionally record the locations where those values appear in
35    the data, so they can be replaced properly later.
36    This is done only if the second arg to `find_reloads' is nonzero.
37
38    The third arg to `find_reloads' specifies the number of levels
39    of indirect addressing supported by the machine.  If it is zero,
40    indirect addressing is not valid.  If it is one, (MEM (REG n))
41    is valid even if (REG n) did not get a hard register; if it is two,
42    (MEM (MEM (REG n))) is also valid even if (REG n) did not get a
43    hard register, and similarly for higher values.
44
45    Then you must choose the hard regs to reload those pseudo regs into,
46    and generate appropriate load insns before this insn and perhaps
47    also store insns after this insn.  Set up the array `reload_reg_rtx'
48    to contain the REG rtx's for the registers you used.  In some
49    cases `find_reloads' will return a nonzero value in `reload_reg_rtx'
50    for certain reloads.  Then that tells you which register to use,
51    so you do not need to allocate one.  But you still do need to add extra
52    instructions to copy the value into and out of that register.
53
54    Finally you must call `subst_reloads' to substitute the reload reg rtx's
55    into the locations already recorded.
56
57 NOTE SIDE EFFECTS:
58
59    find_reloads can alter the operands of the instruction it is called on.
60
61    1. Two operands of any sort may be interchanged, if they are in a
62    commutative instruction.
63    This happens only if find_reloads thinks the instruction will compile
64    better that way.
65
66    2. Pseudo-registers that are equivalent to constants are replaced
67    with those constants if they are not in hard registers.
68
69 1 happens every time find_reloads is called.
70 2 happens only when REPLACE is 1, which is only when
71 actually doing the reloads, not when just counting them.
72
73
74 Using a reload register for several reloads in one insn:
75
76 When an insn has reloads, it is considered as having three parts:
77 the input reloads, the insn itself after reloading, and the output reloads.
78 Reloads of values used in memory addresses are often needed for only one part.
79
80 When this is so, reload_when_needed records which part needs the reload.
81 Two reloads for different parts of the insn can share the same reload
82 register.
83
84 When a reload is used for addresses in multiple parts, or when it is
85 an ordinary operand, it is classified as RELOAD_OTHER, and cannot share
86 a register with any other reload.  */
87
88 #define REG_OK_STRICT
89
90 #include "config.h"
91 #include "system.h"
92 #include "rtl.h"
93 #include "insn-config.h"
94 #include "insn-codes.h"
95 #include "recog.h"
96 #include "reload.h"
97 #include "regs.h"
98 #include "hard-reg-set.h"
99 #include "flags.h"
100 #include "real.h"
101 #include "output.h"
102 #include "expr.h"
103 #include "toplev.h"
104
105 #ifndef REGISTER_MOVE_COST
106 #define REGISTER_MOVE_COST(x, y) 2
107 #endif
108
109 #ifndef REGNO_MODE_OK_FOR_BASE_P
110 #define REGNO_MODE_OK_FOR_BASE_P(REGNO, MODE) REGNO_OK_FOR_BASE_P (REGNO)
111 #endif
112
113 #ifndef REG_MODE_OK_FOR_BASE_P
114 #define REG_MODE_OK_FOR_BASE_P(REGNO, MODE) REG_OK_FOR_BASE_P (REGNO)
115 #endif
116 \f
117 /* The variables set up by `find_reloads' are:
118
119    n_reloads              number of distinct reloads needed; max reload # + 1
120        tables indexed by reload number
121    reload_in              rtx for value to reload from
122    reload_out             rtx for where to store reload-reg afterward if nec
123                            (often the same as reload_in)
124    reload_reg_class       enum reg_class, saying what regs to reload into
125    reload_inmode          enum machine_mode; mode this operand should have
126                            when reloaded, on input.
127    reload_outmode         enum machine_mode; mode this operand should have
128                            when reloaded, on output.
129    reload_optional        char, nonzero for an optional reload.
130                            Optional reloads are ignored unless the
131                            value is already sitting in a register.
132    reload_nongroup        char, nonzero when a reload must use a register
133                            not already allocated to a group.
134    reload_inc             int, positive amount to increment or decrement by if
135                            reload_in is a PRE_DEC, PRE_INC, POST_DEC, POST_INC.
136                            Ignored otherwise (don't assume it is zero).
137    reload_in_reg          rtx.  A reg for which reload_in is the equivalent.
138                            If reload_in is a symbol_ref which came from
139                            reg_equiv_constant, then this is the pseudo
140                            which has that symbol_ref as equivalent.
141    reload_reg_rtx         rtx.  This is the register to reload into.
142                            If it is zero when `find_reloads' returns,
143                            you must find a suitable register in the class
144                            specified by reload_reg_class, and store here
145                            an rtx for that register with mode from
146                            reload_inmode or reload_outmode.
147    reload_nocombine       char, nonzero if this reload shouldn't be
148                            combined with another reload.
149    reload_opnum           int, operand number being reloaded.  This is
150                            used to group related reloads and need not always
151                            be equal to the actual operand number in the insn,
152                            though it current will be; for in-out operands, it
153                            is one of the two operand numbers.
154    reload_when_needed    enum, classifies reload as needed either for
155                            addressing an input reload, addressing an output,
156                            for addressing a non-reloaded mem ref,
157                            or for unspecified purposes (i.e., more than one
158                            of the above).
159    reload_secondary_p     int, 1 if this is a secondary register for one
160                            or more reloads.
161    reload_secondary_in_reload
162    reload_secondary_out_reload
163                           int, gives the reload number of a secondary
164                            reload, when needed; otherwise -1
165    reload_secondary_in_icode
166    reload_secondary_out_icode
167                           enum insn_code, if a secondary reload is required,
168                            gives the INSN_CODE that uses the secondary
169                            reload as a scratch register, or CODE_FOR_nothing
170                            if the secondary reload register is to be an
171                            intermediate register.  */
172 int n_reloads;
173
174 rtx reload_in[MAX_RELOADS];
175 rtx reload_out[MAX_RELOADS];
176 enum reg_class reload_reg_class[MAX_RELOADS];
177 enum machine_mode reload_inmode[MAX_RELOADS];
178 enum machine_mode reload_outmode[MAX_RELOADS];
179 rtx reload_reg_rtx[MAX_RELOADS];
180 char reload_optional[MAX_RELOADS];
181 char reload_nongroup[MAX_RELOADS];
182 int reload_inc[MAX_RELOADS];
183 rtx reload_in_reg[MAX_RELOADS];
184 char reload_nocombine[MAX_RELOADS];
185 int reload_opnum[MAX_RELOADS];
186 enum reload_type reload_when_needed[MAX_RELOADS];
187 int reload_secondary_p[MAX_RELOADS];
188 int reload_secondary_in_reload[MAX_RELOADS];
189 int reload_secondary_out_reload[MAX_RELOADS];
190 enum insn_code reload_secondary_in_icode[MAX_RELOADS];
191 enum insn_code reload_secondary_out_icode[MAX_RELOADS];
192
193 /* All the "earlyclobber" operands of the current insn
194    are recorded here.  */
195 int n_earlyclobbers;
196 rtx reload_earlyclobbers[MAX_RECOG_OPERANDS];
197
198 int reload_n_operands;
199
200 /* Replacing reloads.
201
202    If `replace_reloads' is nonzero, then as each reload is recorded
203    an entry is made for it in the table `replacements'.
204    Then later `subst_reloads' can look through that table and
205    perform all the replacements needed.  */
206
207 /* Nonzero means record the places to replace.  */
208 static int replace_reloads;
209
210 /* Each replacement is recorded with a structure like this.  */
211 struct replacement
212 {
213   rtx *where;                   /* Location to store in */
214   rtx *subreg_loc;              /* Location of SUBREG if WHERE is inside
215                                    a SUBREG; 0 otherwise.  */
216   int what;                     /* which reload this is for */
217   enum machine_mode mode;       /* mode it must have */
218 };
219
220 static struct replacement replacements[MAX_RECOG_OPERANDS * ((MAX_REGS_PER_ADDRESS * 2) + 1)];
221
222 /* Number of replacements currently recorded.  */
223 static int n_replacements;
224
225 /* Used to track what is modified by an operand.  */
226 struct decomposition
227 {
228   int reg_flag;         /* Nonzero if referencing a register.  */
229   int safe;             /* Nonzero if this can't conflict with anything.  */
230   rtx base;             /* Base address for MEM.  */
231   HOST_WIDE_INT start;  /* Starting offset or register number.  */
232   HOST_WIDE_INT end;    /* Ending offset or register number.  */
233 };
234
235 /* MEM-rtx's created for pseudo-regs in stack slots not directly addressable;
236    (see reg_equiv_address).  */
237 static rtx memlocs[MAX_RECOG_OPERANDS * ((MAX_REGS_PER_ADDRESS * 2) + 1)];
238 static int n_memlocs;
239
240 #ifdef SECONDARY_MEMORY_NEEDED
241
242 /* Save MEMs needed to copy from one class of registers to another.  One MEM
243    is used per mode, but normally only one or two modes are ever used.  
244
245    We keep two versions, before and after register elimination.  The one 
246    after register elimination is record separately for each operand.  This
247    is done in case the address is not valid to be sure that we separately
248    reload each.  */
249
250 static rtx secondary_memlocs[NUM_MACHINE_MODES];
251 static rtx secondary_memlocs_elim[NUM_MACHINE_MODES][MAX_RECOG_OPERANDS];
252 #endif
253
254 /* The instruction we are doing reloads for;
255    so we can test whether a register dies in it.  */
256 static rtx this_insn;
257
258 /* Nonzero if this instruction is a user-specified asm with operands.  */
259 static int this_insn_is_asm;
260
261 /* If hard_regs_live_known is nonzero,
262    we can tell which hard regs are currently live,
263    at least enough to succeed in choosing dummy reloads.  */
264 static int hard_regs_live_known;
265
266 /* Indexed by hard reg number,
267    element is nonnegative if hard reg has been spilled.
268    This vector is passed to `find_reloads' as an argument
269    and is not changed here.  */
270 static short *static_reload_reg_p;
271
272 /* Set to 1 in subst_reg_equivs if it changes anything.  */
273 static int subst_reg_equivs_changed;
274
275 /* On return from push_reload, holds the reload-number for the OUT
276    operand, which can be different for that from the input operand.  */
277 static int output_reloadnum;
278
279   /* Compare two RTX's.  */
280 #define MATCHES(x, y) \
281  (x == y || (x != 0 && (GET_CODE (x) == REG                             \
282                         ? GET_CODE (y) == REG && REGNO (x) == REGNO (y) \
283                         : rtx_equal_p (x, y) && ! side_effects_p (x))))
284
285   /* Indicates if two reloads purposes are for similar enough things that we
286      can merge their reloads.  */
287 #define MERGABLE_RELOADS(when1, when2, op1, op2) \
288   ((when1) == RELOAD_OTHER || (when2) == RELOAD_OTHER   \
289    || ((when1) == (when2) && (op1) == (op2))            \
290    || ((when1) == RELOAD_FOR_INPUT && (when2) == RELOAD_FOR_INPUT) \
291    || ((when1) == RELOAD_FOR_OPERAND_ADDRESS            \
292        && (when2) == RELOAD_FOR_OPERAND_ADDRESS)        \
293    || ((when1) == RELOAD_FOR_OTHER_ADDRESS              \
294        && (when2) == RELOAD_FOR_OTHER_ADDRESS))
295
296   /* Nonzero if these two reload purposes produce RELOAD_OTHER when merged.  */
297 #define MERGE_TO_OTHER(when1, when2, op1, op2) \
298   ((when1) != (when2)                                   \
299    || ! ((op1) == (op2)                                 \
300          || (when1) == RELOAD_FOR_INPUT                 \
301          || (when1) == RELOAD_FOR_OPERAND_ADDRESS       \
302          || (when1) == RELOAD_FOR_OTHER_ADDRESS))
303
304   /* If we are going to reload an address, compute the reload type to
305      use.  */
306 #define ADDR_TYPE(type)                                 \
307   ((type) == RELOAD_FOR_INPUT_ADDRESS                   \
308    ? RELOAD_FOR_INPADDR_ADDRESS                         \
309    : ((type) == RELOAD_FOR_OUTPUT_ADDRESS               \
310       ? RELOAD_FOR_OUTADDR_ADDRESS                      \
311       : (type)))
312
313 #ifdef HAVE_SECONDARY_RELOADS
314 static int push_secondary_reload PROTO((int, rtx, int, int, enum reg_class,
315                                         enum machine_mode, enum reload_type,
316                                         enum insn_code *));
317 #endif
318 static enum reg_class find_valid_class PROTO((enum machine_mode, int));
319 static int push_reload          PROTO((rtx, rtx, rtx *, rtx *, enum reg_class,
320                                        enum machine_mode, enum machine_mode,
321                                        int, int, int, enum reload_type));
322 static void push_replacement    PROTO((rtx *, int, enum machine_mode));
323 static void combine_reloads     PROTO((void));
324 static rtx find_dummy_reload    PROTO((rtx, rtx, rtx *, rtx *,
325                                        enum machine_mode, enum machine_mode,
326                                        enum reg_class, int, int));
327 static int earlyclobber_operand_p PROTO((rtx));
328 static int hard_reg_set_here_p  PROTO((int, int, rtx));
329 static struct decomposition decompose PROTO((rtx));
330 static int immune_p             PROTO((rtx, rtx, struct decomposition));
331 static int alternative_allows_memconst PROTO((char *, int));
332 static rtx find_reloads_toplev  PROTO((rtx, int, enum reload_type, int, int));
333 static rtx make_memloc          PROTO((rtx, int));
334 static int find_reloads_address PROTO((enum machine_mode, rtx *, rtx, rtx *,
335                                        int, enum reload_type, int, rtx));
336 static rtx subst_reg_equivs     PROTO((rtx));
337 static rtx subst_indexed_address PROTO((rtx));
338 static int find_reloads_address_1 PROTO((enum machine_mode, rtx, int, rtx *,
339                                          int, enum reload_type,int, rtx));
340 static void find_reloads_address_part PROTO((rtx, rtx *, enum reg_class,
341                                              enum machine_mode, int,
342                                              enum reload_type, int));
343 static int find_inc_amount      PROTO((rtx, rtx));
344 \f
345 #ifdef HAVE_SECONDARY_RELOADS
346
347 /* Determine if any secondary reloads are needed for loading (if IN_P is
348    non-zero) or storing (if IN_P is zero) X to or from a reload register of
349    register class RELOAD_CLASS in mode RELOAD_MODE.  If secondary reloads
350    are needed, push them.
351
352    Return the reload number of the secondary reload we made, or -1 if
353    we didn't need one.  *PICODE is set to the insn_code to use if we do
354    need a secondary reload.  */
355
356 static int
357 push_secondary_reload (in_p, x, opnum, optional, reload_class, reload_mode,
358                        type, picode)
359      int in_p;
360      rtx x;
361      int opnum;
362      int optional;
363      enum reg_class reload_class;
364      enum machine_mode reload_mode;
365      enum reload_type type;
366      enum insn_code *picode;
367 {
368   enum reg_class class = NO_REGS;
369   enum machine_mode mode = reload_mode;
370   enum insn_code icode = CODE_FOR_nothing;
371   enum reg_class t_class = NO_REGS;
372   enum machine_mode t_mode = VOIDmode;
373   enum insn_code t_icode = CODE_FOR_nothing;
374   enum reload_type secondary_type;
375   int s_reload, t_reload = -1;
376
377   if (type == RELOAD_FOR_INPUT_ADDRESS
378       || type == RELOAD_FOR_OUTPUT_ADDRESS
379       || type == RELOAD_FOR_INPADDR_ADDRESS
380       || type == RELOAD_FOR_OUTADDR_ADDRESS)
381     secondary_type = type;
382   else
383     secondary_type = in_p ? RELOAD_FOR_INPUT_ADDRESS : RELOAD_FOR_OUTPUT_ADDRESS;
384
385   *picode = CODE_FOR_nothing;
386
387   /* If X is a paradoxical SUBREG, use the inner value to determine both the
388      mode and object being reloaded.  */
389   if (GET_CODE (x) == SUBREG
390       && (GET_MODE_SIZE (GET_MODE (x))
391           > GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)))))
392     {
393       x = SUBREG_REG (x);
394       reload_mode = GET_MODE (x);
395     }
396
397   /* If X is a pseudo-register that has an equivalent MEM (actually, if it
398      is still a pseudo-register by now, it *must* have an equivalent MEM
399      but we don't want to assume that), use that equivalent when seeing if
400      a secondary reload is needed since whether or not a reload is needed
401      might be sensitive to the form of the MEM.  */
402
403   if (GET_CODE (x) == REG && REGNO (x) >= FIRST_PSEUDO_REGISTER
404       && reg_equiv_mem[REGNO (x)] != 0)
405     x = reg_equiv_mem[REGNO (x)];
406
407 #ifdef SECONDARY_INPUT_RELOAD_CLASS
408   if (in_p)
409     class = SECONDARY_INPUT_RELOAD_CLASS (reload_class, reload_mode, x);
410 #endif
411
412 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
413   if (! in_p)
414     class = SECONDARY_OUTPUT_RELOAD_CLASS (reload_class, reload_mode, x);
415 #endif
416
417   /* If we don't need any secondary registers, done.  */
418   if (class == NO_REGS)
419     return -1;
420
421   /* Get a possible insn to use.  If the predicate doesn't accept X, don't
422      use the insn.  */
423
424   icode = (in_p ? reload_in_optab[(int) reload_mode]
425            : reload_out_optab[(int) reload_mode]);
426
427   if (icode != CODE_FOR_nothing
428       && insn_operand_predicate[(int) icode][in_p]
429       && (! (insn_operand_predicate[(int) icode][in_p]) (x, reload_mode)))
430     icode = CODE_FOR_nothing;
431
432   /* If we will be using an insn, see if it can directly handle the reload
433      register we will be using.  If it can, the secondary reload is for a
434      scratch register.  If it can't, we will use the secondary reload for
435      an intermediate register and require a tertiary reload for the scratch
436      register.  */
437
438   if (icode != CODE_FOR_nothing)
439     {
440       /* If IN_P is non-zero, the reload register will be the output in 
441          operand 0.  If IN_P is zero, the reload register will be the input
442          in operand 1.  Outputs should have an initial "=", which we must
443          skip.  */
444
445       char insn_letter = insn_operand_constraint[(int) icode][!in_p][in_p];
446       enum reg_class insn_class
447         = (insn_letter == 'r' ? GENERAL_REGS
448            : REG_CLASS_FROM_LETTER (insn_letter));
449
450       if (insn_class == NO_REGS
451           || (in_p && insn_operand_constraint[(int) icode][!in_p][0] != '=')
452           /* The scratch register's constraint must start with "=&".  */
453           || insn_operand_constraint[(int) icode][2][0] != '='
454           || insn_operand_constraint[(int) icode][2][1] != '&')
455         abort ();
456
457       if (reg_class_subset_p (reload_class, insn_class))
458         mode = insn_operand_mode[(int) icode][2];
459       else
460         {
461           char t_letter = insn_operand_constraint[(int) icode][2][2];
462           class = insn_class;
463           t_mode = insn_operand_mode[(int) icode][2];
464           t_class = (t_letter == 'r' ? GENERAL_REGS
465                      : REG_CLASS_FROM_LETTER (t_letter));
466           t_icode = icode;
467           icode = CODE_FOR_nothing;
468         }
469     }
470
471   /* This case isn't valid, so fail.  Reload is allowed to use the same
472      register for RELOAD_FOR_INPUT_ADDRESS and RELOAD_FOR_INPUT reloads, but
473      in the case of a secondary register, we actually need two different
474      registers for correct code.  We fail here to prevent the possibility of
475      silently generating incorrect code later.
476
477      The convention is that secondary input reloads are valid only if the
478      secondary_class is different from class.  If you have such a case, you
479      can not use secondary reloads, you must work around the problem some
480      other way.
481
482      Allow this when MODE is not reload_mode and assume that the generated
483      code handles this case (it does on the Alpha, which is the only place
484      this currently happens).  */
485
486   if (in_p && class == reload_class && mode == reload_mode)
487     abort ();
488
489   /* If we need a tertiary reload, see if we have one we can reuse or else
490      make a new one.  */
491
492   if (t_class != NO_REGS)
493     {
494       for (t_reload = 0; t_reload < n_reloads; t_reload++)
495         if (reload_secondary_p[t_reload]
496             && (reg_class_subset_p (t_class, reload_reg_class[t_reload])
497                 || reg_class_subset_p (reload_reg_class[t_reload], t_class))
498             && ((in_p && reload_inmode[t_reload] == t_mode)
499                 || (! in_p && reload_outmode[t_reload] == t_mode))
500             && ((in_p && (reload_secondary_in_icode[t_reload]
501                           == CODE_FOR_nothing))
502                 || (! in_p &&(reload_secondary_out_icode[t_reload]
503                               == CODE_FOR_nothing)))
504             && (reg_class_size[(int) t_class] == 1 || SMALL_REGISTER_CLASSES)
505             && MERGABLE_RELOADS (secondary_type,
506                                  reload_when_needed[t_reload],
507                                  opnum, reload_opnum[t_reload]))
508           {
509             if (in_p)
510               reload_inmode[t_reload] = t_mode;
511             if (! in_p)
512               reload_outmode[t_reload] = t_mode;
513
514             if (reg_class_subset_p (t_class, reload_reg_class[t_reload]))
515               reload_reg_class[t_reload] = t_class;
516
517             reload_opnum[t_reload] = MIN (reload_opnum[t_reload], opnum);
518             reload_optional[t_reload] &= optional;
519             reload_secondary_p[t_reload] = 1;
520             if (MERGE_TO_OTHER (secondary_type, reload_when_needed[t_reload],
521                                 opnum, reload_opnum[t_reload]))
522               reload_when_needed[t_reload] = RELOAD_OTHER;
523           }
524
525       if (t_reload == n_reloads)
526         {
527           /* We need to make a new tertiary reload for this register class.  */
528           reload_in[t_reload] = reload_out[t_reload] = 0;
529           reload_reg_class[t_reload] = t_class;
530           reload_inmode[t_reload] = in_p ? t_mode : VOIDmode;
531           reload_outmode[t_reload] = ! in_p ? t_mode : VOIDmode;
532           reload_reg_rtx[t_reload] = 0;
533           reload_optional[t_reload] = optional;
534           reload_nongroup[t_reload] = 0;
535           reload_inc[t_reload] = 0;
536           /* Maybe we could combine these, but it seems too tricky.  */
537           reload_nocombine[t_reload] = 1;
538           reload_in_reg[t_reload] = 0;
539           reload_opnum[t_reload] = opnum;
540           reload_when_needed[t_reload] = secondary_type;
541           reload_secondary_in_reload[t_reload] = -1;
542           reload_secondary_out_reload[t_reload] = -1;
543           reload_secondary_in_icode[t_reload] = CODE_FOR_nothing;
544           reload_secondary_out_icode[t_reload] = CODE_FOR_nothing;
545           reload_secondary_p[t_reload] = 1;
546
547           n_reloads++;
548         }
549     }
550
551   /* See if we can reuse an existing secondary reload.  */
552   for (s_reload = 0; s_reload < n_reloads; s_reload++)
553     if (reload_secondary_p[s_reload]
554         && (reg_class_subset_p (class, reload_reg_class[s_reload])
555             || reg_class_subset_p (reload_reg_class[s_reload], class))
556         && ((in_p && reload_inmode[s_reload] == mode)
557             || (! in_p && reload_outmode[s_reload] == mode))
558         && ((in_p && reload_secondary_in_reload[s_reload] == t_reload)
559             || (! in_p && reload_secondary_out_reload[s_reload] == t_reload))
560         && ((in_p && reload_secondary_in_icode[s_reload] == t_icode)
561             || (! in_p && reload_secondary_out_icode[s_reload] == t_icode))
562         && (reg_class_size[(int) class] == 1 || SMALL_REGISTER_CLASSES)
563         && MERGABLE_RELOADS (secondary_type, reload_when_needed[s_reload],
564                              opnum, reload_opnum[s_reload]))
565       {
566         if (in_p)
567           reload_inmode[s_reload] = mode;
568         if (! in_p)
569           reload_outmode[s_reload] = mode;
570
571         if (reg_class_subset_p (class, reload_reg_class[s_reload]))
572           reload_reg_class[s_reload] = class;
573
574         reload_opnum[s_reload] = MIN (reload_opnum[s_reload], opnum);
575         reload_optional[s_reload] &= optional;
576         reload_secondary_p[s_reload] = 1;
577         if (MERGE_TO_OTHER (secondary_type, reload_when_needed[s_reload],
578                             opnum, reload_opnum[s_reload]))
579           reload_when_needed[s_reload] = RELOAD_OTHER;
580       }
581
582   if (s_reload == n_reloads)
583     {
584 #ifdef SECONDARY_MEMORY_NEEDED
585       /* If we need a memory location to copy between the two reload regs,
586          set it up now.  Note that we do the input case before making
587          the reload and the output case after.  This is due to the 
588          way reloads are output.  */
589
590       if (in_p && icode == CODE_FOR_nothing
591           && SECONDARY_MEMORY_NEEDED (class, reload_class, mode))
592         get_secondary_mem (x, reload_mode, opnum, type);
593 #endif
594
595       /* We need to make a new secondary reload for this register class.  */
596       reload_in[s_reload] = reload_out[s_reload] = 0;
597       reload_reg_class[s_reload] = class;
598
599       reload_inmode[s_reload] = in_p ? mode : VOIDmode;
600       reload_outmode[s_reload] = ! in_p ? mode : VOIDmode;
601       reload_reg_rtx[s_reload] = 0;
602       reload_optional[s_reload] = optional;
603       reload_nongroup[s_reload] = 0;
604       reload_inc[s_reload] = 0;
605       /* Maybe we could combine these, but it seems too tricky.  */
606       reload_nocombine[s_reload] = 1;
607       reload_in_reg[s_reload] = 0;
608       reload_opnum[s_reload] = opnum;
609       reload_when_needed[s_reload] = secondary_type;
610       reload_secondary_in_reload[s_reload] = in_p ? t_reload : -1;
611       reload_secondary_out_reload[s_reload] = ! in_p ? t_reload : -1;
612       reload_secondary_in_icode[s_reload] = in_p ? t_icode : CODE_FOR_nothing; 
613       reload_secondary_out_icode[s_reload]
614         = ! in_p ? t_icode : CODE_FOR_nothing;
615       reload_secondary_p[s_reload] = 1;
616
617       n_reloads++;
618
619 #ifdef SECONDARY_MEMORY_NEEDED
620       if (! in_p && icode == CODE_FOR_nothing
621           && SECONDARY_MEMORY_NEEDED (reload_class, class, mode))
622         get_secondary_mem (x, mode, opnum, type);
623 #endif
624     }
625
626   *picode = icode;
627   return s_reload;
628 }
629 #endif /* HAVE_SECONDARY_RELOADS */
630 \f
631 #ifdef SECONDARY_MEMORY_NEEDED
632
633 /* Return a memory location that will be used to copy X in mode MODE.  
634    If we haven't already made a location for this mode in this insn,
635    call find_reloads_address on the location being returned.  */
636
637 rtx
638 get_secondary_mem (x, mode, opnum, type)
639      rtx x;
640      enum machine_mode mode;
641      int opnum;
642      enum reload_type type;
643 {
644   rtx loc;
645   int mem_valid;
646
647   /* By default, if MODE is narrower than a word, widen it to a word.
648      This is required because most machines that require these memory
649      locations do not support short load and stores from all registers
650      (e.g., FP registers).  */
651
652 #ifdef SECONDARY_MEMORY_NEEDED_MODE
653   mode = SECONDARY_MEMORY_NEEDED_MODE (mode);
654 #else
655   if (GET_MODE_BITSIZE (mode) < BITS_PER_WORD)
656     mode = mode_for_size (BITS_PER_WORD, GET_MODE_CLASS (mode), 0);
657 #endif
658
659   /* If we already have made a MEM for this operand in MODE, return it.  */
660   if (secondary_memlocs_elim[(int) mode][opnum] != 0)
661     return secondary_memlocs_elim[(int) mode][opnum];
662
663   /* If this is the first time we've tried to get a MEM for this mode, 
664      allocate a new one.  `something_changed' in reload will get set
665      by noticing that the frame size has changed.  */
666
667   if (secondary_memlocs[(int) mode] == 0)
668     {
669 #ifdef SECONDARY_MEMORY_NEEDED_RTX
670       secondary_memlocs[(int) mode] = SECONDARY_MEMORY_NEEDED_RTX (mode);
671 #else
672       secondary_memlocs[(int) mode]
673         = assign_stack_local (mode, GET_MODE_SIZE (mode), 0);
674 #endif
675     }
676
677   /* Get a version of the address doing any eliminations needed.  If that
678      didn't give us a new MEM, make a new one if it isn't valid.  */
679
680   loc = eliminate_regs (secondary_memlocs[(int) mode], VOIDmode, NULL_RTX);
681   mem_valid = strict_memory_address_p (mode, XEXP (loc, 0));
682
683   if (! mem_valid && loc == secondary_memlocs[(int) mode])
684     loc = copy_rtx (loc);
685
686   /* The only time the call below will do anything is if the stack
687      offset is too large.  In that case IND_LEVELS doesn't matter, so we
688      can just pass a zero.  Adjust the type to be the address of the
689      corresponding object.  If the address was valid, save the eliminated
690      address.  If it wasn't valid, we need to make a reload each time, so
691      don't save it.  */
692
693   if (! mem_valid)
694     {
695       type =  (type == RELOAD_FOR_INPUT ? RELOAD_FOR_INPUT_ADDRESS
696                : type == RELOAD_FOR_OUTPUT ? RELOAD_FOR_OUTPUT_ADDRESS
697                : RELOAD_OTHER);
698
699       find_reloads_address (mode, NULL_PTR, XEXP (loc, 0), &XEXP (loc, 0),
700                             opnum, type, 0, 0);
701     }
702
703   secondary_memlocs_elim[(int) mode][opnum] = loc;
704   return loc;
705 }
706
707 /* Clear any secondary memory locations we've made.  */
708
709 void
710 clear_secondary_mem ()
711 {
712   bzero ((char *) secondary_memlocs, sizeof secondary_memlocs);
713 }
714 #endif /* SECONDARY_MEMORY_NEEDED */
715 \f
716 /* Find the largest class for which every register number plus N is valid in
717    M1 (if in range).  Abort if no such class exists.  */
718
719 static enum reg_class
720 find_valid_class (m1, n)
721      enum machine_mode  m1;
722      int n;
723 {
724   int class;
725   int regno;
726   enum reg_class best_class;
727   int best_size = 0;
728
729   for (class = 1; class < N_REG_CLASSES; class++)
730     {
731       int bad = 0;
732       for (regno = 0; regno < FIRST_PSEUDO_REGISTER && ! bad; regno++)
733         if (TEST_HARD_REG_BIT (reg_class_contents[class], regno)
734             && TEST_HARD_REG_BIT (reg_class_contents[class], regno + n)
735             && ! HARD_REGNO_MODE_OK (regno + n, m1))
736           bad = 1;
737
738       if (! bad && reg_class_size[class] > best_size)
739         best_class = class, best_size = reg_class_size[class];
740     }
741
742   if (best_size == 0)
743     abort ();
744
745   return best_class;
746 }
747 \f
748 /* Record one reload that needs to be performed.
749    IN is an rtx saying where the data are to be found before this instruction.
750    OUT says where they must be stored after the instruction.
751    (IN is zero for data not read, and OUT is zero for data not written.)
752    INLOC and OUTLOC point to the places in the instructions where
753    IN and OUT were found.
754    If IN and OUT are both non-zero, it means the same register must be used
755    to reload both IN and OUT.
756
757    CLASS is a register class required for the reloaded data.
758    INMODE is the machine mode that the instruction requires
759    for the reg that replaces IN and OUTMODE is likewise for OUT.
760
761    If IN is zero, then OUT's location and mode should be passed as
762    INLOC and INMODE.
763
764    STRICT_LOW is the 1 if there is a containing STRICT_LOW_PART rtx.
765
766    OPTIONAL nonzero means this reload does not need to be performed:
767    it can be discarded if that is more convenient.
768
769    OPNUM and TYPE say what the purpose of this reload is.
770
771    The return value is the reload-number for this reload.
772
773    If both IN and OUT are nonzero, in some rare cases we might
774    want to make two separate reloads.  (Actually we never do this now.)
775    Therefore, the reload-number for OUT is stored in
776    output_reloadnum when we return; the return value applies to IN.
777    Usually (presently always), when IN and OUT are nonzero,
778    the two reload-numbers are equal, but the caller should be careful to
779    distinguish them.  */
780
781 static int
782 push_reload (in, out, inloc, outloc, class,
783              inmode, outmode, strict_low, optional, opnum, type)
784      register rtx in, out;
785      rtx *inloc, *outloc;
786      enum reg_class class;
787      enum machine_mode inmode, outmode;
788      int strict_low;
789      int optional;
790      int opnum;
791      enum reload_type type;
792 {
793   register int i;
794   int dont_share = 0;
795   int dont_remove_subreg = 0;
796   rtx *in_subreg_loc = 0, *out_subreg_loc = 0;
797   int secondary_in_reload = -1, secondary_out_reload = -1;
798   enum insn_code secondary_in_icode = CODE_FOR_nothing;
799   enum insn_code secondary_out_icode = CODE_FOR_nothing;
800
801   /* INMODE and/or OUTMODE could be VOIDmode if no mode
802      has been specified for the operand.  In that case,
803      use the operand's mode as the mode to reload.  */
804   if (inmode == VOIDmode && in != 0)
805     inmode = GET_MODE (in);
806   if (outmode == VOIDmode && out != 0)
807     outmode = GET_MODE (out);
808
809   /* If IN is a pseudo register everywhere-equivalent to a constant, and 
810      it is not in a hard register, reload straight from the constant,
811      since we want to get rid of such pseudo registers.
812      Often this is done earlier, but not always in find_reloads_address.  */
813   if (in != 0 && GET_CODE (in) == REG)
814     {
815       register int regno = REGNO (in);
816
817       if (regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
818           && reg_equiv_constant[regno] != 0)
819         in = reg_equiv_constant[regno];
820     }
821
822   /* Likewise for OUT.  Of course, OUT will never be equivalent to
823      an actual constant, but it might be equivalent to a memory location
824      (in the case of a parameter).  */
825   if (out != 0 && GET_CODE (out) == REG)
826     {
827       register int regno = REGNO (out);
828
829       if (regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
830           && reg_equiv_constant[regno] != 0)
831         out = reg_equiv_constant[regno];
832     }
833
834   /* If we have a read-write operand with an address side-effect,
835      change either IN or OUT so the side-effect happens only once.  */
836   if (in != 0 && out != 0 && GET_CODE (in) == MEM && rtx_equal_p (in, out))
837     {
838       if (GET_CODE (XEXP (in, 0)) == POST_INC
839           || GET_CODE (XEXP (in, 0)) == POST_DEC)
840         in = gen_rtx_MEM (GET_MODE (in), XEXP (XEXP (in, 0), 0));
841       if (GET_CODE (XEXP (in, 0)) == PRE_INC
842           || GET_CODE (XEXP (in, 0)) == PRE_DEC)
843         out = gen_rtx_MEM (GET_MODE (out), XEXP (XEXP (out, 0), 0));
844     }
845
846   /* If we are reloading a (SUBREG constant ...), really reload just the
847      inside expression in its own mode.  Similarly for (SUBREG (PLUS ...)).
848      If we have (SUBREG:M1 (MEM:M2 ...) ...) (or an inner REG that is still
849      a pseudo and hence will become a MEM) with M1 wider than M2 and the
850      register is a pseudo, also reload the inside expression.
851      For machines that extend byte loads, do this for any SUBREG of a pseudo
852      where both M1 and M2 are a word or smaller, M1 is wider than M2, and
853      M2 is an integral mode that gets extended when loaded.
854      Similar issue for (SUBREG:M1 (REG:M2 ...) ...) for a hard register R where
855      either M1 is not valid for R or M2 is wider than a word but we only
856      need one word to store an M2-sized quantity in R.
857      (However, if OUT is nonzero, we need to reload the reg *and*
858      the subreg, so do nothing here, and let following statement handle it.)
859
860      Note that the case of (SUBREG (CONST_INT...)...) is handled elsewhere;
861      we can't handle it here because CONST_INT does not indicate a mode.
862
863      Similarly, we must reload the inside expression if we have a
864      STRICT_LOW_PART (presumably, in == out in the cas).
865
866      Also reload the inner expression if it does not require a secondary
867      reload but the SUBREG does.
868
869      Finally, reload the inner expression if it is a register that is in
870      the class whose registers cannot be referenced in a different size
871      and M1 is not the same size as M2.  If SUBREG_WORD is nonzero, we
872      cannot reload just the inside since we might end up with the wrong
873      register class.  */
874
875   if (in != 0 && GET_CODE (in) == SUBREG && SUBREG_WORD (in) == 0
876 #ifdef CLASS_CANNOT_CHANGE_SIZE
877       && class != CLASS_CANNOT_CHANGE_SIZE
878 #endif
879       && (CONSTANT_P (SUBREG_REG (in))
880           || GET_CODE (SUBREG_REG (in)) == PLUS
881           || strict_low
882           || (((GET_CODE (SUBREG_REG (in)) == REG
883                 && REGNO (SUBREG_REG (in)) >= FIRST_PSEUDO_REGISTER)
884                || GET_CODE (SUBREG_REG (in)) == MEM)
885               && ((GET_MODE_SIZE (inmode)
886                    > GET_MODE_SIZE (GET_MODE (SUBREG_REG (in))))
887 #ifdef LOAD_EXTEND_OP
888                   || (GET_MODE_SIZE (inmode) <= UNITS_PER_WORD
889                       && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (in)))
890                           <= UNITS_PER_WORD)
891                       && (GET_MODE_SIZE (inmode)
892                           > GET_MODE_SIZE (GET_MODE (SUBREG_REG (in))))
893                       && INTEGRAL_MODE_P (GET_MODE (SUBREG_REG (in)))
894                       && LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (in))) != NIL)
895 #endif
896 #ifdef WORD_REGISTER_OPERATIONS
897                   || ((GET_MODE_SIZE (inmode)
898                        < GET_MODE_SIZE (GET_MODE (SUBREG_REG (in))))
899                       && ((GET_MODE_SIZE (inmode) - 1) / UNITS_PER_WORD ==
900                           ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (in))) - 1)
901                            / UNITS_PER_WORD)))
902 #endif
903                   ))
904           || (GET_CODE (SUBREG_REG (in)) == REG
905               && REGNO (SUBREG_REG (in)) < FIRST_PSEUDO_REGISTER
906               /* The case where out is nonzero
907                  is handled differently in the following statement.  */
908               && (out == 0 || SUBREG_WORD (in) == 0)
909               && ((GET_MODE_SIZE (inmode) <= UNITS_PER_WORD
910                    && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (in)))
911                        > UNITS_PER_WORD)
912                    && ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (in)))
913                         / UNITS_PER_WORD)
914                        != HARD_REGNO_NREGS (REGNO (SUBREG_REG (in)),
915                                             GET_MODE (SUBREG_REG (in)))))
916                   || ! HARD_REGNO_MODE_OK ((REGNO (SUBREG_REG (in))
917                                             + SUBREG_WORD (in)),
918                                            inmode)))
919 #ifdef SECONDARY_INPUT_RELOAD_CLASS
920           || (SECONDARY_INPUT_RELOAD_CLASS (class, inmode, in) != NO_REGS
921               && (SECONDARY_INPUT_RELOAD_CLASS (class,
922                                                 GET_MODE (SUBREG_REG (in)),
923                                                 SUBREG_REG (in))
924                   == NO_REGS))
925 #endif
926 #ifdef CLASS_CANNOT_CHANGE_SIZE
927           || (GET_CODE (SUBREG_REG (in)) == REG
928               && REGNO (SUBREG_REG (in)) < FIRST_PSEUDO_REGISTER
929               && (TEST_HARD_REG_BIT
930                   (reg_class_contents[(int) CLASS_CANNOT_CHANGE_SIZE],
931                    REGNO (SUBREG_REG (in))))
932               && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (in)))
933                   != GET_MODE_SIZE (inmode)))
934 #endif
935           ))
936     {
937       in_subreg_loc = inloc;
938       inloc = &SUBREG_REG (in);
939       in = *inloc;
940 #if ! defined (LOAD_EXTEND_OP) && ! defined (WORD_REGISTER_OPERATIONS)
941       if (GET_CODE (in) == MEM)
942         /* This is supposed to happen only for paradoxical subregs made by
943            combine.c.  (SUBREG (MEM)) isn't supposed to occur other ways.  */
944         if (GET_MODE_SIZE (GET_MODE (in)) > GET_MODE_SIZE (inmode))
945           abort ();
946 #endif
947       inmode = GET_MODE (in);
948     }
949
950   /* Similar issue for (SUBREG:M1 (REG:M2 ...) ...) for a hard register R where
951      either M1 is not valid for R or M2 is wider than a word but we only
952      need one word to store an M2-sized quantity in R.
953
954      However, we must reload the inner reg *as well as* the subreg in
955      that case.  */
956
957   /* Similar issue for (SUBREG constant ...) if it was not handled by the
958      code above.  This can happen if SUBREG_WORD != 0.  */
959
960   if (in != 0 && GET_CODE (in) == SUBREG
961       && (CONSTANT_P (SUBREG_REG (in))
962           || (GET_CODE (SUBREG_REG (in)) == REG
963               && REGNO (SUBREG_REG (in)) < FIRST_PSEUDO_REGISTER
964               && (! HARD_REGNO_MODE_OK (REGNO (SUBREG_REG (in))
965                                         + SUBREG_WORD (in),
966                                         inmode)
967                   || (GET_MODE_SIZE (inmode) <= UNITS_PER_WORD
968                       && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (in)))
969                           > UNITS_PER_WORD)
970                       && ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (in)))
971                            / UNITS_PER_WORD)
972                           != HARD_REGNO_NREGS (REGNO (SUBREG_REG (in)),
973                                                GET_MODE (SUBREG_REG (in)))))))))
974     {
975       /* This relies on the fact that emit_reload_insns outputs the
976          instructions for input reloads of type RELOAD_OTHER in the same
977          order as the reloads.  Thus if the outer reload is also of type
978          RELOAD_OTHER, we are guaranteed that this inner reload will be
979          output before the outer reload.  */
980       push_reload (SUBREG_REG (in), NULL_RTX, &SUBREG_REG (in), NULL_PTR,
981                    find_valid_class (inmode, SUBREG_WORD (in)),
982                    VOIDmode, VOIDmode, 0, 0, opnum, type);
983       dont_remove_subreg = 1;
984     }
985
986   /* Similarly for paradoxical and problematical SUBREGs on the output.
987      Note that there is no reason we need worry about the previous value
988      of SUBREG_REG (out); even if wider than out,
989      storing in a subreg is entitled to clobber it all
990      (except in the case of STRICT_LOW_PART,
991      and in that case the constraint should label it input-output.)  */
992   if (out != 0 && GET_CODE (out) == SUBREG && SUBREG_WORD (out) == 0
993 #ifdef CLASS_CANNOT_CHANGE_SIZE
994       && class != CLASS_CANNOT_CHANGE_SIZE
995 #endif
996       && (CONSTANT_P (SUBREG_REG (out))
997           || strict_low
998           || (((GET_CODE (SUBREG_REG (out)) == REG
999                 && REGNO (SUBREG_REG (out)) >= FIRST_PSEUDO_REGISTER)
1000                || GET_CODE (SUBREG_REG (out)) == MEM)
1001               && ((GET_MODE_SIZE (outmode)
1002                    > GET_MODE_SIZE (GET_MODE (SUBREG_REG (out))))
1003 #ifdef WORD_REGISTER_OPERATIONS
1004                   || ((GET_MODE_SIZE (outmode)
1005                        < GET_MODE_SIZE (GET_MODE (SUBREG_REG (out))))
1006                       && ((GET_MODE_SIZE (outmode) - 1) / UNITS_PER_WORD ==
1007                           ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (out))) - 1)
1008                            / UNITS_PER_WORD)))
1009 #endif
1010                   ))
1011           || (GET_CODE (SUBREG_REG (out)) == REG
1012               && REGNO (SUBREG_REG (out)) < FIRST_PSEUDO_REGISTER
1013               && ((GET_MODE_SIZE (outmode) <= UNITS_PER_WORD
1014                    && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (out)))
1015                        > UNITS_PER_WORD)
1016                    && ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (out)))
1017                         / UNITS_PER_WORD)
1018                        != HARD_REGNO_NREGS (REGNO (SUBREG_REG (out)),
1019                                             GET_MODE (SUBREG_REG (out)))))
1020                   || ! HARD_REGNO_MODE_OK ((REGNO (SUBREG_REG (out))
1021                                             + SUBREG_WORD (out)),
1022                                            outmode)))
1023 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
1024           || (SECONDARY_OUTPUT_RELOAD_CLASS (class, outmode, out) != NO_REGS
1025               && (SECONDARY_OUTPUT_RELOAD_CLASS (class,
1026                                                  GET_MODE (SUBREG_REG (out)),
1027                                                  SUBREG_REG (out))
1028                   == NO_REGS))
1029 #endif
1030 #ifdef CLASS_CANNOT_CHANGE_SIZE
1031           || (GET_CODE (SUBREG_REG (out)) == REG
1032               && REGNO (SUBREG_REG (out)) < FIRST_PSEUDO_REGISTER
1033               && (TEST_HARD_REG_BIT
1034                   (reg_class_contents[(int) CLASS_CANNOT_CHANGE_SIZE],
1035                    REGNO (SUBREG_REG (out))))
1036               && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (out)))
1037                   != GET_MODE_SIZE (outmode)))
1038 #endif
1039           ))
1040     {
1041       out_subreg_loc = outloc;
1042       outloc = &SUBREG_REG (out);
1043       out = *outloc; 
1044 #if ! defined (LOAD_EXTEND_OP) && ! defined (WORD_REGISTER_OPERATIONS)
1045      if (GET_CODE (out) == MEM
1046           && GET_MODE_SIZE (GET_MODE (out)) > GET_MODE_SIZE (outmode))
1047         abort ();
1048 #endif
1049       outmode = GET_MODE (out);
1050     }
1051
1052   /* Similar issue for (SUBREG:M1 (REG:M2 ...) ...) for a hard register R where
1053      either M1 is not valid for R or M2 is wider than a word but we only
1054      need one word to store an M2-sized quantity in R.
1055
1056      However, we must reload the inner reg *as well as* the subreg in
1057      that case.  In this case, the inner reg is an in-out reload.  */
1058
1059   if (out != 0 && GET_CODE (out) == SUBREG
1060       && GET_CODE (SUBREG_REG (out)) == REG
1061       && REGNO (SUBREG_REG (out)) < FIRST_PSEUDO_REGISTER
1062       && (! HARD_REGNO_MODE_OK (REGNO (SUBREG_REG (out)) + SUBREG_WORD (out),
1063                                 outmode)
1064           || (GET_MODE_SIZE (outmode) <= UNITS_PER_WORD
1065               && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (out)))
1066                   > UNITS_PER_WORD)
1067               && ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (out)))
1068                    / UNITS_PER_WORD)
1069                   != HARD_REGNO_NREGS (REGNO (SUBREG_REG (out)),
1070                                        GET_MODE (SUBREG_REG (out)))))))
1071     {
1072       /* This relies on the fact that emit_reload_insns outputs the
1073          instructions for output reloads of type RELOAD_OTHER in reverse
1074          order of the reloads.  Thus if the outer reload is also of type
1075          RELOAD_OTHER, we are guaranteed that this inner reload will be
1076          output after the outer reload.  */
1077       dont_remove_subreg = 1;
1078       push_reload (SUBREG_REG (out), SUBREG_REG (out), &SUBREG_REG (out),
1079                    &SUBREG_REG (out),
1080                    find_valid_class (outmode, SUBREG_WORD (out)),
1081                    VOIDmode, VOIDmode, 0, 0,
1082                    opnum, RELOAD_OTHER);
1083     }
1084
1085   /* If IN appears in OUT, we can't share any input-only reload for IN.  */
1086   if (in != 0 && out != 0 && GET_CODE (out) == MEM
1087       && (GET_CODE (in) == REG || GET_CODE (in) == MEM)
1088       && reg_overlap_mentioned_for_reload_p (in, XEXP (out, 0)))
1089     dont_share = 1;
1090
1091   /* If IN is a SUBREG of a hard register, make a new REG.  This
1092      simplifies some of the cases below.  */
1093
1094   if (in != 0 && GET_CODE (in) == SUBREG && GET_CODE (SUBREG_REG (in)) == REG
1095       && REGNO (SUBREG_REG (in)) < FIRST_PSEUDO_REGISTER
1096       && ! dont_remove_subreg)
1097     in = gen_rtx_REG (GET_MODE (in),
1098                       REGNO (SUBREG_REG (in)) + SUBREG_WORD (in));
1099
1100   /* Similarly for OUT.  */
1101   if (out != 0 && GET_CODE (out) == SUBREG
1102       && GET_CODE (SUBREG_REG (out)) == REG
1103       && REGNO (SUBREG_REG (out)) < FIRST_PSEUDO_REGISTER
1104       && ! dont_remove_subreg)
1105     out = gen_rtx_REG (GET_MODE (out),
1106                        REGNO (SUBREG_REG (out)) + SUBREG_WORD (out));
1107
1108   /* Narrow down the class of register wanted if that is
1109      desirable on this machine for efficiency.  */
1110   if (in != 0)
1111     class = PREFERRED_RELOAD_CLASS (in, class);
1112
1113   /* Output reloads may need analogous treatment, different in detail.  */
1114 #ifdef PREFERRED_OUTPUT_RELOAD_CLASS
1115   if (out != 0)
1116     class = PREFERRED_OUTPUT_RELOAD_CLASS (out, class);
1117 #endif
1118
1119   /* Make sure we use a class that can handle the actual pseudo
1120      inside any subreg.  For example, on the 386, QImode regs
1121      can appear within SImode subregs.  Although GENERAL_REGS
1122      can handle SImode, QImode needs a smaller class.  */
1123 #ifdef LIMIT_RELOAD_CLASS
1124   if (in_subreg_loc)
1125     class = LIMIT_RELOAD_CLASS (inmode, class);
1126   else if (in != 0 && GET_CODE (in) == SUBREG)
1127     class = LIMIT_RELOAD_CLASS (GET_MODE (SUBREG_REG (in)), class);
1128
1129   if (out_subreg_loc)
1130     class = LIMIT_RELOAD_CLASS (outmode, class);
1131   if (out != 0 && GET_CODE (out) == SUBREG)
1132     class = LIMIT_RELOAD_CLASS (GET_MODE (SUBREG_REG (out)), class);
1133 #endif
1134
1135   /* Verify that this class is at least possible for the mode that
1136      is specified.  */
1137   if (this_insn_is_asm)
1138     {
1139       enum machine_mode mode;
1140       if (GET_MODE_SIZE (inmode) > GET_MODE_SIZE (outmode))
1141         mode = inmode;
1142       else
1143         mode = outmode;
1144       if (mode == VOIDmode)
1145         {
1146           error_for_asm (this_insn, "cannot reload integer constant operand in `asm'");
1147           mode = word_mode;
1148           if (in != 0)
1149             inmode = word_mode;
1150           if (out != 0)
1151             outmode = word_mode;
1152         }
1153       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1154         if (HARD_REGNO_MODE_OK (i, mode)
1155             && TEST_HARD_REG_BIT (reg_class_contents[(int) class], i))
1156           {
1157             int nregs = HARD_REGNO_NREGS (i, mode);
1158
1159             int j;
1160             for (j = 1; j < nregs; j++)
1161               if (! TEST_HARD_REG_BIT (reg_class_contents[(int) class], i + j))
1162                 break;
1163             if (j == nregs)
1164               break;
1165           }
1166       if (i == FIRST_PSEUDO_REGISTER)
1167         {
1168           error_for_asm (this_insn, "impossible register constraint in `asm'");
1169           class = ALL_REGS;
1170         }
1171     }
1172
1173   if (class == NO_REGS)
1174     abort ();
1175
1176   /* We can use an existing reload if the class is right
1177      and at least one of IN and OUT is a match
1178      and the other is at worst neutral.
1179      (A zero compared against anything is neutral.) 
1180
1181      If SMALL_REGISTER_CLASSES, don't use existing reloads unless they are
1182      for the same thing since that can cause us to need more reload registers
1183      than we otherwise would.  */
1184
1185   for (i = 0; i < n_reloads; i++)
1186     if ((reg_class_subset_p (class, reload_reg_class[i])
1187          || reg_class_subset_p (reload_reg_class[i], class))
1188         /* If the existing reload has a register, it must fit our class.  */
1189         && (reload_reg_rtx[i] == 0
1190             || TEST_HARD_REG_BIT (reg_class_contents[(int) class],
1191                                   true_regnum (reload_reg_rtx[i])))
1192         && ((in != 0 && MATCHES (reload_in[i], in) && ! dont_share
1193              && (out == 0 || reload_out[i] == 0 || MATCHES (reload_out[i], out)))
1194             ||
1195             (out != 0 && MATCHES (reload_out[i], out)
1196              && (in == 0 || reload_in[i] == 0 || MATCHES (reload_in[i], in))))
1197         && (reg_class_size[(int) class] == 1 || SMALL_REGISTER_CLASSES)
1198         && MERGABLE_RELOADS (type, reload_when_needed[i],
1199                              opnum, reload_opnum[i]))
1200       break;
1201
1202   /* Reloading a plain reg for input can match a reload to postincrement
1203      that reg, since the postincrement's value is the right value.
1204      Likewise, it can match a preincrement reload, since we regard
1205      the preincrementation as happening before any ref in this insn
1206      to that register.  */
1207   if (i == n_reloads)
1208     for (i = 0; i < n_reloads; i++)
1209       if ((reg_class_subset_p (class, reload_reg_class[i])
1210            || reg_class_subset_p (reload_reg_class[i], class))
1211           /* If the existing reload has a register, it must fit our class.  */
1212           && (reload_reg_rtx[i] == 0
1213               || TEST_HARD_REG_BIT (reg_class_contents[(int) class],
1214                                     true_regnum (reload_reg_rtx[i])))
1215           && out == 0 && reload_out[i] == 0 && reload_in[i] != 0
1216           && ((GET_CODE (in) == REG
1217                && (GET_CODE (reload_in[i]) == POST_INC
1218                    || GET_CODE (reload_in[i]) == POST_DEC
1219                    || GET_CODE (reload_in[i]) == PRE_INC
1220                    || GET_CODE (reload_in[i]) == PRE_DEC)
1221                && MATCHES (XEXP (reload_in[i], 0), in))
1222               ||
1223               (GET_CODE (reload_in[i]) == REG
1224                && (GET_CODE (in) == POST_INC
1225                    || GET_CODE (in) == POST_DEC
1226                    || GET_CODE (in) == PRE_INC
1227                    || GET_CODE (in) == PRE_DEC)
1228                && MATCHES (XEXP (in, 0), reload_in[i])))
1229           && (reg_class_size[(int) class] == 1 || SMALL_REGISTER_CLASSES)
1230           && MERGABLE_RELOADS (type, reload_when_needed[i],
1231                                opnum, reload_opnum[i]))
1232         {
1233           /* Make sure reload_in ultimately has the increment,
1234              not the plain register.  */
1235           if (GET_CODE (in) == REG)
1236             in = reload_in[i];
1237           break;
1238         }
1239
1240   if (i == n_reloads)
1241     {
1242       /* See if we need a secondary reload register to move between CLASS
1243          and IN or CLASS and OUT.  Get the icode and push any required reloads
1244          needed for each of them if so.  */
1245
1246 #ifdef SECONDARY_INPUT_RELOAD_CLASS
1247       if (in != 0)
1248         secondary_in_reload
1249           = push_secondary_reload (1, in, opnum, optional, class, inmode, type,
1250                                    &secondary_in_icode);
1251 #endif
1252
1253 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
1254       if (out != 0 && GET_CODE (out) != SCRATCH)
1255         secondary_out_reload
1256           = push_secondary_reload (0, out, opnum, optional, class, outmode,
1257                                    type, &secondary_out_icode);
1258 #endif
1259
1260       /* We found no existing reload suitable for re-use.
1261          So add an additional reload.  */
1262
1263 #ifdef SECONDARY_MEMORY_NEEDED
1264       /* If a memory location is needed for the copy, make one.  */
1265       if (in != 0 && GET_CODE (in) == REG
1266           && REGNO (in) < FIRST_PSEUDO_REGISTER
1267           && SECONDARY_MEMORY_NEEDED (REGNO_REG_CLASS (REGNO (in)),
1268                                      class, inmode))
1269         get_secondary_mem (in, inmode, opnum, type);
1270 #endif
1271
1272       i = n_reloads;
1273       reload_in[i] = in;
1274       reload_out[i] = out;
1275       reload_reg_class[i] = class;
1276       reload_inmode[i] = inmode;
1277       reload_outmode[i] = outmode;
1278       reload_reg_rtx[i] = 0;
1279       reload_optional[i] = optional;
1280       reload_nongroup[i] = 0;
1281       reload_inc[i] = 0;
1282       reload_nocombine[i] = 0;
1283       reload_in_reg[i] = inloc ? *inloc : 0;
1284       reload_opnum[i] = opnum;
1285       reload_when_needed[i] = type;
1286       reload_secondary_in_reload[i] = secondary_in_reload;
1287       reload_secondary_out_reload[i] = secondary_out_reload;
1288       reload_secondary_in_icode[i] = secondary_in_icode;
1289       reload_secondary_out_icode[i] = secondary_out_icode;
1290       reload_secondary_p[i] = 0;
1291
1292       n_reloads++;
1293
1294 #ifdef SECONDARY_MEMORY_NEEDED
1295       if (out != 0 && GET_CODE (out) == REG
1296           && REGNO (out) < FIRST_PSEUDO_REGISTER
1297           && SECONDARY_MEMORY_NEEDED (class, REGNO_REG_CLASS (REGNO (out)),
1298                                       outmode))
1299         get_secondary_mem (out, outmode, opnum, type);
1300 #endif
1301     }
1302   else
1303     {
1304       /* We are reusing an existing reload,
1305          but we may have additional information for it.
1306          For example, we may now have both IN and OUT
1307          while the old one may have just one of them.  */
1308
1309       /* The modes can be different.  If they are, we want to reload in
1310          the larger mode, so that the value is valid for both modes.  */
1311       if (inmode != VOIDmode
1312           && GET_MODE_SIZE (inmode) > GET_MODE_SIZE (reload_inmode[i]))
1313         reload_inmode[i] = inmode;
1314       if (outmode != VOIDmode
1315           && GET_MODE_SIZE (outmode) > GET_MODE_SIZE (reload_outmode[i]))
1316         reload_outmode[i] = outmode;
1317       if (in != 0)
1318         reload_in[i] = in;
1319       if (out != 0)
1320         reload_out[i] = out;
1321       if (reg_class_subset_p (class, reload_reg_class[i]))
1322         reload_reg_class[i] = class;
1323       reload_optional[i] &= optional;
1324       if (MERGE_TO_OTHER (type, reload_when_needed[i],
1325                           opnum, reload_opnum[i]))
1326         reload_when_needed[i] = RELOAD_OTHER;
1327       reload_opnum[i] = MIN (reload_opnum[i], opnum);
1328     }
1329
1330   /* If the ostensible rtx being reload differs from the rtx found
1331      in the location to substitute, this reload is not safe to combine
1332      because we cannot reliably tell whether it appears in the insn.  */
1333
1334   if (in != 0 && in != *inloc)
1335     reload_nocombine[i] = 1;
1336
1337 #if 0
1338   /* This was replaced by changes in find_reloads_address_1 and the new
1339      function inc_for_reload, which go with a new meaning of reload_inc.  */
1340
1341   /* If this is an IN/OUT reload in an insn that sets the CC,
1342      it must be for an autoincrement.  It doesn't work to store
1343      the incremented value after the insn because that would clobber the CC.
1344      So we must do the increment of the value reloaded from,
1345      increment it, store it back, then decrement again.  */
1346   if (out != 0 && sets_cc0_p (PATTERN (this_insn)))
1347     {
1348       out = 0;
1349       reload_out[i] = 0;
1350       reload_inc[i] = find_inc_amount (PATTERN (this_insn), in);
1351       /* If we did not find a nonzero amount-to-increment-by,
1352          that contradicts the belief that IN is being incremented
1353          in an address in this insn.  */
1354       if (reload_inc[i] == 0)
1355         abort ();
1356     }
1357 #endif
1358
1359   /* If we will replace IN and OUT with the reload-reg,
1360      record where they are located so that substitution need
1361      not do a tree walk.  */
1362
1363   if (replace_reloads)
1364     {
1365       if (inloc != 0)
1366         {
1367           register struct replacement *r = &replacements[n_replacements++];
1368           r->what = i;
1369           r->subreg_loc = in_subreg_loc;
1370           r->where = inloc;
1371           r->mode = inmode;
1372         }
1373       if (outloc != 0 && outloc != inloc)
1374         {
1375           register struct replacement *r = &replacements[n_replacements++];
1376           r->what = i;
1377           r->where = outloc;
1378           r->subreg_loc = out_subreg_loc;
1379           r->mode = outmode;
1380         }
1381     }
1382
1383   /* If this reload is just being introduced and it has both
1384      an incoming quantity and an outgoing quantity that are
1385      supposed to be made to match, see if either one of the two
1386      can serve as the place to reload into.
1387
1388      If one of them is acceptable, set reload_reg_rtx[i]
1389      to that one.  */
1390
1391   if (in != 0 && out != 0 && in != out && reload_reg_rtx[i] == 0)
1392     {
1393       reload_reg_rtx[i] = find_dummy_reload (in, out, inloc, outloc,
1394                                              inmode, outmode,
1395                                              reload_reg_class[i], i,
1396                                              earlyclobber_operand_p (out));
1397
1398       /* If the outgoing register already contains the same value
1399          as the incoming one, we can dispense with loading it.
1400          The easiest way to tell the caller that is to give a phony
1401          value for the incoming operand (same as outgoing one).  */
1402       if (reload_reg_rtx[i] == out
1403           && (GET_CODE (in) == REG || CONSTANT_P (in))
1404           && 0 != find_equiv_reg (in, this_insn, 0, REGNO (out),
1405                                   static_reload_reg_p, i, inmode))
1406         reload_in[i] = out;
1407     }
1408
1409   /* If this is an input reload and the operand contains a register that
1410      dies in this insn and is used nowhere else, see if it is the right class
1411      to be used for this reload.  Use it if so.  (This occurs most commonly
1412      in the case of paradoxical SUBREGs and in-out reloads).  We cannot do
1413      this if it is also an output reload that mentions the register unless
1414      the output is a SUBREG that clobbers an entire register.
1415
1416      Note that the operand might be one of the spill regs, if it is a
1417      pseudo reg and we are in a block where spilling has not taken place.
1418      But if there is no spilling in this block, that is OK.
1419      An explicitly used hard reg cannot be a spill reg.  */
1420
1421   if (reload_reg_rtx[i] == 0 && in != 0)
1422     {
1423       rtx note;
1424       int regno;
1425
1426       for (note = REG_NOTES (this_insn); note; note = XEXP (note, 1))
1427         if (REG_NOTE_KIND (note) == REG_DEAD
1428             && GET_CODE (XEXP (note, 0)) == REG
1429             && (regno = REGNO (XEXP (note, 0))) < FIRST_PSEUDO_REGISTER
1430             && reg_mentioned_p (XEXP (note, 0), in)
1431             && ! refers_to_regno_for_reload_p (regno,
1432                                                (regno
1433                                                 + HARD_REGNO_NREGS (regno,
1434                                                                     inmode)),
1435                                                PATTERN (this_insn), inloc)
1436             /* If this is also an output reload, IN cannot be used as
1437                the reload register if it is set in this insn unless IN
1438                is also OUT.  */
1439             && (out == 0 || in == out
1440                 || ! hard_reg_set_here_p (regno,
1441                                           (regno
1442                                            + HARD_REGNO_NREGS (regno,
1443                                                                inmode)),
1444                                           PATTERN (this_insn)))
1445             /* ??? Why is this code so different from the previous?
1446                Is there any simple coherent way to describe the two together?
1447                What's going on here.  */
1448             && (in != out
1449                 || (GET_CODE (in) == SUBREG
1450                     && (((GET_MODE_SIZE (GET_MODE (in)) + (UNITS_PER_WORD - 1))
1451                          / UNITS_PER_WORD)
1452                         == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (in)))
1453                              + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD))))
1454             /* Make sure the operand fits in the reg that dies.  */
1455             && GET_MODE_SIZE (inmode) <= GET_MODE_SIZE (GET_MODE (XEXP (note, 0)))
1456             && HARD_REGNO_MODE_OK (regno, inmode)
1457             && GET_MODE_SIZE (outmode) <= GET_MODE_SIZE (GET_MODE (XEXP (note, 0)))
1458             && HARD_REGNO_MODE_OK (regno, outmode)
1459             && TEST_HARD_REG_BIT (reg_class_contents[(int) class], regno)
1460             && !fixed_regs[regno])
1461           {
1462             reload_reg_rtx[i] = gen_rtx_REG (inmode, regno);
1463             break;
1464           }
1465     }
1466
1467   if (out)
1468     output_reloadnum = i;
1469
1470   return i;
1471 }
1472
1473 /* Record an additional place we must replace a value
1474    for which we have already recorded a reload.
1475    RELOADNUM is the value returned by push_reload
1476    when the reload was recorded.
1477    This is used in insn patterns that use match_dup.  */
1478
1479 static void
1480 push_replacement (loc, reloadnum, mode)
1481      rtx *loc;
1482      int reloadnum;
1483      enum machine_mode mode;
1484 {
1485   if (replace_reloads)
1486     {
1487       register struct replacement *r = &replacements[n_replacements++];
1488       r->what = reloadnum;
1489       r->where = loc;
1490       r->subreg_loc = 0;
1491       r->mode = mode;
1492     }
1493 }
1494 \f
1495 /* Transfer all replacements that used to be in reload FROM to be in
1496    reload TO.  */
1497
1498 void
1499 transfer_replacements (to, from)
1500      int to, from;
1501 {
1502   int i;
1503
1504   for (i = 0; i < n_replacements; i++)
1505     if (replacements[i].what == from)
1506       replacements[i].what = to;
1507 }
1508 \f
1509 /* Remove all replacements in reload FROM.  */
1510 void
1511 remove_replacements (from)
1512      int from;
1513 {
1514   int i, j;
1515
1516   for (i = 0, j = 0; i < n_replacements; i++)
1517     {
1518       if (replacements[i].what == from)
1519         continue;
1520       replacements[j++] = replacements[i];
1521     }
1522 }
1523 \f
1524 /* If there is only one output reload, and it is not for an earlyclobber
1525    operand, try to combine it with a (logically unrelated) input reload
1526    to reduce the number of reload registers needed.
1527
1528    This is safe if the input reload does not appear in
1529    the value being output-reloaded, because this implies
1530    it is not needed any more once the original insn completes.
1531
1532    If that doesn't work, see we can use any of the registers that
1533    die in this insn as a reload register.  We can if it is of the right
1534    class and does not appear in the value being output-reloaded.  */
1535
1536 static void
1537 combine_reloads ()
1538 {
1539   int i;
1540   int output_reload = -1;
1541   int secondary_out = -1;
1542   rtx note;
1543
1544   /* Find the output reload; return unless there is exactly one
1545      and that one is mandatory.  */
1546
1547   for (i = 0; i < n_reloads; i++)
1548     if (reload_out[i] != 0)
1549       {
1550         if (output_reload >= 0)
1551           return;
1552         output_reload = i;
1553       }
1554
1555   if (output_reload < 0 || reload_optional[output_reload])
1556     return;
1557
1558   /* An input-output reload isn't combinable.  */
1559
1560   if (reload_in[output_reload] != 0)
1561     return;
1562
1563   /* If this reload is for an earlyclobber operand, we can't do anything.  */
1564   if (earlyclobber_operand_p (reload_out[output_reload]))
1565     return;
1566
1567   /* Check each input reload; can we combine it?  */
1568
1569   for (i = 0; i < n_reloads; i++)
1570     if (reload_in[i] && ! reload_optional[i] && ! reload_nocombine[i]
1571         /* Life span of this reload must not extend past main insn.  */
1572         && reload_when_needed[i] != RELOAD_FOR_OUTPUT_ADDRESS
1573         && reload_when_needed[i] != RELOAD_FOR_OUTADDR_ADDRESS
1574         && reload_when_needed[i] != RELOAD_OTHER
1575         && (CLASS_MAX_NREGS (reload_reg_class[i], reload_inmode[i])
1576             == CLASS_MAX_NREGS (reload_reg_class[output_reload],
1577                                 reload_outmode[output_reload]))
1578         && reload_inc[i] == 0
1579         && reload_reg_rtx[i] == 0
1580 #ifdef SECONDARY_MEMORY_NEEDED
1581         /* Don't combine two reloads with different secondary
1582            memory locations.  */
1583         && (secondary_memlocs_elim[(int) reload_outmode[output_reload]][reload_opnum[i]] == 0
1584             || secondary_memlocs_elim[(int) reload_outmode[output_reload]][reload_opnum[output_reload]] == 0
1585             || rtx_equal_p (secondary_memlocs_elim[(int) reload_outmode[output_reload]][reload_opnum[i]],
1586                             secondary_memlocs_elim[(int) reload_outmode[output_reload]][reload_opnum[output_reload]]))
1587 #endif
1588         && (SMALL_REGISTER_CLASSES
1589             ? (reload_reg_class[i] == reload_reg_class[output_reload])
1590             : (reg_class_subset_p (reload_reg_class[i],
1591                                    reload_reg_class[output_reload])
1592                || reg_class_subset_p (reload_reg_class[output_reload],
1593                                       reload_reg_class[i])))
1594         && (MATCHES (reload_in[i], reload_out[output_reload])
1595             /* Args reversed because the first arg seems to be
1596                the one that we imagine being modified
1597                while the second is the one that might be affected.  */
1598             || (! reg_overlap_mentioned_for_reload_p (reload_out[output_reload],
1599                                                       reload_in[i])
1600                 /* However, if the input is a register that appears inside
1601                    the output, then we also can't share.
1602                    Imagine (set (mem (reg 69)) (plus (reg 69) ...)).
1603                    If the same reload reg is used for both reg 69 and the
1604                    result to be stored in memory, then that result
1605                    will clobber the address of the memory ref.  */
1606                 && ! (GET_CODE (reload_in[i]) == REG
1607                       && reg_overlap_mentioned_for_reload_p (reload_in[i],
1608                                                              reload_out[output_reload]))))
1609         && (reg_class_size[(int) reload_reg_class[i]]
1610             || SMALL_REGISTER_CLASSES)
1611         /* We will allow making things slightly worse by combining an
1612            input and an output, but no worse than that.  */
1613         && (reload_when_needed[i] == RELOAD_FOR_INPUT
1614             || reload_when_needed[i] == RELOAD_FOR_OUTPUT))
1615       {
1616         int j;
1617
1618         /* We have found a reload to combine with!  */
1619         reload_out[i] = reload_out[output_reload];
1620         reload_outmode[i] = reload_outmode[output_reload];
1621         /* Mark the old output reload as inoperative.  */
1622         reload_out[output_reload] = 0;
1623         /* The combined reload is needed for the entire insn.  */
1624         reload_when_needed[i] = RELOAD_OTHER;
1625         /* If the output reload had a secondary reload, copy it.  */
1626         if (reload_secondary_out_reload[output_reload] != -1)
1627           {
1628             reload_secondary_out_reload[i]
1629               = reload_secondary_out_reload[output_reload];
1630             reload_secondary_out_icode[i]
1631               = reload_secondary_out_icode[output_reload];
1632           }
1633
1634 #ifdef SECONDARY_MEMORY_NEEDED
1635         /* Copy any secondary MEM.  */
1636         if (secondary_memlocs_elim[(int) reload_outmode[output_reload]][reload_opnum[output_reload]] != 0)
1637           secondary_memlocs_elim[(int) reload_outmode[output_reload]][reload_opnum[i]]
1638             = secondary_memlocs_elim[(int) reload_outmode[output_reload]][reload_opnum[output_reload]];
1639 #endif
1640         /* If required, minimize the register class.  */
1641         if (reg_class_subset_p (reload_reg_class[output_reload],
1642                                 reload_reg_class[i]))
1643           reload_reg_class[i] = reload_reg_class[output_reload];
1644
1645         /* Transfer all replacements from the old reload to the combined.  */
1646         for (j = 0; j < n_replacements; j++)
1647           if (replacements[j].what == output_reload)
1648             replacements[j].what = i;
1649
1650         return;
1651       }
1652
1653   /* If this insn has only one operand that is modified or written (assumed
1654      to be the first),  it must be the one corresponding to this reload.  It
1655      is safe to use anything that dies in this insn for that output provided
1656      that it does not occur in the output (we already know it isn't an
1657      earlyclobber.  If this is an asm insn, give up.  */
1658
1659   if (INSN_CODE (this_insn) == -1)
1660     return;
1661
1662   for (i = 1; i < insn_n_operands[INSN_CODE (this_insn)]; i++)
1663     if (insn_operand_constraint[INSN_CODE (this_insn)][i][0] == '='
1664         || insn_operand_constraint[INSN_CODE (this_insn)][i][0] == '+')
1665       return;
1666
1667   /* See if some hard register that dies in this insn and is not used in
1668      the output is the right class.  Only works if the register we pick
1669      up can fully hold our output reload.  */
1670   for (note = REG_NOTES (this_insn); note; note = XEXP (note, 1))
1671     if (REG_NOTE_KIND (note) == REG_DEAD
1672         && GET_CODE (XEXP (note, 0)) == REG
1673         && ! reg_overlap_mentioned_for_reload_p (XEXP (note, 0),
1674                                                  reload_out[output_reload])
1675         && REGNO (XEXP (note, 0)) < FIRST_PSEUDO_REGISTER
1676         && HARD_REGNO_MODE_OK (REGNO (XEXP (note, 0)), reload_outmode[output_reload])
1677         && TEST_HARD_REG_BIT (reg_class_contents[(int) reload_reg_class[output_reload]],
1678                               REGNO (XEXP (note, 0)))
1679         && (HARD_REGNO_NREGS (REGNO (XEXP (note, 0)), reload_outmode[output_reload])
1680             <= HARD_REGNO_NREGS (REGNO (XEXP (note, 0)), GET_MODE (XEXP (note, 0))))
1681         /* Ensure that a secondary or tertiary reload for this output
1682            won't want this register.  */
1683         && ((secondary_out = reload_secondary_out_reload[output_reload]) == -1
1684             || (! (TEST_HARD_REG_BIT
1685                     (reg_class_contents[(int) reload_reg_class[secondary_out]],
1686                      REGNO (XEXP (note, 0))))
1687                 && ((secondary_out = reload_secondary_out_reload[secondary_out]) == -1
1688                     ||  ! (TEST_HARD_REG_BIT
1689                            (reg_class_contents[(int) reload_reg_class[secondary_out]],
1690                             REGNO (XEXP (note, 0)))))))
1691         && ! fixed_regs[REGNO (XEXP (note, 0))])
1692       {
1693         reload_reg_rtx[output_reload]
1694           = gen_rtx_REG (reload_outmode[output_reload],
1695                          REGNO (XEXP (note, 0)));
1696         return;
1697       }
1698 }
1699 \f
1700 /* Try to find a reload register for an in-out reload (expressions IN and OUT).
1701    See if one of IN and OUT is a register that may be used;
1702    this is desirable since a spill-register won't be needed.
1703    If so, return the register rtx that proves acceptable.
1704
1705    INLOC and OUTLOC are locations where IN and OUT appear in the insn.
1706    CLASS is the register class required for the reload.
1707
1708    If FOR_REAL is >= 0, it is the number of the reload,
1709    and in some cases when it can be discovered that OUT doesn't need
1710    to be computed, clear out reload_out[FOR_REAL].
1711
1712    If FOR_REAL is -1, this should not be done, because this call
1713    is just to see if a register can be found, not to find and install it.
1714
1715    EARLYCLOBBER is non-zero if OUT is an earlyclobber operand.  This
1716    puts an additional constraint on being able to use IN for OUT since
1717    IN must not appear elsewhere in the insn (it is assumed that IN itself
1718    is safe from the earlyclobber).  */
1719
1720 static rtx
1721 find_dummy_reload (real_in, real_out, inloc, outloc,
1722                    inmode, outmode, class, for_real, earlyclobber)
1723      rtx real_in, real_out;
1724      rtx *inloc, *outloc;
1725      enum machine_mode inmode, outmode;
1726      enum reg_class class;
1727      int for_real;
1728      int earlyclobber;
1729 {
1730   rtx in = real_in;
1731   rtx out = real_out;
1732   int in_offset = 0;
1733   int out_offset = 0;
1734   rtx value = 0;
1735
1736   /* If operands exceed a word, we can't use either of them
1737      unless they have the same size.  */
1738   if (GET_MODE_SIZE (outmode) != GET_MODE_SIZE (inmode)
1739       && (GET_MODE_SIZE (outmode) > UNITS_PER_WORD
1740           || GET_MODE_SIZE (inmode) > UNITS_PER_WORD))
1741     return 0;
1742
1743   /* Find the inside of any subregs.  */
1744   while (GET_CODE (out) == SUBREG)
1745     {
1746       out_offset = SUBREG_WORD (out);
1747       out = SUBREG_REG (out);
1748     }
1749   while (GET_CODE (in) == SUBREG)
1750     {
1751       in_offset = SUBREG_WORD (in);
1752       in = SUBREG_REG (in);
1753     }
1754
1755   /* Narrow down the reg class, the same way push_reload will;
1756      otherwise we might find a dummy now, but push_reload won't.  */
1757   class = PREFERRED_RELOAD_CLASS (in, class);
1758
1759   /* See if OUT will do.  */
1760   if (GET_CODE (out) == REG
1761       && REGNO (out) < FIRST_PSEUDO_REGISTER)
1762     {
1763       register int regno = REGNO (out) + out_offset;
1764       int nwords = HARD_REGNO_NREGS (regno, outmode);
1765       rtx saved_rtx;
1766
1767       /* When we consider whether the insn uses OUT,
1768          ignore references within IN.  They don't prevent us
1769          from copying IN into OUT, because those refs would
1770          move into the insn that reloads IN.
1771
1772          However, we only ignore IN in its role as this reload.
1773          If the insn uses IN elsewhere and it contains OUT,
1774          that counts.  We can't be sure it's the "same" operand
1775          so it might not go through this reload.  */
1776       saved_rtx = *inloc;
1777       *inloc = const0_rtx;
1778
1779       if (regno < FIRST_PSEUDO_REGISTER
1780           /* A fixed reg that can overlap other regs better not be used
1781              for reloading in any way.  */
1782 #ifdef OVERLAPPING_REGNO_P
1783           && ! (fixed_regs[regno] && OVERLAPPING_REGNO_P (regno))
1784 #endif
1785           && ! refers_to_regno_for_reload_p (regno, regno + nwords,
1786                                              PATTERN (this_insn), outloc))
1787         {
1788           int i;
1789           for (i = 0; i < nwords; i++)
1790             if (! TEST_HARD_REG_BIT (reg_class_contents[(int) class],
1791                                      regno + i))
1792               break;
1793
1794           if (i == nwords)
1795             {
1796               if (GET_CODE (real_out) == REG)
1797                 value = real_out;
1798               else
1799                 value = gen_rtx_REG (outmode, regno);
1800             }
1801         }
1802
1803       *inloc = saved_rtx;
1804     }
1805
1806   /* Consider using IN if OUT was not acceptable
1807      or if OUT dies in this insn (like the quotient in a divmod insn).
1808      We can't use IN unless it is dies in this insn,
1809      which means we must know accurately which hard regs are live.
1810      Also, the result can't go in IN if IN is used within OUT,
1811      or if OUT is an earlyclobber and IN appears elsewhere in the insn.  */
1812   if (hard_regs_live_known
1813       && GET_CODE (in) == REG
1814       && REGNO (in) < FIRST_PSEUDO_REGISTER
1815       && (value == 0
1816           || find_reg_note (this_insn, REG_UNUSED, real_out))
1817       && find_reg_note (this_insn, REG_DEAD, real_in)
1818       && !fixed_regs[REGNO (in)]
1819       && HARD_REGNO_MODE_OK (REGNO (in),
1820                              /* The only case where out and real_out might
1821                                 have different modes is where real_out
1822                                 is a subreg, and in that case, out
1823                                 has a real mode.  */
1824                              (GET_MODE (out) != VOIDmode
1825                               ? GET_MODE (out) : outmode)))
1826     {
1827       register int regno = REGNO (in) + in_offset;
1828       int nwords = HARD_REGNO_NREGS (regno, inmode);
1829
1830       if (! refers_to_regno_for_reload_p (regno, regno + nwords, out, NULL_PTR)
1831           && ! hard_reg_set_here_p (regno, regno + nwords,
1832                                     PATTERN (this_insn))
1833           && (! earlyclobber
1834               || ! refers_to_regno_for_reload_p (regno, regno + nwords,
1835                                                  PATTERN (this_insn), inloc)))
1836         {
1837           int i;
1838           for (i = 0; i < nwords; i++)
1839             if (! TEST_HARD_REG_BIT (reg_class_contents[(int) class],
1840                                      regno + i))
1841               break;
1842
1843           if (i == nwords)
1844             {
1845               /* If we were going to use OUT as the reload reg
1846                  and changed our mind, it means OUT is a dummy that
1847                  dies here.  So don't bother copying value to it.  */
1848               if (for_real >= 0 && value == real_out)
1849                 reload_out[for_real] = 0;
1850               if (GET_CODE (real_in) == REG)
1851                 value = real_in;
1852               else
1853                 value = gen_rtx_REG (inmode, regno);
1854             }
1855         }
1856     }
1857
1858   return value;
1859 }
1860 \f
1861 /* This page contains subroutines used mainly for determining
1862    whether the IN or an OUT of a reload can serve as the
1863    reload register.  */
1864
1865 /* Return 1 if X is an operand of an insn that is being earlyclobbered.  */
1866
1867 static int
1868 earlyclobber_operand_p (x)
1869      rtx x;
1870 {
1871   int i;
1872
1873   for (i = 0; i < n_earlyclobbers; i++)
1874     if (reload_earlyclobbers[i] == x)
1875       return 1;
1876
1877   return 0;
1878 }
1879
1880 /* Return 1 if expression X alters a hard reg in the range
1881    from BEG_REGNO (inclusive) to END_REGNO (exclusive),
1882    either explicitly or in the guise of a pseudo-reg allocated to REGNO.
1883    X should be the body of an instruction.  */
1884
1885 static int
1886 hard_reg_set_here_p (beg_regno, end_regno, x)
1887      register int beg_regno, end_regno;
1888      rtx x;
1889 {
1890   if (GET_CODE (x) == SET || GET_CODE (x) == CLOBBER)
1891     {
1892       register rtx op0 = SET_DEST (x);
1893       while (GET_CODE (op0) == SUBREG)
1894         op0 = SUBREG_REG (op0);
1895       if (GET_CODE (op0) == REG)
1896         {
1897           register int r = REGNO (op0);
1898           /* See if this reg overlaps range under consideration.  */
1899           if (r < end_regno
1900               && r + HARD_REGNO_NREGS (r, GET_MODE (op0)) > beg_regno)
1901             return 1;
1902         }
1903     }
1904   else if (GET_CODE (x) == PARALLEL)
1905     {
1906       register int i = XVECLEN (x, 0) - 1;
1907       for (; i >= 0; i--)
1908         if (hard_reg_set_here_p (beg_regno, end_regno, XVECEXP (x, 0, i)))
1909           return 1;
1910     }
1911
1912   return 0;
1913 }
1914
1915 /* Return 1 if ADDR is a valid memory address for mode MODE,
1916    and check that each pseudo reg has the proper kind of
1917    hard reg.  */
1918
1919 int
1920 strict_memory_address_p (mode, addr)
1921      enum machine_mode mode;
1922      register rtx addr;
1923 {
1924   GO_IF_LEGITIMATE_ADDRESS (mode, addr, win);
1925   return 0;
1926
1927  win:
1928   return 1;
1929 }
1930 \f
1931 /* Like rtx_equal_p except that it allows a REG and a SUBREG to match
1932    if they are the same hard reg, and has special hacks for
1933    autoincrement and autodecrement.
1934    This is specifically intended for find_reloads to use
1935    in determining whether two operands match.
1936    X is the operand whose number is the lower of the two.
1937
1938    The value is 2 if Y contains a pre-increment that matches
1939    a non-incrementing address in X.  */
1940
1941 /* ??? To be completely correct, we should arrange to pass
1942    for X the output operand and for Y the input operand.
1943    For now, we assume that the output operand has the lower number
1944    because that is natural in (SET output (... input ...)).  */
1945
1946 int
1947 operands_match_p (x, y)
1948      register rtx x, y;
1949 {
1950   register int i;
1951   register RTX_CODE code = GET_CODE (x);
1952   register char *fmt;
1953   int success_2;
1954       
1955   if (x == y)
1956     return 1;
1957   if ((code == REG || (code == SUBREG && GET_CODE (SUBREG_REG (x)) == REG))
1958       && (GET_CODE (y) == REG || (GET_CODE (y) == SUBREG
1959                                   && GET_CODE (SUBREG_REG (y)) == REG)))
1960     {
1961       register int j;
1962
1963       if (code == SUBREG)
1964         {
1965           i = REGNO (SUBREG_REG (x));
1966           if (i >= FIRST_PSEUDO_REGISTER)
1967             goto slow;
1968           i += SUBREG_WORD (x);
1969         }
1970       else
1971         i = REGNO (x);
1972
1973       if (GET_CODE (y) == SUBREG)
1974         {
1975           j = REGNO (SUBREG_REG (y));
1976           if (j >= FIRST_PSEUDO_REGISTER)
1977             goto slow;
1978           j += SUBREG_WORD (y);
1979         }
1980       else
1981         j = REGNO (y);
1982
1983       /* On a WORDS_BIG_ENDIAN machine, point to the last register of a
1984          multiple hard register group, so that for example (reg:DI 0) and
1985          (reg:SI 1) will be considered the same register.  */
1986       if (WORDS_BIG_ENDIAN && GET_MODE_SIZE (GET_MODE (x)) > UNITS_PER_WORD
1987           && i < FIRST_PSEUDO_REGISTER)
1988         i += (GET_MODE_SIZE (GET_MODE (x)) / UNITS_PER_WORD) - 1;
1989       if (WORDS_BIG_ENDIAN && GET_MODE_SIZE (GET_MODE (y)) > UNITS_PER_WORD
1990           && j < FIRST_PSEUDO_REGISTER)
1991         j += (GET_MODE_SIZE (GET_MODE (y)) / UNITS_PER_WORD) - 1;
1992
1993       return i == j;
1994     }
1995   /* If two operands must match, because they are really a single
1996      operand of an assembler insn, then two postincrements are invalid
1997      because the assembler insn would increment only once.
1998      On the other hand, an postincrement matches ordinary indexing
1999      if the postincrement is the output operand.  */
2000   if (code == POST_DEC || code == POST_INC)
2001     return operands_match_p (XEXP (x, 0), y);
2002   /* Two preincrements are invalid
2003      because the assembler insn would increment only once.
2004      On the other hand, an preincrement matches ordinary indexing
2005      if the preincrement is the input operand.
2006      In this case, return 2, since some callers need to do special
2007      things when this happens.  */
2008   if (GET_CODE (y) == PRE_DEC || GET_CODE (y) == PRE_INC)
2009     return operands_match_p (x, XEXP (y, 0)) ? 2 : 0;
2010
2011  slow:
2012
2013   /* Now we have disposed of all the cases 
2014      in which different rtx codes can match.  */
2015   if (code != GET_CODE (y))
2016     return 0;
2017   if (code == LABEL_REF)
2018     return XEXP (x, 0) == XEXP (y, 0);
2019   if (code == SYMBOL_REF)
2020     return XSTR (x, 0) == XSTR (y, 0);
2021
2022   /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent.  */
2023
2024   if (GET_MODE (x) != GET_MODE (y))
2025     return 0;
2026
2027   /* Compare the elements.  If any pair of corresponding elements
2028      fail to match, return 0 for the whole things.  */
2029
2030   success_2 = 0;
2031   fmt = GET_RTX_FORMAT (code);
2032   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2033     {
2034       int val, j;
2035       switch (fmt[i])
2036         {
2037         case 'w':
2038           if (XWINT (x, i) != XWINT (y, i))
2039             return 0;
2040           break;
2041
2042         case 'i':
2043           if (XINT (x, i) != XINT (y, i))
2044             return 0;
2045           break;
2046
2047         case 'e':
2048           val = operands_match_p (XEXP (x, i), XEXP (y, i));
2049           if (val == 0)
2050             return 0;
2051           /* If any subexpression returns 2,
2052              we should return 2 if we are successful.  */
2053           if (val == 2)
2054             success_2 = 1;
2055           break;
2056
2057         case '0':
2058           break;
2059
2060         case 'E':
2061           if (XVECLEN (x, i) != XVECLEN (y, i))
2062             return 0;
2063           for (j = XVECLEN (x, i) - 1; j >= 0; --j)
2064             {
2065               val = operands_match_p (XVECEXP (x, i, j), XVECEXP (y, i, j));
2066               if (val == 0)
2067                 return 0;
2068               if (val == 2)
2069                 success_2 = 1;
2070             }
2071           break;
2072
2073           /* It is believed that rtx's at this level will never
2074              contain anything but integers and other rtx's,
2075              except for within LABEL_REFs and SYMBOL_REFs.  */
2076         default:
2077           abort ();
2078         }
2079     }
2080   return 1 + success_2;
2081 }
2082 \f
2083 /* Return the number of times character C occurs in string S.  */
2084
2085 int
2086 n_occurrences (c, s)
2087      int c;
2088      char *s;
2089 {
2090   int n = 0;
2091   while (*s)
2092     n += (*s++ == c);
2093   return n;
2094 }
2095 \f
2096 /* Describe the range of registers or memory referenced by X.
2097    If X is a register, set REG_FLAG and put the first register 
2098    number into START and the last plus one into END.
2099    If X is a memory reference, put a base address into BASE 
2100    and a range of integer offsets into START and END.
2101    If X is pushing on the stack, we can assume it causes no trouble, 
2102    so we set the SAFE field.  */
2103
2104 static struct decomposition
2105 decompose (x)
2106      rtx x;
2107 {
2108   struct decomposition val;
2109   int all_const = 0;
2110
2111   val.reg_flag = 0;
2112   val.safe = 0;
2113   val.base = 0;
2114   if (GET_CODE (x) == MEM)
2115     {
2116       rtx base, offset = 0;
2117       rtx addr = XEXP (x, 0);
2118
2119       if (GET_CODE (addr) == PRE_DEC || GET_CODE (addr) == PRE_INC
2120           || GET_CODE (addr) == POST_DEC || GET_CODE (addr) == POST_INC)
2121         {
2122           val.base = XEXP (addr, 0);
2123           val.start = - GET_MODE_SIZE (GET_MODE (x));
2124           val.end = GET_MODE_SIZE (GET_MODE (x));
2125           val.safe = REGNO (val.base) == STACK_POINTER_REGNUM;
2126           return val;
2127         }
2128
2129       if (GET_CODE (addr) == CONST)
2130         {
2131           addr = XEXP (addr, 0);
2132           all_const = 1;
2133         }
2134       if (GET_CODE (addr) == PLUS)
2135         {
2136           if (CONSTANT_P (XEXP (addr, 0)))
2137             {
2138               base = XEXP (addr, 1);
2139               offset = XEXP (addr, 0);
2140             }
2141           else if (CONSTANT_P (XEXP (addr, 1)))
2142             {
2143               base = XEXP (addr, 0);
2144               offset = XEXP (addr, 1);
2145             }
2146         }
2147
2148       if (offset == 0)
2149         {
2150           base = addr;
2151           offset = const0_rtx;
2152         } 
2153       if (GET_CODE (offset) == CONST)
2154         offset = XEXP (offset, 0);
2155       if (GET_CODE (offset) == PLUS)
2156         {
2157           if (GET_CODE (XEXP (offset, 0)) == CONST_INT)
2158             {
2159               base = gen_rtx_PLUS (GET_MODE (base), base, XEXP (offset, 1));
2160               offset = XEXP (offset, 0);
2161             }
2162           else if (GET_CODE (XEXP (offset, 1)) == CONST_INT)
2163             {
2164               base = gen_rtx_PLUS (GET_MODE (base), base, XEXP (offset, 0));
2165               offset = XEXP (offset, 1);
2166             }
2167           else
2168             {
2169               base = gen_rtx_PLUS (GET_MODE (base), base, offset);
2170               offset = const0_rtx;
2171             }
2172         }
2173       else if (GET_CODE (offset) != CONST_INT)
2174         {
2175           base = gen_rtx_PLUS (GET_MODE (base), base, offset);
2176           offset = const0_rtx;
2177         }
2178
2179       if (all_const && GET_CODE (base) == PLUS)
2180         base = gen_rtx_CONST (GET_MODE (base), base);
2181
2182       if (GET_CODE (offset) != CONST_INT)
2183         abort ();
2184
2185       val.start = INTVAL (offset);
2186       val.end = val.start + GET_MODE_SIZE (GET_MODE (x));
2187       val.base = base;
2188       return val;
2189     }
2190   else if (GET_CODE (x) == REG)
2191     {
2192       val.reg_flag = 1;
2193       val.start = true_regnum (x); 
2194       if (val.start < 0)
2195         {
2196           /* A pseudo with no hard reg.  */
2197           val.start = REGNO (x);
2198           val.end = val.start + 1;
2199         }
2200       else
2201         /* A hard reg.  */
2202         val.end = val.start + HARD_REGNO_NREGS (val.start, GET_MODE (x));
2203     }
2204   else if (GET_CODE (x) == SUBREG)
2205     {
2206       if (GET_CODE (SUBREG_REG (x)) != REG)
2207         /* This could be more precise, but it's good enough.  */
2208         return decompose (SUBREG_REG (x));
2209       val.reg_flag = 1;
2210       val.start = true_regnum (x); 
2211       if (val.start < 0)
2212         return decompose (SUBREG_REG (x));
2213       else
2214         /* A hard reg.  */
2215         val.end = val.start + HARD_REGNO_NREGS (val.start, GET_MODE (x));
2216     }
2217   else if (CONSTANT_P (x)
2218            /* This hasn't been assigned yet, so it can't conflict yet.  */
2219            || GET_CODE (x) == SCRATCH)
2220     val.safe = 1;
2221   else
2222     abort ();
2223   return val;
2224 }
2225
2226 /* Return 1 if altering Y will not modify the value of X.
2227    Y is also described by YDATA, which should be decompose (Y).  */
2228
2229 static int
2230 immune_p (x, y, ydata)
2231      rtx x, y;
2232      struct decomposition ydata;
2233 {
2234   struct decomposition xdata;
2235
2236   if (ydata.reg_flag)
2237     return !refers_to_regno_for_reload_p (ydata.start, ydata.end, x, NULL_PTR);
2238   if (ydata.safe)
2239     return 1;
2240
2241   if (GET_CODE (y) != MEM)
2242     abort ();
2243   /* If Y is memory and X is not, Y can't affect X.  */
2244   if (GET_CODE (x) != MEM)
2245     return 1;
2246
2247   xdata =  decompose (x);
2248
2249   if (! rtx_equal_p (xdata.base, ydata.base))
2250     {
2251       /* If bases are distinct symbolic constants, there is no overlap.  */
2252       if (CONSTANT_P (xdata.base) && CONSTANT_P (ydata.base))
2253         return 1;
2254       /* Constants and stack slots never overlap.  */
2255       if (CONSTANT_P (xdata.base)
2256           && (ydata.base == frame_pointer_rtx
2257               || ydata.base == hard_frame_pointer_rtx
2258               || ydata.base == stack_pointer_rtx))
2259         return 1;
2260       if (CONSTANT_P (ydata.base)
2261           && (xdata.base == frame_pointer_rtx
2262               || xdata.base == hard_frame_pointer_rtx
2263               || xdata.base == stack_pointer_rtx))
2264         return 1;
2265       /* If either base is variable, we don't know anything.  */
2266       return 0;
2267     }
2268
2269
2270   return (xdata.start >= ydata.end || ydata.start >= xdata.end);
2271 }
2272
2273 /* Similar, but calls decompose.  */
2274
2275 int
2276 safe_from_earlyclobber (op, clobber)
2277      rtx op, clobber;
2278 {
2279   struct decomposition early_data;
2280
2281   early_data = decompose (clobber);
2282   return immune_p (op, clobber, early_data);
2283 }
2284 \f
2285 /* Main entry point of this file: search the body of INSN
2286    for values that need reloading and record them with push_reload.
2287    REPLACE nonzero means record also where the values occur
2288    so that subst_reloads can be used.
2289
2290    IND_LEVELS says how many levels of indirection are supported by this
2291    machine; a value of zero means that a memory reference is not a valid
2292    memory address.
2293
2294    LIVE_KNOWN says we have valid information about which hard
2295    regs are live at each point in the program; this is true when
2296    we are called from global_alloc but false when stupid register
2297    allocation has been done.
2298
2299    RELOAD_REG_P if nonzero is a vector indexed by hard reg number
2300    which is nonnegative if the reg has been commandeered for reloading into.
2301    It is copied into STATIC_RELOAD_REG_P and referenced from there
2302    by various subroutines.  */
2303
2304 void
2305 find_reloads (insn, replace, ind_levels, live_known, reload_reg_p)
2306      rtx insn;
2307      int replace, ind_levels;
2308      int live_known;
2309      short *reload_reg_p;
2310 {
2311 #ifdef REGISTER_CONSTRAINTS
2312
2313   register int insn_code_number;
2314   register int i, j;
2315   int noperands;
2316   /* These are the constraints for the insn.  We don't change them.  */
2317   char *constraints1[MAX_RECOG_OPERANDS];
2318   /* These start out as the constraints for the insn
2319      and they are chewed up as we consider alternatives.  */
2320   char *constraints[MAX_RECOG_OPERANDS];
2321   /* These are the preferred classes for an operand, or NO_REGS if it isn't
2322      a register.  */
2323   enum reg_class preferred_class[MAX_RECOG_OPERANDS];
2324   char pref_or_nothing[MAX_RECOG_OPERANDS];
2325   /* Nonzero for a MEM operand whose entire address needs a reload.  */
2326   int address_reloaded[MAX_RECOG_OPERANDS];
2327   /* Value of enum reload_type to use for operand.  */
2328   enum reload_type operand_type[MAX_RECOG_OPERANDS];
2329   /* Value of enum reload_type to use within address of operand.  */
2330   enum reload_type address_type[MAX_RECOG_OPERANDS];
2331   /* Save the usage of each operand.  */
2332   enum reload_usage { RELOAD_READ, RELOAD_READ_WRITE, RELOAD_WRITE } modified[MAX_RECOG_OPERANDS];
2333   int no_input_reloads = 0, no_output_reloads = 0;
2334   int n_alternatives;
2335   int this_alternative[MAX_RECOG_OPERANDS];
2336   char this_alternative_win[MAX_RECOG_OPERANDS];
2337   char this_alternative_offmemok[MAX_RECOG_OPERANDS];
2338   char this_alternative_earlyclobber[MAX_RECOG_OPERANDS];
2339   int this_alternative_matches[MAX_RECOG_OPERANDS];
2340   int swapped;
2341   int goal_alternative[MAX_RECOG_OPERANDS];
2342   int this_alternative_number;
2343   int goal_alternative_number;
2344   int operand_reloadnum[MAX_RECOG_OPERANDS];
2345   int goal_alternative_matches[MAX_RECOG_OPERANDS];
2346   int goal_alternative_matched[MAX_RECOG_OPERANDS];
2347   char goal_alternative_win[MAX_RECOG_OPERANDS];
2348   char goal_alternative_offmemok[MAX_RECOG_OPERANDS];
2349   char goal_alternative_earlyclobber[MAX_RECOG_OPERANDS];
2350   int goal_alternative_swapped;
2351   int best;
2352   int commutative;
2353   int changed;
2354   char operands_match[MAX_RECOG_OPERANDS][MAX_RECOG_OPERANDS];
2355   rtx substed_operand[MAX_RECOG_OPERANDS];
2356   rtx body = PATTERN (insn);
2357   rtx set = single_set (insn);
2358   int goal_earlyclobber, this_earlyclobber;
2359   enum machine_mode operand_mode[MAX_RECOG_OPERANDS];
2360   /* Cache the last regno for the last pseudo we did an output reload
2361      for in case the next insn uses it.  */
2362   static int last_output_reload_regno = -1;
2363
2364   this_insn = insn;
2365   this_insn_is_asm = 0;         /* Tentative.  */
2366   n_reloads = 0;
2367   n_replacements = 0;
2368   n_memlocs = 0;
2369   n_earlyclobbers = 0;
2370   replace_reloads = replace;
2371   hard_regs_live_known = live_known;
2372   static_reload_reg_p = reload_reg_p;
2373
2374   /* JUMP_INSNs and CALL_INSNs are not allowed to have any output reloads;
2375      neither are insns that SET cc0.  Insns that use CC0 are not allowed
2376      to have any input reloads.  */
2377   if (GET_CODE (insn) == JUMP_INSN || GET_CODE (insn) == CALL_INSN)
2378     no_output_reloads = 1;
2379
2380 #ifdef HAVE_cc0
2381   if (reg_referenced_p (cc0_rtx, PATTERN (insn)))
2382     no_input_reloads = 1;
2383   if (reg_set_p (cc0_rtx, PATTERN (insn)))
2384     no_output_reloads = 1;
2385 #endif
2386      
2387 #ifdef SECONDARY_MEMORY_NEEDED
2388   /* The eliminated forms of any secondary memory locations are per-insn, so
2389      clear them out here.  */
2390
2391   bzero ((char *) secondary_memlocs_elim, sizeof secondary_memlocs_elim);
2392 #endif
2393
2394   /* Find what kind of insn this is.  NOPERANDS gets number of operands.
2395      Make OPERANDS point to a vector of operand values.
2396      Make OPERAND_LOCS point to a vector of pointers to
2397      where the operands were found.
2398      Fill CONSTRAINTS and CONSTRAINTS1 with pointers to the
2399      constraint-strings for this insn.
2400      Return if the insn needs no reload processing.  */
2401
2402   switch (GET_CODE (body))
2403     {
2404     case USE:
2405     case CLOBBER:
2406     case ASM_INPUT:
2407     case ADDR_VEC:
2408     case ADDR_DIFF_VEC:
2409       return;
2410
2411     case SET:
2412       /* Dispose quickly of (set (reg..) (reg..)) if both have hard regs and it
2413          is cheap to move between them.  If it is not, there may not be an insn
2414          to do the copy, so we may need a reload.  */
2415       if (GET_CODE (SET_DEST (body)) == REG
2416           && REGNO (SET_DEST (body)) < FIRST_PSEUDO_REGISTER
2417           && GET_CODE (SET_SRC (body)) == REG
2418           && REGNO (SET_SRC (body)) < FIRST_PSEUDO_REGISTER
2419           && REGISTER_MOVE_COST (REGNO_REG_CLASS (REGNO (SET_SRC (body))),
2420                                  REGNO_REG_CLASS (REGNO (SET_DEST (body)))) == 2)
2421         return;
2422     case PARALLEL:
2423     case ASM_OPERANDS:
2424       reload_n_operands = noperands = asm_noperands (body);
2425       if (noperands >= 0)
2426         {
2427           /* This insn is an `asm' with operands.  */
2428
2429           insn_code_number = -1;
2430           this_insn_is_asm = 1;
2431
2432           /* expand_asm_operands makes sure there aren't too many operands.  */
2433           if (noperands > MAX_RECOG_OPERANDS)
2434             abort ();
2435
2436           /* Now get the operand values and constraints out of the insn.  */
2437
2438           decode_asm_operands (body, recog_operand, recog_operand_loc,
2439                                constraints, operand_mode);
2440           if (noperands > 0)
2441             {
2442               bcopy ((char *) constraints, (char *) constraints1,
2443                      noperands * sizeof (char *));
2444               n_alternatives = n_occurrences (',', constraints[0]) + 1;
2445               for (i = 1; i < noperands; i++)
2446                 if (n_alternatives != n_occurrences (',', constraints[i]) + 1)
2447                   {
2448                     error_for_asm (insn, "operand constraints differ in number of alternatives");
2449                     /* Avoid further trouble with this insn.  */
2450                     PATTERN (insn) = gen_rtx_USE (VOIDmode, const0_rtx);
2451                     n_reloads = 0;
2452                     return;
2453                   }
2454             }
2455           break;
2456         }
2457
2458     default:
2459       /* Ordinary insn: recognize it, get the operands via insn_extract
2460          and get the constraints.  */
2461
2462       insn_code_number = recog_memoized (insn);
2463       if (insn_code_number < 0)
2464         fatal_insn_not_found (insn);
2465
2466       reload_n_operands = noperands = insn_n_operands[insn_code_number];
2467       n_alternatives = insn_n_alternatives[insn_code_number];
2468       /* Just return "no reloads" if insn has no operands with constraints.  */
2469       if (n_alternatives == 0)
2470         return;
2471       insn_extract (insn);
2472       for (i = 0; i < noperands; i++)
2473         {
2474           constraints[i] = constraints1[i]
2475             = insn_operand_constraint[insn_code_number][i];
2476           operand_mode[i] = insn_operand_mode[insn_code_number][i];
2477         }
2478     }
2479
2480   if (noperands == 0)
2481     return;
2482
2483   commutative = -1;
2484
2485   /* If we will need to know, later, whether some pair of operands
2486      are the same, we must compare them now and save the result.
2487      Reloading the base and index registers will clobber them
2488      and afterward they will fail to match.  */
2489
2490   for (i = 0; i < noperands; i++)
2491     {
2492       register char *p;
2493       register int c;
2494
2495       substed_operand[i] = recog_operand[i];
2496       p = constraints[i];
2497
2498       modified[i] = RELOAD_READ;
2499
2500       /* Scan this operand's constraint to see if it is an output operand, 
2501          an in-out operand, is commutative, or should match another.  */
2502
2503       while ((c = *p++))
2504         {
2505           if (c == '=')
2506             modified[i] = RELOAD_WRITE;
2507           else if (c == '+')
2508             modified[i] = RELOAD_READ_WRITE;
2509           else if (c == '%')
2510             {
2511               /* The last operand should not be marked commutative.  */
2512               if (i == noperands - 1)
2513                 {
2514                   if (this_insn_is_asm)
2515                     warning_for_asm (this_insn,
2516                                      "`%%' constraint used with last operand");
2517                   else
2518                     abort ();
2519                 }
2520               else
2521                 commutative = i;
2522             }
2523           else if (c >= '0' && c <= '9')
2524             {
2525               c -= '0';
2526               operands_match[c][i]
2527                 = operands_match_p (recog_operand[c], recog_operand[i]);
2528
2529               /* An operand may not match itself.  */
2530               if (c == i)
2531                 {
2532                   if (this_insn_is_asm)
2533                     warning_for_asm (this_insn,
2534                                      "operand %d has constraint %d", i, c);
2535                   else
2536                     abort ();
2537                 }
2538
2539               /* If C can be commuted with C+1, and C might need to match I,
2540                  then C+1 might also need to match I.  */
2541               if (commutative >= 0)
2542                 {
2543                   if (c == commutative || c == commutative + 1)
2544                     {
2545                       int other = c + (c == commutative ? 1 : -1);
2546                       operands_match[other][i]
2547                         = operands_match_p (recog_operand[other], recog_operand[i]);
2548                     }
2549                   if (i == commutative || i == commutative + 1)
2550                     {
2551                       int other = i + (i == commutative ? 1 : -1);
2552                       operands_match[c][other]
2553                         = operands_match_p (recog_operand[c], recog_operand[other]);
2554                     }
2555                   /* Note that C is supposed to be less than I.
2556                      No need to consider altering both C and I because in
2557                      that case we would alter one into the other.  */
2558                 }
2559             }
2560         }
2561     }
2562
2563   /* Examine each operand that is a memory reference or memory address
2564      and reload parts of the addresses into index registers.
2565      Also here any references to pseudo regs that didn't get hard regs
2566      but are equivalent to constants get replaced in the insn itself
2567      with those constants.  Nobody will ever see them again. 
2568
2569      Finally, set up the preferred classes of each operand.  */
2570
2571   for (i = 0; i < noperands; i++)
2572     {
2573       register RTX_CODE code = GET_CODE (recog_operand[i]);
2574
2575       address_reloaded[i] = 0;
2576       operand_type[i] = (modified[i] == RELOAD_READ ? RELOAD_FOR_INPUT
2577                          : modified[i] == RELOAD_WRITE ? RELOAD_FOR_OUTPUT
2578                          : RELOAD_OTHER);
2579       address_type[i]
2580         = (modified[i] == RELOAD_READ ? RELOAD_FOR_INPUT_ADDRESS
2581            : modified[i] == RELOAD_WRITE ? RELOAD_FOR_OUTPUT_ADDRESS
2582            : RELOAD_OTHER);
2583
2584       if (*constraints[i] == 0)
2585         /* Ignore things like match_operator operands.  */
2586         ;
2587       else if (constraints[i][0] == 'p')
2588         {
2589           find_reloads_address (VOIDmode, NULL_PTR,
2590                                 recog_operand[i], recog_operand_loc[i],
2591                                 i, operand_type[i], ind_levels, insn);
2592
2593           /* If we now have a simple operand where we used to have a 
2594              PLUS or MULT, re-recognize and try again.  */
2595           if ((GET_RTX_CLASS (GET_CODE (*recog_operand_loc[i])) == 'o'
2596                || GET_CODE (*recog_operand_loc[i]) == SUBREG)
2597               && (GET_CODE (recog_operand[i]) == MULT
2598                   || GET_CODE (recog_operand[i]) == PLUS))
2599             {
2600               INSN_CODE (insn) = -1;
2601               find_reloads (insn, replace, ind_levels, live_known,
2602                             reload_reg_p);
2603               return;
2604             }
2605
2606           substed_operand[i] = recog_operand[i] = *recog_operand_loc[i];
2607         }
2608       else if (code == MEM)
2609         {
2610           if (find_reloads_address (GET_MODE (recog_operand[i]),
2611                                     recog_operand_loc[i],
2612                                     XEXP (recog_operand[i], 0),
2613                                     &XEXP (recog_operand[i], 0),
2614                                     i, address_type[i], ind_levels, insn))
2615             address_reloaded[i] = 1;
2616           substed_operand[i] = recog_operand[i] = *recog_operand_loc[i];
2617         }
2618       else if (code == SUBREG)
2619         {
2620           rtx reg = SUBREG_REG (recog_operand[i]);
2621           rtx op
2622             = find_reloads_toplev (recog_operand[i], i, address_type[i],
2623                                    ind_levels,
2624                                    set != 0
2625                                    && &SET_DEST (set) == recog_operand_loc[i]);
2626
2627           /* If we made a MEM to load (a part of) the stackslot of a pseudo
2628              that didn't get a hard register, emit a USE with a REG_EQUAL
2629              note in front so that we might inherit a previous, possibly
2630              wider reload.  */
2631              
2632           if (GET_CODE (op) == MEM
2633               && GET_CODE (reg) == REG
2634               && (GET_MODE_SIZE (GET_MODE (reg))
2635                   >= GET_MODE_SIZE (GET_MODE (op))))
2636             REG_NOTES (emit_insn_before (gen_rtx_USE (VOIDmode, reg), insn))
2637               = gen_rtx_EXPR_LIST (REG_EQUAL,
2638                                    reg_equiv_memory_loc[REGNO (reg)], NULL_RTX);
2639
2640           substed_operand[i] = recog_operand[i] = *recog_operand_loc[i] = op;
2641         }
2642       else if (code == PLUS || GET_RTX_CLASS (code) == '1')
2643         /* We can get a PLUS as an "operand" as a result of register
2644            elimination.  See eliminate_regs and gen_reload.  We handle
2645            a unary operator by reloading the operand.  */
2646         substed_operand[i] = recog_operand[i] = *recog_operand_loc[i]
2647           = find_reloads_toplev (recog_operand[i], i, address_type[i],
2648                                  ind_levels, 0);
2649       else if (code == REG)
2650         {
2651           /* This is equivalent to calling find_reloads_toplev.
2652              The code is duplicated for speed.
2653              When we find a pseudo always equivalent to a constant,
2654              we replace it by the constant.  We must be sure, however,
2655              that we don't try to replace it in the insn in which it
2656              is being set.   */
2657           register int regno = REGNO (recog_operand[i]);
2658           if (reg_equiv_constant[regno] != 0
2659               && (set == 0 || &SET_DEST (set) != recog_operand_loc[i]))
2660             {
2661               /* Record the existing mode so that the check if constants are
2662                  allowed will work when operand_mode isn't specified. */
2663
2664               if (operand_mode[i] == VOIDmode)
2665                 operand_mode[i] = GET_MODE (recog_operand[i]);
2666
2667               substed_operand[i] = recog_operand[i]
2668                 = reg_equiv_constant[regno];
2669             }
2670 #if 0 /* This might screw code in reload1.c to delete prior output-reload
2671          that feeds this insn.  */
2672           if (reg_equiv_mem[regno] != 0)
2673             substed_operand[i] = recog_operand[i]
2674               = reg_equiv_mem[regno];
2675 #endif
2676           if (reg_equiv_address[regno] != 0)
2677             {
2678               /* If reg_equiv_address is not a constant address, copy it,
2679                  since it may be shared.  */
2680               /* We must rerun eliminate_regs, in case the elimination
2681                  offsets have changed.  */
2682               rtx address = XEXP (eliminate_regs (reg_equiv_memory_loc[regno],
2683                                                   0, NULL_RTX),
2684                                   0);
2685
2686               if (rtx_varies_p (address))
2687                 address = copy_rtx (address);
2688
2689               /* Emit a USE that shows what register is being used/modified.  */
2690               REG_NOTES (emit_insn_before (gen_rtx_USE (VOIDmode,
2691                                                         recog_operand[i]),
2692                                            insn))
2693                 = gen_rtx_EXPR_LIST (REG_EQUAL,
2694                                      reg_equiv_memory_loc[regno],
2695                                      NULL_RTX);
2696
2697               *recog_operand_loc[i] = recog_operand[i]
2698                 = gen_rtx_MEM (GET_MODE (recog_operand[i]), address);
2699               RTX_UNCHANGING_P (recog_operand[i])
2700                 = RTX_UNCHANGING_P (regno_reg_rtx[regno]);
2701               find_reloads_address (GET_MODE (recog_operand[i]),
2702                                     recog_operand_loc[i],
2703                                     XEXP (recog_operand[i], 0),
2704                                     &XEXP (recog_operand[i], 0),
2705                                     i, address_type[i], ind_levels, insn);
2706               substed_operand[i] = recog_operand[i] = *recog_operand_loc[i];
2707             }
2708         }
2709       /* If the operand is still a register (we didn't replace it with an
2710          equivalent), get the preferred class to reload it into.  */
2711       code = GET_CODE (recog_operand[i]);
2712       preferred_class[i]
2713         = ((code == REG && REGNO (recog_operand[i]) >= FIRST_PSEUDO_REGISTER)
2714            ? reg_preferred_class (REGNO (recog_operand[i])) : NO_REGS);
2715       pref_or_nothing[i]
2716         = (code == REG && REGNO (recog_operand[i]) >= FIRST_PSEUDO_REGISTER
2717            && reg_alternate_class (REGNO (recog_operand[i])) == NO_REGS);
2718     }
2719
2720   /* If this is simply a copy from operand 1 to operand 0, merge the
2721      preferred classes for the operands.  */
2722   if (set != 0 && noperands >= 2 && recog_operand[0] == SET_DEST (set)
2723       && recog_operand[1] == SET_SRC (set))
2724     {
2725       preferred_class[0] = preferred_class[1]
2726         = reg_class_subunion[(int) preferred_class[0]][(int) preferred_class[1]];
2727       pref_or_nothing[0] |= pref_or_nothing[1];
2728       pref_or_nothing[1] |= pref_or_nothing[0];
2729     }
2730
2731   /* Now see what we need for pseudo-regs that didn't get hard regs
2732      or got the wrong kind of hard reg.  For this, we must consider
2733      all the operands together against the register constraints.  */
2734
2735   best = MAX_RECOG_OPERANDS * 2 + 600;
2736
2737   swapped = 0;
2738   goal_alternative_swapped = 0;
2739  try_swapped:
2740
2741   /* The constraints are made of several alternatives.
2742      Each operand's constraint looks like foo,bar,... with commas
2743      separating the alternatives.  The first alternatives for all
2744      operands go together, the second alternatives go together, etc.
2745
2746      First loop over alternatives.  */
2747
2748   for (this_alternative_number = 0;
2749        this_alternative_number < n_alternatives;
2750        this_alternative_number++)
2751     {
2752       /* Loop over operands for one constraint alternative.  */
2753       /* LOSERS counts those that don't fit this alternative
2754          and would require loading.  */
2755       int losers = 0;
2756       /* BAD is set to 1 if it some operand can't fit this alternative
2757          even after reloading.  */
2758       int bad = 0;
2759       /* REJECT is a count of how undesirable this alternative says it is
2760          if any reloading is required.  If the alternative matches exactly
2761          then REJECT is ignored, but otherwise it gets this much
2762          counted against it in addition to the reloading needed.  Each 
2763          ? counts three times here since we want the disparaging caused by
2764          a bad register class to only count 1/3 as much.  */
2765       int reject = 0;
2766
2767       this_earlyclobber = 0;
2768
2769       for (i = 0; i < noperands; i++)
2770         {
2771           register char *p = constraints[i];
2772           register int win = 0;
2773           /* 0 => this operand can be reloaded somehow for this alternative */
2774           int badop = 1;
2775           /* 0 => this operand can be reloaded if the alternative allows regs.  */
2776           int winreg = 0;
2777           int c;
2778           register rtx operand = recog_operand[i];
2779           int offset = 0;
2780           /* Nonzero means this is a MEM that must be reloaded into a reg
2781              regardless of what the constraint says.  */
2782           int force_reload = 0;
2783           int offmemok = 0;
2784           /* Nonzero if a constant forced into memory would be OK for this
2785              operand.  */
2786           int constmemok = 0;
2787           int earlyclobber = 0;
2788
2789           /* If the predicate accepts a unary operator, it means that
2790              we need to reload the operand, but do not do this for
2791              match_operator and friends.  */
2792           if (GET_RTX_CLASS (GET_CODE (operand)) == '1' && *p != 0)
2793             operand = XEXP (operand, 0);
2794
2795           /* If the operand is a SUBREG, extract
2796              the REG or MEM (or maybe even a constant) within.
2797              (Constants can occur as a result of reg_equiv_constant.)  */
2798
2799           while (GET_CODE (operand) == SUBREG)
2800             {
2801               offset += SUBREG_WORD (operand);
2802               operand = SUBREG_REG (operand);
2803               /* Force reload if this is a constant or PLUS or if there may
2804                  be a problem accessing OPERAND in the outer mode.  */
2805               if (CONSTANT_P (operand)
2806                   || GET_CODE (operand) == PLUS
2807                   /* We must force a reload of paradoxical SUBREGs
2808                      of a MEM because the alignment of the inner value
2809                      may not be enough to do the outer reference.  On
2810                      big-endian machines, it may also reference outside
2811                      the object.
2812
2813                      On machines that extend byte operations and we have a
2814                      SUBREG where both the inner and outer modes are no wider
2815                      than a word and the inner mode is narrower, is integral,
2816                      and gets extended when loaded from memory, combine.c has
2817                      made assumptions about the behavior of the machine in such
2818                      register access.  If the data is, in fact, in memory we
2819                      must always load using the size assumed to be in the
2820                      register and let the insn do the different-sized 
2821                      accesses.
2822
2823                      This is doubly true if WORD_REGISTER_OPERATIONS.  In 
2824                      this case eliminate_regs has left non-paradoxical
2825                      subregs for push_reloads to see.  Make sure it does
2826                      by forcing the reload.
2827
2828                      ??? When is it right at this stage to have a subreg
2829                      of a mem that is _not_ to be handled specialy?  IMO
2830                      those should have been reduced to just a mem.  */
2831                   || ((GET_CODE (operand) == MEM
2832                        || (GET_CODE (operand)== REG
2833                            && REGNO (operand) >= FIRST_PSEUDO_REGISTER))
2834 #ifndef WORD_REGISTER_OPERATIONS
2835                       && (((GET_MODE_BITSIZE (GET_MODE (operand))
2836                             < BIGGEST_ALIGNMENT)
2837                            && (GET_MODE_SIZE (operand_mode[i])
2838                                > GET_MODE_SIZE (GET_MODE (operand))))
2839                           || (GET_CODE (operand) == MEM && BYTES_BIG_ENDIAN)
2840 #ifdef LOAD_EXTEND_OP
2841                           || (GET_MODE_SIZE (operand_mode[i]) <= UNITS_PER_WORD
2842                               && (GET_MODE_SIZE (GET_MODE (operand))
2843                                   <= UNITS_PER_WORD)
2844                               && (GET_MODE_SIZE (operand_mode[i])
2845                                   > GET_MODE_SIZE (GET_MODE (operand)))
2846                               && INTEGRAL_MODE_P (GET_MODE (operand))
2847                               && LOAD_EXTEND_OP (GET_MODE (operand)) != NIL)
2848 #endif
2849                           )
2850 #endif
2851                       )
2852                   /* Subreg of a hard reg which can't handle the subreg's mode
2853                      or which would handle that mode in the wrong number of
2854                      registers for subregging to work.  */
2855                   || (GET_CODE (operand) == REG
2856                       && REGNO (operand) < FIRST_PSEUDO_REGISTER
2857                       && ((GET_MODE_SIZE (operand_mode[i]) <= UNITS_PER_WORD
2858                            && (GET_MODE_SIZE (GET_MODE (operand))
2859                                > UNITS_PER_WORD)
2860                            && ((GET_MODE_SIZE (GET_MODE (operand))
2861                                 / UNITS_PER_WORD)
2862                                != HARD_REGNO_NREGS (REGNO (operand),
2863                                                     GET_MODE (operand))))
2864                           || ! HARD_REGNO_MODE_OK (REGNO (operand) + offset,
2865                                                    operand_mode[i]))))
2866                 force_reload = 1;
2867             }
2868
2869           this_alternative[i] = (int) NO_REGS;
2870           this_alternative_win[i] = 0;
2871           this_alternative_offmemok[i] = 0;
2872           this_alternative_earlyclobber[i] = 0;
2873           this_alternative_matches[i] = -1;
2874
2875           /* An empty constraint or empty alternative
2876              allows anything which matched the pattern.  */
2877           if (*p == 0 || *p == ',')
2878             win = 1, badop = 0;
2879
2880           /* Scan this alternative's specs for this operand;
2881              set WIN if the operand fits any letter in this alternative.
2882              Otherwise, clear BADOP if this operand could
2883              fit some letter after reloads,
2884              or set WINREG if this operand could fit after reloads
2885              provided the constraint allows some registers.  */
2886
2887           while (*p && (c = *p++) != ',')
2888             switch (c)
2889               {
2890               case '=':
2891               case '+':
2892               case '*':
2893                 break;
2894
2895               case '%':
2896                 /* The last operand should not be marked commutative.  */
2897                 if (i != noperands - 1)
2898                   commutative = i;
2899                 break;
2900
2901               case '?':
2902                 reject += 6;
2903                 break;
2904
2905               case '!':
2906                 reject = 600;
2907                 break;
2908
2909               case '#':
2910                 /* Ignore rest of this alternative as far as
2911                    reloading is concerned.  */
2912                 while (*p && *p != ',') p++;
2913                 break;
2914
2915               case '0':
2916               case '1':
2917               case '2':
2918               case '3':
2919               case '4':
2920                 c -= '0';
2921                 this_alternative_matches[i] = c;
2922                 /* We are supposed to match a previous operand.
2923                    If we do, we win if that one did.
2924                    If we do not, count both of the operands as losers.
2925                    (This is too conservative, since most of the time
2926                    only a single reload insn will be needed to make
2927                    the two operands win.  As a result, this alternative
2928                    may be rejected when it is actually desirable.)  */
2929                 if ((swapped && (c != commutative || i != commutative + 1))
2930                     /* If we are matching as if two operands were swapped,
2931                        also pretend that operands_match had been computed
2932                        with swapped.
2933                        But if I is the second of those and C is the first,
2934                        don't exchange them, because operands_match is valid
2935                        only on one side of its diagonal.  */
2936                     ? (operands_match
2937                         [(c == commutative || c == commutative + 1)
2938                          ? 2*commutative + 1 - c : c]
2939                         [(i == commutative || i == commutative + 1)
2940                          ? 2*commutative + 1 - i : i])
2941                     : operands_match[c][i])
2942                   {
2943                     /* If we are matching a non-offsettable address where an
2944                        offsettable address was expected, then we must reject
2945                        this combination, because we can't reload it.  */
2946                     if (this_alternative_offmemok[c]
2947                         && GET_CODE (recog_operand[c]) == MEM
2948                         && this_alternative[c] == (int) NO_REGS
2949                         && ! this_alternative_win[c])
2950                       bad = 1;
2951
2952                     win = this_alternative_win[c];
2953                   }
2954                 else
2955                   {
2956                     /* Operands don't match.  */
2957                     rtx value;
2958                     /* Retroactively mark the operand we had to match
2959                        as a loser, if it wasn't already.  */
2960                     if (this_alternative_win[c])
2961                       losers++;
2962                     this_alternative_win[c] = 0;
2963                     if (this_alternative[c] == (int) NO_REGS)
2964                       bad = 1;
2965                     /* But count the pair only once in the total badness of
2966                        this alternative, if the pair can be a dummy reload.  */
2967                     value
2968                       = find_dummy_reload (recog_operand[i], recog_operand[c],
2969                                            recog_operand_loc[i], recog_operand_loc[c],
2970                                            operand_mode[i], operand_mode[c],
2971                                            this_alternative[c], -1,
2972                                            this_alternative_earlyclobber[c]);
2973
2974                     if (value != 0)
2975                       losers--;
2976                   }
2977                 /* This can be fixed with reloads if the operand
2978                    we are supposed to match can be fixed with reloads.  */
2979                 badop = 0;
2980                 this_alternative[i] = this_alternative[c];
2981
2982                 /* If we have to reload this operand and some previous
2983                    operand also had to match the same thing as this
2984                    operand, we don't know how to do that.  So reject this
2985                    alternative.  */
2986                 if (! win || force_reload)
2987                   for (j = 0; j < i; j++)
2988                     if (this_alternative_matches[j]
2989                         == this_alternative_matches[i])
2990                       badop = 1;
2991
2992                 break;
2993
2994               case 'p':
2995                 /* All necessary reloads for an address_operand
2996                    were handled in find_reloads_address.  */
2997                 this_alternative[i] = (int) BASE_REG_CLASS;
2998                 win = 1;
2999                 break;
3000
3001               case 'm':
3002                 if (force_reload)
3003                   break;
3004                 if (GET_CODE (operand) == MEM
3005                     || (GET_CODE (operand) == REG
3006                         && REGNO (operand) >= FIRST_PSEUDO_REGISTER
3007                         && reg_renumber[REGNO (operand)] < 0))
3008                   win = 1;
3009                 if (CONSTANT_P (operand)
3010                     /* force_const_mem does not accept HIGH.  */
3011                     && GET_CODE (operand) != HIGH)
3012                   badop = 0;
3013                 constmemok = 1;
3014                 break;
3015
3016               case '<':
3017                 if (GET_CODE (operand) == MEM
3018                     && ! address_reloaded[i]
3019                     && (GET_CODE (XEXP (operand, 0)) == PRE_DEC
3020                         || GET_CODE (XEXP (operand, 0)) == POST_DEC))
3021                   win = 1;
3022                 break;
3023
3024               case '>':
3025                 if (GET_CODE (operand) == MEM
3026                     && ! address_reloaded[i]
3027                     && (GET_CODE (XEXP (operand, 0)) == PRE_INC
3028                         || GET_CODE (XEXP (operand, 0)) == POST_INC))
3029                   win = 1;
3030                 break;
3031
3032                 /* Memory operand whose address is not offsettable.  */
3033               case 'V':
3034                 if (force_reload)
3035                   break;
3036                 if (GET_CODE (operand) == MEM
3037                     && ! (ind_levels ? offsettable_memref_p (operand)
3038                           : offsettable_nonstrict_memref_p (operand))
3039                     /* Certain mem addresses will become offsettable
3040                        after they themselves are reloaded.  This is important;
3041                        we don't want our own handling of unoffsettables
3042                        to override the handling of reg_equiv_address.  */
3043                     && !(GET_CODE (XEXP (operand, 0)) == REG
3044                          && (ind_levels == 0
3045                              || reg_equiv_address[REGNO (XEXP (operand, 0))] != 0)))
3046                   win = 1;
3047                 break;
3048
3049                 /* Memory operand whose address is offsettable.  */
3050               case 'o':
3051                 if (force_reload)
3052                   break;
3053                 if ((GET_CODE (operand) == MEM
3054                      /* If IND_LEVELS, find_reloads_address won't reload a
3055                         pseudo that didn't get a hard reg, so we have to
3056                         reject that case.  */
3057                      && (ind_levels ? offsettable_memref_p (operand)
3058                          : offsettable_nonstrict_memref_p (operand)))
3059                     /* A reloaded auto-increment address is offsettable,
3060                        because it is now just a simple register indirect.  */
3061                     || (GET_CODE (operand) == MEM
3062                         && address_reloaded[i]
3063                         && (GET_CODE (XEXP (operand, 0)) == PRE_INC
3064                             || GET_CODE (XEXP (operand, 0)) == PRE_DEC
3065                             || GET_CODE (XEXP (operand, 0)) == POST_INC
3066                             || GET_CODE (XEXP (operand, 0)) == POST_DEC))
3067                     /* Certain mem addresses will become offsettable
3068                        after they themselves are reloaded.  This is important;
3069                        we don't want our own handling of unoffsettables
3070                        to override the handling of reg_equiv_address.  */
3071                     || (GET_CODE (operand) == MEM
3072                         && GET_CODE (XEXP (operand, 0)) == REG
3073                         && (ind_levels == 0
3074                             || reg_equiv_address[REGNO (XEXP (operand, 0))] != 0))
3075                     || (GET_CODE (operand) == REG
3076                         && REGNO (operand) >= FIRST_PSEUDO_REGISTER
3077                         && reg_renumber[REGNO (operand)] < 0
3078                         /* If reg_equiv_address is nonzero, we will be
3079                            loading it into a register; hence it will be
3080                            offsettable, but we cannot say that reg_equiv_mem
3081                            is offsettable without checking.  */
3082                         && ((reg_equiv_mem[REGNO (operand)] != 0
3083                              && offsettable_memref_p (reg_equiv_mem[REGNO (operand)]))
3084                             || (reg_equiv_address[REGNO (operand)] != 0))))
3085                   win = 1;
3086                 /* force_const_mem does not accept HIGH.  */
3087                 if ((CONSTANT_P (operand) && GET_CODE (operand) != HIGH)
3088                     || GET_CODE (operand) == MEM)
3089                   badop = 0;
3090                 constmemok = 1;
3091                 offmemok = 1;
3092                 break;
3093
3094               case '&':
3095                 /* Output operand that is stored before the need for the
3096                    input operands (and their index registers) is over.  */
3097                 earlyclobber = 1, this_earlyclobber = 1;
3098                 break;
3099
3100               case 'E':
3101 #ifndef REAL_ARITHMETIC
3102                 /* Match any floating double constant, but only if
3103                    we can examine the bits of it reliably.  */
3104                 if ((HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
3105                      || HOST_BITS_PER_WIDE_INT != BITS_PER_WORD)
3106                     && GET_MODE (operand) != VOIDmode && ! flag_pretend_float)
3107                   break;
3108 #endif
3109                 if (GET_CODE (operand) == CONST_DOUBLE)
3110                   win = 1;
3111                 break;
3112
3113               case 'F':
3114                 if (GET_CODE (operand) == CONST_DOUBLE)
3115                   win = 1;
3116                 break;
3117
3118               case 'G':
3119               case 'H':
3120                 if (GET_CODE (operand) == CONST_DOUBLE
3121                     && CONST_DOUBLE_OK_FOR_LETTER_P (operand, c))
3122                   win = 1;
3123                 break;
3124
3125               case 's':
3126                 if (GET_CODE (operand) == CONST_INT
3127                     || (GET_CODE (operand) == CONST_DOUBLE
3128                         && GET_MODE (operand) == VOIDmode))
3129                   break;
3130               case 'i':
3131                 if (CONSTANT_P (operand)
3132 #ifdef LEGITIMATE_PIC_OPERAND_P
3133                     && (! flag_pic || LEGITIMATE_PIC_OPERAND_P (operand))
3134 #endif
3135                     )
3136                   win = 1;
3137                 break;
3138
3139               case 'n':
3140                 if (GET_CODE (operand) == CONST_INT
3141                     || (GET_CODE (operand) == CONST_DOUBLE
3142                         && GET_MODE (operand) == VOIDmode))
3143                   win = 1;
3144                 break;
3145
3146               case 'I':
3147               case 'J':
3148               case 'K':
3149               case 'L':
3150               case 'M':
3151               case 'N':
3152               case 'O':
3153               case 'P':
3154                 if (GET_CODE (operand) == CONST_INT
3155                     && CONST_OK_FOR_LETTER_P (INTVAL (operand), c))
3156                   win = 1;
3157                 break;
3158
3159               case 'X':
3160                 win = 1;
3161                 break;
3162
3163               case 'g':
3164                 if (! force_reload
3165                     /* A PLUS is never a valid operand, but reload can make
3166                        it from a register when eliminating registers.  */
3167                     && GET_CODE (operand) != PLUS
3168                     /* A SCRATCH is not a valid operand.  */
3169                     && GET_CODE (operand) != SCRATCH
3170 #ifdef LEGITIMATE_PIC_OPERAND_P
3171                     && (! CONSTANT_P (operand) 
3172                         || ! flag_pic 
3173                         || LEGITIMATE_PIC_OPERAND_P (operand))
3174 #endif
3175                     && (GENERAL_REGS == ALL_REGS
3176                         || GET_CODE (operand) != REG
3177                         || (REGNO (operand) >= FIRST_PSEUDO_REGISTER
3178                             && reg_renumber[REGNO (operand)] < 0)))
3179                   win = 1;
3180                 /* Drop through into 'r' case */
3181
3182               case 'r':
3183                 this_alternative[i]
3184                   = (int) reg_class_subunion[this_alternative[i]][(int) GENERAL_REGS];
3185                 goto reg;
3186
3187 #ifdef EXTRA_CONSTRAINT
3188               case 'Q':
3189               case 'R':
3190               case 'S':
3191               case 'T':
3192               case 'U':
3193                 if (EXTRA_CONSTRAINT (operand, c))
3194                   win = 1;
3195                 break;
3196 #endif
3197   
3198               default:
3199                 this_alternative[i]
3200                   = (int) reg_class_subunion[this_alternative[i]][(int) REG_CLASS_FROM_LETTER (c)];
3201                 
3202               reg:
3203                 if (GET_MODE (operand) == BLKmode)
3204                   break;
3205                 winreg = 1;
3206                 if (GET_CODE (operand) == REG
3207                     && reg_fits_class_p (operand, this_alternative[i],
3208                                          offset, GET_MODE (recog_operand[i])))
3209                   win = 1;
3210                 break;
3211               }
3212
3213           constraints[i] = p;
3214
3215           /* If this operand could be handled with a reg,
3216              and some reg is allowed, then this operand can be handled.  */
3217           if (winreg && this_alternative[i] != (int) NO_REGS)
3218             badop = 0;
3219
3220           /* Record which operands fit this alternative.  */
3221           this_alternative_earlyclobber[i] = earlyclobber;
3222           if (win && ! force_reload)
3223             this_alternative_win[i] = 1;
3224           else
3225             {
3226               int const_to_mem = 0;
3227
3228               this_alternative_offmemok[i] = offmemok;
3229               losers++;
3230               if (badop)
3231                 bad = 1;
3232               /* Alternative loses if it has no regs for a reg operand.  */
3233               if (GET_CODE (operand) == REG
3234                   && this_alternative[i] == (int) NO_REGS
3235                   && this_alternative_matches[i] < 0)
3236                 bad = 1;
3237
3238 #if 0
3239               /* If this is a pseudo-register that is set in the previous
3240                  insns, there's a good chance that it will already be in a
3241                  spill register and we can use that spill register.  So
3242                  make this case cheaper. 
3243
3244                  Disabled for egcs.  egcs has better inheritance code and
3245                  this change causes problems with the improved reload
3246                  inheritance code.  */
3247               if (GET_CODE (operand) == REG
3248                   && REGNO (operand) >= FIRST_PSEUDO_REGISTER
3249                   && REGNO (operand) == last_output_reload_regno)
3250                 reject--;
3251 #endif
3252
3253               /* If this is a constant that is reloaded into the desired
3254                  class by copying it to memory first, count that as another
3255                  reload.  This is consistent with other code and is
3256                  required to avoid choosing another alternative when
3257                  the constant is moved into memory by this function on
3258                  an early reload pass.  Note that the test here is 
3259                  precisely the same as in the code below that calls
3260                  force_const_mem.  */
3261               if (CONSTANT_P (operand)
3262                   /* force_const_mem does not accept HIGH.  */
3263                   && GET_CODE (operand) != HIGH
3264                   && ((PREFERRED_RELOAD_CLASS (operand,
3265                                               (enum reg_class) this_alternative[i])
3266                        == NO_REGS)
3267                       || no_input_reloads)
3268                   && operand_mode[i] != VOIDmode)
3269                 {
3270                   const_to_mem = 1;
3271                   if (this_alternative[i] != (int) NO_REGS)
3272                     losers++;
3273                 }
3274
3275               /* If we can't reload this value at all, reject this
3276                  alternative.  Note that we could also lose due to
3277                  LIMIT_RELOAD_RELOAD_CLASS, but we don't check that
3278                  here.  */
3279
3280               if (! CONSTANT_P (operand)
3281                   && (enum reg_class) this_alternative[i] != NO_REGS
3282                   && (PREFERRED_RELOAD_CLASS (operand,
3283                                               (enum reg_class) this_alternative[i])
3284                       == NO_REGS))
3285                 bad = 1;
3286
3287               /* Alternative loses if it requires a type of reload not
3288                  permitted for this insn.  We can always reload SCRATCH
3289                  and objects with a REG_UNUSED note.  */
3290               else if (GET_CODE (operand) != SCRATCH
3291                   && modified[i] != RELOAD_READ && no_output_reloads
3292                   && ! find_reg_note (insn, REG_UNUSED, operand))
3293                 bad = 1;
3294               else if (modified[i] != RELOAD_WRITE && no_input_reloads
3295                        && ! const_to_mem)
3296                 bad = 1;
3297
3298
3299               /* We prefer to reload pseudos over reloading other things,
3300                  since such reloads may be able to be eliminated later.
3301                  If we are reloading a SCRATCH, we won't be generating any
3302                  insns, just using a register, so it is also preferred. 
3303                  So bump REJECT in other cases.  Don't do this in the
3304                  case where we are forcing a constant into memory and
3305                  it will then win since we don't want to have a different
3306                  alternative match then.  */
3307               if (! (GET_CODE (operand) == REG
3308                      && REGNO (operand) >= FIRST_PSEUDO_REGISTER)
3309                   && GET_CODE (operand) != SCRATCH
3310                   && ! (const_to_mem && constmemok))
3311                 reject += 2;
3312
3313               /* Input reloads can be inherited more often than output
3314                  reloads can be removed, so penalize output reloads.  */
3315               if (operand_type[i] != RELOAD_FOR_INPUT
3316                   && GET_CODE (operand) != SCRATCH)
3317                 reject++;
3318             }
3319
3320           /* If this operand is a pseudo register that didn't get a hard 
3321              reg and this alternative accepts some register, see if the
3322              class that we want is a subset of the preferred class for this
3323              register.  If not, but it intersects that class, use the
3324              preferred class instead.  If it does not intersect the preferred
3325              class, show that usage of this alternative should be discouraged;
3326              it will be discouraged more still if the register is `preferred
3327              or nothing'.  We do this because it increases the chance of
3328              reusing our spill register in a later insn and avoiding a pair
3329              of memory stores and loads.
3330
3331              Don't bother with this if this alternative will accept this
3332              operand.
3333
3334              Don't do this for a multiword operand, since it is only a
3335              small win and has the risk of requiring more spill registers,
3336              which could cause a large loss.
3337
3338              Don't do this if the preferred class has only one register
3339              because we might otherwise exhaust the class.  */
3340
3341
3342           if (! win && this_alternative[i] != (int) NO_REGS
3343               && GET_MODE_SIZE (operand_mode[i]) <= UNITS_PER_WORD
3344               && reg_class_size[(int) preferred_class[i]] > 1)
3345             {
3346               if (! reg_class_subset_p (this_alternative[i],
3347                                         preferred_class[i]))
3348                 {
3349                   /* Since we don't have a way of forming the intersection,
3350                      we just do something special if the preferred class
3351                      is a subset of the class we have; that's the most 
3352                      common case anyway.  */
3353                   if (reg_class_subset_p (preferred_class[i],
3354                                           this_alternative[i]))
3355                     this_alternative[i] = (int) preferred_class[i];
3356                   else
3357                     reject += (2 + 2 * pref_or_nothing[i]);
3358                 }
3359             }
3360         }
3361
3362       /* Now see if any output operands that are marked "earlyclobber"
3363          in this alternative conflict with any input operands
3364          or any memory addresses.  */
3365
3366       for (i = 0; i < noperands; i++)
3367         if (this_alternative_earlyclobber[i]
3368             && this_alternative_win[i])
3369           {
3370             struct decomposition early_data; 
3371
3372             early_data = decompose (recog_operand[i]);
3373
3374             if (modified[i] == RELOAD_READ)
3375               {
3376                 if (this_insn_is_asm)
3377                   warning_for_asm (this_insn,
3378                                    "`&' constraint used with input operand");
3379                 else
3380                   abort ();
3381                 continue;
3382               }
3383             
3384             if (this_alternative[i] == NO_REGS)
3385               {
3386                 this_alternative_earlyclobber[i] = 0;
3387                 if (this_insn_is_asm)
3388                   error_for_asm (this_insn,
3389                                  "`&' constraint used with no register class");
3390                 else
3391                   abort ();
3392               }
3393
3394             for (j = 0; j < noperands; j++)
3395               /* Is this an input operand or a memory ref?  */
3396               if ((GET_CODE (recog_operand[j]) == MEM
3397                    || modified[j] != RELOAD_WRITE)
3398                   && j != i
3399                   /* Ignore things like match_operator operands.  */
3400                   && *constraints1[j] != 0
3401                   /* Don't count an input operand that is constrained to match
3402                      the early clobber operand.  */
3403                   && ! (this_alternative_matches[j] == i
3404                         && rtx_equal_p (recog_operand[i], recog_operand[j]))
3405                   /* Is it altered by storing the earlyclobber operand?  */
3406                   && !immune_p (recog_operand[j], recog_operand[i], early_data))
3407                 {
3408                   /* If the output is in a single-reg class,
3409                      it's costly to reload it, so reload the input instead.  */
3410                   if (reg_class_size[this_alternative[i]] == 1
3411                       && (GET_CODE (recog_operand[j]) == REG
3412                           || GET_CODE (recog_operand[j]) == SUBREG))
3413                     {
3414                       losers++;
3415                       this_alternative_win[j] = 0;
3416                     }
3417                   else
3418                     break;
3419                 }
3420             /* If an earlyclobber operand conflicts with something,
3421                it must be reloaded, so request this and count the cost.  */
3422             if (j != noperands)
3423               {
3424                 losers++;
3425                 this_alternative_win[i] = 0;
3426                 for (j = 0; j < noperands; j++)
3427                   if (this_alternative_matches[j] == i
3428                       && this_alternative_win[j])
3429                     {
3430                       this_alternative_win[j] = 0;
3431                       losers++;
3432                     }
3433               }
3434           }
3435
3436       /* If one alternative accepts all the operands, no reload required,
3437          choose that alternative; don't consider the remaining ones.  */
3438       if (losers == 0)
3439         {
3440           /* Unswap these so that they are never swapped at `finish'.  */
3441           if (commutative >= 0)
3442             {
3443               recog_operand[commutative] = substed_operand[commutative];
3444               recog_operand[commutative + 1]
3445                 = substed_operand[commutative + 1];
3446             }
3447           for (i = 0; i < noperands; i++)
3448             {
3449               goal_alternative_win[i] = 1;
3450               goal_alternative[i] = this_alternative[i];
3451               goal_alternative_offmemok[i] = this_alternative_offmemok[i];
3452               goal_alternative_matches[i] = this_alternative_matches[i];
3453               goal_alternative_earlyclobber[i]
3454                 = this_alternative_earlyclobber[i];
3455             }
3456           goal_alternative_number = this_alternative_number;
3457           goal_alternative_swapped = swapped;
3458           goal_earlyclobber = this_earlyclobber;
3459           goto finish;
3460         }
3461
3462       /* REJECT, set by the ! and ? constraint characters and when a register
3463          would be reloaded into a non-preferred class, discourages the use of
3464          this alternative for a reload goal.  REJECT is incremented by six
3465          for each ? and two for each non-preferred class.  */
3466       losers = losers * 6 + reject;
3467
3468       /* If this alternative can be made to work by reloading,
3469          and it needs less reloading than the others checked so far,
3470          record it as the chosen goal for reloading.  */
3471       if (! bad && best > losers)
3472         {
3473           for (i = 0; i < noperands; i++)
3474             {
3475               goal_alternative[i] = this_alternative[i];
3476               goal_alternative_win[i] = this_alternative_win[i];
3477               goal_alternative_offmemok[i] = this_alternative_offmemok[i];
3478               goal_alternative_matches[i] = this_alternative_matches[i];
3479               goal_alternative_earlyclobber[i]
3480                 = this_alternative_earlyclobber[i];
3481             }
3482           goal_alternative_swapped = swapped;
3483           best = losers;
3484           goal_alternative_number = this_alternative_number;
3485           goal_earlyclobber = this_earlyclobber;
3486         }
3487     }
3488
3489   /* If insn is commutative (it's safe to exchange a certain pair of operands)
3490      then we need to try each alternative twice,
3491      the second time matching those two operands
3492      as if we had exchanged them.
3493      To do this, really exchange them in operands.
3494
3495      If we have just tried the alternatives the second time,
3496      return operands to normal and drop through.  */
3497
3498   if (commutative >= 0)
3499     {
3500       swapped = !swapped;
3501       if (swapped)
3502         {
3503           register enum reg_class tclass;
3504           register int t;
3505
3506           recog_operand[commutative] = substed_operand[commutative + 1];
3507           recog_operand[commutative + 1] = substed_operand[commutative];
3508
3509           tclass = preferred_class[commutative];
3510           preferred_class[commutative] = preferred_class[commutative + 1];
3511           preferred_class[commutative + 1] = tclass;
3512
3513           t = pref_or_nothing[commutative];
3514           pref_or_nothing[commutative] = pref_or_nothing[commutative + 1];
3515           pref_or_nothing[commutative + 1] = t;
3516
3517           bcopy ((char *) constraints1, (char *) constraints,
3518                  noperands * sizeof (char *));
3519           goto try_swapped;
3520         }
3521       else
3522         {
3523           recog_operand[commutative] = substed_operand[commutative];
3524           recog_operand[commutative + 1] = substed_operand[commutative + 1];
3525         }
3526     }
3527
3528   /* The operands don't meet the constraints.
3529      goal_alternative describes the alternative
3530      that we could reach by reloading the fewest operands.
3531      Reload so as to fit it.  */
3532
3533   if (best == MAX_RECOG_OPERANDS * 2 + 600)
3534     {
3535       /* No alternative works with reloads??  */
3536       if (insn_code_number >= 0)
3537         abort ();
3538       error_for_asm (insn, "inconsistent operand constraints in an `asm'");
3539       /* Avoid further trouble with this insn.  */
3540       PATTERN (insn) = gen_rtx_USE (VOIDmode, const0_rtx);
3541       n_reloads = 0;
3542       return;
3543     }
3544
3545   /* Jump to `finish' from above if all operands are valid already.
3546      In that case, goal_alternative_win is all 1.  */
3547  finish:
3548
3549   /* Right now, for any pair of operands I and J that are required to match,
3550      with I < J,
3551      goal_alternative_matches[J] is I.
3552      Set up goal_alternative_matched as the inverse function:
3553      goal_alternative_matched[I] = J.  */
3554
3555   for (i = 0; i < noperands; i++)
3556     goal_alternative_matched[i] = -1;
3557
3558   for (i = 0; i < noperands; i++)
3559     if (! goal_alternative_win[i]
3560         && goal_alternative_matches[i] >= 0)
3561       goal_alternative_matched[goal_alternative_matches[i]] = i;
3562
3563   /* If the best alternative is with operands 1 and 2 swapped,
3564      consider them swapped before reporting the reloads.  Update the
3565      operand numbers of any reloads already pushed.  */
3566
3567   if (goal_alternative_swapped)
3568     {
3569       register rtx tem;
3570
3571       tem = substed_operand[commutative];
3572       substed_operand[commutative] = substed_operand[commutative + 1];
3573       substed_operand[commutative + 1] = tem;
3574       tem = recog_operand[commutative];
3575       recog_operand[commutative] = recog_operand[commutative + 1];
3576       recog_operand[commutative + 1] = tem;
3577
3578       for (i = 0; i < n_reloads; i++)
3579         {
3580           if (reload_opnum[i] == commutative)
3581             reload_opnum[i] = commutative + 1;
3582           else if (reload_opnum[i] == commutative + 1)
3583             reload_opnum[i] = commutative;
3584         }
3585     }
3586
3587   /* Perform whatever substitutions on the operands we are supposed
3588      to make due to commutativity or replacement of registers
3589      with equivalent constants or memory slots.  */
3590
3591   for (i = 0; i < noperands; i++)
3592     {
3593       *recog_operand_loc[i] = substed_operand[i];
3594       /* While we are looping on operands, initialize this.  */
3595       operand_reloadnum[i] = -1;
3596
3597       /* If this is an earlyclobber operand, we need to widen the scope.
3598          The reload must remain valid from the start of the insn being
3599          reloaded until after the operand is stored into its destination.
3600          We approximate this with RELOAD_OTHER even though we know that we
3601          do not conflict with RELOAD_FOR_INPUT_ADDRESS reloads.
3602
3603          One special case that is worth checking is when we have an
3604          output that is earlyclobber but isn't used past the insn (typically
3605          a SCRATCH).  In this case, we only need have the reload live 
3606          through the insn itself, but not for any of our input or output
3607          reloads. 
3608          But we must not accidentally narrow the scope of an existing
3609          RELOAD_OTHER reload - leave these alone.
3610
3611          In any case, anything needed to address this operand can remain
3612          however they were previously categorized.  */
3613
3614       if (goal_alternative_earlyclobber[i] && operand_type[i] != RELOAD_OTHER)
3615         operand_type[i]
3616           = (find_reg_note (insn, REG_UNUSED, recog_operand[i])
3617              ? RELOAD_FOR_INSN : RELOAD_OTHER);
3618     }
3619
3620   /* Any constants that aren't allowed and can't be reloaded
3621      into registers are here changed into memory references.  */
3622   for (i = 0; i < noperands; i++)
3623     if (! goal_alternative_win[i]
3624         && CONSTANT_P (recog_operand[i])
3625         /* force_const_mem does not accept HIGH.  */
3626         && GET_CODE (recog_operand[i]) != HIGH
3627         && ((PREFERRED_RELOAD_CLASS (recog_operand[i],
3628                                     (enum reg_class) goal_alternative[i])
3629              == NO_REGS)
3630             || no_input_reloads)
3631         && operand_mode[i] != VOIDmode)
3632       {
3633         *recog_operand_loc[i] = recog_operand[i]
3634           = find_reloads_toplev (force_const_mem (operand_mode[i],
3635                                                   recog_operand[i]),
3636                                  i, address_type[i], ind_levels, 0);
3637         if (alternative_allows_memconst (constraints1[i],
3638                                          goal_alternative_number))
3639           goal_alternative_win[i] = 1;
3640       }
3641
3642   /* Record the values of the earlyclobber operands for the caller.  */
3643   if (goal_earlyclobber)
3644     for (i = 0; i < noperands; i++)
3645       if (goal_alternative_earlyclobber[i])
3646         reload_earlyclobbers[n_earlyclobbers++] = recog_operand[i];
3647
3648   /* Now record reloads for all the operands that need them.  */
3649   last_output_reload_regno = -1;
3650   for (i = 0; i < noperands; i++)
3651     if (! goal_alternative_win[i])
3652       {
3653         /* Operands that match previous ones have already been handled.  */
3654         if (goal_alternative_matches[i] >= 0)
3655           ;
3656         /* Handle an operand with a nonoffsettable address
3657            appearing where an offsettable address will do
3658            by reloading the address into a base register.
3659
3660            ??? We can also do this when the operand is a register and
3661            reg_equiv_mem is not offsettable, but this is a bit tricky,
3662            so we don't bother with it.  It may not be worth doing.  */
3663         else if (goal_alternative_matched[i] == -1
3664                  && goal_alternative_offmemok[i]
3665                  && GET_CODE (recog_operand[i]) == MEM)
3666           {
3667             operand_reloadnum[i]
3668               = push_reload (XEXP (recog_operand[i], 0), NULL_RTX,
3669                              &XEXP (recog_operand[i], 0), NULL_PTR,
3670                              BASE_REG_CLASS, GET_MODE (XEXP (recog_operand[i], 0)),
3671                              VOIDmode, 0, 0, i, RELOAD_FOR_INPUT);
3672             reload_inc[operand_reloadnum[i]]
3673               = GET_MODE_SIZE (GET_MODE (recog_operand[i]));
3674
3675             /* If this operand is an output, we will have made any
3676                reloads for its address as RELOAD_FOR_OUTPUT_ADDRESS, but
3677                now we are treating part of the operand as an input, so
3678                we must change these to RELOAD_FOR_INPUT_ADDRESS.  */
3679
3680             if (modified[i] == RELOAD_WRITE)
3681               {
3682                 for (j = 0; j < n_reloads; j++)
3683                   {
3684                     if (reload_opnum[j] == i)
3685                       {
3686                         if (reload_when_needed[j] == RELOAD_FOR_OUTPUT_ADDRESS)
3687                           reload_when_needed[j] = RELOAD_FOR_INPUT_ADDRESS;
3688                         else if (reload_when_needed[j]
3689                                  == RELOAD_FOR_OUTADDR_ADDRESS)
3690                           reload_when_needed[j] = RELOAD_FOR_INPADDR_ADDRESS;
3691                       }
3692                   }
3693               }
3694           }
3695         else if (goal_alternative_matched[i] == -1)
3696           {
3697             operand_reloadnum[i]
3698               = push_reload ((modified[i] != RELOAD_WRITE
3699                               ? recog_operand[i] : 0),
3700                              modified[i] != RELOAD_READ ? recog_operand[i] : 0,
3701                              (modified[i] != RELOAD_WRITE
3702                               ? recog_operand_loc[i] : 0),
3703                              (modified[i] != RELOAD_READ
3704                               ? recog_operand_loc[i] : 0),
3705                              (enum reg_class) goal_alternative[i],
3706                              (modified[i] == RELOAD_WRITE
3707                               ? VOIDmode : operand_mode[i]),
3708                              (modified[i] == RELOAD_READ
3709                               ? VOIDmode : operand_mode[i]),
3710                              (insn_code_number < 0 ? 0
3711                               : insn_operand_strict_low[insn_code_number][i]),
3712                              0, i, operand_type[i]);
3713             if (modified[i] != RELOAD_READ
3714                 && GET_CODE (recog_operand[i]) == REG)
3715               last_output_reload_regno = REGNO (recog_operand[i]);
3716           }
3717         /* In a matching pair of operands, one must be input only
3718            and the other must be output only.
3719            Pass the input operand as IN and the other as OUT.  */
3720         else if (modified[i] == RELOAD_READ
3721                  && modified[goal_alternative_matched[i]] == RELOAD_WRITE)
3722           {
3723             operand_reloadnum[i]
3724               = push_reload (recog_operand[i],
3725                              recog_operand[goal_alternative_matched[i]],
3726                              recog_operand_loc[i],
3727                              recog_operand_loc[goal_alternative_matched[i]],
3728                              (enum reg_class) goal_alternative[i],
3729                              operand_mode[i],
3730                              operand_mode[goal_alternative_matched[i]],
3731                              0, 0, i, RELOAD_OTHER);
3732             operand_reloadnum[goal_alternative_matched[i]] = output_reloadnum;
3733             if (GET_CODE (recog_operand[goal_alternative_matched[i]]) == REG)
3734               last_output_reload_regno
3735                 = REGNO (recog_operand[goal_alternative_matched[i]]);
3736           }
3737         else if (modified[i] == RELOAD_WRITE
3738                  && modified[goal_alternative_matched[i]] == RELOAD_READ)
3739           {
3740             operand_reloadnum[goal_alternative_matched[i]]
3741               = push_reload (recog_operand[goal_alternative_matched[i]],
3742                              recog_operand[i],
3743                              recog_operand_loc[goal_alternative_matched[i]],
3744                              recog_operand_loc[i],
3745                              (enum reg_class) goal_alternative[i],
3746                              operand_mode[goal_alternative_matched[i]],
3747                              operand_mode[i],
3748                              0, 0, i, RELOAD_OTHER);
3749             operand_reloadnum[i] = output_reloadnum;
3750             if (GET_CODE (recog_operand[i]) == REG)
3751               last_output_reload_regno = REGNO (recog_operand[i]);
3752           }
3753         else if (insn_code_number >= 0)
3754           abort ();
3755         else
3756           {
3757             error_for_asm (insn, "inconsistent operand constraints in an `asm'");
3758             /* Avoid further trouble with this insn.  */
3759             PATTERN (insn) = gen_rtx_USE (VOIDmode, const0_rtx);
3760             n_reloads = 0;
3761             return;
3762           }
3763       }
3764     else if (goal_alternative_matched[i] < 0
3765              && goal_alternative_matches[i] < 0
3766              && optimize)
3767       {
3768         /* For each non-matching operand that's a MEM or a pseudo-register 
3769            that didn't get a hard register, make an optional reload.
3770            This may get done even if the insn needs no reloads otherwise.  */
3771
3772         rtx operand = recog_operand[i];
3773
3774         while (GET_CODE (operand) == SUBREG)
3775           operand = XEXP (operand, 0);
3776         if ((GET_CODE (operand) == MEM
3777              || (GET_CODE (operand) == REG
3778                  && REGNO (operand) >= FIRST_PSEUDO_REGISTER))
3779             && (enum reg_class) goal_alternative[i] != NO_REGS
3780             && ! no_input_reloads
3781             /* Optional output reloads don't do anything and we mustn't
3782                make in-out reloads on insns that are not permitted output
3783                reloads.  */
3784             && (modified[i] == RELOAD_READ
3785                 || (modified[i] == RELOAD_READ_WRITE && ! no_output_reloads)))
3786           operand_reloadnum[i]
3787             = push_reload (modified[i] != RELOAD_WRITE ? recog_operand[i] : 0,
3788                            modified[i] != RELOAD_READ ? recog_operand[i] : 0,
3789                            (modified[i] != RELOAD_WRITE
3790                             ? recog_operand_loc[i] : 0),
3791                            (modified[i] != RELOAD_READ
3792                             ? recog_operand_loc[i] : 0),
3793                            (enum reg_class) goal_alternative[i],
3794                            (modified[i] == RELOAD_WRITE
3795                             ? VOIDmode : operand_mode[i]),
3796                            (modified[i] == RELOAD_READ
3797                             ? VOIDmode : operand_mode[i]),
3798                            (insn_code_number < 0 ? 0
3799                             : insn_operand_strict_low[insn_code_number][i]),
3800                            1, i, operand_type[i]);
3801       }
3802     else if (goal_alternative_matches[i] >= 0
3803              && goal_alternative_win[goal_alternative_matches[i]]
3804              && modified[i] == RELOAD_READ
3805              && modified[goal_alternative_matches[i]] == RELOAD_WRITE
3806              && ! no_input_reloads && ! no_output_reloads
3807              && optimize)
3808       {
3809         /* Similarly, make an optional reload for a pair of matching
3810            objects that are in MEM or a pseudo that didn't get a hard reg.  */
3811
3812         rtx operand = recog_operand[i];
3813
3814         while (GET_CODE (operand) == SUBREG)
3815           operand = XEXP (operand, 0);
3816         if ((GET_CODE (operand) == MEM
3817              || (GET_CODE (operand) == REG
3818                  && REGNO (operand) >= FIRST_PSEUDO_REGISTER))
3819             && ((enum reg_class) goal_alternative[goal_alternative_matches[i]]
3820                 != NO_REGS))
3821           operand_reloadnum[i] = operand_reloadnum[goal_alternative_matches[i]]
3822             = push_reload (recog_operand[goal_alternative_matches[i]],
3823                            recog_operand[i],
3824                            recog_operand_loc[goal_alternative_matches[i]],
3825                            recog_operand_loc[i],
3826                            (enum reg_class) goal_alternative[goal_alternative_matches[i]],
3827                            operand_mode[goal_alternative_matches[i]],
3828                            operand_mode[i],
3829                            0, 1, goal_alternative_matches[i], RELOAD_OTHER);
3830       }
3831   
3832   /* If this insn pattern contains any MATCH_DUP's, make sure that
3833      they will be substituted if the operands they match are substituted.
3834      Also do now any substitutions we already did on the operands.
3835
3836      Don't do this if we aren't making replacements because we might be
3837      propagating things allocated by frame pointer elimination into places
3838      it doesn't expect.  */
3839
3840   if (insn_code_number >= 0 && replace)
3841     for (i = insn_n_dups[insn_code_number] - 1; i >= 0; i--)
3842       {
3843         int opno = recog_dup_num[i];
3844         *recog_dup_loc[i] = *recog_operand_loc[opno];
3845         if (operand_reloadnum[opno] >= 0)
3846           push_replacement (recog_dup_loc[i], operand_reloadnum[opno],
3847                             insn_operand_mode[insn_code_number][opno]);
3848       }
3849
3850 #if 0
3851   /* This loses because reloading of prior insns can invalidate the equivalence
3852      (or at least find_equiv_reg isn't smart enough to find it any more),
3853      causing this insn to need more reload regs than it needed before.
3854      It may be too late to make the reload regs available.
3855      Now this optimization is done safely in choose_reload_regs.  */
3856
3857   /* For each reload of a reg into some other class of reg,
3858      search for an existing equivalent reg (same value now) in the right class.
3859      We can use it as long as we don't need to change its contents.  */
3860   for (i = 0; i < n_reloads; i++)
3861     if (reload_reg_rtx[i] == 0
3862         && reload_in[i] != 0
3863         && GET_CODE (reload_in[i]) == REG
3864         && reload_out[i] == 0)
3865       {
3866         reload_reg_rtx[i]
3867           = find_equiv_reg (reload_in[i], insn, reload_reg_class[i], -1,
3868                             static_reload_reg_p, 0, reload_inmode[i]);
3869         /* Prevent generation of insn to load the value
3870            because the one we found already has the value.  */
3871         if (reload_reg_rtx[i])
3872           reload_in[i] = reload_reg_rtx[i];
3873       }
3874 #endif
3875
3876   /* Perhaps an output reload can be combined with another
3877      to reduce needs by one.  */
3878   if (!goal_earlyclobber)
3879     combine_reloads ();
3880
3881   /* If we have a pair of reloads for parts of an address, they are reloading
3882      the same object, the operands themselves were not reloaded, and they
3883      are for two operands that are supposed to match, merge the reloads and
3884      change the type of the surviving reload to RELOAD_FOR_OPERAND_ADDRESS.  */
3885
3886   for (i = 0; i < n_reloads; i++)
3887     {
3888       int k;
3889
3890       for (j = i + 1; j < n_reloads; j++)
3891         if ((reload_when_needed[i] == RELOAD_FOR_INPUT_ADDRESS
3892              || reload_when_needed[i] == RELOAD_FOR_OUTPUT_ADDRESS
3893              || reload_when_needed[i] == RELOAD_FOR_INPADDR_ADDRESS
3894              || reload_when_needed[i] == RELOAD_FOR_OUTADDR_ADDRESS)
3895             && (reload_when_needed[j] == RELOAD_FOR_INPUT_ADDRESS
3896                 || reload_when_needed[j] == RELOAD_FOR_OUTPUT_ADDRESS
3897                 || reload_when_needed[j] == RELOAD_FOR_INPADDR_ADDRESS
3898                 || reload_when_needed[j] == RELOAD_FOR_OUTADDR_ADDRESS)
3899             && rtx_equal_p (reload_in[i], reload_in[j])
3900             && (operand_reloadnum[reload_opnum[i]] < 0
3901                 || reload_optional[operand_reloadnum[reload_opnum[i]]])
3902             && (operand_reloadnum[reload_opnum[j]] < 0
3903                 || reload_optional[operand_reloadnum[reload_opnum[j]]])
3904             && (goal_alternative_matches[reload_opnum[i]] == reload_opnum[j]
3905                 || (goal_alternative_matches[reload_opnum[j]]
3906                     == reload_opnum[i])))
3907           {
3908             for (k = 0; k < n_replacements; k++)
3909               if (replacements[k].what == j)
3910                 replacements[k].what = i;
3911
3912             if (reload_when_needed[i] == RELOAD_FOR_INPADDR_ADDRESS
3913                 || reload_when_needed[i] == RELOAD_FOR_OUTADDR_ADDRESS)
3914               reload_when_needed[i] = RELOAD_FOR_OPADDR_ADDR;
3915             else
3916               reload_when_needed[i] = RELOAD_FOR_OPERAND_ADDRESS;
3917             reload_in[j] = 0;
3918           }
3919     }
3920
3921   /* Scan all the reloads and update their type. 
3922      If a reload is for the address of an operand and we didn't reload
3923      that operand, change the type.  Similarly, change the operand number
3924      of a reload when two operands match.  If a reload is optional, treat it
3925      as though the operand isn't reloaded.
3926
3927      ??? This latter case is somewhat odd because if we do the optional
3928      reload, it means the object is hanging around.  Thus we need only
3929      do the address reload if the optional reload was NOT done.
3930
3931      Change secondary reloads to be the address type of their operand, not
3932      the normal type.
3933
3934      If an operand's reload is now RELOAD_OTHER, change any
3935      RELOAD_FOR_INPUT_ADDRESS reloads of that operand to
3936      RELOAD_FOR_OTHER_ADDRESS.  */
3937
3938   for (i = 0; i < n_reloads; i++)
3939     {
3940       if (reload_secondary_p[i]
3941           && reload_when_needed[i] == operand_type[reload_opnum[i]])
3942         reload_when_needed[i] = address_type[reload_opnum[i]];
3943
3944       if ((reload_when_needed[i] == RELOAD_FOR_INPUT_ADDRESS
3945            || reload_when_needed[i] == RELOAD_FOR_OUTPUT_ADDRESS
3946            || reload_when_needed[i] == RELOAD_FOR_INPADDR_ADDRESS
3947            || reload_when_needed[i] == RELOAD_FOR_OUTADDR_ADDRESS)
3948           && (operand_reloadnum[reload_opnum[i]] < 0
3949               || reload_optional[operand_reloadnum[reload_opnum[i]]]))
3950         {
3951           /* If we have a secondary reload to go along with this reload,
3952              change its type to RELOAD_FOR_OPADDR_ADDR.  */
3953
3954           if ((reload_when_needed[i] == RELOAD_FOR_INPUT_ADDRESS
3955                || reload_when_needed[i] == RELOAD_FOR_INPADDR_ADDRESS)
3956               && reload_secondary_in_reload[i] != -1)
3957             {
3958               int secondary_in_reload = reload_secondary_in_reload[i];
3959
3960               reload_when_needed[secondary_in_reload]
3961                 = RELOAD_FOR_OPADDR_ADDR;
3962
3963               /* If there's a tertiary reload we have to change it also.  */
3964               if (secondary_in_reload > 0
3965                   && reload_secondary_in_reload[secondary_in_reload] != -1)
3966                 reload_when_needed[reload_secondary_in_reload[secondary_in_reload]] 
3967                   = RELOAD_FOR_OPADDR_ADDR;
3968             }
3969
3970           if ((reload_when_needed[i] == RELOAD_FOR_OUTPUT_ADDRESS
3971                || reload_when_needed[i] == RELOAD_FOR_OUTADDR_ADDRESS)
3972               && reload_secondary_out_reload[i] != -1)
3973             {
3974               int secondary_out_reload = reload_secondary_out_reload[i];
3975
3976               reload_when_needed[secondary_out_reload]
3977                 = RELOAD_FOR_OPADDR_ADDR;
3978
3979               /* If there's a tertiary reload we have to change it also.  */
3980               if (secondary_out_reload
3981                   && reload_secondary_out_reload[secondary_out_reload] != -1)
3982                 reload_when_needed[reload_secondary_out_reload[secondary_out_reload]] 
3983                   = RELOAD_FOR_OPADDR_ADDR;
3984             }
3985
3986           reload_when_needed[i] = RELOAD_FOR_OPERAND_ADDRESS;
3987         }
3988
3989       if ((reload_when_needed[i] == RELOAD_FOR_INPUT_ADDRESS
3990            || reload_when_needed[i] == RELOAD_FOR_INPADDR_ADDRESS)
3991           && operand_reloadnum[reload_opnum[i]] >= 0
3992           && (reload_when_needed[operand_reloadnum[reload_opnum[i]]] 
3993               == RELOAD_OTHER))
3994         reload_when_needed[i] = RELOAD_FOR_OTHER_ADDRESS;
3995
3996       if (goal_alternative_matches[reload_opnum[i]] >= 0)
3997         reload_opnum[i] = goal_alternative_matches[reload_opnum[i]];
3998     }
3999
4000   /* Scan all the reloads, and check for RELOAD_FOR_OPERAND_ADDRESS reloads.
4001      If we have more than one, then convert all RELOAD_FOR_OPADDR_ADDR
4002      reloads to RELOAD_FOR_OPERAND_ADDRESS reloads.
4003
4004      choose_reload_regs assumes that RELOAD_FOR_OPADDR_ADDR reloads never
4005      conflict with RELOAD_FOR_OPERAND_ADDRESS reloads.  This is true for a
4006      single pair of RELOAD_FOR_OPADDR_ADDR/RELOAD_FOR_OPERAND_ADDRESS reloads.
4007      However, if there is more than one RELOAD_FOR_OPERAND_ADDRESS reload,
4008      then a RELOAD_FOR_OPADDR_ADDR reload conflicts with all
4009      RELOAD_FOR_OPERAND_ADDRESS reloads other than the one that uses it.
4010      This is complicated by the fact that a single operand can have more
4011      than one RELOAD_FOR_OPERAND_ADDRESS reload.  It is very difficult to fix
4012      choose_reload_regs without affecting code quality, and cases that
4013      actually fail are extremely rare, so it turns out to be better to fix
4014      the problem here by not generating cases that choose_reload_regs will
4015      fail for.  */
4016   /* There is a similar problem with RELOAD_FOR_INPUT_ADDRESS /
4017      RELOAD_FOR_OUTPUT_ADDRESS when there is more than one of a kind for
4018      a single operand.
4019      We can reduce the register pressure by exploiting that a
4020      RELOAD_FOR_X_ADDR_ADDR that precedes all RELOAD_FOR_X_ADDRESS reloads
4021      does not conflict with any of them, if it is only used for the first of
4022      the RELOAD_FOR_X_ADDRESS reloads.  */
4023   {
4024     int first_op_addr_num = -2;
4025     int first_inpaddr_num[MAX_RECOG_OPERANDS];
4026     int first_outpaddr_num[MAX_RECOG_OPERANDS];
4027     int need_change= 0;
4028     /* We use last_op_addr_reload and the contents of the above arrays
4029        first as flags - -2 means no instance encountered, -1 means exactly
4030        one instance encountered.
4031        If more than one instance has been encountered, we store the reload
4032        number of the first reload of the kind in question; reload numbers
4033        are known to be non-negative.  */
4034     for (i = 0; i < noperands; i++)
4035       first_inpaddr_num[i] = first_outpaddr_num[i] = -2;
4036     for (i = n_reloads - 1; i >= 0; i--)
4037       {
4038         switch (reload_when_needed[i])
4039           {
4040           case RELOAD_FOR_OPERAND_ADDRESS:
4041             if (++first_op_addr_num >= 0)
4042               {
4043                 first_op_addr_num = i;
4044                 need_change = 1;
4045               }
4046             break;
4047           case RELOAD_FOR_INPUT_ADDRESS:
4048             if (++first_inpaddr_num[reload_opnum[i]] >= 0)
4049               {
4050                 first_inpaddr_num[reload_opnum[i]] = i;
4051                 need_change = 1;
4052               }
4053             break;
4054           case RELOAD_FOR_OUTPUT_ADDRESS:
4055             if (++first_outpaddr_num[reload_opnum[i]] >= 0)
4056               {
4057                 first_outpaddr_num[reload_opnum[i]] = i;
4058                 need_change = 1;
4059               }
4060             break;
4061           default:
4062             break;
4063           }
4064       }
4065
4066     if (need_change)
4067       {
4068         for (i = 0; i < n_reloads; i++)
4069           {
4070             int first_num, type;
4071
4072             switch (reload_when_needed[i])
4073               {
4074               case RELOAD_FOR_OPADDR_ADDR:
4075                 first_num = first_op_addr_num;
4076                 type = RELOAD_FOR_OPERAND_ADDRESS;
4077                 break;
4078               case RELOAD_FOR_INPADDR_ADDRESS:
4079                 first_num = first_inpaddr_num[reload_opnum[i]];
4080                 type = RELOAD_FOR_INPUT_ADDRESS;
4081                 break;
4082               case RELOAD_FOR_OUTADDR_ADDRESS:
4083                 first_num = first_outpaddr_num[reload_opnum[i]];
4084                 type = RELOAD_FOR_OUTPUT_ADDRESS;
4085                 break;
4086               default:
4087                 continue;
4088               }
4089             if (first_num < 0)
4090               continue;
4091             else if (i > first_num)
4092               reload_when_needed[i] = type;
4093             else
4094               {
4095                 /* Check if the only TYPE reload that uses reload I is
4096                    reload FIRST_NUM.  */
4097                 for (j = n_reloads - 1; j > first_num; j--)
4098                   {
4099                     if (reload_when_needed[j] == type
4100                         && reg_mentioned_p (reload_in[i], reload_in[j]))
4101                       {
4102                         reload_when_needed[i] = type;
4103                         break;
4104                       }
4105                   }
4106               }
4107           }
4108       }
4109   }
4110
4111   /* See if we have any reloads that are now allowed to be merged
4112      because we've changed when the reload is needed to
4113      RELOAD_FOR_OPERAND_ADDRESS or RELOAD_FOR_OTHER_ADDRESS.  Only
4114      check for the most common cases.  */
4115
4116   for (i = 0; i < n_reloads; i++)
4117     if (reload_in[i] != 0 && reload_out[i] == 0
4118         && (reload_when_needed[i] == RELOAD_FOR_OPERAND_ADDRESS
4119             || reload_when_needed[i] == RELOAD_FOR_OPADDR_ADDR
4120             || reload_when_needed[i] == RELOAD_FOR_OTHER_ADDRESS))
4121       for (j = 0; j < n_reloads; j++)
4122         if (i != j && reload_in[j] != 0 && reload_out[j] == 0
4123             && reload_when_needed[j] == reload_when_needed[i]
4124             && MATCHES (reload_in[i], reload_in[j])
4125             && reload_reg_class[i] == reload_reg_class[j]
4126             && !reload_nocombine[i] && !reload_nocombine[j]
4127             && reload_reg_rtx[i] == reload_reg_rtx[j])
4128           {
4129             reload_opnum[i] = MIN (reload_opnum[i], reload_opnum[j]);
4130             transfer_replacements (i, j);
4131             reload_in[j] = 0;
4132           }
4133
4134   /* Set which reloads must use registers not used in any group.  Start
4135      with those that conflict with a group and then include ones that
4136      conflict with ones that are already known to conflict with a group.  */
4137
4138   changed = 0;
4139   for (i = 0; i < n_reloads; i++)
4140     {
4141       enum machine_mode mode = reload_inmode[i];
4142       enum reg_class class = reload_reg_class[i];
4143       int size;
4144
4145       if (GET_MODE_SIZE (reload_outmode[i]) > GET_MODE_SIZE (mode))
4146         mode = reload_outmode[i];
4147       size = CLASS_MAX_NREGS (class, mode);
4148
4149       if (size == 1)
4150         for (j = 0; j < n_reloads; j++)
4151           if ((CLASS_MAX_NREGS (reload_reg_class[j],
4152                                 (GET_MODE_SIZE (reload_outmode[j])
4153                                  > GET_MODE_SIZE (reload_inmode[j]))
4154                                 ? reload_outmode[j] : reload_inmode[j])
4155                > 1)
4156               && !reload_optional[j]
4157               && (reload_in[j] != 0 || reload_out[j] != 0
4158                   || reload_secondary_p[j])
4159               && reloads_conflict (i, j)
4160               && reg_classes_intersect_p (class, reload_reg_class[j]))
4161             {
4162               reload_nongroup[i] = 1;
4163               changed = 1;
4164               break;
4165             }
4166     }
4167
4168   while (changed)
4169     {
4170       changed = 0;
4171
4172       for (i = 0; i < n_reloads; i++)
4173         {
4174           enum machine_mode mode = reload_inmode[i];
4175           enum reg_class class = reload_reg_class[i];
4176           int size;
4177
4178           if (GET_MODE_SIZE (reload_outmode[i]) > GET_MODE_SIZE (mode))
4179             mode = reload_outmode[i];
4180           size = CLASS_MAX_NREGS (class, mode);
4181
4182           if (! reload_nongroup[i] && size == 1)
4183             for (j = 0; j < n_reloads; j++)
4184               if (reload_nongroup[j]
4185                   && reloads_conflict (i, j)
4186                   && reg_classes_intersect_p (class, reload_reg_class[j]))
4187                 {
4188                   reload_nongroup[i] = 1;
4189                   changed = 1;
4190                   break;
4191                 }
4192         }
4193     }
4194
4195 #else /* no REGISTER_CONSTRAINTS */
4196   int noperands;
4197   int insn_code_number;
4198   int goal_earlyclobber = 0; /* Always 0, to make combine_reloads happen.  */
4199   register int i;
4200   rtx body = PATTERN (insn);
4201
4202   n_reloads = 0;
4203   n_replacements = 0;
4204   n_earlyclobbers = 0;
4205   replace_reloads = replace;
4206   this_insn = insn;
4207
4208   /* Find what kind of insn this is.  NOPERANDS gets number of operands.
4209      Store the operand values in RECOG_OPERAND and the locations
4210      of the words in the insn that point to them in RECOG_OPERAND_LOC.
4211      Return if the insn needs no reload processing.  */
4212
4213   switch (GET_CODE (body))
4214     {
4215     case USE:
4216     case CLOBBER:
4217     case ASM_INPUT:
4218     case ADDR_VEC:
4219     case ADDR_DIFF_VEC:
4220       return;
4221
4222     case PARALLEL:
4223     case SET:
4224       noperands = asm_noperands (body);
4225       if (noperands >= 0)
4226         {
4227           /* This insn is an `asm' with operands.
4228              First, find out how many operands, and allocate space.  */
4229
4230           insn_code_number = -1;
4231           /* ??? This is a bug! ???
4232              Give up and delete this insn if it has too many operands.  */
4233           if (noperands > MAX_RECOG_OPERANDS)
4234             abort ();
4235
4236           /* Now get the operand values out of the insn.  */
4237
4238           decode_asm_operands (body, recog_operand, recog_operand_loc,
4239                                NULL_PTR, NULL_PTR);
4240           break;
4241         }
4242
4243     default:
4244       /* Ordinary insn: recognize it, allocate space for operands and
4245          constraints, and get them out via insn_extract.  */
4246
4247       insn_code_number = recog_memoized (insn);
4248       noperands = insn_n_operands[insn_code_number];
4249       insn_extract (insn);
4250     }
4251
4252   if (noperands == 0)
4253     return;
4254
4255   for (i = 0; i < noperands; i++)
4256     {
4257       register RTX_CODE code = GET_CODE (recog_operand[i]);
4258       int is_set_dest = GET_CODE (body) == SET && (i == 0);
4259
4260       if (insn_code_number >= 0)
4261         if (insn_operand_address_p[insn_code_number][i])
4262           find_reloads_address (VOIDmode, NULL_PTR,
4263                                 recog_operand[i], recog_operand_loc[i],
4264                                 i, RELOAD_FOR_INPUT, ind_levels, insn);
4265
4266       /* In these cases, we can't tell if the operand is an input
4267          or an output, so be conservative.  In practice it won't be
4268          problem.  */
4269
4270       if (code == MEM)
4271         find_reloads_address (GET_MODE (recog_operand[i]),
4272                               recog_operand_loc[i],
4273                               XEXP (recog_operand[i], 0),
4274                               &XEXP (recog_operand[i], 0),
4275                               i, RELOAD_OTHER, ind_levels, insn);
4276       if (code == SUBREG)
4277         recog_operand[i] = *recog_operand_loc[i]
4278           = find_reloads_toplev (recog_operand[i], i, RELOAD_OTHER,
4279                                  ind_levels, is_set_dest);
4280       if (code == REG)
4281         {
4282           register int regno = REGNO (recog_operand[i]);
4283           if (reg_equiv_constant[regno] != 0 && !is_set_dest)
4284             recog_operand[i] = *recog_operand_loc[i]
4285               = reg_equiv_constant[regno];
4286 #if 0 /* This might screw code in reload1.c to delete prior output-reload
4287          that feeds this insn.  */
4288           if (reg_equiv_mem[regno] != 0)
4289             recog_operand[i] = *recog_operand_loc[i]
4290               = reg_equiv_mem[regno];
4291 #endif
4292         }
4293     }
4294
4295   /* Perhaps an output reload can be combined with another
4296      to reduce needs by one.  */
4297   if (!goal_earlyclobber)
4298     combine_reloads ();
4299 #endif /* no REGISTER_CONSTRAINTS */
4300 }
4301
4302 /* Return 1 if alternative number ALTNUM in constraint-string CONSTRAINT
4303    accepts a memory operand with constant address.  */
4304
4305 static int
4306 alternative_allows_memconst (constraint, altnum)
4307      char *constraint;
4308      int altnum;
4309 {
4310   register int c;
4311   /* Skip alternatives before the one requested.  */
4312   while (altnum > 0)
4313     {
4314       while (*constraint++ != ',');
4315       altnum--;
4316     }
4317   /* Scan the requested alternative for 'm' or 'o'.
4318      If one of them is present, this alternative accepts memory constants.  */
4319   while ((c = *constraint++) && c != ',' && c != '#')
4320     if (c == 'm' || c == 'o')
4321       return 1;
4322   return 0;
4323 }
4324 \f
4325 /* Scan X for memory references and scan the addresses for reloading.
4326    Also checks for references to "constant" regs that we want to eliminate
4327    and replaces them with the values they stand for.
4328    We may alter X destructively if it contains a reference to such.
4329    If X is just a constant reg, we return the equivalent value
4330    instead of X.
4331
4332    IND_LEVELS says how many levels of indirect addressing this machine
4333    supports.
4334
4335    OPNUM and TYPE identify the purpose of the reload.
4336
4337    IS_SET_DEST is true if X is the destination of a SET, which is not
4338    appropriate to be replaced by a constant.  */
4339
4340 static rtx
4341 find_reloads_toplev (x, opnum, type, ind_levels, is_set_dest)
4342      rtx x;
4343      int opnum;
4344      enum reload_type type;
4345      int ind_levels;
4346      int is_set_dest;
4347 {
4348   register RTX_CODE code = GET_CODE (x);
4349
4350   register char *fmt = GET_RTX_FORMAT (code);
4351   register int i;
4352
4353   if (code == REG)
4354     {
4355       /* This code is duplicated for speed in find_reloads.  */
4356       register int regno = REGNO (x);
4357       if (reg_equiv_constant[regno] != 0 && !is_set_dest)
4358         x = reg_equiv_constant[regno];
4359 #if 0
4360 /*  This creates (subreg (mem...)) which would cause an unnecessary
4361     reload of the mem.  */
4362       else if (reg_equiv_mem[regno] != 0)
4363         x = reg_equiv_mem[regno];
4364 #endif
4365       else if (reg_equiv_address[regno] != 0)
4366         {
4367           /* If reg_equiv_address varies, it may be shared, so copy it.  */
4368           /* We must rerun eliminate_regs, in case the elimination
4369              offsets have changed.  */
4370           rtx addr = XEXP (eliminate_regs (reg_equiv_memory_loc[regno], 0,
4371                                            NULL_RTX),
4372                            0);
4373
4374           if (rtx_varies_p (addr))
4375             addr = copy_rtx (addr);
4376
4377           x = gen_rtx_MEM (GET_MODE (x), addr);
4378           RTX_UNCHANGING_P (x) = RTX_UNCHANGING_P (regno_reg_rtx[regno]);
4379           find_reloads_address (GET_MODE (x), NULL_PTR,
4380                                 XEXP (x, 0),
4381                                 &XEXP (x, 0), opnum, type, ind_levels, 0);
4382         }
4383       return x;
4384     }
4385   if (code == MEM)
4386     {
4387       rtx tem = x;
4388       find_reloads_address (GET_MODE (x), &tem, XEXP (x, 0), &XEXP (x, 0),
4389                             opnum, type, ind_levels, 0);
4390       return tem;
4391     }
4392
4393   if (code == SUBREG && GET_CODE (SUBREG_REG (x)) == REG)
4394     {
4395       /* Check for SUBREG containing a REG that's equivalent to a constant. 
4396          If the constant has a known value, truncate it right now.
4397          Similarly if we are extracting a single-word of a multi-word
4398          constant.  If the constant is symbolic, allow it to be substituted
4399          normally.  push_reload will strip the subreg later.  If the
4400          constant is VOIDmode, abort because we will lose the mode of
4401          the register (this should never happen because one of the cases
4402          above should handle it).  */
4403
4404       register int regno = REGNO (SUBREG_REG (x));
4405       rtx tem;
4406
4407       if (subreg_lowpart_p (x)
4408           && regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
4409           && reg_equiv_constant[regno] != 0
4410           && (tem = gen_lowpart_common (GET_MODE (x),
4411                                         reg_equiv_constant[regno])) != 0)
4412         return tem;
4413
4414       if (GET_MODE_BITSIZE (GET_MODE (x)) == BITS_PER_WORD
4415           && regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
4416           && reg_equiv_constant[regno] != 0
4417           && (tem = operand_subword (reg_equiv_constant[regno],
4418                                      SUBREG_WORD (x), 0,
4419                                      GET_MODE (SUBREG_REG (x)))) != 0)
4420         {
4421           /* TEM is now a word sized constant for the bits from X that
4422              we wanted.  However, TEM may be the wrong representation.
4423
4424              Use gen_lowpart_common to convert a CONST_INT into a
4425              CONST_DOUBLE and vice versa as needed according to by the mode
4426              of the SUBREG.  */
4427           tem = gen_lowpart_common (GET_MODE (x), tem);
4428           if (!tem)
4429             abort ();
4430           return tem;
4431         }
4432
4433       /* If the SUBREG is wider than a word, the above test will fail.
4434          For example, we might have a SImode SUBREG of a DImode SUBREG_REG
4435          for a 16 bit target, or a DImode SUBREG of a TImode SUBREG_REG for
4436          a 32 bit target.  We still can - and have to - handle this
4437          for non-paradoxical subregs of CONST_INTs.  */
4438       if (regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
4439           && reg_equiv_constant[regno] != 0
4440           && GET_CODE (reg_equiv_constant[regno]) == CONST_INT
4441           && (GET_MODE_SIZE (GET_MODE (x))
4442               < GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)))))
4443           {
4444             int shift = SUBREG_WORD (x) * BITS_PER_WORD;
4445             if (WORDS_BIG_ENDIAN)
4446               shift = (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x)))
4447                        - GET_MODE_BITSIZE (GET_MODE (x))
4448                        - shift);
4449             /* Here we use the knowledge that CONST_INTs have a
4450                HOST_WIDE_INT field.  */
4451             if (shift >= HOST_BITS_PER_WIDE_INT)
4452               shift = HOST_BITS_PER_WIDE_INT - 1;
4453             return GEN_INT (INTVAL (reg_equiv_constant[regno]) >> shift);
4454           }
4455
4456       if (regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
4457           && reg_equiv_constant[regno] != 0
4458           && GET_MODE (reg_equiv_constant[regno]) == VOIDmode)
4459         abort ();
4460
4461       /* If the subreg contains a reg that will be converted to a mem,
4462          convert the subreg to a narrower memref now.
4463          Otherwise, we would get (subreg (mem ...) ...),
4464          which would force reload of the mem.
4465
4466          We also need to do this if there is an equivalent MEM that is
4467          not offsettable.  In that case, alter_subreg would produce an
4468          invalid address on big-endian machines.
4469
4470          For machines that extend byte loads, we must not reload using
4471          a wider mode if we have a paradoxical SUBREG.  find_reloads will
4472          force a reload in that case.  So we should not do anything here.  */
4473
4474       else if (regno >= FIRST_PSEUDO_REGISTER
4475 #ifdef LOAD_EXTEND_OP
4476                && (GET_MODE_SIZE (GET_MODE (x))
4477                    <= GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
4478 #endif
4479                && (reg_equiv_address[regno] != 0
4480                    || (reg_equiv_mem[regno] != 0
4481                        && (! strict_memory_address_p (GET_MODE (x), 
4482                                                       XEXP (reg_equiv_mem[regno], 0))
4483                            || ! offsettable_memref_p (reg_equiv_mem[regno])))))
4484         {
4485           int offset = SUBREG_WORD (x) * UNITS_PER_WORD;
4486           /* We must rerun eliminate_regs, in case the elimination
4487              offsets have changed.  */
4488           rtx addr = XEXP (eliminate_regs (reg_equiv_memory_loc[regno], 0,
4489                                            NULL_RTX),
4490                            0);
4491           if (BYTES_BIG_ENDIAN)
4492             {
4493               int size;
4494               size = GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)));
4495               offset += MIN (size, UNITS_PER_WORD);
4496               size = GET_MODE_SIZE (GET_MODE (x));
4497               offset -= MIN (size, UNITS_PER_WORD);
4498             }
4499           addr = plus_constant (addr, offset);
4500           x = gen_rtx_MEM (GET_MODE (x), addr);
4501           RTX_UNCHANGING_P (x) = RTX_UNCHANGING_P (regno_reg_rtx[regno]);
4502           find_reloads_address (GET_MODE (x), NULL_PTR,
4503                                 XEXP (x, 0),
4504                                 &XEXP (x, 0), opnum, type, ind_levels, 0);
4505         }
4506
4507     }
4508
4509   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4510     {
4511       if (fmt[i] == 'e')
4512         XEXP (x, i) = find_reloads_toplev (XEXP (x, i), opnum, type,
4513                                            ind_levels, is_set_dest);
4514     }
4515   return x;
4516 }
4517
4518 /* Return a mem ref for the memory equivalent of reg REGNO.
4519    This mem ref is not shared with anything.  */
4520
4521 static rtx
4522 make_memloc (ad, regno)
4523      rtx ad;
4524      int regno;
4525 {
4526 #if 0
4527   register int i;
4528 #endif
4529   /* We must rerun eliminate_regs, in case the elimination
4530      offsets have changed.  */
4531   rtx tem = XEXP (eliminate_regs (reg_equiv_memory_loc[regno], 0, NULL_RTX), 0);
4532
4533 #if 0 /* We cannot safely reuse a memloc made here;
4534          if the pseudo appears twice, and its mem needs a reload,
4535          it gets two separate reloads assigned, but it only
4536          gets substituted with the second of them;
4537          then it can get used before that reload reg gets loaded up.  */
4538   for (i = 0; i < n_memlocs; i++)
4539     if (rtx_equal_p (tem, XEXP (memlocs[i], 0)))
4540       return memlocs[i];
4541 #endif
4542
4543   /* If TEM might contain a pseudo, we must copy it to avoid
4544      modifying it when we do the substitution for the reload.  */
4545   if (rtx_varies_p (tem))
4546     tem = copy_rtx (tem);
4547
4548   tem = gen_rtx_MEM (GET_MODE (ad), tem);
4549   RTX_UNCHANGING_P (tem) = RTX_UNCHANGING_P (regno_reg_rtx[regno]);
4550   memlocs[n_memlocs++] = tem;
4551   return tem;
4552 }
4553
4554 /* Record all reloads needed for handling memory address AD
4555    which appears in *LOC in a memory reference to mode MODE
4556    which itself is found in location  *MEMREFLOC.
4557    Note that we take shortcuts assuming that no multi-reg machine mode
4558    occurs as part of an address.
4559
4560    OPNUM and TYPE specify the purpose of this reload.
4561
4562    IND_LEVELS says how many levels of indirect addressing this machine
4563    supports.
4564
4565    INSN, if nonzero, is the insn in which we do the reload.  It is used
4566    to determine if we may generate output reloads.
4567
4568    Value is nonzero if this address is reloaded or replaced as a whole.
4569    This is interesting to the caller if the address is an autoincrement.
4570
4571    Note that there is no verification that the address will be valid after
4572    this routine does its work.  Instead, we rely on the fact that the address
4573    was valid when reload started.  So we need only undo things that reload
4574    could have broken.  These are wrong register types, pseudos not allocated
4575    to a hard register, and frame pointer elimination.  */
4576
4577 static int
4578 find_reloads_address (mode, memrefloc, ad, loc, opnum, type, ind_levels, insn)
4579      enum machine_mode mode;
4580      rtx *memrefloc;
4581      rtx ad;
4582      rtx *loc;
4583      int opnum;
4584      enum reload_type type;
4585      int ind_levels;
4586      rtx insn;
4587 {
4588   register int regno;
4589   rtx tem;
4590
4591   /* If the address is a register, see if it is a legitimate address and
4592      reload if not.  We first handle the cases where we need not reload
4593      or where we must reload in a non-standard way.  */
4594
4595   if (GET_CODE (ad) == REG)
4596     {
4597       regno = REGNO (ad);
4598
4599       if (reg_equiv_constant[regno] != 0
4600           && strict_memory_address_p (mode, reg_equiv_constant[regno]))
4601         {
4602           *loc = ad = reg_equiv_constant[regno];
4603           return 1;
4604         }
4605
4606       else if (reg_equiv_address[regno] != 0)
4607         {
4608           tem = make_memloc (ad, regno);
4609           find_reloads_address (GET_MODE (tem), NULL_PTR, XEXP (tem, 0),
4610                                 &XEXP (tem, 0), opnum, ADDR_TYPE (type),
4611                                 ind_levels, insn);
4612           push_reload (tem, NULL_RTX, loc, NULL_PTR,
4613                        reload_address_base_reg_class,
4614                        GET_MODE (ad), VOIDmode, 0, 0,
4615                        opnum, type);
4616           return 1;
4617         }
4618
4619       /* We can avoid a reload if the register's equivalent memory expression
4620          is valid as an indirect memory address.
4621          But not all addresses are valid in a mem used as an indirect address:
4622          only reg or reg+constant.  */
4623
4624       else if (reg_equiv_mem[regno] != 0 && ind_levels > 0
4625                && strict_memory_address_p (mode, reg_equiv_mem[regno])
4626                && (GET_CODE (XEXP (reg_equiv_mem[regno], 0)) == REG
4627                    || (GET_CODE (XEXP (reg_equiv_mem[regno], 0)) == PLUS
4628                        && GET_CODE (XEXP (XEXP (reg_equiv_mem[regno], 0), 0)) == REG
4629                        && CONSTANT_P (XEXP (XEXP (reg_equiv_mem[regno], 0), 1)))))
4630         return 0;
4631
4632       /* The only remaining case where we can avoid a reload is if this is a
4633          hard register that is valid as a base register and which is not the
4634          subject of a CLOBBER in this insn.  */
4635
4636       else if (regno < FIRST_PSEUDO_REGISTER
4637                && REGNO_MODE_OK_FOR_BASE_P (regno, mode)
4638                && ! regno_clobbered_p (regno, this_insn))
4639         return 0;
4640
4641       /* If we do not have one of the cases above, we must do the reload.  */
4642       push_reload (ad, NULL_RTX, loc, NULL_PTR, reload_address_base_reg_class,
4643                    GET_MODE (ad), VOIDmode, 0, 0, opnum, type);
4644       return 1;
4645     }
4646
4647   if (strict_memory_address_p (mode, ad))
4648     {
4649       /* The address appears valid, so reloads are not needed.
4650          But the address may contain an eliminable register.
4651          This can happen because a machine with indirect addressing
4652          may consider a pseudo register by itself a valid address even when
4653          it has failed to get a hard reg.
4654          So do a tree-walk to find and eliminate all such regs.  */
4655
4656       /* But first quickly dispose of a common case.  */
4657       if (GET_CODE (ad) == PLUS
4658           && GET_CODE (XEXP (ad, 1)) == CONST_INT
4659           && GET_CODE (XEXP (ad, 0)) == REG
4660           && reg_equiv_constant[REGNO (XEXP (ad, 0))] == 0)
4661         return 0;
4662
4663       subst_reg_equivs_changed = 0;
4664       *loc = subst_reg_equivs (ad);
4665
4666       if (! subst_reg_equivs_changed)
4667         return 0;
4668
4669       /* Check result for validity after substitution.  */
4670       if (strict_memory_address_p (mode, ad))
4671         return 0;
4672     }
4673
4674 #ifdef LEGITIMIZE_RELOAD_ADDRESS
4675   do
4676     {
4677       if (memrefloc)
4678         {
4679           LEGITIMIZE_RELOAD_ADDRESS (ad, GET_MODE (*memrefloc), opnum, type,
4680                                      ind_levels, win);
4681         }
4682       break;
4683     win:
4684       *memrefloc = copy_rtx (*memrefloc);
4685       XEXP (*memrefloc, 0) = ad;
4686       move_replacements (&ad, &XEXP (*memrefloc, 0));
4687       return 1;
4688     }
4689   while (0);
4690 #endif
4691
4692   /* The address is not valid.  We have to figure out why.  One possibility
4693      is that it is itself a MEM.  This can happen when the frame pointer is
4694      being eliminated, a pseudo is not allocated to a hard register, and the
4695      offset between the frame and stack pointers is not its initial value.
4696      In that case the pseudo will have been replaced by a MEM referring to
4697      the stack pointer.  */
4698   if (GET_CODE (ad) == MEM)
4699     {
4700       /* First ensure that the address in this MEM is valid.  Then, unless
4701          indirect addresses are valid, reload the MEM into a register.  */
4702       tem = ad;
4703       find_reloads_address (GET_MODE (ad), &tem, XEXP (ad, 0), &XEXP (ad, 0),
4704                             opnum, ADDR_TYPE (type),
4705                             ind_levels == 0 ? 0 : ind_levels - 1, insn);
4706
4707       /* If tem was changed, then we must create a new memory reference to
4708          hold it and store it back into memrefloc.  */
4709       if (tem != ad && memrefloc)
4710         {
4711           *memrefloc = copy_rtx (*memrefloc);
4712           copy_replacements (tem, XEXP (*memrefloc, 0));
4713           loc = &XEXP (*memrefloc, 0);
4714         }
4715
4716       /* Check similar cases as for indirect addresses as above except
4717          that we can allow pseudos and a MEM since they should have been
4718          taken care of above.  */
4719
4720       if (ind_levels == 0
4721           || (GET_CODE (XEXP (tem, 0)) == SYMBOL_REF && ! indirect_symref_ok)
4722           || GET_CODE (XEXP (tem, 0)) == MEM
4723           || ! (GET_CODE (XEXP (tem, 0)) == REG
4724                 || (GET_CODE (XEXP (tem, 0)) == PLUS
4725                     && GET_CODE (XEXP (XEXP (tem, 0), 0)) == REG
4726                     && GET_CODE (XEXP (XEXP (tem, 0), 1)) == CONST_INT)))
4727         {
4728           /* Must use TEM here, not AD, since it is the one that will
4729              have any subexpressions reloaded, if needed.  */
4730           push_reload (tem, NULL_RTX, loc, NULL_PTR,
4731                        reload_address_base_reg_class, GET_MODE (tem),
4732                        VOIDmode, 0,
4733                        0, opnum, type);
4734           return 1;
4735         }
4736       else
4737         return 0;
4738     }
4739
4740   /* If we have address of a stack slot but it's not valid because the
4741      displacement is too large, compute the sum in a register.
4742      Handle all base registers here, not just fp/ap/sp, because on some
4743      targets (namely SH) we can also get too large displacements from
4744      big-endian corrections.  */
4745   else if (GET_CODE (ad) == PLUS
4746            && GET_CODE (XEXP (ad, 0)) == REG
4747            && REGNO (XEXP (ad, 0)) < FIRST_PSEUDO_REGISTER
4748            && REG_MODE_OK_FOR_BASE_P (XEXP (ad, 0), mode)
4749            && GET_CODE (XEXP (ad, 1)) == CONST_INT)
4750     {
4751       /* Unshare the MEM rtx so we can safely alter it.  */
4752       if (memrefloc)
4753         {
4754           *memrefloc = copy_rtx (*memrefloc);
4755           loc = &XEXP (*memrefloc, 0);
4756         }
4757       if (double_reg_address_ok)
4758         {
4759           /* Unshare the sum as well.  */
4760           *loc = ad = copy_rtx (ad);
4761           /* Reload the displacement into an index reg.
4762              We assume the frame pointer or arg pointer is a base reg.  */
4763           find_reloads_address_part (XEXP (ad, 1), &XEXP (ad, 1),
4764                                      reload_address_index_reg_class,
4765                                      GET_MODE (ad), opnum, type, ind_levels);
4766         }
4767       else
4768         {
4769           /* If the sum of two regs is not necessarily valid,
4770              reload the sum into a base reg.
4771              That will at least work.  */
4772           find_reloads_address_part (ad, loc, reload_address_base_reg_class,
4773                                      Pmode, opnum, type, ind_levels);
4774         }
4775       return 1;
4776     }
4777
4778   /* If we have an indexed stack slot, there are three possible reasons why
4779      it might be invalid: The index might need to be reloaded, the address
4780      might have been made by frame pointer elimination and hence have a
4781      constant out of range, or both reasons might apply.  
4782
4783      We can easily check for an index needing reload, but even if that is the
4784      case, we might also have an invalid constant.  To avoid making the
4785      conservative assumption and requiring two reloads, we see if this address
4786      is valid when not interpreted strictly.  If it is, the only problem is
4787      that the index needs a reload and find_reloads_address_1 will take care
4788      of it.
4789
4790      There is still a case when we might generate an extra reload,
4791      however.  In certain cases eliminate_regs will return a MEM for a REG
4792      (see the code there for details).  In those cases, memory_address_p
4793      applied to our address will return 0 so we will think that our offset
4794      must be too large.  But it might indeed be valid and the only problem
4795      is that a MEM is present where a REG should be.  This case should be
4796      very rare and there doesn't seem to be any way to avoid it.
4797
4798      If we decide to do something here, it must be that
4799      `double_reg_address_ok' is true and that this address rtl was made by
4800      eliminate_regs.  We generate a reload of the fp/sp/ap + constant and
4801      rework the sum so that the reload register will be added to the index.
4802      This is safe because we know the address isn't shared.
4803
4804      We check for fp/ap/sp as both the first and second operand of the
4805      innermost PLUS.  */
4806
4807   else if (GET_CODE (ad) == PLUS && GET_CODE (XEXP (ad, 1)) == CONST_INT
4808            && GET_CODE (XEXP (ad, 0)) == PLUS
4809            && (XEXP (XEXP (ad, 0), 0) == frame_pointer_rtx
4810 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
4811                || XEXP (XEXP (ad, 0), 0) == hard_frame_pointer_rtx
4812 #endif
4813 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
4814                || XEXP (XEXP (ad, 0), 0) == arg_pointer_rtx
4815 #endif
4816                || XEXP (XEXP (ad, 0), 0) == stack_pointer_rtx)
4817            && ! memory_address_p (mode, ad))
4818     {
4819       *loc = ad = gen_rtx_PLUS (GET_MODE (ad),
4820                                 plus_constant (XEXP (XEXP (ad, 0), 0),
4821                                                INTVAL (XEXP (ad, 1))),
4822                            XEXP (XEXP (ad, 0), 1));
4823       find_reloads_address_part (XEXP (ad, 0), &XEXP (ad, 0),
4824                                  reload_address_base_reg_class,
4825                                  GET_MODE (ad), opnum, type, ind_levels);
4826       find_reloads_address_1 (mode, XEXP (ad, 1), 1, &XEXP (ad, 1), opnum,
4827                               type, 0, insn);
4828
4829       return 1;
4830     }
4831                            
4832   else if (GET_CODE (ad) == PLUS && GET_CODE (XEXP (ad, 1)) == CONST_INT
4833            && GET_CODE (XEXP (ad, 0)) == PLUS
4834            && (XEXP (XEXP (ad, 0), 1) == frame_pointer_rtx
4835 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
4836                || XEXP (XEXP (ad, 0), 1) == hard_frame_pointer_rtx
4837 #endif
4838 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
4839                || XEXP (XEXP (ad, 0), 1) == arg_pointer_rtx
4840 #endif
4841                || XEXP (XEXP (ad, 0), 1) == stack_pointer_rtx)
4842            && ! memory_address_p (mode, ad))
4843     {
4844       *loc = ad = gen_rtx_PLUS (GET_MODE (ad),
4845                                 XEXP (XEXP (ad, 0), 0),
4846                                 plus_constant (XEXP (XEXP (ad, 0), 1),
4847                                                INTVAL (XEXP (ad, 1))));
4848       find_reloads_address_part (XEXP (ad, 1), &XEXP (ad, 1),
4849                                  reload_address_base_reg_class,
4850                                  GET_MODE (ad), opnum, type, ind_levels);
4851       find_reloads_address_1 (mode, XEXP (ad, 0), 1, &XEXP (ad, 0), opnum,
4852                               type, 0, insn);
4853
4854       return 1;
4855     }
4856                            
4857   /* See if address becomes valid when an eliminable register
4858      in a sum is replaced.  */
4859
4860   tem = ad;
4861   if (GET_CODE (ad) == PLUS)
4862     tem = subst_indexed_address (ad);
4863   if (tem != ad && strict_memory_address_p (mode, tem))
4864     {
4865       /* Ok, we win that way.  Replace any additional eliminable
4866          registers.  */
4867
4868       subst_reg_equivs_changed = 0;
4869       tem = subst_reg_equivs (tem);
4870
4871       /* Make sure that didn't make the address invalid again.  */
4872
4873       if (! subst_reg_equivs_changed || strict_memory_address_p (mode, tem))
4874         {
4875           *loc = tem;
4876           return 0;
4877         }
4878     }
4879
4880   /* If constants aren't valid addresses, reload the constant address
4881      into a register.  */
4882   if (CONSTANT_P (ad) && ! strict_memory_address_p (mode, ad))
4883     {
4884       /* If AD is in address in the constant pool, the MEM rtx may be shared.
4885          Unshare it so we can safely alter it.  */
4886       if (memrefloc && GET_CODE (ad) == SYMBOL_REF
4887           && CONSTANT_POOL_ADDRESS_P (ad))
4888         {
4889           *memrefloc = copy_rtx (*memrefloc);
4890           loc = &XEXP (*memrefloc, 0);
4891         }
4892
4893       find_reloads_address_part (ad, loc, reload_address_base_reg_class,
4894                                  Pmode, opnum, type,
4895                                  ind_levels);
4896       return 1;
4897     }
4898
4899   return find_reloads_address_1 (mode, ad, 0, loc, opnum, type, ind_levels,
4900                                  insn);
4901 }
4902 \f
4903 /* Find all pseudo regs appearing in AD
4904    that are eliminable in favor of equivalent values
4905    and do not have hard regs; replace them by their equivalents.  */
4906
4907 static rtx
4908 subst_reg_equivs (ad)
4909      rtx ad;
4910 {
4911   register RTX_CODE code = GET_CODE (ad);
4912   register int i;
4913   register char *fmt;
4914
4915   switch (code)
4916     {
4917     case HIGH:
4918     case CONST_INT:
4919     case CONST:
4920     case CONST_DOUBLE:
4921     case SYMBOL_REF:
4922     case LABEL_REF:
4923     case PC:
4924     case CC0:
4925       return ad;
4926
4927     case REG:
4928       {
4929         register int regno = REGNO (ad);
4930
4931         if (reg_equiv_constant[regno] != 0)
4932           {
4933             subst_reg_equivs_changed = 1;
4934             return reg_equiv_constant[regno];
4935           }
4936       }
4937       return ad;
4938
4939     case PLUS:
4940       /* Quickly dispose of a common case.  */
4941       if (XEXP (ad, 0) == frame_pointer_rtx
4942           && GET_CODE (XEXP (ad, 1)) == CONST_INT)
4943         return ad;
4944       break;
4945       
4946     default:
4947       break;
4948     }
4949
4950   fmt = GET_RTX_FORMAT (code);
4951   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4952     if (fmt[i] == 'e')
4953       XEXP (ad, i) = subst_reg_equivs (XEXP (ad, i));
4954   return ad;
4955 }
4956 \f
4957 /* Compute the sum of X and Y, making canonicalizations assumed in an
4958    address, namely: sum constant integers, surround the sum of two
4959    constants with a CONST, put the constant as the second operand, and
4960    group the constant on the outermost sum.
4961
4962    This routine assumes both inputs are already in canonical form.  */
4963
4964 rtx
4965 form_sum (x, y)
4966      rtx x, y;
4967 {
4968   rtx tem;
4969   enum machine_mode mode = GET_MODE (x);
4970
4971   if (mode == VOIDmode)
4972     mode = GET_MODE (y);
4973
4974   if (mode == VOIDmode)
4975     mode = Pmode;
4976
4977   if (GET_CODE (x) == CONST_INT)
4978     return plus_constant (y, INTVAL (x));
4979   else if (GET_CODE (y) == CONST_INT)
4980     return plus_constant (x, INTVAL (y));
4981   else if (CONSTANT_P (x))
4982     tem = x, x = y, y = tem;
4983
4984   if (GET_CODE (x) == PLUS && CONSTANT_P (XEXP (x, 1)))
4985     return form_sum (XEXP (x, 0), form_sum (XEXP (x, 1), y));
4986
4987   /* Note that if the operands of Y are specified in the opposite
4988      order in the recursive calls below, infinite recursion will occur.  */
4989   if (GET_CODE (y) == PLUS && CONSTANT_P (XEXP (y, 1)))
4990     return form_sum (form_sum (x, XEXP (y, 0)), XEXP (y, 1));
4991
4992   /* If both constant, encapsulate sum.  Otherwise, just form sum.  A
4993      constant will have been placed second.  */
4994   if (CONSTANT_P (x) && CONSTANT_P (y))
4995     {
4996       if (GET_CODE (x) == CONST)
4997         x = XEXP (x, 0);
4998       if (GET_CODE (y) == CONST)
4999         y = XEXP (y, 0);
5000
5001       return gen_rtx_CONST (VOIDmode, gen_rtx_PLUS (mode, x, y));
5002     }
5003
5004   return gen_rtx_PLUS (mode, x, y);
5005 }
5006 \f
5007 /* If ADDR is a sum containing a pseudo register that should be
5008    replaced with a constant (from reg_equiv_constant),
5009    return the result of doing so, and also apply the associative
5010    law so that the result is more likely to be a valid address.
5011    (But it is not guaranteed to be one.)
5012
5013    Note that at most one register is replaced, even if more are
5014    replaceable.  Also, we try to put the result into a canonical form
5015    so it is more likely to be a valid address.
5016
5017    In all other cases, return ADDR.  */
5018
5019 static rtx
5020 subst_indexed_address (addr)
5021      rtx addr;
5022 {
5023   rtx op0 = 0, op1 = 0, op2 = 0;
5024   rtx tem;
5025   int regno;
5026
5027   if (GET_CODE (addr) == PLUS)
5028     {
5029       /* Try to find a register to replace.  */
5030       op0 = XEXP (addr, 0), op1 = XEXP (addr, 1), op2 = 0;
5031       if (GET_CODE (op0) == REG
5032           && (regno = REGNO (op0)) >= FIRST_PSEUDO_REGISTER
5033           && reg_renumber[regno] < 0
5034           && reg_equiv_constant[regno] != 0)
5035         op0 = reg_equiv_constant[regno];
5036       else if (GET_CODE (op1) == REG
5037           && (regno = REGNO (op1)) >= FIRST_PSEUDO_REGISTER
5038           && reg_renumber[regno] < 0
5039           && reg_equiv_constant[regno] != 0)
5040         op1 = reg_equiv_constant[regno];
5041       else if (GET_CODE (op0) == PLUS
5042                && (tem = subst_indexed_address (op0)) != op0)
5043         op0 = tem;
5044       else if (GET_CODE (op1) == PLUS
5045                && (tem = subst_indexed_address (op1)) != op1)
5046         op1 = tem;
5047       else
5048         return addr;
5049
5050       /* Pick out up to three things to add.  */
5051       if (GET_CODE (op1) == PLUS)
5052         op2 = XEXP (op1, 1), op1 = XEXP (op1, 0);
5053       else if (GET_CODE (op0) == PLUS)
5054         op2 = op1, op1 = XEXP (op0, 1), op0 = XEXP (op0, 0);
5055
5056       /* Compute the sum.  */
5057       if (op2 != 0)
5058         op1 = form_sum (op1, op2);
5059       if (op1 != 0)
5060         op0 = form_sum (op0, op1);
5061
5062       return op0;
5063     }
5064   return addr;
5065 }
5066 \f
5067 /* Record the pseudo registers we must reload into hard registers in a
5068    subexpression of a would-be memory address, X referring to a value
5069    in mode MODE.  (This function is not called if the address we find
5070    is strictly valid.)
5071
5072    CONTEXT = 1 means we are considering regs as index regs,
5073    = 0 means we are considering them as base regs.
5074
5075    OPNUM and TYPE specify the purpose of any reloads made.
5076
5077    IND_LEVELS says how many levels of indirect addressing are
5078    supported at this point in the address.
5079
5080    INSN, if nonzero, is the insn in which we do the reload.  It is used
5081    to determine if we may generate output reloads.
5082
5083    We return nonzero if X, as a whole, is reloaded or replaced.  */
5084
5085 /* Note that we take shortcuts assuming that no multi-reg machine mode
5086    occurs as part of an address.
5087    Also, this is not fully machine-customizable; it works for machines
5088    such as vaxes and 68000's and 32000's, but other possible machines
5089    could have addressing modes that this does not handle right.  */
5090
5091 static int
5092 find_reloads_address_1 (mode, x, context, loc, opnum, type, ind_levels, insn)
5093      enum machine_mode mode;
5094      rtx x;
5095      int context;
5096      rtx *loc;
5097      int opnum;
5098      enum reload_type type;
5099      int ind_levels;
5100      rtx insn;
5101 {
5102   register RTX_CODE code = GET_CODE (x);
5103
5104   switch (code)
5105     {
5106     case PLUS:
5107       {
5108         register rtx orig_op0 = XEXP (x, 0);
5109         register rtx orig_op1 = XEXP (x, 1);
5110         register RTX_CODE code0 = GET_CODE (orig_op0);
5111         register RTX_CODE code1 = GET_CODE (orig_op1);
5112         register rtx op0 = orig_op0;
5113         register rtx op1 = orig_op1;
5114
5115         if (GET_CODE (op0) == SUBREG)
5116           {
5117             op0 = SUBREG_REG (op0);
5118             code0 = GET_CODE (op0);
5119             if (code0 == REG && REGNO (op0) < FIRST_PSEUDO_REGISTER)
5120               op0 = gen_rtx_REG (word_mode,
5121                                  REGNO (op0) + SUBREG_WORD (orig_op0));
5122           }
5123
5124         if (GET_CODE (op1) == SUBREG)
5125           {
5126             op1 = SUBREG_REG (op1);
5127             code1 = GET_CODE (op1);
5128             if (code1 == REG && REGNO (op1) < FIRST_PSEUDO_REGISTER)
5129               op1 = gen_rtx_REG (GET_MODE (op1),
5130                                  REGNO (op1) + SUBREG_WORD (orig_op1));
5131           }
5132
5133         if (code0 == MULT || code0 == SIGN_EXTEND || code0 == TRUNCATE 
5134             || code0 == ZERO_EXTEND || code1 == MEM)
5135           {
5136             find_reloads_address_1 (mode, orig_op0, 1, &XEXP (x, 0), opnum,
5137                                     type, ind_levels, insn);
5138             find_reloads_address_1 (mode, orig_op1, 0, &XEXP (x, 1), opnum,
5139                                     type, ind_levels, insn);
5140           }
5141
5142         else if (code1 == MULT || code1 == SIGN_EXTEND || code1 == TRUNCATE
5143                  || code1 == ZERO_EXTEND || code0 == MEM)
5144           {
5145             find_reloads_address_1 (mode, orig_op0, 0, &XEXP (x, 0), opnum,
5146                                     type, ind_levels, insn);
5147             find_reloads_address_1 (mode, orig_op1, 1, &XEXP (x, 1), opnum,
5148                                     type, ind_levels, insn);
5149           }
5150
5151         else if (code0 == CONST_INT || code0 == CONST
5152                  || code0 == SYMBOL_REF || code0 == LABEL_REF)
5153           find_reloads_address_1 (mode, orig_op1, 0, &XEXP (x, 1), opnum,
5154                                   type, ind_levels, insn);
5155
5156         else if (code1 == CONST_INT || code1 == CONST
5157                  || code1 == SYMBOL_REF || code1 == LABEL_REF)
5158           find_reloads_address_1 (mode, orig_op0, 0, &XEXP (x, 0), opnum,
5159                                   type, ind_levels, insn);
5160
5161         else if (code0 == REG && code1 == REG)
5162           {
5163             if (REG_OK_FOR_INDEX_P (op0)
5164                 && REG_MODE_OK_FOR_BASE_P (op1, mode))
5165               return 0;
5166             else if (REG_OK_FOR_INDEX_P (op1)
5167                      && REG_MODE_OK_FOR_BASE_P (op0, mode))
5168               return 0;
5169             else if (REG_MODE_OK_FOR_BASE_P (op1, mode))
5170               find_reloads_address_1 (mode, orig_op0, 1, &XEXP (x, 0), opnum,
5171                                       type, ind_levels, insn);
5172             else if (REG_MODE_OK_FOR_BASE_P (op0, mode))
5173               find_reloads_address_1 (mode, orig_op1, 1, &XEXP (x, 1), opnum,
5174                                       type, ind_levels, insn);
5175             else if (REG_OK_FOR_INDEX_P (op1))
5176               find_reloads_address_1 (mode, orig_op0, 0, &XEXP (x, 0), opnum,
5177                                       type, ind_levels, insn);
5178             else if (REG_OK_FOR_INDEX_P (op0))
5179               find_reloads_address_1 (mode, orig_op1, 0, &XEXP (x, 1), opnum,
5180                                       type, ind_levels, insn);
5181             else
5182               {
5183                 find_reloads_address_1 (mode, orig_op0, 1, &XEXP (x, 0), opnum,
5184                                         type, ind_levels, insn);
5185                 find_reloads_address_1 (mode, orig_op1, 0, &XEXP (x, 1), opnum,
5186                                         type, ind_levels, insn);
5187               }
5188           }
5189
5190         else if (code0 == REG)
5191           {
5192             find_reloads_address_1 (mode, orig_op0, 1, &XEXP (x, 0), opnum,
5193                                     type, ind_levels, insn);
5194             find_reloads_address_1 (mode, orig_op1, 0, &XEXP (x, 1), opnum,
5195                                     type, ind_levels, insn);
5196           }
5197
5198         else if (code1 == REG)
5199           {
5200             find_reloads_address_1 (mode, orig_op1, 1, &XEXP (x, 1), opnum,
5201                                     type, ind_levels, insn);
5202             find_reloads_address_1 (mode, orig_op0, 0, &XEXP (x, 0), opnum,
5203                                     type, ind_levels, insn);
5204           }
5205       }
5206
5207       return 0;
5208
5209     case POST_INC:
5210     case POST_DEC:
5211     case PRE_INC:
5212     case PRE_DEC:
5213       if (GET_CODE (XEXP (x, 0)) == REG)
5214         {
5215           register int regno = REGNO (XEXP (x, 0));
5216           int value = 0;
5217           rtx x_orig = x;
5218
5219           /* A register that is incremented cannot be constant!  */
5220           if (regno >= FIRST_PSEUDO_REGISTER
5221               && reg_equiv_constant[regno] != 0)
5222             abort ();
5223
5224           /* Handle a register that is equivalent to a memory location
5225              which cannot be addressed directly.  */
5226           if (reg_equiv_address[regno] != 0)
5227             {
5228               rtx tem = make_memloc (XEXP (x, 0), regno);
5229               /* First reload the memory location's address.
5230                  We can't use ADDR_TYPE (type) here, because we need to
5231                  write back the value after reading it, hence we actually
5232                  need two registers.  */
5233               find_reloads_address (GET_MODE (tem), 0, XEXP (tem, 0),
5234                                     &XEXP (tem, 0), opnum, type,
5235                                     ind_levels, insn);
5236               /* Put this inside a new increment-expression.  */
5237               x = gen_rtx_fmt_e (GET_CODE (x), GET_MODE (x), tem);
5238               /* Proceed to reload that, as if it contained a register.  */
5239             }
5240
5241           /* If we have a hard register that is ok as an index,
5242              don't make a reload.  If an autoincrement of a nice register
5243              isn't "valid", it must be that no autoincrement is "valid".
5244              If that is true and something made an autoincrement anyway,
5245              this must be a special context where one is allowed.
5246              (For example, a "push" instruction.)
5247              We can't improve this address, so leave it alone.  */
5248
5249           /* Otherwise, reload the autoincrement into a suitable hard reg
5250              and record how much to increment by.  */
5251
5252           if (reg_renumber[regno] >= 0)
5253             regno = reg_renumber[regno];
5254           if ((regno >= FIRST_PSEUDO_REGISTER
5255                || !(context ? REGNO_OK_FOR_INDEX_P (regno)
5256                     : REGNO_MODE_OK_FOR_BASE_P (regno, mode))))
5257             {
5258 #ifdef AUTO_INC_DEC
5259               register rtx link;
5260 #endif
5261               int reloadnum;
5262
5263               /* If we can output the register afterwards, do so, this
5264                  saves the extra update.
5265                  We can do so if we have an INSN - i.e. no JUMP_INSN nor
5266                  CALL_INSN - and it does not set CC0.
5267                  But don't do this if we cannot directly address the
5268                  memory location, since this will make it harder to
5269                  reuse address reloads, and increases register pressure.
5270                  Also don't do this if we can probably update x directly.  */
5271               rtx equiv = reg_equiv_mem[regno];
5272               int icode = (int) add_optab->handlers[(int) Pmode].insn_code;
5273               if (insn && GET_CODE (insn) == INSN && equiv
5274 #ifdef HAVE_cc0
5275                   && ! sets_cc0_p (PATTERN (insn))
5276 #endif
5277                   && ! (icode != CODE_FOR_nothing
5278                         && (*insn_operand_predicate[icode][0]) (equiv, Pmode)
5279                         && (*insn_operand_predicate[icode][1]) (equiv, Pmode)))
5280                 {
5281                   loc = &XEXP (x, 0);
5282                   x = XEXP (x, 0);
5283                   reloadnum
5284                     = push_reload (x, x, loc, loc,
5285                                    (context
5286                                     ? reload_address_index_reg_class
5287                                     : reload_address_base_reg_class),
5288                                     GET_MODE (x), GET_MODE (x), 0, 0,
5289                                     opnum, RELOAD_OTHER);
5290                 }
5291               else
5292                 {
5293                   reloadnum
5294                     = push_reload (x, NULL_RTX, loc, NULL_PTR,
5295                                    (context
5296                                     ? reload_address_index_reg_class
5297                                     : reload_address_base_reg_class),
5298                                    GET_MODE (x), GET_MODE (x), 0, 0,
5299                                    opnum, type);
5300                   reload_inc[reloadnum]
5301                     = find_inc_amount (PATTERN (this_insn), XEXP (x_orig, 0));
5302     
5303                   value = 1;
5304                 }
5305
5306 #ifdef AUTO_INC_DEC
5307               /* Update the REG_INC notes.  */
5308
5309               for (link = REG_NOTES (this_insn);
5310                    link; link = XEXP (link, 1))
5311                 if (REG_NOTE_KIND (link) == REG_INC
5312                     && REGNO (XEXP (link, 0)) == REGNO (XEXP (x_orig, 0)))
5313                   push_replacement (&XEXP (link, 0), reloadnum, VOIDmode);
5314 #endif
5315             }
5316           return value;
5317         }
5318
5319       else if (GET_CODE (XEXP (x, 0)) == MEM)
5320         {
5321           /* This is probably the result of a substitution, by eliminate_regs,
5322              of an equivalent address for a pseudo that was not allocated to a
5323              hard register.  Verify that the specified address is valid and
5324              reload it into a register.  */
5325           rtx tem = XEXP (x, 0);
5326           register rtx link;
5327           int reloadnum;
5328
5329           /* Since we know we are going to reload this item, don't decrement
5330              for the indirection level.
5331
5332              Note that this is actually conservative:  it would be slightly
5333              more efficient to use the value of SPILL_INDIRECT_LEVELS from
5334              reload1.c here.  */
5335           /* We can't use ADDR_TYPE (type) here, because we need to
5336              write back the value after reading it, hence we actually
5337              need two registers.  */
5338           find_reloads_address (GET_MODE (x), &XEXP (x, 0),
5339                                 XEXP (XEXP (x, 0), 0), &XEXP (XEXP (x, 0), 0),
5340                                 opnum, type, ind_levels, insn);
5341
5342           reloadnum = push_reload (x, NULL_RTX, loc, NULL_PTR,
5343                                    (context
5344                                     ? reload_address_index_reg_class
5345                                     : reload_address_base_reg_class),
5346                                    GET_MODE (x), VOIDmode, 0, 0, opnum, type);
5347           reload_inc[reloadnum]
5348             = find_inc_amount (PATTERN (this_insn), XEXP (x, 0));
5349
5350           link = FIND_REG_INC_NOTE (this_insn, tem);
5351           if (link != 0)
5352             push_replacement (&XEXP (link, 0), reloadnum, VOIDmode);
5353
5354           return 1;
5355         }
5356       return 0;
5357
5358     case MEM:
5359       /* This is probably the result of a substitution, by eliminate_regs, of
5360          an equivalent address for a pseudo that was not allocated to a hard
5361          register.  Verify that the specified address is valid and reload it
5362          into a register.
5363
5364          Since we know we are going to reload this item, don't decrement for
5365          the indirection level.
5366
5367          Note that this is actually conservative:  it would be slightly more
5368          efficient to use the value of SPILL_INDIRECT_LEVELS from
5369          reload1.c here.  */
5370
5371       find_reloads_address (GET_MODE (x), loc, XEXP (x, 0), &XEXP (x, 0),
5372                             opnum, ADDR_TYPE (type), ind_levels, insn);
5373       push_reload (*loc, NULL_RTX, loc, NULL_PTR,
5374                    (context ? reload_address_index_reg_class
5375                     : reload_address_base_reg_class),
5376                    GET_MODE (x), VOIDmode, 0, 0, opnum, type);
5377       return 1;
5378
5379     case REG:
5380       {
5381         register int regno = REGNO (x);
5382
5383         if (reg_equiv_constant[regno] != 0)
5384           {
5385             find_reloads_address_part (reg_equiv_constant[regno], loc, 
5386                                        (context
5387                                         ? reload_address_index_reg_class
5388                                         : reload_address_base_reg_class),
5389                                        GET_MODE (x), opnum, type, ind_levels);
5390             return 1;
5391           }
5392
5393 #if 0 /* This might screw code in reload1.c to delete prior output-reload
5394          that feeds this insn.  */
5395         if (reg_equiv_mem[regno] != 0)
5396           {
5397             push_reload (reg_equiv_mem[regno], NULL_RTX, loc, NULL_PTR,
5398                          (context
5399                           ? reload_address_index_reg_class
5400                           : reload_address_base_reg_class),
5401                          GET_MODE (x), VOIDmode, 0, 0, opnum, type);
5402             return 1;
5403           }
5404 #endif
5405
5406         if (reg_equiv_address[regno] != 0)
5407           {
5408             x = make_memloc (x, regno);
5409             find_reloads_address (GET_MODE (x), 0, XEXP (x, 0), &XEXP (x, 0),
5410                                   opnum, ADDR_TYPE (type), ind_levels, insn);
5411           }
5412
5413         if (reg_renumber[regno] >= 0)
5414           regno = reg_renumber[regno];
5415
5416         if ((regno >= FIRST_PSEUDO_REGISTER
5417              || !(context ? REGNO_OK_FOR_INDEX_P (regno)
5418                   : REGNO_MODE_OK_FOR_BASE_P (regno, mode))))
5419           {
5420             push_reload (x, NULL_RTX, loc, NULL_PTR,
5421                          (context
5422                           ? reload_address_index_reg_class
5423                           : reload_address_base_reg_class),
5424                          GET_MODE (x), VOIDmode, 0, 0, opnum, type);
5425             return 1;
5426           }
5427
5428         /* If a register appearing in an address is the subject of a CLOBBER
5429            in this insn, reload it into some other register to be safe.
5430            The CLOBBER is supposed to make the register unavailable
5431            from before this insn to after it.  */
5432         if (regno_clobbered_p (regno, this_insn))
5433           {
5434             push_reload (x, NULL_RTX, loc, NULL_PTR,
5435                          (context
5436                           ? reload_address_index_reg_class
5437                           : reload_address_base_reg_class),
5438                          GET_MODE (x), VOIDmode, 0, 0, opnum, type);
5439             return 1;
5440           }
5441       }
5442       return 0;
5443
5444     case SUBREG:
5445       if (GET_CODE (SUBREG_REG (x)) == REG)
5446         {
5447           /* If this is a SUBREG of a hard register and the resulting register
5448              is of the wrong class, reload the whole SUBREG.  This avoids
5449              needless copies if SUBREG_REG is multi-word.  */
5450           if (REGNO (SUBREG_REG (x)) < FIRST_PSEUDO_REGISTER)
5451             {
5452               int regno = REGNO (SUBREG_REG (x)) + SUBREG_WORD (x);
5453
5454               if (! (context ? REGNO_OK_FOR_INDEX_P (regno)
5455                      : REGNO_MODE_OK_FOR_BASE_P (regno, mode)))
5456                 {
5457                   push_reload (x, NULL_RTX, loc, NULL_PTR,
5458                                (context
5459                                 ? reload_address_index_reg_class
5460                                 : reload_address_base_reg_class),
5461                                GET_MODE (x), VOIDmode, 0, 0, opnum, type);
5462                   return 1;
5463                 }
5464             }
5465           /* If this is a SUBREG of a pseudo-register, and the pseudo-register
5466              is larger than the class size, then reload the whole SUBREG.  */
5467           else
5468             {
5469               enum reg_class class = (context
5470                                       ? reload_address_index_reg_class
5471                                       : reload_address_base_reg_class);
5472               if (CLASS_MAX_NREGS (class, GET_MODE (SUBREG_REG (x)))
5473                   > reg_class_size[class])
5474                 {
5475                   push_reload (x, NULL_RTX, loc, NULL_PTR, class,
5476                                GET_MODE (x), VOIDmode, 0, 0, opnum, type);
5477                   return 1;
5478                 }
5479             }
5480         }
5481       break;
5482       
5483     default:
5484       break;
5485     }
5486
5487   {
5488     register char *fmt = GET_RTX_FORMAT (code);
5489     register int i;
5490
5491     for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
5492       {
5493         if (fmt[i] == 'e')
5494           find_reloads_address_1 (mode, XEXP (x, i), context, &XEXP (x, i),
5495                                   opnum, type, ind_levels, insn);
5496       }
5497   }
5498
5499   return 0;
5500 }
5501 \f
5502 /* X, which is found at *LOC, is a part of an address that needs to be
5503    reloaded into a register of class CLASS.  If X is a constant, or if
5504    X is a PLUS that contains a constant, check that the constant is a
5505    legitimate operand and that we are supposed to be able to load
5506    it into the register.
5507
5508    If not, force the constant into memory and reload the MEM instead.
5509
5510    MODE is the mode to use, in case X is an integer constant.
5511
5512    OPNUM and TYPE describe the purpose of any reloads made.
5513
5514    IND_LEVELS says how many levels of indirect addressing this machine
5515    supports.  */
5516
5517 static void
5518 find_reloads_address_part (x, loc, class, mode, opnum, type, ind_levels)
5519      rtx x;
5520      rtx *loc;
5521      enum reg_class class;
5522      enum machine_mode mode;
5523      int opnum;
5524      enum reload_type type;
5525      int ind_levels;
5526 {
5527   if (CONSTANT_P (x)
5528       && (! LEGITIMATE_CONSTANT_P (x)
5529           || PREFERRED_RELOAD_CLASS (x, class) == NO_REGS))
5530     {
5531       rtx tem = x = force_const_mem (mode, x);
5532       find_reloads_address (mode, &tem, XEXP (tem, 0), &XEXP (tem, 0),
5533                             opnum, type, ind_levels, 0);
5534     }
5535
5536   else if (GET_CODE (x) == PLUS
5537            && CONSTANT_P (XEXP (x, 1))
5538            && (! LEGITIMATE_CONSTANT_P (XEXP (x, 1))
5539                || PREFERRED_RELOAD_CLASS (XEXP (x, 1), class) == NO_REGS))
5540     {
5541       rtx tem = force_const_mem (GET_MODE (x), XEXP (x, 1));
5542
5543       x = gen_rtx_PLUS (GET_MODE (x), XEXP (x, 0), tem);
5544       find_reloads_address (mode, &tem, XEXP (tem, 0), &XEXP (tem, 0),
5545                             opnum, type, ind_levels, 0);
5546     }
5547
5548   push_reload (x, NULL_RTX, loc, NULL_PTR, class,
5549                mode, VOIDmode, 0, 0, opnum, type);
5550 }
5551 \f
5552 /* Substitute into the current INSN the registers into which we have reloaded
5553    the things that need reloading.  The array `replacements'
5554    says contains the locations of all pointers that must be changed
5555    and says what to replace them with.
5556
5557    Return the rtx that X translates into; usually X, but modified.  */
5558
5559 void
5560 subst_reloads ()
5561 {
5562   register int i;
5563
5564   for (i = 0; i < n_replacements; i++)
5565     {
5566       register struct replacement *r = &replacements[i];
5567       register rtx reloadreg = reload_reg_rtx[r->what];
5568       if (reloadreg)
5569         {
5570           /* Encapsulate RELOADREG so its machine mode matches what
5571              used to be there.  Note that gen_lowpart_common will
5572              do the wrong thing if RELOADREG is multi-word.  RELOADREG
5573              will always be a REG here.  */
5574           if (GET_MODE (reloadreg) != r->mode && r->mode != VOIDmode)
5575             reloadreg = gen_rtx_REG (r->mode, REGNO (reloadreg));
5576
5577           /* If we are putting this into a SUBREG and RELOADREG is a
5578              SUBREG, we would be making nested SUBREGs, so we have to fix
5579              this up.  Note that r->where == &SUBREG_REG (*r->subreg_loc).  */
5580
5581           if (r->subreg_loc != 0 && GET_CODE (reloadreg) == SUBREG)
5582             {
5583               if (GET_MODE (*r->subreg_loc)
5584                   == GET_MODE (SUBREG_REG (reloadreg)))
5585                 *r->subreg_loc = SUBREG_REG (reloadreg);
5586               else
5587                 {
5588                   *r->where = SUBREG_REG (reloadreg);
5589                   SUBREG_WORD (*r->subreg_loc) += SUBREG_WORD (reloadreg);
5590                 }
5591             }
5592           else
5593             *r->where = reloadreg;
5594         }
5595       /* If reload got no reg and isn't optional, something's wrong.  */
5596       else if (! reload_optional[r->what])
5597         abort ();
5598     }
5599 }
5600 \f
5601 /* Make a copy of any replacements being done into X and move those copies
5602    to locations in Y, a copy of X.  We only look at the highest level of
5603    the RTL.  */
5604
5605 void
5606 copy_replacements (x, y)
5607      rtx x;
5608      rtx y;
5609 {
5610   int i, j;
5611   enum rtx_code code = GET_CODE (x);
5612   char *fmt = GET_RTX_FORMAT (code);
5613   struct replacement *r;
5614
5615   /* We can't support X being a SUBREG because we might then need to know its
5616      location if something inside it was replaced.  */
5617   if (code == SUBREG)
5618     abort ();
5619
5620   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
5621     if (fmt[i] == 'e')
5622       for (j = 0; j < n_replacements; j++)
5623         {
5624           if (replacements[j].subreg_loc == &XEXP (x, i))
5625             {
5626               r = &replacements[n_replacements++];
5627               r->where = replacements[j].where;
5628               r->subreg_loc = &XEXP (y, i);
5629               r->what = replacements[j].what;
5630               r->mode = replacements[j].mode;
5631             }
5632           else if (replacements[j].where == &XEXP (x, i))
5633             {
5634               r = &replacements[n_replacements++];
5635               r->where = &XEXP (y, i);
5636               r->subreg_loc = 0;
5637               r->what = replacements[j].what;
5638               r->mode = replacements[j].mode;
5639             }
5640         }
5641 }
5642
5643 /* Change any replacements being done to *X to be done to *Y */
5644
5645 void
5646 move_replacements (x, y)
5647      rtx *x;
5648      rtx *y;
5649 {
5650   int i;
5651
5652   for (i = 0; i < n_replacements; i++)
5653     if (replacements[i].subreg_loc == x)
5654       replacements[i].subreg_loc = y;
5655     else if (replacements[i].where == x)
5656       {
5657         replacements[i].where = y;
5658         replacements[i].subreg_loc = 0;
5659       }
5660 }
5661 \f
5662 /* If LOC was scheduled to be replaced by something, return the replacement.
5663    Otherwise, return *LOC.  */
5664
5665 rtx
5666 find_replacement (loc)
5667      rtx *loc;
5668 {
5669   struct replacement *r;
5670
5671   for (r = &replacements[0]; r < &replacements[n_replacements]; r++)
5672     {
5673       rtx reloadreg = reload_reg_rtx[r->what];
5674
5675       if (reloadreg && r->where == loc)
5676         {
5677           if (r->mode != VOIDmode && GET_MODE (reloadreg) != r->mode)
5678             reloadreg = gen_rtx_REG (r->mode, REGNO (reloadreg));
5679
5680           return reloadreg;
5681         }
5682       else if (reloadreg && r->subreg_loc == loc)
5683         {
5684           /* RELOADREG must be either a REG or a SUBREG.
5685
5686              ??? Is it actually still ever a SUBREG?  If so, why?  */
5687
5688           if (GET_CODE (reloadreg) == REG)
5689             return gen_rtx_REG (GET_MODE (*loc),
5690                                 REGNO (reloadreg) + SUBREG_WORD (*loc));
5691           else if (GET_MODE (reloadreg) == GET_MODE (*loc))
5692             return reloadreg;
5693           else
5694             return gen_rtx_SUBREG (GET_MODE (*loc), SUBREG_REG (reloadreg),
5695                                    SUBREG_WORD (reloadreg) + SUBREG_WORD (*loc));
5696         }
5697     }
5698
5699   /* If *LOC is a PLUS, MINUS, or MULT, see if a replacement is scheduled for
5700      what's inside and make a new rtl if so.  */
5701   if (GET_CODE (*loc) == PLUS || GET_CODE (*loc) == MINUS
5702       || GET_CODE (*loc) == MULT)
5703     {
5704       rtx x = find_replacement (&XEXP (*loc, 0));
5705       rtx y = find_replacement (&XEXP (*loc, 1));
5706
5707       if (x != XEXP (*loc, 0) || y != XEXP (*loc, 1))
5708         return gen_rtx_fmt_ee (GET_CODE (*loc), GET_MODE (*loc), x, y);
5709     }
5710
5711   return *loc;
5712 }
5713 \f
5714 /* Return nonzero if register in range [REGNO, ENDREGNO)
5715    appears either explicitly or implicitly in X
5716    other than being stored into (except for earlyclobber operands).
5717
5718    References contained within the substructure at LOC do not count.
5719    LOC may be zero, meaning don't ignore anything.
5720
5721    This is similar to refers_to_regno_p in rtlanal.c except that we
5722    look at equivalences for pseudos that didn't get hard registers.  */
5723
5724 int
5725 refers_to_regno_for_reload_p (regno, endregno, x, loc)
5726      int regno, endregno;
5727      rtx x;
5728      rtx *loc;
5729 {
5730   register int i;
5731   register RTX_CODE code;
5732   register char *fmt;
5733
5734   if (x == 0)
5735     return 0;
5736
5737  repeat:
5738   code = GET_CODE (x);
5739
5740   switch (code)
5741     {
5742     case REG:
5743       i = REGNO (x);
5744
5745       /* If this is a pseudo, a hard register must not have been allocated.
5746          X must therefore either be a constant or be in memory.  */
5747       if (i >= FIRST_PSEUDO_REGISTER)
5748         {
5749           if (reg_equiv_memory_loc[i])
5750             return refers_to_regno_for_reload_p (regno, endregno,
5751                                                  reg_equiv_memory_loc[i],
5752                                                  NULL_PTR);
5753
5754           if (reg_equiv_constant[i])
5755             return 0;
5756
5757           abort ();
5758         }
5759
5760       return (endregno > i
5761               && regno < i + (i < FIRST_PSEUDO_REGISTER 
5762                               ? HARD_REGNO_NREGS (i, GET_MODE (x))
5763                               : 1));
5764
5765     case SUBREG:
5766       /* If this is a SUBREG of a hard reg, we can see exactly which
5767          registers are being modified.  Otherwise, handle normally.  */
5768       if (GET_CODE (SUBREG_REG (x)) == REG
5769           && REGNO (SUBREG_REG (x)) < FIRST_PSEUDO_REGISTER)
5770         {
5771           int inner_regno = REGNO (SUBREG_REG (x)) + SUBREG_WORD (x);
5772           int inner_endregno
5773             = inner_regno + (inner_regno < FIRST_PSEUDO_REGISTER
5774                              ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
5775
5776           return endregno > inner_regno && regno < inner_endregno;
5777         }
5778       break;
5779
5780     case CLOBBER:
5781     case SET:
5782       if (&SET_DEST (x) != loc
5783           /* Note setting a SUBREG counts as referring to the REG it is in for
5784              a pseudo but not for hard registers since we can
5785              treat each word individually.  */
5786           && ((GET_CODE (SET_DEST (x)) == SUBREG
5787                && loc != &SUBREG_REG (SET_DEST (x))
5788                && GET_CODE (SUBREG_REG (SET_DEST (x))) == REG
5789                && REGNO (SUBREG_REG (SET_DEST (x))) >= FIRST_PSEUDO_REGISTER
5790                && refers_to_regno_for_reload_p (regno, endregno,
5791                                                 SUBREG_REG (SET_DEST (x)),
5792                                                 loc))
5793               /* If the output is an earlyclobber operand, this is
5794                  a conflict.  */
5795               || ((GET_CODE (SET_DEST (x)) != REG
5796                    || earlyclobber_operand_p (SET_DEST (x)))
5797                   && refers_to_regno_for_reload_p (regno, endregno,
5798                                                    SET_DEST (x), loc))))
5799         return 1;
5800
5801       if (code == CLOBBER || loc == &SET_SRC (x))
5802         return 0;
5803       x = SET_SRC (x);
5804       goto repeat;
5805       
5806     default:
5807       break;
5808     }
5809
5810   /* X does not match, so try its subexpressions.  */
5811
5812   fmt = GET_RTX_FORMAT (code);
5813   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
5814     {
5815       if (fmt[i] == 'e' && loc != &XEXP (x, i))
5816         {
5817           if (i == 0)
5818             {
5819               x = XEXP (x, 0);
5820               goto repeat;
5821             }
5822           else
5823             if (refers_to_regno_for_reload_p (regno, endregno,
5824                                               XEXP (x, i), loc))
5825               return 1;
5826         }
5827       else if (fmt[i] == 'E')
5828         {
5829           register int j;
5830           for (j = XVECLEN (x, i) - 1; j >=0; j--)
5831             if (loc != &XVECEXP (x, i, j)
5832                 && refers_to_regno_for_reload_p (regno, endregno,
5833                                                  XVECEXP (x, i, j), loc))
5834               return 1;
5835         }
5836     }
5837   return 0;
5838 }
5839
5840 /* Nonzero if modifying X will affect IN.  If X is a register or a SUBREG,
5841    we check if any register number in X conflicts with the relevant register
5842    numbers.  If X is a constant, return 0.  If X is a MEM, return 1 iff IN
5843    contains a MEM (we don't bother checking for memory addresses that can't
5844    conflict because we expect this to be a rare case. 
5845
5846    This function is similar to reg_overlap_mention_p in rtlanal.c except
5847    that we look at equivalences for pseudos that didn't get hard registers.  */
5848
5849 int
5850 reg_overlap_mentioned_for_reload_p (x, in)
5851      rtx x, in;
5852 {
5853   int regno, endregno;
5854
5855   /* Overly conservative.  */
5856   if (GET_CODE (x) == STRICT_LOW_PART)
5857     x = XEXP (x, 0);
5858
5859   /* If either argument is a constant, then modifying X can not affect IN.  */
5860   if (CONSTANT_P (x) || CONSTANT_P (in))
5861     return 0;
5862   else if (GET_CODE (x) == SUBREG)
5863     {
5864       regno = REGNO (SUBREG_REG (x));
5865       if (regno < FIRST_PSEUDO_REGISTER)
5866         regno += SUBREG_WORD (x);
5867     }
5868   else if (GET_CODE (x) == REG)
5869     {
5870       regno = REGNO (x);
5871
5872       /* If this is a pseudo, it must not have been assigned a hard register.
5873          Therefore, it must either be in memory or be a constant.  */
5874
5875       if (regno >= FIRST_PSEUDO_REGISTER)
5876         {
5877           if (reg_equiv_memory_loc[regno])
5878             return refers_to_mem_for_reload_p (in);
5879           else if (reg_equiv_constant[regno])
5880             return 0;
5881           abort ();
5882         }
5883     }
5884   else if (GET_CODE (x) == MEM)
5885     return refers_to_mem_for_reload_p (in);
5886   else if (GET_CODE (x) == SCRATCH || GET_CODE (x) == PC
5887            || GET_CODE (x) == CC0)
5888     return reg_mentioned_p (x, in);
5889   else
5890     abort ();
5891
5892   endregno = regno + (regno < FIRST_PSEUDO_REGISTER
5893                       ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
5894
5895   return refers_to_regno_for_reload_p (regno, endregno, in, NULL_PTR);
5896 }
5897
5898 /* Return nonzero if anything in X contains a MEM.  Look also for pseudo
5899    registers.  */
5900
5901 int
5902 refers_to_mem_for_reload_p (x)
5903      rtx x;
5904 {
5905   char *fmt;
5906   int i;
5907
5908   if (GET_CODE (x) == MEM)
5909     return 1;
5910
5911   if (GET_CODE (x) == REG)
5912     return (REGNO (x) >= FIRST_PSEUDO_REGISTER
5913             && reg_equiv_memory_loc[REGNO (x)]);
5914                         
5915   fmt = GET_RTX_FORMAT (GET_CODE (x));
5916   for (i = GET_RTX_LENGTH (GET_CODE (x)) - 1; i >= 0; i--)
5917     if (fmt[i] == 'e'
5918         && (GET_CODE (XEXP (x, i)) == MEM
5919             || refers_to_mem_for_reload_p (XEXP (x, i))))
5920       return 1;
5921   
5922   return 0;
5923 }
5924 \f
5925 /* Check the insns before INSN to see if there is a suitable register
5926    containing the same value as GOAL.
5927    If OTHER is -1, look for a register in class CLASS.
5928    Otherwise, just see if register number OTHER shares GOAL's value.
5929
5930    Return an rtx for the register found, or zero if none is found.
5931
5932    If RELOAD_REG_P is (short *)1,
5933    we reject any hard reg that appears in reload_reg_rtx
5934    because such a hard reg is also needed coming into this insn.
5935
5936    If RELOAD_REG_P is any other nonzero value,
5937    it is a vector indexed by hard reg number
5938    and we reject any hard reg whose element in the vector is nonnegative
5939    as well as any that appears in reload_reg_rtx.
5940
5941    If GOAL is zero, then GOALREG is a register number; we look
5942    for an equivalent for that register.
5943
5944    MODE is the machine mode of the value we want an equivalence for.
5945    If GOAL is nonzero and not VOIDmode, then it must have mode MODE.
5946
5947    This function is used by jump.c as well as in the reload pass.
5948
5949    If GOAL is the sum of the stack pointer and a constant, we treat it
5950    as if it were a constant except that sp is required to be unchanging.  */
5951
5952 rtx
5953 find_equiv_reg (goal, insn, class, other, reload_reg_p, goalreg, mode)
5954      register rtx goal;
5955      rtx insn;
5956      enum reg_class class;
5957      register int other;
5958      short *reload_reg_p;
5959      int goalreg;
5960      enum machine_mode mode;
5961 {
5962   register rtx p = insn;
5963   rtx goaltry, valtry, value, where;
5964   register rtx pat;
5965   register int regno = -1;
5966   int valueno;
5967   int goal_mem = 0;
5968   int goal_const = 0;
5969   int goal_mem_addr_varies = 0;
5970   int need_stable_sp = 0;
5971   int nregs;
5972   int valuenregs;
5973
5974   if (goal == 0)
5975     regno = goalreg;
5976   else if (GET_CODE (goal) == REG)
5977     regno = REGNO (goal);
5978   else if (GET_CODE (goal) == MEM)
5979     {
5980       enum rtx_code code = GET_CODE (XEXP (goal, 0));
5981       if (MEM_VOLATILE_P (goal))
5982         return 0;
5983       if (flag_float_store && GET_MODE_CLASS (GET_MODE (goal)) == MODE_FLOAT)
5984         return 0;
5985       /* An address with side effects must be reexecuted.  */
5986       switch (code)
5987         {
5988         case POST_INC:
5989         case PRE_INC:
5990         case POST_DEC:
5991         case PRE_DEC:
5992           return 0;
5993         default:
5994           break;
5995         }
5996       goal_mem = 1;
5997     }
5998   else if (CONSTANT_P (goal))
5999     goal_const = 1;
6000   else if (GET_CODE (goal) == PLUS
6001            && XEXP (goal, 0) == stack_pointer_rtx
6002            && CONSTANT_P (XEXP (goal, 1)))
6003     goal_const = need_stable_sp = 1;
6004   else if (GET_CODE (goal) == PLUS
6005            && XEXP (goal, 0) == frame_pointer_rtx
6006            && CONSTANT_P (XEXP (goal, 1)))
6007     goal_const = 1;
6008   else
6009     return 0;
6010
6011   /* On some machines, certain regs must always be rejected
6012      because they don't behave the way ordinary registers do.  */
6013   
6014 #ifdef OVERLAPPING_REGNO_P
6015    if (regno >= 0 && regno < FIRST_PSEUDO_REGISTER
6016        && OVERLAPPING_REGNO_P (regno))
6017      return 0;
6018 #endif      
6019
6020   /* Scan insns back from INSN, looking for one that copies
6021      a value into or out of GOAL.
6022      Stop and give up if we reach a label.  */
6023
6024   while (1)
6025     {
6026       p = PREV_INSN (p);
6027       if (p == 0 || GET_CODE (p) == CODE_LABEL)
6028         return 0;
6029       if (GET_CODE (p) == INSN
6030           /* If we don't want spill regs ...  */
6031           && (! (reload_reg_p != 0
6032                  && reload_reg_p != (short *) (HOST_WIDE_INT) 1)
6033           /* ... then ignore insns introduced by reload; they aren't useful
6034              and can cause results in reload_as_needed to be different
6035              from what they were when calculating the need for spills.
6036              If we notice an input-reload insn here, we will reject it below,
6037              but it might hide a usable equivalent.  That makes bad code.
6038              It may even abort: perhaps no reg was spilled for this insn
6039              because it was assumed we would find that equivalent.  */
6040               || INSN_UID (p) < reload_first_uid))
6041         {
6042           rtx tem;
6043           pat = single_set (p);
6044           /* First check for something that sets some reg equal to GOAL.  */
6045           if (pat != 0
6046               && ((regno >= 0
6047                    && true_regnum (SET_SRC (pat)) == regno
6048                    && (valueno = true_regnum (valtry = SET_DEST (pat))) >= 0)
6049                   ||
6050                   (regno >= 0
6051                    && true_regnum (SET_DEST (pat)) == regno
6052                    && (valueno = true_regnum (valtry = SET_SRC (pat))) >= 0)
6053                   ||
6054                   (goal_const && rtx_equal_p (SET_SRC (pat), goal)
6055                    /* When looking for stack pointer + const,
6056                       make sure we don't use a stack adjust.  */
6057                    && !reg_overlap_mentioned_for_reload_p (SET_DEST (pat), goal)
6058                    && (valueno = true_regnum (valtry = SET_DEST (pat))) >= 0)
6059                   || (goal_mem
6060                       && (valueno = true_regnum (valtry = SET_DEST (pat))) >= 0
6061                       && rtx_renumbered_equal_p (goal, SET_SRC (pat)))
6062                   || (goal_mem
6063                       && (valueno = true_regnum (valtry = SET_SRC (pat))) >= 0
6064                       && rtx_renumbered_equal_p (goal, SET_DEST (pat)))
6065                   /* If we are looking for a constant,
6066                      and something equivalent to that constant was copied
6067                      into a reg, we can use that reg.  */
6068                   || (goal_const && (tem = find_reg_note (p, REG_EQUIV,
6069                                                           NULL_RTX))
6070                       && rtx_equal_p (XEXP (tem, 0), goal)
6071                       && (valueno = true_regnum (valtry = SET_DEST (pat))) >= 0)
6072                   || (goal_const && (tem = find_reg_note (p, REG_EQUIV,
6073                                                           NULL_RTX))
6074                       && GET_CODE (SET_DEST (pat)) == REG
6075                       && GET_CODE (XEXP (tem, 0)) == CONST_DOUBLE
6076                       && GET_MODE_CLASS (GET_MODE (XEXP (tem, 0))) == MODE_FLOAT
6077                       && GET_CODE (goal) == CONST_INT
6078                       && 0 != (goaltry = operand_subword (XEXP (tem, 0), 0, 0,
6079                                                           VOIDmode))
6080                       && rtx_equal_p (goal, goaltry)
6081                       && (valtry = operand_subword (SET_DEST (pat), 0, 0,
6082                                                     VOIDmode))
6083                       && (valueno = true_regnum (valtry)) >= 0)
6084                   || (goal_const && (tem = find_reg_note (p, REG_EQUIV,
6085                                                           NULL_RTX))
6086                       && GET_CODE (SET_DEST (pat)) == REG
6087                       && GET_CODE (XEXP (tem, 0)) == CONST_DOUBLE
6088                       && GET_MODE_CLASS (GET_MODE (XEXP (tem, 0))) == MODE_FLOAT
6089                       && GET_CODE (goal) == CONST_INT
6090                       && 0 != (goaltry = operand_subword (XEXP (tem, 0), 1, 0,
6091                                                           VOIDmode))
6092                       && rtx_equal_p (goal, goaltry)
6093                       && (valtry
6094                           = operand_subword (SET_DEST (pat), 1, 0, VOIDmode))
6095                       && (valueno = true_regnum (valtry)) >= 0)))
6096             if (other >= 0
6097                 ? valueno == other
6098                 : ((unsigned) valueno < FIRST_PSEUDO_REGISTER
6099                    && TEST_HARD_REG_BIT (reg_class_contents[(int) class],
6100                                          valueno)))
6101               {
6102                 value = valtry;
6103                 where = p;
6104                 break;
6105               }
6106         }
6107     }
6108
6109   /* We found a previous insn copying GOAL into a suitable other reg VALUE
6110      (or copying VALUE into GOAL, if GOAL is also a register).
6111      Now verify that VALUE is really valid.  */
6112
6113   /* VALUENO is the register number of VALUE; a hard register.  */
6114
6115   /* Don't try to re-use something that is killed in this insn.  We want
6116      to be able to trust REG_UNUSED notes.  */
6117   if (find_reg_note (where, REG_UNUSED, value))
6118     return 0;
6119
6120   /* If we propose to get the value from the stack pointer or if GOAL is
6121      a MEM based on the stack pointer, we need a stable SP.  */
6122   if (valueno == STACK_POINTER_REGNUM || regno == STACK_POINTER_REGNUM
6123       || (goal_mem && reg_overlap_mentioned_for_reload_p (stack_pointer_rtx,
6124                                                           goal)))
6125     need_stable_sp = 1;
6126
6127   /* Reject VALUE if the copy-insn moved the wrong sort of datum.  */
6128   if (GET_MODE (value) != mode)
6129     return 0;
6130
6131   /* Reject VALUE if it was loaded from GOAL
6132      and is also a register that appears in the address of GOAL.  */
6133
6134   if (goal_mem && value == SET_DEST (single_set (where))
6135       && refers_to_regno_for_reload_p (valueno,
6136                                        (valueno
6137                                         + HARD_REGNO_NREGS (valueno, mode)),
6138                                        goal, NULL_PTR))
6139     return 0;
6140
6141   /* Reject registers that overlap GOAL.  */
6142
6143   if (!goal_mem && !goal_const
6144       && regno + HARD_REGNO_NREGS (regno, mode) > valueno
6145       && regno < valueno + HARD_REGNO_NREGS (valueno, mode))
6146     return 0;
6147
6148   /* Reject VALUE if it is one of the regs reserved for reloads.
6149      Reload1 knows how to reuse them anyway, and it would get
6150      confused if we allocated one without its knowledge.
6151      (Now that insns introduced by reload are ignored above,
6152      this case shouldn't happen, but I'm not positive.)  */
6153
6154   if (reload_reg_p != 0 && reload_reg_p != (short *) (HOST_WIDE_INT) 1
6155       && reload_reg_p[valueno] >= 0)
6156     return 0;
6157
6158   /* On some machines, certain regs must always be rejected
6159      because they don't behave the way ordinary registers do.  */
6160   
6161 #ifdef OVERLAPPING_REGNO_P
6162   if (OVERLAPPING_REGNO_P (valueno))
6163     return 0;
6164 #endif      
6165
6166   nregs = HARD_REGNO_NREGS (regno, mode);
6167   valuenregs = HARD_REGNO_NREGS (valueno, mode);
6168
6169   /* Reject VALUE if it is a register being used for an input reload
6170      even if it is not one of those reserved.  */
6171
6172   if (reload_reg_p != 0)
6173     {
6174       int i;
6175       for (i = 0; i < n_reloads; i++)
6176         if (reload_reg_rtx[i] != 0 && reload_in[i])
6177           {
6178             int regno1 = REGNO (reload_reg_rtx[i]);
6179             int nregs1 = HARD_REGNO_NREGS (regno1,
6180                                            GET_MODE (reload_reg_rtx[i]));
6181             if (regno1 < valueno + valuenregs
6182                 && regno1 + nregs1 > valueno)
6183               return 0;
6184           }
6185     }
6186
6187   if (goal_mem)
6188     /* We must treat frame pointer as varying here,
6189        since it can vary--in a nonlocal goto as generated by expand_goto.  */
6190     goal_mem_addr_varies = !CONSTANT_ADDRESS_P (XEXP (goal, 0));
6191
6192   /* Now verify that the values of GOAL and VALUE remain unaltered
6193      until INSN is reached.  */
6194
6195   p = insn;
6196   while (1)
6197     {
6198       p = PREV_INSN (p);
6199       if (p == where)
6200         return value;
6201
6202       /* Don't trust the conversion past a function call
6203          if either of the two is in a call-clobbered register, or memory.  */
6204       if (GET_CODE (p) == CALL_INSN
6205           && ((regno >= 0 && regno < FIRST_PSEUDO_REGISTER
6206                && call_used_regs[regno])
6207               ||
6208               (valueno >= 0 && valueno < FIRST_PSEUDO_REGISTER
6209                && call_used_regs[valueno])
6210               ||
6211               goal_mem
6212               || need_stable_sp))
6213         return 0;
6214
6215 #ifdef NON_SAVING_SETJMP 
6216       if (NON_SAVING_SETJMP && GET_CODE (p) == NOTE
6217           && NOTE_LINE_NUMBER (p) == NOTE_INSN_SETJMP)
6218         return 0;
6219 #endif
6220
6221 #ifdef INSN_CLOBBERS_REGNO_P
6222       if ((valueno >= 0 && valueno < FIRST_PSEUDO_REGISTER
6223           && INSN_CLOBBERS_REGNO_P (p, valueno))
6224           || (regno >= 0 && regno < FIRST_PSEUDO_REGISTER
6225           && INSN_CLOBBERS_REGNO_P (p, regno)))
6226         return 0;
6227 #endif
6228
6229       if (GET_RTX_CLASS (GET_CODE (p)) == 'i')
6230         {
6231           pat = PATTERN (p);
6232
6233           /* Watch out for unspec_volatile, and volatile asms.  */
6234           if (volatile_insn_p (pat))
6235             return 0;
6236
6237           /* If this insn P stores in either GOAL or VALUE, return 0.
6238              If GOAL is a memory ref and this insn writes memory, return 0.
6239              If GOAL is a memory ref and its address is not constant,
6240              and this insn P changes a register used in GOAL, return 0.  */
6241
6242           if (GET_CODE (pat) == SET || GET_CODE (pat) == CLOBBER)
6243             {
6244               register rtx dest = SET_DEST (pat);
6245               while (GET_CODE (dest) == SUBREG
6246                      || GET_CODE (dest) == ZERO_EXTRACT
6247                      || GET_CODE (dest) == SIGN_EXTRACT
6248                      || GET_CODE (dest) == STRICT_LOW_PART)
6249                 dest = XEXP (dest, 0);
6250               if (GET_CODE (dest) == REG)
6251                 {
6252                   register int xregno = REGNO (dest);
6253                   int xnregs;
6254                   if (REGNO (dest) < FIRST_PSEUDO_REGISTER)
6255                     xnregs = HARD_REGNO_NREGS (xregno, GET_MODE (dest));
6256                   else
6257                     xnregs = 1;
6258                   if (xregno < regno + nregs && xregno + xnregs > regno)
6259                     return 0;
6260                   if (xregno < valueno + valuenregs
6261                       && xregno + xnregs > valueno)
6262                     return 0;
6263                   if (goal_mem_addr_varies
6264                       && reg_overlap_mentioned_for_reload_p (dest, goal))
6265                     return 0;
6266                   if (xregno == STACK_POINTER_REGNUM && need_stable_sp)
6267                     return 0;
6268                 }
6269               else if (goal_mem && GET_CODE (dest) == MEM
6270                        && ! push_operand (dest, GET_MODE (dest)))
6271                 return 0;
6272               else if (GET_CODE (dest) == MEM && regno >= FIRST_PSEUDO_REGISTER
6273                        && reg_equiv_memory_loc[regno] != 0)
6274                 return 0;
6275               else if (need_stable_sp && push_operand (dest, GET_MODE (dest)))
6276                 return 0;
6277             }
6278           else if (GET_CODE (pat) == PARALLEL)
6279             {
6280               register int i;
6281               for (i = XVECLEN (pat, 0) - 1; i >= 0; i--)
6282                 {
6283                   register rtx v1 = XVECEXP (pat, 0, i);
6284                   if (GET_CODE (v1) == SET || GET_CODE (v1) == CLOBBER)
6285                     {
6286                       register rtx dest = SET_DEST (v1);
6287                       while (GET_CODE (dest) == SUBREG
6288                              || GET_CODE (dest) == ZERO_EXTRACT
6289                              || GET_CODE (dest) == SIGN_EXTRACT
6290                              || GET_CODE (dest) == STRICT_LOW_PART)
6291                         dest = XEXP (dest, 0);
6292                       if (GET_CODE (dest) == REG)
6293                         {
6294                           register int xregno = REGNO (dest);
6295                           int xnregs;
6296                           if (REGNO (dest) < FIRST_PSEUDO_REGISTER)
6297                             xnregs = HARD_REGNO_NREGS (xregno, GET_MODE (dest));
6298                           else
6299                             xnregs = 1;
6300                           if (xregno < regno + nregs
6301                               && xregno + xnregs > regno)
6302                             return 0;
6303                           if (xregno < valueno + valuenregs
6304                               && xregno + xnregs > valueno)
6305                             return 0;
6306                           if (goal_mem_addr_varies
6307                               && reg_overlap_mentioned_for_reload_p (dest,
6308                                                                      goal))
6309                             return 0;
6310                           if (xregno == STACK_POINTER_REGNUM && need_stable_sp)
6311                             return 0;
6312                         }
6313                       else if (goal_mem && GET_CODE (dest) == MEM
6314                                && ! push_operand (dest, GET_MODE (dest)))
6315                         return 0;
6316                       else if (GET_CODE (dest) == MEM && regno >= FIRST_PSEUDO_REGISTER
6317                                && reg_equiv_memory_loc[regno] != 0)
6318                         return 0;
6319                       else if (need_stable_sp
6320                                && push_operand (dest, GET_MODE (dest)))
6321                         return 0;
6322                     }
6323                 }
6324             }
6325
6326           if (GET_CODE (p) == CALL_INSN && CALL_INSN_FUNCTION_USAGE (p))
6327             {
6328               rtx link;
6329
6330               for (link = CALL_INSN_FUNCTION_USAGE (p); XEXP (link, 1) != 0;
6331                    link = XEXP (link, 1))
6332                 {
6333                   pat = XEXP (link, 0);
6334                   if (GET_CODE (pat) == CLOBBER)
6335                     {
6336                       register rtx dest = SET_DEST (pat);
6337                       while (GET_CODE (dest) == SUBREG
6338                              || GET_CODE (dest) == ZERO_EXTRACT
6339                              || GET_CODE (dest) == SIGN_EXTRACT
6340                              || GET_CODE (dest) == STRICT_LOW_PART)
6341                         dest = XEXP (dest, 0);
6342                       if (GET_CODE (dest) == REG)
6343                         {
6344                           register int xregno = REGNO (dest);
6345                           int xnregs;
6346                           if (REGNO (dest) < FIRST_PSEUDO_REGISTER)
6347                             xnregs = HARD_REGNO_NREGS (xregno, GET_MODE (dest));
6348                           else
6349                             xnregs = 1;
6350                           if (xregno < regno + nregs
6351                               && xregno + xnregs > regno)
6352                             return 0;
6353                           if (xregno < valueno + valuenregs
6354                               && xregno + xnregs > valueno)
6355                             return 0;
6356                           if (goal_mem_addr_varies
6357                               && reg_overlap_mentioned_for_reload_p (dest,
6358                                                                      goal))
6359                             return 0;
6360                         }
6361                       else if (goal_mem && GET_CODE (dest) == MEM
6362                                && ! push_operand (dest, GET_MODE (dest)))
6363                         return 0;
6364                       else if (need_stable_sp
6365                                && push_operand (dest, GET_MODE (dest)))
6366                         return 0;
6367                     }
6368                 }
6369             }
6370
6371 #ifdef AUTO_INC_DEC
6372           /* If this insn auto-increments or auto-decrements
6373              either regno or valueno, return 0 now.
6374              If GOAL is a memory ref and its address is not constant,
6375              and this insn P increments a register used in GOAL, return 0.  */
6376           {
6377             register rtx link;
6378
6379             for (link = REG_NOTES (p); link; link = XEXP (link, 1))
6380               if (REG_NOTE_KIND (link) == REG_INC
6381                   && GET_CODE (XEXP (link, 0)) == REG)
6382                 {
6383                   register int incno = REGNO (XEXP (link, 0));
6384                   if (incno < regno + nregs && incno >= regno)
6385                     return 0;
6386                   if (incno < valueno + valuenregs && incno >= valueno)
6387                     return 0;
6388                   if (goal_mem_addr_varies
6389                       && reg_overlap_mentioned_for_reload_p (XEXP (link, 0),
6390                                                              goal))
6391                     return 0;
6392                 }
6393           }
6394 #endif
6395         }
6396     }
6397 }
6398 \f
6399 /* Find a place where INCED appears in an increment or decrement operator
6400    within X, and return the amount INCED is incremented or decremented by.
6401    The value is always positive.  */
6402
6403 static int
6404 find_inc_amount (x, inced)
6405      rtx x, inced;
6406 {
6407   register enum rtx_code code = GET_CODE (x);
6408   register char *fmt;
6409   register int i;
6410
6411   if (code == MEM)
6412     {
6413       register rtx addr = XEXP (x, 0);
6414       if ((GET_CODE (addr) == PRE_DEC
6415            || GET_CODE (addr) == POST_DEC
6416            || GET_CODE (addr) == PRE_INC
6417            || GET_CODE (addr) == POST_INC)
6418           && XEXP (addr, 0) == inced)
6419         return GET_MODE_SIZE (GET_MODE (x));
6420     }
6421
6422   fmt = GET_RTX_FORMAT (code);
6423   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
6424     {
6425       if (fmt[i] == 'e')
6426         {
6427           register int tem = find_inc_amount (XEXP (x, i), inced);
6428           if (tem != 0)
6429             return tem;
6430         }
6431       if (fmt[i] == 'E')
6432         {
6433           register int j;
6434           for (j = XVECLEN (x, i) - 1; j >= 0; j--)
6435             {
6436               register int tem = find_inc_amount (XVECEXP (x, i, j), inced);
6437               if (tem != 0)
6438                 return tem;
6439             }
6440         }
6441     }
6442
6443   return 0;
6444 }
6445 \f
6446 /* Return 1 if register REGNO is the subject of a clobber in insn INSN.  */
6447
6448 int
6449 regno_clobbered_p (regno, insn)
6450      int regno;
6451      rtx insn;
6452 {
6453   if (GET_CODE (PATTERN (insn)) == CLOBBER
6454       && GET_CODE (XEXP (PATTERN (insn), 0)) == REG)
6455     return REGNO (XEXP (PATTERN (insn), 0)) == regno;
6456
6457   if (GET_CODE (PATTERN (insn)) == PARALLEL)
6458     {
6459       int i = XVECLEN (PATTERN (insn), 0) - 1;
6460
6461       for (; i >= 0; i--)
6462         {
6463           rtx elt = XVECEXP (PATTERN (insn), 0, i);
6464           if (GET_CODE (elt) == CLOBBER && GET_CODE (XEXP (elt, 0)) == REG
6465               && REGNO (XEXP (elt, 0)) == regno)
6466             return 1;
6467         }
6468     }
6469
6470   return 0;
6471 }
6472
6473 static char *reload_when_needed_name[] =
6474 {
6475   "RELOAD_FOR_INPUT", 
6476   "RELOAD_FOR_OUTPUT", 
6477   "RELOAD_FOR_INSN",
6478   "RELOAD_FOR_INPUT_ADDRESS",
6479   "RELOAD_FOR_INPADDR_ADDRESS",
6480   "RELOAD_FOR_OUTPUT_ADDRESS",
6481   "RELOAD_FOR_OUTADDR_ADDRESS",
6482   "RELOAD_FOR_OPERAND_ADDRESS", 
6483   "RELOAD_FOR_OPADDR_ADDR",
6484   "RELOAD_OTHER", 
6485   "RELOAD_FOR_OTHER_ADDRESS"
6486 };
6487
6488 static char *reg_class_names[] = REG_CLASS_NAMES;
6489
6490 /* These functions are used to print the variables set by 'find_reloads' */
6491
6492 void
6493 debug_reload_to_stream (f)
6494      FILE *f;
6495 {
6496   int r;
6497   char *prefix;
6498
6499   if (! f)
6500     f = stderr;
6501   for (r = 0; r < n_reloads; r++)
6502     {
6503       fprintf (f, "Reload %d: ", r);
6504
6505       if (reload_in[r] != 0)
6506         {
6507           fprintf (f, "reload_in (%s) = ",
6508                    GET_MODE_NAME (reload_inmode[r]));
6509           print_inline_rtx (f, reload_in[r], 24);
6510           fprintf (f, "\n\t");
6511         }
6512
6513       if (reload_out[r] != 0)
6514         {
6515           fprintf (f, "reload_out (%s) = ",
6516                    GET_MODE_NAME (reload_outmode[r]));
6517           print_inline_rtx (f, reload_out[r], 24);
6518           fprintf (f, "\n\t");
6519         }
6520
6521       fprintf (f, "%s, ", reg_class_names[(int) reload_reg_class[r]]);
6522
6523       fprintf (f, "%s (opnum = %d)",
6524                reload_when_needed_name[(int) reload_when_needed[r]],
6525                reload_opnum[r]);
6526
6527       if (reload_optional[r])
6528         fprintf (f, ", optional");
6529
6530       if (reload_nongroup[r])
6531         fprintf (stderr, ", nongroup");
6532
6533       if (reload_inc[r] != 0)
6534         fprintf (f, ", inc by %d", reload_inc[r]);
6535
6536       if (reload_nocombine[r])
6537         fprintf (f, ", can't combine");
6538
6539       if (reload_secondary_p[r])
6540         fprintf (f, ", secondary_reload_p");
6541
6542       if (reload_in_reg[r] != 0)
6543         {
6544           fprintf (f, "\n\treload_in_reg: ");
6545           print_inline_rtx (f, reload_in_reg[r], 24);
6546         }
6547
6548       if (reload_reg_rtx[r] != 0)
6549         {
6550           fprintf (f, "\n\treload_reg_rtx: ");
6551           print_inline_rtx (f, reload_reg_rtx[r], 24);
6552         }
6553
6554       prefix = "\n\t";
6555       if (reload_secondary_in_reload[r] != -1)
6556         {
6557           fprintf (f, "%ssecondary_in_reload = %d",
6558                    prefix, reload_secondary_in_reload[r]);
6559           prefix = ", ";
6560         }
6561
6562       if (reload_secondary_out_reload[r] != -1)
6563         fprintf (f, "%ssecondary_out_reload = %d\n",
6564                  prefix, reload_secondary_out_reload[r]);
6565
6566       prefix = "\n\t";
6567       if (reload_secondary_in_icode[r] != CODE_FOR_nothing)
6568         {
6569           fprintf (stderr, "%ssecondary_in_icode = %s", prefix,
6570                    insn_name[reload_secondary_in_icode[r]]);
6571           prefix = ", ";
6572         }
6573
6574       if (reload_secondary_out_icode[r] != CODE_FOR_nothing)
6575         fprintf (stderr, "%ssecondary_out_icode = %s", prefix,
6576                  insn_name[reload_secondary_out_icode[r]]);
6577
6578       fprintf (f, "\n");
6579     }
6580 }
6581
6582 void
6583 debug_reload ()
6584 {
6585   debug_reload_to_stream (stderr);
6586 }