OSDN Git Service

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