OSDN Git Service

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