Add D30V options
[official-gcc.git] / gcc / reload.c
blobf6621d8e6f7dc472683d97c09dee605316b7082b
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 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 /* This file contains subroutines used only from the file reload1.c.
24 It knows how to scan one insn for operands and values
25 that need to be copied into registers to make valid code.
26 It also finds other operands and values which are valid
27 but for which equivalent values in registers exist and
28 ought to be used instead.
30 Before processing the first insn of the function, call `init_reload'.
32 To scan an insn, call `find_reloads'. This does two things:
33 1. sets up tables describing which values must be reloaded
34 for this insn, and what kind of hard regs they must be reloaded into;
35 2. optionally record the locations where those values appear in
36 the data, so they can be replaced properly later.
37 This is done only if the second arg to `find_reloads' is nonzero.
39 The third arg to `find_reloads' specifies the number of levels
40 of indirect addressing supported by the machine. If it is zero,
41 indirect addressing is not valid. If it is one, (MEM (REG n))
42 is valid even if (REG n) did not get a hard register; if it is two,
43 (MEM (MEM (REG n))) is also valid even if (REG n) did not get a
44 hard register, and similarly for higher values.
46 Then you must choose the hard regs to reload those pseudo regs into,
47 and generate appropriate load insns before this insn and perhaps
48 also store insns after this insn. Set up the array `reload_reg_rtx'
49 to contain the REG rtx's for the registers you used. In some
50 cases `find_reloads' will return a nonzero value in `reload_reg_rtx'
51 for certain reloads. Then that tells you which register to use,
52 so you do not need to allocate one. But you still do need to add extra
53 instructions to copy the value into and out of that register.
55 Finally you must call `subst_reloads' to substitute the reload reg rtx's
56 into the locations already recorded.
58 NOTE SIDE EFFECTS:
60 find_reloads can alter the operands of the instruction it is called on.
62 1. Two operands of any sort may be interchanged, if they are in a
63 commutative instruction.
64 This happens only if find_reloads thinks the instruction will compile
65 better that way.
67 2. Pseudo-registers that are equivalent to constants are replaced
68 with those constants if they are not in hard registers.
70 1 happens every time find_reloads is called.
71 2 happens only when REPLACE is 1, which is only when
72 actually doing the reloads, not when just counting them.
75 Using a reload register for several reloads in one insn:
77 When an insn has reloads, it is considered as having three parts:
78 the input reloads, the insn itself after reloading, and the output reloads.
79 Reloads of values used in memory addresses are often needed for only one part.
81 When this is so, reload_when_needed records which part needs the reload.
82 Two reloads for different parts of the insn can share the same reload
83 register.
85 When a reload is used for addresses in multiple parts, or when it is
86 an ordinary operand, it is classified as RELOAD_OTHER, and cannot share
87 a register with any other reload. */
89 #define REG_OK_STRICT
91 #include "config.h"
92 #include "system.h"
93 #include "rtl.h"
94 #include "tm_p.h"
95 #include "insn-config.h"
96 #include "insn-codes.h"
97 #include "recog.h"
98 #include "reload.h"
99 #include "regs.h"
100 #include "hard-reg-set.h"
101 #include "flags.h"
102 #include "real.h"
103 #include "output.h"
104 #include "function.h"
105 #include "expr.h"
106 #include "toplev.h"
108 #ifndef REGISTER_MOVE_COST
109 #define REGISTER_MOVE_COST(x, y) 2
110 #endif
112 #ifndef REGNO_MODE_OK_FOR_BASE_P
113 #define REGNO_MODE_OK_FOR_BASE_P(REGNO, MODE) REGNO_OK_FOR_BASE_P (REGNO)
114 #endif
116 #ifndef REG_MODE_OK_FOR_BASE_P
117 #define REG_MODE_OK_FOR_BASE_P(REGNO, MODE) REG_OK_FOR_BASE_P (REGNO)
118 #endif
120 /* All reloads of the current insn are recorded here. See reload.h for
121 comments. */
122 int n_reloads;
123 struct reload rld[MAX_RELOADS];
125 /* All the "earlyclobber" operands of the current insn
126 are recorded here. */
127 int n_earlyclobbers;
128 rtx reload_earlyclobbers[MAX_RECOG_OPERANDS];
130 int reload_n_operands;
132 /* Replacing reloads.
134 If `replace_reloads' is nonzero, then as each reload is recorded
135 an entry is made for it in the table `replacements'.
136 Then later `subst_reloads' can look through that table and
137 perform all the replacements needed. */
139 /* Nonzero means record the places to replace. */
140 static int replace_reloads;
142 /* Each replacement is recorded with a structure like this. */
143 struct replacement
145 rtx *where; /* Location to store in */
146 rtx *subreg_loc; /* Location of SUBREG if WHERE is inside
147 a SUBREG; 0 otherwise. */
148 int what; /* which reload this is for */
149 enum machine_mode mode; /* mode it must have */
152 static struct replacement replacements[MAX_RECOG_OPERANDS * ((MAX_REGS_PER_ADDRESS * 2) + 1)];
154 /* Number of replacements currently recorded. */
155 static int n_replacements;
157 /* Used to track what is modified by an operand. */
158 struct decomposition
160 int reg_flag; /* Nonzero if referencing a register. */
161 int safe; /* Nonzero if this can't conflict with anything. */
162 rtx base; /* Base address for MEM. */
163 HOST_WIDE_INT start; /* Starting offset or register number. */
164 HOST_WIDE_INT end; /* Ending offset or register number. */
167 #ifdef SECONDARY_MEMORY_NEEDED
169 /* Save MEMs needed to copy from one class of registers to another. One MEM
170 is used per mode, but normally only one or two modes are ever used.
172 We keep two versions, before and after register elimination. The one
173 after register elimination is record separately for each operand. This
174 is done in case the address is not valid to be sure that we separately
175 reload each. */
177 static rtx secondary_memlocs[NUM_MACHINE_MODES];
178 static rtx secondary_memlocs_elim[NUM_MACHINE_MODES][MAX_RECOG_OPERANDS];
179 #endif
181 /* The instruction we are doing reloads for;
182 so we can test whether a register dies in it. */
183 static rtx this_insn;
185 /* Nonzero if this instruction is a user-specified asm with operands. */
186 static int this_insn_is_asm;
188 /* If hard_regs_live_known is nonzero,
189 we can tell which hard regs are currently live,
190 at least enough to succeed in choosing dummy reloads. */
191 static int hard_regs_live_known;
193 /* Indexed by hard reg number,
194 element is nonnegative if hard reg has been spilled.
195 This vector is passed to `find_reloads' as an argument
196 and is not changed here. */
197 static short *static_reload_reg_p;
199 /* Set to 1 in subst_reg_equivs if it changes anything. */
200 static int subst_reg_equivs_changed;
202 /* On return from push_reload, holds the reload-number for the OUT
203 operand, which can be different for that from the input operand. */
204 static int output_reloadnum;
206 /* Compare two RTX's. */
207 #define MATCHES(x, y) \
208 (x == y || (x != 0 && (GET_CODE (x) == REG \
209 ? GET_CODE (y) == REG && REGNO (x) == REGNO (y) \
210 : rtx_equal_p (x, y) && ! side_effects_p (x))))
212 /* Indicates if two reloads purposes are for similar enough things that we
213 can merge their reloads. */
214 #define MERGABLE_RELOADS(when1, when2, op1, op2) \
215 ((when1) == RELOAD_OTHER || (when2) == RELOAD_OTHER \
216 || ((when1) == (when2) && (op1) == (op2)) \
217 || ((when1) == RELOAD_FOR_INPUT && (when2) == RELOAD_FOR_INPUT) \
218 || ((when1) == RELOAD_FOR_OPERAND_ADDRESS \
219 && (when2) == RELOAD_FOR_OPERAND_ADDRESS) \
220 || ((when1) == RELOAD_FOR_OTHER_ADDRESS \
221 && (when2) == RELOAD_FOR_OTHER_ADDRESS))
223 /* Nonzero if these two reload purposes produce RELOAD_OTHER when merged. */
224 #define MERGE_TO_OTHER(when1, when2, op1, op2) \
225 ((when1) != (when2) \
226 || ! ((op1) == (op2) \
227 || (when1) == RELOAD_FOR_INPUT \
228 || (when1) == RELOAD_FOR_OPERAND_ADDRESS \
229 || (when1) == RELOAD_FOR_OTHER_ADDRESS))
231 /* If we are going to reload an address, compute the reload type to
232 use. */
233 #define ADDR_TYPE(type) \
234 ((type) == RELOAD_FOR_INPUT_ADDRESS \
235 ? RELOAD_FOR_INPADDR_ADDRESS \
236 : ((type) == RELOAD_FOR_OUTPUT_ADDRESS \
237 ? RELOAD_FOR_OUTADDR_ADDRESS \
238 : (type)))
240 #ifdef HAVE_SECONDARY_RELOADS
241 static int push_secondary_reload PARAMS ((int, rtx, int, int, enum reg_class,
242 enum machine_mode, enum reload_type,
243 enum insn_code *));
244 #endif
245 static enum reg_class find_valid_class PARAMS ((enum machine_mode, int));
246 static int push_reload PARAMS ((rtx, rtx, rtx *, rtx *, enum reg_class,
247 enum machine_mode, enum machine_mode,
248 int, int, int, enum reload_type));
249 static void push_replacement PARAMS ((rtx *, int, enum machine_mode));
250 static void combine_reloads PARAMS ((void));
251 static int find_reusable_reload PARAMS ((rtx *, rtx, enum reg_class,
252 enum reload_type, int, int));
253 static rtx find_dummy_reload PARAMS ((rtx, rtx, rtx *, rtx *,
254 enum machine_mode, enum machine_mode,
255 enum reg_class, int, int));
256 static int hard_reg_set_here_p PARAMS ((unsigned int, unsigned int, rtx));
257 static struct decomposition decompose PARAMS ((rtx));
258 static int immune_p PARAMS ((rtx, rtx, struct decomposition));
259 static int alternative_allows_memconst PARAMS ((const char *, int));
260 static rtx find_reloads_toplev PARAMS ((rtx, int, enum reload_type, int,
261 int, rtx, int *));
262 static rtx make_memloc PARAMS ((rtx, int));
263 static int find_reloads_address PARAMS ((enum machine_mode, rtx *, rtx, rtx *,
264 int, enum reload_type, int, rtx));
265 static rtx subst_reg_equivs PARAMS ((rtx, rtx));
266 static rtx subst_indexed_address PARAMS ((rtx));
267 static int find_reloads_address_1 PARAMS ((enum machine_mode, rtx, int, rtx *,
268 int, enum reload_type,int, rtx));
269 static void find_reloads_address_part PARAMS ((rtx, rtx *, enum reg_class,
270 enum machine_mode, int,
271 enum reload_type, int));
272 static rtx find_reloads_subreg_address PARAMS ((rtx, int, int, enum reload_type,
273 int, rtx));
274 static int find_inc_amount PARAMS ((rtx, rtx));
275 extern void debug_reload_to_stream PARAMS ((FILE *));
276 extern void debug_reload PARAMS ((void));
278 #ifdef HAVE_SECONDARY_RELOADS
280 /* Determine if any secondary reloads are needed for loading (if IN_P is
281 non-zero) or storing (if IN_P is zero) X to or from a reload register of
282 register class RELOAD_CLASS in mode RELOAD_MODE. If secondary reloads
283 are needed, push them.
285 Return the reload number of the secondary reload we made, or -1 if
286 we didn't need one. *PICODE is set to the insn_code to use if we do
287 need a secondary reload. */
289 static int
290 push_secondary_reload (in_p, x, opnum, optional, reload_class, reload_mode,
291 type, picode)
292 int in_p;
293 rtx x;
294 int opnum;
295 int optional;
296 enum reg_class reload_class;
297 enum machine_mode reload_mode;
298 enum reload_type type;
299 enum insn_code *picode;
301 enum reg_class class = NO_REGS;
302 enum machine_mode mode = reload_mode;
303 enum insn_code icode = CODE_FOR_nothing;
304 enum reg_class t_class = NO_REGS;
305 enum machine_mode t_mode = VOIDmode;
306 enum insn_code t_icode = CODE_FOR_nothing;
307 enum reload_type secondary_type;
308 int s_reload, t_reload = -1;
310 if (type == RELOAD_FOR_INPUT_ADDRESS
311 || type == RELOAD_FOR_OUTPUT_ADDRESS
312 || type == RELOAD_FOR_INPADDR_ADDRESS
313 || type == RELOAD_FOR_OUTADDR_ADDRESS)
314 secondary_type = type;
315 else
316 secondary_type = in_p ? RELOAD_FOR_INPUT_ADDRESS : RELOAD_FOR_OUTPUT_ADDRESS;
318 *picode = CODE_FOR_nothing;
320 /* If X is a paradoxical SUBREG, use the inner value to determine both the
321 mode and object being reloaded. */
322 if (GET_CODE (x) == SUBREG
323 && (GET_MODE_SIZE (GET_MODE (x))
324 > GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)))))
326 x = SUBREG_REG (x);
327 reload_mode = GET_MODE (x);
330 /* If X is a pseudo-register that has an equivalent MEM (actually, if it
331 is still a pseudo-register by now, it *must* have an equivalent MEM
332 but we don't want to assume that), use that equivalent when seeing if
333 a secondary reload is needed since whether or not a reload is needed
334 might be sensitive to the form of the MEM. */
336 if (GET_CODE (x) == REG && REGNO (x) >= FIRST_PSEUDO_REGISTER
337 && reg_equiv_mem[REGNO (x)] != 0)
338 x = reg_equiv_mem[REGNO (x)];
340 #ifdef SECONDARY_INPUT_RELOAD_CLASS
341 if (in_p)
342 class = SECONDARY_INPUT_RELOAD_CLASS (reload_class, reload_mode, x);
343 #endif
345 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
346 if (! in_p)
347 class = SECONDARY_OUTPUT_RELOAD_CLASS (reload_class, reload_mode, x);
348 #endif
350 /* If we don't need any secondary registers, done. */
351 if (class == NO_REGS)
352 return -1;
354 /* Get a possible insn to use. If the predicate doesn't accept X, don't
355 use the insn. */
357 icode = (in_p ? reload_in_optab[(int) reload_mode]
358 : reload_out_optab[(int) reload_mode]);
360 if (icode != CODE_FOR_nothing
361 && insn_data[(int) icode].operand[in_p].predicate
362 && (! (insn_data[(int) icode].operand[in_p].predicate) (x, reload_mode)))
363 icode = CODE_FOR_nothing;
365 /* If we will be using an insn, see if it can directly handle the reload
366 register we will be using. If it can, the secondary reload is for a
367 scratch register. If it can't, we will use the secondary reload for
368 an intermediate register and require a tertiary reload for the scratch
369 register. */
371 if (icode != CODE_FOR_nothing)
373 /* If IN_P is non-zero, the reload register will be the output in
374 operand 0. If IN_P is zero, the reload register will be the input
375 in operand 1. Outputs should have an initial "=", which we must
376 skip. */
378 char insn_letter
379 = insn_data[(int) icode].operand[!in_p].constraint[in_p];
380 enum reg_class insn_class
381 = (insn_letter == 'r' ? GENERAL_REGS
382 : REG_CLASS_FROM_LETTER ((unsigned char) insn_letter));
384 if (insn_class == NO_REGS
385 || (in_p
386 && insn_data[(int) icode].operand[!in_p].constraint[0] != '=')
387 /* The scratch register's constraint must start with "=&". */
388 || insn_data[(int) icode].operand[2].constraint[0] != '='
389 || insn_data[(int) icode].operand[2].constraint[1] != '&')
390 abort ();
392 if (reg_class_subset_p (reload_class, insn_class))
393 mode = insn_data[(int) icode].operand[2].mode;
394 else
396 char t_letter = insn_data[(int) icode].operand[2].constraint[2];
397 class = insn_class;
398 t_mode = insn_data[(int) icode].operand[2].mode;
399 t_class = (t_letter == 'r' ? GENERAL_REGS
400 : REG_CLASS_FROM_LETTER ((unsigned char) t_letter));
401 t_icode = icode;
402 icode = CODE_FOR_nothing;
406 /* This case isn't valid, so fail. Reload is allowed to use the same
407 register for RELOAD_FOR_INPUT_ADDRESS and RELOAD_FOR_INPUT reloads, but
408 in the case of a secondary register, we actually need two different
409 registers for correct code. We fail here to prevent the possibility of
410 silently generating incorrect code later.
412 The convention is that secondary input reloads are valid only if the
413 secondary_class is different from class. If you have such a case, you
414 can not use secondary reloads, you must work around the problem some
415 other way.
417 Allow this when MODE is not reload_mode and assume that the generated
418 code handles this case (it does on the Alpha, which is the only place
419 this currently happens). */
421 if (in_p && class == reload_class && mode == reload_mode)
422 abort ();
424 /* If we need a tertiary reload, see if we have one we can reuse or else
425 make a new one. */
427 if (t_class != NO_REGS)
429 for (t_reload = 0; t_reload < n_reloads; t_reload++)
430 if (rld[t_reload].secondary_p
431 && (reg_class_subset_p (t_class, rld[t_reload].class)
432 || reg_class_subset_p (rld[t_reload].class, t_class))
433 && ((in_p && rld[t_reload].inmode == t_mode)
434 || (! in_p && rld[t_reload].outmode == t_mode))
435 && ((in_p && (rld[t_reload].secondary_in_icode
436 == CODE_FOR_nothing))
437 || (! in_p &&(rld[t_reload].secondary_out_icode
438 == CODE_FOR_nothing)))
439 && (reg_class_size[(int) t_class] == 1 || SMALL_REGISTER_CLASSES)
440 && MERGABLE_RELOADS (secondary_type,
441 rld[t_reload].when_needed,
442 opnum, rld[t_reload].opnum))
444 if (in_p)
445 rld[t_reload].inmode = t_mode;
446 if (! in_p)
447 rld[t_reload].outmode = t_mode;
449 if (reg_class_subset_p (t_class, rld[t_reload].class))
450 rld[t_reload].class = t_class;
452 rld[t_reload].opnum = MIN (rld[t_reload].opnum, opnum);
453 rld[t_reload].optional &= optional;
454 rld[t_reload].secondary_p = 1;
455 if (MERGE_TO_OTHER (secondary_type, rld[t_reload].when_needed,
456 opnum, rld[t_reload].opnum))
457 rld[t_reload].when_needed = RELOAD_OTHER;
460 if (t_reload == n_reloads)
462 /* We need to make a new tertiary reload for this register class. */
463 rld[t_reload].in = rld[t_reload].out = 0;
464 rld[t_reload].class = t_class;
465 rld[t_reload].inmode = in_p ? t_mode : VOIDmode;
466 rld[t_reload].outmode = ! in_p ? t_mode : VOIDmode;
467 rld[t_reload].reg_rtx = 0;
468 rld[t_reload].optional = optional;
469 rld[t_reload].inc = 0;
470 /* Maybe we could combine these, but it seems too tricky. */
471 rld[t_reload].nocombine = 1;
472 rld[t_reload].in_reg = 0;
473 rld[t_reload].out_reg = 0;
474 rld[t_reload].opnum = opnum;
475 rld[t_reload].when_needed = secondary_type;
476 rld[t_reload].secondary_in_reload = -1;
477 rld[t_reload].secondary_out_reload = -1;
478 rld[t_reload].secondary_in_icode = CODE_FOR_nothing;
479 rld[t_reload].secondary_out_icode = CODE_FOR_nothing;
480 rld[t_reload].secondary_p = 1;
482 n_reloads++;
486 /* See if we can reuse an existing secondary reload. */
487 for (s_reload = 0; s_reload < n_reloads; s_reload++)
488 if (rld[s_reload].secondary_p
489 && (reg_class_subset_p (class, rld[s_reload].class)
490 || reg_class_subset_p (rld[s_reload].class, class))
491 && ((in_p && rld[s_reload].inmode == mode)
492 || (! in_p && rld[s_reload].outmode == mode))
493 && ((in_p && rld[s_reload].secondary_in_reload == t_reload)
494 || (! in_p && rld[s_reload].secondary_out_reload == t_reload))
495 && ((in_p && rld[s_reload].secondary_in_icode == t_icode)
496 || (! in_p && rld[s_reload].secondary_out_icode == t_icode))
497 && (reg_class_size[(int) class] == 1 || SMALL_REGISTER_CLASSES)
498 && MERGABLE_RELOADS (secondary_type, rld[s_reload].when_needed,
499 opnum, rld[s_reload].opnum))
501 if (in_p)
502 rld[s_reload].inmode = mode;
503 if (! in_p)
504 rld[s_reload].outmode = mode;
506 if (reg_class_subset_p (class, rld[s_reload].class))
507 rld[s_reload].class = class;
509 rld[s_reload].opnum = MIN (rld[s_reload].opnum, opnum);
510 rld[s_reload].optional &= optional;
511 rld[s_reload].secondary_p = 1;
512 if (MERGE_TO_OTHER (secondary_type, rld[s_reload].when_needed,
513 opnum, rld[s_reload].opnum))
514 rld[s_reload].when_needed = RELOAD_OTHER;
517 if (s_reload == n_reloads)
519 #ifdef SECONDARY_MEMORY_NEEDED
520 /* If we need a memory location to copy between the two reload regs,
521 set it up now. Note that we do the input case before making
522 the reload and the output case after. This is due to the
523 way reloads are output. */
525 if (in_p && icode == CODE_FOR_nothing
526 && SECONDARY_MEMORY_NEEDED (class, reload_class, mode))
528 get_secondary_mem (x, reload_mode, opnum, type);
530 /* We may have just added new reloads. Make sure we add
531 the new reload at the end. */
532 s_reload = n_reloads;
534 #endif
536 /* We need to make a new secondary reload for this register class. */
537 rld[s_reload].in = rld[s_reload].out = 0;
538 rld[s_reload].class = class;
540 rld[s_reload].inmode = in_p ? mode : VOIDmode;
541 rld[s_reload].outmode = ! in_p ? mode : VOIDmode;
542 rld[s_reload].reg_rtx = 0;
543 rld[s_reload].optional = optional;
544 rld[s_reload].inc = 0;
545 /* Maybe we could combine these, but it seems too tricky. */
546 rld[s_reload].nocombine = 1;
547 rld[s_reload].in_reg = 0;
548 rld[s_reload].out_reg = 0;
549 rld[s_reload].opnum = opnum;
550 rld[s_reload].when_needed = secondary_type;
551 rld[s_reload].secondary_in_reload = in_p ? t_reload : -1;
552 rld[s_reload].secondary_out_reload = ! in_p ? t_reload : -1;
553 rld[s_reload].secondary_in_icode = in_p ? t_icode : CODE_FOR_nothing;
554 rld[s_reload].secondary_out_icode
555 = ! in_p ? t_icode : CODE_FOR_nothing;
556 rld[s_reload].secondary_p = 1;
558 n_reloads++;
560 #ifdef SECONDARY_MEMORY_NEEDED
561 if (! in_p && icode == CODE_FOR_nothing
562 && SECONDARY_MEMORY_NEEDED (reload_class, class, mode))
563 get_secondary_mem (x, mode, opnum, type);
564 #endif
567 *picode = icode;
568 return s_reload;
570 #endif /* HAVE_SECONDARY_RELOADS */
572 #ifdef SECONDARY_MEMORY_NEEDED
574 /* Return a memory location that will be used to copy X in mode MODE.
575 If we haven't already made a location for this mode in this insn,
576 call find_reloads_address on the location being returned. */
579 get_secondary_mem (x, mode, opnum, type)
580 rtx x ATTRIBUTE_UNUSED;
581 enum machine_mode mode;
582 int opnum;
583 enum reload_type type;
585 rtx loc;
586 int mem_valid;
588 /* By default, if MODE is narrower than a word, widen it to a word.
589 This is required because most machines that require these memory
590 locations do not support short load and stores from all registers
591 (e.g., FP registers). */
593 #ifdef SECONDARY_MEMORY_NEEDED_MODE
594 mode = SECONDARY_MEMORY_NEEDED_MODE (mode);
595 #else
596 if (GET_MODE_BITSIZE (mode) < BITS_PER_WORD && INTEGRAL_MODE_P (mode))
597 mode = mode_for_size (BITS_PER_WORD, GET_MODE_CLASS (mode), 0);
598 #endif
600 /* If we already have made a MEM for this operand in MODE, return it. */
601 if (secondary_memlocs_elim[(int) mode][opnum] != 0)
602 return secondary_memlocs_elim[(int) mode][opnum];
604 /* If this is the first time we've tried to get a MEM for this mode,
605 allocate a new one. `something_changed' in reload will get set
606 by noticing that the frame size has changed. */
608 if (secondary_memlocs[(int) mode] == 0)
610 #ifdef SECONDARY_MEMORY_NEEDED_RTX
611 secondary_memlocs[(int) mode] = SECONDARY_MEMORY_NEEDED_RTX (mode);
612 #else
613 secondary_memlocs[(int) mode]
614 = assign_stack_local (mode, GET_MODE_SIZE (mode), 0);
615 #endif
618 /* Get a version of the address doing any eliminations needed. If that
619 didn't give us a new MEM, make a new one if it isn't valid. */
621 loc = eliminate_regs (secondary_memlocs[(int) mode], VOIDmode, NULL_RTX);
622 mem_valid = strict_memory_address_p (mode, XEXP (loc, 0));
624 if (! mem_valid && loc == secondary_memlocs[(int) mode])
625 loc = copy_rtx (loc);
627 /* The only time the call below will do anything is if the stack
628 offset is too large. In that case IND_LEVELS doesn't matter, so we
629 can just pass a zero. Adjust the type to be the address of the
630 corresponding object. If the address was valid, save the eliminated
631 address. If it wasn't valid, we need to make a reload each time, so
632 don't save it. */
634 if (! mem_valid)
636 type = (type == RELOAD_FOR_INPUT ? RELOAD_FOR_INPUT_ADDRESS
637 : type == RELOAD_FOR_OUTPUT ? RELOAD_FOR_OUTPUT_ADDRESS
638 : RELOAD_OTHER);
640 find_reloads_address (mode, NULL_PTR, XEXP (loc, 0), &XEXP (loc, 0),
641 opnum, type, 0, 0);
644 secondary_memlocs_elim[(int) mode][opnum] = loc;
645 return loc;
648 /* Clear any secondary memory locations we've made. */
650 void
651 clear_secondary_mem ()
653 bzero ((char *) secondary_memlocs, sizeof secondary_memlocs);
655 #endif /* SECONDARY_MEMORY_NEEDED */
657 /* Find the largest class for which every register number plus N is valid in
658 M1 (if in range). Abort if no such class exists. */
660 static enum reg_class
661 find_valid_class (m1, n)
662 enum machine_mode m1 ATTRIBUTE_UNUSED;
663 int n;
665 int class;
666 int regno;
667 enum reg_class best_class = NO_REGS;
668 unsigned int best_size = 0;
670 for (class = 1; class < N_REG_CLASSES; class++)
672 int bad = 0;
673 for (regno = 0; regno < FIRST_PSEUDO_REGISTER && ! bad; regno++)
674 if (TEST_HARD_REG_BIT (reg_class_contents[class], regno)
675 && TEST_HARD_REG_BIT (reg_class_contents[class], regno + n)
676 && ! HARD_REGNO_MODE_OK (regno + n, m1))
677 bad = 1;
679 if (! bad && reg_class_size[class] > best_size)
680 best_class = class, best_size = reg_class_size[class];
683 if (best_size == 0)
684 abort ();
686 return best_class;
689 /* Return the number of a previously made reload that can be combined with
690 a new one, or n_reloads if none of the existing reloads can be used.
691 OUT, CLASS, TYPE and OPNUM are the same arguments as passed to
692 push_reload, they determine the kind of the new reload that we try to
693 combine. P_IN points to the corresponding value of IN, which can be
694 modified by this function.
695 DONT_SHARE is nonzero if we can't share any input-only reload for IN. */
696 static int
697 find_reusable_reload (p_in, out, class, type, opnum, dont_share)
698 rtx *p_in, out;
699 enum reg_class class;
700 enum reload_type type;
701 int opnum, dont_share;
703 rtx in = *p_in;
704 int i;
705 /* We can't merge two reloads if the output of either one is
706 earlyclobbered. */
708 if (earlyclobber_operand_p (out))
709 return n_reloads;
711 /* We can use an existing reload if the class is right
712 and at least one of IN and OUT is a match
713 and the other is at worst neutral.
714 (A zero compared against anything is neutral.)
716 If SMALL_REGISTER_CLASSES, don't use existing reloads unless they are
717 for the same thing since that can cause us to need more reload registers
718 than we otherwise would. */
720 for (i = 0; i < n_reloads; i++)
721 if ((reg_class_subset_p (class, rld[i].class)
722 || reg_class_subset_p (rld[i].class, class))
723 /* If the existing reload has a register, it must fit our class. */
724 && (rld[i].reg_rtx == 0
725 || TEST_HARD_REG_BIT (reg_class_contents[(int) class],
726 true_regnum (rld[i].reg_rtx)))
727 && ((in != 0 && MATCHES (rld[i].in, in) && ! dont_share
728 && (out == 0 || rld[i].out == 0 || MATCHES (rld[i].out, out)))
729 || (out != 0 && MATCHES (rld[i].out, out)
730 && (in == 0 || rld[i].in == 0 || MATCHES (rld[i].in, in))))
731 && (rld[i].out == 0 || ! earlyclobber_operand_p (rld[i].out))
732 && (reg_class_size[(int) class] == 1 || SMALL_REGISTER_CLASSES)
733 && MERGABLE_RELOADS (type, rld[i].when_needed, opnum, rld[i].opnum))
734 return i;
736 /* Reloading a plain reg for input can match a reload to postincrement
737 that reg, since the postincrement's value is the right value.
738 Likewise, it can match a preincrement reload, since we regard
739 the preincrementation as happening before any ref in this insn
740 to that register. */
741 for (i = 0; i < n_reloads; i++)
742 if ((reg_class_subset_p (class, rld[i].class)
743 || reg_class_subset_p (rld[i].class, class))
744 /* If the existing reload has a register, it must fit our
745 class. */
746 && (rld[i].reg_rtx == 0
747 || TEST_HARD_REG_BIT (reg_class_contents[(int) class],
748 true_regnum (rld[i].reg_rtx)))
749 && out == 0 && rld[i].out == 0 && rld[i].in != 0
750 && ((GET_CODE (in) == REG
751 && (GET_CODE (rld[i].in) == POST_INC
752 || GET_CODE (rld[i].in) == POST_DEC
753 || GET_CODE (rld[i].in) == PRE_INC
754 || GET_CODE (rld[i].in) == PRE_DEC)
755 && MATCHES (XEXP (rld[i].in, 0), in))
757 (GET_CODE (rld[i].in) == REG
758 && (GET_CODE (in) == POST_INC
759 || GET_CODE (in) == POST_DEC
760 || GET_CODE (in) == PRE_INC
761 || GET_CODE (in) == PRE_DEC)
762 && MATCHES (XEXP (in, 0), rld[i].in)))
763 && (rld[i].out == 0 || ! earlyclobber_operand_p (rld[i].out))
764 && (reg_class_size[(int) class] == 1 || SMALL_REGISTER_CLASSES)
765 && MERGABLE_RELOADS (type, rld[i].when_needed,
766 opnum, rld[i].opnum))
768 /* Make sure reload_in ultimately has the increment,
769 not the plain register. */
770 if (GET_CODE (in) == REG)
771 *p_in = rld[i].in;
772 return i;
774 return n_reloads;
777 /* Record one reload that needs to be performed.
778 IN is an rtx saying where the data are to be found before this instruction.
779 OUT says where they must be stored after the instruction.
780 (IN is zero for data not read, and OUT is zero for data not written.)
781 INLOC and OUTLOC point to the places in the instructions where
782 IN and OUT were found.
783 If IN and OUT are both non-zero, it means the same register must be used
784 to reload both IN and OUT.
786 CLASS is a register class required for the reloaded data.
787 INMODE is the machine mode that the instruction requires
788 for the reg that replaces IN and OUTMODE is likewise for OUT.
790 If IN is zero, then OUT's location and mode should be passed as
791 INLOC and INMODE.
793 STRICT_LOW is the 1 if there is a containing STRICT_LOW_PART rtx.
795 OPTIONAL nonzero means this reload does not need to be performed:
796 it can be discarded if that is more convenient.
798 OPNUM and TYPE say what the purpose of this reload is.
800 The return value is the reload-number for this reload.
802 If both IN and OUT are nonzero, in some rare cases we might
803 want to make two separate reloads. (Actually we never do this now.)
804 Therefore, the reload-number for OUT is stored in
805 output_reloadnum when we return; the return value applies to IN.
806 Usually (presently always), when IN and OUT are nonzero,
807 the two reload-numbers are equal, but the caller should be careful to
808 distinguish them. */
810 static int
811 push_reload (in, out, inloc, outloc, class,
812 inmode, outmode, strict_low, optional, opnum, type)
813 rtx in, out;
814 rtx *inloc, *outloc;
815 enum reg_class class;
816 enum machine_mode inmode, outmode;
817 int strict_low;
818 int optional;
819 int opnum;
820 enum reload_type type;
822 register int i;
823 int dont_share = 0;
824 int dont_remove_subreg = 0;
825 rtx *in_subreg_loc = 0, *out_subreg_loc = 0;
826 int secondary_in_reload = -1, secondary_out_reload = -1;
827 enum insn_code secondary_in_icode = CODE_FOR_nothing;
828 enum insn_code secondary_out_icode = CODE_FOR_nothing;
830 /* INMODE and/or OUTMODE could be VOIDmode if no mode
831 has been specified for the operand. In that case,
832 use the operand's mode as the mode to reload. */
833 if (inmode == VOIDmode && in != 0)
834 inmode = GET_MODE (in);
835 if (outmode == VOIDmode && out != 0)
836 outmode = GET_MODE (out);
838 /* If IN is a pseudo register everywhere-equivalent to a constant, and
839 it is not in a hard register, reload straight from the constant,
840 since we want to get rid of such pseudo registers.
841 Often this is done earlier, but not always in find_reloads_address. */
842 if (in != 0 && GET_CODE (in) == REG)
844 register int regno = REGNO (in);
846 if (regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
847 && reg_equiv_constant[regno] != 0)
848 in = reg_equiv_constant[regno];
851 /* Likewise for OUT. Of course, OUT will never be equivalent to
852 an actual constant, but it might be equivalent to a memory location
853 (in the case of a parameter). */
854 if (out != 0 && GET_CODE (out) == REG)
856 register int regno = REGNO (out);
858 if (regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
859 && reg_equiv_constant[regno] != 0)
860 out = reg_equiv_constant[regno];
863 /* If we have a read-write operand with an address side-effect,
864 change either IN or OUT so the side-effect happens only once. */
865 if (in != 0 && out != 0 && GET_CODE (in) == MEM && rtx_equal_p (in, out))
867 if (GET_CODE (XEXP (in, 0)) == POST_INC
868 || GET_CODE (XEXP (in, 0)) == POST_DEC)
870 rtx new = gen_rtx_MEM (GET_MODE (in), XEXP (XEXP (in, 0), 0));
872 MEM_COPY_ATTRIBUTES (new, in);
873 in = new;
875 if (GET_CODE (XEXP (in, 0)) == PRE_INC
876 || GET_CODE (XEXP (in, 0)) == PRE_DEC)
878 rtx new = gen_rtx_MEM (GET_MODE (out), XEXP (XEXP (out, 0), 0));
880 MEM_COPY_ATTRIBUTES (new, out);
881 out = new;
885 /* If we are reloading a (SUBREG constant ...), really reload just the
886 inside expression in its own mode. Similarly for (SUBREG (PLUS ...)).
887 If we have (SUBREG:M1 (MEM:M2 ...) ...) (or an inner REG that is still
888 a pseudo and hence will become a MEM) with M1 wider than M2 and the
889 register is a pseudo, also reload the inside expression.
890 For machines that extend byte loads, do this for any SUBREG of a pseudo
891 where both M1 and M2 are a word or smaller, M1 is wider than M2, and
892 M2 is an integral mode that gets extended when loaded.
893 Similar issue for (SUBREG:M1 (REG:M2 ...) ...) for a hard register R where
894 either M1 is not valid for R or M2 is wider than a word but we only
895 need one word to store an M2-sized quantity in R.
896 (However, if OUT is nonzero, we need to reload the reg *and*
897 the subreg, so do nothing here, and let following statement handle it.)
899 Note that the case of (SUBREG (CONST_INT...)...) is handled elsewhere;
900 we can't handle it here because CONST_INT does not indicate a mode.
902 Similarly, we must reload the inside expression if we have a
903 STRICT_LOW_PART (presumably, in == out in the cas).
905 Also reload the inner expression if it does not require a secondary
906 reload but the SUBREG does.
908 Finally, reload the inner expression if it is a register that is in
909 the class whose registers cannot be referenced in a different size
910 and M1 is not the same size as M2. If SUBREG_WORD is nonzero, we
911 cannot reload just the inside since we might end up with the wrong
912 register class. But if it is inside a STRICT_LOW_PART, we have
913 no choice, so we hope we do get the right register class there. */
915 if (in != 0 && GET_CODE (in) == SUBREG
916 && (SUBREG_WORD (in) == 0 || strict_low)
917 #ifdef CLASS_CANNOT_CHANGE_MODE
918 && class != CLASS_CANNOT_CHANGE_MODE
919 #endif
920 && (CONSTANT_P (SUBREG_REG (in))
921 || GET_CODE (SUBREG_REG (in)) == PLUS
922 || strict_low
923 || (((GET_CODE (SUBREG_REG (in)) == REG
924 && REGNO (SUBREG_REG (in)) >= FIRST_PSEUDO_REGISTER)
925 || GET_CODE (SUBREG_REG (in)) == MEM)
926 && ((GET_MODE_SIZE (inmode)
927 > GET_MODE_SIZE (GET_MODE (SUBREG_REG (in))))
928 #ifdef LOAD_EXTEND_OP
929 || (GET_MODE_SIZE (inmode) <= UNITS_PER_WORD
930 && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (in)))
931 <= UNITS_PER_WORD)
932 && (GET_MODE_SIZE (inmode)
933 > GET_MODE_SIZE (GET_MODE (SUBREG_REG (in))))
934 && INTEGRAL_MODE_P (GET_MODE (SUBREG_REG (in)))
935 && LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (in))) != NIL)
936 #endif
937 #ifdef WORD_REGISTER_OPERATIONS
938 || ((GET_MODE_SIZE (inmode)
939 < GET_MODE_SIZE (GET_MODE (SUBREG_REG (in))))
940 && ((GET_MODE_SIZE (inmode) - 1) / UNITS_PER_WORD ==
941 ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (in))) - 1)
942 / UNITS_PER_WORD)))
943 #endif
945 || (GET_CODE (SUBREG_REG (in)) == REG
946 && REGNO (SUBREG_REG (in)) < FIRST_PSEUDO_REGISTER
947 /* The case where out is nonzero
948 is handled differently in the following statement. */
949 && (out == 0 || SUBREG_WORD (in) == 0)
950 && ((GET_MODE_SIZE (inmode) <= UNITS_PER_WORD
951 && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (in)))
952 > UNITS_PER_WORD)
953 && ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (in)))
954 / UNITS_PER_WORD)
955 != HARD_REGNO_NREGS (REGNO (SUBREG_REG (in)),
956 GET_MODE (SUBREG_REG (in)))))
957 || ! HARD_REGNO_MODE_OK ((REGNO (SUBREG_REG (in))
958 + SUBREG_WORD (in)),
959 inmode)))
960 #ifdef SECONDARY_INPUT_RELOAD_CLASS
961 || (SECONDARY_INPUT_RELOAD_CLASS (class, inmode, in) != NO_REGS
962 && (SECONDARY_INPUT_RELOAD_CLASS (class,
963 GET_MODE (SUBREG_REG (in)),
964 SUBREG_REG (in))
965 == NO_REGS))
966 #endif
967 #ifdef CLASS_CANNOT_CHANGE_MODE
968 || (GET_CODE (SUBREG_REG (in)) == REG
969 && REGNO (SUBREG_REG (in)) < FIRST_PSEUDO_REGISTER
970 && (TEST_HARD_REG_BIT
971 (reg_class_contents[(int) CLASS_CANNOT_CHANGE_MODE],
972 REGNO (SUBREG_REG (in))))
973 && CLASS_CANNOT_CHANGE_MODE_P (GET_MODE (SUBREG_REG (in)),
974 inmode))
975 #endif
978 in_subreg_loc = inloc;
979 inloc = &SUBREG_REG (in);
980 in = *inloc;
981 #if ! defined (LOAD_EXTEND_OP) && ! defined (WORD_REGISTER_OPERATIONS)
982 if (GET_CODE (in) == MEM)
983 /* This is supposed to happen only for paradoxical subregs made by
984 combine.c. (SUBREG (MEM)) isn't supposed to occur other ways. */
985 if (GET_MODE_SIZE (GET_MODE (in)) > GET_MODE_SIZE (inmode))
986 abort ();
987 #endif
988 inmode = GET_MODE (in);
991 /* Similar issue for (SUBREG:M1 (REG:M2 ...) ...) for a hard register R where
992 either M1 is not valid for R or M2 is wider than a word but we only
993 need one word to store an M2-sized quantity in R.
995 However, we must reload the inner reg *as well as* the subreg in
996 that case. */
998 /* Similar issue for (SUBREG constant ...) if it was not handled by the
999 code above. This can happen if SUBREG_WORD != 0. */
1001 if (in != 0 && GET_CODE (in) == SUBREG
1002 && (CONSTANT_P (SUBREG_REG (in))
1003 || (GET_CODE (SUBREG_REG (in)) == REG
1004 && REGNO (SUBREG_REG (in)) < FIRST_PSEUDO_REGISTER
1005 && (! HARD_REGNO_MODE_OK (REGNO (SUBREG_REG (in))
1006 + SUBREG_WORD (in),
1007 inmode)
1008 || (GET_MODE_SIZE (inmode) <= UNITS_PER_WORD
1009 && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (in)))
1010 > UNITS_PER_WORD)
1011 && ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (in)))
1012 / UNITS_PER_WORD)
1013 != HARD_REGNO_NREGS (REGNO (SUBREG_REG (in)),
1014 GET_MODE (SUBREG_REG (in)))))))))
1016 /* This relies on the fact that emit_reload_insns outputs the
1017 instructions for input reloads of type RELOAD_OTHER in the same
1018 order as the reloads. Thus if the outer reload is also of type
1019 RELOAD_OTHER, we are guaranteed that this inner reload will be
1020 output before the outer reload. */
1021 push_reload (SUBREG_REG (in), NULL_RTX, &SUBREG_REG (in), NULL_PTR,
1022 find_valid_class (inmode, SUBREG_WORD (in)),
1023 VOIDmode, VOIDmode, 0, 0, opnum, type);
1024 dont_remove_subreg = 1;
1027 /* Similarly for paradoxical and problematical SUBREGs on the output.
1028 Note that there is no reason we need worry about the previous value
1029 of SUBREG_REG (out); even if wider than out,
1030 storing in a subreg is entitled to clobber it all
1031 (except in the case of STRICT_LOW_PART,
1032 and in that case the constraint should label it input-output.) */
1033 if (out != 0 && GET_CODE (out) == SUBREG
1034 && (SUBREG_WORD (out) == 0 || strict_low)
1035 #ifdef CLASS_CANNOT_CHANGE_MODE
1036 && class != CLASS_CANNOT_CHANGE_MODE
1037 #endif
1038 && (CONSTANT_P (SUBREG_REG (out))
1039 || strict_low
1040 || (((GET_CODE (SUBREG_REG (out)) == REG
1041 && REGNO (SUBREG_REG (out)) >= FIRST_PSEUDO_REGISTER)
1042 || GET_CODE (SUBREG_REG (out)) == MEM)
1043 && ((GET_MODE_SIZE (outmode)
1044 > GET_MODE_SIZE (GET_MODE (SUBREG_REG (out))))
1045 #ifdef WORD_REGISTER_OPERATIONS
1046 || ((GET_MODE_SIZE (outmode)
1047 < GET_MODE_SIZE (GET_MODE (SUBREG_REG (out))))
1048 && ((GET_MODE_SIZE (outmode) - 1) / UNITS_PER_WORD ==
1049 ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (out))) - 1)
1050 / UNITS_PER_WORD)))
1051 #endif
1053 || (GET_CODE (SUBREG_REG (out)) == REG
1054 && REGNO (SUBREG_REG (out)) < FIRST_PSEUDO_REGISTER
1055 && ((GET_MODE_SIZE (outmode) <= UNITS_PER_WORD
1056 && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (out)))
1057 > UNITS_PER_WORD)
1058 && ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (out)))
1059 / UNITS_PER_WORD)
1060 != HARD_REGNO_NREGS (REGNO (SUBREG_REG (out)),
1061 GET_MODE (SUBREG_REG (out)))))
1062 || ! HARD_REGNO_MODE_OK ((REGNO (SUBREG_REG (out))
1063 + SUBREG_WORD (out)),
1064 outmode)))
1065 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
1066 || (SECONDARY_OUTPUT_RELOAD_CLASS (class, outmode, out) != NO_REGS
1067 && (SECONDARY_OUTPUT_RELOAD_CLASS (class,
1068 GET_MODE (SUBREG_REG (out)),
1069 SUBREG_REG (out))
1070 == NO_REGS))
1071 #endif
1072 #ifdef CLASS_CANNOT_CHANGE_MODE
1073 || (GET_CODE (SUBREG_REG (out)) == REG
1074 && REGNO (SUBREG_REG (out)) < FIRST_PSEUDO_REGISTER
1075 && (TEST_HARD_REG_BIT
1076 (reg_class_contents[(int) CLASS_CANNOT_CHANGE_MODE],
1077 REGNO (SUBREG_REG (out))))
1078 && CLASS_CANNOT_CHANGE_MODE_P (GET_MODE (SUBREG_REG (out)),
1079 outmode))
1080 #endif
1083 out_subreg_loc = outloc;
1084 outloc = &SUBREG_REG (out);
1085 out = *outloc;
1086 #if ! defined (LOAD_EXTEND_OP) && ! defined (WORD_REGISTER_OPERATIONS)
1087 if (GET_CODE (out) == MEM
1088 && GET_MODE_SIZE (GET_MODE (out)) > GET_MODE_SIZE (outmode))
1089 abort ();
1090 #endif
1091 outmode = GET_MODE (out);
1094 /* Similar issue for (SUBREG:M1 (REG:M2 ...) ...) for a hard register R where
1095 either M1 is not valid for R or M2 is wider than a word but we only
1096 need one word to store an M2-sized quantity in R.
1098 However, we must reload the inner reg *as well as* the subreg in
1099 that case. In this case, the inner reg is an in-out reload. */
1101 if (out != 0 && GET_CODE (out) == SUBREG
1102 && GET_CODE (SUBREG_REG (out)) == REG
1103 && REGNO (SUBREG_REG (out)) < FIRST_PSEUDO_REGISTER
1104 && (! HARD_REGNO_MODE_OK (REGNO (SUBREG_REG (out)) + SUBREG_WORD (out),
1105 outmode)
1106 || (GET_MODE_SIZE (outmode) <= UNITS_PER_WORD
1107 && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (out)))
1108 > UNITS_PER_WORD)
1109 && ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (out)))
1110 / UNITS_PER_WORD)
1111 != HARD_REGNO_NREGS (REGNO (SUBREG_REG (out)),
1112 GET_MODE (SUBREG_REG (out)))))))
1114 /* This relies on the fact that emit_reload_insns outputs the
1115 instructions for output reloads of type RELOAD_OTHER in reverse
1116 order of the reloads. Thus if the outer reload is also of type
1117 RELOAD_OTHER, we are guaranteed that this inner reload will be
1118 output after the outer reload. */
1119 dont_remove_subreg = 1;
1120 push_reload (SUBREG_REG (out), SUBREG_REG (out), &SUBREG_REG (out),
1121 &SUBREG_REG (out),
1122 find_valid_class (outmode, SUBREG_WORD (out)),
1123 VOIDmode, VOIDmode, 0, 0,
1124 opnum, RELOAD_OTHER);
1127 /* If IN appears in OUT, we can't share any input-only reload for IN. */
1128 if (in != 0 && out != 0 && GET_CODE (out) == MEM
1129 && (GET_CODE (in) == REG || GET_CODE (in) == MEM)
1130 && reg_overlap_mentioned_for_reload_p (in, XEXP (out, 0)))
1131 dont_share = 1;
1133 /* If IN is a SUBREG of a hard register, make a new REG. This
1134 simplifies some of the cases below. */
1136 if (in != 0 && GET_CODE (in) == SUBREG && GET_CODE (SUBREG_REG (in)) == REG
1137 && REGNO (SUBREG_REG (in)) < FIRST_PSEUDO_REGISTER
1138 && ! dont_remove_subreg)
1139 in = gen_rtx_REG (GET_MODE (in),
1140 REGNO (SUBREG_REG (in)) + SUBREG_WORD (in));
1142 /* Similarly for OUT. */
1143 if (out != 0 && GET_CODE (out) == SUBREG
1144 && GET_CODE (SUBREG_REG (out)) == REG
1145 && REGNO (SUBREG_REG (out)) < FIRST_PSEUDO_REGISTER
1146 && ! dont_remove_subreg)
1147 out = gen_rtx_REG (GET_MODE (out),
1148 REGNO (SUBREG_REG (out)) + SUBREG_WORD (out));
1150 /* Narrow down the class of register wanted if that is
1151 desirable on this machine for efficiency. */
1152 if (in != 0)
1153 class = PREFERRED_RELOAD_CLASS (in, class);
1155 /* Output reloads may need analogous treatment, different in detail. */
1156 #ifdef PREFERRED_OUTPUT_RELOAD_CLASS
1157 if (out != 0)
1158 class = PREFERRED_OUTPUT_RELOAD_CLASS (out, class);
1159 #endif
1161 /* Make sure we use a class that can handle the actual pseudo
1162 inside any subreg. For example, on the 386, QImode regs
1163 can appear within SImode subregs. Although GENERAL_REGS
1164 can handle SImode, QImode needs a smaller class. */
1165 #ifdef LIMIT_RELOAD_CLASS
1166 if (in_subreg_loc)
1167 class = LIMIT_RELOAD_CLASS (inmode, class);
1168 else if (in != 0 && GET_CODE (in) == SUBREG)
1169 class = LIMIT_RELOAD_CLASS (GET_MODE (SUBREG_REG (in)), class);
1171 if (out_subreg_loc)
1172 class = LIMIT_RELOAD_CLASS (outmode, class);
1173 if (out != 0 && GET_CODE (out) == SUBREG)
1174 class = LIMIT_RELOAD_CLASS (GET_MODE (SUBREG_REG (out)), class);
1175 #endif
1177 /* Verify that this class is at least possible for the mode that
1178 is specified. */
1179 if (this_insn_is_asm)
1181 enum machine_mode mode;
1182 if (GET_MODE_SIZE (inmode) > GET_MODE_SIZE (outmode))
1183 mode = inmode;
1184 else
1185 mode = outmode;
1186 if (mode == VOIDmode)
1188 error_for_asm (this_insn, "cannot reload integer constant operand in `asm'");
1189 mode = word_mode;
1190 if (in != 0)
1191 inmode = word_mode;
1192 if (out != 0)
1193 outmode = word_mode;
1195 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1196 if (HARD_REGNO_MODE_OK (i, mode)
1197 && TEST_HARD_REG_BIT (reg_class_contents[(int) class], i))
1199 int nregs = HARD_REGNO_NREGS (i, mode);
1201 int j;
1202 for (j = 1; j < nregs; j++)
1203 if (! TEST_HARD_REG_BIT (reg_class_contents[(int) class], i + j))
1204 break;
1205 if (j == nregs)
1206 break;
1208 if (i == FIRST_PSEUDO_REGISTER)
1210 error_for_asm (this_insn, "impossible register constraint in `asm'");
1211 class = ALL_REGS;
1215 /* Optional output reloads are always OK even if we have no register class,
1216 since the function of these reloads is only to have spill_reg_store etc.
1217 set, so that the storing insn can be deleted later. */
1218 if (class == NO_REGS
1219 && (optional == 0 || type != RELOAD_FOR_OUTPUT))
1220 abort ();
1222 i = find_reusable_reload (&in, out, class, type, opnum, dont_share);
1224 if (i == n_reloads)
1226 /* See if we need a secondary reload register to move between CLASS
1227 and IN or CLASS and OUT. Get the icode and push any required reloads
1228 needed for each of them if so. */
1230 #ifdef SECONDARY_INPUT_RELOAD_CLASS
1231 if (in != 0)
1232 secondary_in_reload
1233 = push_secondary_reload (1, in, opnum, optional, class, inmode, type,
1234 &secondary_in_icode);
1235 #endif
1237 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
1238 if (out != 0 && GET_CODE (out) != SCRATCH)
1239 secondary_out_reload
1240 = push_secondary_reload (0, out, opnum, optional, class, outmode,
1241 type, &secondary_out_icode);
1242 #endif
1244 /* We found no existing reload suitable for re-use.
1245 So add an additional reload. */
1247 #ifdef SECONDARY_MEMORY_NEEDED
1248 /* If a memory location is needed for the copy, make one. */
1249 if (in != 0 && GET_CODE (in) == REG
1250 && REGNO (in) < FIRST_PSEUDO_REGISTER
1251 && SECONDARY_MEMORY_NEEDED (REGNO_REG_CLASS (REGNO (in)),
1252 class, inmode))
1253 get_secondary_mem (in, inmode, opnum, type);
1254 #endif
1256 i = n_reloads;
1257 rld[i].in = in;
1258 rld[i].out = out;
1259 rld[i].class = class;
1260 rld[i].inmode = inmode;
1261 rld[i].outmode = outmode;
1262 rld[i].reg_rtx = 0;
1263 rld[i].optional = optional;
1264 rld[i].inc = 0;
1265 rld[i].nocombine = 0;
1266 rld[i].in_reg = inloc ? *inloc : 0;
1267 rld[i].out_reg = outloc ? *outloc : 0;
1268 rld[i].opnum = opnum;
1269 rld[i].when_needed = type;
1270 rld[i].secondary_in_reload = secondary_in_reload;
1271 rld[i].secondary_out_reload = secondary_out_reload;
1272 rld[i].secondary_in_icode = secondary_in_icode;
1273 rld[i].secondary_out_icode = secondary_out_icode;
1274 rld[i].secondary_p = 0;
1276 n_reloads++;
1278 #ifdef SECONDARY_MEMORY_NEEDED
1279 if (out != 0 && GET_CODE (out) == REG
1280 && REGNO (out) < FIRST_PSEUDO_REGISTER
1281 && SECONDARY_MEMORY_NEEDED (class, REGNO_REG_CLASS (REGNO (out)),
1282 outmode))
1283 get_secondary_mem (out, outmode, opnum, type);
1284 #endif
1286 else
1288 /* We are reusing an existing reload,
1289 but we may have additional information for it.
1290 For example, we may now have both IN and OUT
1291 while the old one may have just one of them. */
1293 /* The modes can be different. If they are, we want to reload in
1294 the larger mode, so that the value is valid for both modes. */
1295 if (inmode != VOIDmode
1296 && GET_MODE_SIZE (inmode) > GET_MODE_SIZE (rld[i].inmode))
1297 rld[i].inmode = inmode;
1298 if (outmode != VOIDmode
1299 && GET_MODE_SIZE (outmode) > GET_MODE_SIZE (rld[i].outmode))
1300 rld[i].outmode = outmode;
1301 if (in != 0)
1303 rtx in_reg = inloc ? *inloc : 0;
1304 /* If we merge reloads for two distinct rtl expressions that
1305 are identical in content, there might be duplicate address
1306 reloads. Remove the extra set now, so that if we later find
1307 that we can inherit this reload, we can get rid of the
1308 address reloads altogether.
1310 Do not do this if both reloads are optional since the result
1311 would be an optional reload which could potentially leave
1312 unresolved address replacements.
1314 It is not sufficient to call transfer_replacements since
1315 choose_reload_regs will remove the replacements for address
1316 reloads of inherited reloads which results in the same
1317 problem. */
1318 if (rld[i].in != in && rtx_equal_p (in, rld[i].in)
1319 && ! (rld[i].optional && optional))
1321 /* We must keep the address reload with the lower operand
1322 number alive. */
1323 if (opnum > rld[i].opnum)
1325 remove_address_replacements (in);
1326 in = rld[i].in;
1327 in_reg = rld[i].in_reg;
1329 else
1330 remove_address_replacements (rld[i].in);
1332 rld[i].in = in;
1333 rld[i].in_reg = in_reg;
1335 if (out != 0)
1337 rld[i].out = out;
1338 rld[i].out_reg = outloc ? *outloc : 0;
1340 if (reg_class_subset_p (class, rld[i].class))
1341 rld[i].class = class;
1342 rld[i].optional &= optional;
1343 if (MERGE_TO_OTHER (type, rld[i].when_needed,
1344 opnum, rld[i].opnum))
1345 rld[i].when_needed = RELOAD_OTHER;
1346 rld[i].opnum = MIN (rld[i].opnum, opnum);
1349 /* If the ostensible rtx being reload differs from the rtx found
1350 in the location to substitute, this reload is not safe to combine
1351 because we cannot reliably tell whether it appears in the insn. */
1353 if (in != 0 && in != *inloc)
1354 rld[i].nocombine = 1;
1356 #if 0
1357 /* This was replaced by changes in find_reloads_address_1 and the new
1358 function inc_for_reload, which go with a new meaning of reload_inc. */
1360 /* If this is an IN/OUT reload in an insn that sets the CC,
1361 it must be for an autoincrement. It doesn't work to store
1362 the incremented value after the insn because that would clobber the CC.
1363 So we must do the increment of the value reloaded from,
1364 increment it, store it back, then decrement again. */
1365 if (out != 0 && sets_cc0_p (PATTERN (this_insn)))
1367 out = 0;
1368 rld[i].out = 0;
1369 rld[i].inc = find_inc_amount (PATTERN (this_insn), in);
1370 /* If we did not find a nonzero amount-to-increment-by,
1371 that contradicts the belief that IN is being incremented
1372 in an address in this insn. */
1373 if (rld[i].inc == 0)
1374 abort ();
1376 #endif
1378 /* If we will replace IN and OUT with the reload-reg,
1379 record where they are located so that substitution need
1380 not do a tree walk. */
1382 if (replace_reloads)
1384 if (inloc != 0)
1386 register struct replacement *r = &replacements[n_replacements++];
1387 r->what = i;
1388 r->subreg_loc = in_subreg_loc;
1389 r->where = inloc;
1390 r->mode = inmode;
1392 if (outloc != 0 && outloc != inloc)
1394 register struct replacement *r = &replacements[n_replacements++];
1395 r->what = i;
1396 r->where = outloc;
1397 r->subreg_loc = out_subreg_loc;
1398 r->mode = outmode;
1402 /* If this reload is just being introduced and it has both
1403 an incoming quantity and an outgoing quantity that are
1404 supposed to be made to match, see if either one of the two
1405 can serve as the place to reload into.
1407 If one of them is acceptable, set rld[i].reg_rtx
1408 to that one. */
1410 if (in != 0 && out != 0 && in != out && rld[i].reg_rtx == 0)
1412 rld[i].reg_rtx = find_dummy_reload (in, out, inloc, outloc,
1413 inmode, outmode,
1414 rld[i].class, i,
1415 earlyclobber_operand_p (out));
1417 /* If the outgoing register already contains the same value
1418 as the incoming one, we can dispense with loading it.
1419 The easiest way to tell the caller that is to give a phony
1420 value for the incoming operand (same as outgoing one). */
1421 if (rld[i].reg_rtx == out
1422 && (GET_CODE (in) == REG || CONSTANT_P (in))
1423 && 0 != find_equiv_reg (in, this_insn, 0, REGNO (out),
1424 static_reload_reg_p, i, inmode))
1425 rld[i].in = out;
1428 /* If this is an input reload and the operand contains a register that
1429 dies in this insn and is used nowhere else, see if it is the right class
1430 to be used for this reload. Use it if so. (This occurs most commonly
1431 in the case of paradoxical SUBREGs and in-out reloads). We cannot do
1432 this if it is also an output reload that mentions the register unless
1433 the output is a SUBREG that clobbers an entire register.
1435 Note that the operand might be one of the spill regs, if it is a
1436 pseudo reg and we are in a block where spilling has not taken place.
1437 But if there is no spilling in this block, that is OK.
1438 An explicitly used hard reg cannot be a spill reg. */
1440 if (rld[i].reg_rtx == 0 && in != 0)
1442 rtx note;
1443 int regno;
1445 for (note = REG_NOTES (this_insn); note; note = XEXP (note, 1))
1446 if (REG_NOTE_KIND (note) == REG_DEAD
1447 && GET_CODE (XEXP (note, 0)) == REG
1448 && (regno = REGNO (XEXP (note, 0))) < FIRST_PSEUDO_REGISTER
1449 && reg_mentioned_p (XEXP (note, 0), in)
1450 && ! refers_to_regno_for_reload_p (regno,
1451 (regno
1452 + HARD_REGNO_NREGS (regno,
1453 inmode)),
1454 PATTERN (this_insn), inloc)
1455 /* If this is also an output reload, IN cannot be used as
1456 the reload register if it is set in this insn unless IN
1457 is also OUT. */
1458 && (out == 0 || in == out
1459 || ! hard_reg_set_here_p (regno,
1460 (regno
1461 + HARD_REGNO_NREGS (regno,
1462 inmode)),
1463 PATTERN (this_insn)))
1464 /* ??? Why is this code so different from the previous?
1465 Is there any simple coherent way to describe the two together?
1466 What's going on here. */
1467 && (in != out
1468 || (GET_CODE (in) == SUBREG
1469 && (((GET_MODE_SIZE (GET_MODE (in)) + (UNITS_PER_WORD - 1))
1470 / UNITS_PER_WORD)
1471 == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (in)))
1472 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD))))
1473 /* Make sure the operand fits in the reg that dies. */
1474 && GET_MODE_SIZE (inmode) <= GET_MODE_SIZE (GET_MODE (XEXP (note, 0)))
1475 && HARD_REGNO_MODE_OK (regno, inmode)
1476 && GET_MODE_SIZE (outmode) <= GET_MODE_SIZE (GET_MODE (XEXP (note, 0)))
1477 && HARD_REGNO_MODE_OK (regno, outmode))
1479 unsigned int offs;
1480 unsigned int nregs = MAX (HARD_REGNO_NREGS (regno, inmode),
1481 HARD_REGNO_NREGS (regno, outmode));
1483 for (offs = 0; offs < nregs; offs++)
1484 if (fixed_regs[regno + offs]
1485 || ! TEST_HARD_REG_BIT (reg_class_contents[(int) class],
1486 regno + offs))
1487 break;
1489 if (offs == nregs)
1491 rld[i].reg_rtx = gen_rtx_REG (inmode, regno);
1492 break;
1497 if (out)
1498 output_reloadnum = i;
1500 return i;
1503 /* Record an additional place we must replace a value
1504 for which we have already recorded a reload.
1505 RELOADNUM is the value returned by push_reload
1506 when the reload was recorded.
1507 This is used in insn patterns that use match_dup. */
1509 static void
1510 push_replacement (loc, reloadnum, mode)
1511 rtx *loc;
1512 int reloadnum;
1513 enum machine_mode mode;
1515 if (replace_reloads)
1517 register struct replacement *r = &replacements[n_replacements++];
1518 r->what = reloadnum;
1519 r->where = loc;
1520 r->subreg_loc = 0;
1521 r->mode = mode;
1525 /* Transfer all replacements that used to be in reload FROM to be in
1526 reload TO. */
1528 void
1529 transfer_replacements (to, from)
1530 int to, from;
1532 int i;
1534 for (i = 0; i < n_replacements; i++)
1535 if (replacements[i].what == from)
1536 replacements[i].what = to;
1539 /* IN_RTX is the value loaded by a reload that we now decided to inherit,
1540 or a subpart of it. If we have any replacements registered for IN_RTX,
1541 cancel the reloads that were supposed to load them.
1542 Return non-zero if we canceled any reloads. */
1544 remove_address_replacements (in_rtx)
1545 rtx in_rtx;
1547 int i, j;
1548 char reload_flags[MAX_RELOADS];
1549 int something_changed = 0;
1551 bzero (reload_flags, sizeof reload_flags);
1552 for (i = 0, j = 0; i < n_replacements; i++)
1554 if (loc_mentioned_in_p (replacements[i].where, in_rtx))
1555 reload_flags[replacements[i].what] |= 1;
1556 else
1558 replacements[j++] = replacements[i];
1559 reload_flags[replacements[i].what] |= 2;
1562 /* Note that the following store must be done before the recursive calls. */
1563 n_replacements = j;
1565 for (i = n_reloads - 1; i >= 0; i--)
1567 if (reload_flags[i] == 1)
1569 deallocate_reload_reg (i);
1570 remove_address_replacements (rld[i].in);
1571 rld[i].in = 0;
1572 something_changed = 1;
1575 return something_changed;
1578 /* If there is only one output reload, and it is not for an earlyclobber
1579 operand, try to combine it with a (logically unrelated) input reload
1580 to reduce the number of reload registers needed.
1582 This is safe if the input reload does not appear in
1583 the value being output-reloaded, because this implies
1584 it is not needed any more once the original insn completes.
1586 If that doesn't work, see we can use any of the registers that
1587 die in this insn as a reload register. We can if it is of the right
1588 class and does not appear in the value being output-reloaded. */
1590 static void
1591 combine_reloads ()
1593 int i;
1594 int output_reload = -1;
1595 int secondary_out = -1;
1596 rtx note;
1598 /* Find the output reload; return unless there is exactly one
1599 and that one is mandatory. */
1601 for (i = 0; i < n_reloads; i++)
1602 if (rld[i].out != 0)
1604 if (output_reload >= 0)
1605 return;
1606 output_reload = i;
1609 if (output_reload < 0 || rld[output_reload].optional)
1610 return;
1612 /* An input-output reload isn't combinable. */
1614 if (rld[output_reload].in != 0)
1615 return;
1617 /* If this reload is for an earlyclobber operand, we can't do anything. */
1618 if (earlyclobber_operand_p (rld[output_reload].out))
1619 return;
1621 /* Check each input reload; can we combine it? */
1623 for (i = 0; i < n_reloads; i++)
1624 if (rld[i].in && ! rld[i].optional && ! rld[i].nocombine
1625 /* Life span of this reload must not extend past main insn. */
1626 && rld[i].when_needed != RELOAD_FOR_OUTPUT_ADDRESS
1627 && rld[i].when_needed != RELOAD_FOR_OUTADDR_ADDRESS
1628 && rld[i].when_needed != RELOAD_OTHER
1629 && (CLASS_MAX_NREGS (rld[i].class, rld[i].inmode)
1630 == CLASS_MAX_NREGS (rld[output_reload].class,
1631 rld[output_reload].outmode))
1632 && rld[i].inc == 0
1633 && rld[i].reg_rtx == 0
1634 #ifdef SECONDARY_MEMORY_NEEDED
1635 /* Don't combine two reloads with different secondary
1636 memory locations. */
1637 && (secondary_memlocs_elim[(int) rld[output_reload].outmode][rld[i].opnum] == 0
1638 || secondary_memlocs_elim[(int) rld[output_reload].outmode][rld[output_reload].opnum] == 0
1639 || rtx_equal_p (secondary_memlocs_elim[(int) rld[output_reload].outmode][rld[i].opnum],
1640 secondary_memlocs_elim[(int) rld[output_reload].outmode][rld[output_reload].opnum]))
1641 #endif
1642 && (SMALL_REGISTER_CLASSES
1643 ? (rld[i].class == rld[output_reload].class)
1644 : (reg_class_subset_p (rld[i].class,
1645 rld[output_reload].class)
1646 || reg_class_subset_p (rld[output_reload].class,
1647 rld[i].class)))
1648 && (MATCHES (rld[i].in, rld[output_reload].out)
1649 /* Args reversed because the first arg seems to be
1650 the one that we imagine being modified
1651 while the second is the one that might be affected. */
1652 || (! reg_overlap_mentioned_for_reload_p (rld[output_reload].out,
1653 rld[i].in)
1654 /* However, if the input is a register that appears inside
1655 the output, then we also can't share.
1656 Imagine (set (mem (reg 69)) (plus (reg 69) ...)).
1657 If the same reload reg is used for both reg 69 and the
1658 result to be stored in memory, then that result
1659 will clobber the address of the memory ref. */
1660 && ! (GET_CODE (rld[i].in) == REG
1661 && reg_overlap_mentioned_for_reload_p (rld[i].in,
1662 rld[output_reload].out))))
1663 && (reg_class_size[(int) rld[i].class]
1664 || SMALL_REGISTER_CLASSES)
1665 /* We will allow making things slightly worse by combining an
1666 input and an output, but no worse than that. */
1667 && (rld[i].when_needed == RELOAD_FOR_INPUT
1668 || rld[i].when_needed == RELOAD_FOR_OUTPUT))
1670 int j;
1672 /* We have found a reload to combine with! */
1673 rld[i].out = rld[output_reload].out;
1674 rld[i].out_reg = rld[output_reload].out_reg;
1675 rld[i].outmode = rld[output_reload].outmode;
1676 /* Mark the old output reload as inoperative. */
1677 rld[output_reload].out = 0;
1678 /* The combined reload is needed for the entire insn. */
1679 rld[i].when_needed = RELOAD_OTHER;
1680 /* If the output reload had a secondary reload, copy it. */
1681 if (rld[output_reload].secondary_out_reload != -1)
1683 rld[i].secondary_out_reload
1684 = rld[output_reload].secondary_out_reload;
1685 rld[i].secondary_out_icode
1686 = rld[output_reload].secondary_out_icode;
1689 #ifdef SECONDARY_MEMORY_NEEDED
1690 /* Copy any secondary MEM. */
1691 if (secondary_memlocs_elim[(int) rld[output_reload].outmode][rld[output_reload].opnum] != 0)
1692 secondary_memlocs_elim[(int) rld[output_reload].outmode][rld[i].opnum]
1693 = secondary_memlocs_elim[(int) rld[output_reload].outmode][rld[output_reload].opnum];
1694 #endif
1695 /* If required, minimize the register class. */
1696 if (reg_class_subset_p (rld[output_reload].class,
1697 rld[i].class))
1698 rld[i].class = rld[output_reload].class;
1700 /* Transfer all replacements from the old reload to the combined. */
1701 for (j = 0; j < n_replacements; j++)
1702 if (replacements[j].what == output_reload)
1703 replacements[j].what = i;
1705 return;
1708 /* If this insn has only one operand that is modified or written (assumed
1709 to be the first), it must be the one corresponding to this reload. It
1710 is safe to use anything that dies in this insn for that output provided
1711 that it does not occur in the output (we already know it isn't an
1712 earlyclobber. If this is an asm insn, give up. */
1714 if (INSN_CODE (this_insn) == -1)
1715 return;
1717 for (i = 1; i < insn_data[INSN_CODE (this_insn)].n_operands; i++)
1718 if (insn_data[INSN_CODE (this_insn)].operand[i].constraint[0] == '='
1719 || insn_data[INSN_CODE (this_insn)].operand[i].constraint[0] == '+')
1720 return;
1722 /* See if some hard register that dies in this insn and is not used in
1723 the output is the right class. Only works if the register we pick
1724 up can fully hold our output reload. */
1725 for (note = REG_NOTES (this_insn); note; note = XEXP (note, 1))
1726 if (REG_NOTE_KIND (note) == REG_DEAD
1727 && GET_CODE (XEXP (note, 0)) == REG
1728 && ! reg_overlap_mentioned_for_reload_p (XEXP (note, 0),
1729 rld[output_reload].out)
1730 && REGNO (XEXP (note, 0)) < FIRST_PSEUDO_REGISTER
1731 && HARD_REGNO_MODE_OK (REGNO (XEXP (note, 0)), rld[output_reload].outmode)
1732 && TEST_HARD_REG_BIT (reg_class_contents[(int) rld[output_reload].class],
1733 REGNO (XEXP (note, 0)))
1734 && (HARD_REGNO_NREGS (REGNO (XEXP (note, 0)), rld[output_reload].outmode)
1735 <= HARD_REGNO_NREGS (REGNO (XEXP (note, 0)), GET_MODE (XEXP (note, 0))))
1736 /* Ensure that a secondary or tertiary reload for this output
1737 won't want this register. */
1738 && ((secondary_out = rld[output_reload].secondary_out_reload) == -1
1739 || (! (TEST_HARD_REG_BIT
1740 (reg_class_contents[(int) rld[secondary_out].class],
1741 REGNO (XEXP (note, 0))))
1742 && ((secondary_out = rld[secondary_out].secondary_out_reload) == -1
1743 || ! (TEST_HARD_REG_BIT
1744 (reg_class_contents[(int) rld[secondary_out].class],
1745 REGNO (XEXP (note, 0)))))))
1746 && ! fixed_regs[REGNO (XEXP (note, 0))])
1748 rld[output_reload].reg_rtx
1749 = gen_rtx_REG (rld[output_reload].outmode,
1750 REGNO (XEXP (note, 0)));
1751 return;
1755 /* Try to find a reload register for an in-out reload (expressions IN and OUT).
1756 See if one of IN and OUT is a register that may be used;
1757 this is desirable since a spill-register won't be needed.
1758 If so, return the register rtx that proves acceptable.
1760 INLOC and OUTLOC are locations where IN and OUT appear in the insn.
1761 CLASS is the register class required for the reload.
1763 If FOR_REAL is >= 0, it is the number of the reload,
1764 and in some cases when it can be discovered that OUT doesn't need
1765 to be computed, clear out rld[FOR_REAL].out.
1767 If FOR_REAL is -1, this should not be done, because this call
1768 is just to see if a register can be found, not to find and install it.
1770 EARLYCLOBBER is non-zero if OUT is an earlyclobber operand. This
1771 puts an additional constraint on being able to use IN for OUT since
1772 IN must not appear elsewhere in the insn (it is assumed that IN itself
1773 is safe from the earlyclobber). */
1775 static rtx
1776 find_dummy_reload (real_in, real_out, inloc, outloc,
1777 inmode, outmode, class, for_real, earlyclobber)
1778 rtx real_in, real_out;
1779 rtx *inloc, *outloc;
1780 enum machine_mode inmode, outmode;
1781 enum reg_class class;
1782 int for_real;
1783 int earlyclobber;
1785 rtx in = real_in;
1786 rtx out = real_out;
1787 int in_offset = 0;
1788 int out_offset = 0;
1789 rtx value = 0;
1791 /* If operands exceed a word, we can't use either of them
1792 unless they have the same size. */
1793 if (GET_MODE_SIZE (outmode) != GET_MODE_SIZE (inmode)
1794 && (GET_MODE_SIZE (outmode) > UNITS_PER_WORD
1795 || GET_MODE_SIZE (inmode) > UNITS_PER_WORD))
1796 return 0;
1798 /* Find the inside of any subregs. */
1799 while (GET_CODE (out) == SUBREG)
1801 out_offset = SUBREG_WORD (out);
1802 out = SUBREG_REG (out);
1804 while (GET_CODE (in) == SUBREG)
1806 in_offset = SUBREG_WORD (in);
1807 in = SUBREG_REG (in);
1810 /* Narrow down the reg class, the same way push_reload will;
1811 otherwise we might find a dummy now, but push_reload won't. */
1812 class = PREFERRED_RELOAD_CLASS (in, class);
1814 /* See if OUT will do. */
1815 if (GET_CODE (out) == REG
1816 && REGNO (out) < FIRST_PSEUDO_REGISTER)
1818 unsigned int regno = REGNO (out) + out_offset;
1819 unsigned int nwords = HARD_REGNO_NREGS (regno, outmode);
1820 rtx saved_rtx;
1822 /* When we consider whether the insn uses OUT,
1823 ignore references within IN. They don't prevent us
1824 from copying IN into OUT, because those refs would
1825 move into the insn that reloads IN.
1827 However, we only ignore IN in its role as this reload.
1828 If the insn uses IN elsewhere and it contains OUT,
1829 that counts. We can't be sure it's the "same" operand
1830 so it might not go through this reload. */
1831 saved_rtx = *inloc;
1832 *inloc = const0_rtx;
1834 if (regno < FIRST_PSEUDO_REGISTER
1835 && ! refers_to_regno_for_reload_p (regno, regno + nwords,
1836 PATTERN (this_insn), outloc))
1838 unsigned int i;
1840 for (i = 0; i < nwords; i++)
1841 if (! TEST_HARD_REG_BIT (reg_class_contents[(int) class],
1842 regno + i))
1843 break;
1845 if (i == nwords)
1847 if (GET_CODE (real_out) == REG)
1848 value = real_out;
1849 else
1850 value = gen_rtx_REG (outmode, regno);
1854 *inloc = saved_rtx;
1857 /* Consider using IN if OUT was not acceptable
1858 or if OUT dies in this insn (like the quotient in a divmod insn).
1859 We can't use IN unless it is dies in this insn,
1860 which means we must know accurately which hard regs are live.
1861 Also, the result can't go in IN if IN is used within OUT,
1862 or if OUT is an earlyclobber and IN appears elsewhere in the insn. */
1863 if (hard_regs_live_known
1864 && GET_CODE (in) == REG
1865 && REGNO (in) < FIRST_PSEUDO_REGISTER
1866 && (value == 0
1867 || find_reg_note (this_insn, REG_UNUSED, real_out))
1868 && find_reg_note (this_insn, REG_DEAD, real_in)
1869 && !fixed_regs[REGNO (in)]
1870 && HARD_REGNO_MODE_OK (REGNO (in),
1871 /* The only case where out and real_out might
1872 have different modes is where real_out
1873 is a subreg, and in that case, out
1874 has a real mode. */
1875 (GET_MODE (out) != VOIDmode
1876 ? GET_MODE (out) : outmode)))
1878 unsigned int regno = REGNO (in) + in_offset;
1879 unsigned int nwords = HARD_REGNO_NREGS (regno, inmode);
1881 if (! refers_to_regno_for_reload_p (regno, regno + nwords, out, NULL_PTR)
1882 && ! hard_reg_set_here_p (regno, regno + nwords,
1883 PATTERN (this_insn))
1884 && (! earlyclobber
1885 || ! refers_to_regno_for_reload_p (regno, regno + nwords,
1886 PATTERN (this_insn), inloc)))
1888 unsigned int i;
1890 for (i = 0; i < nwords; i++)
1891 if (! TEST_HARD_REG_BIT (reg_class_contents[(int) class],
1892 regno + i))
1893 break;
1895 if (i == nwords)
1897 /* If we were going to use OUT as the reload reg
1898 and changed our mind, it means OUT is a dummy that
1899 dies here. So don't bother copying value to it. */
1900 if (for_real >= 0 && value == real_out)
1901 rld[for_real].out = 0;
1902 if (GET_CODE (real_in) == REG)
1903 value = real_in;
1904 else
1905 value = gen_rtx_REG (inmode, regno);
1910 return value;
1913 /* This page contains subroutines used mainly for determining
1914 whether the IN or an OUT of a reload can serve as the
1915 reload register. */
1917 /* Return 1 if X is an operand of an insn that is being earlyclobbered. */
1920 earlyclobber_operand_p (x)
1921 rtx x;
1923 int i;
1925 for (i = 0; i < n_earlyclobbers; i++)
1926 if (reload_earlyclobbers[i] == x)
1927 return 1;
1929 return 0;
1932 /* Return 1 if expression X alters a hard reg in the range
1933 from BEG_REGNO (inclusive) to END_REGNO (exclusive),
1934 either explicitly or in the guise of a pseudo-reg allocated to REGNO.
1935 X should be the body of an instruction. */
1937 static int
1938 hard_reg_set_here_p (beg_regno, end_regno, x)
1939 unsigned int beg_regno, end_regno;
1940 rtx x;
1942 if (GET_CODE (x) == SET || GET_CODE (x) == CLOBBER)
1944 register rtx op0 = SET_DEST (x);
1946 while (GET_CODE (op0) == SUBREG)
1947 op0 = SUBREG_REG (op0);
1948 if (GET_CODE (op0) == REG)
1950 unsigned int r = REGNO (op0);
1952 /* See if this reg overlaps range under consideration. */
1953 if (r < end_regno
1954 && r + HARD_REGNO_NREGS (r, GET_MODE (op0)) > beg_regno)
1955 return 1;
1958 else if (GET_CODE (x) == PARALLEL)
1960 register int i = XVECLEN (x, 0) - 1;
1962 for (; i >= 0; i--)
1963 if (hard_reg_set_here_p (beg_regno, end_regno, XVECEXP (x, 0, i)))
1964 return 1;
1967 return 0;
1970 /* Return 1 if ADDR is a valid memory address for mode MODE,
1971 and check that each pseudo reg has the proper kind of
1972 hard reg. */
1975 strict_memory_address_p (mode, addr)
1976 enum machine_mode mode ATTRIBUTE_UNUSED;
1977 register rtx addr;
1979 GO_IF_LEGITIMATE_ADDRESS (mode, addr, win);
1980 return 0;
1982 win:
1983 return 1;
1986 /* Like rtx_equal_p except that it allows a REG and a SUBREG to match
1987 if they are the same hard reg, and has special hacks for
1988 autoincrement and autodecrement.
1989 This is specifically intended for find_reloads to use
1990 in determining whether two operands match.
1991 X is the operand whose number is the lower of the two.
1993 The value is 2 if Y contains a pre-increment that matches
1994 a non-incrementing address in X. */
1996 /* ??? To be completely correct, we should arrange to pass
1997 for X the output operand and for Y the input operand.
1998 For now, we assume that the output operand has the lower number
1999 because that is natural in (SET output (... input ...)). */
2002 operands_match_p (x, y)
2003 register rtx x, y;
2005 register int i;
2006 register RTX_CODE code = GET_CODE (x);
2007 register const char *fmt;
2008 int success_2;
2010 if (x == y)
2011 return 1;
2012 if ((code == REG || (code == SUBREG && GET_CODE (SUBREG_REG (x)) == REG))
2013 && (GET_CODE (y) == REG || (GET_CODE (y) == SUBREG
2014 && GET_CODE (SUBREG_REG (y)) == REG)))
2016 register int j;
2018 if (code == SUBREG)
2020 i = REGNO (SUBREG_REG (x));
2021 if (i >= FIRST_PSEUDO_REGISTER)
2022 goto slow;
2023 i += SUBREG_WORD (x);
2025 else
2026 i = REGNO (x);
2028 if (GET_CODE (y) == SUBREG)
2030 j = REGNO (SUBREG_REG (y));
2031 if (j >= FIRST_PSEUDO_REGISTER)
2032 goto slow;
2033 j += SUBREG_WORD (y);
2035 else
2036 j = REGNO (y);
2038 /* On a WORDS_BIG_ENDIAN machine, point to the last register of a
2039 multiple hard register group, so that for example (reg:DI 0) and
2040 (reg:SI 1) will be considered the same register. */
2041 if (WORDS_BIG_ENDIAN && GET_MODE_SIZE (GET_MODE (x)) > UNITS_PER_WORD
2042 && i < FIRST_PSEUDO_REGISTER)
2043 i += (GET_MODE_SIZE (GET_MODE (x)) / UNITS_PER_WORD) - 1;
2044 if (WORDS_BIG_ENDIAN && GET_MODE_SIZE (GET_MODE (y)) > UNITS_PER_WORD
2045 && j < FIRST_PSEUDO_REGISTER)
2046 j += (GET_MODE_SIZE (GET_MODE (y)) / UNITS_PER_WORD) - 1;
2048 return i == j;
2050 /* If two operands must match, because they are really a single
2051 operand of an assembler insn, then two postincrements are invalid
2052 because the assembler insn would increment only once.
2053 On the other hand, an postincrement matches ordinary indexing
2054 if the postincrement is the output operand. */
2055 if (code == POST_DEC || code == POST_INC)
2056 return operands_match_p (XEXP (x, 0), y);
2057 /* Two preincrements are invalid
2058 because the assembler insn would increment only once.
2059 On the other hand, an preincrement matches ordinary indexing
2060 if the preincrement is the input operand.
2061 In this case, return 2, since some callers need to do special
2062 things when this happens. */
2063 if (GET_CODE (y) == PRE_DEC || GET_CODE (y) == PRE_INC)
2064 return operands_match_p (x, XEXP (y, 0)) ? 2 : 0;
2066 slow:
2068 /* Now we have disposed of all the cases
2069 in which different rtx codes can match. */
2070 if (code != GET_CODE (y))
2071 return 0;
2072 if (code == LABEL_REF)
2073 return XEXP (x, 0) == XEXP (y, 0);
2074 if (code == SYMBOL_REF)
2075 return XSTR (x, 0) == XSTR (y, 0);
2077 /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent. */
2079 if (GET_MODE (x) != GET_MODE (y))
2080 return 0;
2082 /* Compare the elements. If any pair of corresponding elements
2083 fail to match, return 0 for the whole things. */
2085 success_2 = 0;
2086 fmt = GET_RTX_FORMAT (code);
2087 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2089 int val, j;
2090 switch (fmt[i])
2092 case 'w':
2093 if (XWINT (x, i) != XWINT (y, i))
2094 return 0;
2095 break;
2097 case 'i':
2098 if (XINT (x, i) != XINT (y, i))
2099 return 0;
2100 break;
2102 case 'e':
2103 val = operands_match_p (XEXP (x, i), XEXP (y, i));
2104 if (val == 0)
2105 return 0;
2106 /* If any subexpression returns 2,
2107 we should return 2 if we are successful. */
2108 if (val == 2)
2109 success_2 = 1;
2110 break;
2112 case '0':
2113 break;
2115 case 'E':
2116 if (XVECLEN (x, i) != XVECLEN (y, i))
2117 return 0;
2118 for (j = XVECLEN (x, i) - 1; j >= 0; --j)
2120 val = operands_match_p (XVECEXP (x, i, j), XVECEXP (y, i, j));
2121 if (val == 0)
2122 return 0;
2123 if (val == 2)
2124 success_2 = 1;
2126 break;
2128 /* It is believed that rtx's at this level will never
2129 contain anything but integers and other rtx's,
2130 except for within LABEL_REFs and SYMBOL_REFs. */
2131 default:
2132 abort ();
2135 return 1 + success_2;
2138 /* Describe the range of registers or memory referenced by X.
2139 If X is a register, set REG_FLAG and put the first register
2140 number into START and the last plus one into END.
2141 If X is a memory reference, put a base address into BASE
2142 and a range of integer offsets into START and END.
2143 If X is pushing on the stack, we can assume it causes no trouble,
2144 so we set the SAFE field. */
2146 static struct decomposition
2147 decompose (x)
2148 rtx x;
2150 struct decomposition val;
2151 int all_const = 0;
2153 val.reg_flag = 0;
2154 val.safe = 0;
2155 val.base = 0;
2156 if (GET_CODE (x) == MEM)
2158 rtx base = NULL_RTX, offset = 0;
2159 rtx addr = XEXP (x, 0);
2161 if (GET_CODE (addr) == PRE_DEC || GET_CODE (addr) == PRE_INC
2162 || GET_CODE (addr) == POST_DEC || GET_CODE (addr) == POST_INC)
2164 val.base = XEXP (addr, 0);
2165 val.start = - GET_MODE_SIZE (GET_MODE (x));
2166 val.end = GET_MODE_SIZE (GET_MODE (x));
2167 val.safe = REGNO (val.base) == STACK_POINTER_REGNUM;
2168 return val;
2171 if (GET_CODE (addr) == CONST)
2173 addr = XEXP (addr, 0);
2174 all_const = 1;
2176 if (GET_CODE (addr) == PLUS)
2178 if (CONSTANT_P (XEXP (addr, 0)))
2180 base = XEXP (addr, 1);
2181 offset = XEXP (addr, 0);
2183 else if (CONSTANT_P (XEXP (addr, 1)))
2185 base = XEXP (addr, 0);
2186 offset = XEXP (addr, 1);
2190 if (offset == 0)
2192 base = addr;
2193 offset = const0_rtx;
2195 if (GET_CODE (offset) == CONST)
2196 offset = XEXP (offset, 0);
2197 if (GET_CODE (offset) == PLUS)
2199 if (GET_CODE (XEXP (offset, 0)) == CONST_INT)
2201 base = gen_rtx_PLUS (GET_MODE (base), base, XEXP (offset, 1));
2202 offset = XEXP (offset, 0);
2204 else if (GET_CODE (XEXP (offset, 1)) == CONST_INT)
2206 base = gen_rtx_PLUS (GET_MODE (base), base, XEXP (offset, 0));
2207 offset = XEXP (offset, 1);
2209 else
2211 base = gen_rtx_PLUS (GET_MODE (base), base, offset);
2212 offset = const0_rtx;
2215 else if (GET_CODE (offset) != CONST_INT)
2217 base = gen_rtx_PLUS (GET_MODE (base), base, offset);
2218 offset = const0_rtx;
2221 if (all_const && GET_CODE (base) == PLUS)
2222 base = gen_rtx_CONST (GET_MODE (base), base);
2224 if (GET_CODE (offset) != CONST_INT)
2225 abort ();
2227 val.start = INTVAL (offset);
2228 val.end = val.start + GET_MODE_SIZE (GET_MODE (x));
2229 val.base = base;
2230 return val;
2232 else if (GET_CODE (x) == REG)
2234 val.reg_flag = 1;
2235 val.start = true_regnum (x);
2236 if (val.start < 0)
2238 /* A pseudo with no hard reg. */
2239 val.start = REGNO (x);
2240 val.end = val.start + 1;
2242 else
2243 /* A hard reg. */
2244 val.end = val.start + HARD_REGNO_NREGS (val.start, GET_MODE (x));
2246 else if (GET_CODE (x) == SUBREG)
2248 if (GET_CODE (SUBREG_REG (x)) != REG)
2249 /* This could be more precise, but it's good enough. */
2250 return decompose (SUBREG_REG (x));
2251 val.reg_flag = 1;
2252 val.start = true_regnum (x);
2253 if (val.start < 0)
2254 return decompose (SUBREG_REG (x));
2255 else
2256 /* A hard reg. */
2257 val.end = val.start + HARD_REGNO_NREGS (val.start, GET_MODE (x));
2259 else if (CONSTANT_P (x)
2260 /* This hasn't been assigned yet, so it can't conflict yet. */
2261 || GET_CODE (x) == SCRATCH)
2262 val.safe = 1;
2263 else
2264 abort ();
2265 return val;
2268 /* Return 1 if altering Y will not modify the value of X.
2269 Y is also described by YDATA, which should be decompose (Y). */
2271 static int
2272 immune_p (x, y, ydata)
2273 rtx x, y;
2274 struct decomposition ydata;
2276 struct decomposition xdata;
2278 if (ydata.reg_flag)
2279 return !refers_to_regno_for_reload_p (ydata.start, ydata.end, x, NULL_PTR);
2280 if (ydata.safe)
2281 return 1;
2283 if (GET_CODE (y) != MEM)
2284 abort ();
2285 /* If Y is memory and X is not, Y can't affect X. */
2286 if (GET_CODE (x) != MEM)
2287 return 1;
2289 xdata = decompose (x);
2291 if (! rtx_equal_p (xdata.base, ydata.base))
2293 /* If bases are distinct symbolic constants, there is no overlap. */
2294 if (CONSTANT_P (xdata.base) && CONSTANT_P (ydata.base))
2295 return 1;
2296 /* Constants and stack slots never overlap. */
2297 if (CONSTANT_P (xdata.base)
2298 && (ydata.base == frame_pointer_rtx
2299 || ydata.base == hard_frame_pointer_rtx
2300 || ydata.base == stack_pointer_rtx))
2301 return 1;
2302 if (CONSTANT_P (ydata.base)
2303 && (xdata.base == frame_pointer_rtx
2304 || xdata.base == hard_frame_pointer_rtx
2305 || xdata.base == stack_pointer_rtx))
2306 return 1;
2307 /* If either base is variable, we don't know anything. */
2308 return 0;
2312 return (xdata.start >= ydata.end || ydata.start >= xdata.end);
2315 /* Similar, but calls decompose. */
2318 safe_from_earlyclobber (op, clobber)
2319 rtx op, clobber;
2321 struct decomposition early_data;
2323 early_data = decompose (clobber);
2324 return immune_p (op, clobber, early_data);
2327 /* Main entry point of this file: search the body of INSN
2328 for values that need reloading and record them with push_reload.
2329 REPLACE nonzero means record also where the values occur
2330 so that subst_reloads can be used.
2332 IND_LEVELS says how many levels of indirection are supported by this
2333 machine; a value of zero means that a memory reference is not a valid
2334 memory address.
2336 LIVE_KNOWN says we have valid information about which hard
2337 regs are live at each point in the program; this is true when
2338 we are called from global_alloc but false when stupid register
2339 allocation has been done.
2341 RELOAD_REG_P if nonzero is a vector indexed by hard reg number
2342 which is nonnegative if the reg has been commandeered for reloading into.
2343 It is copied into STATIC_RELOAD_REG_P and referenced from there
2344 by various subroutines.
2346 Return TRUE if some operands need to be changed, because of swapping
2347 commutative operands, reg_equiv_address substitution, or whatever. */
2350 find_reloads (insn, replace, ind_levels, live_known, reload_reg_p)
2351 rtx insn;
2352 int replace, ind_levels;
2353 int live_known;
2354 short *reload_reg_p;
2356 register int insn_code_number;
2357 register int i, j;
2358 int noperands;
2359 /* These start out as the constraints for the insn
2360 and they are chewed up as we consider alternatives. */
2361 char *constraints[MAX_RECOG_OPERANDS];
2362 /* These are the preferred classes for an operand, or NO_REGS if it isn't
2363 a register. */
2364 enum reg_class preferred_class[MAX_RECOG_OPERANDS];
2365 char pref_or_nothing[MAX_RECOG_OPERANDS];
2366 /* Nonzero for a MEM operand whose entire address needs a reload. */
2367 int address_reloaded[MAX_RECOG_OPERANDS];
2368 /* Value of enum reload_type to use for operand. */
2369 enum reload_type operand_type[MAX_RECOG_OPERANDS];
2370 /* Value of enum reload_type to use within address of operand. */
2371 enum reload_type address_type[MAX_RECOG_OPERANDS];
2372 /* Save the usage of each operand. */
2373 enum reload_usage { RELOAD_READ, RELOAD_READ_WRITE, RELOAD_WRITE } modified[MAX_RECOG_OPERANDS];
2374 int no_input_reloads = 0, no_output_reloads = 0;
2375 int n_alternatives;
2376 int this_alternative[MAX_RECOG_OPERANDS];
2377 char this_alternative_win[MAX_RECOG_OPERANDS];
2378 char this_alternative_offmemok[MAX_RECOG_OPERANDS];
2379 char this_alternative_earlyclobber[MAX_RECOG_OPERANDS];
2380 int this_alternative_matches[MAX_RECOG_OPERANDS];
2381 int swapped;
2382 int goal_alternative[MAX_RECOG_OPERANDS];
2383 int this_alternative_number;
2384 int goal_alternative_number = 0;
2385 int operand_reloadnum[MAX_RECOG_OPERANDS];
2386 int goal_alternative_matches[MAX_RECOG_OPERANDS];
2387 int goal_alternative_matched[MAX_RECOG_OPERANDS];
2388 char goal_alternative_win[MAX_RECOG_OPERANDS];
2389 char goal_alternative_offmemok[MAX_RECOG_OPERANDS];
2390 char goal_alternative_earlyclobber[MAX_RECOG_OPERANDS];
2391 int goal_alternative_swapped;
2392 int best;
2393 int commutative;
2394 char operands_match[MAX_RECOG_OPERANDS][MAX_RECOG_OPERANDS];
2395 rtx substed_operand[MAX_RECOG_OPERANDS];
2396 rtx body = PATTERN (insn);
2397 rtx set = single_set (insn);
2398 int goal_earlyclobber = 0, this_earlyclobber;
2399 enum machine_mode operand_mode[MAX_RECOG_OPERANDS];
2400 int retval = 0;
2402 this_insn = insn;
2403 n_reloads = 0;
2404 n_replacements = 0;
2405 n_earlyclobbers = 0;
2406 replace_reloads = replace;
2407 hard_regs_live_known = live_known;
2408 static_reload_reg_p = reload_reg_p;
2410 /* JUMP_INSNs and CALL_INSNs are not allowed to have any output reloads;
2411 neither are insns that SET cc0. Insns that use CC0 are not allowed
2412 to have any input reloads. */
2413 if (GET_CODE (insn) == JUMP_INSN || GET_CODE (insn) == CALL_INSN)
2414 no_output_reloads = 1;
2416 #ifdef HAVE_cc0
2417 if (reg_referenced_p (cc0_rtx, PATTERN (insn)))
2418 no_input_reloads = 1;
2419 if (reg_set_p (cc0_rtx, PATTERN (insn)))
2420 no_output_reloads = 1;
2421 #endif
2423 #ifdef SECONDARY_MEMORY_NEEDED
2424 /* The eliminated forms of any secondary memory locations are per-insn, so
2425 clear them out here. */
2427 bzero ((char *) secondary_memlocs_elim, sizeof secondary_memlocs_elim);
2428 #endif
2430 /* Dispose quickly of (set (reg..) (reg..)) if both have hard regs and it
2431 is cheap to move between them. If it is not, there may not be an insn
2432 to do the copy, so we may need a reload. */
2433 if (GET_CODE (body) == SET
2434 && GET_CODE (SET_DEST (body)) == REG
2435 && REGNO (SET_DEST (body)) < FIRST_PSEUDO_REGISTER
2436 && GET_CODE (SET_SRC (body)) == REG
2437 && REGNO (SET_SRC (body)) < FIRST_PSEUDO_REGISTER
2438 && REGISTER_MOVE_COST (REGNO_REG_CLASS (REGNO (SET_SRC (body))),
2439 REGNO_REG_CLASS (REGNO (SET_DEST (body)))) == 2)
2440 return 0;
2442 extract_insn (insn);
2444 noperands = reload_n_operands = recog_data.n_operands;
2445 n_alternatives = recog_data.n_alternatives;
2447 /* Just return "no reloads" if insn has no operands with constraints. */
2448 if (noperands == 0 || n_alternatives == 0)
2449 return 0;
2451 insn_code_number = INSN_CODE (insn);
2452 this_insn_is_asm = insn_code_number < 0;
2454 memcpy (operand_mode, recog_data.operand_mode,
2455 noperands * sizeof (enum machine_mode));
2456 memcpy (constraints, recog_data.constraints, noperands * sizeof (char *));
2458 commutative = -1;
2460 /* If we will need to know, later, whether some pair of operands
2461 are the same, we must compare them now and save the result.
2462 Reloading the base and index registers will clobber them
2463 and afterward they will fail to match. */
2465 for (i = 0; i < noperands; i++)
2467 register char *p;
2468 register int c;
2470 substed_operand[i] = recog_data.operand[i];
2471 p = constraints[i];
2473 modified[i] = RELOAD_READ;
2475 /* Scan this operand's constraint to see if it is an output operand,
2476 an in-out operand, is commutative, or should match another. */
2478 while ((c = *p++))
2480 if (c == '=')
2481 modified[i] = RELOAD_WRITE;
2482 else if (c == '+')
2483 modified[i] = RELOAD_READ_WRITE;
2484 else if (c == '%')
2486 /* The last operand should not be marked commutative. */
2487 if (i == noperands - 1)
2488 abort ();
2490 commutative = i;
2492 else if (c >= '0' && c <= '9')
2494 c -= '0';
2495 operands_match[c][i]
2496 = operands_match_p (recog_data.operand[c],
2497 recog_data.operand[i]);
2499 /* An operand may not match itself. */
2500 if (c == i)
2501 abort ();
2503 /* If C can be commuted with C+1, and C might need to match I,
2504 then C+1 might also need to match I. */
2505 if (commutative >= 0)
2507 if (c == commutative || c == commutative + 1)
2509 int other = c + (c == commutative ? 1 : -1);
2510 operands_match[other][i]
2511 = operands_match_p (recog_data.operand[other],
2512 recog_data.operand[i]);
2514 if (i == commutative || i == commutative + 1)
2516 int other = i + (i == commutative ? 1 : -1);
2517 operands_match[c][other]
2518 = operands_match_p (recog_data.operand[c],
2519 recog_data.operand[other]);
2521 /* Note that C is supposed to be less than I.
2522 No need to consider altering both C and I because in
2523 that case we would alter one into the other. */
2529 /* Examine each operand that is a memory reference or memory address
2530 and reload parts of the addresses into index registers.
2531 Also here any references to pseudo regs that didn't get hard regs
2532 but are equivalent to constants get replaced in the insn itself
2533 with those constants. Nobody will ever see them again.
2535 Finally, set up the preferred classes of each operand. */
2537 for (i = 0; i < noperands; i++)
2539 register RTX_CODE code = GET_CODE (recog_data.operand[i]);
2541 address_reloaded[i] = 0;
2542 operand_type[i] = (modified[i] == RELOAD_READ ? RELOAD_FOR_INPUT
2543 : modified[i] == RELOAD_WRITE ? RELOAD_FOR_OUTPUT
2544 : RELOAD_OTHER);
2545 address_type[i]
2546 = (modified[i] == RELOAD_READ ? RELOAD_FOR_INPUT_ADDRESS
2547 : modified[i] == RELOAD_WRITE ? RELOAD_FOR_OUTPUT_ADDRESS
2548 : RELOAD_OTHER);
2550 if (*constraints[i] == 0)
2551 /* Ignore things like match_operator operands. */
2553 else if (constraints[i][0] == 'p')
2555 find_reloads_address (VOIDmode, NULL_PTR,
2556 recog_data.operand[i],
2557 recog_data.operand_loc[i],
2558 i, operand_type[i], ind_levels, insn);
2560 /* If we now have a simple operand where we used to have a
2561 PLUS or MULT, re-recognize and try again. */
2562 if ((GET_RTX_CLASS (GET_CODE (*recog_data.operand_loc[i])) == 'o'
2563 || GET_CODE (*recog_data.operand_loc[i]) == SUBREG)
2564 && (GET_CODE (recog_data.operand[i]) == MULT
2565 || GET_CODE (recog_data.operand[i]) == PLUS))
2567 INSN_CODE (insn) = -1;
2568 retval = find_reloads (insn, replace, ind_levels, live_known,
2569 reload_reg_p);
2570 return retval;
2573 recog_data.operand[i] = *recog_data.operand_loc[i];
2574 substed_operand[i] = recog_data.operand[i];
2576 else if (code == MEM)
2578 address_reloaded[i]
2579 = find_reloads_address (GET_MODE (recog_data.operand[i]),
2580 recog_data.operand_loc[i],
2581 XEXP (recog_data.operand[i], 0),
2582 &XEXP (recog_data.operand[i], 0),
2583 i, address_type[i], ind_levels, insn);
2584 recog_data.operand[i] = *recog_data.operand_loc[i];
2585 substed_operand[i] = recog_data.operand[i];
2587 else if (code == SUBREG)
2589 rtx reg = SUBREG_REG (recog_data.operand[i]);
2590 rtx op
2591 = find_reloads_toplev (recog_data.operand[i], i, address_type[i],
2592 ind_levels,
2593 set != 0
2594 && &SET_DEST (set) == recog_data.operand_loc[i],
2595 insn,
2596 &address_reloaded[i]);
2598 /* If we made a MEM to load (a part of) the stackslot of a pseudo
2599 that didn't get a hard register, emit a USE with a REG_EQUAL
2600 note in front so that we might inherit a previous, possibly
2601 wider reload. */
2603 if (replace
2604 && GET_CODE (op) == MEM
2605 && GET_CODE (reg) == REG
2606 && (GET_MODE_SIZE (GET_MODE (reg))
2607 >= GET_MODE_SIZE (GET_MODE (op))))
2608 REG_NOTES (emit_insn_before (gen_rtx_USE (VOIDmode, reg), insn))
2609 = gen_rtx_EXPR_LIST (REG_EQUAL,
2610 reg_equiv_memory_loc[REGNO (reg)], NULL_RTX);
2612 substed_operand[i] = recog_data.operand[i] = op;
2614 else if (code == PLUS || GET_RTX_CLASS (code) == '1')
2615 /* We can get a PLUS as an "operand" as a result of register
2616 elimination. See eliminate_regs and gen_reload. We handle
2617 a unary operator by reloading the operand. */
2618 substed_operand[i] = recog_data.operand[i]
2619 = find_reloads_toplev (recog_data.operand[i], i, address_type[i],
2620 ind_levels, 0, insn,
2621 &address_reloaded[i]);
2622 else if (code == REG)
2624 /* This is equivalent to calling find_reloads_toplev.
2625 The code is duplicated for speed.
2626 When we find a pseudo always equivalent to a constant,
2627 we replace it by the constant. We must be sure, however,
2628 that we don't try to replace it in the insn in which it
2629 is being set. */
2630 register int regno = REGNO (recog_data.operand[i]);
2631 if (reg_equiv_constant[regno] != 0
2632 && (set == 0 || &SET_DEST (set) != recog_data.operand_loc[i]))
2634 /* Record the existing mode so that the check if constants are
2635 allowed will work when operand_mode isn't specified. */
2637 if (operand_mode[i] == VOIDmode)
2638 operand_mode[i] = GET_MODE (recog_data.operand[i]);
2640 substed_operand[i] = recog_data.operand[i]
2641 = reg_equiv_constant[regno];
2643 if (reg_equiv_memory_loc[regno] != 0
2644 && (reg_equiv_address[regno] != 0 || num_not_at_initial_offset))
2645 /* We need not give a valid is_set_dest argument since the case
2646 of a constant equivalence was checked above. */
2647 substed_operand[i] = recog_data.operand[i]
2648 = find_reloads_toplev (recog_data.operand[i], i, address_type[i],
2649 ind_levels, 0, insn,
2650 &address_reloaded[i]);
2652 /* If the operand is still a register (we didn't replace it with an
2653 equivalent), get the preferred class to reload it into. */
2654 code = GET_CODE (recog_data.operand[i]);
2655 preferred_class[i]
2656 = ((code == REG && REGNO (recog_data.operand[i])
2657 >= FIRST_PSEUDO_REGISTER)
2658 ? reg_preferred_class (REGNO (recog_data.operand[i]))
2659 : NO_REGS);
2660 pref_or_nothing[i]
2661 = (code == REG
2662 && REGNO (recog_data.operand[i]) >= FIRST_PSEUDO_REGISTER
2663 && reg_alternate_class (REGNO (recog_data.operand[i])) == NO_REGS);
2666 /* If this is simply a copy from operand 1 to operand 0, merge the
2667 preferred classes for the operands. */
2668 if (set != 0 && noperands >= 2 && recog_data.operand[0] == SET_DEST (set)
2669 && recog_data.operand[1] == SET_SRC (set))
2671 preferred_class[0] = preferred_class[1]
2672 = reg_class_subunion[(int) preferred_class[0]][(int) preferred_class[1]];
2673 pref_or_nothing[0] |= pref_or_nothing[1];
2674 pref_or_nothing[1] |= pref_or_nothing[0];
2677 /* Now see what we need for pseudo-regs that didn't get hard regs
2678 or got the wrong kind of hard reg. For this, we must consider
2679 all the operands together against the register constraints. */
2681 best = MAX_RECOG_OPERANDS * 2 + 600;
2683 swapped = 0;
2684 goal_alternative_swapped = 0;
2685 try_swapped:
2687 /* The constraints are made of several alternatives.
2688 Each operand's constraint looks like foo,bar,... with commas
2689 separating the alternatives. The first alternatives for all
2690 operands go together, the second alternatives go together, etc.
2692 First loop over alternatives. */
2694 for (this_alternative_number = 0;
2695 this_alternative_number < n_alternatives;
2696 this_alternative_number++)
2698 /* Loop over operands for one constraint alternative. */
2699 /* LOSERS counts those that don't fit this alternative
2700 and would require loading. */
2701 int losers = 0;
2702 /* BAD is set to 1 if it some operand can't fit this alternative
2703 even after reloading. */
2704 int bad = 0;
2705 /* REJECT is a count of how undesirable this alternative says it is
2706 if any reloading is required. If the alternative matches exactly
2707 then REJECT is ignored, but otherwise it gets this much
2708 counted against it in addition to the reloading needed. Each
2709 ? counts three times here since we want the disparaging caused by
2710 a bad register class to only count 1/3 as much. */
2711 int reject = 0;
2713 this_earlyclobber = 0;
2715 for (i = 0; i < noperands; i++)
2717 register char *p = constraints[i];
2718 register int win = 0;
2719 /* 0 => this operand can be reloaded somehow for this alternative */
2720 int badop = 1;
2721 /* 0 => this operand can be reloaded if the alternative allows regs. */
2722 int winreg = 0;
2723 int c;
2724 register rtx operand = recog_data.operand[i];
2725 int offset = 0;
2726 /* Nonzero means this is a MEM that must be reloaded into a reg
2727 regardless of what the constraint says. */
2728 int force_reload = 0;
2729 int offmemok = 0;
2730 /* Nonzero if a constant forced into memory would be OK for this
2731 operand. */
2732 int constmemok = 0;
2733 int earlyclobber = 0;
2735 /* If the predicate accepts a unary operator, it means that
2736 we need to reload the operand, but do not do this for
2737 match_operator and friends. */
2738 if (GET_RTX_CLASS (GET_CODE (operand)) == '1' && *p != 0)
2739 operand = XEXP (operand, 0);
2741 /* If the operand is a SUBREG, extract
2742 the REG or MEM (or maybe even a constant) within.
2743 (Constants can occur as a result of reg_equiv_constant.) */
2745 while (GET_CODE (operand) == SUBREG)
2747 offset += SUBREG_WORD (operand);
2748 operand = SUBREG_REG (operand);
2749 /* Force reload if this is a constant or PLUS or if there may
2750 be a problem accessing OPERAND in the outer mode. */
2751 if (CONSTANT_P (operand)
2752 || GET_CODE (operand) == PLUS
2753 /* We must force a reload of paradoxical SUBREGs
2754 of a MEM because the alignment of the inner value
2755 may not be enough to do the outer reference. On
2756 big-endian machines, it may also reference outside
2757 the object.
2759 On machines that extend byte operations and we have a
2760 SUBREG where both the inner and outer modes are no wider
2761 than a word and the inner mode is narrower, is integral,
2762 and gets extended when loaded from memory, combine.c has
2763 made assumptions about the behavior of the machine in such
2764 register access. If the data is, in fact, in memory we
2765 must always load using the size assumed to be in the
2766 register and let the insn do the different-sized
2767 accesses.
2769 This is doubly true if WORD_REGISTER_OPERATIONS. In
2770 this case eliminate_regs has left non-paradoxical
2771 subregs for push_reloads to see. Make sure it does
2772 by forcing the reload.
2774 ??? When is it right at this stage to have a subreg
2775 of a mem that is _not_ to be handled specialy? IMO
2776 those should have been reduced to just a mem. */
2777 || ((GET_CODE (operand) == MEM
2778 || (GET_CODE (operand)== REG
2779 && REGNO (operand) >= FIRST_PSEUDO_REGISTER))
2780 #ifndef WORD_REGISTER_OPERATIONS
2781 && (((GET_MODE_BITSIZE (GET_MODE (operand))
2782 < BIGGEST_ALIGNMENT)
2783 && (GET_MODE_SIZE (operand_mode[i])
2784 > GET_MODE_SIZE (GET_MODE (operand))))
2785 || (GET_CODE (operand) == MEM && BYTES_BIG_ENDIAN)
2786 #ifdef LOAD_EXTEND_OP
2787 || (GET_MODE_SIZE (operand_mode[i]) <= UNITS_PER_WORD
2788 && (GET_MODE_SIZE (GET_MODE (operand))
2789 <= UNITS_PER_WORD)
2790 && (GET_MODE_SIZE (operand_mode[i])
2791 > GET_MODE_SIZE (GET_MODE (operand)))
2792 && INTEGRAL_MODE_P (GET_MODE (operand))
2793 && LOAD_EXTEND_OP (GET_MODE (operand)) != NIL)
2794 #endif
2796 #endif
2798 /* Subreg of a hard reg which can't handle the subreg's mode
2799 or which would handle that mode in the wrong number of
2800 registers for subregging to work. */
2801 || (GET_CODE (operand) == REG
2802 && REGNO (operand) < FIRST_PSEUDO_REGISTER
2803 && ((GET_MODE_SIZE (operand_mode[i]) <= UNITS_PER_WORD
2804 && (GET_MODE_SIZE (GET_MODE (operand))
2805 > UNITS_PER_WORD)
2806 && ((GET_MODE_SIZE (GET_MODE (operand))
2807 / UNITS_PER_WORD)
2808 != HARD_REGNO_NREGS (REGNO (operand),
2809 GET_MODE (operand))))
2810 || ! HARD_REGNO_MODE_OK (REGNO (operand) + offset,
2811 operand_mode[i]))))
2812 force_reload = 1;
2815 this_alternative[i] = (int) NO_REGS;
2816 this_alternative_win[i] = 0;
2817 this_alternative_offmemok[i] = 0;
2818 this_alternative_earlyclobber[i] = 0;
2819 this_alternative_matches[i] = -1;
2821 /* An empty constraint or empty alternative
2822 allows anything which matched the pattern. */
2823 if (*p == 0 || *p == ',')
2824 win = 1, badop = 0;
2826 /* Scan this alternative's specs for this operand;
2827 set WIN if the operand fits any letter in this alternative.
2828 Otherwise, clear BADOP if this operand could
2829 fit some letter after reloads,
2830 or set WINREG if this operand could fit after reloads
2831 provided the constraint allows some registers. */
2833 while (*p && (c = *p++) != ',')
2834 switch (c)
2836 case '=': case '+': case '*':
2837 break;
2839 case '%':
2840 /* The last operand should not be marked commutative. */
2841 if (i != noperands - 1)
2842 commutative = i;
2843 break;
2845 case '?':
2846 reject += 6;
2847 break;
2849 case '!':
2850 reject = 600;
2851 break;
2853 case '#':
2854 /* Ignore rest of this alternative as far as
2855 reloading is concerned. */
2856 while (*p && *p != ',') p++;
2857 break;
2859 case '0': case '1': case '2': case '3': case '4':
2860 case '5': case '6': case '7': case '8': case '9':
2862 c -= '0';
2863 this_alternative_matches[i] = c;
2864 /* We are supposed to match a previous operand.
2865 If we do, we win if that one did.
2866 If we do not, count both of the operands as losers.
2867 (This is too conservative, since most of the time
2868 only a single reload insn will be needed to make
2869 the two operands win. As a result, this alternative
2870 may be rejected when it is actually desirable.) */
2871 if ((swapped && (c != commutative || i != commutative + 1))
2872 /* If we are matching as if two operands were swapped,
2873 also pretend that operands_match had been computed
2874 with swapped.
2875 But if I is the second of those and C is the first,
2876 don't exchange them, because operands_match is valid
2877 only on one side of its diagonal. */
2878 ? (operands_match
2879 [(c == commutative || c == commutative + 1)
2880 ? 2*commutative + 1 - c : c]
2881 [(i == commutative || i == commutative + 1)
2882 ? 2*commutative + 1 - i : i])
2883 : operands_match[c][i])
2885 /* If we are matching a non-offsettable address where an
2886 offsettable address was expected, then we must reject
2887 this combination, because we can't reload it. */
2888 if (this_alternative_offmemok[c]
2889 && GET_CODE (recog_data.operand[c]) == MEM
2890 && this_alternative[c] == (int) NO_REGS
2891 && ! this_alternative_win[c])
2892 bad = 1;
2894 win = this_alternative_win[c];
2896 else
2898 /* Operands don't match. */
2899 rtx value;
2900 /* Retroactively mark the operand we had to match
2901 as a loser, if it wasn't already. */
2902 if (this_alternative_win[c])
2903 losers++;
2904 this_alternative_win[c] = 0;
2905 if (this_alternative[c] == (int) NO_REGS)
2906 bad = 1;
2907 /* But count the pair only once in the total badness of
2908 this alternative, if the pair can be a dummy reload. */
2909 value
2910 = find_dummy_reload (recog_data.operand[i],
2911 recog_data.operand[c],
2912 recog_data.operand_loc[i],
2913 recog_data.operand_loc[c],
2914 operand_mode[i], operand_mode[c],
2915 this_alternative[c], -1,
2916 this_alternative_earlyclobber[c]);
2918 if (value != 0)
2919 losers--;
2921 /* This can be fixed with reloads if the operand
2922 we are supposed to match can be fixed with reloads. */
2923 badop = 0;
2924 this_alternative[i] = this_alternative[c];
2926 /* If we have to reload this operand and some previous
2927 operand also had to match the same thing as this
2928 operand, we don't know how to do that. So reject this
2929 alternative. */
2930 if (! win || force_reload)
2931 for (j = 0; j < i; j++)
2932 if (this_alternative_matches[j]
2933 == this_alternative_matches[i])
2934 badop = 1;
2936 break;
2938 case 'p':
2939 /* All necessary reloads for an address_operand
2940 were handled in find_reloads_address. */
2941 this_alternative[i] = (int) BASE_REG_CLASS;
2942 win = 1;
2943 break;
2945 case 'm':
2946 if (force_reload)
2947 break;
2948 if (GET_CODE (operand) == MEM
2949 || (GET_CODE (operand) == REG
2950 && REGNO (operand) >= FIRST_PSEUDO_REGISTER
2951 && reg_renumber[REGNO (operand)] < 0))
2952 win = 1;
2953 if (CONSTANT_P (operand)
2954 /* force_const_mem does not accept HIGH. */
2955 && GET_CODE (operand) != HIGH)
2956 badop = 0;
2957 constmemok = 1;
2958 break;
2960 case '<':
2961 if (GET_CODE (operand) == MEM
2962 && ! address_reloaded[i]
2963 && (GET_CODE (XEXP (operand, 0)) == PRE_DEC
2964 || GET_CODE (XEXP (operand, 0)) == POST_DEC))
2965 win = 1;
2966 break;
2968 case '>':
2969 if (GET_CODE (operand) == MEM
2970 && ! address_reloaded[i]
2971 && (GET_CODE (XEXP (operand, 0)) == PRE_INC
2972 || GET_CODE (XEXP (operand, 0)) == POST_INC))
2973 win = 1;
2974 break;
2976 /* Memory operand whose address is not offsettable. */
2977 case 'V':
2978 if (force_reload)
2979 break;
2980 if (GET_CODE (operand) == MEM
2981 && ! (ind_levels ? offsettable_memref_p (operand)
2982 : offsettable_nonstrict_memref_p (operand))
2983 /* Certain mem addresses will become offsettable
2984 after they themselves are reloaded. This is important;
2985 we don't want our own handling of unoffsettables
2986 to override the handling of reg_equiv_address. */
2987 && !(GET_CODE (XEXP (operand, 0)) == REG
2988 && (ind_levels == 0
2989 || reg_equiv_address[REGNO (XEXP (operand, 0))] != 0)))
2990 win = 1;
2991 break;
2993 /* Memory operand whose address is offsettable. */
2994 case 'o':
2995 if (force_reload)
2996 break;
2997 if ((GET_CODE (operand) == MEM
2998 /* If IND_LEVELS, find_reloads_address won't reload a
2999 pseudo that didn't get a hard reg, so we have to
3000 reject that case. */
3001 && ((ind_levels ? offsettable_memref_p (operand)
3002 : offsettable_nonstrict_memref_p (operand))
3003 /* A reloaded address is offsettable because it is now
3004 just a simple register indirect. */
3005 || address_reloaded[i]))
3006 || (GET_CODE (operand) == REG
3007 && REGNO (operand) >= FIRST_PSEUDO_REGISTER
3008 && reg_renumber[REGNO (operand)] < 0
3009 /* If reg_equiv_address is nonzero, we will be
3010 loading it into a register; hence it will be
3011 offsettable, but we cannot say that reg_equiv_mem
3012 is offsettable without checking. */
3013 && ((reg_equiv_mem[REGNO (operand)] != 0
3014 && offsettable_memref_p (reg_equiv_mem[REGNO (operand)]))
3015 || (reg_equiv_address[REGNO (operand)] != 0))))
3016 win = 1;
3017 /* force_const_mem does not accept HIGH. */
3018 if ((CONSTANT_P (operand) && GET_CODE (operand) != HIGH)
3019 || GET_CODE (operand) == MEM)
3020 badop = 0;
3021 constmemok = 1;
3022 offmemok = 1;
3023 break;
3025 case '&':
3026 /* Output operand that is stored before the need for the
3027 input operands (and their index registers) is over. */
3028 earlyclobber = 1, this_earlyclobber = 1;
3029 break;
3031 case 'E':
3032 #ifndef REAL_ARITHMETIC
3033 /* Match any floating double constant, but only if
3034 we can examine the bits of it reliably. */
3035 if ((HOST_FLOAT_FORMAT != TARGET_FLOAT_FORMAT
3036 || HOST_BITS_PER_WIDE_INT != BITS_PER_WORD)
3037 && GET_MODE (operand) != VOIDmode && ! flag_pretend_float)
3038 break;
3039 #endif
3040 if (GET_CODE (operand) == CONST_DOUBLE)
3041 win = 1;
3042 break;
3044 case 'F':
3045 if (GET_CODE (operand) == CONST_DOUBLE)
3046 win = 1;
3047 break;
3049 case 'G':
3050 case 'H':
3051 if (GET_CODE (operand) == CONST_DOUBLE
3052 && CONST_DOUBLE_OK_FOR_LETTER_P (operand, c))
3053 win = 1;
3054 break;
3056 case 's':
3057 if (GET_CODE (operand) == CONST_INT
3058 || (GET_CODE (operand) == CONST_DOUBLE
3059 && GET_MODE (operand) == VOIDmode))
3060 break;
3061 case 'i':
3062 if (CONSTANT_P (operand)
3063 #ifdef LEGITIMATE_PIC_OPERAND_P
3064 && (! flag_pic || LEGITIMATE_PIC_OPERAND_P (operand))
3065 #endif
3067 win = 1;
3068 break;
3070 case 'n':
3071 if (GET_CODE (operand) == CONST_INT
3072 || (GET_CODE (operand) == CONST_DOUBLE
3073 && GET_MODE (operand) == VOIDmode))
3074 win = 1;
3075 break;
3077 case 'I':
3078 case 'J':
3079 case 'K':
3080 case 'L':
3081 case 'M':
3082 case 'N':
3083 case 'O':
3084 case 'P':
3085 if (GET_CODE (operand) == CONST_INT
3086 && CONST_OK_FOR_LETTER_P (INTVAL (operand), c))
3087 win = 1;
3088 break;
3090 case 'X':
3091 win = 1;
3092 break;
3094 case 'g':
3095 if (! force_reload
3096 /* A PLUS is never a valid operand, but reload can make
3097 it from a register when eliminating registers. */
3098 && GET_CODE (operand) != PLUS
3099 /* A SCRATCH is not a valid operand. */
3100 && GET_CODE (operand) != SCRATCH
3101 #ifdef LEGITIMATE_PIC_OPERAND_P
3102 && (! CONSTANT_P (operand)
3103 || ! flag_pic
3104 || LEGITIMATE_PIC_OPERAND_P (operand))
3105 #endif
3106 && (GENERAL_REGS == ALL_REGS
3107 || GET_CODE (operand) != REG
3108 || (REGNO (operand) >= FIRST_PSEUDO_REGISTER
3109 && reg_renumber[REGNO (operand)] < 0)))
3110 win = 1;
3111 /* Drop through into 'r' case */
3113 case 'r':
3114 this_alternative[i]
3115 = (int) reg_class_subunion[this_alternative[i]][(int) GENERAL_REGS];
3116 goto reg;
3118 #ifdef EXTRA_CONSTRAINT
3119 case 'Q':
3120 case 'R':
3121 case 'S':
3122 case 'T':
3123 case 'U':
3124 if (EXTRA_CONSTRAINT (operand, c))
3125 win = 1;
3126 break;
3127 #endif
3129 default:
3130 this_alternative[i]
3131 = (int) reg_class_subunion[this_alternative[i]][(int) REG_CLASS_FROM_LETTER (c)];
3133 reg:
3134 if (GET_MODE (operand) == BLKmode)
3135 break;
3136 winreg = 1;
3137 if (GET_CODE (operand) == REG
3138 && reg_fits_class_p (operand, this_alternative[i],
3139 offset, GET_MODE (recog_data.operand[i])))
3140 win = 1;
3141 break;
3144 constraints[i] = p;
3146 /* If this operand could be handled with a reg,
3147 and some reg is allowed, then this operand can be handled. */
3148 if (winreg && this_alternative[i] != (int) NO_REGS)
3149 badop = 0;
3151 /* Record which operands fit this alternative. */
3152 this_alternative_earlyclobber[i] = earlyclobber;
3153 if (win && ! force_reload)
3154 this_alternative_win[i] = 1;
3155 else
3157 int const_to_mem = 0;
3159 this_alternative_offmemok[i] = offmemok;
3160 losers++;
3161 if (badop)
3162 bad = 1;
3163 /* Alternative loses if it has no regs for a reg operand. */
3164 if (GET_CODE (operand) == REG
3165 && this_alternative[i] == (int) NO_REGS
3166 && this_alternative_matches[i] < 0)
3167 bad = 1;
3169 /* If this is a constant that is reloaded into the desired
3170 class by copying it to memory first, count that as another
3171 reload. This is consistent with other code and is
3172 required to avoid choosing another alternative when
3173 the constant is moved into memory by this function on
3174 an early reload pass. Note that the test here is
3175 precisely the same as in the code below that calls
3176 force_const_mem. */
3177 if (CONSTANT_P (operand)
3178 /* force_const_mem does not accept HIGH. */
3179 && GET_CODE (operand) != HIGH
3180 && ((PREFERRED_RELOAD_CLASS (operand,
3181 (enum reg_class) this_alternative[i])
3182 == NO_REGS)
3183 || no_input_reloads)
3184 && operand_mode[i] != VOIDmode)
3186 const_to_mem = 1;
3187 if (this_alternative[i] != (int) NO_REGS)
3188 losers++;
3191 /* If we can't reload this value at all, reject this
3192 alternative. Note that we could also lose due to
3193 LIMIT_RELOAD_RELOAD_CLASS, but we don't check that
3194 here. */
3196 if (! CONSTANT_P (operand)
3197 && (enum reg_class) this_alternative[i] != NO_REGS
3198 && (PREFERRED_RELOAD_CLASS (operand,
3199 (enum reg_class) this_alternative[i])
3200 == NO_REGS))
3201 bad = 1;
3203 /* Alternative loses if it requires a type of reload not
3204 permitted for this insn. We can always reload SCRATCH
3205 and objects with a REG_UNUSED note. */
3206 else if (GET_CODE (operand) != SCRATCH
3207 && modified[i] != RELOAD_READ && no_output_reloads
3208 && ! find_reg_note (insn, REG_UNUSED, operand))
3209 bad = 1;
3210 else if (modified[i] != RELOAD_WRITE && no_input_reloads
3211 && ! const_to_mem)
3212 bad = 1;
3215 /* We prefer to reload pseudos over reloading other things,
3216 since such reloads may be able to be eliminated later.
3217 If we are reloading a SCRATCH, we won't be generating any
3218 insns, just using a register, so it is also preferred.
3219 So bump REJECT in other cases. Don't do this in the
3220 case where we are forcing a constant into memory and
3221 it will then win since we don't want to have a different
3222 alternative match then. */
3223 if (! (GET_CODE (operand) == REG
3224 && REGNO (operand) >= FIRST_PSEUDO_REGISTER)
3225 && GET_CODE (operand) != SCRATCH
3226 && ! (const_to_mem && constmemok))
3227 reject += 2;
3229 /* Input reloads can be inherited more often than output
3230 reloads can be removed, so penalize output reloads. */
3231 if (operand_type[i] != RELOAD_FOR_INPUT
3232 && GET_CODE (operand) != SCRATCH)
3233 reject++;
3236 /* If this operand is a pseudo register that didn't get a hard
3237 reg and this alternative accepts some register, see if the
3238 class that we want is a subset of the preferred class for this
3239 register. If not, but it intersects that class, use the
3240 preferred class instead. If it does not intersect the preferred
3241 class, show that usage of this alternative should be discouraged;
3242 it will be discouraged more still if the register is `preferred
3243 or nothing'. We do this because it increases the chance of
3244 reusing our spill register in a later insn and avoiding a pair
3245 of memory stores and loads.
3247 Don't bother with this if this alternative will accept this
3248 operand.
3250 Don't do this for a multiword operand, since it is only a
3251 small win and has the risk of requiring more spill registers,
3252 which could cause a large loss.
3254 Don't do this if the preferred class has only one register
3255 because we might otherwise exhaust the class. */
3258 if (! win && this_alternative[i] != (int) NO_REGS
3259 && GET_MODE_SIZE (operand_mode[i]) <= UNITS_PER_WORD
3260 && reg_class_size[(int) preferred_class[i]] > 1)
3262 if (! reg_class_subset_p (this_alternative[i],
3263 preferred_class[i]))
3265 /* Since we don't have a way of forming the intersection,
3266 we just do something special if the preferred class
3267 is a subset of the class we have; that's the most
3268 common case anyway. */
3269 if (reg_class_subset_p (preferred_class[i],
3270 this_alternative[i]))
3271 this_alternative[i] = (int) preferred_class[i];
3272 else
3273 reject += (2 + 2 * pref_or_nothing[i]);
3278 /* Now see if any output operands that are marked "earlyclobber"
3279 in this alternative conflict with any input operands
3280 or any memory addresses. */
3282 for (i = 0; i < noperands; i++)
3283 if (this_alternative_earlyclobber[i]
3284 && this_alternative_win[i])
3286 struct decomposition early_data;
3288 early_data = decompose (recog_data.operand[i]);
3290 if (modified[i] == RELOAD_READ)
3291 abort ();
3293 if (this_alternative[i] == NO_REGS)
3295 this_alternative_earlyclobber[i] = 0;
3296 if (this_insn_is_asm)
3297 error_for_asm (this_insn,
3298 "`&' constraint used with no register class");
3299 else
3300 abort ();
3303 for (j = 0; j < noperands; j++)
3304 /* Is this an input operand or a memory ref? */
3305 if ((GET_CODE (recog_data.operand[j]) == MEM
3306 || modified[j] != RELOAD_WRITE)
3307 && j != i
3308 /* Ignore things like match_operator operands. */
3309 && *recog_data.constraints[j] != 0
3310 /* Don't count an input operand that is constrained to match
3311 the early clobber operand. */
3312 && ! (this_alternative_matches[j] == i
3313 && rtx_equal_p (recog_data.operand[i],
3314 recog_data.operand[j]))
3315 /* Is it altered by storing the earlyclobber operand? */
3316 && !immune_p (recog_data.operand[j], recog_data.operand[i],
3317 early_data))
3319 /* If the output is in a single-reg class,
3320 it's costly to reload it, so reload the input instead. */
3321 if (reg_class_size[this_alternative[i]] == 1
3322 && (GET_CODE (recog_data.operand[j]) == REG
3323 || GET_CODE (recog_data.operand[j]) == SUBREG))
3325 losers++;
3326 this_alternative_win[j] = 0;
3328 else
3329 break;
3331 /* If an earlyclobber operand conflicts with something,
3332 it must be reloaded, so request this and count the cost. */
3333 if (j != noperands)
3335 losers++;
3336 this_alternative_win[i] = 0;
3337 for (j = 0; j < noperands; j++)
3338 if (this_alternative_matches[j] == i
3339 && this_alternative_win[j])
3341 this_alternative_win[j] = 0;
3342 losers++;
3347 /* If one alternative accepts all the operands, no reload required,
3348 choose that alternative; don't consider the remaining ones. */
3349 if (losers == 0)
3351 /* Unswap these so that they are never swapped at `finish'. */
3352 if (commutative >= 0)
3354 recog_data.operand[commutative] = substed_operand[commutative];
3355 recog_data.operand[commutative + 1]
3356 = substed_operand[commutative + 1];
3358 for (i = 0; i < noperands; i++)
3360 goal_alternative_win[i] = 1;
3361 goal_alternative[i] = this_alternative[i];
3362 goal_alternative_offmemok[i] = this_alternative_offmemok[i];
3363 goal_alternative_matches[i] = this_alternative_matches[i];
3364 goal_alternative_earlyclobber[i]
3365 = this_alternative_earlyclobber[i];
3367 goal_alternative_number = this_alternative_number;
3368 goal_alternative_swapped = swapped;
3369 goal_earlyclobber = this_earlyclobber;
3370 goto finish;
3373 /* REJECT, set by the ! and ? constraint characters and when a register
3374 would be reloaded into a non-preferred class, discourages the use of
3375 this alternative for a reload goal. REJECT is incremented by six
3376 for each ? and two for each non-preferred class. */
3377 losers = losers * 6 + reject;
3379 /* If this alternative can be made to work by reloading,
3380 and it needs less reloading than the others checked so far,
3381 record it as the chosen goal for reloading. */
3382 if (! bad && best > losers)
3384 for (i = 0; i < noperands; i++)
3386 goal_alternative[i] = this_alternative[i];
3387 goal_alternative_win[i] = this_alternative_win[i];
3388 goal_alternative_offmemok[i] = this_alternative_offmemok[i];
3389 goal_alternative_matches[i] = this_alternative_matches[i];
3390 goal_alternative_earlyclobber[i]
3391 = this_alternative_earlyclobber[i];
3393 goal_alternative_swapped = swapped;
3394 best = losers;
3395 goal_alternative_number = this_alternative_number;
3396 goal_earlyclobber = this_earlyclobber;
3400 /* If insn is commutative (it's safe to exchange a certain pair of operands)
3401 then we need to try each alternative twice,
3402 the second time matching those two operands
3403 as if we had exchanged them.
3404 To do this, really exchange them in operands.
3406 If we have just tried the alternatives the second time,
3407 return operands to normal and drop through. */
3409 if (commutative >= 0)
3411 swapped = !swapped;
3412 if (swapped)
3414 register enum reg_class tclass;
3415 register int t;
3417 recog_data.operand[commutative] = substed_operand[commutative + 1];
3418 recog_data.operand[commutative + 1] = substed_operand[commutative];
3420 tclass = preferred_class[commutative];
3421 preferred_class[commutative] = preferred_class[commutative + 1];
3422 preferred_class[commutative + 1] = tclass;
3424 t = pref_or_nothing[commutative];
3425 pref_or_nothing[commutative] = pref_or_nothing[commutative + 1];
3426 pref_or_nothing[commutative + 1] = t;
3428 memcpy (constraints, recog_data.constraints,
3429 noperands * sizeof (char *));
3430 goto try_swapped;
3432 else
3434 recog_data.operand[commutative] = substed_operand[commutative];
3435 recog_data.operand[commutative + 1]
3436 = substed_operand[commutative + 1];
3440 /* The operands don't meet the constraints.
3441 goal_alternative describes the alternative
3442 that we could reach by reloading the fewest operands.
3443 Reload so as to fit it. */
3445 if (best == MAX_RECOG_OPERANDS * 2 + 600)
3447 /* No alternative works with reloads?? */
3448 if (insn_code_number >= 0)
3449 fatal_insn ("Unable to generate reloads for:", insn);
3450 error_for_asm (insn, "inconsistent operand constraints in an `asm'");
3451 /* Avoid further trouble with this insn. */
3452 PATTERN (insn) = gen_rtx_USE (VOIDmode, const0_rtx);
3453 n_reloads = 0;
3454 return 0;
3457 /* Jump to `finish' from above if all operands are valid already.
3458 In that case, goal_alternative_win is all 1. */
3459 finish:
3461 /* Right now, for any pair of operands I and J that are required to match,
3462 with I < J,
3463 goal_alternative_matches[J] is I.
3464 Set up goal_alternative_matched as the inverse function:
3465 goal_alternative_matched[I] = J. */
3467 for (i = 0; i < noperands; i++)
3468 goal_alternative_matched[i] = -1;
3470 for (i = 0; i < noperands; i++)
3471 if (! goal_alternative_win[i]
3472 && goal_alternative_matches[i] >= 0)
3473 goal_alternative_matched[goal_alternative_matches[i]] = i;
3475 /* If the best alternative is with operands 1 and 2 swapped,
3476 consider them swapped before reporting the reloads. Update the
3477 operand numbers of any reloads already pushed. */
3479 if (goal_alternative_swapped)
3481 register rtx tem;
3483 tem = substed_operand[commutative];
3484 substed_operand[commutative] = substed_operand[commutative + 1];
3485 substed_operand[commutative + 1] = tem;
3486 tem = recog_data.operand[commutative];
3487 recog_data.operand[commutative] = recog_data.operand[commutative + 1];
3488 recog_data.operand[commutative + 1] = tem;
3489 tem = *recog_data.operand_loc[commutative];
3490 *recog_data.operand_loc[commutative]
3491 = *recog_data.operand_loc[commutative + 1];
3492 *recog_data.operand_loc[commutative+1] = tem;
3494 for (i = 0; i < n_reloads; i++)
3496 if (rld[i].opnum == commutative)
3497 rld[i].opnum = commutative + 1;
3498 else if (rld[i].opnum == commutative + 1)
3499 rld[i].opnum = commutative;
3503 for (i = 0; i < noperands; i++)
3505 operand_reloadnum[i] = -1;
3507 /* If this is an earlyclobber operand, we need to widen the scope.
3508 The reload must remain valid from the start of the insn being
3509 reloaded until after the operand is stored into its destination.
3510 We approximate this with RELOAD_OTHER even though we know that we
3511 do not conflict with RELOAD_FOR_INPUT_ADDRESS reloads.
3513 One special case that is worth checking is when we have an
3514 output that is earlyclobber but isn't used past the insn (typically
3515 a SCRATCH). In this case, we only need have the reload live
3516 through the insn itself, but not for any of our input or output
3517 reloads.
3518 But we must not accidentally narrow the scope of an existing
3519 RELOAD_OTHER reload - leave these alone.
3521 In any case, anything needed to address this operand can remain
3522 however they were previously categorized. */
3524 if (goal_alternative_earlyclobber[i] && operand_type[i] != RELOAD_OTHER)
3525 operand_type[i]
3526 = (find_reg_note (insn, REG_UNUSED, recog_data.operand[i])
3527 ? RELOAD_FOR_INSN : RELOAD_OTHER);
3530 /* Any constants that aren't allowed and can't be reloaded
3531 into registers are here changed into memory references. */
3532 for (i = 0; i < noperands; i++)
3533 if (! goal_alternative_win[i]
3534 && CONSTANT_P (recog_data.operand[i])
3535 /* force_const_mem does not accept HIGH. */
3536 && GET_CODE (recog_data.operand[i]) != HIGH
3537 && ((PREFERRED_RELOAD_CLASS (recog_data.operand[i],
3538 (enum reg_class) goal_alternative[i])
3539 == NO_REGS)
3540 || no_input_reloads)
3541 && operand_mode[i] != VOIDmode)
3543 substed_operand[i] = recog_data.operand[i]
3544 = find_reloads_toplev (force_const_mem (operand_mode[i],
3545 recog_data.operand[i]),
3546 i, address_type[i], ind_levels, 0, insn,
3547 NULL);
3548 if (alternative_allows_memconst (recog_data.constraints[i],
3549 goal_alternative_number))
3550 goal_alternative_win[i] = 1;
3553 /* Record the values of the earlyclobber operands for the caller. */
3554 if (goal_earlyclobber)
3555 for (i = 0; i < noperands; i++)
3556 if (goal_alternative_earlyclobber[i])
3557 reload_earlyclobbers[n_earlyclobbers++] = recog_data.operand[i];
3559 /* Now record reloads for all the operands that need them. */
3560 for (i = 0; i < noperands; i++)
3561 if (! goal_alternative_win[i])
3563 /* Operands that match previous ones have already been handled. */
3564 if (goal_alternative_matches[i] >= 0)
3566 /* Handle an operand with a nonoffsettable address
3567 appearing where an offsettable address will do
3568 by reloading the address into a base register.
3570 ??? We can also do this when the operand is a register and
3571 reg_equiv_mem is not offsettable, but this is a bit tricky,
3572 so we don't bother with it. It may not be worth doing. */
3573 else if (goal_alternative_matched[i] == -1
3574 && goal_alternative_offmemok[i]
3575 && GET_CODE (recog_data.operand[i]) == MEM)
3577 operand_reloadnum[i]
3578 = push_reload (XEXP (recog_data.operand[i], 0), NULL_RTX,
3579 &XEXP (recog_data.operand[i], 0), NULL_PTR,
3580 BASE_REG_CLASS,
3581 GET_MODE (XEXP (recog_data.operand[i], 0)),
3582 VOIDmode, 0, 0, i, RELOAD_FOR_INPUT);
3583 rld[operand_reloadnum[i]].inc
3584 = GET_MODE_SIZE (GET_MODE (recog_data.operand[i]));
3586 /* If this operand is an output, we will have made any
3587 reloads for its address as RELOAD_FOR_OUTPUT_ADDRESS, but
3588 now we are treating part of the operand as an input, so
3589 we must change these to RELOAD_FOR_INPUT_ADDRESS. */
3591 if (modified[i] == RELOAD_WRITE)
3593 for (j = 0; j < n_reloads; j++)
3595 if (rld[j].opnum == i)
3597 if (rld[j].when_needed == RELOAD_FOR_OUTPUT_ADDRESS)
3598 rld[j].when_needed = RELOAD_FOR_INPUT_ADDRESS;
3599 else if (rld[j].when_needed
3600 == RELOAD_FOR_OUTADDR_ADDRESS)
3601 rld[j].when_needed = RELOAD_FOR_INPADDR_ADDRESS;
3606 else if (goal_alternative_matched[i] == -1)
3608 operand_reloadnum[i]
3609 = push_reload ((modified[i] != RELOAD_WRITE
3610 ? recog_data.operand[i] : 0),
3611 (modified[i] != RELOAD_READ
3612 ? recog_data.operand[i] : 0),
3613 (modified[i] != RELOAD_WRITE
3614 ? recog_data.operand_loc[i] : 0),
3615 (modified[i] != RELOAD_READ
3616 ? recog_data.operand_loc[i] : 0),
3617 (enum reg_class) goal_alternative[i],
3618 (modified[i] == RELOAD_WRITE
3619 ? VOIDmode : operand_mode[i]),
3620 (modified[i] == RELOAD_READ
3621 ? VOIDmode : operand_mode[i]),
3622 (insn_code_number < 0 ? 0
3623 : insn_data[insn_code_number].operand[i].strict_low),
3624 0, i, operand_type[i]);
3626 /* In a matching pair of operands, one must be input only
3627 and the other must be output only.
3628 Pass the input operand as IN and the other as OUT. */
3629 else if (modified[i] == RELOAD_READ
3630 && modified[goal_alternative_matched[i]] == RELOAD_WRITE)
3632 operand_reloadnum[i]
3633 = push_reload (recog_data.operand[i],
3634 recog_data.operand[goal_alternative_matched[i]],
3635 recog_data.operand_loc[i],
3636 recog_data.operand_loc[goal_alternative_matched[i]],
3637 (enum reg_class) goal_alternative[i],
3638 operand_mode[i],
3639 operand_mode[goal_alternative_matched[i]],
3640 0, 0, i, RELOAD_OTHER);
3641 operand_reloadnum[goal_alternative_matched[i]] = output_reloadnum;
3643 else if (modified[i] == RELOAD_WRITE
3644 && modified[goal_alternative_matched[i]] == RELOAD_READ)
3646 operand_reloadnum[goal_alternative_matched[i]]
3647 = push_reload (recog_data.operand[goal_alternative_matched[i]],
3648 recog_data.operand[i],
3649 recog_data.operand_loc[goal_alternative_matched[i]],
3650 recog_data.operand_loc[i],
3651 (enum reg_class) goal_alternative[i],
3652 operand_mode[goal_alternative_matched[i]],
3653 operand_mode[i],
3654 0, 0, i, RELOAD_OTHER);
3655 operand_reloadnum[i] = output_reloadnum;
3657 else if (insn_code_number >= 0)
3658 abort ();
3659 else
3661 error_for_asm (insn, "inconsistent operand constraints in an `asm'");
3662 /* Avoid further trouble with this insn. */
3663 PATTERN (insn) = gen_rtx_USE (VOIDmode, const0_rtx);
3664 n_reloads = 0;
3665 return 0;
3668 else if (goal_alternative_matched[i] < 0
3669 && goal_alternative_matches[i] < 0
3670 && optimize)
3672 /* For each non-matching operand that's a MEM or a pseudo-register
3673 that didn't get a hard register, make an optional reload.
3674 This may get done even if the insn needs no reloads otherwise. */
3676 rtx operand = recog_data.operand[i];
3678 while (GET_CODE (operand) == SUBREG)
3679 operand = XEXP (operand, 0);
3680 if ((GET_CODE (operand) == MEM
3681 || (GET_CODE (operand) == REG
3682 && REGNO (operand) >= FIRST_PSEUDO_REGISTER))
3683 /* If this is only for an output, the optional reload would not
3684 actually cause us to use a register now, just note that
3685 something is stored here. */
3686 && ((enum reg_class) goal_alternative[i] != NO_REGS
3687 || modified[i] == RELOAD_WRITE)
3688 && ! no_input_reloads
3689 /* An optional output reload might allow to delete INSN later.
3690 We mustn't make in-out reloads on insns that are not permitted
3691 output reloads.
3692 If this is an asm, we can't delete it; we must not even call
3693 push_reload for an optional output reload in this case,
3694 because we can't be sure that the constraint allows a register,
3695 and push_reload verifies the constraints for asms. */
3696 && (modified[i] == RELOAD_READ
3697 || (! no_output_reloads && ! this_insn_is_asm)))
3698 operand_reloadnum[i]
3699 = push_reload ((modified[i] != RELOAD_WRITE
3700 ? recog_data.operand[i] : 0),
3701 (modified[i] != RELOAD_READ
3702 ? recog_data.operand[i] : 0),
3703 (modified[i] != RELOAD_WRITE
3704 ? recog_data.operand_loc[i] : 0),
3705 (modified[i] != RELOAD_READ
3706 ? recog_data.operand_loc[i] : 0),
3707 (enum reg_class) goal_alternative[i],
3708 (modified[i] == RELOAD_WRITE
3709 ? VOIDmode : operand_mode[i]),
3710 (modified[i] == RELOAD_READ
3711 ? VOIDmode : operand_mode[i]),
3712 (insn_code_number < 0 ? 0
3713 : insn_data[insn_code_number].operand[i].strict_low),
3714 1, i, operand_type[i]);
3715 /* If a memory reference remains (either as a MEM or a pseudo that
3716 did not get a hard register), yet we can't make an optional
3717 reload, check if this is actually a pseudo register reference;
3718 we then need to emit a USE and/or a CLOBBER so that reload
3719 inheritance will do the right thing. */
3720 else if (replace
3721 && (GET_CODE (operand) == MEM
3722 || (GET_CODE (operand) == REG
3723 && REGNO (operand) >= FIRST_PSEUDO_REGISTER
3724 && reg_renumber [REGNO (operand)] < 0)))
3726 operand = *recog_data.operand_loc[i];
3728 while (GET_CODE (operand) == SUBREG)
3729 operand = XEXP (operand, 0);
3730 if (GET_CODE (operand) == REG)
3732 if (modified[i] != RELOAD_WRITE)
3733 emit_insn_before (gen_rtx_USE (VOIDmode, operand), insn);
3734 if (modified[i] != RELOAD_READ)
3735 emit_insn_after (gen_rtx_CLOBBER (VOIDmode, operand), insn);
3739 else if (goal_alternative_matches[i] >= 0
3740 && goal_alternative_win[goal_alternative_matches[i]]
3741 && modified[i] == RELOAD_READ
3742 && modified[goal_alternative_matches[i]] == RELOAD_WRITE
3743 && ! no_input_reloads && ! no_output_reloads
3744 && optimize)
3746 /* Similarly, make an optional reload for a pair of matching
3747 objects that are in MEM or a pseudo that didn't get a hard reg. */
3749 rtx operand = recog_data.operand[i];
3751 while (GET_CODE (operand) == SUBREG)
3752 operand = XEXP (operand, 0);
3753 if ((GET_CODE (operand) == MEM
3754 || (GET_CODE (operand) == REG
3755 && REGNO (operand) >= FIRST_PSEUDO_REGISTER))
3756 && ((enum reg_class) goal_alternative[goal_alternative_matches[i]]
3757 != NO_REGS))
3758 operand_reloadnum[i] = operand_reloadnum[goal_alternative_matches[i]]
3759 = push_reload (recog_data.operand[goal_alternative_matches[i]],
3760 recog_data.operand[i],
3761 recog_data.operand_loc[goal_alternative_matches[i]],
3762 recog_data.operand_loc[i],
3763 (enum reg_class) goal_alternative[goal_alternative_matches[i]],
3764 operand_mode[goal_alternative_matches[i]],
3765 operand_mode[i],
3766 0, 1, goal_alternative_matches[i], RELOAD_OTHER);
3769 /* Perform whatever substitutions on the operands we are supposed
3770 to make due to commutativity or replacement of registers
3771 with equivalent constants or memory slots. */
3773 for (i = 0; i < noperands; i++)
3775 /* We only do this on the last pass through reload, because it is
3776 possible for some data (like reg_equiv_address) to be changed during
3777 later passes. Moreover, we loose the opportunity to get a useful
3778 reload_{in,out}_reg when we do these replacements. */
3780 if (replace)
3782 rtx substitution = substed_operand[i];
3784 *recog_data.operand_loc[i] = substitution;
3786 /* If we're replacing an operand with a LABEL_REF, we need
3787 to make sure that there's a REG_LABEL note attached to
3788 this instruction. */
3789 if (GET_CODE (insn) != JUMP_INSN
3790 && GET_CODE (substitution) == LABEL_REF
3791 && !find_reg_note (insn, REG_LABEL, XEXP (substitution, 0)))
3792 REG_NOTES (insn) = gen_rtx_EXPR_LIST (REG_LABEL,
3793 XEXP (substitution, 0),
3794 REG_NOTES (insn));
3796 else
3797 retval |= (substed_operand[i] != *recog_data.operand_loc[i]);
3800 /* If this insn pattern contains any MATCH_DUP's, make sure that
3801 they will be substituted if the operands they match are substituted.
3802 Also do now any substitutions we already did on the operands.
3804 Don't do this if we aren't making replacements because we might be
3805 propagating things allocated by frame pointer elimination into places
3806 it doesn't expect. */
3808 if (insn_code_number >= 0 && replace)
3809 for (i = insn_data[insn_code_number].n_dups - 1; i >= 0; i--)
3811 int opno = recog_data.dup_num[i];
3812 *recog_data.dup_loc[i] = *recog_data.operand_loc[opno];
3813 if (operand_reloadnum[opno] >= 0)
3814 push_replacement (recog_data.dup_loc[i], operand_reloadnum[opno],
3815 insn_data[insn_code_number].operand[opno].mode);
3818 #if 0
3819 /* This loses because reloading of prior insns can invalidate the equivalence
3820 (or at least find_equiv_reg isn't smart enough to find it any more),
3821 causing this insn to need more reload regs than it needed before.
3822 It may be too late to make the reload regs available.
3823 Now this optimization is done safely in choose_reload_regs. */
3825 /* For each reload of a reg into some other class of reg,
3826 search for an existing equivalent reg (same value now) in the right class.
3827 We can use it as long as we don't need to change its contents. */
3828 for (i = 0; i < n_reloads; i++)
3829 if (rld[i].reg_rtx == 0
3830 && rld[i].in != 0
3831 && GET_CODE (rld[i].in) == REG
3832 && rld[i].out == 0)
3834 rld[i].reg_rtx
3835 = find_equiv_reg (rld[i].in, insn, rld[i].class, -1,
3836 static_reload_reg_p, 0, rld[i].inmode);
3837 /* Prevent generation of insn to load the value
3838 because the one we found already has the value. */
3839 if (rld[i].reg_rtx)
3840 rld[i].in = rld[i].reg_rtx;
3842 #endif
3844 /* Perhaps an output reload can be combined with another
3845 to reduce needs by one. */
3846 if (!goal_earlyclobber)
3847 combine_reloads ();
3849 /* If we have a pair of reloads for parts of an address, they are reloading
3850 the same object, the operands themselves were not reloaded, and they
3851 are for two operands that are supposed to match, merge the reloads and
3852 change the type of the surviving reload to RELOAD_FOR_OPERAND_ADDRESS. */
3854 for (i = 0; i < n_reloads; i++)
3856 int k;
3858 for (j = i + 1; j < n_reloads; j++)
3859 if ((rld[i].when_needed == RELOAD_FOR_INPUT_ADDRESS
3860 || rld[i].when_needed == RELOAD_FOR_OUTPUT_ADDRESS
3861 || rld[i].when_needed == RELOAD_FOR_INPADDR_ADDRESS
3862 || rld[i].when_needed == RELOAD_FOR_OUTADDR_ADDRESS)
3863 && (rld[j].when_needed == RELOAD_FOR_INPUT_ADDRESS
3864 || rld[j].when_needed == RELOAD_FOR_OUTPUT_ADDRESS
3865 || rld[j].when_needed == RELOAD_FOR_INPADDR_ADDRESS
3866 || rld[j].when_needed == RELOAD_FOR_OUTADDR_ADDRESS)
3867 && rtx_equal_p (rld[i].in, rld[j].in)
3868 && (operand_reloadnum[rld[i].opnum] < 0
3869 || rld[operand_reloadnum[rld[i].opnum]].optional)
3870 && (operand_reloadnum[rld[j].opnum] < 0
3871 || rld[operand_reloadnum[rld[j].opnum]].optional)
3872 && (goal_alternative_matches[rld[i].opnum] == rld[j].opnum
3873 || (goal_alternative_matches[rld[j].opnum]
3874 == rld[i].opnum)))
3876 for (k = 0; k < n_replacements; k++)
3877 if (replacements[k].what == j)
3878 replacements[k].what = i;
3880 if (rld[i].when_needed == RELOAD_FOR_INPADDR_ADDRESS
3881 || rld[i].when_needed == RELOAD_FOR_OUTADDR_ADDRESS)
3882 rld[i].when_needed = RELOAD_FOR_OPADDR_ADDR;
3883 else
3884 rld[i].when_needed = RELOAD_FOR_OPERAND_ADDRESS;
3885 rld[j].in = 0;
3889 /* Scan all the reloads and update their type.
3890 If a reload is for the address of an operand and we didn't reload
3891 that operand, change the type. Similarly, change the operand number
3892 of a reload when two operands match. If a reload is optional, treat it
3893 as though the operand isn't reloaded.
3895 ??? This latter case is somewhat odd because if we do the optional
3896 reload, it means the object is hanging around. Thus we need only
3897 do the address reload if the optional reload was NOT done.
3899 Change secondary reloads to be the address type of their operand, not
3900 the normal type.
3902 If an operand's reload is now RELOAD_OTHER, change any
3903 RELOAD_FOR_INPUT_ADDRESS reloads of that operand to
3904 RELOAD_FOR_OTHER_ADDRESS. */
3906 for (i = 0; i < n_reloads; i++)
3908 if (rld[i].secondary_p
3909 && rld[i].when_needed == operand_type[rld[i].opnum])
3910 rld[i].when_needed = address_type[rld[i].opnum];
3912 if ((rld[i].when_needed == RELOAD_FOR_INPUT_ADDRESS
3913 || rld[i].when_needed == RELOAD_FOR_OUTPUT_ADDRESS
3914 || rld[i].when_needed == RELOAD_FOR_INPADDR_ADDRESS
3915 || rld[i].when_needed == RELOAD_FOR_OUTADDR_ADDRESS)
3916 && (operand_reloadnum[rld[i].opnum] < 0
3917 || rld[operand_reloadnum[rld[i].opnum]].optional))
3919 /* If we have a secondary reload to go along with this reload,
3920 change its type to RELOAD_FOR_OPADDR_ADDR. */
3922 if ((rld[i].when_needed == RELOAD_FOR_INPUT_ADDRESS
3923 || rld[i].when_needed == RELOAD_FOR_INPADDR_ADDRESS)
3924 && rld[i].secondary_in_reload != -1)
3926 int secondary_in_reload = rld[i].secondary_in_reload;
3928 rld[secondary_in_reload].when_needed
3929 = RELOAD_FOR_OPADDR_ADDR;
3931 /* If there's a tertiary reload we have to change it also. */
3932 if (secondary_in_reload > 0
3933 && rld[secondary_in_reload].secondary_in_reload != -1)
3934 rld[rld[secondary_in_reload].secondary_in_reload].when_needed
3935 = RELOAD_FOR_OPADDR_ADDR;
3938 if ((rld[i].when_needed == RELOAD_FOR_OUTPUT_ADDRESS
3939 || rld[i].when_needed == RELOAD_FOR_OUTADDR_ADDRESS)
3940 && rld[i].secondary_out_reload != -1)
3942 int secondary_out_reload = rld[i].secondary_out_reload;
3944 rld[secondary_out_reload].when_needed
3945 = RELOAD_FOR_OPADDR_ADDR;
3947 /* If there's a tertiary reload we have to change it also. */
3948 if (secondary_out_reload
3949 && rld[secondary_out_reload].secondary_out_reload != -1)
3950 rld[rld[secondary_out_reload].secondary_out_reload].when_needed
3951 = RELOAD_FOR_OPADDR_ADDR;
3954 if (rld[i].when_needed == RELOAD_FOR_INPADDR_ADDRESS
3955 || rld[i].when_needed == RELOAD_FOR_OUTADDR_ADDRESS)
3956 rld[i].when_needed = RELOAD_FOR_OPADDR_ADDR;
3957 else
3958 rld[i].when_needed = RELOAD_FOR_OPERAND_ADDRESS;
3961 if ((rld[i].when_needed == RELOAD_FOR_INPUT_ADDRESS
3962 || rld[i].when_needed == RELOAD_FOR_INPADDR_ADDRESS)
3963 && operand_reloadnum[rld[i].opnum] >= 0
3964 && (rld[operand_reloadnum[rld[i].opnum]].when_needed
3965 == RELOAD_OTHER))
3966 rld[i].when_needed = RELOAD_FOR_OTHER_ADDRESS;
3968 if (goal_alternative_matches[rld[i].opnum] >= 0)
3969 rld[i].opnum = goal_alternative_matches[rld[i].opnum];
3972 /* Scan all the reloads, and check for RELOAD_FOR_OPERAND_ADDRESS reloads.
3973 If we have more than one, then convert all RELOAD_FOR_OPADDR_ADDR
3974 reloads to RELOAD_FOR_OPERAND_ADDRESS reloads.
3976 choose_reload_regs assumes that RELOAD_FOR_OPADDR_ADDR reloads never
3977 conflict with RELOAD_FOR_OPERAND_ADDRESS reloads. This is true for a
3978 single pair of RELOAD_FOR_OPADDR_ADDR/RELOAD_FOR_OPERAND_ADDRESS reloads.
3979 However, if there is more than one RELOAD_FOR_OPERAND_ADDRESS reload,
3980 then a RELOAD_FOR_OPADDR_ADDR reload conflicts with all
3981 RELOAD_FOR_OPERAND_ADDRESS reloads other than the one that uses it.
3982 This is complicated by the fact that a single operand can have more
3983 than one RELOAD_FOR_OPERAND_ADDRESS reload. It is very difficult to fix
3984 choose_reload_regs without affecting code quality, and cases that
3985 actually fail are extremely rare, so it turns out to be better to fix
3986 the problem here by not generating cases that choose_reload_regs will
3987 fail for. */
3988 /* There is a similar problem with RELOAD_FOR_INPUT_ADDRESS /
3989 RELOAD_FOR_OUTPUT_ADDRESS when there is more than one of a kind for
3990 a single operand.
3991 We can reduce the register pressure by exploiting that a
3992 RELOAD_FOR_X_ADDR_ADDR that precedes all RELOAD_FOR_X_ADDRESS reloads
3993 does not conflict with any of them, if it is only used for the first of
3994 the RELOAD_FOR_X_ADDRESS reloads. */
3996 int first_op_addr_num = -2;
3997 int first_inpaddr_num[MAX_RECOG_OPERANDS];
3998 int first_outpaddr_num[MAX_RECOG_OPERANDS];
3999 int need_change= 0;
4000 /* We use last_op_addr_reload and the contents of the above arrays
4001 first as flags - -2 means no instance encountered, -1 means exactly
4002 one instance encountered.
4003 If more than one instance has been encountered, we store the reload
4004 number of the first reload of the kind in question; reload numbers
4005 are known to be non-negative. */
4006 for (i = 0; i < noperands; i++)
4007 first_inpaddr_num[i] = first_outpaddr_num[i] = -2;
4008 for (i = n_reloads - 1; i >= 0; i--)
4010 switch (rld[i].when_needed)
4012 case RELOAD_FOR_OPERAND_ADDRESS:
4013 if (++first_op_addr_num >= 0)
4015 first_op_addr_num = i;
4016 need_change = 1;
4018 break;
4019 case RELOAD_FOR_INPUT_ADDRESS:
4020 if (++first_inpaddr_num[rld[i].opnum] >= 0)
4022 first_inpaddr_num[rld[i].opnum] = i;
4023 need_change = 1;
4025 break;
4026 case RELOAD_FOR_OUTPUT_ADDRESS:
4027 if (++first_outpaddr_num[rld[i].opnum] >= 0)
4029 first_outpaddr_num[rld[i].opnum] = i;
4030 need_change = 1;
4032 break;
4033 default:
4034 break;
4038 if (need_change)
4040 for (i = 0; i < n_reloads; i++)
4042 int first_num;
4043 enum reload_type type;
4045 switch (rld[i].when_needed)
4047 case RELOAD_FOR_OPADDR_ADDR:
4048 first_num = first_op_addr_num;
4049 type = RELOAD_FOR_OPERAND_ADDRESS;
4050 break;
4051 case RELOAD_FOR_INPADDR_ADDRESS:
4052 first_num = first_inpaddr_num[rld[i].opnum];
4053 type = RELOAD_FOR_INPUT_ADDRESS;
4054 break;
4055 case RELOAD_FOR_OUTADDR_ADDRESS:
4056 first_num = first_outpaddr_num[rld[i].opnum];
4057 type = RELOAD_FOR_OUTPUT_ADDRESS;
4058 break;
4059 default:
4060 continue;
4062 if (first_num < 0)
4063 continue;
4064 else if (i > first_num)
4065 rld[i].when_needed = type;
4066 else
4068 /* Check if the only TYPE reload that uses reload I is
4069 reload FIRST_NUM. */
4070 for (j = n_reloads - 1; j > first_num; j--)
4072 if (rld[j].when_needed == type
4073 && (rld[i].secondary_p
4074 ? rld[j].secondary_in_reload == i
4075 : reg_mentioned_p (rld[i].in, rld[j].in)))
4077 rld[i].when_needed = type;
4078 break;
4086 /* See if we have any reloads that are now allowed to be merged
4087 because we've changed when the reload is needed to
4088 RELOAD_FOR_OPERAND_ADDRESS or RELOAD_FOR_OTHER_ADDRESS. Only
4089 check for the most common cases. */
4091 for (i = 0; i < n_reloads; i++)
4092 if (rld[i].in != 0 && rld[i].out == 0
4093 && (rld[i].when_needed == RELOAD_FOR_OPERAND_ADDRESS
4094 || rld[i].when_needed == RELOAD_FOR_OPADDR_ADDR
4095 || rld[i].when_needed == RELOAD_FOR_OTHER_ADDRESS))
4096 for (j = 0; j < n_reloads; j++)
4097 if (i != j && rld[j].in != 0 && rld[j].out == 0
4098 && rld[j].when_needed == rld[i].when_needed
4099 && MATCHES (rld[i].in, rld[j].in)
4100 && rld[i].class == rld[j].class
4101 && !rld[i].nocombine && !rld[j].nocombine
4102 && rld[i].reg_rtx == rld[j].reg_rtx)
4104 rld[i].opnum = MIN (rld[i].opnum, rld[j].opnum);
4105 transfer_replacements (i, j);
4106 rld[j].in = 0;
4109 #ifdef HAVE_cc0
4110 /* If we made any reloads for addresses, see if they violate a
4111 "no input reloads" requirement for this insn. But loads that we
4112 do after the insn (such as for output addresses) are fine. */
4113 if (no_input_reloads)
4114 for (i = 0; i < n_reloads; i++)
4115 if (rld[i].in != 0
4116 && rld[i].when_needed != RELOAD_FOR_OUTADDR_ADDRESS
4117 && rld[i].when_needed != RELOAD_FOR_OUTPUT_ADDRESS)
4118 abort ();
4119 #endif
4121 /* Compute reload_mode and reload_nregs. */
4122 for (i = 0; i < n_reloads; i++)
4124 rld[i].mode
4125 = (rld[i].inmode == VOIDmode
4126 || (GET_MODE_SIZE (rld[i].outmode)
4127 > GET_MODE_SIZE (rld[i].inmode)))
4128 ? rld[i].outmode : rld[i].inmode;
4130 rld[i].nregs = CLASS_MAX_NREGS (rld[i].class, rld[i].mode);
4133 return retval;
4136 /* Return 1 if alternative number ALTNUM in constraint-string CONSTRAINT
4137 accepts a memory operand with constant address. */
4139 static int
4140 alternative_allows_memconst (constraint, altnum)
4141 const char *constraint;
4142 int altnum;
4144 register int c;
4145 /* Skip alternatives before the one requested. */
4146 while (altnum > 0)
4148 while (*constraint++ != ',');
4149 altnum--;
4151 /* Scan the requested alternative for 'm' or 'o'.
4152 If one of them is present, this alternative accepts memory constants. */
4153 while ((c = *constraint++) && c != ',' && c != '#')
4154 if (c == 'm' || c == 'o')
4155 return 1;
4156 return 0;
4159 /* Scan X for memory references and scan the addresses for reloading.
4160 Also checks for references to "constant" regs that we want to eliminate
4161 and replaces them with the values they stand for.
4162 We may alter X destructively if it contains a reference to such.
4163 If X is just a constant reg, we return the equivalent value
4164 instead of X.
4166 IND_LEVELS says how many levels of indirect addressing this machine
4167 supports.
4169 OPNUM and TYPE identify the purpose of the reload.
4171 IS_SET_DEST is true if X is the destination of a SET, which is not
4172 appropriate to be replaced by a constant.
4174 INSN, if nonzero, is the insn in which we do the reload. It is used
4175 to determine if we may generate output reloads, and where to put USEs
4176 for pseudos that we have to replace with stack slots.
4178 ADDRESS_RELOADED. If nonzero, is a pointer to where we put the
4179 result of find_reloads_address. */
4181 static rtx
4182 find_reloads_toplev (x, opnum, type, ind_levels, is_set_dest, insn,
4183 address_reloaded)
4184 rtx x;
4185 int opnum;
4186 enum reload_type type;
4187 int ind_levels;
4188 int is_set_dest;
4189 rtx insn;
4190 int *address_reloaded;
4192 register RTX_CODE code = GET_CODE (x);
4194 register const char *fmt = GET_RTX_FORMAT (code);
4195 register int i;
4196 int copied;
4198 if (code == REG)
4200 /* This code is duplicated for speed in find_reloads. */
4201 register int regno = REGNO (x);
4202 if (reg_equiv_constant[regno] != 0 && !is_set_dest)
4203 x = reg_equiv_constant[regno];
4204 #if 0
4205 /* This creates (subreg (mem...)) which would cause an unnecessary
4206 reload of the mem. */
4207 else if (reg_equiv_mem[regno] != 0)
4208 x = reg_equiv_mem[regno];
4209 #endif
4210 else if (reg_equiv_memory_loc[regno]
4211 && (reg_equiv_address[regno] != 0 || num_not_at_initial_offset))
4213 rtx mem = make_memloc (x, regno);
4214 if (reg_equiv_address[regno]
4215 || ! rtx_equal_p (mem, reg_equiv_mem[regno]))
4217 /* If this is not a toplevel operand, find_reloads doesn't see
4218 this substitution. We have to emit a USE of the pseudo so
4219 that delete_output_reload can see it. */
4220 if (replace_reloads && recog_data.operand[opnum] != x)
4221 emit_insn_before (gen_rtx_USE (VOIDmode, x), insn);
4222 x = mem;
4223 i = find_reloads_address (GET_MODE (x), &x, XEXP (x, 0), &XEXP (x, 0),
4224 opnum, type, ind_levels, insn);
4225 if (address_reloaded)
4226 *address_reloaded = i;
4229 return x;
4231 if (code == MEM)
4233 rtx tem = x;
4235 i = find_reloads_address (GET_MODE (x), &tem, XEXP (x, 0), &XEXP (x, 0),
4236 opnum, type, ind_levels, insn);
4237 if (address_reloaded)
4238 *address_reloaded = i;
4240 return tem;
4243 if (code == SUBREG && GET_CODE (SUBREG_REG (x)) == REG)
4245 /* Check for SUBREG containing a REG that's equivalent to a constant.
4246 If the constant has a known value, truncate it right now.
4247 Similarly if we are extracting a single-word of a multi-word
4248 constant. If the constant is symbolic, allow it to be substituted
4249 normally. push_reload will strip the subreg later. If the
4250 constant is VOIDmode, abort because we will lose the mode of
4251 the register (this should never happen because one of the cases
4252 above should handle it). */
4254 register int regno = REGNO (SUBREG_REG (x));
4255 rtx tem;
4257 if (subreg_lowpart_p (x)
4258 && regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
4259 && reg_equiv_constant[regno] != 0
4260 && (tem = gen_lowpart_common (GET_MODE (x),
4261 reg_equiv_constant[regno])) != 0)
4262 return tem;
4264 if (GET_MODE_BITSIZE (GET_MODE (x)) == BITS_PER_WORD
4265 && regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
4266 && reg_equiv_constant[regno] != 0
4267 && (tem = operand_subword (reg_equiv_constant[regno],
4268 SUBREG_WORD (x), 0,
4269 GET_MODE (SUBREG_REG (x)))) != 0)
4271 /* TEM is now a word sized constant for the bits from X that
4272 we wanted. However, TEM may be the wrong representation.
4274 Use gen_lowpart_common to convert a CONST_INT into a
4275 CONST_DOUBLE and vice versa as needed according to by the mode
4276 of the SUBREG. */
4277 tem = gen_lowpart_common (GET_MODE (x), tem);
4278 if (!tem)
4279 abort ();
4280 return tem;
4283 /* If the SUBREG is wider than a word, the above test will fail.
4284 For example, we might have a SImode SUBREG of a DImode SUBREG_REG
4285 for a 16 bit target, or a DImode SUBREG of a TImode SUBREG_REG for
4286 a 32 bit target. We still can - and have to - handle this
4287 for non-paradoxical subregs of CONST_INTs. */
4288 if (regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
4289 && reg_equiv_constant[regno] != 0
4290 && GET_CODE (reg_equiv_constant[regno]) == CONST_INT
4291 && (GET_MODE_SIZE (GET_MODE (x))
4292 < GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)))))
4294 int shift = SUBREG_WORD (x) * BITS_PER_WORD;
4295 if (WORDS_BIG_ENDIAN)
4296 shift = (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x)))
4297 - GET_MODE_BITSIZE (GET_MODE (x))
4298 - shift);
4299 /* Here we use the knowledge that CONST_INTs have a
4300 HOST_WIDE_INT field. */
4301 if (shift >= HOST_BITS_PER_WIDE_INT)
4302 shift = HOST_BITS_PER_WIDE_INT - 1;
4303 return GEN_INT (INTVAL (reg_equiv_constant[regno]) >> shift);
4306 if (regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] < 0
4307 && reg_equiv_constant[regno] != 0
4308 && GET_MODE (reg_equiv_constant[regno]) == VOIDmode)
4309 abort ();
4311 /* If the subreg contains a reg that will be converted to a mem,
4312 convert the subreg to a narrower memref now.
4313 Otherwise, we would get (subreg (mem ...) ...),
4314 which would force reload of the mem.
4316 We also need to do this if there is an equivalent MEM that is
4317 not offsettable. In that case, alter_subreg would produce an
4318 invalid address on big-endian machines.
4320 For machines that extend byte loads, we must not reload using
4321 a wider mode if we have a paradoxical SUBREG. find_reloads will
4322 force a reload in that case. So we should not do anything here. */
4324 else if (regno >= FIRST_PSEUDO_REGISTER
4325 #ifdef LOAD_EXTEND_OP
4326 && (GET_MODE_SIZE (GET_MODE (x))
4327 <= GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
4328 #endif
4329 && (reg_equiv_address[regno] != 0
4330 || (reg_equiv_mem[regno] != 0
4331 && (! strict_memory_address_p (GET_MODE (x),
4332 XEXP (reg_equiv_mem[regno], 0))
4333 || ! offsettable_memref_p (reg_equiv_mem[regno])
4334 || num_not_at_initial_offset))))
4335 x = find_reloads_subreg_address (x, 1, opnum, type, ind_levels,
4336 insn);
4339 for (copied = 0, i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4341 if (fmt[i] == 'e')
4343 rtx new_part = find_reloads_toplev (XEXP (x, i), opnum, type,
4344 ind_levels, is_set_dest, insn,
4345 address_reloaded);
4346 /* If we have replaced a reg with it's equivalent memory loc -
4347 that can still be handled here e.g. if it's in a paradoxical
4348 subreg - we must make the change in a copy, rather than using
4349 a destructive change. This way, find_reloads can still elect
4350 not to do the change. */
4351 if (new_part != XEXP (x, i) && ! CONSTANT_P (new_part) && ! copied)
4353 x = shallow_copy_rtx (x);
4354 copied = 1;
4356 XEXP (x, i) = new_part;
4359 return x;
4362 /* Return a mem ref for the memory equivalent of reg REGNO.
4363 This mem ref is not shared with anything. */
4365 static rtx
4366 make_memloc (ad, regno)
4367 rtx ad;
4368 int regno;
4370 /* We must rerun eliminate_regs, in case the elimination
4371 offsets have changed. */
4372 rtx tem
4373 = XEXP (eliminate_regs (reg_equiv_memory_loc[regno], 0, NULL_RTX), 0);
4375 /* If TEM might contain a pseudo, we must copy it to avoid
4376 modifying it when we do the substitution for the reload. */
4377 if (rtx_varies_p (tem))
4378 tem = copy_rtx (tem);
4380 tem = gen_rtx_MEM (GET_MODE (ad), tem);
4381 MEM_COPY_ATTRIBUTES (tem, reg_equiv_memory_loc[regno]);
4382 return tem;
4385 /* Record all reloads needed for handling memory address AD
4386 which appears in *LOC in a memory reference to mode MODE
4387 which itself is found in location *MEMREFLOC.
4388 Note that we take shortcuts assuming that no multi-reg machine mode
4389 occurs as part of an address.
4391 OPNUM and TYPE specify the purpose of this reload.
4393 IND_LEVELS says how many levels of indirect addressing this machine
4394 supports.
4396 INSN, if nonzero, is the insn in which we do the reload. It is used
4397 to determine if we may generate output reloads, and where to put USEs
4398 for pseudos that we have to replace with stack slots.
4400 Value is nonzero if this address is reloaded or replaced as a whole.
4401 This is interesting to the caller if the address is an autoincrement.
4403 Note that there is no verification that the address will be valid after
4404 this routine does its work. Instead, we rely on the fact that the address
4405 was valid when reload started. So we need only undo things that reload
4406 could have broken. These are wrong register types, pseudos not allocated
4407 to a hard register, and frame pointer elimination. */
4409 static int
4410 find_reloads_address (mode, memrefloc, ad, loc, opnum, type, ind_levels, insn)
4411 enum machine_mode mode;
4412 rtx *memrefloc;
4413 rtx ad;
4414 rtx *loc;
4415 int opnum;
4416 enum reload_type type;
4417 int ind_levels;
4418 rtx insn;
4420 register int regno;
4421 int removed_and = 0;
4422 rtx tem;
4424 /* If the address is a register, see if it is a legitimate address and
4425 reload if not. We first handle the cases where we need not reload
4426 or where we must reload in a non-standard way. */
4428 if (GET_CODE (ad) == REG)
4430 regno = REGNO (ad);
4432 if (reg_equiv_constant[regno] != 0
4433 && strict_memory_address_p (mode, reg_equiv_constant[regno]))
4435 *loc = ad = reg_equiv_constant[regno];
4436 return 0;
4439 tem = reg_equiv_memory_loc[regno];
4440 if (tem != 0)
4442 if (reg_equiv_address[regno] != 0 || num_not_at_initial_offset)
4444 tem = make_memloc (ad, regno);
4445 if (! strict_memory_address_p (GET_MODE (tem), XEXP (tem, 0)))
4447 find_reloads_address (GET_MODE (tem), NULL_PTR, XEXP (tem, 0),
4448 &XEXP (tem, 0), opnum, ADDR_TYPE (type),
4449 ind_levels, insn);
4451 /* We can avoid a reload if the register's equivalent memory
4452 expression is valid as an indirect memory address.
4453 But not all addresses are valid in a mem used as an indirect
4454 address: only reg or reg+constant. */
4456 if (ind_levels > 0
4457 && strict_memory_address_p (mode, tem)
4458 && (GET_CODE (XEXP (tem, 0)) == REG
4459 || (GET_CODE (XEXP (tem, 0)) == PLUS
4460 && GET_CODE (XEXP (XEXP (tem, 0), 0)) == REG
4461 && CONSTANT_P (XEXP (XEXP (tem, 0), 1)))))
4463 /* TEM is not the same as what we'll be replacing the
4464 pseudo with after reload, put a USE in front of INSN
4465 in the final reload pass. */
4466 if (replace_reloads
4467 && num_not_at_initial_offset
4468 && ! rtx_equal_p (tem, reg_equiv_mem[regno]))
4470 *loc = tem;
4471 emit_insn_before (gen_rtx_USE (VOIDmode, ad), insn);
4472 /* This doesn't really count as replacing the address
4473 as a whole, since it is still a memory access. */
4475 return 0;
4477 ad = tem;
4481 /* The only remaining case where we can avoid a reload is if this is a
4482 hard register that is valid as a base register and which is not the
4483 subject of a CLOBBER in this insn. */
4485 else if (regno < FIRST_PSEUDO_REGISTER
4486 && REGNO_MODE_OK_FOR_BASE_P (regno, mode)
4487 && ! regno_clobbered_p (regno, this_insn))
4488 return 0;
4490 /* If we do not have one of the cases above, we must do the reload. */
4491 push_reload (ad, NULL_RTX, loc, NULL_PTR, BASE_REG_CLASS,
4492 GET_MODE (ad), VOIDmode, 0, 0, opnum, type);
4493 return 1;
4496 if (strict_memory_address_p (mode, ad))
4498 /* The address appears valid, so reloads are not needed.
4499 But the address may contain an eliminable register.
4500 This can happen because a machine with indirect addressing
4501 may consider a pseudo register by itself a valid address even when
4502 it has failed to get a hard reg.
4503 So do a tree-walk to find and eliminate all such regs. */
4505 /* But first quickly dispose of a common case. */
4506 if (GET_CODE (ad) == PLUS
4507 && GET_CODE (XEXP (ad, 1)) == CONST_INT
4508 && GET_CODE (XEXP (ad, 0)) == REG
4509 && reg_equiv_constant[REGNO (XEXP (ad, 0))] == 0)
4510 return 0;
4512 subst_reg_equivs_changed = 0;
4513 *loc = subst_reg_equivs (ad, insn);
4515 if (! subst_reg_equivs_changed)
4516 return 0;
4518 /* Check result for validity after substitution. */
4519 if (strict_memory_address_p (mode, ad))
4520 return 0;
4523 #ifdef LEGITIMIZE_RELOAD_ADDRESS
4526 if (memrefloc)
4528 LEGITIMIZE_RELOAD_ADDRESS (ad, GET_MODE (*memrefloc), opnum, type,
4529 ind_levels, win);
4531 break;
4532 win:
4533 *memrefloc = copy_rtx (*memrefloc);
4534 XEXP (*memrefloc, 0) = ad;
4535 move_replacements (&ad, &XEXP (*memrefloc, 0));
4536 return 1;
4538 while (0);
4539 #endif
4541 /* The address is not valid. We have to figure out why. First see if
4542 we have an outer AND and remove it if so. Then analyze what's inside. */
4544 if (GET_CODE (ad) == AND)
4546 removed_and = 1;
4547 loc = &XEXP (ad, 0);
4548 ad = *loc;
4551 /* One possibility for why the address is invalid is that it is itself
4552 a MEM. This can happen when the frame pointer is being eliminated, a
4553 pseudo is not allocated to a hard register, and the offset between the
4554 frame and stack pointers is not its initial value. In that case the
4555 pseudo will have been replaced by a MEM referring to the
4556 stack pointer. */
4557 if (GET_CODE (ad) == MEM)
4559 /* First ensure that the address in this MEM is valid. Then, unless
4560 indirect addresses are valid, reload the MEM into a register. */
4561 tem = ad;
4562 find_reloads_address (GET_MODE (ad), &tem, XEXP (ad, 0), &XEXP (ad, 0),
4563 opnum, ADDR_TYPE (type),
4564 ind_levels == 0 ? 0 : ind_levels - 1, insn);
4566 /* If tem was changed, then we must create a new memory reference to
4567 hold it and store it back into memrefloc. */
4568 if (tem != ad && memrefloc)
4570 *memrefloc = copy_rtx (*memrefloc);
4571 copy_replacements (tem, XEXP (*memrefloc, 0));
4572 loc = &XEXP (*memrefloc, 0);
4573 if (removed_and)
4574 loc = &XEXP (*loc, 0);
4577 /* Check similar cases as for indirect addresses as above except
4578 that we can allow pseudos and a MEM since they should have been
4579 taken care of above. */
4581 if (ind_levels == 0
4582 || (GET_CODE (XEXP (tem, 0)) == SYMBOL_REF && ! indirect_symref_ok)
4583 || GET_CODE (XEXP (tem, 0)) == MEM
4584 || ! (GET_CODE (XEXP (tem, 0)) == REG
4585 || (GET_CODE (XEXP (tem, 0)) == PLUS
4586 && GET_CODE (XEXP (XEXP (tem, 0), 0)) == REG
4587 && GET_CODE (XEXP (XEXP (tem, 0), 1)) == CONST_INT)))
4589 /* Must use TEM here, not AD, since it is the one that will
4590 have any subexpressions reloaded, if needed. */
4591 push_reload (tem, NULL_RTX, loc, NULL_PTR,
4592 BASE_REG_CLASS, GET_MODE (tem),
4593 VOIDmode, 0,
4594 0, opnum, type);
4595 return ! removed_and;
4597 else
4598 return 0;
4601 /* If we have address of a stack slot but it's not valid because the
4602 displacement is too large, compute the sum in a register.
4603 Handle all base registers here, not just fp/ap/sp, because on some
4604 targets (namely SH) we can also get too large displacements from
4605 big-endian corrections. */
4606 else if (GET_CODE (ad) == PLUS
4607 && GET_CODE (XEXP (ad, 0)) == REG
4608 && REGNO (XEXP (ad, 0)) < FIRST_PSEUDO_REGISTER
4609 && REG_MODE_OK_FOR_BASE_P (XEXP (ad, 0), mode)
4610 && GET_CODE (XEXP (ad, 1)) == CONST_INT)
4612 /* Unshare the MEM rtx so we can safely alter it. */
4613 if (memrefloc)
4615 *memrefloc = copy_rtx (*memrefloc);
4616 loc = &XEXP (*memrefloc, 0);
4617 if (removed_and)
4618 loc = &XEXP (*loc, 0);
4621 if (double_reg_address_ok)
4623 /* Unshare the sum as well. */
4624 *loc = ad = copy_rtx (ad);
4626 /* Reload the displacement into an index reg.
4627 We assume the frame pointer or arg pointer is a base reg. */
4628 find_reloads_address_part (XEXP (ad, 1), &XEXP (ad, 1),
4629 INDEX_REG_CLASS, GET_MODE (ad), opnum,
4630 type, ind_levels);
4631 return 0;
4633 else
4635 /* If the sum of two regs is not necessarily valid,
4636 reload the sum into a base reg.
4637 That will at least work. */
4638 find_reloads_address_part (ad, loc, BASE_REG_CLASS,
4639 Pmode, opnum, type, ind_levels);
4641 return ! removed_and;
4644 /* If we have an indexed stack slot, there are three possible reasons why
4645 it might be invalid: The index might need to be reloaded, the address
4646 might have been made by frame pointer elimination and hence have a
4647 constant out of range, or both reasons might apply.
4649 We can easily check for an index needing reload, but even if that is the
4650 case, we might also have an invalid constant. To avoid making the
4651 conservative assumption and requiring two reloads, we see if this address
4652 is valid when not interpreted strictly. If it is, the only problem is
4653 that the index needs a reload and find_reloads_address_1 will take care
4654 of it.
4656 If we decide to do something here, it must be that
4657 `double_reg_address_ok' is true and that this address rtl was made by
4658 eliminate_regs. We generate a reload of the fp/sp/ap + constant and
4659 rework the sum so that the reload register will be added to the index.
4660 This is safe because we know the address isn't shared.
4662 We check for fp/ap/sp as both the first and second operand of the
4663 innermost PLUS. */
4665 else if (GET_CODE (ad) == PLUS && GET_CODE (XEXP (ad, 1)) == CONST_INT
4666 && GET_CODE (XEXP (ad, 0)) == PLUS
4667 && (XEXP (XEXP (ad, 0), 0) == frame_pointer_rtx
4668 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
4669 || XEXP (XEXP (ad, 0), 0) == hard_frame_pointer_rtx
4670 #endif
4671 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
4672 || XEXP (XEXP (ad, 0), 0) == arg_pointer_rtx
4673 #endif
4674 || XEXP (XEXP (ad, 0), 0) == stack_pointer_rtx)
4675 && ! memory_address_p (mode, ad))
4677 *loc = ad = gen_rtx_PLUS (GET_MODE (ad),
4678 plus_constant (XEXP (XEXP (ad, 0), 0),
4679 INTVAL (XEXP (ad, 1))),
4680 XEXP (XEXP (ad, 0), 1));
4681 find_reloads_address_part (XEXP (ad, 0), &XEXP (ad, 0), BASE_REG_CLASS,
4682 GET_MODE (ad), opnum, type, ind_levels);
4683 find_reloads_address_1 (mode, XEXP (ad, 1), 1, &XEXP (ad, 1), opnum,
4684 type, 0, insn);
4686 return 0;
4689 else if (GET_CODE (ad) == PLUS && GET_CODE (XEXP (ad, 1)) == CONST_INT
4690 && GET_CODE (XEXP (ad, 0)) == PLUS
4691 && (XEXP (XEXP (ad, 0), 1) == frame_pointer_rtx
4692 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
4693 || XEXP (XEXP (ad, 0), 1) == hard_frame_pointer_rtx
4694 #endif
4695 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
4696 || XEXP (XEXP (ad, 0), 1) == arg_pointer_rtx
4697 #endif
4698 || XEXP (XEXP (ad, 0), 1) == stack_pointer_rtx)
4699 && ! memory_address_p (mode, ad))
4701 *loc = ad = gen_rtx_PLUS (GET_MODE (ad),
4702 XEXP (XEXP (ad, 0), 0),
4703 plus_constant (XEXP (XEXP (ad, 0), 1),
4704 INTVAL (XEXP (ad, 1))));
4705 find_reloads_address_part (XEXP (ad, 1), &XEXP (ad, 1), BASE_REG_CLASS,
4706 GET_MODE (ad), opnum, type, ind_levels);
4707 find_reloads_address_1 (mode, XEXP (ad, 0), 1, &XEXP (ad, 0), opnum,
4708 type, 0, insn);
4710 return 0;
4713 /* See if address becomes valid when an eliminable register
4714 in a sum is replaced. */
4716 tem = ad;
4717 if (GET_CODE (ad) == PLUS)
4718 tem = subst_indexed_address (ad);
4719 if (tem != ad && strict_memory_address_p (mode, tem))
4721 /* Ok, we win that way. Replace any additional eliminable
4722 registers. */
4724 subst_reg_equivs_changed = 0;
4725 tem = subst_reg_equivs (tem, insn);
4727 /* Make sure that didn't make the address invalid again. */
4729 if (! subst_reg_equivs_changed || strict_memory_address_p (mode, tem))
4731 *loc = tem;
4732 return 0;
4736 /* If constants aren't valid addresses, reload the constant address
4737 into a register. */
4738 if (CONSTANT_P (ad) && ! strict_memory_address_p (mode, ad))
4740 /* If AD is in address in the constant pool, the MEM rtx may be shared.
4741 Unshare it so we can safely alter it. */
4742 if (memrefloc && GET_CODE (ad) == SYMBOL_REF
4743 && CONSTANT_POOL_ADDRESS_P (ad))
4745 *memrefloc = copy_rtx (*memrefloc);
4746 loc = &XEXP (*memrefloc, 0);
4747 if (removed_and)
4748 loc = &XEXP (*loc, 0);
4751 find_reloads_address_part (ad, loc, BASE_REG_CLASS, Pmode, opnum, type,
4752 ind_levels);
4753 return ! removed_and;
4756 return find_reloads_address_1 (mode, ad, 0, loc, opnum, type, ind_levels,
4757 insn);
4760 /* Find all pseudo regs appearing in AD
4761 that are eliminable in favor of equivalent values
4762 and do not have hard regs; replace them by their equivalents.
4763 INSN, if nonzero, is the insn in which we do the reload. We put USEs in
4764 front of it for pseudos that we have to replace with stack slots. */
4766 static rtx
4767 subst_reg_equivs (ad, insn)
4768 rtx ad;
4769 rtx insn;
4771 register RTX_CODE code = GET_CODE (ad);
4772 register int i;
4773 register const char *fmt;
4775 switch (code)
4777 case HIGH:
4778 case CONST_INT:
4779 case CONST:
4780 case CONST_DOUBLE:
4781 case SYMBOL_REF:
4782 case LABEL_REF:
4783 case PC:
4784 case CC0:
4785 return ad;
4787 case REG:
4789 register int regno = REGNO (ad);
4791 if (reg_equiv_constant[regno] != 0)
4793 subst_reg_equivs_changed = 1;
4794 return reg_equiv_constant[regno];
4796 if (reg_equiv_memory_loc[regno] && num_not_at_initial_offset)
4798 rtx mem = make_memloc (ad, regno);
4799 if (! rtx_equal_p (mem, reg_equiv_mem[regno]))
4801 subst_reg_equivs_changed = 1;
4802 emit_insn_before (gen_rtx_USE (VOIDmode, ad), insn);
4803 return mem;
4807 return ad;
4809 case PLUS:
4810 /* Quickly dispose of a common case. */
4811 if (XEXP (ad, 0) == frame_pointer_rtx
4812 && GET_CODE (XEXP (ad, 1)) == CONST_INT)
4813 return ad;
4814 break;
4816 default:
4817 break;
4820 fmt = GET_RTX_FORMAT (code);
4821 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4822 if (fmt[i] == 'e')
4823 XEXP (ad, i) = subst_reg_equivs (XEXP (ad, i), insn);
4824 return ad;
4827 /* Compute the sum of X and Y, making canonicalizations assumed in an
4828 address, namely: sum constant integers, surround the sum of two
4829 constants with a CONST, put the constant as the second operand, and
4830 group the constant on the outermost sum.
4832 This routine assumes both inputs are already in canonical form. */
4835 form_sum (x, y)
4836 rtx x, y;
4838 rtx tem;
4839 enum machine_mode mode = GET_MODE (x);
4841 if (mode == VOIDmode)
4842 mode = GET_MODE (y);
4844 if (mode == VOIDmode)
4845 mode = Pmode;
4847 if (GET_CODE (x) == CONST_INT)
4848 return plus_constant (y, INTVAL (x));
4849 else if (GET_CODE (y) == CONST_INT)
4850 return plus_constant (x, INTVAL (y));
4851 else if (CONSTANT_P (x))
4852 tem = x, x = y, y = tem;
4854 if (GET_CODE (x) == PLUS && CONSTANT_P (XEXP (x, 1)))
4855 return form_sum (XEXP (x, 0), form_sum (XEXP (x, 1), y));
4857 /* Note that if the operands of Y are specified in the opposite
4858 order in the recursive calls below, infinite recursion will occur. */
4859 if (GET_CODE (y) == PLUS && CONSTANT_P (XEXP (y, 1)))
4860 return form_sum (form_sum (x, XEXP (y, 0)), XEXP (y, 1));
4862 /* If both constant, encapsulate sum. Otherwise, just form sum. A
4863 constant will have been placed second. */
4864 if (CONSTANT_P (x) && CONSTANT_P (y))
4866 if (GET_CODE (x) == CONST)
4867 x = XEXP (x, 0);
4868 if (GET_CODE (y) == CONST)
4869 y = XEXP (y, 0);
4871 return gen_rtx_CONST (VOIDmode, gen_rtx_PLUS (mode, x, y));
4874 return gen_rtx_PLUS (mode, x, y);
4877 /* If ADDR is a sum containing a pseudo register that should be
4878 replaced with a constant (from reg_equiv_constant),
4879 return the result of doing so, and also apply the associative
4880 law so that the result is more likely to be a valid address.
4881 (But it is not guaranteed to be one.)
4883 Note that at most one register is replaced, even if more are
4884 replaceable. Also, we try to put the result into a canonical form
4885 so it is more likely to be a valid address.
4887 In all other cases, return ADDR. */
4889 static rtx
4890 subst_indexed_address (addr)
4891 rtx addr;
4893 rtx op0 = 0, op1 = 0, op2 = 0;
4894 rtx tem;
4895 int regno;
4897 if (GET_CODE (addr) == PLUS)
4899 /* Try to find a register to replace. */
4900 op0 = XEXP (addr, 0), op1 = XEXP (addr, 1), op2 = 0;
4901 if (GET_CODE (op0) == REG
4902 && (regno = REGNO (op0)) >= FIRST_PSEUDO_REGISTER
4903 && reg_renumber[regno] < 0
4904 && reg_equiv_constant[regno] != 0)
4905 op0 = reg_equiv_constant[regno];
4906 else if (GET_CODE (op1) == REG
4907 && (regno = REGNO (op1)) >= FIRST_PSEUDO_REGISTER
4908 && reg_renumber[regno] < 0
4909 && reg_equiv_constant[regno] != 0)
4910 op1 = reg_equiv_constant[regno];
4911 else if (GET_CODE (op0) == PLUS
4912 && (tem = subst_indexed_address (op0)) != op0)
4913 op0 = tem;
4914 else if (GET_CODE (op1) == PLUS
4915 && (tem = subst_indexed_address (op1)) != op1)
4916 op1 = tem;
4917 else
4918 return addr;
4920 /* Pick out up to three things to add. */
4921 if (GET_CODE (op1) == PLUS)
4922 op2 = XEXP (op1, 1), op1 = XEXP (op1, 0);
4923 else if (GET_CODE (op0) == PLUS)
4924 op2 = op1, op1 = XEXP (op0, 1), op0 = XEXP (op0, 0);
4926 /* Compute the sum. */
4927 if (op2 != 0)
4928 op1 = form_sum (op1, op2);
4929 if (op1 != 0)
4930 op0 = form_sum (op0, op1);
4932 return op0;
4934 return addr;
4937 /* Record the pseudo registers we must reload into hard registers in a
4938 subexpression of a would-be memory address, X referring to a value
4939 in mode MODE. (This function is not called if the address we find
4940 is strictly valid.)
4942 CONTEXT = 1 means we are considering regs as index regs,
4943 = 0 means we are considering them as base regs.
4945 OPNUM and TYPE specify the purpose of any reloads made.
4947 IND_LEVELS says how many levels of indirect addressing are
4948 supported at this point in the address.
4950 INSN, if nonzero, is the insn in which we do the reload. It is used
4951 to determine if we may generate output reloads.
4953 We return nonzero if X, as a whole, is reloaded or replaced. */
4955 /* Note that we take shortcuts assuming that no multi-reg machine mode
4956 occurs as part of an address.
4957 Also, this is not fully machine-customizable; it works for machines
4958 such as vaxes and 68000's and 32000's, but other possible machines
4959 could have addressing modes that this does not handle right. */
4961 static int
4962 find_reloads_address_1 (mode, x, context, loc, opnum, type, ind_levels, insn)
4963 enum machine_mode mode;
4964 rtx x;
4965 int context;
4966 rtx *loc;
4967 int opnum;
4968 enum reload_type type;
4969 int ind_levels;
4970 rtx insn;
4972 register RTX_CODE code = GET_CODE (x);
4974 switch (code)
4976 case PLUS:
4978 register rtx orig_op0 = XEXP (x, 0);
4979 register rtx orig_op1 = XEXP (x, 1);
4980 register RTX_CODE code0 = GET_CODE (orig_op0);
4981 register RTX_CODE code1 = GET_CODE (orig_op1);
4982 register rtx op0 = orig_op0;
4983 register rtx op1 = orig_op1;
4985 if (GET_CODE (op0) == SUBREG)
4987 op0 = SUBREG_REG (op0);
4988 code0 = GET_CODE (op0);
4989 if (code0 == REG && REGNO (op0) < FIRST_PSEUDO_REGISTER)
4990 op0 = gen_rtx_REG (word_mode,
4991 REGNO (op0) + SUBREG_WORD (orig_op0));
4994 if (GET_CODE (op1) == SUBREG)
4996 op1 = SUBREG_REG (op1);
4997 code1 = GET_CODE (op1);
4998 if (code1 == REG && REGNO (op1) < FIRST_PSEUDO_REGISTER)
4999 op1 = gen_rtx_REG (GET_MODE (op1),
5000 REGNO (op1) + SUBREG_WORD (orig_op1));
5003 if (code0 == MULT || code0 == SIGN_EXTEND || code0 == TRUNCATE
5004 || code0 == ZERO_EXTEND || code1 == MEM)
5006 find_reloads_address_1 (mode, orig_op0, 1, &XEXP (x, 0), opnum,
5007 type, ind_levels, insn);
5008 find_reloads_address_1 (mode, orig_op1, 0, &XEXP (x, 1), opnum,
5009 type, ind_levels, insn);
5012 else if (code1 == MULT || code1 == SIGN_EXTEND || code1 == TRUNCATE
5013 || code1 == ZERO_EXTEND || code0 == MEM)
5015 find_reloads_address_1 (mode, orig_op0, 0, &XEXP (x, 0), opnum,
5016 type, ind_levels, insn);
5017 find_reloads_address_1 (mode, orig_op1, 1, &XEXP (x, 1), opnum,
5018 type, ind_levels, insn);
5021 else if (code0 == CONST_INT || code0 == CONST
5022 || code0 == SYMBOL_REF || code0 == LABEL_REF)
5023 find_reloads_address_1 (mode, orig_op1, 0, &XEXP (x, 1), opnum,
5024 type, ind_levels, insn);
5026 else if (code1 == CONST_INT || code1 == CONST
5027 || code1 == SYMBOL_REF || code1 == LABEL_REF)
5028 find_reloads_address_1 (mode, orig_op0, 0, &XEXP (x, 0), opnum,
5029 type, ind_levels, insn);
5031 else if (code0 == REG && code1 == REG)
5033 if (REG_OK_FOR_INDEX_P (op0)
5034 && REG_MODE_OK_FOR_BASE_P (op1, mode))
5035 return 0;
5036 else if (REG_OK_FOR_INDEX_P (op1)
5037 && REG_MODE_OK_FOR_BASE_P (op0, mode))
5038 return 0;
5039 else if (REG_MODE_OK_FOR_BASE_P (op1, mode))
5040 find_reloads_address_1 (mode, orig_op0, 1, &XEXP (x, 0), opnum,
5041 type, ind_levels, insn);
5042 else if (REG_MODE_OK_FOR_BASE_P (op0, mode))
5043 find_reloads_address_1 (mode, orig_op1, 1, &XEXP (x, 1), opnum,
5044 type, ind_levels, insn);
5045 else if (REG_OK_FOR_INDEX_P (op1))
5046 find_reloads_address_1 (mode, orig_op0, 0, &XEXP (x, 0), opnum,
5047 type, ind_levels, insn);
5048 else if (REG_OK_FOR_INDEX_P (op0))
5049 find_reloads_address_1 (mode, orig_op1, 0, &XEXP (x, 1), opnum,
5050 type, ind_levels, insn);
5051 else
5053 find_reloads_address_1 (mode, orig_op0, 1, &XEXP (x, 0), opnum,
5054 type, ind_levels, insn);
5055 find_reloads_address_1 (mode, orig_op1, 0, &XEXP (x, 1), opnum,
5056 type, ind_levels, insn);
5060 else if (code0 == REG)
5062 find_reloads_address_1 (mode, orig_op0, 1, &XEXP (x, 0), opnum,
5063 type, ind_levels, insn);
5064 find_reloads_address_1 (mode, orig_op1, 0, &XEXP (x, 1), opnum,
5065 type, ind_levels, insn);
5068 else if (code1 == REG)
5070 find_reloads_address_1 (mode, orig_op1, 1, &XEXP (x, 1), opnum,
5071 type, ind_levels, insn);
5072 find_reloads_address_1 (mode, orig_op0, 0, &XEXP (x, 0), opnum,
5073 type, ind_levels, insn);
5077 return 0;
5079 case POST_INC:
5080 case POST_DEC:
5081 case PRE_INC:
5082 case PRE_DEC:
5083 if (GET_CODE (XEXP (x, 0)) == REG)
5085 register int regno = REGNO (XEXP (x, 0));
5086 int value = 0;
5087 rtx x_orig = x;
5089 /* A register that is incremented cannot be constant! */
5090 if (regno >= FIRST_PSEUDO_REGISTER
5091 && reg_equiv_constant[regno] != 0)
5092 abort ();
5094 /* Handle a register that is equivalent to a memory location
5095 which cannot be addressed directly. */
5096 if (reg_equiv_memory_loc[regno] != 0
5097 && (reg_equiv_address[regno] != 0 || num_not_at_initial_offset))
5099 rtx tem = make_memloc (XEXP (x, 0), regno);
5100 if (reg_equiv_address[regno]
5101 || ! rtx_equal_p (tem, reg_equiv_mem[regno]))
5103 /* First reload the memory location's address.
5104 We can't use ADDR_TYPE (type) here, because we need to
5105 write back the value after reading it, hence we actually
5106 need two registers. */
5107 find_reloads_address (GET_MODE (tem), &tem, XEXP (tem, 0),
5108 &XEXP (tem, 0), opnum, type,
5109 ind_levels, insn);
5110 /* Put this inside a new increment-expression. */
5111 x = gen_rtx_fmt_e (GET_CODE (x), GET_MODE (x), tem);
5112 /* Proceed to reload that, as if it contained a register. */
5116 /* If we have a hard register that is ok as an index,
5117 don't make a reload. If an autoincrement of a nice register
5118 isn't "valid", it must be that no autoincrement is "valid".
5119 If that is true and something made an autoincrement anyway,
5120 this must be a special context where one is allowed.
5121 (For example, a "push" instruction.)
5122 We can't improve this address, so leave it alone. */
5124 /* Otherwise, reload the autoincrement into a suitable hard reg
5125 and record how much to increment by. */
5127 if (reg_renumber[regno] >= 0)
5128 regno = reg_renumber[regno];
5129 if ((regno >= FIRST_PSEUDO_REGISTER
5130 || !(context ? REGNO_OK_FOR_INDEX_P (regno)
5131 : REGNO_MODE_OK_FOR_BASE_P (regno, mode))))
5133 #ifdef AUTO_INC_DEC
5134 register rtx link;
5135 #endif
5136 int reloadnum;
5138 /* If we can output the register afterwards, do so, this
5139 saves the extra update.
5140 We can do so if we have an INSN - i.e. no JUMP_INSN nor
5141 CALL_INSN - and it does not set CC0.
5142 But don't do this if we cannot directly address the
5143 memory location, since this will make it harder to
5144 reuse address reloads, and increases register pressure.
5145 Also don't do this if we can probably update x directly. */
5146 rtx equiv = (GET_CODE (XEXP (x, 0)) == MEM
5147 ? XEXP (x, 0)
5148 : reg_equiv_mem[regno]);
5149 int icode = (int) add_optab->handlers[(int) Pmode].insn_code;
5150 if (insn && GET_CODE (insn) == INSN && equiv
5151 && memory_operand (equiv, GET_MODE (equiv))
5152 #ifdef HAVE_cc0
5153 && ! sets_cc0_p (PATTERN (insn))
5154 #endif
5155 && ! (icode != CODE_FOR_nothing
5156 && ((*insn_data[icode].operand[0].predicate)
5157 (equiv, Pmode))
5158 && ((*insn_data[icode].operand[1].predicate)
5159 (equiv, Pmode))))
5161 loc = &XEXP (x, 0);
5162 x = XEXP (x, 0);
5163 reloadnum
5164 = push_reload (x, x, loc, loc,
5165 (context ? INDEX_REG_CLASS : BASE_REG_CLASS),
5166 GET_MODE (x), GET_MODE (x), 0, 0,
5167 opnum, RELOAD_OTHER);
5169 /* If we created a new MEM based on reg_equiv_mem[REGNO], then
5170 LOC above is part of the new MEM, not the MEM in INSN.
5172 We must also replace the address of the MEM in INSN. */
5173 if (&XEXP (x_orig, 0) != loc)
5174 push_replacement (&XEXP (x_orig, 0), reloadnum, VOIDmode);
5177 else
5179 reloadnum
5180 = push_reload (x, NULL_RTX, loc, NULL_PTR,
5181 (context ? INDEX_REG_CLASS : BASE_REG_CLASS),
5182 GET_MODE (x), GET_MODE (x), 0, 0,
5183 opnum, type);
5184 rld[reloadnum].inc
5185 = find_inc_amount (PATTERN (this_insn), XEXP (x_orig, 0));
5187 value = 1;
5190 #ifdef AUTO_INC_DEC
5191 /* Update the REG_INC notes. */
5193 for (link = REG_NOTES (this_insn);
5194 link; link = XEXP (link, 1))
5195 if (REG_NOTE_KIND (link) == REG_INC
5196 && REGNO (XEXP (link, 0)) == REGNO (XEXP (x_orig, 0)))
5197 push_replacement (&XEXP (link, 0), reloadnum, VOIDmode);
5198 #endif
5200 return value;
5203 else if (GET_CODE (XEXP (x, 0)) == MEM)
5205 /* This is probably the result of a substitution, by eliminate_regs,
5206 of an equivalent address for a pseudo that was not allocated to a
5207 hard register. Verify that the specified address is valid and
5208 reload it into a register. */
5209 /* Variable `tem' might or might not be used in FIND_REG_INC_NOTE. */
5210 rtx tem ATTRIBUTE_UNUSED = XEXP (x, 0);
5211 register rtx link;
5212 int reloadnum;
5214 /* Since we know we are going to reload this item, don't decrement
5215 for the indirection level.
5217 Note that this is actually conservative: it would be slightly
5218 more efficient to use the value of SPILL_INDIRECT_LEVELS from
5219 reload1.c here. */
5220 /* We can't use ADDR_TYPE (type) here, because we need to
5221 write back the value after reading it, hence we actually
5222 need two registers. */
5223 find_reloads_address (GET_MODE (x), &XEXP (x, 0),
5224 XEXP (XEXP (x, 0), 0), &XEXP (XEXP (x, 0), 0),
5225 opnum, type, ind_levels, insn);
5227 reloadnum = push_reload (x, NULL_RTX, loc, NULL_PTR,
5228 (context ? INDEX_REG_CLASS : BASE_REG_CLASS),
5229 GET_MODE (x), VOIDmode, 0, 0, opnum, type);
5230 rld[reloadnum].inc
5231 = find_inc_amount (PATTERN (this_insn), XEXP (x, 0));
5233 link = FIND_REG_INC_NOTE (this_insn, tem);
5234 if (link != 0)
5235 push_replacement (&XEXP (link, 0), reloadnum, VOIDmode);
5237 return 1;
5239 return 0;
5241 case MEM:
5242 /* This is probably the result of a substitution, by eliminate_regs, of
5243 an equivalent address for a pseudo that was not allocated to a hard
5244 register. Verify that the specified address is valid and reload it
5245 into a register.
5247 Since we know we are going to reload this item, don't decrement for
5248 the indirection level.
5250 Note that this is actually conservative: it would be slightly more
5251 efficient to use the value of SPILL_INDIRECT_LEVELS from
5252 reload1.c here. */
5254 find_reloads_address (GET_MODE (x), loc, XEXP (x, 0), &XEXP (x, 0),
5255 opnum, ADDR_TYPE (type), ind_levels, insn);
5256 push_reload (*loc, NULL_RTX, loc, NULL_PTR,
5257 (context ? INDEX_REG_CLASS : BASE_REG_CLASS),
5258 GET_MODE (x), VOIDmode, 0, 0, opnum, type);
5259 return 1;
5261 case REG:
5263 register int regno = REGNO (x);
5265 if (reg_equiv_constant[regno] != 0)
5267 find_reloads_address_part (reg_equiv_constant[regno], loc,
5268 (context ? INDEX_REG_CLASS : BASE_REG_CLASS),
5269 GET_MODE (x), opnum, type, ind_levels);
5270 return 1;
5273 #if 0 /* This might screw code in reload1.c to delete prior output-reload
5274 that feeds this insn. */
5275 if (reg_equiv_mem[regno] != 0)
5277 push_reload (reg_equiv_mem[regno], NULL_RTX, loc, NULL_PTR,
5278 (context ? INDEX_REG_CLASS : BASE_REG_CLASS),
5279 GET_MODE (x), VOIDmode, 0, 0, opnum, type);
5280 return 1;
5282 #endif
5284 if (reg_equiv_memory_loc[regno]
5285 && (reg_equiv_address[regno] != 0 || num_not_at_initial_offset))
5287 rtx tem = make_memloc (x, regno);
5288 if (reg_equiv_address[regno] != 0
5289 || ! rtx_equal_p (tem, reg_equiv_mem[regno]))
5291 x = tem;
5292 find_reloads_address (GET_MODE (x), &x, XEXP (x, 0),
5293 &XEXP (x, 0), opnum, ADDR_TYPE (type),
5294 ind_levels, insn);
5298 if (reg_renumber[regno] >= 0)
5299 regno = reg_renumber[regno];
5301 if ((regno >= FIRST_PSEUDO_REGISTER
5302 || !(context ? REGNO_OK_FOR_INDEX_P (regno)
5303 : REGNO_MODE_OK_FOR_BASE_P (regno, mode))))
5305 push_reload (x, NULL_RTX, loc, NULL_PTR,
5306 (context ? INDEX_REG_CLASS : BASE_REG_CLASS),
5307 GET_MODE (x), VOIDmode, 0, 0, opnum, type);
5308 return 1;
5311 /* If a register appearing in an address is the subject of a CLOBBER
5312 in this insn, reload it into some other register to be safe.
5313 The CLOBBER is supposed to make the register unavailable
5314 from before this insn to after it. */
5315 if (regno_clobbered_p (regno, this_insn))
5317 push_reload (x, NULL_RTX, loc, NULL_PTR,
5318 (context ? INDEX_REG_CLASS : BASE_REG_CLASS),
5319 GET_MODE (x), VOIDmode, 0, 0, opnum, type);
5320 return 1;
5323 return 0;
5325 case SUBREG:
5326 if (GET_CODE (SUBREG_REG (x)) == REG)
5328 /* If this is a SUBREG of a hard register and the resulting register
5329 is of the wrong class, reload the whole SUBREG. This avoids
5330 needless copies if SUBREG_REG is multi-word. */
5331 if (REGNO (SUBREG_REG (x)) < FIRST_PSEUDO_REGISTER)
5333 int regno = REGNO (SUBREG_REG (x)) + SUBREG_WORD (x);
5335 if (! (context ? REGNO_OK_FOR_INDEX_P (regno)
5336 : REGNO_MODE_OK_FOR_BASE_P (regno, mode)))
5338 push_reload (x, NULL_RTX, loc, NULL_PTR,
5339 (context ? INDEX_REG_CLASS : BASE_REG_CLASS),
5340 GET_MODE (x), VOIDmode, 0, 0, opnum, type);
5341 return 1;
5344 /* If this is a SUBREG of a pseudo-register, and the pseudo-register
5345 is larger than the class size, then reload the whole SUBREG. */
5346 else
5348 enum reg_class class = (context ? INDEX_REG_CLASS
5349 : BASE_REG_CLASS);
5350 if (CLASS_MAX_NREGS (class, GET_MODE (SUBREG_REG (x)))
5351 > reg_class_size[class])
5353 x = find_reloads_subreg_address (x, 0, opnum, type,
5354 ind_levels, insn);
5355 push_reload (x, NULL_RTX, loc, NULL_PTR, class,
5356 GET_MODE (x), VOIDmode, 0, 0, opnum, type);
5357 return 1;
5361 break;
5363 default:
5364 break;
5368 register const char *fmt = GET_RTX_FORMAT (code);
5369 register int i;
5371 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
5373 if (fmt[i] == 'e')
5374 find_reloads_address_1 (mode, XEXP (x, i), context, &XEXP (x, i),
5375 opnum, type, ind_levels, insn);
5379 return 0;
5382 /* X, which is found at *LOC, is a part of an address that needs to be
5383 reloaded into a register of class CLASS. If X is a constant, or if
5384 X is a PLUS that contains a constant, check that the constant is a
5385 legitimate operand and that we are supposed to be able to load
5386 it into the register.
5388 If not, force the constant into memory and reload the MEM instead.
5390 MODE is the mode to use, in case X is an integer constant.
5392 OPNUM and TYPE describe the purpose of any reloads made.
5394 IND_LEVELS says how many levels of indirect addressing this machine
5395 supports. */
5397 static void
5398 find_reloads_address_part (x, loc, class, mode, opnum, type, ind_levels)
5399 rtx x;
5400 rtx *loc;
5401 enum reg_class class;
5402 enum machine_mode mode;
5403 int opnum;
5404 enum reload_type type;
5405 int ind_levels;
5407 if (CONSTANT_P (x)
5408 && (! LEGITIMATE_CONSTANT_P (x)
5409 || PREFERRED_RELOAD_CLASS (x, class) == NO_REGS))
5411 rtx tem;
5413 /* If this is a CONST_INT, it could have been created by a
5414 plus_constant call in eliminate_regs, which means it may be
5415 on the reload_obstack. reload_obstack will be freed later, so
5416 we can't allow such RTL to be put in the constant pool. There
5417 is code in force_const_mem to check for this case, but it doesn't
5418 work because we have already popped off the reload_obstack, so
5419 rtl_obstack == saveable_obstack is true at this point. */
5420 if (GET_CODE (x) == CONST_INT)
5421 tem = x = force_const_mem (mode, GEN_INT (INTVAL (x)));
5422 else
5423 tem = x = force_const_mem (mode, x);
5425 find_reloads_address (mode, &tem, XEXP (tem, 0), &XEXP (tem, 0),
5426 opnum, type, ind_levels, 0);
5429 else if (GET_CODE (x) == PLUS
5430 && CONSTANT_P (XEXP (x, 1))
5431 && (! LEGITIMATE_CONSTANT_P (XEXP (x, 1))
5432 || PREFERRED_RELOAD_CLASS (XEXP (x, 1), class) == NO_REGS))
5434 rtx tem;
5436 /* See comment above. */
5437 if (GET_CODE (XEXP (x, 1)) == CONST_INT)
5438 tem = force_const_mem (GET_MODE (x), GEN_INT (INTVAL (XEXP (x, 1))));
5439 else
5440 tem = force_const_mem (GET_MODE (x), XEXP (x, 1));
5442 x = gen_rtx_PLUS (GET_MODE (x), XEXP (x, 0), tem);
5443 find_reloads_address (mode, &tem, XEXP (tem, 0), &XEXP (tem, 0),
5444 opnum, type, ind_levels, 0);
5447 push_reload (x, NULL_RTX, loc, NULL_PTR, class,
5448 mode, VOIDmode, 0, 0, opnum, type);
5451 /* X, a subreg of a pseudo, is a part of an address that needs to be
5452 reloaded.
5454 If the pseudo is equivalent to a memory location that cannot be directly
5455 addressed, make the necessary address reloads.
5457 If address reloads have been necessary, or if the address is changed
5458 by register elimination, return the rtx of the memory location;
5459 otherwise, return X.
5461 If FORCE_REPLACE is nonzero, unconditionally replace the subreg with the
5462 memory location.
5464 OPNUM and TYPE identify the purpose of the reload.
5466 IND_LEVELS says how many levels of indirect addressing are
5467 supported at this point in the address.
5469 INSN, if nonzero, is the insn in which we do the reload. It is used
5470 to determine where to put USEs for pseudos that we have to replace with
5471 stack slots. */
5473 static rtx
5474 find_reloads_subreg_address (x, force_replace, opnum, type,
5475 ind_levels, insn)
5476 rtx x;
5477 int force_replace;
5478 int opnum;
5479 enum reload_type type;
5480 int ind_levels;
5481 rtx insn;
5483 int regno = REGNO (SUBREG_REG (x));
5485 if (reg_equiv_memory_loc[regno])
5487 /* If the address is not directly addressable, or if the address is not
5488 offsettable, then it must be replaced. */
5489 if (! force_replace
5490 && (reg_equiv_address[regno]
5491 || ! offsettable_memref_p (reg_equiv_mem[regno])))
5492 force_replace = 1;
5494 if (force_replace || num_not_at_initial_offset)
5496 rtx tem = make_memloc (SUBREG_REG (x), regno);
5498 /* If the address changes because of register elimination, then
5499 it must be replaced. */
5500 if (force_replace
5501 || ! rtx_equal_p (tem, reg_equiv_mem[regno]))
5503 int offset = SUBREG_WORD (x) * UNITS_PER_WORD;
5505 if (BYTES_BIG_ENDIAN)
5507 int size;
5509 size = GET_MODE_SIZE (GET_MODE (SUBREG_REG (x)));
5510 offset += MIN (size, UNITS_PER_WORD);
5511 size = GET_MODE_SIZE (GET_MODE (x));
5512 offset -= MIN (size, UNITS_PER_WORD);
5514 XEXP (tem, 0) = plus_constant (XEXP (tem, 0), offset);
5515 PUT_MODE (tem, GET_MODE (x));
5516 find_reloads_address (GET_MODE (tem), &tem, XEXP (tem, 0),
5517 &XEXP (tem, 0), opnum, ADDR_TYPE (type),
5518 ind_levels, insn);
5519 /* If this is not a toplevel operand, find_reloads doesn't see
5520 this substitution. We have to emit a USE of the pseudo so
5521 that delete_output_reload can see it. */
5522 if (replace_reloads && recog_data.operand[opnum] != x)
5523 emit_insn_before (gen_rtx_USE (VOIDmode, SUBREG_REG (x)), insn);
5524 x = tem;
5528 return x;
5531 /* Substitute into the current INSN the registers into which we have reloaded
5532 the things that need reloading. The array `replacements'
5533 says contains the locations of all pointers that must be changed
5534 and says what to replace them with.
5536 Return the rtx that X translates into; usually X, but modified. */
5538 void
5539 subst_reloads ()
5541 register int i;
5543 for (i = 0; i < n_replacements; i++)
5545 register struct replacement *r = &replacements[i];
5546 register rtx reloadreg = rld[r->what].reg_rtx;
5547 if (reloadreg)
5549 /* Encapsulate RELOADREG so its machine mode matches what
5550 used to be there. Note that gen_lowpart_common will
5551 do the wrong thing if RELOADREG is multi-word. RELOADREG
5552 will always be a REG here. */
5553 if (GET_MODE (reloadreg) != r->mode && r->mode != VOIDmode)
5554 reloadreg = gen_rtx_REG (r->mode, REGNO (reloadreg));
5556 /* If we are putting this into a SUBREG and RELOADREG is a
5557 SUBREG, we would be making nested SUBREGs, so we have to fix
5558 this up. Note that r->where == &SUBREG_REG (*r->subreg_loc). */
5560 if (r->subreg_loc != 0 && GET_CODE (reloadreg) == SUBREG)
5562 if (GET_MODE (*r->subreg_loc)
5563 == GET_MODE (SUBREG_REG (reloadreg)))
5564 *r->subreg_loc = SUBREG_REG (reloadreg);
5565 else
5567 *r->where = SUBREG_REG (reloadreg);
5568 SUBREG_WORD (*r->subreg_loc) += SUBREG_WORD (reloadreg);
5571 else
5572 *r->where = reloadreg;
5574 /* If reload got no reg and isn't optional, something's wrong. */
5575 else if (! rld[r->what].optional)
5576 abort ();
5580 /* Make a copy of any replacements being done into X and move those copies
5581 to locations in Y, a copy of X. We only look at the highest level of
5582 the RTL. */
5584 void
5585 copy_replacements (x, y)
5586 rtx x;
5587 rtx y;
5589 int i, j;
5590 enum rtx_code code = GET_CODE (x);
5591 const char *fmt = GET_RTX_FORMAT (code);
5592 struct replacement *r;
5594 /* We can't support X being a SUBREG because we might then need to know its
5595 location if something inside it was replaced. */
5596 if (code == SUBREG)
5597 abort ();
5599 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
5600 if (fmt[i] == 'e')
5601 for (j = 0; j < n_replacements; j++)
5603 if (replacements[j].subreg_loc == &XEXP (x, i))
5605 r = &replacements[n_replacements++];
5606 r->where = replacements[j].where;
5607 r->subreg_loc = &XEXP (y, i);
5608 r->what = replacements[j].what;
5609 r->mode = replacements[j].mode;
5611 else if (replacements[j].where == &XEXP (x, i))
5613 r = &replacements[n_replacements++];
5614 r->where = &XEXP (y, i);
5615 r->subreg_loc = 0;
5616 r->what = replacements[j].what;
5617 r->mode = replacements[j].mode;
5622 /* Change any replacements being done to *X to be done to *Y */
5624 void
5625 move_replacements (x, y)
5626 rtx *x;
5627 rtx *y;
5629 int i;
5631 for (i = 0; i < n_replacements; i++)
5632 if (replacements[i].subreg_loc == x)
5633 replacements[i].subreg_loc = y;
5634 else if (replacements[i].where == x)
5636 replacements[i].where = y;
5637 replacements[i].subreg_loc = 0;
5641 /* If LOC was scheduled to be replaced by something, return the replacement.
5642 Otherwise, return *LOC. */
5645 find_replacement (loc)
5646 rtx *loc;
5648 struct replacement *r;
5650 for (r = &replacements[0]; r < &replacements[n_replacements]; r++)
5652 rtx reloadreg = rld[r->what].reg_rtx;
5654 if (reloadreg && r->where == loc)
5656 if (r->mode != VOIDmode && GET_MODE (reloadreg) != r->mode)
5657 reloadreg = gen_rtx_REG (r->mode, REGNO (reloadreg));
5659 return reloadreg;
5661 else if (reloadreg && r->subreg_loc == loc)
5663 /* RELOADREG must be either a REG or a SUBREG.
5665 ??? Is it actually still ever a SUBREG? If so, why? */
5667 if (GET_CODE (reloadreg) == REG)
5668 return gen_rtx_REG (GET_MODE (*loc),
5669 REGNO (reloadreg) + SUBREG_WORD (*loc));
5670 else if (GET_MODE (reloadreg) == GET_MODE (*loc))
5671 return reloadreg;
5672 else
5673 return gen_rtx_SUBREG (GET_MODE (*loc), SUBREG_REG (reloadreg),
5674 SUBREG_WORD (reloadreg) + SUBREG_WORD (*loc));
5678 /* If *LOC is a PLUS, MINUS, or MULT, see if a replacement is scheduled for
5679 what's inside and make a new rtl if so. */
5680 if (GET_CODE (*loc) == PLUS || GET_CODE (*loc) == MINUS
5681 || GET_CODE (*loc) == MULT)
5683 rtx x = find_replacement (&XEXP (*loc, 0));
5684 rtx y = find_replacement (&XEXP (*loc, 1));
5686 if (x != XEXP (*loc, 0) || y != XEXP (*loc, 1))
5687 return gen_rtx_fmt_ee (GET_CODE (*loc), GET_MODE (*loc), x, y);
5690 return *loc;
5693 /* Return nonzero if register in range [REGNO, ENDREGNO)
5694 appears either explicitly or implicitly in X
5695 other than being stored into (except for earlyclobber operands).
5697 References contained within the substructure at LOC do not count.
5698 LOC may be zero, meaning don't ignore anything.
5700 This is similar to refers_to_regno_p in rtlanal.c except that we
5701 look at equivalences for pseudos that didn't get hard registers. */
5704 refers_to_regno_for_reload_p (regno, endregno, x, loc)
5705 unsigned int regno, endregno;
5706 rtx x;
5707 rtx *loc;
5709 int i;
5710 unsigned int r;
5711 RTX_CODE code;
5712 const char *fmt;
5714 if (x == 0)
5715 return 0;
5717 repeat:
5718 code = GET_CODE (x);
5720 switch (code)
5722 case REG:
5723 r = REGNO (x);
5725 /* If this is a pseudo, a hard register must not have been allocated.
5726 X must therefore either be a constant or be in memory. */
5727 if (r >= FIRST_PSEUDO_REGISTER)
5729 if (reg_equiv_memory_loc[r])
5730 return refers_to_regno_for_reload_p (regno, endregno,
5731 reg_equiv_memory_loc[r],
5732 NULL_PTR);
5734 if (reg_equiv_constant[r])
5735 return 0;
5737 abort ();
5740 return (endregno > r
5741 && regno < r + (r < FIRST_PSEUDO_REGISTER
5742 ? HARD_REGNO_NREGS (r, GET_MODE (x))
5743 : 1));
5745 case SUBREG:
5746 /* If this is a SUBREG of a hard reg, we can see exactly which
5747 registers are being modified. Otherwise, handle normally. */
5748 if (GET_CODE (SUBREG_REG (x)) == REG
5749 && REGNO (SUBREG_REG (x)) < FIRST_PSEUDO_REGISTER)
5751 unsigned int inner_regno = REGNO (SUBREG_REG (x)) + SUBREG_WORD (x);
5752 unsigned int inner_endregno
5753 = inner_regno + (inner_regno < FIRST_PSEUDO_REGISTER
5754 ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
5756 return endregno > inner_regno && regno < inner_endregno;
5758 break;
5760 case CLOBBER:
5761 case SET:
5762 if (&SET_DEST (x) != loc
5763 /* Note setting a SUBREG counts as referring to the REG it is in for
5764 a pseudo but not for hard registers since we can
5765 treat each word individually. */
5766 && ((GET_CODE (SET_DEST (x)) == SUBREG
5767 && loc != &SUBREG_REG (SET_DEST (x))
5768 && GET_CODE (SUBREG_REG (SET_DEST (x))) == REG
5769 && REGNO (SUBREG_REG (SET_DEST (x))) >= FIRST_PSEUDO_REGISTER
5770 && refers_to_regno_for_reload_p (regno, endregno,
5771 SUBREG_REG (SET_DEST (x)),
5772 loc))
5773 /* If the output is an earlyclobber operand, this is
5774 a conflict. */
5775 || ((GET_CODE (SET_DEST (x)) != REG
5776 || earlyclobber_operand_p (SET_DEST (x)))
5777 && refers_to_regno_for_reload_p (regno, endregno,
5778 SET_DEST (x), loc))))
5779 return 1;
5781 if (code == CLOBBER || loc == &SET_SRC (x))
5782 return 0;
5783 x = SET_SRC (x);
5784 goto repeat;
5786 default:
5787 break;
5790 /* X does not match, so try its subexpressions. */
5792 fmt = GET_RTX_FORMAT (code);
5793 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
5795 if (fmt[i] == 'e' && loc != &XEXP (x, i))
5797 if (i == 0)
5799 x = XEXP (x, 0);
5800 goto repeat;
5802 else
5803 if (refers_to_regno_for_reload_p (regno, endregno,
5804 XEXP (x, i), loc))
5805 return 1;
5807 else if (fmt[i] == 'E')
5809 register int j;
5810 for (j = XVECLEN (x, i) - 1; j >=0; j--)
5811 if (loc != &XVECEXP (x, i, j)
5812 && refers_to_regno_for_reload_p (regno, endregno,
5813 XVECEXP (x, i, j), loc))
5814 return 1;
5817 return 0;
5820 /* Nonzero if modifying X will affect IN. If X is a register or a SUBREG,
5821 we check if any register number in X conflicts with the relevant register
5822 numbers. If X is a constant, return 0. If X is a MEM, return 1 iff IN
5823 contains a MEM (we don't bother checking for memory addresses that can't
5824 conflict because we expect this to be a rare case.
5826 This function is similar to reg_overlap_mention_p in rtlanal.c except
5827 that we look at equivalences for pseudos that didn't get hard registers. */
5830 reg_overlap_mentioned_for_reload_p (x, in)
5831 rtx x, in;
5833 int regno, endregno;
5835 /* Overly conservative. */
5836 if (GET_CODE (x) == STRICT_LOW_PART)
5837 x = XEXP (x, 0);
5839 /* If either argument is a constant, then modifying X can not affect IN. */
5840 if (CONSTANT_P (x) || CONSTANT_P (in))
5841 return 0;
5842 else if (GET_CODE (x) == SUBREG)
5844 regno = REGNO (SUBREG_REG (x));
5845 if (regno < FIRST_PSEUDO_REGISTER)
5846 regno += SUBREG_WORD (x);
5848 else if (GET_CODE (x) == REG)
5850 regno = REGNO (x);
5852 /* If this is a pseudo, it must not have been assigned a hard register.
5853 Therefore, it must either be in memory or be a constant. */
5855 if (regno >= FIRST_PSEUDO_REGISTER)
5857 if (reg_equiv_memory_loc[regno])
5858 return refers_to_mem_for_reload_p (in);
5859 else if (reg_equiv_constant[regno])
5860 return 0;
5861 abort ();
5864 else if (GET_CODE (x) == MEM)
5865 return refers_to_mem_for_reload_p (in);
5866 else if (GET_CODE (x) == SCRATCH || GET_CODE (x) == PC
5867 || GET_CODE (x) == CC0)
5868 return reg_mentioned_p (x, in);
5869 else
5870 abort ();
5872 endregno = regno + (regno < FIRST_PSEUDO_REGISTER
5873 ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
5875 return refers_to_regno_for_reload_p (regno, endregno, in, NULL_PTR);
5878 /* Return nonzero if anything in X contains a MEM. Look also for pseudo
5879 registers. */
5882 refers_to_mem_for_reload_p (x)
5883 rtx x;
5885 const char *fmt;
5886 int i;
5888 if (GET_CODE (x) == MEM)
5889 return 1;
5891 if (GET_CODE (x) == REG)
5892 return (REGNO (x) >= FIRST_PSEUDO_REGISTER
5893 && reg_equiv_memory_loc[REGNO (x)]);
5895 fmt = GET_RTX_FORMAT (GET_CODE (x));
5896 for (i = GET_RTX_LENGTH (GET_CODE (x)) - 1; i >= 0; i--)
5897 if (fmt[i] == 'e'
5898 && (GET_CODE (XEXP (x, i)) == MEM
5899 || refers_to_mem_for_reload_p (XEXP (x, i))))
5900 return 1;
5902 return 0;
5905 /* Check the insns before INSN to see if there is a suitable register
5906 containing the same value as GOAL.
5907 If OTHER is -1, look for a register in class CLASS.
5908 Otherwise, just see if register number OTHER shares GOAL's value.
5910 Return an rtx for the register found, or zero if none is found.
5912 If RELOAD_REG_P is (short *)1,
5913 we reject any hard reg that appears in reload_reg_rtx
5914 because such a hard reg is also needed coming into this insn.
5916 If RELOAD_REG_P is any other nonzero value,
5917 it is a vector indexed by hard reg number
5918 and we reject any hard reg whose element in the vector is nonnegative
5919 as well as any that appears in reload_reg_rtx.
5921 If GOAL is zero, then GOALREG is a register number; we look
5922 for an equivalent for that register.
5924 MODE is the machine mode of the value we want an equivalence for.
5925 If GOAL is nonzero and not VOIDmode, then it must have mode MODE.
5927 This function is used by jump.c as well as in the reload pass.
5929 If GOAL is the sum of the stack pointer and a constant, we treat it
5930 as if it were a constant except that sp is required to be unchanging. */
5933 find_equiv_reg (goal, insn, class, other, reload_reg_p, goalreg, mode)
5934 register rtx goal;
5935 rtx insn;
5936 enum reg_class class;
5937 register int other;
5938 short *reload_reg_p;
5939 int goalreg;
5940 enum machine_mode mode;
5942 register rtx p = insn;
5943 rtx goaltry, valtry, value, where;
5944 register rtx pat;
5945 register int regno = -1;
5946 int valueno;
5947 int goal_mem = 0;
5948 int goal_const = 0;
5949 int goal_mem_addr_varies = 0;
5950 int need_stable_sp = 0;
5951 int nregs;
5952 int valuenregs;
5954 if (goal == 0)
5955 regno = goalreg;
5956 else if (GET_CODE (goal) == REG)
5957 regno = REGNO (goal);
5958 else if (GET_CODE (goal) == MEM)
5960 enum rtx_code code = GET_CODE (XEXP (goal, 0));
5961 if (MEM_VOLATILE_P (goal))
5962 return 0;
5963 if (flag_float_store && GET_MODE_CLASS (GET_MODE (goal)) == MODE_FLOAT)
5964 return 0;
5965 /* An address with side effects must be reexecuted. */
5966 switch (code)
5968 case POST_INC:
5969 case PRE_INC:
5970 case POST_DEC:
5971 case PRE_DEC:
5972 return 0;
5973 default:
5974 break;
5976 goal_mem = 1;
5978 else if (CONSTANT_P (goal))
5979 goal_const = 1;
5980 else if (GET_CODE (goal) == PLUS
5981 && XEXP (goal, 0) == stack_pointer_rtx
5982 && CONSTANT_P (XEXP (goal, 1)))
5983 goal_const = need_stable_sp = 1;
5984 else if (GET_CODE (goal) == PLUS
5985 && XEXP (goal, 0) == frame_pointer_rtx
5986 && CONSTANT_P (XEXP (goal, 1)))
5987 goal_const = 1;
5988 else
5989 return 0;
5991 /* Scan insns back from INSN, looking for one that copies
5992 a value into or out of GOAL.
5993 Stop and give up if we reach a label. */
5995 while (1)
5997 p = PREV_INSN (p);
5998 if (p == 0 || GET_CODE (p) == CODE_LABEL)
5999 return 0;
6001 if (GET_CODE (p) == INSN
6002 /* If we don't want spill regs ... */
6003 && (! (reload_reg_p != 0
6004 && reload_reg_p != (short *) (HOST_WIDE_INT) 1)
6005 /* ... then ignore insns introduced by reload; they aren't
6006 useful and can cause results in reload_as_needed to be
6007 different from what they were when calculating the need for
6008 spills. If we notice an input-reload insn here, we will
6009 reject it below, but it might hide a usable equivalent.
6010 That makes bad code. It may even abort: perhaps no reg was
6011 spilled for this insn because it was assumed we would find
6012 that equivalent. */
6013 || INSN_UID (p) < reload_first_uid))
6015 rtx tem;
6016 pat = single_set (p);
6018 /* First check for something that sets some reg equal to GOAL. */
6019 if (pat != 0
6020 && ((regno >= 0
6021 && true_regnum (SET_SRC (pat)) == regno
6022 && (valueno = true_regnum (valtry = SET_DEST (pat))) >= 0)
6024 (regno >= 0
6025 && true_regnum (SET_DEST (pat)) == regno
6026 && (valueno = true_regnum (valtry = SET_SRC (pat))) >= 0)
6028 (goal_const && rtx_equal_p (SET_SRC (pat), goal)
6029 /* When looking for stack pointer + const,
6030 make sure we don't use a stack adjust. */
6031 && !reg_overlap_mentioned_for_reload_p (SET_DEST (pat), goal)
6032 && (valueno = true_regnum (valtry = SET_DEST (pat))) >= 0)
6033 || (goal_mem
6034 && (valueno = true_regnum (valtry = SET_DEST (pat))) >= 0
6035 && rtx_renumbered_equal_p (goal, SET_SRC (pat)))
6036 || (goal_mem
6037 && (valueno = true_regnum (valtry = SET_SRC (pat))) >= 0
6038 && rtx_renumbered_equal_p (goal, SET_DEST (pat)))
6039 /* If we are looking for a constant,
6040 and something equivalent to that constant was copied
6041 into a reg, we can use that reg. */
6042 || (goal_const && REG_NOTES (p) != 0
6043 && (tem = find_reg_note (p, REG_EQUIV, NULL_RTX))
6044 && ((rtx_equal_p (XEXP (tem, 0), goal)
6045 && (valueno
6046 = true_regnum (valtry = SET_DEST (pat))) >= 0)
6047 || (GET_CODE (SET_DEST (pat)) == REG
6048 && GET_CODE (XEXP (tem, 0)) == CONST_DOUBLE
6049 && (GET_MODE_CLASS (GET_MODE (XEXP (tem, 0)))
6050 == MODE_FLOAT)
6051 && GET_CODE (goal) == CONST_INT
6052 && 0 != (goaltry
6053 = operand_subword (XEXP (tem, 0), 0, 0,
6054 VOIDmode))
6055 && rtx_equal_p (goal, goaltry)
6056 && (valtry
6057 = operand_subword (SET_DEST (pat), 0, 0,
6058 VOIDmode))
6059 && (valueno = true_regnum (valtry)) >= 0)))
6060 || (goal_const && (tem = find_reg_note (p, REG_EQUIV,
6061 NULL_RTX))
6062 && GET_CODE (SET_DEST (pat)) == REG
6063 && GET_CODE (XEXP (tem, 0)) == CONST_DOUBLE
6064 && (GET_MODE_CLASS (GET_MODE (XEXP (tem, 0)))
6065 == MODE_FLOAT)
6066 && GET_CODE (goal) == CONST_INT
6067 && 0 != (goaltry = operand_subword (XEXP (tem, 0), 1, 0,
6068 VOIDmode))
6069 && rtx_equal_p (goal, goaltry)
6070 && (valtry
6071 = operand_subword (SET_DEST (pat), 1, 0, VOIDmode))
6072 && (valueno = true_regnum (valtry)) >= 0)))
6073 if (other >= 0
6074 ? valueno == other
6075 : ((unsigned) valueno < FIRST_PSEUDO_REGISTER
6076 && TEST_HARD_REG_BIT (reg_class_contents[(int) class],
6077 valueno)))
6079 value = valtry;
6080 where = p;
6081 break;
6086 /* We found a previous insn copying GOAL into a suitable other reg VALUE
6087 (or copying VALUE into GOAL, if GOAL is also a register).
6088 Now verify that VALUE is really valid. */
6090 /* VALUENO is the register number of VALUE; a hard register. */
6092 /* Don't try to re-use something that is killed in this insn. We want
6093 to be able to trust REG_UNUSED notes. */
6094 if (REG_NOTES (where) != 0 && find_reg_note (where, REG_UNUSED, value))
6095 return 0;
6097 /* If we propose to get the value from the stack pointer or if GOAL is
6098 a MEM based on the stack pointer, we need a stable SP. */
6099 if (valueno == STACK_POINTER_REGNUM || regno == STACK_POINTER_REGNUM
6100 || (goal_mem && reg_overlap_mentioned_for_reload_p (stack_pointer_rtx,
6101 goal)))
6102 need_stable_sp = 1;
6104 /* Reject VALUE if the copy-insn moved the wrong sort of datum. */
6105 if (GET_MODE (value) != mode)
6106 return 0;
6108 /* Reject VALUE if it was loaded from GOAL
6109 and is also a register that appears in the address of GOAL. */
6111 if (goal_mem && value == SET_DEST (single_set (where))
6112 && refers_to_regno_for_reload_p (valueno,
6113 (valueno
6114 + HARD_REGNO_NREGS (valueno, mode)),
6115 goal, NULL_PTR))
6116 return 0;
6118 /* Reject registers that overlap GOAL. */
6120 if (!goal_mem && !goal_const
6121 && regno + (int) HARD_REGNO_NREGS (regno, mode) > valueno
6122 && regno < valueno + (int) HARD_REGNO_NREGS (valueno, mode))
6123 return 0;
6125 nregs = HARD_REGNO_NREGS (regno, mode);
6126 valuenregs = HARD_REGNO_NREGS (valueno, mode);
6128 /* Reject VALUE if it is one of the regs reserved for reloads.
6129 Reload1 knows how to reuse them anyway, and it would get
6130 confused if we allocated one without its knowledge.
6131 (Now that insns introduced by reload are ignored above,
6132 this case shouldn't happen, but I'm not positive.) */
6134 if (reload_reg_p != 0 && reload_reg_p != (short *) (HOST_WIDE_INT) 1)
6136 int i;
6137 for (i = 0; i < valuenregs; ++i)
6138 if (reload_reg_p[valueno + i] >= 0)
6139 return 0;
6142 /* Reject VALUE if it is a register being used for an input reload
6143 even if it is not one of those reserved. */
6145 if (reload_reg_p != 0)
6147 int i;
6148 for (i = 0; i < n_reloads; i++)
6149 if (rld[i].reg_rtx != 0 && rld[i].in)
6151 int regno1 = REGNO (rld[i].reg_rtx);
6152 int nregs1 = HARD_REGNO_NREGS (regno1,
6153 GET_MODE (rld[i].reg_rtx));
6154 if (regno1 < valueno + valuenregs
6155 && regno1 + nregs1 > valueno)
6156 return 0;
6160 if (goal_mem)
6161 /* We must treat frame pointer as varying here,
6162 since it can vary--in a nonlocal goto as generated by expand_goto. */
6163 goal_mem_addr_varies = !CONSTANT_ADDRESS_P (XEXP (goal, 0));
6165 /* Now verify that the values of GOAL and VALUE remain unaltered
6166 until INSN is reached. */
6168 p = insn;
6169 while (1)
6171 p = PREV_INSN (p);
6172 if (p == where)
6173 return value;
6175 /* Don't trust the conversion past a function call
6176 if either of the two is in a call-clobbered register, or memory. */
6177 if (GET_CODE (p) == CALL_INSN)
6179 int i;
6181 if (goal_mem || need_stable_sp)
6182 return 0;
6184 if (regno >= 0 && regno < FIRST_PSEUDO_REGISTER)
6185 for (i = 0; i < nregs; ++i)
6186 if (call_used_regs[regno + i])
6187 return 0;
6189 if (valueno >= 0 && valueno < FIRST_PSEUDO_REGISTER)
6190 for (i = 0; i < valuenregs; ++i)
6191 if (call_used_regs[valueno + i])
6192 return 0;
6195 #ifdef NON_SAVING_SETJMP
6196 if (NON_SAVING_SETJMP && GET_CODE (p) == NOTE
6197 && NOTE_LINE_NUMBER (p) == NOTE_INSN_SETJMP)
6198 return 0;
6199 #endif
6201 if (GET_RTX_CLASS (GET_CODE (p)) == 'i')
6203 pat = PATTERN (p);
6205 /* Watch out for unspec_volatile, and volatile asms. */
6206 if (volatile_insn_p (pat))
6207 return 0;
6209 /* If this insn P stores in either GOAL or VALUE, return 0.
6210 If GOAL is a memory ref and this insn writes memory, return 0.
6211 If GOAL is a memory ref and its address is not constant,
6212 and this insn P changes a register used in GOAL, return 0. */
6214 if (GET_CODE (pat) == COND_EXEC)
6215 pat = COND_EXEC_CODE (pat);
6216 if (GET_CODE (pat) == SET || GET_CODE (pat) == CLOBBER)
6218 register rtx dest = SET_DEST (pat);
6219 while (GET_CODE (dest) == SUBREG
6220 || GET_CODE (dest) == ZERO_EXTRACT
6221 || GET_CODE (dest) == SIGN_EXTRACT
6222 || GET_CODE (dest) == STRICT_LOW_PART)
6223 dest = XEXP (dest, 0);
6224 if (GET_CODE (dest) == REG)
6226 register int xregno = REGNO (dest);
6227 int xnregs;
6228 if (REGNO (dest) < FIRST_PSEUDO_REGISTER)
6229 xnregs = HARD_REGNO_NREGS (xregno, GET_MODE (dest));
6230 else
6231 xnregs = 1;
6232 if (xregno < regno + nregs && xregno + xnregs > regno)
6233 return 0;
6234 if (xregno < valueno + valuenregs
6235 && xregno + xnregs > valueno)
6236 return 0;
6237 if (goal_mem_addr_varies
6238 && reg_overlap_mentioned_for_reload_p (dest, goal))
6239 return 0;
6240 if (xregno == STACK_POINTER_REGNUM && need_stable_sp)
6241 return 0;
6243 else if (goal_mem && GET_CODE (dest) == MEM
6244 && ! push_operand (dest, GET_MODE (dest)))
6245 return 0;
6246 else if (GET_CODE (dest) == MEM && regno >= FIRST_PSEUDO_REGISTER
6247 && reg_equiv_memory_loc[regno] != 0)
6248 return 0;
6249 else if (need_stable_sp && push_operand (dest, GET_MODE (dest)))
6250 return 0;
6252 else if (GET_CODE (pat) == PARALLEL)
6254 register int i;
6255 for (i = XVECLEN (pat, 0) - 1; i >= 0; i--)
6257 register rtx v1 = XVECEXP (pat, 0, i);
6258 if (GET_CODE (v1) == COND_EXEC)
6259 v1 = COND_EXEC_CODE (v1);
6260 if (GET_CODE (v1) == SET || GET_CODE (v1) == CLOBBER)
6262 register rtx dest = SET_DEST (v1);
6263 while (GET_CODE (dest) == SUBREG
6264 || GET_CODE (dest) == ZERO_EXTRACT
6265 || GET_CODE (dest) == SIGN_EXTRACT
6266 || GET_CODE (dest) == STRICT_LOW_PART)
6267 dest = XEXP (dest, 0);
6268 if (GET_CODE (dest) == REG)
6270 register int xregno = REGNO (dest);
6271 int xnregs;
6272 if (REGNO (dest) < FIRST_PSEUDO_REGISTER)
6273 xnregs = HARD_REGNO_NREGS (xregno, GET_MODE (dest));
6274 else
6275 xnregs = 1;
6276 if (xregno < regno + nregs
6277 && xregno + xnregs > regno)
6278 return 0;
6279 if (xregno < valueno + valuenregs
6280 && xregno + xnregs > valueno)
6281 return 0;
6282 if (goal_mem_addr_varies
6283 && reg_overlap_mentioned_for_reload_p (dest,
6284 goal))
6285 return 0;
6286 if (xregno == STACK_POINTER_REGNUM && need_stable_sp)
6287 return 0;
6289 else if (goal_mem && GET_CODE (dest) == MEM
6290 && ! push_operand (dest, GET_MODE (dest)))
6291 return 0;
6292 else if (GET_CODE (dest) == MEM && regno >= FIRST_PSEUDO_REGISTER
6293 && reg_equiv_memory_loc[regno] != 0)
6294 return 0;
6295 else if (need_stable_sp
6296 && push_operand (dest, GET_MODE (dest)))
6297 return 0;
6302 if (GET_CODE (p) == CALL_INSN && CALL_INSN_FUNCTION_USAGE (p))
6304 rtx link;
6306 for (link = CALL_INSN_FUNCTION_USAGE (p); XEXP (link, 1) != 0;
6307 link = XEXP (link, 1))
6309 pat = XEXP (link, 0);
6310 if (GET_CODE (pat) == CLOBBER)
6312 register rtx dest = SET_DEST (pat);
6314 if (GET_CODE (dest) == REG)
6316 register int xregno = REGNO (dest);
6317 int xnregs
6318 = HARD_REGNO_NREGS (xregno, GET_MODE (dest));
6320 if (xregno < regno + nregs
6321 && xregno + xnregs > regno)
6322 return 0;
6323 else if (xregno < valueno + valuenregs
6324 && xregno + xnregs > valueno)
6325 return 0;
6326 else if (goal_mem_addr_varies
6327 && reg_overlap_mentioned_for_reload_p (dest,
6328 goal))
6329 return 0;
6332 else if (goal_mem && GET_CODE (dest) == MEM
6333 && ! push_operand (dest, GET_MODE (dest)))
6334 return 0;
6335 else if (need_stable_sp
6336 && push_operand (dest, GET_MODE (dest)))
6337 return 0;
6342 #ifdef AUTO_INC_DEC
6343 /* If this insn auto-increments or auto-decrements
6344 either regno or valueno, return 0 now.
6345 If GOAL is a memory ref and its address is not constant,
6346 and this insn P increments a register used in GOAL, return 0. */
6348 register rtx link;
6350 for (link = REG_NOTES (p); link; link = XEXP (link, 1))
6351 if (REG_NOTE_KIND (link) == REG_INC
6352 && GET_CODE (XEXP (link, 0)) == REG)
6354 register int incno = REGNO (XEXP (link, 0));
6355 if (incno < regno + nregs && incno >= regno)
6356 return 0;
6357 if (incno < valueno + valuenregs && incno >= valueno)
6358 return 0;
6359 if (goal_mem_addr_varies
6360 && reg_overlap_mentioned_for_reload_p (XEXP (link, 0),
6361 goal))
6362 return 0;
6365 #endif
6370 /* Find a place where INCED appears in an increment or decrement operator
6371 within X, and return the amount INCED is incremented or decremented by.
6372 The value is always positive. */
6374 static int
6375 find_inc_amount (x, inced)
6376 rtx x, inced;
6378 register enum rtx_code code = GET_CODE (x);
6379 register const char *fmt;
6380 register int i;
6382 if (code == MEM)
6384 register rtx addr = XEXP (x, 0);
6385 if ((GET_CODE (addr) == PRE_DEC
6386 || GET_CODE (addr) == POST_DEC
6387 || GET_CODE (addr) == PRE_INC
6388 || GET_CODE (addr) == POST_INC)
6389 && XEXP (addr, 0) == inced)
6390 return GET_MODE_SIZE (GET_MODE (x));
6393 fmt = GET_RTX_FORMAT (code);
6394 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
6396 if (fmt[i] == 'e')
6398 register int tem = find_inc_amount (XEXP (x, i), inced);
6399 if (tem != 0)
6400 return tem;
6402 if (fmt[i] == 'E')
6404 register int j;
6405 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
6407 register int tem = find_inc_amount (XVECEXP (x, i, j), inced);
6408 if (tem != 0)
6409 return tem;
6414 return 0;
6417 /* Return 1 if register REGNO is the subject of a clobber in insn INSN. */
6420 regno_clobbered_p (regno, insn)
6421 unsigned int regno;
6422 rtx insn;
6424 if (GET_CODE (PATTERN (insn)) == CLOBBER
6425 && GET_CODE (XEXP (PATTERN (insn), 0)) == REG)
6426 return REGNO (XEXP (PATTERN (insn), 0)) == regno;
6428 if (GET_CODE (PATTERN (insn)) == PARALLEL)
6430 int i = XVECLEN (PATTERN (insn), 0) - 1;
6432 for (; i >= 0; i--)
6434 rtx elt = XVECEXP (PATTERN (insn), 0, i);
6435 if (GET_CODE (elt) == CLOBBER && GET_CODE (XEXP (elt, 0)) == REG
6436 && REGNO (XEXP (elt, 0)) == regno)
6437 return 1;
6441 return 0;
6444 static const char *reload_when_needed_name[] =
6446 "RELOAD_FOR_INPUT",
6447 "RELOAD_FOR_OUTPUT",
6448 "RELOAD_FOR_INSN",
6449 "RELOAD_FOR_INPUT_ADDRESS",
6450 "RELOAD_FOR_INPADDR_ADDRESS",
6451 "RELOAD_FOR_OUTPUT_ADDRESS",
6452 "RELOAD_FOR_OUTADDR_ADDRESS",
6453 "RELOAD_FOR_OPERAND_ADDRESS",
6454 "RELOAD_FOR_OPADDR_ADDR",
6455 "RELOAD_OTHER",
6456 "RELOAD_FOR_OTHER_ADDRESS"
6459 static const char * const reg_class_names[] = REG_CLASS_NAMES;
6461 /* These functions are used to print the variables set by 'find_reloads' */
6463 void
6464 debug_reload_to_stream (f)
6465 FILE *f;
6467 int r;
6468 const char *prefix;
6470 if (! f)
6471 f = stderr;
6472 for (r = 0; r < n_reloads; r++)
6474 fprintf (f, "Reload %d: ", r);
6476 if (rld[r].in != 0)
6478 fprintf (f, "reload_in (%s) = ",
6479 GET_MODE_NAME (rld[r].inmode));
6480 print_inline_rtx (f, rld[r].in, 24);
6481 fprintf (f, "\n\t");
6484 if (rld[r].out != 0)
6486 fprintf (f, "reload_out (%s) = ",
6487 GET_MODE_NAME (rld[r].outmode));
6488 print_inline_rtx (f, rld[r].out, 24);
6489 fprintf (f, "\n\t");
6492 fprintf (f, "%s, ", reg_class_names[(int) rld[r].class]);
6494 fprintf (f, "%s (opnum = %d)",
6495 reload_when_needed_name[(int) rld[r].when_needed],
6496 rld[r].opnum);
6498 if (rld[r].optional)
6499 fprintf (f, ", optional");
6501 if (rld[r].nongroup)
6502 fprintf (stderr, ", nongroup");
6504 if (rld[r].inc != 0)
6505 fprintf (f, ", inc by %d", rld[r].inc);
6507 if (rld[r].nocombine)
6508 fprintf (f, ", can't combine");
6510 if (rld[r].secondary_p)
6511 fprintf (f, ", secondary_reload_p");
6513 if (rld[r].in_reg != 0)
6515 fprintf (f, "\n\treload_in_reg: ");
6516 print_inline_rtx (f, rld[r].in_reg, 24);
6519 if (rld[r].out_reg != 0)
6521 fprintf (f, "\n\treload_out_reg: ");
6522 print_inline_rtx (f, rld[r].out_reg, 24);
6525 if (rld[r].reg_rtx != 0)
6527 fprintf (f, "\n\treload_reg_rtx: ");
6528 print_inline_rtx (f, rld[r].reg_rtx, 24);
6531 prefix = "\n\t";
6532 if (rld[r].secondary_in_reload != -1)
6534 fprintf (f, "%ssecondary_in_reload = %d",
6535 prefix, rld[r].secondary_in_reload);
6536 prefix = ", ";
6539 if (rld[r].secondary_out_reload != -1)
6540 fprintf (f, "%ssecondary_out_reload = %d\n",
6541 prefix, rld[r].secondary_out_reload);
6543 prefix = "\n\t";
6544 if (rld[r].secondary_in_icode != CODE_FOR_nothing)
6546 fprintf (stderr, "%ssecondary_in_icode = %s", prefix,
6547 insn_data[rld[r].secondary_in_icode].name);
6548 prefix = ", ";
6551 if (rld[r].secondary_out_icode != CODE_FOR_nothing)
6552 fprintf (stderr, "%ssecondary_out_icode = %s", prefix,
6553 insn_data[rld[r].secondary_out_icode].name);
6555 fprintf (f, "\n");
6559 void
6560 debug_reload ()
6562 debug_reload_to_stream (stderr);