OSDN Git Service

* basic-block.h (rtl_bb_info): Break out head_, end_,
[pf3gnuchains/gcc-fork.git] / gcc / reload1.c
1 /* Reload pseudo regs into hard regs for insns that require hard regs.
2    Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING.  If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.  */
21
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26
27 #include "machmode.h"
28 #include "hard-reg-set.h"
29 #include "rtl.h"
30 #include "tm_p.h"
31 #include "obstack.h"
32 #include "insn-config.h"
33 #include "flags.h"
34 #include "function.h"
35 #include "expr.h"
36 #include "optabs.h"
37 #include "regs.h"
38 #include "basic-block.h"
39 #include "reload.h"
40 #include "recog.h"
41 #include "output.h"
42 #include "real.h"
43 #include "toplev.h"
44 #include "except.h"
45 #include "tree.h"
46
47 /* This file contains the reload pass of the compiler, which is
48    run after register allocation has been done.  It checks that
49    each insn is valid (operands required to be in registers really
50    are in registers of the proper class) and fixes up invalid ones
51    by copying values temporarily into registers for the insns
52    that need them.
53
54    The results of register allocation are described by the vector
55    reg_renumber; the insns still contain pseudo regs, but reg_renumber
56    can be used to find which hard reg, if any, a pseudo reg is in.
57
58    The technique we always use is to free up a few hard regs that are
59    called ``reload regs'', and for each place where a pseudo reg
60    must be in a hard reg, copy it temporarily into one of the reload regs.
61
62    Reload regs are allocated locally for every instruction that needs
63    reloads.  When there are pseudos which are allocated to a register that
64    has been chosen as a reload reg, such pseudos must be ``spilled''.
65    This means that they go to other hard regs, or to stack slots if no other
66    available hard regs can be found.  Spilling can invalidate more
67    insns, requiring additional need for reloads, so we must keep checking
68    until the process stabilizes.
69
70    For machines with different classes of registers, we must keep track
71    of the register class needed for each reload, and make sure that
72    we allocate enough reload registers of each class.
73
74    The file reload.c contains the code that checks one insn for
75    validity and reports the reloads that it needs.  This file
76    is in charge of scanning the entire rtl code, accumulating the
77    reload needs, spilling, assigning reload registers to use for
78    fixing up each insn, and generating the new insns to copy values
79    into the reload registers.  */
80 \f
81 /* During reload_as_needed, element N contains a REG rtx for the hard reg
82    into which reg N has been reloaded (perhaps for a previous insn).  */
83 static rtx *reg_last_reload_reg;
84
85 /* Elt N nonzero if reg_last_reload_reg[N] has been set in this insn
86    for an output reload that stores into reg N.  */
87 static char *reg_has_output_reload;
88
89 /* Indicates which hard regs are reload-registers for an output reload
90    in the current insn.  */
91 static HARD_REG_SET reg_is_output_reload;
92
93 /* Element N is the constant value to which pseudo reg N is equivalent,
94    or zero if pseudo reg N is not equivalent to a constant.
95    find_reloads looks at this in order to replace pseudo reg N
96    with the constant it stands for.  */
97 rtx *reg_equiv_constant;
98
99 /* Element N is a memory location to which pseudo reg N is equivalent,
100    prior to any register elimination (such as frame pointer to stack
101    pointer).  Depending on whether or not it is a valid address, this value
102    is transferred to either reg_equiv_address or reg_equiv_mem.  */
103 rtx *reg_equiv_memory_loc;
104
105 /* We allocate reg_equiv_memory_loc inside a varray so that the garbage
106    collector can keep track of what is inside.  */
107 varray_type reg_equiv_memory_loc_varray;
108
109 /* Element N is the address of stack slot to which pseudo reg N is equivalent.
110    This is used when the address is not valid as a memory address
111    (because its displacement is too big for the machine.)  */
112 rtx *reg_equiv_address;
113
114 /* Element N is the memory slot to which pseudo reg N is equivalent,
115    or zero if pseudo reg N is not equivalent to a memory slot.  */
116 rtx *reg_equiv_mem;
117
118 /* Widest width in which each pseudo reg is referred to (via subreg).  */
119 static unsigned int *reg_max_ref_width;
120
121 /* Element N is the list of insns that initialized reg N from its equivalent
122    constant or memory slot.  */
123 rtx *reg_equiv_init;
124 int reg_equiv_init_size;
125
126 /* Vector to remember old contents of reg_renumber before spilling.  */
127 static short *reg_old_renumber;
128
129 /* During reload_as_needed, element N contains the last pseudo regno reloaded
130    into hard register N.  If that pseudo reg occupied more than one register,
131    reg_reloaded_contents points to that pseudo for each spill register in
132    use; all of these must remain set for an inheritance to occur.  */
133 static int reg_reloaded_contents[FIRST_PSEUDO_REGISTER];
134
135 /* During reload_as_needed, element N contains the insn for which
136    hard register N was last used.   Its contents are significant only
137    when reg_reloaded_valid is set for this register.  */
138 static rtx reg_reloaded_insn[FIRST_PSEUDO_REGISTER];
139
140 /* Indicate if reg_reloaded_insn / reg_reloaded_contents is valid.  */
141 static HARD_REG_SET reg_reloaded_valid;
142 /* Indicate if the register was dead at the end of the reload.
143    This is only valid if reg_reloaded_contents is set and valid.  */
144 static HARD_REG_SET reg_reloaded_dead;
145
146 /* Indicate whether the register's current value is one that is not
147    safe to retain across a call, even for registers that are normally
148    call-saved.  */
149 static HARD_REG_SET reg_reloaded_call_part_clobbered;
150
151 /* Number of spill-regs so far; number of valid elements of spill_regs.  */
152 static int n_spills;
153
154 /* In parallel with spill_regs, contains REG rtx's for those regs.
155    Holds the last rtx used for any given reg, or 0 if it has never
156    been used for spilling yet.  This rtx is reused, provided it has
157    the proper mode.  */
158 static rtx spill_reg_rtx[FIRST_PSEUDO_REGISTER];
159
160 /* In parallel with spill_regs, contains nonzero for a spill reg
161    that was stored after the last time it was used.
162    The precise value is the insn generated to do the store.  */
163 static rtx spill_reg_store[FIRST_PSEUDO_REGISTER];
164
165 /* This is the register that was stored with spill_reg_store.  This is a
166    copy of reload_out / reload_out_reg when the value was stored; if
167    reload_out is a MEM, spill_reg_stored_to will be set to reload_out_reg.  */
168 static rtx spill_reg_stored_to[FIRST_PSEUDO_REGISTER];
169
170 /* This table is the inverse mapping of spill_regs:
171    indexed by hard reg number,
172    it contains the position of that reg in spill_regs,
173    or -1 for something that is not in spill_regs.
174
175    ?!?  This is no longer accurate.  */
176 static short spill_reg_order[FIRST_PSEUDO_REGISTER];
177
178 /* This reg set indicates registers that can't be used as spill registers for
179    the currently processed insn.  These are the hard registers which are live
180    during the insn, but not allocated to pseudos, as well as fixed
181    registers.  */
182 static HARD_REG_SET bad_spill_regs;
183
184 /* These are the hard registers that can't be used as spill register for any
185    insn.  This includes registers used for user variables and registers that
186    we can't eliminate.  A register that appears in this set also can't be used
187    to retry register allocation.  */
188 static HARD_REG_SET bad_spill_regs_global;
189
190 /* Describes order of use of registers for reloading
191    of spilled pseudo-registers.  `n_spills' is the number of
192    elements that are actually valid; new ones are added at the end.
193
194    Both spill_regs and spill_reg_order are used on two occasions:
195    once during find_reload_regs, where they keep track of the spill registers
196    for a single insn, but also during reload_as_needed where they show all
197    the registers ever used by reload.  For the latter case, the information
198    is calculated during finish_spills.  */
199 static short spill_regs[FIRST_PSEUDO_REGISTER];
200
201 /* This vector of reg sets indicates, for each pseudo, which hard registers
202    may not be used for retrying global allocation because the register was
203    formerly spilled from one of them.  If we allowed reallocating a pseudo to
204    a register that it was already allocated to, reload might not
205    terminate.  */
206 static HARD_REG_SET *pseudo_previous_regs;
207
208 /* This vector of reg sets indicates, for each pseudo, which hard
209    registers may not be used for retrying global allocation because they
210    are used as spill registers during one of the insns in which the
211    pseudo is live.  */
212 static HARD_REG_SET *pseudo_forbidden_regs;
213
214 /* All hard regs that have been used as spill registers for any insn are
215    marked in this set.  */
216 static HARD_REG_SET used_spill_regs;
217
218 /* Index of last register assigned as a spill register.  We allocate in
219    a round-robin fashion.  */
220 static int last_spill_reg;
221
222 /* Nonzero if indirect addressing is supported on the machine; this means
223    that spilling (REG n) does not require reloading it into a register in
224    order to do (MEM (REG n)) or (MEM (PLUS (REG n) (CONST_INT c))).  The
225    value indicates the level of indirect addressing supported, e.g., two
226    means that (MEM (MEM (REG n))) is also valid if (REG n) does not get
227    a hard register.  */
228 static char spill_indirect_levels;
229
230 /* Nonzero if indirect addressing is supported when the innermost MEM is
231    of the form (MEM (SYMBOL_REF sym)).  It is assumed that the level to
232    which these are valid is the same as spill_indirect_levels, above.  */
233 char indirect_symref_ok;
234
235 /* Nonzero if an address (plus (reg frame_pointer) (reg ...)) is valid.  */
236 char double_reg_address_ok;
237
238 /* Record the stack slot for each spilled hard register.  */
239 static rtx spill_stack_slot[FIRST_PSEUDO_REGISTER];
240
241 /* Width allocated so far for that stack slot.  */
242 static unsigned int spill_stack_slot_width[FIRST_PSEUDO_REGISTER];
243
244 /* Record which pseudos needed to be spilled.  */
245 static regset_head spilled_pseudos;
246
247 /* Used for communication between order_regs_for_reload and count_pseudo.
248    Used to avoid counting one pseudo twice.  */
249 static regset_head pseudos_counted;
250
251 /* First uid used by insns created by reload in this function.
252    Used in find_equiv_reg.  */
253 int reload_first_uid;
254
255 /* Flag set by local-alloc or global-alloc if anything is live in
256    a call-clobbered reg across calls.  */
257 int caller_save_needed;
258
259 /* Set to 1 while reload_as_needed is operating.
260    Required by some machines to handle any generated moves differently.  */
261 int reload_in_progress = 0;
262
263 /* These arrays record the insn_code of insns that may be needed to
264    perform input and output reloads of special objects.  They provide a
265    place to pass a scratch register.  */
266 enum insn_code reload_in_optab[NUM_MACHINE_MODES];
267 enum insn_code reload_out_optab[NUM_MACHINE_MODES];
268
269 /* This obstack is used for allocation of rtl during register elimination.
270    The allocated storage can be freed once find_reloads has processed the
271    insn.  */
272 static struct obstack reload_obstack;
273
274 /* Points to the beginning of the reload_obstack.  All insn_chain structures
275    are allocated first.  */
276 static char *reload_startobj;
277
278 /* The point after all insn_chain structures.  Used to quickly deallocate
279    memory allocated in copy_reloads during calculate_needs_all_insns.  */
280 static char *reload_firstobj;
281
282 /* This points before all local rtl generated by register elimination.
283    Used to quickly free all memory after processing one insn.  */
284 static char *reload_insn_firstobj;
285
286 /* List of insn_chain instructions, one for every insn that reload needs to
287    examine.  */
288 struct insn_chain *reload_insn_chain;
289
290 /* List of all insns needing reloads.  */
291 static struct insn_chain *insns_need_reload;
292 \f
293 /* This structure is used to record information about register eliminations.
294    Each array entry describes one possible way of eliminating a register
295    in favor of another.   If there is more than one way of eliminating a
296    particular register, the most preferred should be specified first.  */
297
298 struct elim_table
299 {
300   int from;                     /* Register number to be eliminated.  */
301   int to;                       /* Register number used as replacement.  */
302   HOST_WIDE_INT initial_offset; /* Initial difference between values.  */
303   int can_eliminate;            /* Nonzero if this elimination can be done.  */
304   int can_eliminate_previous;   /* Value of CAN_ELIMINATE in previous scan over
305                                    insns made by reload.  */
306   HOST_WIDE_INT offset;         /* Current offset between the two regs.  */
307   HOST_WIDE_INT previous_offset;/* Offset at end of previous insn.  */
308   int ref_outside_mem;          /* "to" has been referenced outside a MEM.  */
309   rtx from_rtx;                 /* REG rtx for the register to be eliminated.
310                                    We cannot simply compare the number since
311                                    we might then spuriously replace a hard
312                                    register corresponding to a pseudo
313                                    assigned to the reg to be eliminated.  */
314   rtx to_rtx;                   /* REG rtx for the replacement.  */
315 };
316
317 static struct elim_table *reg_eliminate = 0;
318
319 /* This is an intermediate structure to initialize the table.  It has
320    exactly the members provided by ELIMINABLE_REGS.  */
321 static const struct elim_table_1
322 {
323   const int from;
324   const int to;
325 } reg_eliminate_1[] =
326
327 /* If a set of eliminable registers was specified, define the table from it.
328    Otherwise, default to the normal case of the frame pointer being
329    replaced by the stack pointer.  */
330
331 #ifdef ELIMINABLE_REGS
332   ELIMINABLE_REGS;
333 #else
334   {{ FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM}};
335 #endif
336
337 #define NUM_ELIMINABLE_REGS ARRAY_SIZE (reg_eliminate_1)
338
339 /* Record the number of pending eliminations that have an offset not equal
340    to their initial offset.  If nonzero, we use a new copy of each
341    replacement result in any insns encountered.  */
342 int num_not_at_initial_offset;
343
344 /* Count the number of registers that we may be able to eliminate.  */
345 static int num_eliminable;
346 /* And the number of registers that are equivalent to a constant that
347    can be eliminated to frame_pointer / arg_pointer + constant.  */
348 static int num_eliminable_invariants;
349
350 /* For each label, we record the offset of each elimination.  If we reach
351    a label by more than one path and an offset differs, we cannot do the
352    elimination.  This information is indexed by the difference of the
353    number of the label and the first label number.  We can't offset the
354    pointer itself as this can cause problems on machines with segmented
355    memory.  The first table is an array of flags that records whether we
356    have yet encountered a label and the second table is an array of arrays,
357    one entry in the latter array for each elimination.  */
358
359 static int first_label_num;
360 static char *offsets_known_at;
361 static HOST_WIDE_INT (*offsets_at)[NUM_ELIMINABLE_REGS];
362
363 /* Number of labels in the current function.  */
364
365 static int num_labels;
366 \f
367 static void replace_pseudos_in (rtx *, enum machine_mode, rtx);
368 static void maybe_fix_stack_asms (void);
369 static void copy_reloads (struct insn_chain *);
370 static void calculate_needs_all_insns (int);
371 static int find_reg (struct insn_chain *, int);
372 static void find_reload_regs (struct insn_chain *);
373 static void select_reload_regs (void);
374 static void delete_caller_save_insns (void);
375
376 static void spill_failure (rtx, enum reg_class);
377 static void count_spilled_pseudo (int, int, int);
378 static void delete_dead_insn (rtx);
379 static void alter_reg (int, int);
380 static void set_label_offsets (rtx, rtx, int);
381 static void check_eliminable_occurrences (rtx);
382 static void elimination_effects (rtx, enum machine_mode);
383 static int eliminate_regs_in_insn (rtx, int);
384 static void update_eliminable_offsets (void);
385 static void mark_not_eliminable (rtx, rtx, void *);
386 static void set_initial_elim_offsets (void);
387 static bool verify_initial_elim_offsets (void);
388 static void set_initial_label_offsets (void);
389 static void set_offsets_for_label (rtx);
390 static void init_elim_table (void);
391 static void update_eliminables (HARD_REG_SET *);
392 static void spill_hard_reg (unsigned int, int);
393 static int finish_spills (int);
394 static void scan_paradoxical_subregs (rtx);
395 static void count_pseudo (int);
396 static void order_regs_for_reload (struct insn_chain *);
397 static void reload_as_needed (int);
398 static void forget_old_reloads_1 (rtx, rtx, void *);
399 static int reload_reg_class_lower (const void *, const void *);
400 static void mark_reload_reg_in_use (unsigned int, int, enum reload_type,
401                                     enum machine_mode);
402 static void clear_reload_reg_in_use (unsigned int, int, enum reload_type,
403                                      enum machine_mode);
404 static int reload_reg_free_p (unsigned int, int, enum reload_type);
405 static int reload_reg_free_for_value_p (int, int, int, enum reload_type,
406                                         rtx, rtx, int, int);
407 static int free_for_value_p (int, enum machine_mode, int, enum reload_type,
408                              rtx, rtx, int, int);
409 static int reload_reg_reaches_end_p (unsigned int, int, enum reload_type);
410 static int allocate_reload_reg (struct insn_chain *, int, int);
411 static int conflicts_with_override (rtx);
412 static void failed_reload (rtx, int);
413 static int set_reload_reg (int, int);
414 static void choose_reload_regs_init (struct insn_chain *, rtx *);
415 static void choose_reload_regs (struct insn_chain *);
416 static void merge_assigned_reloads (rtx);
417 static void emit_input_reload_insns (struct insn_chain *, struct reload *,
418                                      rtx, int);
419 static void emit_output_reload_insns (struct insn_chain *, struct reload *,
420                                       int);
421 static void do_input_reload (struct insn_chain *, struct reload *, int);
422 static void do_output_reload (struct insn_chain *, struct reload *, int);
423 static bool inherit_piecemeal_p (int, int);
424 static void emit_reload_insns (struct insn_chain *);
425 static void delete_output_reload (rtx, int, int);
426 static void delete_address_reloads (rtx, rtx);
427 static void delete_address_reloads_1 (rtx, rtx, rtx);
428 static rtx inc_for_reload (rtx, rtx, rtx, int);
429 #ifdef AUTO_INC_DEC
430 static void add_auto_inc_notes (rtx, rtx);
431 #endif
432 static void copy_eh_notes (rtx, rtx);
433 static int reloads_conflict (int, int);
434 static rtx gen_reload (rtx, rtx, int, enum reload_type);
435 \f
436 /* Initialize the reload pass once per compilation.  */
437
438 void
439 init_reload (void)
440 {
441   int i;
442
443   /* Often (MEM (REG n)) is still valid even if (REG n) is put on the stack.
444      Set spill_indirect_levels to the number of levels such addressing is
445      permitted, zero if it is not permitted at all.  */
446
447   rtx tem
448     = gen_rtx_MEM (Pmode,
449                    gen_rtx_PLUS (Pmode,
450                                  gen_rtx_REG (Pmode,
451                                               LAST_VIRTUAL_REGISTER + 1),
452                                  GEN_INT (4)));
453   spill_indirect_levels = 0;
454
455   while (memory_address_p (QImode, tem))
456     {
457       spill_indirect_levels++;
458       tem = gen_rtx_MEM (Pmode, tem);
459     }
460
461   /* See if indirect addressing is valid for (MEM (SYMBOL_REF ...)).  */
462
463   tem = gen_rtx_MEM (Pmode, gen_rtx_SYMBOL_REF (Pmode, "foo"));
464   indirect_symref_ok = memory_address_p (QImode, tem);
465
466   /* See if reg+reg is a valid (and offsettable) address.  */
467
468   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
469     {
470       tem = gen_rtx_PLUS (Pmode,
471                           gen_rtx_REG (Pmode, HARD_FRAME_POINTER_REGNUM),
472                           gen_rtx_REG (Pmode, i));
473
474       /* This way, we make sure that reg+reg is an offsettable address.  */
475       tem = plus_constant (tem, 4);
476
477       if (memory_address_p (QImode, tem))
478         {
479           double_reg_address_ok = 1;
480           break;
481         }
482     }
483
484   /* Initialize obstack for our rtl allocation.  */
485   gcc_obstack_init (&reload_obstack);
486   reload_startobj = obstack_alloc (&reload_obstack, 0);
487
488   INIT_REG_SET (&spilled_pseudos);
489   INIT_REG_SET (&pseudos_counted);
490   VARRAY_RTX_INIT (reg_equiv_memory_loc_varray, 0, "reg_equiv_memory_loc");
491 }
492
493 /* List of insn chains that are currently unused.  */
494 static struct insn_chain *unused_insn_chains = 0;
495
496 /* Allocate an empty insn_chain structure.  */
497 struct insn_chain *
498 new_insn_chain (void)
499 {
500   struct insn_chain *c;
501
502   if (unused_insn_chains == 0)
503     {
504       c = obstack_alloc (&reload_obstack, sizeof (struct insn_chain));
505       INIT_REG_SET (&c->live_throughout);
506       INIT_REG_SET (&c->dead_or_set);
507     }
508   else
509     {
510       c = unused_insn_chains;
511       unused_insn_chains = c->next;
512     }
513   c->is_caller_save_insn = 0;
514   c->need_operand_change = 0;
515   c->need_reload = 0;
516   c->need_elim = 0;
517   return c;
518 }
519
520 /* Small utility function to set all regs in hard reg set TO which are
521    allocated to pseudos in regset FROM.  */
522
523 void
524 compute_use_by_pseudos (HARD_REG_SET *to, regset from)
525 {
526   unsigned int regno;
527   reg_set_iterator rsi;
528
529   EXECUTE_IF_SET_IN_REG_SET (from, FIRST_PSEUDO_REGISTER, regno, rsi)
530     {
531       int r = reg_renumber[regno];
532       int nregs;
533
534       if (r < 0)
535         {
536           /* reload_combine uses the information from
537              BASIC_BLOCK->global_live_at_start, which might still
538              contain registers that have not actually been allocated
539              since they have an equivalence.  */
540           gcc_assert (reload_completed);
541         }
542       else
543         {
544           nregs = hard_regno_nregs[r][PSEUDO_REGNO_MODE (regno)];
545           while (nregs-- > 0)
546             SET_HARD_REG_BIT (*to, r + nregs);
547         }
548     }
549 }
550
551 /* Replace all pseudos found in LOC with their corresponding
552    equivalences.  */
553
554 static void
555 replace_pseudos_in (rtx *loc, enum machine_mode mem_mode, rtx usage)
556 {
557   rtx x = *loc;
558   enum rtx_code code;
559   const char *fmt;
560   int i, j;
561
562   if (! x)
563     return;
564
565   code = GET_CODE (x);
566   if (code == REG)
567     {
568       unsigned int regno = REGNO (x);
569
570       if (regno < FIRST_PSEUDO_REGISTER)
571         return;
572
573       x = eliminate_regs (x, mem_mode, usage);
574       if (x != *loc)
575         {
576           *loc = x;
577           replace_pseudos_in (loc, mem_mode, usage);
578           return;
579         }
580
581       if (reg_equiv_constant[regno])
582         *loc = reg_equiv_constant[regno];
583       else if (reg_equiv_mem[regno])
584         *loc = reg_equiv_mem[regno];
585       else if (reg_equiv_address[regno])
586         *loc = gen_rtx_MEM (GET_MODE (x), reg_equiv_address[regno]);
587       else
588         {
589           gcc_assert (!REG_P (regno_reg_rtx[regno])
590                       || REGNO (regno_reg_rtx[regno]) != regno);
591           *loc = regno_reg_rtx[regno];
592         }
593
594       return;
595     }
596   else if (code == MEM)
597     {
598       replace_pseudos_in (& XEXP (x, 0), GET_MODE (x), usage);
599       return;
600     }
601
602   /* Process each of our operands recursively.  */
603   fmt = GET_RTX_FORMAT (code);
604   for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
605     if (*fmt == 'e')
606       replace_pseudos_in (&XEXP (x, i), mem_mode, usage);
607     else if (*fmt == 'E')
608       for (j = 0; j < XVECLEN (x, i); j++)
609         replace_pseudos_in (& XVECEXP (x, i, j), mem_mode, usage);
610 }
611
612 \f
613 /* Global variables used by reload and its subroutines.  */
614
615 /* Set during calculate_needs if an insn needs register elimination.  */
616 static int something_needs_elimination;
617 /* Set during calculate_needs if an insn needs an operand changed.  */
618 static int something_needs_operands_changed;
619
620 /* Nonzero means we couldn't get enough spill regs.  */
621 static int failure;
622
623 /* Main entry point for the reload pass.
624
625    FIRST is the first insn of the function being compiled.
626
627    GLOBAL nonzero means we were called from global_alloc
628    and should attempt to reallocate any pseudoregs that we
629    displace from hard regs we will use for reloads.
630    If GLOBAL is zero, we do not have enough information to do that,
631    so any pseudo reg that is spilled must go to the stack.
632
633    Return value is nonzero if reload failed
634    and we must not do any more for this function.  */
635
636 int
637 reload (rtx first, int global)
638 {
639   int i;
640   rtx insn;
641   struct elim_table *ep;
642   basic_block bb;
643
644   /* Make sure even insns with volatile mem refs are recognizable.  */
645   init_recog ();
646
647   failure = 0;
648
649   reload_firstobj = obstack_alloc (&reload_obstack, 0);
650
651   /* Make sure that the last insn in the chain
652      is not something that needs reloading.  */
653   emit_note (NOTE_INSN_DELETED);
654
655   /* Enable find_equiv_reg to distinguish insns made by reload.  */
656   reload_first_uid = get_max_uid ();
657
658 #ifdef SECONDARY_MEMORY_NEEDED
659   /* Initialize the secondary memory table.  */
660   clear_secondary_mem ();
661 #endif
662
663   /* We don't have a stack slot for any spill reg yet.  */
664   memset (spill_stack_slot, 0, sizeof spill_stack_slot);
665   memset (spill_stack_slot_width, 0, sizeof spill_stack_slot_width);
666
667   /* Initialize the save area information for caller-save, in case some
668      are needed.  */
669   init_save_areas ();
670
671   /* Compute which hard registers are now in use
672      as homes for pseudo registers.
673      This is done here rather than (eg) in global_alloc
674      because this point is reached even if not optimizing.  */
675   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
676     mark_home_live (i);
677
678   /* A function that receives a nonlocal goto must save all call-saved
679      registers.  */
680   if (current_function_has_nonlocal_label)
681     for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
682       if (! call_used_regs[i] && ! fixed_regs[i] && ! LOCAL_REGNO (i))
683         regs_ever_live[i] = 1;
684
685   /* Find all the pseudo registers that didn't get hard regs
686      but do have known equivalent constants or memory slots.
687      These include parameters (known equivalent to parameter slots)
688      and cse'd or loop-moved constant memory addresses.
689
690      Record constant equivalents in reg_equiv_constant
691      so they will be substituted by find_reloads.
692      Record memory equivalents in reg_mem_equiv so they can
693      be substituted eventually by altering the REG-rtx's.  */
694
695   reg_equiv_constant = xcalloc (max_regno, sizeof (rtx));
696   reg_equiv_mem = xcalloc (max_regno, sizeof (rtx));
697   reg_equiv_address = xcalloc (max_regno, sizeof (rtx));
698   reg_max_ref_width = xcalloc (max_regno, sizeof (int));
699   reg_old_renumber = xcalloc (max_regno, sizeof (short));
700   memcpy (reg_old_renumber, reg_renumber, max_regno * sizeof (short));
701   pseudo_forbidden_regs = xmalloc (max_regno * sizeof (HARD_REG_SET));
702   pseudo_previous_regs = xcalloc (max_regno, sizeof (HARD_REG_SET));
703
704   CLEAR_HARD_REG_SET (bad_spill_regs_global);
705
706   /* Look for REG_EQUIV notes; record what each pseudo is equivalent
707      to.  Also find all paradoxical subregs and find largest such for
708      each pseudo.  */
709
710   num_eliminable_invariants = 0;
711   for (insn = first; insn; insn = NEXT_INSN (insn))
712     {
713       rtx set = single_set (insn);
714
715       /* We may introduce USEs that we want to remove at the end, so
716          we'll mark them with QImode.  Make sure there are no
717          previously-marked insns left by say regmove.  */
718       if (INSN_P (insn) && GET_CODE (PATTERN (insn)) == USE
719           && GET_MODE (insn) != VOIDmode)
720         PUT_MODE (insn, VOIDmode);
721
722       if (INSN_P (insn))
723         scan_paradoxical_subregs (PATTERN (insn));
724
725       if (set != 0 && REG_P (SET_DEST (set)))
726         {
727           rtx note = find_reg_note (insn, REG_EQUIV, NULL_RTX);
728           rtx x;
729
730           if (! note)
731             continue;
732
733           i = REGNO (SET_DEST (set));
734           x = XEXP (note, 0);
735
736           if (i <= LAST_VIRTUAL_REGISTER)
737             continue;
738
739           if (! function_invariant_p (x)
740               || ! flag_pic
741               /* A function invariant is often CONSTANT_P but may
742                  include a register.  We promise to only pass
743                  CONSTANT_P objects to LEGITIMATE_PIC_OPERAND_P.  */
744               || (CONSTANT_P (x)
745                   && LEGITIMATE_PIC_OPERAND_P (x)))
746             {
747               /* It can happen that a REG_EQUIV note contains a MEM
748                  that is not a legitimate memory operand.  As later
749                  stages of reload assume that all addresses found
750                  in the reg_equiv_* arrays were originally legitimate,
751                  we ignore such REG_EQUIV notes.  */
752               if (memory_operand (x, VOIDmode))
753                 {
754                   /* Always unshare the equivalence, so we can
755                      substitute into this insn without touching the
756                        equivalence.  */
757                   reg_equiv_memory_loc[i] = copy_rtx (x);
758                 }
759               else if (function_invariant_p (x))
760                 {
761                   if (GET_CODE (x) == PLUS)
762                     {
763                       /* This is PLUS of frame pointer and a constant,
764                          and might be shared.  Unshare it.  */
765                       reg_equiv_constant[i] = copy_rtx (x);
766                       num_eliminable_invariants++;
767                     }
768                   else if (x == frame_pointer_rtx
769                            || x == arg_pointer_rtx)
770                     {
771                       reg_equiv_constant[i] = x;
772                       num_eliminable_invariants++;
773                     }
774                   else if (LEGITIMATE_CONSTANT_P (x))
775                     reg_equiv_constant[i] = x;
776                   else
777                     {
778                       reg_equiv_memory_loc[i]
779                         = force_const_mem (GET_MODE (SET_DEST (set)), x);
780                       if (! reg_equiv_memory_loc[i])
781                         reg_equiv_init[i] = NULL_RTX;
782                     }
783                 }
784               else
785                 {
786                   reg_equiv_init[i] = NULL_RTX;
787                   continue;
788                 }
789             }
790           else
791             reg_equiv_init[i] = NULL_RTX;
792         }
793     }
794
795   if (dump_file)
796     for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
797       if (reg_equiv_init[i])
798         {
799           fprintf (dump_file, "init_insns for %u: ", i);
800           print_inline_rtx (dump_file, reg_equiv_init[i], 20);
801           fprintf (dump_file, "\n");
802         }
803
804   init_elim_table ();
805
806   first_label_num = get_first_label_num ();
807   num_labels = max_label_num () - first_label_num;
808
809   /* Allocate the tables used to store offset information at labels.  */
810   /* We used to use alloca here, but the size of what it would try to
811      allocate would occasionally cause it to exceed the stack limit and
812      cause a core dump.  */
813   offsets_known_at = xmalloc (num_labels);
814   offsets_at = xmalloc (num_labels * NUM_ELIMINABLE_REGS * sizeof (HOST_WIDE_INT));
815
816   /* Alter each pseudo-reg rtx to contain its hard reg number.
817      Assign stack slots to the pseudos that lack hard regs or equivalents.
818      Do not touch virtual registers.  */
819
820   for (i = LAST_VIRTUAL_REGISTER + 1; i < max_regno; i++)
821     alter_reg (i, -1);
822
823   /* If we have some registers we think can be eliminated, scan all insns to
824      see if there is an insn that sets one of these registers to something
825      other than itself plus a constant.  If so, the register cannot be
826      eliminated.  Doing this scan here eliminates an extra pass through the
827      main reload loop in the most common case where register elimination
828      cannot be done.  */
829   for (insn = first; insn && num_eliminable; insn = NEXT_INSN (insn))
830     if (INSN_P (insn))
831       note_stores (PATTERN (insn), mark_not_eliminable, NULL);
832
833   maybe_fix_stack_asms ();
834
835   insns_need_reload = 0;
836   something_needs_elimination = 0;
837
838   /* Initialize to -1, which means take the first spill register.  */
839   last_spill_reg = -1;
840
841   /* Spill any hard regs that we know we can't eliminate.  */
842   CLEAR_HARD_REG_SET (used_spill_regs);
843   /* There can be multiple ways to eliminate a register;
844      they should be listed adjacently.
845      Elimination for any register fails only if all possible ways fail.  */
846   for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; )
847     {
848       int from = ep->from;
849       int can_eliminate = 0;
850       do
851         {
852           can_eliminate |= ep->can_eliminate;
853           ep++;
854         }
855       while (ep < &reg_eliminate[NUM_ELIMINABLE_REGS] && ep->from == from);
856       if (! can_eliminate)
857         spill_hard_reg (from, 1);
858     }
859
860 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
861   if (frame_pointer_needed)
862     spill_hard_reg (HARD_FRAME_POINTER_REGNUM, 1);
863 #endif
864   finish_spills (global);
865
866   /* From now on, we may need to generate moves differently.  We may also
867      allow modifications of insns which cause them to not be recognized.
868      Any such modifications will be cleaned up during reload itself.  */
869   reload_in_progress = 1;
870
871   /* This loop scans the entire function each go-round
872      and repeats until one repetition spills no additional hard regs.  */
873   for (;;)
874     {
875       int something_changed;
876       int did_spill;
877
878       HOST_WIDE_INT starting_frame_size;
879
880       /* Round size of stack frame to stack_alignment_needed.  This must be done
881          here because the stack size may be a part of the offset computation
882          for register elimination, and there might have been new stack slots
883          created in the last iteration of this loop.  */
884       if (cfun->stack_alignment_needed)
885         assign_stack_local (BLKmode, 0, cfun->stack_alignment_needed);
886
887       starting_frame_size = get_frame_size ();
888
889       set_initial_elim_offsets ();
890       set_initial_label_offsets ();
891
892       /* For each pseudo register that has an equivalent location defined,
893          try to eliminate any eliminable registers (such as the frame pointer)
894          assuming initial offsets for the replacement register, which
895          is the normal case.
896
897          If the resulting location is directly addressable, substitute
898          the MEM we just got directly for the old REG.
899
900          If it is not addressable but is a constant or the sum of a hard reg
901          and constant, it is probably not addressable because the constant is
902          out of range, in that case record the address; we will generate
903          hairy code to compute the address in a register each time it is
904          needed.  Similarly if it is a hard register, but one that is not
905          valid as an address register.
906
907          If the location is not addressable, but does not have one of the
908          above forms, assign a stack slot.  We have to do this to avoid the
909          potential of producing lots of reloads if, e.g., a location involves
910          a pseudo that didn't get a hard register and has an equivalent memory
911          location that also involves a pseudo that didn't get a hard register.
912
913          Perhaps at some point we will improve reload_when_needed handling
914          so this problem goes away.  But that's very hairy.  */
915
916       for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
917         if (reg_renumber[i] < 0 && reg_equiv_memory_loc[i])
918           {
919             rtx x = eliminate_regs (reg_equiv_memory_loc[i], 0, NULL_RTX);
920
921             if (strict_memory_address_p (GET_MODE (regno_reg_rtx[i]),
922                                          XEXP (x, 0)))
923               reg_equiv_mem[i] = x, reg_equiv_address[i] = 0;
924             else if (CONSTANT_P (XEXP (x, 0))
925                      || (REG_P (XEXP (x, 0))
926                          && REGNO (XEXP (x, 0)) < FIRST_PSEUDO_REGISTER)
927                      || (GET_CODE (XEXP (x, 0)) == PLUS
928                          && REG_P (XEXP (XEXP (x, 0), 0))
929                          && (REGNO (XEXP (XEXP (x, 0), 0))
930                              < FIRST_PSEUDO_REGISTER)
931                          && CONSTANT_P (XEXP (XEXP (x, 0), 1))))
932               reg_equiv_address[i] = XEXP (x, 0), reg_equiv_mem[i] = 0;
933             else
934               {
935                 /* Make a new stack slot.  Then indicate that something
936                    changed so we go back and recompute offsets for
937                    eliminable registers because the allocation of memory
938                    below might change some offset.  reg_equiv_{mem,address}
939                    will be set up for this pseudo on the next pass around
940                    the loop.  */
941                 reg_equiv_memory_loc[i] = 0;
942                 reg_equiv_init[i] = 0;
943                 alter_reg (i, -1);
944               }
945           }
946
947       if (caller_save_needed)
948         setup_save_areas ();
949
950       /* If we allocated another stack slot, redo elimination bookkeeping.  */
951       if (starting_frame_size != get_frame_size ())
952         continue;
953
954       if (caller_save_needed)
955         {
956           save_call_clobbered_regs ();
957           /* That might have allocated new insn_chain structures.  */
958           reload_firstobj = obstack_alloc (&reload_obstack, 0);
959         }
960
961       calculate_needs_all_insns (global);
962
963       CLEAR_REG_SET (&spilled_pseudos);
964       did_spill = 0;
965
966       something_changed = 0;
967
968       /* If we allocated any new memory locations, make another pass
969          since it might have changed elimination offsets.  */
970       if (starting_frame_size != get_frame_size ())
971         something_changed = 1;
972
973       /* Even if the frame size remained the same, we might still have
974          changed elimination offsets, e.g. if find_reloads called 
975          force_const_mem requiring the back end to allocate a constant
976          pool base register that needs to be saved on the stack.  */
977       else if (!verify_initial_elim_offsets ())
978         something_changed = 1;
979
980       {
981         HARD_REG_SET to_spill;
982         CLEAR_HARD_REG_SET (to_spill);
983         update_eliminables (&to_spill);
984         for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
985           if (TEST_HARD_REG_BIT (to_spill, i))
986             {
987               spill_hard_reg (i, 1);
988               did_spill = 1;
989
990               /* Regardless of the state of spills, if we previously had
991                  a register that we thought we could eliminate, but now can
992                  not eliminate, we must run another pass.
993
994                  Consider pseudos which have an entry in reg_equiv_* which
995                  reference an eliminable register.  We must make another pass
996                  to update reg_equiv_* so that we do not substitute in the
997                  old value from when we thought the elimination could be
998                  performed.  */
999               something_changed = 1;
1000             }
1001       }
1002
1003       select_reload_regs ();
1004       if (failure)
1005         goto failed;
1006
1007       if (insns_need_reload != 0 || did_spill)
1008         something_changed |= finish_spills (global);
1009
1010       if (! something_changed)
1011         break;
1012
1013       if (caller_save_needed)
1014         delete_caller_save_insns ();
1015
1016       obstack_free (&reload_obstack, reload_firstobj);
1017     }
1018
1019   /* If global-alloc was run, notify it of any register eliminations we have
1020      done.  */
1021   if (global)
1022     for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
1023       if (ep->can_eliminate)
1024         mark_elimination (ep->from, ep->to);
1025
1026   /* If a pseudo has no hard reg, delete the insns that made the equivalence.
1027      If that insn didn't set the register (i.e., it copied the register to
1028      memory), just delete that insn instead of the equivalencing insn plus
1029      anything now dead.  If we call delete_dead_insn on that insn, we may
1030      delete the insn that actually sets the register if the register dies
1031      there and that is incorrect.  */
1032
1033   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
1034     {
1035       if (reg_renumber[i] < 0 && reg_equiv_init[i] != 0)
1036         {
1037           rtx list;
1038           for (list = reg_equiv_init[i]; list; list = XEXP (list, 1))
1039             {
1040               rtx equiv_insn = XEXP (list, 0);
1041
1042               /* If we already deleted the insn or if it may trap, we can't
1043                  delete it.  The latter case shouldn't happen, but can
1044                  if an insn has a variable address, gets a REG_EH_REGION
1045                  note added to it, and then gets converted into an load
1046                  from a constant address.  */
1047               if (NOTE_P (equiv_insn)
1048                   || can_throw_internal (equiv_insn))
1049                 ;
1050               else if (reg_set_p (regno_reg_rtx[i], PATTERN (equiv_insn)))
1051                 delete_dead_insn (equiv_insn);
1052               else
1053                 SET_INSN_DELETED (equiv_insn);
1054             }
1055         }
1056     }
1057
1058   /* Use the reload registers where necessary
1059      by generating move instructions to move the must-be-register
1060      values into or out of the reload registers.  */
1061
1062   if (insns_need_reload != 0 || something_needs_elimination
1063       || something_needs_operands_changed)
1064     {
1065       HOST_WIDE_INT old_frame_size = get_frame_size ();
1066
1067       reload_as_needed (global);
1068
1069       gcc_assert (old_frame_size == get_frame_size ());
1070
1071       gcc_assert (verify_initial_elim_offsets ());
1072     }
1073
1074   /* If we were able to eliminate the frame pointer, show that it is no
1075      longer live at the start of any basic block.  If it ls live by
1076      virtue of being in a pseudo, that pseudo will be marked live
1077      and hence the frame pointer will be known to be live via that
1078      pseudo.  */
1079
1080   if (! frame_pointer_needed)
1081     FOR_EACH_BB (bb)
1082       CLEAR_REGNO_REG_SET (bb->il.rtl->global_live_at_start,
1083                            HARD_FRAME_POINTER_REGNUM);
1084
1085   /* Come here (with failure set nonzero) if we can't get enough spill
1086      regs.  */
1087  failed:
1088
1089   CLEAR_REG_SET (&spilled_pseudos);
1090   reload_in_progress = 0;
1091
1092   /* Now eliminate all pseudo regs by modifying them into
1093      their equivalent memory references.
1094      The REG-rtx's for the pseudos are modified in place,
1095      so all insns that used to refer to them now refer to memory.
1096
1097      For a reg that has a reg_equiv_address, all those insns
1098      were changed by reloading so that no insns refer to it any longer;
1099      but the DECL_RTL of a variable decl may refer to it,
1100      and if so this causes the debugging info to mention the variable.  */
1101
1102   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
1103     {
1104       rtx addr = 0;
1105
1106       if (reg_equiv_mem[i])
1107         addr = XEXP (reg_equiv_mem[i], 0);
1108
1109       if (reg_equiv_address[i])
1110         addr = reg_equiv_address[i];
1111
1112       if (addr)
1113         {
1114           if (reg_renumber[i] < 0)
1115             {
1116               rtx reg = regno_reg_rtx[i];
1117
1118               REG_USERVAR_P (reg) = 0;
1119               PUT_CODE (reg, MEM);
1120               XEXP (reg, 0) = addr;
1121               if (reg_equiv_memory_loc[i])
1122                 MEM_COPY_ATTRIBUTES (reg, reg_equiv_memory_loc[i]);
1123               else
1124                 {
1125                   MEM_IN_STRUCT_P (reg) = MEM_SCALAR_P (reg) = 0;
1126                   MEM_ATTRS (reg) = 0;
1127                 }
1128             }
1129           else if (reg_equiv_mem[i])
1130             XEXP (reg_equiv_mem[i], 0) = addr;
1131         }
1132     }
1133
1134   /* We must set reload_completed now since the cleanup_subreg_operands call
1135      below will re-recognize each insn and reload may have generated insns
1136      which are only valid during and after reload.  */
1137   reload_completed = 1;
1138
1139   /* Make a pass over all the insns and delete all USEs which we inserted
1140      only to tag a REG_EQUAL note on them.  Remove all REG_DEAD and REG_UNUSED
1141      notes.  Delete all CLOBBER insns, except those that refer to the return
1142      value and the special mem:BLK CLOBBERs added to prevent the scheduler
1143      from misarranging variable-array code, and simplify (subreg (reg))
1144      operands.  Also remove all REG_RETVAL and REG_LIBCALL notes since they
1145      are no longer useful or accurate.  Strip and regenerate REG_INC notes
1146      that may have been moved around.  */
1147
1148   for (insn = first; insn; insn = NEXT_INSN (insn))
1149     if (INSN_P (insn))
1150       {
1151         rtx *pnote;
1152
1153         if (CALL_P (insn))
1154           replace_pseudos_in (& CALL_INSN_FUNCTION_USAGE (insn),
1155                               VOIDmode, CALL_INSN_FUNCTION_USAGE (insn));
1156
1157         if ((GET_CODE (PATTERN (insn)) == USE
1158              /* We mark with QImode USEs introduced by reload itself.  */
1159              && (GET_MODE (insn) == QImode
1160                  || find_reg_note (insn, REG_EQUAL, NULL_RTX)))
1161             || (GET_CODE (PATTERN (insn)) == CLOBBER
1162                 && (!MEM_P (XEXP (PATTERN (insn), 0))
1163                     || GET_MODE (XEXP (PATTERN (insn), 0)) != BLKmode
1164                     || (GET_CODE (XEXP (XEXP (PATTERN (insn), 0), 0)) != SCRATCH
1165                         && XEXP (XEXP (PATTERN (insn), 0), 0)
1166                                 != stack_pointer_rtx))
1167                 && (!REG_P (XEXP (PATTERN (insn), 0))
1168                     || ! REG_FUNCTION_VALUE_P (XEXP (PATTERN (insn), 0)))))
1169           {
1170             delete_insn (insn);
1171             continue;
1172           }
1173
1174         /* Some CLOBBERs may survive until here and still reference unassigned
1175            pseudos with const equivalent, which may in turn cause ICE in later
1176            passes if the reference remains in place.  */
1177         if (GET_CODE (PATTERN (insn)) == CLOBBER)
1178           replace_pseudos_in (& XEXP (PATTERN (insn), 0),
1179                               VOIDmode, PATTERN (insn));
1180
1181         /* Discard obvious no-ops, even without -O.  This optimization
1182            is fast and doesn't interfere with debugging.  */
1183         if (NONJUMP_INSN_P (insn)
1184             && GET_CODE (PATTERN (insn)) == SET
1185             && REG_P (SET_SRC (PATTERN (insn)))
1186             && REG_P (SET_DEST (PATTERN (insn)))
1187             && (REGNO (SET_SRC (PATTERN (insn)))
1188                 == REGNO (SET_DEST (PATTERN (insn)))))
1189           {
1190             delete_insn (insn);
1191             continue;
1192           }
1193
1194         pnote = &REG_NOTES (insn);
1195         while (*pnote != 0)
1196           {
1197             if (REG_NOTE_KIND (*pnote) == REG_DEAD
1198                 || REG_NOTE_KIND (*pnote) == REG_UNUSED
1199                 || REG_NOTE_KIND (*pnote) == REG_INC
1200                 || REG_NOTE_KIND (*pnote) == REG_RETVAL
1201                 || REG_NOTE_KIND (*pnote) == REG_LIBCALL)
1202               *pnote = XEXP (*pnote, 1);
1203             else
1204               pnote = &XEXP (*pnote, 1);
1205           }
1206
1207 #ifdef AUTO_INC_DEC
1208         add_auto_inc_notes (insn, PATTERN (insn));
1209 #endif
1210
1211         /* And simplify (subreg (reg)) if it appears as an operand.  */
1212         cleanup_subreg_operands (insn);
1213       }
1214
1215   /* If we are doing stack checking, give a warning if this function's
1216      frame size is larger than we expect.  */
1217   if (flag_stack_check && ! STACK_CHECK_BUILTIN)
1218     {
1219       HOST_WIDE_INT size = get_frame_size () + STACK_CHECK_FIXED_FRAME_SIZE;
1220       static int verbose_warned = 0;
1221
1222       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1223         if (regs_ever_live[i] && ! fixed_regs[i] && call_used_regs[i])
1224           size += UNITS_PER_WORD;
1225
1226       if (size > STACK_CHECK_MAX_FRAME_SIZE)
1227         {
1228           warning (0, "frame size too large for reliable stack checking");
1229           if (! verbose_warned)
1230             {
1231               warning (0, "try reducing the number of local variables");
1232               verbose_warned = 1;
1233             }
1234         }
1235     }
1236
1237   /* Indicate that we no longer have known memory locations or constants.  */
1238   if (reg_equiv_constant)
1239     free (reg_equiv_constant);
1240   reg_equiv_constant = 0;
1241   VARRAY_GROW (reg_equiv_memory_loc_varray, 0);
1242   reg_equiv_memory_loc = 0;
1243
1244   if (offsets_known_at)
1245     free (offsets_known_at);
1246   if (offsets_at)
1247     free (offsets_at);
1248
1249   free (reg_equiv_mem);
1250   reg_equiv_init = 0;
1251   free (reg_equiv_address);
1252   free (reg_max_ref_width);
1253   free (reg_old_renumber);
1254   free (pseudo_previous_regs);
1255   free (pseudo_forbidden_regs);
1256
1257   CLEAR_HARD_REG_SET (used_spill_regs);
1258   for (i = 0; i < n_spills; i++)
1259     SET_HARD_REG_BIT (used_spill_regs, spill_regs[i]);
1260
1261   /* Free all the insn_chain structures at once.  */
1262   obstack_free (&reload_obstack, reload_startobj);
1263   unused_insn_chains = 0;
1264   fixup_abnormal_edges ();
1265
1266   /* Replacing pseudos with their memory equivalents might have
1267      created shared rtx.  Subsequent passes would get confused
1268      by this, so unshare everything here.  */
1269   unshare_all_rtl_again (first);
1270
1271 #ifdef STACK_BOUNDARY
1272   /* init_emit has set the alignment of the hard frame pointer
1273      to STACK_BOUNDARY.  It is very likely no longer valid if
1274      the hard frame pointer was used for register allocation.  */
1275   if (!frame_pointer_needed)
1276     REGNO_POINTER_ALIGN (HARD_FRAME_POINTER_REGNUM) = BITS_PER_UNIT;
1277 #endif
1278
1279   return failure;
1280 }
1281
1282 /* Yet another special case.  Unfortunately, reg-stack forces people to
1283    write incorrect clobbers in asm statements.  These clobbers must not
1284    cause the register to appear in bad_spill_regs, otherwise we'll call
1285    fatal_insn later.  We clear the corresponding regnos in the live
1286    register sets to avoid this.
1287    The whole thing is rather sick, I'm afraid.  */
1288
1289 static void
1290 maybe_fix_stack_asms (void)
1291 {
1292 #ifdef STACK_REGS
1293   const char *constraints[MAX_RECOG_OPERANDS];
1294   enum machine_mode operand_mode[MAX_RECOG_OPERANDS];
1295   struct insn_chain *chain;
1296
1297   for (chain = reload_insn_chain; chain != 0; chain = chain->next)
1298     {
1299       int i, noperands;
1300       HARD_REG_SET clobbered, allowed;
1301       rtx pat;
1302
1303       if (! INSN_P (chain->insn)
1304           || (noperands = asm_noperands (PATTERN (chain->insn))) < 0)
1305         continue;
1306       pat = PATTERN (chain->insn);
1307       if (GET_CODE (pat) != PARALLEL)
1308         continue;
1309
1310       CLEAR_HARD_REG_SET (clobbered);
1311       CLEAR_HARD_REG_SET (allowed);
1312
1313       /* First, make a mask of all stack regs that are clobbered.  */
1314       for (i = 0; i < XVECLEN (pat, 0); i++)
1315         {
1316           rtx t = XVECEXP (pat, 0, i);
1317           if (GET_CODE (t) == CLOBBER && STACK_REG_P (XEXP (t, 0)))
1318             SET_HARD_REG_BIT (clobbered, REGNO (XEXP (t, 0)));
1319         }
1320
1321       /* Get the operand values and constraints out of the insn.  */
1322       decode_asm_operands (pat, recog_data.operand, recog_data.operand_loc,
1323                            constraints, operand_mode);
1324
1325       /* For every operand, see what registers are allowed.  */
1326       for (i = 0; i < noperands; i++)
1327         {
1328           const char *p = constraints[i];
1329           /* For every alternative, we compute the class of registers allowed
1330              for reloading in CLS, and merge its contents into the reg set
1331              ALLOWED.  */
1332           int cls = (int) NO_REGS;
1333
1334           for (;;)
1335             {
1336               char c = *p;
1337
1338               if (c == '\0' || c == ',' || c == '#')
1339                 {
1340                   /* End of one alternative - mark the regs in the current
1341                      class, and reset the class.  */
1342                   IOR_HARD_REG_SET (allowed, reg_class_contents[cls]);
1343                   cls = NO_REGS;
1344                   p++;
1345                   if (c == '#')
1346                     do {
1347                       c = *p++;
1348                     } while (c != '\0' && c != ',');
1349                   if (c == '\0')
1350                     break;
1351                   continue;
1352                 }
1353
1354               switch (c)
1355                 {
1356                 case '=': case '+': case '*': case '%': case '?': case '!':
1357                 case '0': case '1': case '2': case '3': case '4': case 'm':
1358                 case '<': case '>': case 'V': case 'o': case '&': case 'E':
1359                 case 'F': case 's': case 'i': case 'n': case 'X': case 'I':
1360                 case 'J': case 'K': case 'L': case 'M': case 'N': case 'O':
1361                 case 'P':
1362                   break;
1363
1364                 case 'p':
1365                   cls = (int) reg_class_subunion[cls]
1366                     [(int) MODE_BASE_REG_CLASS (VOIDmode)];
1367                   break;
1368
1369                 case 'g':
1370                 case 'r':
1371                   cls = (int) reg_class_subunion[cls][(int) GENERAL_REGS];
1372                   break;
1373
1374                 default:
1375                   if (EXTRA_ADDRESS_CONSTRAINT (c, p))
1376                     cls = (int) reg_class_subunion[cls]
1377                       [(int) MODE_BASE_REG_CLASS (VOIDmode)];
1378                   else
1379                     cls = (int) reg_class_subunion[cls]
1380                       [(int) REG_CLASS_FROM_CONSTRAINT (c, p)];
1381                 }
1382               p += CONSTRAINT_LEN (c, p);
1383             }
1384         }
1385       /* Those of the registers which are clobbered, but allowed by the
1386          constraints, must be usable as reload registers.  So clear them
1387          out of the life information.  */
1388       AND_HARD_REG_SET (allowed, clobbered);
1389       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1390         if (TEST_HARD_REG_BIT (allowed, i))
1391           {
1392             CLEAR_REGNO_REG_SET (&chain->live_throughout, i);
1393             CLEAR_REGNO_REG_SET (&chain->dead_or_set, i);
1394           }
1395     }
1396
1397 #endif
1398 }
1399 \f
1400 /* Copy the global variables n_reloads and rld into the corresponding elts
1401    of CHAIN.  */
1402 static void
1403 copy_reloads (struct insn_chain *chain)
1404 {
1405   chain->n_reloads = n_reloads;
1406   chain->rld = obstack_alloc (&reload_obstack,
1407                               n_reloads * sizeof (struct reload));
1408   memcpy (chain->rld, rld, n_reloads * sizeof (struct reload));
1409   reload_insn_firstobj = obstack_alloc (&reload_obstack, 0);
1410 }
1411
1412 /* Walk the chain of insns, and determine for each whether it needs reloads
1413    and/or eliminations.  Build the corresponding insns_need_reload list, and
1414    set something_needs_elimination as appropriate.  */
1415 static void
1416 calculate_needs_all_insns (int global)
1417 {
1418   struct insn_chain **pprev_reload = &insns_need_reload;
1419   struct insn_chain *chain, *next = 0;
1420
1421   something_needs_elimination = 0;
1422
1423   reload_insn_firstobj = obstack_alloc (&reload_obstack, 0);
1424   for (chain = reload_insn_chain; chain != 0; chain = next)
1425     {
1426       rtx insn = chain->insn;
1427
1428       next = chain->next;
1429
1430       /* Clear out the shortcuts.  */
1431       chain->n_reloads = 0;
1432       chain->need_elim = 0;
1433       chain->need_reload = 0;
1434       chain->need_operand_change = 0;
1435
1436       /* If this is a label, a JUMP_INSN, or has REG_NOTES (which might
1437          include REG_LABEL), we need to see what effects this has on the
1438          known offsets at labels.  */
1439
1440       if (LABEL_P (insn) || JUMP_P (insn)
1441           || (INSN_P (insn) && REG_NOTES (insn) != 0))
1442         set_label_offsets (insn, insn, 0);
1443
1444       if (INSN_P (insn))
1445         {
1446           rtx old_body = PATTERN (insn);
1447           int old_code = INSN_CODE (insn);
1448           rtx old_notes = REG_NOTES (insn);
1449           int did_elimination = 0;
1450           int operands_changed = 0;
1451           rtx set = single_set (insn);
1452
1453           /* Skip insns that only set an equivalence.  */
1454           if (set && REG_P (SET_DEST (set))
1455               && reg_renumber[REGNO (SET_DEST (set))] < 0
1456               && reg_equiv_constant[REGNO (SET_DEST (set))])
1457             continue;
1458
1459           /* If needed, eliminate any eliminable registers.  */
1460           if (num_eliminable || num_eliminable_invariants)
1461             did_elimination = eliminate_regs_in_insn (insn, 0);
1462
1463           /* Analyze the instruction.  */
1464           operands_changed = find_reloads (insn, 0, spill_indirect_levels,
1465                                            global, spill_reg_order);
1466
1467           /* If a no-op set needs more than one reload, this is likely
1468              to be something that needs input address reloads.  We
1469              can't get rid of this cleanly later, and it is of no use
1470              anyway, so discard it now.
1471              We only do this when expensive_optimizations is enabled,
1472              since this complements reload inheritance / output
1473              reload deletion, and it can make debugging harder.  */
1474           if (flag_expensive_optimizations && n_reloads > 1)
1475             {
1476               rtx set = single_set (insn);
1477               if (set
1478                   && SET_SRC (set) == SET_DEST (set)
1479                   && REG_P (SET_SRC (set))
1480                   && REGNO (SET_SRC (set)) >= FIRST_PSEUDO_REGISTER)
1481                 {
1482                   delete_insn (insn);
1483                   /* Delete it from the reload chain.  */
1484                   if (chain->prev)
1485                     chain->prev->next = next;
1486                   else
1487                     reload_insn_chain = next;
1488                   if (next)
1489                     next->prev = chain->prev;
1490                   chain->next = unused_insn_chains;
1491                   unused_insn_chains = chain;
1492                   continue;
1493                 }
1494             }
1495           if (num_eliminable)
1496             update_eliminable_offsets ();
1497
1498           /* Remember for later shortcuts which insns had any reloads or
1499              register eliminations.  */
1500           chain->need_elim = did_elimination;
1501           chain->need_reload = n_reloads > 0;
1502           chain->need_operand_change = operands_changed;
1503
1504           /* Discard any register replacements done.  */
1505           if (did_elimination)
1506             {
1507               obstack_free (&reload_obstack, reload_insn_firstobj);
1508               PATTERN (insn) = old_body;
1509               INSN_CODE (insn) = old_code;
1510               REG_NOTES (insn) = old_notes;
1511               something_needs_elimination = 1;
1512             }
1513
1514           something_needs_operands_changed |= operands_changed;
1515
1516           if (n_reloads != 0)
1517             {
1518               copy_reloads (chain);
1519               *pprev_reload = chain;
1520               pprev_reload = &chain->next_need_reload;
1521             }
1522         }
1523     }
1524   *pprev_reload = 0;
1525 }
1526 \f
1527 /* Comparison function for qsort to decide which of two reloads
1528    should be handled first.  *P1 and *P2 are the reload numbers.  */
1529
1530 static int
1531 reload_reg_class_lower (const void *r1p, const void *r2p)
1532 {
1533   int r1 = *(const short *) r1p, r2 = *(const short *) r2p;
1534   int t;
1535
1536   /* Consider required reloads before optional ones.  */
1537   t = rld[r1].optional - rld[r2].optional;
1538   if (t != 0)
1539     return t;
1540
1541   /* Count all solitary classes before non-solitary ones.  */
1542   t = ((reg_class_size[(int) rld[r2].class] == 1)
1543        - (reg_class_size[(int) rld[r1].class] == 1));
1544   if (t != 0)
1545     return t;
1546
1547   /* Aside from solitaires, consider all multi-reg groups first.  */
1548   t = rld[r2].nregs - rld[r1].nregs;
1549   if (t != 0)
1550     return t;
1551
1552   /* Consider reloads in order of increasing reg-class number.  */
1553   t = (int) rld[r1].class - (int) rld[r2].class;
1554   if (t != 0)
1555     return t;
1556
1557   /* If reloads are equally urgent, sort by reload number,
1558      so that the results of qsort leave nothing to chance.  */
1559   return r1 - r2;
1560 }
1561 \f
1562 /* The cost of spilling each hard reg.  */
1563 static int spill_cost[FIRST_PSEUDO_REGISTER];
1564
1565 /* When spilling multiple hard registers, we use SPILL_COST for the first
1566    spilled hard reg and SPILL_ADD_COST for subsequent regs.  SPILL_ADD_COST
1567    only the first hard reg for a multi-reg pseudo.  */
1568 static int spill_add_cost[FIRST_PSEUDO_REGISTER];
1569
1570 /* Update the spill cost arrays, considering that pseudo REG is live.  */
1571
1572 static void
1573 count_pseudo (int reg)
1574 {
1575   int freq = REG_FREQ (reg);
1576   int r = reg_renumber[reg];
1577   int nregs;
1578
1579   if (REGNO_REG_SET_P (&pseudos_counted, reg)
1580       || REGNO_REG_SET_P (&spilled_pseudos, reg))
1581     return;
1582
1583   SET_REGNO_REG_SET (&pseudos_counted, reg);
1584
1585   gcc_assert (r >= 0);
1586
1587   spill_add_cost[r] += freq;
1588
1589   nregs = hard_regno_nregs[r][PSEUDO_REGNO_MODE (reg)];
1590   while (nregs-- > 0)
1591     spill_cost[r + nregs] += freq;
1592 }
1593
1594 /* Calculate the SPILL_COST and SPILL_ADD_COST arrays and determine the
1595    contents of BAD_SPILL_REGS for the insn described by CHAIN.  */
1596
1597 static void
1598 order_regs_for_reload (struct insn_chain *chain)
1599 {
1600   unsigned i;
1601   HARD_REG_SET used_by_pseudos;
1602   HARD_REG_SET used_by_pseudos2;
1603   reg_set_iterator rsi;
1604
1605   COPY_HARD_REG_SET (bad_spill_regs, fixed_reg_set);
1606
1607   memset (spill_cost, 0, sizeof spill_cost);
1608   memset (spill_add_cost, 0, sizeof spill_add_cost);
1609
1610   /* Count number of uses of each hard reg by pseudo regs allocated to it
1611      and then order them by decreasing use.  First exclude hard registers
1612      that are live in or across this insn.  */
1613
1614   REG_SET_TO_HARD_REG_SET (used_by_pseudos, &chain->live_throughout);
1615   REG_SET_TO_HARD_REG_SET (used_by_pseudos2, &chain->dead_or_set);
1616   IOR_HARD_REG_SET (bad_spill_regs, used_by_pseudos);
1617   IOR_HARD_REG_SET (bad_spill_regs, used_by_pseudos2);
1618
1619   /* Now find out which pseudos are allocated to it, and update
1620      hard_reg_n_uses.  */
1621   CLEAR_REG_SET (&pseudos_counted);
1622
1623   EXECUTE_IF_SET_IN_REG_SET
1624     (&chain->live_throughout, FIRST_PSEUDO_REGISTER, i, rsi)
1625     {
1626       count_pseudo (i);
1627     }
1628   EXECUTE_IF_SET_IN_REG_SET
1629     (&chain->dead_or_set, FIRST_PSEUDO_REGISTER, i, rsi)
1630     {
1631       count_pseudo (i);
1632     }
1633   CLEAR_REG_SET (&pseudos_counted);
1634 }
1635 \f
1636 /* Vector of reload-numbers showing the order in which the reloads should
1637    be processed.  */
1638 static short reload_order[MAX_RELOADS];
1639
1640 /* This is used to keep track of the spill regs used in one insn.  */
1641 static HARD_REG_SET used_spill_regs_local;
1642
1643 /* We decided to spill hard register SPILLED, which has a size of
1644    SPILLED_NREGS.  Determine how pseudo REG, which is live during the insn,
1645    is affected.  We will add it to SPILLED_PSEUDOS if necessary, and we will
1646    update SPILL_COST/SPILL_ADD_COST.  */
1647
1648 static void
1649 count_spilled_pseudo (int spilled, int spilled_nregs, int reg)
1650 {
1651   int r = reg_renumber[reg];
1652   int nregs = hard_regno_nregs[r][PSEUDO_REGNO_MODE (reg)];
1653
1654   if (REGNO_REG_SET_P (&spilled_pseudos, reg)
1655       || spilled + spilled_nregs <= r || r + nregs <= spilled)
1656     return;
1657
1658   SET_REGNO_REG_SET (&spilled_pseudos, reg);
1659
1660   spill_add_cost[r] -= REG_FREQ (reg);
1661   while (nregs-- > 0)
1662     spill_cost[r + nregs] -= REG_FREQ (reg);
1663 }
1664
1665 /* Find reload register to use for reload number ORDER.  */
1666
1667 static int
1668 find_reg (struct insn_chain *chain, int order)
1669 {
1670   int rnum = reload_order[order];
1671   struct reload *rl = rld + rnum;
1672   int best_cost = INT_MAX;
1673   int best_reg = -1;
1674   unsigned int i, j;
1675   int k;
1676   HARD_REG_SET not_usable;
1677   HARD_REG_SET used_by_other_reload;
1678   reg_set_iterator rsi;
1679
1680   COPY_HARD_REG_SET (not_usable, bad_spill_regs);
1681   IOR_HARD_REG_SET (not_usable, bad_spill_regs_global);
1682   IOR_COMPL_HARD_REG_SET (not_usable, reg_class_contents[rl->class]);
1683
1684   CLEAR_HARD_REG_SET (used_by_other_reload);
1685   for (k = 0; k < order; k++)
1686     {
1687       int other = reload_order[k];
1688
1689       if (rld[other].regno >= 0 && reloads_conflict (other, rnum))
1690         for (j = 0; j < rld[other].nregs; j++)
1691           SET_HARD_REG_BIT (used_by_other_reload, rld[other].regno + j);
1692     }
1693
1694   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1695     {
1696       unsigned int regno = i;
1697
1698       if (! TEST_HARD_REG_BIT (not_usable, regno)
1699           && ! TEST_HARD_REG_BIT (used_by_other_reload, regno)
1700           && HARD_REGNO_MODE_OK (regno, rl->mode))
1701         {
1702           int this_cost = spill_cost[regno];
1703           int ok = 1;
1704           unsigned int this_nregs = hard_regno_nregs[regno][rl->mode];
1705
1706           for (j = 1; j < this_nregs; j++)
1707             {
1708               this_cost += spill_add_cost[regno + j];
1709               if ((TEST_HARD_REG_BIT (not_usable, regno + j))
1710                   || TEST_HARD_REG_BIT (used_by_other_reload, regno + j))
1711                 ok = 0;
1712             }
1713           if (! ok)
1714             continue;
1715           if (rl->in && REG_P (rl->in) && REGNO (rl->in) == regno)
1716             this_cost--;
1717           if (rl->out && REG_P (rl->out) && REGNO (rl->out) == regno)
1718             this_cost--;
1719           if (this_cost < best_cost
1720               /* Among registers with equal cost, prefer caller-saved ones, or
1721                  use REG_ALLOC_ORDER if it is defined.  */
1722               || (this_cost == best_cost
1723 #ifdef REG_ALLOC_ORDER
1724                   && (inv_reg_alloc_order[regno]
1725                       < inv_reg_alloc_order[best_reg])
1726 #else
1727                   && call_used_regs[regno]
1728                   && ! call_used_regs[best_reg]
1729 #endif
1730                   ))
1731             {
1732               best_reg = regno;
1733               best_cost = this_cost;
1734             }
1735         }
1736     }
1737   if (best_reg == -1)
1738     return 0;
1739
1740   if (dump_file)
1741     fprintf (dump_file, "Using reg %d for reload %d\n", best_reg, rnum);
1742
1743   rl->nregs = hard_regno_nregs[best_reg][rl->mode];
1744   rl->regno = best_reg;
1745
1746   EXECUTE_IF_SET_IN_REG_SET
1747     (&chain->live_throughout, FIRST_PSEUDO_REGISTER, j, rsi)
1748     {
1749       count_spilled_pseudo (best_reg, rl->nregs, j);
1750     }
1751
1752   EXECUTE_IF_SET_IN_REG_SET
1753     (&chain->dead_or_set, FIRST_PSEUDO_REGISTER, j, rsi)
1754     {
1755       count_spilled_pseudo (best_reg, rl->nregs, j);
1756     }
1757
1758   for (i = 0; i < rl->nregs; i++)
1759     {
1760       gcc_assert (spill_cost[best_reg + i] == 0);
1761       gcc_assert (spill_add_cost[best_reg + i] == 0);
1762       SET_HARD_REG_BIT (used_spill_regs_local, best_reg + i);
1763     }
1764   return 1;
1765 }
1766
1767 /* Find more reload regs to satisfy the remaining need of an insn, which
1768    is given by CHAIN.
1769    Do it by ascending class number, since otherwise a reg
1770    might be spilled for a big class and might fail to count
1771    for a smaller class even though it belongs to that class.  */
1772
1773 static void
1774 find_reload_regs (struct insn_chain *chain)
1775 {
1776   int i;
1777
1778   /* In order to be certain of getting the registers we need,
1779      we must sort the reloads into order of increasing register class.
1780      Then our grabbing of reload registers will parallel the process
1781      that provided the reload registers.  */
1782   for (i = 0; i < chain->n_reloads; i++)
1783     {
1784       /* Show whether this reload already has a hard reg.  */
1785       if (chain->rld[i].reg_rtx)
1786         {
1787           int regno = REGNO (chain->rld[i].reg_rtx);
1788           chain->rld[i].regno = regno;
1789           chain->rld[i].nregs
1790             = hard_regno_nregs[regno][GET_MODE (chain->rld[i].reg_rtx)];
1791         }
1792       else
1793         chain->rld[i].regno = -1;
1794       reload_order[i] = i;
1795     }
1796
1797   n_reloads = chain->n_reloads;
1798   memcpy (rld, chain->rld, n_reloads * sizeof (struct reload));
1799
1800   CLEAR_HARD_REG_SET (used_spill_regs_local);
1801
1802   if (dump_file)
1803     fprintf (dump_file, "Spilling for insn %d.\n", INSN_UID (chain->insn));
1804
1805   qsort (reload_order, n_reloads, sizeof (short), reload_reg_class_lower);
1806
1807   /* Compute the order of preference for hard registers to spill.  */
1808
1809   order_regs_for_reload (chain);
1810
1811   for (i = 0; i < n_reloads; i++)
1812     {
1813       int r = reload_order[i];
1814
1815       /* Ignore reloads that got marked inoperative.  */
1816       if ((rld[r].out != 0 || rld[r].in != 0 || rld[r].secondary_p)
1817           && ! rld[r].optional
1818           && rld[r].regno == -1)
1819         if (! find_reg (chain, i))
1820           {
1821             spill_failure (chain->insn, rld[r].class);
1822             failure = 1;
1823             return;
1824           }
1825     }
1826
1827   COPY_HARD_REG_SET (chain->used_spill_regs, used_spill_regs_local);
1828   IOR_HARD_REG_SET (used_spill_regs, used_spill_regs_local);
1829
1830   memcpy (chain->rld, rld, n_reloads * sizeof (struct reload));
1831 }
1832
1833 static void
1834 select_reload_regs (void)
1835 {
1836   struct insn_chain *chain;
1837
1838   /* Try to satisfy the needs for each insn.  */
1839   for (chain = insns_need_reload; chain != 0;
1840        chain = chain->next_need_reload)
1841     find_reload_regs (chain);
1842 }
1843 \f
1844 /* Delete all insns that were inserted by emit_caller_save_insns during
1845    this iteration.  */
1846 static void
1847 delete_caller_save_insns (void)
1848 {
1849   struct insn_chain *c = reload_insn_chain;
1850
1851   while (c != 0)
1852     {
1853       while (c != 0 && c->is_caller_save_insn)
1854         {
1855           struct insn_chain *next = c->next;
1856           rtx insn = c->insn;
1857
1858           if (c == reload_insn_chain)
1859             reload_insn_chain = next;
1860           delete_insn (insn);
1861
1862           if (next)
1863             next->prev = c->prev;
1864           if (c->prev)
1865             c->prev->next = next;
1866           c->next = unused_insn_chains;
1867           unused_insn_chains = c;
1868           c = next;
1869         }
1870       if (c != 0)
1871         c = c->next;
1872     }
1873 }
1874 \f
1875 /* Handle the failure to find a register to spill.
1876    INSN should be one of the insns which needed this particular spill reg.  */
1877
1878 static void
1879 spill_failure (rtx insn, enum reg_class class)
1880 {
1881   if (asm_noperands (PATTERN (insn)) >= 0)
1882     error_for_asm (insn, "can't find a register in class %qs while "
1883                    "reloading %<asm%>",
1884                    reg_class_names[class]);
1885   else
1886     {
1887       error ("unable to find a register to spill in class %qs",
1888              reg_class_names[class]);
1889       fatal_insn ("this is the insn:", insn);
1890     }
1891 }
1892 \f
1893 /* Delete an unneeded INSN and any previous insns who sole purpose is loading
1894    data that is dead in INSN.  */
1895
1896 static void
1897 delete_dead_insn (rtx insn)
1898 {
1899   rtx prev = prev_real_insn (insn);
1900   rtx prev_dest;
1901
1902   /* If the previous insn sets a register that dies in our insn, delete it
1903      too.  */
1904   if (prev && GET_CODE (PATTERN (prev)) == SET
1905       && (prev_dest = SET_DEST (PATTERN (prev)), REG_P (prev_dest))
1906       && reg_mentioned_p (prev_dest, PATTERN (insn))
1907       && find_regno_note (insn, REG_DEAD, REGNO (prev_dest))
1908       && ! side_effects_p (SET_SRC (PATTERN (prev))))
1909     delete_dead_insn (prev);
1910
1911   SET_INSN_DELETED (insn);
1912 }
1913
1914 /* Modify the home of pseudo-reg I.
1915    The new home is present in reg_renumber[I].
1916
1917    FROM_REG may be the hard reg that the pseudo-reg is being spilled from;
1918    or it may be -1, meaning there is none or it is not relevant.
1919    This is used so that all pseudos spilled from a given hard reg
1920    can share one stack slot.  */
1921
1922 static void
1923 alter_reg (int i, int from_reg)
1924 {
1925   /* When outputting an inline function, this can happen
1926      for a reg that isn't actually used.  */
1927   if (regno_reg_rtx[i] == 0)
1928     return;
1929
1930   /* If the reg got changed to a MEM at rtl-generation time,
1931      ignore it.  */
1932   if (!REG_P (regno_reg_rtx[i]))
1933     return;
1934
1935   /* Modify the reg-rtx to contain the new hard reg
1936      number or else to contain its pseudo reg number.  */
1937   REGNO (regno_reg_rtx[i])
1938     = reg_renumber[i] >= 0 ? reg_renumber[i] : i;
1939
1940   /* If we have a pseudo that is needed but has no hard reg or equivalent,
1941      allocate a stack slot for it.  */
1942
1943   if (reg_renumber[i] < 0
1944       && REG_N_REFS (i) > 0
1945       && reg_equiv_constant[i] == 0
1946       && reg_equiv_memory_loc[i] == 0)
1947     {
1948       rtx x;
1949       unsigned int inherent_size = PSEUDO_REGNO_BYTES (i);
1950       unsigned int total_size = MAX (inherent_size, reg_max_ref_width[i]);
1951       int adjust = 0;
1952
1953       /* Each pseudo reg has an inherent size which comes from its own mode,
1954          and a total size which provides room for paradoxical subregs
1955          which refer to the pseudo reg in wider modes.
1956
1957          We can use a slot already allocated if it provides both
1958          enough inherent space and enough total space.
1959          Otherwise, we allocate a new slot, making sure that it has no less
1960          inherent space, and no less total space, then the previous slot.  */
1961       if (from_reg == -1)
1962         {
1963           /* No known place to spill from => no slot to reuse.  */
1964           x = assign_stack_local (GET_MODE (regno_reg_rtx[i]), total_size,
1965                                   inherent_size == total_size ? 0 : -1);
1966           if (BYTES_BIG_ENDIAN)
1967             /* Cancel the  big-endian correction done in assign_stack_local.
1968                Get the address of the beginning of the slot.
1969                This is so we can do a big-endian correction unconditionally
1970                below.  */
1971             adjust = inherent_size - total_size;
1972
1973           /* Nothing can alias this slot except this pseudo.  */
1974           set_mem_alias_set (x, new_alias_set ());
1975         }
1976
1977       /* Reuse a stack slot if possible.  */
1978       else if (spill_stack_slot[from_reg] != 0
1979                && spill_stack_slot_width[from_reg] >= total_size
1980                && (GET_MODE_SIZE (GET_MODE (spill_stack_slot[from_reg]))
1981                    >= inherent_size))
1982         x = spill_stack_slot[from_reg];
1983
1984       /* Allocate a bigger slot.  */
1985       else
1986         {
1987           /* Compute maximum size needed, both for inherent size
1988              and for total size.  */
1989           enum machine_mode mode = GET_MODE (regno_reg_rtx[i]);
1990           rtx stack_slot;
1991
1992           if (spill_stack_slot[from_reg])
1993             {
1994               if (GET_MODE_SIZE (GET_MODE (spill_stack_slot[from_reg]))
1995                   > inherent_size)
1996                 mode = GET_MODE (spill_stack_slot[from_reg]);
1997               if (spill_stack_slot_width[from_reg] > total_size)
1998                 total_size = spill_stack_slot_width[from_reg];
1999             }
2000
2001           /* Make a slot with that size.  */
2002           x = assign_stack_local (mode, total_size,
2003                                   inherent_size == total_size ? 0 : -1);
2004           stack_slot = x;
2005
2006           /* All pseudos mapped to this slot can alias each other.  */
2007           if (spill_stack_slot[from_reg])
2008             set_mem_alias_set (x, MEM_ALIAS_SET (spill_stack_slot[from_reg]));
2009           else
2010             set_mem_alias_set (x, new_alias_set ());
2011
2012           if (BYTES_BIG_ENDIAN)
2013             {
2014               /* Cancel the  big-endian correction done in assign_stack_local.
2015                  Get the address of the beginning of the slot.
2016                  This is so we can do a big-endian correction unconditionally
2017                  below.  */
2018               adjust = GET_MODE_SIZE (mode) - total_size;
2019               if (adjust)
2020                 stack_slot
2021                   = adjust_address_nv (x, mode_for_size (total_size
2022                                                          * BITS_PER_UNIT,
2023                                                          MODE_INT, 1),
2024                                        adjust);
2025             }
2026
2027           spill_stack_slot[from_reg] = stack_slot;
2028           spill_stack_slot_width[from_reg] = total_size;
2029         }
2030
2031       /* On a big endian machine, the "address" of the slot
2032          is the address of the low part that fits its inherent mode.  */
2033       if (BYTES_BIG_ENDIAN && inherent_size < total_size)
2034         adjust += (total_size - inherent_size);
2035
2036       /* If we have any adjustment to make, or if the stack slot is the
2037          wrong mode, make a new stack slot.  */
2038       x = adjust_address_nv (x, GET_MODE (regno_reg_rtx[i]), adjust);
2039
2040       /* If we have a decl for the original register, set it for the
2041          memory.  If this is a shared MEM, make a copy.  */
2042       if (REG_EXPR (regno_reg_rtx[i])
2043           && DECL_P (REG_EXPR (regno_reg_rtx[i])))
2044         {
2045           rtx decl = DECL_RTL_IF_SET (REG_EXPR (regno_reg_rtx[i]));
2046
2047           /* We can do this only for the DECLs home pseudo, not for
2048              any copies of it, since otherwise when the stack slot
2049              is reused, nonoverlapping_memrefs_p might think they
2050              cannot overlap.  */
2051           if (decl && REG_P (decl) && REGNO (decl) == (unsigned) i)
2052             {
2053               if (from_reg != -1 && spill_stack_slot[from_reg] == x)
2054                 x = copy_rtx (x);
2055
2056               set_mem_attrs_from_reg (x, regno_reg_rtx[i]);
2057             }
2058         }
2059
2060       /* Save the stack slot for later.  */
2061       reg_equiv_memory_loc[i] = x;
2062     }
2063 }
2064
2065 /* Mark the slots in regs_ever_live for the hard regs
2066    used by pseudo-reg number REGNO.  */
2067
2068 void
2069 mark_home_live (int regno)
2070 {
2071   int i, lim;
2072
2073   i = reg_renumber[regno];
2074   if (i < 0)
2075     return;
2076   lim = i + hard_regno_nregs[i][PSEUDO_REGNO_MODE (regno)];
2077   while (i < lim)
2078     regs_ever_live[i++] = 1;
2079 }
2080 \f
2081 /* This function handles the tracking of elimination offsets around branches.
2082
2083    X is a piece of RTL being scanned.
2084
2085    INSN is the insn that it came from, if any.
2086
2087    INITIAL_P is nonzero if we are to set the offset to be the initial
2088    offset and zero if we are setting the offset of the label to be the
2089    current offset.  */
2090
2091 static void
2092 set_label_offsets (rtx x, rtx insn, int initial_p)
2093 {
2094   enum rtx_code code = GET_CODE (x);
2095   rtx tem;
2096   unsigned int i;
2097   struct elim_table *p;
2098
2099   switch (code)
2100     {
2101     case LABEL_REF:
2102       if (LABEL_REF_NONLOCAL_P (x))
2103         return;
2104
2105       x = XEXP (x, 0);
2106
2107       /* ... fall through ...  */
2108
2109     case CODE_LABEL:
2110       /* If we know nothing about this label, set the desired offsets.  Note
2111          that this sets the offset at a label to be the offset before a label
2112          if we don't know anything about the label.  This is not correct for
2113          the label after a BARRIER, but is the best guess we can make.  If
2114          we guessed wrong, we will suppress an elimination that might have
2115          been possible had we been able to guess correctly.  */
2116
2117       if (! offsets_known_at[CODE_LABEL_NUMBER (x) - first_label_num])
2118         {
2119           for (i = 0; i < NUM_ELIMINABLE_REGS; i++)
2120             offsets_at[CODE_LABEL_NUMBER (x) - first_label_num][i]
2121               = (initial_p ? reg_eliminate[i].initial_offset
2122                  : reg_eliminate[i].offset);
2123           offsets_known_at[CODE_LABEL_NUMBER (x) - first_label_num] = 1;
2124         }
2125
2126       /* Otherwise, if this is the definition of a label and it is
2127          preceded by a BARRIER, set our offsets to the known offset of
2128          that label.  */
2129
2130       else if (x == insn
2131                && (tem = prev_nonnote_insn (insn)) != 0
2132                && BARRIER_P (tem))
2133         set_offsets_for_label (insn);
2134       else
2135         /* If neither of the above cases is true, compare each offset
2136            with those previously recorded and suppress any eliminations
2137            where the offsets disagree.  */
2138
2139         for (i = 0; i < NUM_ELIMINABLE_REGS; i++)
2140           if (offsets_at[CODE_LABEL_NUMBER (x) - first_label_num][i]
2141               != (initial_p ? reg_eliminate[i].initial_offset
2142                   : reg_eliminate[i].offset))
2143             reg_eliminate[i].can_eliminate = 0;
2144
2145       return;
2146
2147     case JUMP_INSN:
2148       set_label_offsets (PATTERN (insn), insn, initial_p);
2149
2150       /* ... fall through ...  */
2151
2152     case INSN:
2153     case CALL_INSN:
2154       /* Any labels mentioned in REG_LABEL notes can be branched to indirectly
2155          and hence must have all eliminations at their initial offsets.  */
2156       for (tem = REG_NOTES (x); tem; tem = XEXP (tem, 1))
2157         if (REG_NOTE_KIND (tem) == REG_LABEL)
2158           set_label_offsets (XEXP (tem, 0), insn, 1);
2159       return;
2160
2161     case PARALLEL:
2162     case ADDR_VEC:
2163     case ADDR_DIFF_VEC:
2164       /* Each of the labels in the parallel or address vector must be
2165          at their initial offsets.  We want the first field for PARALLEL
2166          and ADDR_VEC and the second field for ADDR_DIFF_VEC.  */
2167
2168       for (i = 0; i < (unsigned) XVECLEN (x, code == ADDR_DIFF_VEC); i++)
2169         set_label_offsets (XVECEXP (x, code == ADDR_DIFF_VEC, i),
2170                            insn, initial_p);
2171       return;
2172
2173     case SET:
2174       /* We only care about setting PC.  If the source is not RETURN,
2175          IF_THEN_ELSE, or a label, disable any eliminations not at
2176          their initial offsets.  Similarly if any arm of the IF_THEN_ELSE
2177          isn't one of those possibilities.  For branches to a label,
2178          call ourselves recursively.
2179
2180          Note that this can disable elimination unnecessarily when we have
2181          a non-local goto since it will look like a non-constant jump to
2182          someplace in the current function.  This isn't a significant
2183          problem since such jumps will normally be when all elimination
2184          pairs are back to their initial offsets.  */
2185
2186       if (SET_DEST (x) != pc_rtx)
2187         return;
2188
2189       switch (GET_CODE (SET_SRC (x)))
2190         {
2191         case PC:
2192         case RETURN:
2193           return;
2194
2195         case LABEL_REF:
2196           set_label_offsets (SET_SRC (x), insn, initial_p);
2197           return;
2198
2199         case IF_THEN_ELSE:
2200           tem = XEXP (SET_SRC (x), 1);
2201           if (GET_CODE (tem) == LABEL_REF)
2202             set_label_offsets (XEXP (tem, 0), insn, initial_p);
2203           else if (GET_CODE (tem) != PC && GET_CODE (tem) != RETURN)
2204             break;
2205
2206           tem = XEXP (SET_SRC (x), 2);
2207           if (GET_CODE (tem) == LABEL_REF)
2208             set_label_offsets (XEXP (tem, 0), insn, initial_p);
2209           else if (GET_CODE (tem) != PC && GET_CODE (tem) != RETURN)
2210             break;
2211           return;
2212
2213         default:
2214           break;
2215         }
2216
2217       /* If we reach here, all eliminations must be at their initial
2218          offset because we are doing a jump to a variable address.  */
2219       for (p = reg_eliminate; p < &reg_eliminate[NUM_ELIMINABLE_REGS]; p++)
2220         if (p->offset != p->initial_offset)
2221           p->can_eliminate = 0;
2222       break;
2223
2224     default:
2225       break;
2226     }
2227 }
2228 \f
2229 /* Scan X and replace any eliminable registers (such as fp) with a
2230    replacement (such as sp), plus an offset.
2231
2232    MEM_MODE is the mode of an enclosing MEM.  We need this to know how
2233    much to adjust a register for, e.g., PRE_DEC.  Also, if we are inside a
2234    MEM, we are allowed to replace a sum of a register and the constant zero
2235    with the register, which we cannot do outside a MEM.  In addition, we need
2236    to record the fact that a register is referenced outside a MEM.
2237
2238    If INSN is an insn, it is the insn containing X.  If we replace a REG
2239    in a SET_DEST with an equivalent MEM and INSN is nonzero, write a
2240    CLOBBER of the pseudo after INSN so find_equiv_regs will know that
2241    the REG is being modified.
2242
2243    Alternatively, INSN may be a note (an EXPR_LIST or INSN_LIST).
2244    That's used when we eliminate in expressions stored in notes.
2245    This means, do not set ref_outside_mem even if the reference
2246    is outside of MEMs.
2247
2248    REG_EQUIV_MEM and REG_EQUIV_ADDRESS contain address that have had
2249    replacements done assuming all offsets are at their initial values.  If
2250    they are not, or if REG_EQUIV_ADDRESS is nonzero for a pseudo we
2251    encounter, return the actual location so that find_reloads will do
2252    the proper thing.  */
2253
2254 rtx
2255 eliminate_regs (rtx x, enum machine_mode mem_mode, rtx insn)
2256 {
2257   enum rtx_code code = GET_CODE (x);
2258   struct elim_table *ep;
2259   int regno;
2260   rtx new;
2261   int i, j;
2262   const char *fmt;
2263   int copied = 0;
2264
2265   if (! current_function_decl)
2266     return x;
2267
2268   switch (code)
2269     {
2270     case CONST_INT:
2271     case CONST_DOUBLE:
2272     case CONST_VECTOR:
2273     case CONST:
2274     case SYMBOL_REF:
2275     case CODE_LABEL:
2276     case PC:
2277     case CC0:
2278     case ASM_INPUT:
2279     case ADDR_VEC:
2280     case ADDR_DIFF_VEC:
2281     case RETURN:
2282       return x;
2283
2284     case REG:
2285       regno = REGNO (x);
2286
2287       /* First handle the case where we encounter a bare register that
2288          is eliminable.  Replace it with a PLUS.  */
2289       if (regno < FIRST_PSEUDO_REGISTER)
2290         {
2291           for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS];
2292                ep++)
2293             if (ep->from_rtx == x && ep->can_eliminate)
2294               return plus_constant (ep->to_rtx, ep->previous_offset);
2295
2296         }
2297       else if (reg_renumber && reg_renumber[regno] < 0
2298                && reg_equiv_constant && reg_equiv_constant[regno]
2299                && ! CONSTANT_P (reg_equiv_constant[regno]))
2300         return eliminate_regs (copy_rtx (reg_equiv_constant[regno]),
2301                                mem_mode, insn);
2302       return x;
2303
2304     /* You might think handling MINUS in a manner similar to PLUS is a
2305        good idea.  It is not.  It has been tried multiple times and every
2306        time the change has had to have been reverted.
2307
2308        Other parts of reload know a PLUS is special (gen_reload for example)
2309        and require special code to handle code a reloaded PLUS operand.
2310
2311        Also consider backends where the flags register is clobbered by a
2312        MINUS, but we can emit a PLUS that does not clobber flags (IA-32,
2313        lea instruction comes to mind).  If we try to reload a MINUS, we
2314        may kill the flags register that was holding a useful value.
2315
2316        So, please before trying to handle MINUS, consider reload as a
2317        whole instead of this little section as well as the backend issues.  */
2318     case PLUS:
2319       /* If this is the sum of an eliminable register and a constant, rework
2320          the sum.  */
2321       if (REG_P (XEXP (x, 0))
2322           && REGNO (XEXP (x, 0)) < FIRST_PSEUDO_REGISTER
2323           && CONSTANT_P (XEXP (x, 1)))
2324         {
2325           for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS];
2326                ep++)
2327             if (ep->from_rtx == XEXP (x, 0) && ep->can_eliminate)
2328               {
2329                 /* The only time we want to replace a PLUS with a REG (this
2330                    occurs when the constant operand of the PLUS is the negative
2331                    of the offset) is when we are inside a MEM.  We won't want
2332                    to do so at other times because that would change the
2333                    structure of the insn in a way that reload can't handle.
2334                    We special-case the commonest situation in
2335                    eliminate_regs_in_insn, so just replace a PLUS with a
2336                    PLUS here, unless inside a MEM.  */
2337                 if (mem_mode != 0 && GET_CODE (XEXP (x, 1)) == CONST_INT
2338                     && INTVAL (XEXP (x, 1)) == - ep->previous_offset)
2339                   return ep->to_rtx;
2340                 else
2341                   return gen_rtx_PLUS (Pmode, ep->to_rtx,
2342                                        plus_constant (XEXP (x, 1),
2343                                                       ep->previous_offset));
2344               }
2345
2346           /* If the register is not eliminable, we are done since the other
2347              operand is a constant.  */
2348           return x;
2349         }
2350
2351       /* If this is part of an address, we want to bring any constant to the
2352          outermost PLUS.  We will do this by doing register replacement in
2353          our operands and seeing if a constant shows up in one of them.
2354
2355          Note that there is no risk of modifying the structure of the insn,
2356          since we only get called for its operands, thus we are either
2357          modifying the address inside a MEM, or something like an address
2358          operand of a load-address insn.  */
2359
2360       {
2361         rtx new0 = eliminate_regs (XEXP (x, 0), mem_mode, insn);
2362         rtx new1 = eliminate_regs (XEXP (x, 1), mem_mode, insn);
2363
2364         if (reg_renumber && (new0 != XEXP (x, 0) || new1 != XEXP (x, 1)))
2365           {
2366             /* If one side is a PLUS and the other side is a pseudo that
2367                didn't get a hard register but has a reg_equiv_constant,
2368                we must replace the constant here since it may no longer
2369                be in the position of any operand.  */
2370             if (GET_CODE (new0) == PLUS && REG_P (new1)
2371                 && REGNO (new1) >= FIRST_PSEUDO_REGISTER
2372                 && reg_renumber[REGNO (new1)] < 0
2373                 && reg_equiv_constant != 0
2374                 && reg_equiv_constant[REGNO (new1)] != 0)
2375               new1 = reg_equiv_constant[REGNO (new1)];
2376             else if (GET_CODE (new1) == PLUS && REG_P (new0)
2377                      && REGNO (new0) >= FIRST_PSEUDO_REGISTER
2378                      && reg_renumber[REGNO (new0)] < 0
2379                      && reg_equiv_constant[REGNO (new0)] != 0)
2380               new0 = reg_equiv_constant[REGNO (new0)];
2381
2382             new = form_sum (new0, new1);
2383
2384             /* As above, if we are not inside a MEM we do not want to
2385                turn a PLUS into something else.  We might try to do so here
2386                for an addition of 0 if we aren't optimizing.  */
2387             if (! mem_mode && GET_CODE (new) != PLUS)
2388               return gen_rtx_PLUS (GET_MODE (x), new, const0_rtx);
2389             else
2390               return new;
2391           }
2392       }
2393       return x;
2394
2395     case MULT:
2396       /* If this is the product of an eliminable register and a
2397          constant, apply the distribute law and move the constant out
2398          so that we have (plus (mult ..) ..).  This is needed in order
2399          to keep load-address insns valid.   This case is pathological.
2400          We ignore the possibility of overflow here.  */
2401       if (REG_P (XEXP (x, 0))
2402           && REGNO (XEXP (x, 0)) < FIRST_PSEUDO_REGISTER
2403           && GET_CODE (XEXP (x, 1)) == CONST_INT)
2404         for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS];
2405              ep++)
2406           if (ep->from_rtx == XEXP (x, 0) && ep->can_eliminate)
2407             {
2408               if (! mem_mode
2409                   /* Refs inside notes don't count for this purpose.  */
2410                   && ! (insn != 0 && (GET_CODE (insn) == EXPR_LIST
2411                                       || GET_CODE (insn) == INSN_LIST)))
2412                 ep->ref_outside_mem = 1;
2413
2414               return
2415                 plus_constant (gen_rtx_MULT (Pmode, ep->to_rtx, XEXP (x, 1)),
2416                                ep->previous_offset * INTVAL (XEXP (x, 1)));
2417             }
2418
2419       /* ... fall through ...  */
2420
2421     case CALL:
2422     case COMPARE:
2423     /* See comments before PLUS about handling MINUS.  */
2424     case MINUS:
2425     case DIV:      case UDIV:
2426     case MOD:      case UMOD:
2427     case AND:      case IOR:      case XOR:
2428     case ROTATERT: case ROTATE:
2429     case ASHIFTRT: case LSHIFTRT: case ASHIFT:
2430     case NE:       case EQ:
2431     case GE:       case GT:       case GEU:    case GTU:
2432     case LE:       case LT:       case LEU:    case LTU:
2433       {
2434         rtx new0 = eliminate_regs (XEXP (x, 0), mem_mode, insn);
2435         rtx new1
2436           = XEXP (x, 1) ? eliminate_regs (XEXP (x, 1), mem_mode, insn) : 0;
2437
2438         if (new0 != XEXP (x, 0) || new1 != XEXP (x, 1))
2439           return gen_rtx_fmt_ee (code, GET_MODE (x), new0, new1);
2440       }
2441       return x;
2442
2443     case EXPR_LIST:
2444       /* If we have something in XEXP (x, 0), the usual case, eliminate it.  */
2445       if (XEXP (x, 0))
2446         {
2447           new = eliminate_regs (XEXP (x, 0), mem_mode, insn);
2448           if (new != XEXP (x, 0))
2449             {
2450               /* If this is a REG_DEAD note, it is not valid anymore.
2451                  Using the eliminated version could result in creating a
2452                  REG_DEAD note for the stack or frame pointer.  */
2453               if (GET_MODE (x) == REG_DEAD)
2454                 return (XEXP (x, 1)
2455                         ? eliminate_regs (XEXP (x, 1), mem_mode, insn)
2456                         : NULL_RTX);
2457
2458               x = gen_rtx_EXPR_LIST (REG_NOTE_KIND (x), new, XEXP (x, 1));
2459             }
2460         }
2461
2462       /* ... fall through ...  */
2463
2464     case INSN_LIST:
2465       /* Now do eliminations in the rest of the chain.  If this was
2466          an EXPR_LIST, this might result in allocating more memory than is
2467          strictly needed, but it simplifies the code.  */
2468       if (XEXP (x, 1))
2469         {
2470           new = eliminate_regs (XEXP (x, 1), mem_mode, insn);
2471           if (new != XEXP (x, 1))
2472             return
2473               gen_rtx_fmt_ee (GET_CODE (x), GET_MODE (x), XEXP (x, 0), new);
2474         }
2475       return x;
2476
2477     case PRE_INC:
2478     case POST_INC:
2479     case PRE_DEC:
2480     case POST_DEC:
2481     case STRICT_LOW_PART:
2482     case NEG:          case NOT:
2483     case SIGN_EXTEND:  case ZERO_EXTEND:
2484     case TRUNCATE:     case FLOAT_EXTEND: case FLOAT_TRUNCATE:
2485     case FLOAT:        case FIX:
2486     case UNSIGNED_FIX: case UNSIGNED_FLOAT:
2487     case ABS:
2488     case SQRT:
2489     case FFS:
2490     case CLZ:
2491     case CTZ:
2492     case POPCOUNT:
2493     case PARITY:
2494       new = eliminate_regs (XEXP (x, 0), mem_mode, insn);
2495       if (new != XEXP (x, 0))
2496         return gen_rtx_fmt_e (code, GET_MODE (x), new);
2497       return x;
2498
2499     case SUBREG:
2500       /* Similar to above processing, but preserve SUBREG_BYTE.
2501          Convert (subreg (mem)) to (mem) if not paradoxical.
2502          Also, if we have a non-paradoxical (subreg (pseudo)) and the
2503          pseudo didn't get a hard reg, we must replace this with the
2504          eliminated version of the memory location because push_reload
2505          may do the replacement in certain circumstances.  */
2506       if (REG_P (SUBREG_REG (x))
2507           && (GET_MODE_SIZE (GET_MODE (x))
2508               <= GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
2509           && reg_equiv_memory_loc != 0
2510           && reg_equiv_memory_loc[REGNO (SUBREG_REG (x))] != 0)
2511         {
2512           new = SUBREG_REG (x);
2513         }
2514       else
2515         new = eliminate_regs (SUBREG_REG (x), mem_mode, insn);
2516
2517       if (new != SUBREG_REG (x))
2518         {
2519           int x_size = GET_MODE_SIZE (GET_MODE (x));
2520           int new_size = GET_MODE_SIZE (GET_MODE (new));
2521
2522           if (MEM_P (new)
2523               && ((x_size < new_size
2524 #ifdef WORD_REGISTER_OPERATIONS
2525                    /* On these machines, combine can create rtl of the form
2526                       (set (subreg:m1 (reg:m2 R) 0) ...)
2527                       where m1 < m2, and expects something interesting to
2528                       happen to the entire word.  Moreover, it will use the
2529                       (reg:m2 R) later, expecting all bits to be preserved.
2530                       So if the number of words is the same, preserve the
2531                       subreg so that push_reload can see it.  */
2532                    && ! ((x_size - 1) / UNITS_PER_WORD
2533                          == (new_size -1 ) / UNITS_PER_WORD)
2534 #endif
2535                    )
2536                   || x_size == new_size)
2537               )
2538             return adjust_address_nv (new, GET_MODE (x), SUBREG_BYTE (x));
2539           else
2540             return gen_rtx_SUBREG (GET_MODE (x), new, SUBREG_BYTE (x));
2541         }
2542
2543       return x;
2544
2545     case MEM:
2546       /* Our only special processing is to pass the mode of the MEM to our
2547          recursive call and copy the flags.  While we are here, handle this
2548          case more efficiently.  */
2549       return
2550         replace_equiv_address_nv (x,
2551                                   eliminate_regs (XEXP (x, 0),
2552                                                   GET_MODE (x), insn));
2553
2554     case USE:
2555       /* Handle insn_list USE that a call to a pure function may generate.  */
2556       new = eliminate_regs (XEXP (x, 0), 0, insn);
2557       if (new != XEXP (x, 0))
2558         return gen_rtx_USE (GET_MODE (x), new);
2559       return x;
2560
2561     case CLOBBER:
2562     case ASM_OPERANDS:
2563     case SET:
2564       gcc_unreachable ();
2565
2566     default:
2567       break;
2568     }
2569
2570   /* Process each of our operands recursively.  If any have changed, make a
2571      copy of the rtx.  */
2572   fmt = GET_RTX_FORMAT (code);
2573   for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
2574     {
2575       if (*fmt == 'e')
2576         {
2577           new = eliminate_regs (XEXP (x, i), mem_mode, insn);
2578           if (new != XEXP (x, i) && ! copied)
2579             {
2580               rtx new_x = rtx_alloc (code);
2581               memcpy (new_x, x, RTX_SIZE (code));
2582               x = new_x;
2583               copied = 1;
2584             }
2585           XEXP (x, i) = new;
2586         }
2587       else if (*fmt == 'E')
2588         {
2589           int copied_vec = 0;
2590           for (j = 0; j < XVECLEN (x, i); j++)
2591             {
2592               new = eliminate_regs (XVECEXP (x, i, j), mem_mode, insn);
2593               if (new != XVECEXP (x, i, j) && ! copied_vec)
2594                 {
2595                   rtvec new_v = gen_rtvec_v (XVECLEN (x, i),
2596                                              XVEC (x, i)->elem);
2597                   if (! copied)
2598                     {
2599                       rtx new_x = rtx_alloc (code);
2600                       memcpy (new_x, x, RTX_SIZE (code));
2601                       x = new_x;
2602                       copied = 1;
2603                     }
2604                   XVEC (x, i) = new_v;
2605                   copied_vec = 1;
2606                 }
2607               XVECEXP (x, i, j) = new;
2608             }
2609         }
2610     }
2611
2612   return x;
2613 }
2614
2615 /* Scan rtx X for modifications of elimination target registers.  Update
2616    the table of eliminables to reflect the changed state.  MEM_MODE is
2617    the mode of an enclosing MEM rtx, or VOIDmode if not within a MEM.  */
2618
2619 static void
2620 elimination_effects (rtx x, enum machine_mode mem_mode)
2621 {
2622   enum rtx_code code = GET_CODE (x);
2623   struct elim_table *ep;
2624   int regno;
2625   int i, j;
2626   const char *fmt;
2627
2628   switch (code)
2629     {
2630     case CONST_INT:
2631     case CONST_DOUBLE:
2632     case CONST_VECTOR:
2633     case CONST:
2634     case SYMBOL_REF:
2635     case CODE_LABEL:
2636     case PC:
2637     case CC0:
2638     case ASM_INPUT:
2639     case ADDR_VEC:
2640     case ADDR_DIFF_VEC:
2641     case RETURN:
2642       return;
2643
2644     case REG:
2645       regno = REGNO (x);
2646
2647       /* First handle the case where we encounter a bare register that
2648          is eliminable.  Replace it with a PLUS.  */
2649       if (regno < FIRST_PSEUDO_REGISTER)
2650         {
2651           for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS];
2652                ep++)
2653             if (ep->from_rtx == x && ep->can_eliminate)
2654               {
2655                 if (! mem_mode)
2656                   ep->ref_outside_mem = 1;
2657                 return;
2658               }
2659
2660         }
2661       else if (reg_renumber[regno] < 0 && reg_equiv_constant
2662                && reg_equiv_constant[regno]
2663                && ! function_invariant_p (reg_equiv_constant[regno]))
2664         elimination_effects (reg_equiv_constant[regno], mem_mode);
2665       return;
2666
2667     case PRE_INC:
2668     case POST_INC:
2669     case PRE_DEC:
2670     case POST_DEC:
2671     case POST_MODIFY:
2672     case PRE_MODIFY:
2673       for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
2674         if (ep->to_rtx == XEXP (x, 0))
2675           {
2676             int size = GET_MODE_SIZE (mem_mode);
2677
2678             /* If more bytes than MEM_MODE are pushed, account for them.  */
2679 #ifdef PUSH_ROUNDING
2680             if (ep->to_rtx == stack_pointer_rtx)
2681               size = PUSH_ROUNDING (size);
2682 #endif
2683             if (code == PRE_DEC || code == POST_DEC)
2684               ep->offset += size;
2685             else if (code == PRE_INC || code == POST_INC)
2686               ep->offset -= size;
2687             else if ((code == PRE_MODIFY || code == POST_MODIFY)
2688                      && GET_CODE (XEXP (x, 1)) == PLUS
2689                      && XEXP (x, 0) == XEXP (XEXP (x, 1), 0)
2690                      && CONSTANT_P (XEXP (XEXP (x, 1), 1)))
2691               ep->offset -= INTVAL (XEXP (XEXP (x, 1), 1));
2692           }
2693
2694       /* These two aren't unary operators.  */
2695       if (code == POST_MODIFY || code == PRE_MODIFY)
2696         break;
2697
2698       /* Fall through to generic unary operation case.  */
2699     case STRICT_LOW_PART:
2700     case NEG:          case NOT:
2701     case SIGN_EXTEND:  case ZERO_EXTEND:
2702     case TRUNCATE:     case FLOAT_EXTEND: case FLOAT_TRUNCATE:
2703     case FLOAT:        case FIX:
2704     case UNSIGNED_FIX: case UNSIGNED_FLOAT:
2705     case ABS:
2706     case SQRT:
2707     case FFS:
2708     case CLZ:
2709     case CTZ:
2710     case POPCOUNT:
2711     case PARITY:
2712       elimination_effects (XEXP (x, 0), mem_mode);
2713       return;
2714
2715     case SUBREG:
2716       if (REG_P (SUBREG_REG (x))
2717           && (GET_MODE_SIZE (GET_MODE (x))
2718               <= GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
2719           && reg_equiv_memory_loc != 0
2720           && reg_equiv_memory_loc[REGNO (SUBREG_REG (x))] != 0)
2721         return;
2722
2723       elimination_effects (SUBREG_REG (x), mem_mode);
2724       return;
2725
2726     case USE:
2727       /* If using a register that is the source of an eliminate we still
2728          think can be performed, note it cannot be performed since we don't
2729          know how this register is used.  */
2730       for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
2731         if (ep->from_rtx == XEXP (x, 0))
2732           ep->can_eliminate = 0;
2733
2734       elimination_effects (XEXP (x, 0), mem_mode);
2735       return;
2736
2737     case CLOBBER:
2738       /* If clobbering a register that is the replacement register for an
2739          elimination we still think can be performed, note that it cannot
2740          be performed.  Otherwise, we need not be concerned about it.  */
2741       for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
2742         if (ep->to_rtx == XEXP (x, 0))
2743           ep->can_eliminate = 0;
2744
2745       elimination_effects (XEXP (x, 0), mem_mode);
2746       return;
2747
2748     case SET:
2749       /* Check for setting a register that we know about.  */
2750       if (REG_P (SET_DEST (x)))
2751         {
2752           /* See if this is setting the replacement register for an
2753              elimination.
2754
2755              If DEST is the hard frame pointer, we do nothing because we
2756              assume that all assignments to the frame pointer are for
2757              non-local gotos and are being done at a time when they are valid
2758              and do not disturb anything else.  Some machines want to
2759              eliminate a fake argument pointer (or even a fake frame pointer)
2760              with either the real frame or the stack pointer.  Assignments to
2761              the hard frame pointer must not prevent this elimination.  */
2762
2763           for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS];
2764                ep++)
2765             if (ep->to_rtx == SET_DEST (x)
2766                 && SET_DEST (x) != hard_frame_pointer_rtx)
2767               {
2768                 /* If it is being incremented, adjust the offset.  Otherwise,
2769                    this elimination can't be done.  */
2770                 rtx src = SET_SRC (x);
2771
2772                 if (GET_CODE (src) == PLUS
2773                     && XEXP (src, 0) == SET_DEST (x)
2774                     && GET_CODE (XEXP (src, 1)) == CONST_INT)
2775                   ep->offset -= INTVAL (XEXP (src, 1));
2776                 else
2777                   ep->can_eliminate = 0;
2778               }
2779         }
2780
2781       elimination_effects (SET_DEST (x), 0);
2782       elimination_effects (SET_SRC (x), 0);
2783       return;
2784
2785     case MEM:
2786       /* Our only special processing is to pass the mode of the MEM to our
2787          recursive call.  */
2788       elimination_effects (XEXP (x, 0), GET_MODE (x));
2789       return;
2790
2791     default:
2792       break;
2793     }
2794
2795   fmt = GET_RTX_FORMAT (code);
2796   for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
2797     {
2798       if (*fmt == 'e')
2799         elimination_effects (XEXP (x, i), mem_mode);
2800       else if (*fmt == 'E')
2801         for (j = 0; j < XVECLEN (x, i); j++)
2802           elimination_effects (XVECEXP (x, i, j), mem_mode);
2803     }
2804 }
2805
2806 /* Descend through rtx X and verify that no references to eliminable registers
2807    remain.  If any do remain, mark the involved register as not
2808    eliminable.  */
2809
2810 static void
2811 check_eliminable_occurrences (rtx x)
2812 {
2813   const char *fmt;
2814   int i;
2815   enum rtx_code code;
2816
2817   if (x == 0)
2818     return;
2819
2820   code = GET_CODE (x);
2821
2822   if (code == REG && REGNO (x) < FIRST_PSEUDO_REGISTER)
2823     {
2824       struct elim_table *ep;
2825
2826       for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
2827         if (ep->from_rtx == x)
2828           ep->can_eliminate = 0;
2829       return;
2830     }
2831
2832   fmt = GET_RTX_FORMAT (code);
2833   for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
2834     {
2835       if (*fmt == 'e')
2836         check_eliminable_occurrences (XEXP (x, i));
2837       else if (*fmt == 'E')
2838         {
2839           int j;
2840           for (j = 0; j < XVECLEN (x, i); j++)
2841             check_eliminable_occurrences (XVECEXP (x, i, j));
2842         }
2843     }
2844 }
2845 \f
2846 /* Scan INSN and eliminate all eliminable registers in it.
2847
2848    If REPLACE is nonzero, do the replacement destructively.  Also
2849    delete the insn as dead it if it is setting an eliminable register.
2850
2851    If REPLACE is zero, do all our allocations in reload_obstack.
2852
2853    If no eliminations were done and this insn doesn't require any elimination
2854    processing (these are not identical conditions: it might be updating sp,
2855    but not referencing fp; this needs to be seen during reload_as_needed so
2856    that the offset between fp and sp can be taken into consideration), zero
2857    is returned.  Otherwise, 1 is returned.  */
2858
2859 static int
2860 eliminate_regs_in_insn (rtx insn, int replace)
2861 {
2862   int icode = recog_memoized (insn);
2863   rtx old_body = PATTERN (insn);
2864   int insn_is_asm = asm_noperands (old_body) >= 0;
2865   rtx old_set = single_set (insn);
2866   rtx new_body;
2867   int val = 0;
2868   int i;
2869   rtx substed_operand[MAX_RECOG_OPERANDS];
2870   rtx orig_operand[MAX_RECOG_OPERANDS];
2871   struct elim_table *ep;
2872   rtx plus_src;
2873
2874   if (! insn_is_asm && icode < 0)
2875     {
2876       gcc_assert (GET_CODE (PATTERN (insn)) == USE
2877                   || GET_CODE (PATTERN (insn)) == CLOBBER
2878                   || GET_CODE (PATTERN (insn)) == ADDR_VEC
2879                   || GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC
2880                   || GET_CODE (PATTERN (insn)) == ASM_INPUT);
2881       return 0;
2882     }
2883
2884   if (old_set != 0 && REG_P (SET_DEST (old_set))
2885       && REGNO (SET_DEST (old_set)) < FIRST_PSEUDO_REGISTER)
2886     {
2887       /* Check for setting an eliminable register.  */
2888       for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
2889         if (ep->from_rtx == SET_DEST (old_set) && ep->can_eliminate)
2890           {
2891 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
2892             /* If this is setting the frame pointer register to the
2893                hardware frame pointer register and this is an elimination
2894                that will be done (tested above), this insn is really
2895                adjusting the frame pointer downward to compensate for
2896                the adjustment done before a nonlocal goto.  */
2897             if (ep->from == FRAME_POINTER_REGNUM
2898                 && ep->to == HARD_FRAME_POINTER_REGNUM)
2899               {
2900                 rtx base = SET_SRC (old_set);
2901                 rtx base_insn = insn;
2902                 HOST_WIDE_INT offset = 0;
2903
2904                 while (base != ep->to_rtx)
2905                   {
2906                     rtx prev_insn, prev_set;
2907
2908                     if (GET_CODE (base) == PLUS
2909                         && GET_CODE (XEXP (base, 1)) == CONST_INT)
2910                       {
2911                         offset += INTVAL (XEXP (base, 1));
2912                         base = XEXP (base, 0);
2913                       }
2914                     else if ((prev_insn = prev_nonnote_insn (base_insn)) != 0
2915                              && (prev_set = single_set (prev_insn)) != 0
2916                              && rtx_equal_p (SET_DEST (prev_set), base))
2917                       {
2918                         base = SET_SRC (prev_set);
2919                         base_insn = prev_insn;
2920                       }
2921                     else
2922                       break;
2923                   }
2924
2925                 if (base == ep->to_rtx)
2926                   {
2927                     rtx src
2928                       = plus_constant (ep->to_rtx, offset - ep->offset);
2929
2930                     new_body = old_body;
2931                     if (! replace)
2932                       {
2933                         new_body = copy_insn (old_body);
2934                         if (REG_NOTES (insn))
2935                           REG_NOTES (insn) = copy_insn_1 (REG_NOTES (insn));
2936                       }
2937                     PATTERN (insn) = new_body;
2938                     old_set = single_set (insn);
2939
2940                     /* First see if this insn remains valid when we
2941                        make the change.  If not, keep the INSN_CODE
2942                        the same and let reload fit it up.  */
2943                     validate_change (insn, &SET_SRC (old_set), src, 1);
2944                     validate_change (insn, &SET_DEST (old_set),
2945                                      ep->to_rtx, 1);
2946                     if (! apply_change_group ())
2947                       {
2948                         SET_SRC (old_set) = src;
2949                         SET_DEST (old_set) = ep->to_rtx;
2950                       }
2951
2952                     val = 1;
2953                     goto done;
2954                   }
2955               }
2956 #endif
2957
2958             /* In this case this insn isn't serving a useful purpose.  We
2959                will delete it in reload_as_needed once we know that this
2960                elimination is, in fact, being done.
2961
2962                If REPLACE isn't set, we can't delete this insn, but needn't
2963                process it since it won't be used unless something changes.  */
2964             if (replace)
2965               {
2966                 delete_dead_insn (insn);
2967                 return 1;
2968               }
2969             val = 1;
2970             goto done;
2971           }
2972     }
2973
2974   /* We allow one special case which happens to work on all machines we
2975      currently support: a single set with the source or a REG_EQUAL
2976      note being a PLUS of an eliminable register and a constant.  */
2977   plus_src = 0;
2978   if (old_set && REG_P (SET_DEST (old_set)))
2979     {
2980       /* First see if the source is of the form (plus (reg) CST).  */
2981       if (GET_CODE (SET_SRC (old_set)) == PLUS
2982           && REG_P (XEXP (SET_SRC (old_set), 0))
2983           && GET_CODE (XEXP (SET_SRC (old_set), 1)) == CONST_INT
2984           && REGNO (XEXP (SET_SRC (old_set), 0)) < FIRST_PSEUDO_REGISTER)
2985         plus_src = SET_SRC (old_set);
2986       else if (REG_P (SET_SRC (old_set)))
2987         {
2988           /* Otherwise, see if we have a REG_EQUAL note of the form
2989              (plus (reg) CST).  */
2990           rtx links;
2991           for (links = REG_NOTES (insn); links; links = XEXP (links, 1))
2992             {
2993               if (REG_NOTE_KIND (links) == REG_EQUAL
2994                   && GET_CODE (XEXP (links, 0)) == PLUS
2995                   && REG_P (XEXP (XEXP (links, 0), 0))
2996                   && GET_CODE (XEXP (XEXP (links, 0), 1)) == CONST_INT
2997                   && REGNO (XEXP (XEXP (links, 0), 0)) < FIRST_PSEUDO_REGISTER)
2998                 {
2999                   plus_src = XEXP (links, 0);
3000                   break;
3001                 }
3002             }
3003         }
3004     }
3005   if (plus_src)
3006     {
3007       rtx reg = XEXP (plus_src, 0);
3008       HOST_WIDE_INT offset = INTVAL (XEXP (plus_src, 1));
3009
3010       for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
3011         if (ep->from_rtx == reg && ep->can_eliminate)
3012           {
3013             offset += ep->offset;
3014
3015             if (offset == 0)
3016               {
3017                 int num_clobbers;
3018                 /* We assume here that if we need a PARALLEL with
3019                    CLOBBERs for this assignment, we can do with the
3020                    MATCH_SCRATCHes that add_clobbers allocates.
3021                    There's not much we can do if that doesn't work.  */
3022                 PATTERN (insn) = gen_rtx_SET (VOIDmode,
3023                                               SET_DEST (old_set),
3024                                               ep->to_rtx);
3025                 num_clobbers = 0;
3026                 INSN_CODE (insn) = recog (PATTERN (insn), insn, &num_clobbers);
3027                 if (num_clobbers)
3028                   {
3029                     rtvec vec = rtvec_alloc (num_clobbers + 1);
3030
3031                     vec->elem[0] = PATTERN (insn);
3032                     PATTERN (insn) = gen_rtx_PARALLEL (VOIDmode, vec);
3033                     add_clobbers (PATTERN (insn), INSN_CODE (insn));
3034                   }
3035                 gcc_assert (INSN_CODE (insn) >= 0);
3036               }
3037             /* If we have a nonzero offset, and the source is already
3038                a simple REG, the following transformation would
3039                increase the cost of the insn by replacing a simple REG
3040                with (plus (reg sp) CST).  So try only when plus_src
3041                comes from old_set proper, not REG_NOTES.  */
3042             else if (SET_SRC (old_set) == plus_src)
3043               {
3044                 new_body = old_body;
3045                 if (! replace)
3046                   {
3047                     new_body = copy_insn (old_body);
3048                     if (REG_NOTES (insn))
3049                       REG_NOTES (insn) = copy_insn_1 (REG_NOTES (insn));
3050                   }
3051                 PATTERN (insn) = new_body;
3052                 old_set = single_set (insn);
3053
3054                 XEXP (SET_SRC (old_set), 0) = ep->to_rtx;
3055                 XEXP (SET_SRC (old_set), 1) = GEN_INT (offset);
3056               }
3057             else
3058               break;
3059
3060             val = 1;
3061             /* This can't have an effect on elimination offsets, so skip right
3062                to the end.  */
3063             goto done;
3064           }
3065     }
3066
3067   /* Determine the effects of this insn on elimination offsets.  */
3068   elimination_effects (old_body, 0);
3069
3070   /* Eliminate all eliminable registers occurring in operands that
3071      can be handled by reload.  */
3072   extract_insn (insn);
3073   for (i = 0; i < recog_data.n_operands; i++)
3074     {
3075       orig_operand[i] = recog_data.operand[i];
3076       substed_operand[i] = recog_data.operand[i];
3077
3078       /* For an asm statement, every operand is eliminable.  */
3079       if (insn_is_asm || insn_data[icode].operand[i].eliminable)
3080         {
3081           /* Check for setting a register that we know about.  */
3082           if (recog_data.operand_type[i] != OP_IN
3083               && REG_P (orig_operand[i]))
3084             {
3085               /* If we are assigning to a register that can be eliminated, it
3086                  must be as part of a PARALLEL, since the code above handles
3087                  single SETs.  We must indicate that we can no longer
3088                  eliminate this reg.  */
3089               for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS];
3090                    ep++)
3091                 if (ep->from_rtx == orig_operand[i])
3092                   ep->can_eliminate = 0;
3093             }
3094
3095           substed_operand[i] = eliminate_regs (recog_data.operand[i], 0,
3096                                                replace ? insn : NULL_RTX);
3097           if (substed_operand[i] != orig_operand[i])
3098             val = 1;
3099           /* Terminate the search in check_eliminable_occurrences at
3100              this point.  */
3101           *recog_data.operand_loc[i] = 0;
3102
3103         /* If an output operand changed from a REG to a MEM and INSN is an
3104            insn, write a CLOBBER insn.  */
3105           if (recog_data.operand_type[i] != OP_IN
3106               && REG_P (orig_operand[i])
3107               && MEM_P (substed_operand[i])
3108               && replace)
3109             emit_insn_after (gen_rtx_CLOBBER (VOIDmode, orig_operand[i]),
3110                              insn);
3111         }
3112     }
3113
3114   for (i = 0; i < recog_data.n_dups; i++)
3115     *recog_data.dup_loc[i]
3116       = *recog_data.operand_loc[(int) recog_data.dup_num[i]];
3117
3118   /* If any eliminable remain, they aren't eliminable anymore.  */
3119   check_eliminable_occurrences (old_body);
3120
3121   /* Substitute the operands; the new values are in the substed_operand
3122      array.  */
3123   for (i = 0; i < recog_data.n_operands; i++)
3124     *recog_data.operand_loc[i] = substed_operand[i];
3125   for (i = 0; i < recog_data.n_dups; i++)
3126     *recog_data.dup_loc[i] = substed_operand[(int) recog_data.dup_num[i]];
3127
3128   /* If we are replacing a body that was a (set X (plus Y Z)), try to
3129      re-recognize the insn.  We do this in case we had a simple addition
3130      but now can do this as a load-address.  This saves an insn in this
3131      common case.
3132      If re-recognition fails, the old insn code number will still be used,
3133      and some register operands may have changed into PLUS expressions.
3134      These will be handled by find_reloads by loading them into a register
3135      again.  */
3136
3137   if (val)
3138     {
3139       /* If we aren't replacing things permanently and we changed something,
3140          make another copy to ensure that all the RTL is new.  Otherwise
3141          things can go wrong if find_reload swaps commutative operands
3142          and one is inside RTL that has been copied while the other is not.  */
3143       new_body = old_body;
3144       if (! replace)
3145         {
3146           new_body = copy_insn (old_body);
3147           if (REG_NOTES (insn))
3148             REG_NOTES (insn) = copy_insn_1 (REG_NOTES (insn));
3149         }
3150       PATTERN (insn) = new_body;
3151
3152       /* If we had a move insn but now we don't, rerecognize it.  This will
3153          cause spurious re-recognition if the old move had a PARALLEL since
3154          the new one still will, but we can't call single_set without
3155          having put NEW_BODY into the insn and the re-recognition won't
3156          hurt in this rare case.  */
3157       /* ??? Why this huge if statement - why don't we just rerecognize the
3158          thing always?  */
3159       if (! insn_is_asm
3160           && old_set != 0
3161           && ((REG_P (SET_SRC (old_set))
3162                && (GET_CODE (new_body) != SET
3163                    || !REG_P (SET_SRC (new_body))))
3164               /* If this was a load from or store to memory, compare
3165                  the MEM in recog_data.operand to the one in the insn.
3166                  If they are not equal, then rerecognize the insn.  */
3167               || (old_set != 0
3168                   && ((MEM_P (SET_SRC (old_set))
3169                        && SET_SRC (old_set) != recog_data.operand[1])
3170                       || (MEM_P (SET_DEST (old_set))
3171                           && SET_DEST (old_set) != recog_data.operand[0])))
3172               /* If this was an add insn before, rerecognize.  */
3173               || GET_CODE (SET_SRC (old_set)) == PLUS))
3174         {
3175           int new_icode = recog (PATTERN (insn), insn, 0);
3176           if (new_icode < 0)
3177             INSN_CODE (insn) = icode;
3178         }
3179     }
3180
3181   /* Restore the old body.  If there were any changes to it, we made a copy
3182      of it while the changes were still in place, so we'll correctly return
3183      a modified insn below.  */
3184   if (! replace)
3185     {
3186       /* Restore the old body.  */
3187       for (i = 0; i < recog_data.n_operands; i++)
3188         *recog_data.operand_loc[i] = orig_operand[i];
3189       for (i = 0; i < recog_data.n_dups; i++)
3190         *recog_data.dup_loc[i] = orig_operand[(int) recog_data.dup_num[i]];
3191     }
3192
3193   /* Update all elimination pairs to reflect the status after the current
3194      insn.  The changes we make were determined by the earlier call to
3195      elimination_effects.
3196
3197      We also detect cases where register elimination cannot be done,
3198      namely, if a register would be both changed and referenced outside a MEM
3199      in the resulting insn since such an insn is often undefined and, even if
3200      not, we cannot know what meaning will be given to it.  Note that it is
3201      valid to have a register used in an address in an insn that changes it
3202      (presumably with a pre- or post-increment or decrement).
3203
3204      If anything changes, return nonzero.  */
3205
3206   for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
3207     {
3208       if (ep->previous_offset != ep->offset && ep->ref_outside_mem)
3209         ep->can_eliminate = 0;
3210
3211       ep->ref_outside_mem = 0;
3212
3213       if (ep->previous_offset != ep->offset)
3214         val = 1;
3215     }
3216
3217  done:
3218   /* If we changed something, perform elimination in REG_NOTES.  This is
3219      needed even when REPLACE is zero because a REG_DEAD note might refer
3220      to a register that we eliminate and could cause a different number
3221      of spill registers to be needed in the final reload pass than in
3222      the pre-passes.  */
3223   if (val && REG_NOTES (insn) != 0)
3224     REG_NOTES (insn) = eliminate_regs (REG_NOTES (insn), 0, REG_NOTES (insn));
3225
3226   return val;
3227 }
3228
3229 /* Loop through all elimination pairs.
3230    Recalculate the number not at initial offset.
3231
3232    Compute the maximum offset (minimum offset if the stack does not
3233    grow downward) for each elimination pair.  */
3234
3235 static void
3236 update_eliminable_offsets (void)
3237 {
3238   struct elim_table *ep;
3239
3240   num_not_at_initial_offset = 0;
3241   for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
3242     {
3243       ep->previous_offset = ep->offset;
3244       if (ep->can_eliminate && ep->offset != ep->initial_offset)
3245         num_not_at_initial_offset++;
3246     }
3247 }
3248
3249 /* Given X, a SET or CLOBBER of DEST, if DEST is the target of a register
3250    replacement we currently believe is valid, mark it as not eliminable if X
3251    modifies DEST in any way other than by adding a constant integer to it.
3252
3253    If DEST is the frame pointer, we do nothing because we assume that
3254    all assignments to the hard frame pointer are nonlocal gotos and are being
3255    done at a time when they are valid and do not disturb anything else.
3256    Some machines want to eliminate a fake argument pointer with either the
3257    frame or stack pointer.  Assignments to the hard frame pointer must not
3258    prevent this elimination.
3259
3260    Called via note_stores from reload before starting its passes to scan
3261    the insns of the function.  */
3262
3263 static void
3264 mark_not_eliminable (rtx dest, rtx x, void *data ATTRIBUTE_UNUSED)
3265 {
3266   unsigned int i;
3267
3268   /* A SUBREG of a hard register here is just changing its mode.  We should
3269      not see a SUBREG of an eliminable hard register, but check just in
3270      case.  */
3271   if (GET_CODE (dest) == SUBREG)
3272     dest = SUBREG_REG (dest);
3273
3274   if (dest == hard_frame_pointer_rtx)
3275     return;
3276
3277   for (i = 0; i < NUM_ELIMINABLE_REGS; i++)
3278     if (reg_eliminate[i].can_eliminate && dest == reg_eliminate[i].to_rtx
3279         && (GET_CODE (x) != SET
3280             || GET_CODE (SET_SRC (x)) != PLUS
3281             || XEXP (SET_SRC (x), 0) != dest
3282             || GET_CODE (XEXP (SET_SRC (x), 1)) != CONST_INT))
3283       {
3284         reg_eliminate[i].can_eliminate_previous
3285           = reg_eliminate[i].can_eliminate = 0;
3286         num_eliminable--;
3287       }
3288 }
3289
3290 /* Verify that the initial elimination offsets did not change since the
3291    last call to set_initial_elim_offsets.  This is used to catch cases
3292    where something illegal happened during reload_as_needed that could
3293    cause incorrect code to be generated if we did not check for it.  */
3294
3295 static bool
3296 verify_initial_elim_offsets (void)
3297 {
3298   HOST_WIDE_INT t;
3299
3300   if (!num_eliminable)
3301     return true;
3302
3303 #ifdef ELIMINABLE_REGS
3304   {
3305    struct elim_table *ep;
3306
3307    for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
3308      {
3309        INITIAL_ELIMINATION_OFFSET (ep->from, ep->to, t);
3310        if (t != ep->initial_offset)
3311          return false;
3312      }
3313   }
3314 #else
3315   INITIAL_FRAME_POINTER_OFFSET (t);
3316   if (t != reg_eliminate[0].initial_offset)
3317     return false;
3318 #endif
3319
3320   return true;
3321 }
3322
3323 /* Reset all offsets on eliminable registers to their initial values.  */
3324
3325 static void
3326 set_initial_elim_offsets (void)
3327 {
3328   struct elim_table *ep = reg_eliminate;
3329
3330 #ifdef ELIMINABLE_REGS
3331   for (; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
3332     {
3333       INITIAL_ELIMINATION_OFFSET (ep->from, ep->to, ep->initial_offset);
3334       ep->previous_offset = ep->offset = ep->initial_offset;
3335     }
3336 #else
3337   INITIAL_FRAME_POINTER_OFFSET (ep->initial_offset);
3338   ep->previous_offset = ep->offset = ep->initial_offset;
3339 #endif
3340
3341   num_not_at_initial_offset = 0;
3342 }
3343
3344 /* Subroutine of set_initial_label_offsets called via for_each_eh_label.  */
3345
3346 static void
3347 set_initial_eh_label_offset (rtx label)
3348 {
3349   set_label_offsets (label, NULL_RTX, 1);
3350 }
3351
3352 /* Initialize the known label offsets.
3353    Set a known offset for each forced label to be at the initial offset
3354    of each elimination.  We do this because we assume that all
3355    computed jumps occur from a location where each elimination is
3356    at its initial offset.
3357    For all other labels, show that we don't know the offsets.  */
3358
3359 static void
3360 set_initial_label_offsets (void)
3361 {
3362   rtx x;
3363   memset (offsets_known_at, 0, num_labels);
3364
3365   for (x = forced_labels; x; x = XEXP (x, 1))
3366     if (XEXP (x, 0))
3367       set_label_offsets (XEXP (x, 0), NULL_RTX, 1);
3368
3369   for_each_eh_label (set_initial_eh_label_offset);
3370 }
3371
3372 /* Set all elimination offsets to the known values for the code label given
3373    by INSN.  */
3374
3375 static void
3376 set_offsets_for_label (rtx insn)
3377 {
3378   unsigned int i;
3379   int label_nr = CODE_LABEL_NUMBER (insn);
3380   struct elim_table *ep;
3381
3382   num_not_at_initial_offset = 0;
3383   for (i = 0, ep = reg_eliminate; i < NUM_ELIMINABLE_REGS; ep++, i++)
3384     {
3385       ep->offset = ep->previous_offset
3386                  = offsets_at[label_nr - first_label_num][i];
3387       if (ep->can_eliminate && ep->offset != ep->initial_offset)
3388         num_not_at_initial_offset++;
3389     }
3390 }
3391
3392 /* See if anything that happened changes which eliminations are valid.
3393    For example, on the SPARC, whether or not the frame pointer can
3394    be eliminated can depend on what registers have been used.  We need
3395    not check some conditions again (such as flag_omit_frame_pointer)
3396    since they can't have changed.  */
3397
3398 static void
3399 update_eliminables (HARD_REG_SET *pset)
3400 {
3401   int previous_frame_pointer_needed = frame_pointer_needed;
3402   struct elim_table *ep;
3403
3404   for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
3405     if ((ep->from == HARD_FRAME_POINTER_REGNUM && FRAME_POINTER_REQUIRED)
3406 #ifdef ELIMINABLE_REGS
3407         || ! CAN_ELIMINATE (ep->from, ep->to)
3408 #endif
3409         )
3410       ep->can_eliminate = 0;
3411
3412   /* Look for the case where we have discovered that we can't replace
3413      register A with register B and that means that we will now be
3414      trying to replace register A with register C.  This means we can
3415      no longer replace register C with register B and we need to disable
3416      such an elimination, if it exists.  This occurs often with A == ap,
3417      B == sp, and C == fp.  */
3418
3419   for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
3420     {
3421       struct elim_table *op;
3422       int new_to = -1;
3423
3424       if (! ep->can_eliminate && ep->can_eliminate_previous)
3425         {
3426           /* Find the current elimination for ep->from, if there is a
3427              new one.  */
3428           for (op = reg_eliminate;
3429                op < &reg_eliminate[NUM_ELIMINABLE_REGS]; op++)
3430             if (op->from == ep->from && op->can_eliminate)
3431               {
3432                 new_to = op->to;
3433                 break;
3434               }
3435
3436           /* See if there is an elimination of NEW_TO -> EP->TO.  If so,
3437              disable it.  */
3438           for (op = reg_eliminate;
3439                op < &reg_eliminate[NUM_ELIMINABLE_REGS]; op++)
3440             if (op->from == new_to && op->to == ep->to)
3441               op->can_eliminate = 0;
3442         }
3443     }
3444
3445   /* See if any registers that we thought we could eliminate the previous
3446      time are no longer eliminable.  If so, something has changed and we
3447      must spill the register.  Also, recompute the number of eliminable
3448      registers and see if the frame pointer is needed; it is if there is
3449      no elimination of the frame pointer that we can perform.  */
3450
3451   frame_pointer_needed = 1;
3452   for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
3453     {
3454       if (ep->can_eliminate && ep->from == FRAME_POINTER_REGNUM
3455           && ep->to != HARD_FRAME_POINTER_REGNUM)
3456         frame_pointer_needed = 0;
3457
3458       if (! ep->can_eliminate && ep->can_eliminate_previous)
3459         {
3460           ep->can_eliminate_previous = 0;
3461           SET_HARD_REG_BIT (*pset, ep->from);
3462           num_eliminable--;
3463         }
3464     }
3465
3466   /* If we didn't need a frame pointer last time, but we do now, spill
3467      the hard frame pointer.  */
3468   if (frame_pointer_needed && ! previous_frame_pointer_needed)
3469     SET_HARD_REG_BIT (*pset, HARD_FRAME_POINTER_REGNUM);
3470 }
3471
3472 /* Initialize the table of registers to eliminate.  */
3473
3474 static void
3475 init_elim_table (void)
3476 {
3477   struct elim_table *ep;
3478 #ifdef ELIMINABLE_REGS
3479   const struct elim_table_1 *ep1;
3480 #endif
3481
3482   if (!reg_eliminate)
3483     reg_eliminate = xcalloc (sizeof (struct elim_table), NUM_ELIMINABLE_REGS);
3484
3485   /* Does this function require a frame pointer?  */
3486
3487   frame_pointer_needed = (! flag_omit_frame_pointer
3488                           /* ?? If EXIT_IGNORE_STACK is set, we will not save
3489                              and restore sp for alloca.  So we can't eliminate
3490                              the frame pointer in that case.  At some point,
3491                              we should improve this by emitting the
3492                              sp-adjusting insns for this case.  */
3493                           || (current_function_calls_alloca
3494                               && EXIT_IGNORE_STACK)
3495                           || FRAME_POINTER_REQUIRED);
3496
3497   num_eliminable = 0;
3498
3499 #ifdef ELIMINABLE_REGS
3500   for (ep = reg_eliminate, ep1 = reg_eliminate_1;
3501        ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++, ep1++)
3502     {
3503       ep->from = ep1->from;
3504       ep->to = ep1->to;
3505       ep->can_eliminate = ep->can_eliminate_previous
3506         = (CAN_ELIMINATE (ep->from, ep->to)
3507            && ! (ep->to == STACK_POINTER_REGNUM && frame_pointer_needed));
3508     }
3509 #else
3510   reg_eliminate[0].from = reg_eliminate_1[0].from;
3511   reg_eliminate[0].to = reg_eliminate_1[0].to;
3512   reg_eliminate[0].can_eliminate = reg_eliminate[0].can_eliminate_previous
3513     = ! frame_pointer_needed;
3514 #endif
3515
3516   /* Count the number of eliminable registers and build the FROM and TO
3517      REG rtx's.  Note that code in gen_rtx_REG will cause, e.g.,
3518      gen_rtx_REG (Pmode, STACK_POINTER_REGNUM) to equal stack_pointer_rtx.
3519      We depend on this.  */
3520   for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
3521     {
3522       num_eliminable += ep->can_eliminate;
3523       ep->from_rtx = gen_rtx_REG (Pmode, ep->from);
3524       ep->to_rtx = gen_rtx_REG (Pmode, ep->to);
3525     }
3526 }
3527 \f
3528 /* Kick all pseudos out of hard register REGNO.
3529
3530    If CANT_ELIMINATE is nonzero, it means that we are doing this spill
3531    because we found we can't eliminate some register.  In the case, no pseudos
3532    are allowed to be in the register, even if they are only in a block that
3533    doesn't require spill registers, unlike the case when we are spilling this
3534    hard reg to produce another spill register.
3535
3536    Return nonzero if any pseudos needed to be kicked out.  */
3537
3538 static void
3539 spill_hard_reg (unsigned int regno, int cant_eliminate)
3540 {
3541   int i;
3542
3543   if (cant_eliminate)
3544     {
3545       SET_HARD_REG_BIT (bad_spill_regs_global, regno);
3546       regs_ever_live[regno] = 1;
3547     }
3548
3549   /* Spill every pseudo reg that was allocated to this reg
3550      or to something that overlaps this reg.  */
3551
3552   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
3553     if (reg_renumber[i] >= 0
3554         && (unsigned int) reg_renumber[i] <= regno
3555         && ((unsigned int) reg_renumber[i]
3556             + hard_regno_nregs[(unsigned int) reg_renumber[i]]
3557                               [PSEUDO_REGNO_MODE (i)]
3558             > regno))
3559       SET_REGNO_REG_SET (&spilled_pseudos, i);
3560 }
3561
3562 /* After find_reload_regs has been run for all insn that need reloads,
3563    and/or spill_hard_regs was called, this function is used to actually
3564    spill pseudo registers and try to reallocate them.  It also sets up the
3565    spill_regs array for use by choose_reload_regs.  */
3566
3567 static int
3568 finish_spills (int global)
3569 {
3570   struct insn_chain *chain;
3571   int something_changed = 0;
3572   unsigned i;
3573   reg_set_iterator rsi;
3574
3575   /* Build the spill_regs array for the function.  */
3576   /* If there are some registers still to eliminate and one of the spill regs
3577      wasn't ever used before, additional stack space may have to be
3578      allocated to store this register.  Thus, we may have changed the offset
3579      between the stack and frame pointers, so mark that something has changed.
3580
3581      One might think that we need only set VAL to 1 if this is a call-used
3582      register.  However, the set of registers that must be saved by the
3583      prologue is not identical to the call-used set.  For example, the
3584      register used by the call insn for the return PC is a call-used register,
3585      but must be saved by the prologue.  */
3586
3587   n_spills = 0;
3588   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3589     if (TEST_HARD_REG_BIT (used_spill_regs, i))
3590       {
3591         spill_reg_order[i] = n_spills;
3592         spill_regs[n_spills++] = i;
3593         if (num_eliminable && ! regs_ever_live[i])
3594           something_changed = 1;
3595         regs_ever_live[i] = 1;
3596       }
3597     else
3598       spill_reg_order[i] = -1;
3599
3600   EXECUTE_IF_SET_IN_REG_SET (&spilled_pseudos, FIRST_PSEUDO_REGISTER, i, rsi)
3601     {
3602       /* Record the current hard register the pseudo is allocated to in
3603          pseudo_previous_regs so we avoid reallocating it to the same
3604          hard reg in a later pass.  */
3605       gcc_assert (reg_renumber[i] >= 0);
3606
3607       SET_HARD_REG_BIT (pseudo_previous_regs[i], reg_renumber[i]);
3608       /* Mark it as no longer having a hard register home.  */
3609       reg_renumber[i] = -1;
3610       /* We will need to scan everything again.  */
3611       something_changed = 1;
3612     }
3613
3614   /* Retry global register allocation if possible.  */
3615   if (global)
3616     {
3617       memset (pseudo_forbidden_regs, 0, max_regno * sizeof (HARD_REG_SET));
3618       /* For every insn that needs reloads, set the registers used as spill
3619          regs in pseudo_forbidden_regs for every pseudo live across the
3620          insn.  */
3621       for (chain = insns_need_reload; chain; chain = chain->next_need_reload)
3622         {
3623           EXECUTE_IF_SET_IN_REG_SET
3624             (&chain->live_throughout, FIRST_PSEUDO_REGISTER, i, rsi)
3625             {
3626               IOR_HARD_REG_SET (pseudo_forbidden_regs[i],
3627                                 chain->used_spill_regs);
3628             }
3629           EXECUTE_IF_SET_IN_REG_SET
3630             (&chain->dead_or_set, FIRST_PSEUDO_REGISTER, i, rsi)
3631             {
3632               IOR_HARD_REG_SET (pseudo_forbidden_regs[i],
3633                                 chain->used_spill_regs);
3634             }
3635         }
3636
3637       /* Retry allocating the spilled pseudos.  For each reg, merge the
3638          various reg sets that indicate which hard regs can't be used,
3639          and call retry_global_alloc.
3640          We change spill_pseudos here to only contain pseudos that did not
3641          get a new hard register.  */
3642       for (i = FIRST_PSEUDO_REGISTER; i < (unsigned)max_regno; i++)
3643         if (reg_old_renumber[i] != reg_renumber[i])
3644           {
3645             HARD_REG_SET forbidden;
3646             COPY_HARD_REG_SET (forbidden, bad_spill_regs_global);
3647             IOR_HARD_REG_SET (forbidden, pseudo_forbidden_regs[i]);
3648             IOR_HARD_REG_SET (forbidden, pseudo_previous_regs[i]);
3649             retry_global_alloc (i, forbidden);
3650             if (reg_renumber[i] >= 0)
3651               CLEAR_REGNO_REG_SET (&spilled_pseudos, i);
3652           }
3653     }
3654
3655   /* Fix up the register information in the insn chain.
3656      This involves deleting those of the spilled pseudos which did not get
3657      a new hard register home from the live_{before,after} sets.  */
3658   for (chain = reload_insn_chain; chain; chain = chain->next)
3659     {
3660       HARD_REG_SET used_by_pseudos;
3661       HARD_REG_SET used_by_pseudos2;
3662
3663       AND_COMPL_REG_SET (&chain->live_throughout, &spilled_pseudos);
3664       AND_COMPL_REG_SET (&chain->dead_or_set, &spilled_pseudos);
3665
3666       /* Mark any unallocated hard regs as available for spills.  That
3667          makes inheritance work somewhat better.  */
3668       if (chain->need_reload)
3669         {
3670           REG_SET_TO_HARD_REG_SET (used_by_pseudos, &chain->live_throughout);
3671           REG_SET_TO_HARD_REG_SET (used_by_pseudos2, &chain->dead_or_set);
3672           IOR_HARD_REG_SET (used_by_pseudos, used_by_pseudos2);
3673
3674           /* Save the old value for the sanity test below.  */
3675           COPY_HARD_REG_SET (used_by_pseudos2, chain->used_spill_regs);
3676
3677           compute_use_by_pseudos (&used_by_pseudos, &chain->live_throughout);
3678           compute_use_by_pseudos (&used_by_pseudos, &chain->dead_or_set);
3679           COMPL_HARD_REG_SET (chain->used_spill_regs, used_by_pseudos);
3680           AND_HARD_REG_SET (chain->used_spill_regs, used_spill_regs);
3681
3682           /* Make sure we only enlarge the set.  */
3683           GO_IF_HARD_REG_SUBSET (used_by_pseudos2, chain->used_spill_regs, ok);
3684           gcc_unreachable ();
3685         ok:;
3686         }
3687     }
3688
3689   /* Let alter_reg modify the reg rtx's for the modified pseudos.  */
3690   for (i = FIRST_PSEUDO_REGISTER; i < (unsigned)max_regno; i++)
3691     {
3692       int regno = reg_renumber[i];
3693       if (reg_old_renumber[i] == regno)
3694         continue;
3695
3696       alter_reg (i, reg_old_renumber[i]);
3697       reg_old_renumber[i] = regno;
3698       if (dump_file)
3699         {
3700           if (regno == -1)
3701             fprintf (dump_file, " Register %d now on stack.\n\n", i);
3702           else
3703             fprintf (dump_file, " Register %d now in %d.\n\n",
3704                      i, reg_renumber[i]);
3705         }
3706     }
3707
3708   return something_changed;
3709 }
3710 \f
3711 /* Find all paradoxical subregs within X and update reg_max_ref_width.  */
3712
3713 static void
3714 scan_paradoxical_subregs (rtx x)
3715 {
3716   int i;
3717   const char *fmt;
3718   enum rtx_code code = GET_CODE (x);
3719
3720   switch (code)
3721     {
3722     case REG:
3723     case CONST_INT:
3724     case CONST:
3725     case SYMBOL_REF:
3726     case LABEL_REF:
3727     case CONST_DOUBLE:
3728     case CONST_VECTOR: /* shouldn't happen, but just in case.  */
3729     case CC0:
3730     case PC:
3731     case USE:
3732     case CLOBBER:
3733       return;
3734
3735     case SUBREG:
3736       if (REG_P (SUBREG_REG (x))
3737           && GET_MODE_SIZE (GET_MODE (x)) > GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
3738         reg_max_ref_width[REGNO (SUBREG_REG (x))]
3739           = GET_MODE_SIZE (GET_MODE (x));
3740       return;
3741
3742     default:
3743       break;
3744     }
3745
3746   fmt = GET_RTX_FORMAT (code);
3747   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
3748     {
3749       if (fmt[i] == 'e')
3750         scan_paradoxical_subregs (XEXP (x, i));
3751       else if (fmt[i] == 'E')
3752         {
3753           int j;
3754           for (j = XVECLEN (x, i) - 1; j >= 0; j--)
3755             scan_paradoxical_subregs (XVECEXP (x, i, j));
3756         }
3757     }
3758 }
3759 \f
3760 /* Reload pseudo-registers into hard regs around each insn as needed.
3761    Additional register load insns are output before the insn that needs it
3762    and perhaps store insns after insns that modify the reloaded pseudo reg.
3763
3764    reg_last_reload_reg and reg_reloaded_contents keep track of
3765    which registers are already available in reload registers.
3766    We update these for the reloads that we perform,
3767    as the insns are scanned.  */
3768
3769 static void
3770 reload_as_needed (int live_known)
3771 {
3772   struct insn_chain *chain;
3773 #if defined (AUTO_INC_DEC)
3774   int i;
3775 #endif
3776   rtx x;
3777
3778   memset (spill_reg_rtx, 0, sizeof spill_reg_rtx);
3779   memset (spill_reg_store, 0, sizeof spill_reg_store);
3780   reg_last_reload_reg = xcalloc (max_regno, sizeof (rtx));
3781   reg_has_output_reload = xmalloc (max_regno);
3782   CLEAR_HARD_REG_SET (reg_reloaded_valid);
3783   CLEAR_HARD_REG_SET (reg_reloaded_call_part_clobbered);
3784
3785   set_initial_elim_offsets ();
3786
3787   for (chain = reload_insn_chain; chain; chain = chain->next)
3788     {
3789       rtx prev = 0;
3790       rtx insn = chain->insn;
3791       rtx old_next = NEXT_INSN (insn);
3792
3793       /* If we pass a label, copy the offsets from the label information
3794          into the current offsets of each elimination.  */
3795       if (LABEL_P (insn))
3796         set_offsets_for_label (insn);
3797
3798       else if (INSN_P (insn))
3799         {
3800           rtx oldpat = copy_rtx (PATTERN (insn));
3801
3802           /* If this is a USE and CLOBBER of a MEM, ensure that any
3803              references to eliminable registers have been removed.  */
3804
3805           if ((GET_CODE (PATTERN (insn)) == USE
3806                || GET_CODE (PATTERN (insn)) == CLOBBER)
3807               && MEM_P (XEXP (PATTERN (insn), 0)))
3808             XEXP (XEXP (PATTERN (insn), 0), 0)
3809               = eliminate_regs (XEXP (XEXP (PATTERN (insn), 0), 0),
3810                                 GET_MODE (XEXP (PATTERN (insn), 0)),
3811                                 NULL_RTX);
3812
3813           /* If we need to do register elimination processing, do so.
3814              This might delete the insn, in which case we are done.  */
3815           if ((num_eliminable || num_eliminable_invariants) && chain->need_elim)
3816             {
3817               eliminate_regs_in_insn (insn, 1);
3818               if (NOTE_P (insn))
3819                 {
3820                   update_eliminable_offsets ();
3821                   continue;
3822                 }
3823             }
3824
3825           /* If need_elim is nonzero but need_reload is zero, one might think
3826              that we could simply set n_reloads to 0.  However, find_reloads
3827              could have done some manipulation of the insn (such as swapping
3828              commutative operands), and these manipulations are lost during
3829              the first pass for every insn that needs register elimination.
3830              So the actions of find_reloads must be redone here.  */
3831
3832           if (! chain->need_elim && ! chain->need_reload
3833               && ! chain->need_operand_change)
3834             n_reloads = 0;
3835           /* First find the pseudo regs that must be reloaded for this insn.
3836              This info is returned in the tables reload_... (see reload.h).
3837              Also modify the body of INSN by substituting RELOAD
3838              rtx's for those pseudo regs.  */
3839           else
3840             {
3841               memset (reg_has_output_reload, 0, max_regno);
3842               CLEAR_HARD_REG_SET (reg_is_output_reload);
3843
3844               find_reloads (insn, 1, spill_indirect_levels, live_known,
3845                             spill_reg_order);
3846             }
3847
3848           if (n_reloads > 0)
3849             {
3850               rtx next = NEXT_INSN (insn);
3851               rtx p;
3852
3853               prev = PREV_INSN (insn);
3854
3855               /* Now compute which reload regs to reload them into.  Perhaps
3856                  reusing reload regs from previous insns, or else output
3857                  load insns to reload them.  Maybe output store insns too.
3858                  Record the choices of reload reg in reload_reg_rtx.  */
3859               choose_reload_regs (chain);
3860
3861               /* Merge any reloads that we didn't combine for fear of
3862                  increasing the number of spill registers needed but now
3863                  discover can be safely merged.  */
3864               if (SMALL_REGISTER_CLASSES)
3865                 merge_assigned_reloads (insn);
3866
3867               /* Generate the insns to reload operands into or out of
3868                  their reload regs.  */
3869               emit_reload_insns (chain);
3870
3871               /* Substitute the chosen reload regs from reload_reg_rtx
3872                  into the insn's body (or perhaps into the bodies of other
3873                  load and store insn that we just made for reloading
3874                  and that we moved the structure into).  */
3875               subst_reloads (insn);
3876
3877               /* If this was an ASM, make sure that all the reload insns
3878                  we have generated are valid.  If not, give an error
3879                  and delete them.  */
3880
3881               if (asm_noperands (PATTERN (insn)) >= 0)
3882                 for (p = NEXT_INSN (prev); p != next; p = NEXT_INSN (p))
3883                   if (p != insn && INSN_P (p)
3884                       && GET_CODE (PATTERN (p)) != USE
3885                       && (recog_memoized (p) < 0
3886                           || (extract_insn (p), ! constrain_operands (1))))
3887                     {
3888                       error_for_asm (insn,
3889                                      "%<asm%> operand requires "
3890                                      "impossible reload");
3891                       delete_insn (p);
3892                     }
3893             }
3894
3895           if (num_eliminable && chain->need_elim)
3896             update_eliminable_offsets ();
3897
3898           /* Any previously reloaded spilled pseudo reg, stored in this insn,
3899              is no longer validly lying around to save a future reload.
3900              Note that this does not detect pseudos that were reloaded
3901              for this insn in order to be stored in
3902              (obeying register constraints).  That is correct; such reload
3903              registers ARE still valid.  */
3904           note_stores (oldpat, forget_old_reloads_1, NULL);
3905
3906           /* There may have been CLOBBER insns placed after INSN.  So scan
3907              between INSN and NEXT and use them to forget old reloads.  */
3908           for (x = NEXT_INSN (insn); x != old_next; x = NEXT_INSN (x))
3909             if (NONJUMP_INSN_P (x) && GET_CODE (PATTERN (x)) == CLOBBER)
3910               note_stores (PATTERN (x), forget_old_reloads_1, NULL);
3911
3912 #ifdef AUTO_INC_DEC
3913           /* Likewise for regs altered by auto-increment in this insn.
3914              REG_INC notes have been changed by reloading:
3915              find_reloads_address_1 records substitutions for them,
3916              which have been performed by subst_reloads above.  */
3917           for (i = n_reloads - 1; i >= 0; i--)
3918             {
3919               rtx in_reg = rld[i].in_reg;
3920               if (in_reg)
3921                 {
3922                   enum rtx_code code = GET_CODE (in_reg);
3923                   /* PRE_INC / PRE_DEC will have the reload register ending up
3924                      with the same value as the stack slot, but that doesn't
3925                      hold true for POST_INC / POST_DEC.  Either we have to
3926                      convert the memory access to a true POST_INC / POST_DEC,
3927                      or we can't use the reload register for inheritance.  */
3928                   if ((code == POST_INC || code == POST_DEC)
3929                       && TEST_HARD_REG_BIT (reg_reloaded_valid,
3930                                             REGNO (rld[i].reg_rtx))
3931                       /* Make sure it is the inc/dec pseudo, and not
3932                          some other (e.g. output operand) pseudo.  */
3933                       && ((unsigned) reg_reloaded_contents[REGNO (rld[i].reg_rtx)]
3934                           == REGNO (XEXP (in_reg, 0))))
3935
3936                     {
3937                       rtx reload_reg = rld[i].reg_rtx;
3938                       enum machine_mode mode = GET_MODE (reload_reg);
3939                       int n = 0;
3940                       rtx p;
3941
3942                       for (p = PREV_INSN (old_next); p != prev; p = PREV_INSN (p))
3943                         {
3944                           /* We really want to ignore REG_INC notes here, so
3945                              use PATTERN (p) as argument to reg_set_p .  */
3946                           if (reg_set_p (reload_reg, PATTERN (p)))
3947                             break;
3948                           n = count_occurrences (PATTERN (p), reload_reg, 0);
3949                           if (! n)
3950                             continue;
3951                           if (n == 1)
3952                             {
3953                               n = validate_replace_rtx (reload_reg,
3954                                                         gen_rtx_fmt_e (code,
3955                                                                        mode,
3956                                                                        reload_reg),
3957                                                         p);
3958
3959                               /* We must also verify that the constraints
3960                                  are met after the replacement.  */
3961                               extract_insn (p);
3962                               if (n)
3963                                 n = constrain_operands (1);
3964                               else
3965                                 break;
3966
3967                               /* If the constraints were not met, then
3968                                  undo the replacement.  */
3969                               if (!n)
3970                                 {
3971                                   validate_replace_rtx (gen_rtx_fmt_e (code,
3972                                                                        mode,
3973                                                                        reload_reg),
3974                                                         reload_reg, p);
3975                                   break;
3976                                 }
3977
3978                             }
3979                           break;
3980                         }
3981                       if (n == 1)
3982                         {
3983                           REG_NOTES (p)
3984                             = gen_rtx_EXPR_LIST (REG_INC, reload_reg,
3985                                                  REG_NOTES (p));
3986                           /* Mark this as having an output reload so that the
3987                              REG_INC processing code below won't invalidate
3988                              the reload for inheritance.  */
3989                           SET_HARD_REG_BIT (reg_is_output_reload,
3990                                             REGNO (reload_reg));
3991                           reg_has_output_reload[REGNO (XEXP (in_reg, 0))] = 1;
3992                         }
3993                       else
3994                         forget_old_reloads_1 (XEXP (in_reg, 0), NULL_RTX,
3995                                               NULL);
3996                     }
3997                   else if ((code == PRE_INC || code == PRE_DEC)
3998                            && TEST_HARD_REG_BIT (reg_reloaded_valid,
3999                                                  REGNO (rld[i].reg_rtx))
4000                            /* Make sure it is the inc/dec pseudo, and not
4001                               some other (e.g. output operand) pseudo.  */
4002                            && ((unsigned) reg_reloaded_contents[REGNO (rld[i].reg_rtx)]
4003                                == REGNO (XEXP (in_reg, 0))))
4004                     {
4005                       SET_HARD_REG_BIT (reg_is_output_reload,
4006                                         REGNO (rld[i].reg_rtx));
4007                       reg_has_output_reload[REGNO (XEXP (in_reg, 0))] = 1;
4008                     }
4009                 }
4010             }
4011           /* If a pseudo that got a hard register is auto-incremented,
4012              we must purge records of copying it into pseudos without
4013              hard registers.  */
4014           for (x = REG_NOTES (insn); x; x = XEXP (x, 1))
4015             if (REG_NOTE_KIND (x) == REG_INC)
4016               {
4017                 /* See if this pseudo reg was reloaded in this insn.
4018                    If so, its last-reload info is still valid
4019                    because it is based on this insn's reload.  */
4020                 for (i = 0; i < n_reloads; i++)
4021                   if (rld[i].out == XEXP (x, 0))
4022                     break;
4023
4024                 if (i == n_reloads)
4025                   forget_old_reloads_1 (XEXP (x, 0), NULL_RTX, NULL);
4026               }
4027 #endif
4028         }
4029       /* A reload reg's contents are unknown after a label.  */
4030       if (LABEL_P (insn))
4031         CLEAR_HARD_REG_SET (reg_reloaded_valid);
4032
4033       /* Don't assume a reload reg is still good after a call insn
4034          if it is a call-used reg, or if it contains a value that will
4035          be partially clobbered by the call.  */
4036       else if (CALL_P (insn))
4037         {
4038         AND_COMPL_HARD_REG_SET (reg_reloaded_valid, call_used_reg_set);
4039         AND_COMPL_HARD_REG_SET (reg_reloaded_valid, reg_reloaded_call_part_clobbered);
4040         }
4041     }
4042
4043   /* Clean up.  */
4044   free (reg_last_reload_reg);
4045   free (reg_has_output_reload);
4046 }
4047
4048 /* Discard all record of any value reloaded from X,
4049    or reloaded in X from someplace else;
4050    unless X is an output reload reg of the current insn.
4051
4052    X may be a hard reg (the reload reg)
4053    or it may be a pseudo reg that was reloaded from.  */
4054
4055 static void
4056 forget_old_reloads_1 (rtx x, rtx ignored ATTRIBUTE_UNUSED,
4057                       void *data ATTRIBUTE_UNUSED)
4058 {
4059   unsigned int regno;
4060   unsigned int nr;
4061
4062   /* note_stores does give us subregs of hard regs,
4063      subreg_regno_offset requires a hard reg.  */
4064   while (GET_CODE (x) == SUBREG)
4065     {
4066       /* We ignore the subreg offset when calculating the regno,
4067          because we are using the entire underlying hard register
4068          below.  */
4069       x = SUBREG_REG (x);
4070     }
4071
4072   if (!REG_P (x))
4073     return;
4074
4075   regno = REGNO (x);
4076
4077   if (regno >= FIRST_PSEUDO_REGISTER)
4078     nr = 1;
4079   else
4080     {
4081       unsigned int i;
4082
4083       nr = hard_regno_nregs[regno][GET_MODE (x)];
4084       /* Storing into a spilled-reg invalidates its contents.
4085          This can happen if a block-local pseudo is allocated to that reg
4086          and it wasn't spilled because this block's total need is 0.
4087          Then some insn might have an optional reload and use this reg.  */
4088       for (i = 0; i < nr; i++)
4089         /* But don't do this if the reg actually serves as an output
4090            reload reg in the current instruction.  */
4091         if (n_reloads == 0
4092             || ! TEST_HARD_REG_BIT (reg_is_output_reload, regno + i))
4093           {
4094             CLEAR_HARD_REG_BIT (reg_reloaded_valid, regno + i);
4095             CLEAR_HARD_REG_BIT (reg_reloaded_call_part_clobbered, regno + i);
4096             spill_reg_store[regno + i] = 0;
4097           }
4098     }
4099
4100   /* Since value of X has changed,
4101      forget any value previously copied from it.  */
4102
4103   while (nr-- > 0)
4104     /* But don't forget a copy if this is the output reload
4105        that establishes the copy's validity.  */
4106     if (n_reloads == 0 || reg_has_output_reload[regno + nr] == 0)
4107       reg_last_reload_reg[regno + nr] = 0;
4108 }
4109 \f
4110 /* The following HARD_REG_SETs indicate when each hard register is
4111    used for a reload of various parts of the current insn.  */
4112
4113 /* If reg is unavailable for all reloads.  */
4114 static HARD_REG_SET reload_reg_unavailable;
4115 /* If reg is in use as a reload reg for a RELOAD_OTHER reload.  */
4116 static HARD_REG_SET reload_reg_used;
4117 /* If reg is in use for a RELOAD_FOR_INPUT_ADDRESS reload for operand I.  */
4118 static HARD_REG_SET reload_reg_used_in_input_addr[MAX_RECOG_OPERANDS];
4119 /* If reg is in use for a RELOAD_FOR_INPADDR_ADDRESS reload for operand I.  */
4120 static HARD_REG_SET reload_reg_used_in_inpaddr_addr[MAX_RECOG_OPERANDS];
4121 /* If reg is in use for a RELOAD_FOR_OUTPUT_ADDRESS reload for operand I.  */
4122 static HARD_REG_SET reload_reg_used_in_output_addr[MAX_RECOG_OPERANDS];
4123 /* If reg is in use for a RELOAD_FOR_OUTADDR_ADDRESS reload for operand I.  */
4124 static HARD_REG_SET reload_reg_used_in_outaddr_addr[MAX_RECOG_OPERANDS];
4125 /* If reg is in use for a RELOAD_FOR_INPUT reload for operand I.  */
4126 static HARD_REG_SET reload_reg_used_in_input[MAX_RECOG_OPERANDS];
4127 /* If reg is in use for a RELOAD_FOR_OUTPUT reload for operand I.  */
4128 static HARD_REG_SET reload_reg_used_in_output[MAX_RECOG_OPERANDS];
4129 /* If reg is in use for a RELOAD_FOR_OPERAND_ADDRESS reload.  */
4130 static HARD_REG_SET reload_reg_used_in_op_addr;
4131 /* If reg is in use for a RELOAD_FOR_OPADDR_ADDR reload.  */
4132 static HARD_REG_SET reload_reg_used_in_op_addr_reload;
4133 /* If reg is in use for a RELOAD_FOR_INSN reload.  */
4134 static HARD_REG_SET reload_reg_used_in_insn;
4135 /* If reg is in use for a RELOAD_FOR_OTHER_ADDRESS reload.  */
4136 static HARD_REG_SET reload_reg_used_in_other_addr;
4137
4138 /* If reg is in use as a reload reg for any sort of reload.  */
4139 static HARD_REG_SET reload_reg_used_at_all;
4140
4141 /* If reg is use as an inherited reload.  We just mark the first register
4142    in the group.  */
4143 static HARD_REG_SET reload_reg_used_for_inherit;
4144
4145 /* Records which hard regs are used in any way, either as explicit use or
4146    by being allocated to a pseudo during any point of the current insn.  */
4147 static HARD_REG_SET reg_used_in_insn;
4148
4149 /* Mark reg REGNO as in use for a reload of the sort spec'd by OPNUM and
4150    TYPE. MODE is used to indicate how many consecutive regs are
4151    actually used.  */
4152
4153 static void
4154 mark_reload_reg_in_use (unsigned int regno, int opnum, enum reload_type type,
4155                         enum machine_mode mode)
4156 {
4157   unsigned int nregs = hard_regno_nregs[regno][mode];
4158   unsigned int i;
4159
4160   for (i = regno; i < nregs + regno; i++)
4161     {
4162       switch (type)
4163         {
4164         case RELOAD_OTHER:
4165           SET_HARD_REG_BIT (reload_reg_used, i);
4166           break;
4167
4168         case RELOAD_FOR_INPUT_ADDRESS:
4169           SET_HARD_REG_BIT (reload_reg_used_in_input_addr[opnum], i);
4170           break;
4171
4172         case RELOAD_FOR_INPADDR_ADDRESS:
4173           SET_HARD_REG_BIT (reload_reg_used_in_inpaddr_addr[opnum], i);
4174           break;
4175
4176         case RELOAD_FOR_OUTPUT_ADDRESS:
4177           SET_HARD_REG_BIT (reload_reg_used_in_output_addr[opnum], i);
4178           break;
4179
4180         case RELOAD_FOR_OUTADDR_ADDRESS:
4181           SET_HARD_REG_BIT (reload_reg_used_in_outaddr_addr[opnum], i);
4182           break;
4183
4184         case RELOAD_FOR_OPERAND_ADDRESS:
4185           SET_HARD_REG_BIT (reload_reg_used_in_op_addr, i);
4186           break;
4187
4188         case RELOAD_FOR_OPADDR_ADDR:
4189           SET_HARD_REG_BIT (reload_reg_used_in_op_addr_reload, i);
4190           break;
4191
4192         case RELOAD_FOR_OTHER_ADDRESS:
4193           SET_HARD_REG_BIT (reload_reg_used_in_other_addr, i);
4194           break;
4195
4196         case RELOAD_FOR_INPUT:
4197           SET_HARD_REG_BIT (reload_reg_used_in_input[opnum], i);
4198           break;
4199
4200         case RELOAD_FOR_OUTPUT:
4201           SET_HARD_REG_BIT (reload_reg_used_in_output[opnum], i);
4202           break;
4203
4204         case RELOAD_FOR_INSN:
4205           SET_HARD_REG_BIT (reload_reg_used_in_insn, i);
4206           break;
4207         }
4208
4209       SET_HARD_REG_BIT (reload_reg_used_at_all, i);
4210     }
4211 }
4212
4213 /* Similarly, but show REGNO is no longer in use for a reload.  */
4214
4215 static void
4216 clear_reload_reg_in_use (unsigned int regno, int opnum,
4217                          enum reload_type type, enum machine_mode mode)
4218 {
4219   unsigned int nregs = hard_regno_nregs[regno][mode];
4220   unsigned int start_regno, end_regno, r;
4221   int i;
4222   /* A complication is that for some reload types, inheritance might
4223      allow multiple reloads of the same types to share a reload register.
4224      We set check_opnum if we have to check only reloads with the same
4225      operand number, and check_any if we have to check all reloads.  */
4226   int check_opnum = 0;
4227   int check_any = 0;
4228   HARD_REG_SET *used_in_set;
4229
4230   switch (type)
4231     {
4232     case RELOAD_OTHER:
4233       used_in_set = &reload_reg_used;
4234       break;
4235
4236     case RELOAD_FOR_INPUT_ADDRESS:
4237       used_in_set = &reload_reg_used_in_input_addr[opnum];
4238       break;
4239
4240     case RELOAD_FOR_INPADDR_ADDRESS:
4241       check_opnum = 1;
4242       used_in_set = &reload_reg_used_in_inpaddr_addr[opnum];
4243       break;
4244
4245     case RELOAD_FOR_OUTPUT_ADDRESS:
4246       used_in_set = &reload_reg_used_in_output_addr[opnum];
4247       break;
4248
4249     case RELOAD_FOR_OUTADDR_ADDRESS:
4250       check_opnum = 1;
4251       used_in_set = &reload_reg_used_in_outaddr_addr[opnum];
4252       break;
4253
4254     case RELOAD_FOR_OPERAND_ADDRESS:
4255       used_in_set = &reload_reg_used_in_op_addr;
4256       break;
4257
4258     case RELOAD_FOR_OPADDR_ADDR:
4259       check_any = 1;
4260       used_in_set = &reload_reg_used_in_op_addr_reload;
4261       break;
4262
4263     case RELOAD_FOR_OTHER_ADDRESS:
4264       used_in_set = &reload_reg_used_in_other_addr;
4265       check_any = 1;
4266       break;
4267
4268     case RELOAD_FOR_INPUT:
4269       used_in_set = &reload_reg_used_in_input[opnum];
4270       break;
4271
4272     case RELOAD_FOR_OUTPUT:
4273       used_in_set = &reload_reg_used_in_output[opnum];
4274       break;
4275
4276     case RELOAD_FOR_INSN:
4277       used_in_set = &reload_reg_used_in_insn;
4278       break;
4279     default:
4280       gcc_unreachable ();
4281     }
4282   /* We resolve conflicts with remaining reloads of the same type by
4283      excluding the intervals of reload registers by them from the
4284      interval of freed reload registers.  Since we only keep track of
4285      one set of interval bounds, we might have to exclude somewhat
4286      more than what would be necessary if we used a HARD_REG_SET here.
4287      But this should only happen very infrequently, so there should
4288      be no reason to worry about it.  */
4289
4290   start_regno = regno;
4291   end_regno = regno + nregs;
4292   if (check_opnum || check_any)
4293     {
4294       for (i = n_reloads - 1; i >= 0; i--)
4295         {
4296           if (rld[i].when_needed == type
4297               && (check_any || rld[i].opnum == opnum)
4298               && rld[i].reg_rtx)
4299             {
4300               unsigned int conflict_start = true_regnum (rld[i].reg_rtx);
4301               unsigned int conflict_end
4302                 = (conflict_start
4303                    + hard_regno_nregs[conflict_start][rld[i].mode]);
4304
4305               /* If there is an overlap with the first to-be-freed register,
4306                  adjust the interval start.  */
4307               if (conflict_start <= start_regno && conflict_end > start_regno)
4308                 start_regno = conflict_end;
4309               /* Otherwise, if there is a conflict with one of the other
4310                  to-be-freed registers, adjust the interval end.  */
4311               if (conflict_start > start_regno && conflict_start < end_regno)
4312                 end_regno = conflict_start;
4313             }
4314         }
4315     }
4316
4317   for (r = start_regno; r < end_regno; r++)
4318     CLEAR_HARD_REG_BIT (*used_in_set, r);
4319 }
4320
4321 /* 1 if reg REGNO is free as a reload reg for a reload of the sort
4322    specified by OPNUM and TYPE.  */
4323
4324 static int
4325 reload_reg_free_p (unsigned int regno, int opnum, enum reload_type type)
4326 {
4327   int i;
4328
4329   /* In use for a RELOAD_OTHER means it's not available for anything.  */
4330   if (TEST_HARD_REG_BIT (reload_reg_used, regno)
4331       || TEST_HARD_REG_BIT (reload_reg_unavailable, regno))
4332     return 0;
4333
4334   switch (type)
4335     {
4336     case RELOAD_OTHER:
4337       /* In use for anything means we can't use it for RELOAD_OTHER.  */
4338       if (TEST_HARD_REG_BIT (reload_reg_used_in_other_addr, regno)
4339           || TEST_HARD_REG_BIT (reload_reg_used_in_op_addr, regno)
4340           || TEST_HARD_REG_BIT (reload_reg_used_in_op_addr_reload, regno)
4341           || TEST_HARD_REG_BIT (reload_reg_used_in_insn, regno))
4342         return 0;
4343
4344       for (i = 0; i < reload_n_operands; i++)
4345         if (TEST_HARD_REG_BIT (reload_reg_used_in_input_addr[i], regno)
4346             || TEST_HARD_REG_BIT (reload_reg_used_in_inpaddr_addr[i], regno)
4347             || TEST_HARD_REG_BIT (reload_reg_used_in_output_addr[i], regno)
4348             || TEST_HARD_REG_BIT (reload_reg_used_in_outaddr_addr[i], regno)
4349             || TEST_HARD_REG_BIT (reload_reg_used_in_input[i], regno)
4350             || TEST_HARD_REG_BIT (reload_reg_used_in_output[i], regno))
4351           return 0;
4352
4353       return 1;
4354
4355     case RELOAD_FOR_INPUT:
4356       if (TEST_HARD_REG_BIT (reload_reg_used_in_insn, regno)
4357           || TEST_HARD_REG_BIT (reload_reg_used_in_op_addr, regno))
4358         return 0;
4359
4360       if (TEST_HARD_REG_BIT (reload_reg_used_in_op_addr_reload, regno))
4361         return 0;
4362
4363       /* If it is used for some other input, can't use it.  */
4364       for (i = 0; i < reload_n_operands; i++)
4365         if (TEST_HARD_REG_BIT (reload_reg_used_in_input[i], regno))
4366           return 0;
4367
4368       /* If it is used in a later operand's address, can't use it.  */
4369       for (i = opnum + 1; i < reload_n_operands; i++)
4370         if (TEST_HARD_REG_BIT (reload_reg_used_in_input_addr[i], regno)
4371             || TEST_HARD_REG_BIT (reload_reg_used_in_inpaddr_addr[i], regno))
4372           return 0;
4373
4374       return 1;
4375
4376     case RELOAD_FOR_INPUT_ADDRESS:
4377       /* Can't use a register if it is used for an input address for this
4378          operand or used as an input in an earlier one.  */
4379       if (TEST_HARD_REG_BIT (reload_reg_used_in_input_addr[opnum], regno)
4380           || TEST_HARD_REG_BIT (reload_reg_used_in_inpaddr_addr[opnum], regno))
4381         return 0;
4382
4383       for (i = 0; i < opnum; i++)
4384         if (TEST_HARD_REG_BIT (reload_reg_used_in_input[i], regno))
4385           return 0;
4386
4387       return 1;
4388
4389     case RELOAD_FOR_INPADDR_ADDRESS:
4390       /* Can't use a register if it is used for an input address
4391          for this operand or used as an input in an earlier
4392          one.  */
4393       if (TEST_HARD_REG_BIT (reload_reg_used_in_inpaddr_addr[opnum], regno))
4394         return 0;
4395
4396       for (i = 0; i < opnum; i++)
4397         if (TEST_HARD_REG_BIT (reload_reg_used_in_input[i], regno))
4398           return 0;
4399
4400       return 1;
4401
4402     case RELOAD_FOR_OUTPUT_ADDRESS:
4403       /* Can't use a register if it is used for an output address for this
4404          operand or used as an output in this or a later operand.  Note
4405          that multiple output operands are emitted in reverse order, so
4406          the conflicting ones are those with lower indices.  */
4407       if (TEST_HARD_REG_BIT (reload_reg_used_in_output_addr[opnum], regno))
4408         return 0;
4409
4410       for (i = 0; i <= opnum; i++)
4411         if (TEST_HARD_REG_BIT (reload_reg_used_in_output[i], regno))
4412           return 0;
4413
4414       return 1;
4415
4416     case RELOAD_FOR_OUTADDR_ADDRESS:
4417       /* Can't use a register if it is used for an output address
4418          for this operand or used as an output in this or a
4419          later operand.  Note that multiple output operands are
4420          emitted in reverse order, so the conflicting ones are
4421          those with lower indices.  */
4422       if (TEST_HARD_REG_BIT (reload_reg_used_in_outaddr_addr[opnum], regno))
4423         return 0;
4424
4425       for (i = 0; i <= opnum; i++)
4426         if (TEST_HARD_REG_BIT (reload_reg_used_in_output[i], regno))
4427           return 0;
4428
4429       return 1;
4430
4431     case RELOAD_FOR_OPERAND_ADDRESS:
4432       for (i = 0; i < reload_n_operands; i++)
4433         if (TEST_HARD_REG_BIT (reload_reg_used_in_input[i], regno))
4434           return 0;
4435
4436       return (! TEST_HARD_REG_BIT (reload_reg_used_in_insn, regno)
4437               && ! TEST_HARD_REG_BIT (reload_reg_used_in_op_addr, regno));
4438
4439     case RELOAD_FOR_OPADDR_ADDR:
4440       for (i = 0; i < reload_n_operands; i++)
4441         if (TEST_HARD_REG_BIT (reload_reg_used_in_input[i], regno))
4442           return 0;
4443
4444       return (!TEST_HARD_REG_BIT (reload_reg_used_in_op_addr_reload, regno));
4445
4446     case RELOAD_FOR_OUTPUT:
4447       /* This cannot share a register with RELOAD_FOR_INSN reloads, other
4448          outputs, or an operand address for this or an earlier output.
4449          Note that multiple output operands are emitted in reverse order,
4450          so the conflicting ones are those with higher indices.  */
4451       if (TEST_HARD_REG_BIT (reload_reg_used_in_insn, regno))
4452         return 0;
4453
4454       for (i = 0; i < reload_n_operands; i++)
4455         if (TEST_HARD_REG_BIT (reload_reg_used_in_output[i], regno))
4456           return 0;
4457
4458       for (i = opnum; i < reload_n_operands; i++)
4459         if (TEST_HARD_REG_BIT (reload_reg_used_in_output_addr[i], regno)
4460             || TEST_HARD_REG_BIT (reload_reg_used_in_outaddr_addr[i], regno))
4461           return 0;
4462
4463       return 1;
4464
4465     case RELOAD_FOR_INSN:
4466       for (i = 0; i < reload_n_operands; i++)
4467         if (TEST_HARD_REG_BIT (reload_reg_used_in_input[i], regno)
4468             || TEST_HARD_REG_BIT (reload_reg_used_in_output[i], regno))
4469           return 0;
4470
4471       return (! TEST_HARD_REG_BIT (reload_reg_used_in_insn, regno)
4472               && ! TEST_HARD_REG_BIT (reload_reg_used_in_op_addr, regno));
4473
4474     case RELOAD_FOR_OTHER_ADDRESS:
4475       return ! TEST_HARD_REG_BIT (reload_reg_used_in_other_addr, regno);
4476
4477     default:
4478       gcc_unreachable ();
4479     }
4480 }
4481
4482 /* Return 1 if the value in reload reg REGNO, as used by a reload
4483    needed for the part of the insn specified by OPNUM and TYPE,
4484    is still available in REGNO at the end of the insn.
4485
4486    We can assume that the reload reg was already tested for availability
4487    at the time it is needed, and we should not check this again,
4488    in case the reg has already been marked in use.  */
4489
4490 static int
4491 reload_reg_reaches_end_p (unsigned int regno, int opnum, enum reload_type type)
4492 {
4493   int i;
4494
4495   switch (type)
4496     {
4497     case RELOAD_OTHER:
4498       /* Since a RELOAD_OTHER reload claims the reg for the entire insn,
4499          its value must reach the end.  */
4500       return 1;
4501
4502       /* If this use is for part of the insn,
4503          its value reaches if no subsequent part uses the same register.
4504          Just like the above function, don't try to do this with lots
4505          of fallthroughs.  */
4506
4507     case RELOAD_FOR_OTHER_ADDRESS:
4508       /* Here we check for everything else, since these don't conflict
4509          with anything else and everything comes later.  */
4510
4511       for (i = 0; i < reload_n_operands; i++)
4512         if (TEST_HARD_REG_BIT (reload_reg_used_in_output_addr[i], regno)
4513             || TEST_HARD_REG_BIT (reload_reg_used_in_outaddr_addr[i], regno)
4514             || TEST_HARD_REG_BIT (reload_reg_used_in_output[i], regno)
4515             || TEST_HARD_REG_BIT (reload_reg_used_in_input_addr[i], regno)
4516             || TEST_HARD_REG_BIT (reload_reg_used_in_inpaddr_addr[i], regno)
4517             || TEST_HARD_REG_BIT (reload_reg_used_in_input[i], regno))
4518           return 0;
4519
4520       return (! TEST_HARD_REG_BIT (reload_reg_used_in_op_addr, regno)
4521               && ! TEST_HARD_REG_BIT (reload_reg_used_in_op_addr_reload, regno)
4522               && ! TEST_HARD_REG_BIT (reload_reg_used_in_insn, regno)
4523               && ! TEST_HARD_REG_BIT (reload_reg_used, regno));
4524
4525     case RELOAD_FOR_INPUT_ADDRESS:
4526     case RELOAD_FOR_INPADDR_ADDRESS:
4527       /* Similar, except that we check only for this and subsequent inputs
4528          and the address of only subsequent inputs and we do not need
4529          to check for RELOAD_OTHER objects since they are known not to
4530          conflict.  */
4531
4532       for (i = opnum; i < reload_n_operands; i++)
4533         if (TEST_HARD_REG_BIT (reload_reg_used_in_input[i], regno))
4534           return 0;
4535
4536       for (i = opnum + 1; i < reload_n_operands; i++)
4537         if (TEST_HARD_REG_BIT (reload_reg_used_in_input_addr[i], regno)
4538             || TEST_HARD_REG_BIT (reload_reg_used_in_inpaddr_addr[i], regno))
4539           return 0;
4540
4541       for (i = 0; i < reload_n_operands; i++)
4542         if (TEST_HARD_REG_BIT (reload_reg_used_in_output_addr[i], regno)
4543             || TEST_HARD_REG_BIT (reload_reg_used_in_outaddr_addr[i], regno)
4544             || TEST_HARD_REG_BIT (reload_reg_used_in_output[i], regno))
4545           return 0;
4546
4547       if (TEST_HARD_REG_BIT (reload_reg_used_in_op_addr_reload, regno))
4548         return 0;
4549
4550       return (!TEST_HARD_REG_BIT (reload_reg_used_in_op_addr, regno)
4551               && !TEST_HARD_REG_BIT (reload_reg_used_in_insn, regno)
4552               && !TEST_HARD_REG_BIT (reload_reg_used, regno));
4553
4554     case RELOAD_FOR_INPUT:
4555       /* Similar to input address, except we start at the next operand for
4556          both input and input address and we do not check for
4557          RELOAD_FOR_OPERAND_ADDRESS and RELOAD_FOR_INSN since these
4558          would conflict.  */
4559
4560       for (i = opnum + 1; i < reload_n_operands; i++)
4561         if (TEST_HARD_REG_BIT (reload_reg_used_in_input_addr[i], regno)
4562             || TEST_HARD_REG_BIT (reload_reg_used_in_inpaddr_addr[i], regno)
4563             || TEST_HARD_REG_BIT (reload_reg_used_in_input[i], regno))
4564           return 0;
4565
4566       /* ... fall through ...  */
4567
4568     case RELOAD_FOR_OPERAND_ADDRESS:
4569       /* Check outputs and their addresses.  */
4570
4571       for (i = 0; i < reload_n_operands; i++)
4572         if (TEST_HARD_REG_BIT (reload_reg_used_in_output_addr[i], regno)
4573             || TEST_HARD_REG_BIT (reload_reg_used_in_outaddr_addr[i], regno)
4574             || TEST_HARD_REG_BIT (reload_reg_used_in_output[i], regno))
4575           return 0;
4576
4577       return (!TEST_HARD_REG_BIT (reload_reg_used, regno));
4578
4579     case RELOAD_FOR_OPADDR_ADDR:
4580       for (i = 0; i < reload_n_operands; i++)
4581         if (TEST_HARD_REG_BIT (reload_reg_used_in_output_addr[i], regno)
4582             || TEST_HARD_REG_BIT (reload_reg_used_in_outaddr_addr[i], regno)
4583             || TEST_HARD_REG_BIT (reload_reg_used_in_output[i], regno))
4584           return 0;
4585
4586       return (!TEST_HARD_REG_BIT (reload_reg_used_in_op_addr, regno)
4587               && !TEST_HARD_REG_BIT (reload_reg_used_in_insn, regno)
4588               && !TEST_HARD_REG_BIT (reload_reg_used, regno));
4589
4590     case RELOAD_FOR_INSN:
4591       /* These conflict with other outputs with RELOAD_OTHER.  So
4592          we need only check for output addresses.  */
4593
4594       opnum = reload_n_operands;
4595
4596       /* ... fall through ...  */
4597
4598     case RELOAD_FOR_OUTPUT:
4599     case RELOAD_FOR_OUTPUT_ADDRESS:
4600     case RELOAD_FOR_OUTADDR_ADDRESS:
4601       /* We already know these can't conflict with a later output.  So the
4602          only thing to check are later output addresses.
4603          Note that multiple output operands are emitted in reverse order,
4604          so the conflicting ones are those with lower indices.  */
4605       for (i = 0; i < opnum; i++)
4606         if (TEST_HARD_REG_BIT (reload_reg_used_in_output_addr[i], regno)
4607             || TEST_HARD_REG_BIT (reload_reg_used_in_outaddr_addr[i], regno))
4608           return 0;
4609
4610       return 1;
4611
4612     default:
4613       gcc_unreachable ();
4614     }
4615 }
4616 \f
4617 /* Return 1 if the reloads denoted by R1 and R2 cannot share a register.
4618    Return 0 otherwise.
4619
4620    This function uses the same algorithm as reload_reg_free_p above.  */
4621
4622 static int
4623 reloads_conflict (int r1, int r2)
4624 {
4625   enum reload_type r1_type = rld[r1].when_needed;
4626   enum reload_type r2_type = rld[r2].when_needed;
4627   int r1_opnum = rld[r1].opnum;
4628   int r2_opnum = rld[r2].opnum;
4629
4630   /* RELOAD_OTHER conflicts with everything.  */
4631   if (r2_type == RELOAD_OTHER)
4632     return 1;
4633
4634   /* Otherwise, check conflicts differently for each type.  */
4635
4636   switch (r1_type)
4637     {
4638     case RELOAD_FOR_INPUT:
4639       return (r2_type == RELOAD_FOR_INSN
4640               || r2_type == RELOAD_FOR_OPERAND_ADDRESS
4641               || r2_type == RELOAD_FOR_OPADDR_ADDR
4642               || r2_type == RELOAD_FOR_INPUT
4643               || ((r2_type == RELOAD_FOR_INPUT_ADDRESS
4644                    || r2_type == RELOAD_FOR_INPADDR_ADDRESS)
4645                   && r2_opnum > r1_opnum));
4646
4647     case RELOAD_FOR_INPUT_ADDRESS:
4648       return ((r2_type == RELOAD_FOR_INPUT_ADDRESS && r1_opnum == r2_opnum)
4649               || (r2_type == RELOAD_FOR_INPUT && r2_opnum < r1_opnum));
4650
4651     case RELOAD_FOR_INPADDR_ADDRESS:
4652       return ((r2_type == RELOAD_FOR_INPADDR_ADDRESS && r1_opnum == r2_opnum)
4653               || (r2_type == RELOAD_FOR_INPUT && r2_opnum < r1_opnum));
4654
4655     case RELOAD_FOR_OUTPUT_ADDRESS:
4656       return ((r2_type == RELOAD_FOR_OUTPUT_ADDRESS && r2_opnum == r1_opnum)
4657               || (r2_type == RELOAD_FOR_OUTPUT && r2_opnum <= r1_opnum));
4658
4659     case RELOAD_FOR_OUTADDR_ADDRESS:
4660       return ((r2_type == RELOAD_FOR_OUTADDR_ADDRESS && r2_opnum == r1_opnum)
4661               || (r2_type == RELOAD_FOR_OUTPUT && r2_opnum <= r1_opnum));
4662
4663     case RELOAD_FOR_OPERAND_ADDRESS:
4664       return (r2_type == RELOAD_FOR_INPUT || r2_type == RELOAD_FOR_INSN
4665               || r2_type == RELOAD_FOR_OPERAND_ADDRESS);
4666
4667     case RELOAD_FOR_OPADDR_ADDR:
4668       return (r2_type == RELOAD_FOR_INPUT
4669               || r2_type == RELOAD_FOR_OPADDR_ADDR);
4670
4671     case RELOAD_FOR_OUTPUT:
4672       return (r2_type == RELOAD_FOR_INSN || r2_type == RELOAD_FOR_OUTPUT
4673               || ((r2_type == RELOAD_FOR_OUTPUT_ADDRESS
4674                    || r2_type == RELOAD_FOR_OUTADDR_ADDRESS)
4675                   && r2_opnum >= r1_opnum));
4676
4677     case RELOAD_FOR_INSN:
4678       return (r2_type == RELOAD_FOR_INPUT || r2_type == RELOAD_FOR_OUTPUT
4679               || r2_type == RELOAD_FOR_INSN
4680               || r2_type == RELOAD_FOR_OPERAND_ADDRESS);
4681
4682     case RELOAD_FOR_OTHER_ADDRESS:
4683       return r2_type == RELOAD_FOR_OTHER_ADDRESS;
4684
4685     case RELOAD_OTHER:
4686       return 1;
4687
4688     default:
4689       gcc_unreachable ();
4690     }
4691 }
4692 \f
4693 /* Indexed by reload number, 1 if incoming value
4694    inherited from previous insns.  */
4695 static char reload_inherited[MAX_RELOADS];
4696
4697 /* For an inherited reload, this is the insn the reload was inherited from,
4698    if we know it.  Otherwise, this is 0.  */
4699 static rtx reload_inheritance_insn[MAX_RELOADS];
4700
4701 /* If nonzero, this is a place to get the value of the reload,
4702    rather than using reload_in.  */
4703 static rtx reload_override_in[MAX_RELOADS];
4704
4705 /* For each reload, the hard register number of the register used,
4706    or -1 if we did not need a register for this reload.  */
4707 static int reload_spill_index[MAX_RELOADS];
4708
4709 /* Subroutine of free_for_value_p, used to check a single register.
4710    START_REGNO is the starting regno of the full reload register
4711    (possibly comprising multiple hard registers) that we are considering.  */
4712
4713 static int
4714 reload_reg_free_for_value_p (int start_regno, int regno, int opnum,
4715                              enum reload_type type, rtx value, rtx out,
4716                              int reloadnum, int ignore_address_reloads)
4717 {
4718   int time1;
4719   /* Set if we see an input reload that must not share its reload register
4720      with any new earlyclobber, but might otherwise share the reload
4721      register with an output or input-output reload.  */
4722   int check_earlyclobber = 0;
4723   int i;
4724   int copy = 0;
4725
4726   if (TEST_HARD_REG_BIT (reload_reg_unavailable, regno))
4727     return 0;
4728
4729   if (out == const0_rtx)
4730     {
4731       copy = 1;
4732       out = NULL_RTX;
4733     }
4734
4735   /* We use some pseudo 'time' value to check if the lifetimes of the
4736      new register use would overlap with the one of a previous reload
4737      that is not read-only or uses a different value.
4738      The 'time' used doesn't have to be linear in any shape or form, just
4739      monotonic.
4740      Some reload types use different 'buckets' for each operand.
4741      So there are MAX_RECOG_OPERANDS different time values for each
4742      such reload type.
4743      We compute TIME1 as the time when the register for the prospective
4744      new reload ceases to be live, and TIME2 for each existing
4745      reload as the time when that the reload register of that reload
4746      becomes live.
4747      Where there is little to be gained by exact lifetime calculations,
4748      we just make conservative assumptions, i.e. a longer lifetime;
4749      this is done in the 'default:' cases.  */
4750   switch (type)
4751     {
4752     case RELOAD_FOR_OTHER_ADDRESS:
4753       /* RELOAD_FOR_OTHER_ADDRESS conflicts with RELOAD_OTHER reloads.  */
4754       time1 = copy ? 0 : 1;
4755       break;
4756     case RELOAD_OTHER:
4757       time1 = copy ? 1 : MAX_RECOG_OPERANDS * 5 + 5;
4758       break;
4759       /* For each input, we may have a sequence of RELOAD_FOR_INPADDR_ADDRESS,
4760          RELOAD_FOR_INPUT_ADDRESS and RELOAD_FOR_INPUT.  By adding 0 / 1 / 2 ,
4761          respectively, to the time values for these, we get distinct time
4762          values.  To get distinct time values for each operand, we have to
4763          multiply opnum by at least three.  We round that up to four because
4764          multiply by four is often cheaper.  */
4765     case RELOAD_FOR_INPADDR_ADDRESS:
4766       time1 = opnum * 4 + 2;
4767       break;
4768     case RELOAD_FOR_INPUT_ADDRESS:
4769       time1 = opnum * 4 + 3;
4770       break;
4771     case RELOAD_FOR_INPUT:
4772       /* All RELOAD_FOR_INPUT reloads remain live till the instruction
4773          executes (inclusive).  */
4774       time1 = copy ? opnum * 4 + 4 : MAX_RECOG_OPERANDS * 4 + 3;
4775       break;
4776     case RELOAD_FOR_OPADDR_ADDR:
4777       /* opnum * 4 + 4
4778          <= (MAX_RECOG_OPERANDS - 1) * 4 + 4 == MAX_RECOG_OPERANDS * 4 */
4779       time1 = MAX_RECOG_OPERANDS * 4 + 1;
4780       break;
4781     case RELOAD_FOR_OPERAND_ADDRESS:
4782       /* RELOAD_FOR_OPERAND_ADDRESS reloads are live even while the insn
4783          is executed.  */
4784       time1 = copy ? MAX_RECOG_OPERANDS * 4 + 2 : MAX_RECOG_OPERANDS * 4 + 3;
4785       break;
4786     case RELOAD_FOR_OUTADDR_ADDRESS:
4787       time1 = MAX_RECOG_OPERANDS * 4 + 4 + opnum;
4788       break;
4789     case RELOAD_FOR_OUTPUT_ADDRESS:
4790       time1 = MAX_RECOG_OPERANDS * 4 + 5 + opnum;
4791       break;
4792     default:
4793       time1 = MAX_RECOG_OPERANDS * 5 + 5;
4794     }
4795
4796   for (i = 0; i < n_reloads; i++)
4797     {
4798       rtx reg = rld[i].reg_rtx;
4799       if (reg && REG_P (reg)
4800           && ((unsigned) regno - true_regnum (reg)
4801               <= hard_regno_nregs[REGNO (reg)][GET_MODE (reg)] - (unsigned) 1)
4802           && i != reloadnum)
4803         {
4804           rtx other_input = rld[i].in;
4805
4806           /* If the other reload loads the same input value, that
4807              will not cause a conflict only if it's loading it into
4808              the same register.  */
4809           if (true_regnum (reg) != start_regno)
4810             other_input = NULL_RTX;
4811           if (! other_input || ! rtx_equal_p (other_input, value)
4812               || rld[i].out || out)
4813             {
4814               int time2;
4815               switch (rld[i].when_needed)
4816                 {
4817                 case RELOAD_FOR_OTHER_ADDRESS:
4818                   time2 = 0;
4819                   break;
4820                 case RELOAD_FOR_INPADDR_ADDRESS:
4821                   /* find_reloads makes sure that a
4822                      RELOAD_FOR_{INP,OP,OUT}ADDR_ADDRESS reload is only used
4823                      by at most one - the first -
4824                      RELOAD_FOR_{INPUT,OPERAND,OUTPUT}_ADDRESS .  If the
4825                      address reload is inherited, the address address reload
4826                      goes away, so we can ignore this conflict.  */
4827                   if (type == RELOAD_FOR_INPUT_ADDRESS && reloadnum == i + 1
4828                       && ignore_address_reloads
4829                       /* Unless the RELOAD_FOR_INPUT is an auto_inc expression.
4830                          Then the address address is still needed to store
4831                          back the new address.  */
4832                       && ! rld[reloadnum].out)
4833                     continue;
4834                   /* Likewise, if a RELOAD_FOR_INPUT can inherit a value, its
4835                      RELOAD_FOR_INPUT_ADDRESS / RELOAD_FOR_INPADDR_ADDRESS
4836                      reloads go away.  */
4837                   if (type == RELOAD_FOR_INPUT && opnum == rld[i].opnum
4838                       && ignore_address_reloads
4839                       /* Unless we are reloading an auto_inc expression.  */
4840                       && ! rld[reloadnum].out)
4841                     continue;
4842                   time2 = rld[i].opnum * 4 + 2;
4843                   break;
4844                 case RELOAD_FOR_INPUT_ADDRESS:
4845                   if (type == RELOAD_FOR_INPUT && opnum == rld[i].opnum
4846                       && ignore_address_reloads
4847                       && ! rld[reloadnum].out)
4848                     continue;
4849                   time2 = rld[i].opnum * 4 + 3;
4850                   break;
4851                 case RELOAD_FOR_INPUT:
4852                   time2 = rld[i].opnum * 4 + 4;
4853                   check_earlyclobber = 1;
4854                   break;
4855                   /* rld[i].opnum * 4 + 4 <= (MAX_RECOG_OPERAND - 1) * 4 + 4
4856                      == MAX_RECOG_OPERAND * 4  */
4857                 case RELOAD_FOR_OPADDR_ADDR:
4858                   if (type == RELOAD_FOR_OPERAND_ADDRESS && reloadnum == i + 1
4859                       && ignore_address_reloads
4860                       && ! rld[reloadnum].out)
4861                     continue;
4862                   time2 = MAX_RECOG_OPERANDS * 4 + 1;
4863                   break;
4864                 case RELOAD_FOR_OPERAND_ADDRESS:
4865                   time2 = MAX_RECOG_OPERANDS * 4 + 2;
4866                   check_earlyclobber = 1;
4867                   break;
4868                 case RELOAD_FOR_INSN:
4869                   time2 = MAX_RECOG_OPERANDS * 4 + 3;
4870                   break;
4871                 case RELOAD_FOR_OUTPUT:
4872                   /* All RELOAD_FOR_OUTPUT reloads become live just after the
4873                      instruction is executed.  */
4874                   time2 = MAX_RECOG_OPERANDS * 4 + 4;
4875                   break;
4876                   /* The first RELOAD_FOR_OUTADDR_ADDRESS reload conflicts with
4877                      the RELOAD_FOR_OUTPUT reloads, so assign it the same time
4878                      value.  */
4879                 case RELOAD_FOR_OUTADDR_ADDRESS:
4880                   if (type == RELOAD_FOR_OUTPUT_ADDRESS && reloadnum == i + 1
4881                       && ignore_address_reloads
4882                       && ! rld[reloadnum].out)
4883                     continue;
4884                   time2 = MAX_RECOG_OPERANDS * 4 + 4 + rld[i].opnum;
4885                   break;
4886                 case RELOAD_FOR_OUTPUT_ADDRESS:
4887                   time2 = MAX_RECOG_OPERANDS * 4 + 5 + rld[i].opnum;
4888                   break;
4889                 case RELOAD_OTHER:
4890                   /* If there is no conflict in the input part, handle this
4891                      like an output reload.  */
4892                   if (! rld[i].in || rtx_equal_p (other_input, value))
4893                     {
4894                       time2 = MAX_RECOG_OPERANDS * 4 + 4;
4895                       /* Earlyclobbered outputs must conflict with inputs.  */
4896                       if (earlyclobber_operand_p (rld[i].out))
4897                         time2 = MAX_RECOG_OPERANDS * 4 + 3;
4898
4899                       break;
4900                     }
4901                   time2 = 1;
4902                   /* RELOAD_OTHER might be live beyond instruction execution,
4903                      but this is not obvious when we set time2 = 1.  So check
4904                      here if there might be a problem with the new reload
4905                      clobbering the register used by the RELOAD_OTHER.  */
4906                   if (out)
4907                     return 0;
4908                   break;
4909                 default:
4910                   return 0;
4911                 }
4912               if ((time1 >= time2
4913                    && (! rld[i].in || rld[i].out
4914                        || ! rtx_equal_p (other_input, value)))
4915                   || (out && rld[reloadnum].out_reg
4916                       && time2 >= MAX_RECOG_OPERANDS * 4 + 3))
4917                 return 0;
4918             }
4919         }
4920     }
4921
4922   /* Earlyclobbered outputs must conflict with inputs.  */
4923   if (check_earlyclobber && out && earlyclobber_operand_p (out))
4924     return 0;
4925
4926   return 1;
4927 }
4928
4929 /* Return 1 if the value in reload reg REGNO, as used by a reload
4930    needed for the part of the insn specified by OPNUM and TYPE,
4931    may be used to load VALUE into it.
4932
4933    MODE is the mode in which the register is used, this is needed to
4934    determine how many hard regs to test.
4935
4936    Other read-only reloads with the same value do not conflict
4937    unless OUT is nonzero and these other reloads have to live while
4938    output reloads live.
4939    If OUT is CONST0_RTX, this is a special case: it means that the
4940    test should not be for using register REGNO as reload register, but
4941    for copying from register REGNO into the reload register.
4942
4943    RELOADNUM is the number of the reload we want to load this value for;
4944    a reload does not conflict with itself.
4945
4946    When IGNORE_ADDRESS_RELOADS is set, we can not have conflicts with
4947    reloads that load an address for the very reload we are considering.
4948
4949    The caller has to make sure that there is no conflict with the return
4950    register.  */
4951
4952 static int
4953 free_for_value_p (int regno, enum machine_mode mode, int opnum,
4954                   enum reload_type type, rtx value, rtx out, int reloadnum,
4955                   int ignore_address_reloads)
4956 {
4957   int nregs = hard_regno_nregs[regno][mode];
4958   while (nregs-- > 0)
4959     if (! reload_reg_free_for_value_p (regno, regno + nregs, opnum, type,
4960                                        value, out, reloadnum,
4961                                        ignore_address_reloads))
4962       return 0;
4963   return 1;
4964 }
4965
4966 /* Return nonzero if the rtx X is invariant over the current function.  */
4967 /* ??? Actually, the places where we use this expect exactly what is
4968    tested here, and not everything that is function invariant.  In
4969    particular, the frame pointer and arg pointer are special cased;
4970    pic_offset_table_rtx is not, and we must not spill these things to
4971    memory.  */
4972
4973 int
4974 function_invariant_p (rtx x)
4975 {
4976   if (CONSTANT_P (x))
4977     return 1;
4978   if (x == frame_pointer_rtx || x == arg_pointer_rtx)
4979     return 1;
4980   if (GET_CODE (x) == PLUS
4981       && (XEXP (x, 0) == frame_pointer_rtx || XEXP (x, 0) == arg_pointer_rtx)
4982       && CONSTANT_P (XEXP (x, 1)))
4983     return 1;
4984   return 0;
4985 }
4986
4987 /* Determine whether the reload reg X overlaps any rtx'es used for
4988    overriding inheritance.  Return nonzero if so.  */
4989
4990 static int
4991 conflicts_with_override (rtx x)
4992 {
4993   int i;
4994   for (i = 0; i < n_reloads; i++)
4995     if (reload_override_in[i]
4996         && reg_overlap_mentioned_p (x, reload_override_in[i]))
4997       return 1;
4998   return 0;
4999 }
5000 \f
5001 /* Give an error message saying we failed to find a reload for INSN,
5002    and clear out reload R.  */
5003 static void
5004 failed_reload (rtx insn, int r)
5005 {
5006   if (asm_noperands (PATTERN (insn)) < 0)
5007     /* It's the compiler's fault.  */
5008     fatal_insn ("could not find a spill register", insn);
5009
5010   /* It's the user's fault; the operand's mode and constraint
5011      don't match.  Disable this reload so we don't crash in final.  */
5012   error_for_asm (insn,
5013                  "%<asm%> operand constraint incompatible with operand size");
5014   rld[r].in = 0;
5015   rld[r].out = 0;
5016   rld[r].reg_rtx = 0;
5017   rld[r].optional = 1;
5018   rld[r].secondary_p = 1;
5019 }
5020
5021 /* I is the index in SPILL_REG_RTX of the reload register we are to allocate
5022    for reload R.  If it's valid, get an rtx for it.  Return nonzero if
5023    successful.  */
5024 static int
5025 set_reload_reg (int i, int r)
5026 {
5027   int regno;
5028   rtx reg = spill_reg_rtx[i];
5029
5030   if (reg == 0 || GET_MODE (reg) != rld[r].mode)
5031     spill_reg_rtx[i] = reg
5032       = gen_rtx_REG (rld[r].mode, spill_regs[i]);
5033
5034   regno = true_regnum (reg);
5035
5036   /* Detect when the reload reg can't hold the reload mode.
5037      This used to be one `if', but Sequent compiler can't handle that.  */
5038   if (HARD_REGNO_MODE_OK (regno, rld[r].mode))
5039     {
5040       enum machine_mode test_mode = VOIDmode;
5041       if (rld[r].in)
5042         test_mode = GET_MODE (rld[r].in);
5043       /* If rld[r].in has VOIDmode, it means we will load it
5044          in whatever mode the reload reg has: to wit, rld[r].mode.
5045          We have already tested that for validity.  */
5046       /* Aside from that, we need to test that the expressions
5047          to reload from or into have modes which are valid for this
5048          reload register.  Otherwise the reload insns would be invalid.  */
5049       if (! (rld[r].in != 0 && test_mode != VOIDmode
5050              && ! HARD_REGNO_MODE_OK (regno, test_mode)))
5051         if (! (rld[r].out != 0
5052                && ! HARD_REGNO_MODE_OK (regno, GET_MODE (rld[r].out))))
5053           {
5054             /* The reg is OK.  */
5055             last_spill_reg = i;
5056
5057             /* Mark as in use for this insn the reload regs we use
5058                for this.  */
5059             mark_reload_reg_in_use (spill_regs[i], rld[r].opnum,
5060                                     rld[r].when_needed, rld[r].mode);
5061
5062             rld[r].reg_rtx = reg;
5063             reload_spill_index[r] = spill_regs[i];
5064             return 1;
5065           }
5066     }
5067   return 0;
5068 }
5069
5070 /* Find a spill register to use as a reload register for reload R.
5071    LAST_RELOAD is nonzero if this is the last reload for the insn being
5072    processed.
5073
5074    Set rld[R].reg_rtx to the register allocated.
5075
5076    We return 1 if successful, or 0 if we couldn't find a spill reg and
5077    we didn't change anything.  */
5078
5079 static int
5080 allocate_reload_reg (struct insn_chain *chain ATTRIBUTE_UNUSED, int r,
5081                      int last_reload)
5082 {
5083   int i, pass, count;
5084
5085   /* If we put this reload ahead, thinking it is a group,
5086      then insist on finding a group.  Otherwise we can grab a
5087      reg that some other reload needs.
5088      (That can happen when we have a 68000 DATA_OR_FP_REG
5089      which is a group of data regs or one fp reg.)
5090      We need not be so restrictive if there are no more reloads
5091      for this insn.
5092
5093      ??? Really it would be nicer to have smarter handling
5094      for that kind of reg class, where a problem like this is normal.
5095      Perhaps those classes should be avoided for reloading
5096      by use of more alternatives.  */
5097
5098   int force_group = rld[r].nregs > 1 && ! last_reload;
5099
5100   /* If we want a single register and haven't yet found one,
5101      take any reg in the right class and not in use.
5102      If we want a consecutive group, here is where we look for it.
5103
5104      We use two passes so we can first look for reload regs to
5105      reuse, which are already in use for other reloads in this insn,
5106      and only then use additional registers.
5107      I think that maximizing reuse is needed to make sure we don't
5108      run out of reload regs.  Suppose we have three reloads, and
5109      reloads A and B can share regs.  These need two regs.
5110      Suppose A and B are given different regs.
5111      That leaves none for C.  */
5112   for (pass = 0; pass < 2; pass++)
5113     {
5114       /* I is the index in spill_regs.
5115          We advance it round-robin between insns to use all spill regs
5116          equally, so that inherited reloads have a chance
5117          of leapfrogging each other.  */
5118
5119       i = last_spill_reg;
5120
5121       for (count = 0; count < n_spills; count++)
5122         {
5123           int class = (int) rld[r].class;
5124           int regnum;
5125
5126           i++;
5127           if (i >= n_spills)
5128             i -= n_spills;
5129           regnum = spill_regs[i];
5130
5131           if ((reload_reg_free_p (regnum, rld[r].opnum,
5132                                   rld[r].when_needed)
5133                || (rld[r].in
5134                    /* We check reload_reg_used to make sure we
5135                       don't clobber the return register.  */
5136                    && ! TEST_HARD_REG_BIT (reload_reg_used, regnum)
5137                    && free_for_value_p (regnum, rld[r].mode, rld[r].opnum,
5138                                         rld[r].when_needed, rld[r].in,
5139                                         rld[r].out, r, 1)))
5140               && TEST_HARD_REG_BIT (reg_class_contents[class], regnum)
5141               && HARD_REGNO_MODE_OK (regnum, rld[r].mode)
5142               /* Look first for regs to share, then for unshared.  But
5143                  don't share regs used for inherited reloads; they are
5144                  the ones we want to preserve.  */
5145               && (pass
5146                   || (TEST_HARD_REG_BIT (reload_reg_used_at_all,
5147                                          regnum)
5148                       && ! TEST_HARD_REG_BIT (reload_reg_used_for_inherit,
5149                                               regnum))))
5150             {
5151               int nr = hard_regno_nregs[regnum][rld[r].mode];
5152               /* Avoid the problem where spilling a GENERAL_OR_FP_REG
5153                  (on 68000) got us two FP regs.  If NR is 1,
5154                  we would reject both of them.  */
5155               if (force_group)
5156                 nr = rld[r].nregs;
5157               /* If we need only one reg, we have already won.  */
5158               if (nr == 1)
5159                 {
5160                   /* But reject a single reg if we demand a group.  */
5161                   if (force_group)
5162                     continue;
5163                   break;
5164                 }
5165               /* Otherwise check that as many consecutive regs as we need
5166                  are available here.  */
5167               while (nr > 1)
5168                 {
5169                   int regno = regnum + nr - 1;
5170                   if (!(TEST_HARD_REG_BIT (reg_class_contents[class], regno)
5171                         && spill_reg_order[regno] >= 0
5172                         && reload_reg_free_p (regno, rld[r].opnum,
5173                                               rld[r].when_needed)))
5174                     break;
5175                   nr--;
5176                 }
5177               if (nr == 1)
5178                 break;
5179             }
5180         }
5181
5182       /* If we found something on pass 1, omit pass 2.  */
5183       if (count < n_spills)
5184         break;
5185     }
5186
5187   /* We should have found a spill register by now.  */
5188   if (count >= n_spills)
5189     return 0;
5190
5191   /* I is the index in SPILL_REG_RTX of the reload register we are to
5192      allocate.  Get an rtx for it and find its register number.  */
5193
5194   return set_reload_reg (i, r);
5195 }
5196 \f
5197 /* Initialize all the tables needed to allocate reload registers.
5198    CHAIN is the insn currently being processed; SAVE_RELOAD_REG_RTX
5199    is the array we use to restore the reg_rtx field for every reload.  */
5200
5201 static void
5202 choose_reload_regs_init (struct insn_chain *chain, rtx *save_reload_reg_rtx)
5203 {
5204   int i;
5205
5206   for (i = 0; i < n_reloads; i++)
5207     rld[i].reg_rtx = save_reload_reg_rtx[i];
5208
5209   memset (reload_inherited, 0, MAX_RELOADS);
5210   memset (reload_inheritance_insn, 0, MAX_RELOADS * sizeof (rtx));
5211   memset (reload_override_in, 0, MAX_RELOADS * sizeof (rtx));
5212
5213   CLEAR_HARD_REG_SET (reload_reg_used);
5214   CLEAR_HARD_REG_SET (reload_reg_used_at_all);
5215   CLEAR_HARD_REG_SET (reload_reg_used_in_op_addr);
5216   CLEAR_HARD_REG_SET (reload_reg_used_in_op_addr_reload);
5217   CLEAR_HARD_REG_SET (reload_reg_used_in_insn);
5218   CLEAR_HARD_REG_SET (reload_reg_used_in_other_addr);
5219
5220   CLEAR_HARD_REG_SET (reg_used_in_insn);
5221   {
5222     HARD_REG_SET tmp;
5223     REG_SET_TO_HARD_REG_SET (tmp, &chain->live_throughout);
5224     IOR_HARD_REG_SET (reg_used_in_insn, tmp);
5225     REG_SET_TO_HARD_REG_SET (tmp, &chain->dead_or_set);
5226     IOR_HARD_REG_SET (reg_used_in_insn, tmp);
5227     compute_use_by_pseudos (&reg_used_in_insn, &chain->live_throughout);
5228     compute_use_by_pseudos (&reg_used_in_insn, &chain->dead_or_set);
5229   }
5230
5231   for (i = 0; i < reload_n_operands; i++)
5232     {
5233       CLEAR_HARD_REG_SET (reload_reg_used_in_output[i]);
5234       CLEAR_HARD_REG_SET (reload_reg_used_in_input[i]);
5235       CLEAR_HARD_REG_SET (reload_reg_used_in_input_addr[i]);
5236       CLEAR_HARD_REG_SET (reload_reg_used_in_inpaddr_addr[i]);
5237       CLEAR_HARD_REG_SET (reload_reg_used_in_output_addr[i]);
5238       CLEAR_HARD_REG_SET (reload_reg_used_in_outaddr_addr[i]);
5239     }
5240
5241   COMPL_HARD_REG_SET (reload_reg_unavailable, chain->used_spill_regs);
5242
5243   CLEAR_HARD_REG_SET (reload_reg_used_for_inherit);
5244
5245   for (i = 0; i < n_reloads; i++)
5246     /* If we have already decided to use a certain register,
5247        don't use it in another way.  */
5248     if (rld[i].reg_rtx)
5249       mark_reload_reg_in_use (REGNO (rld[i].reg_rtx), rld[i].opnum,
5250                               rld[i].when_needed, rld[i].mode);
5251 }
5252
5253 /* Assign hard reg targets for the pseudo-registers we must reload
5254    into hard regs for this insn.
5255    Also output the instructions to copy them in and out of the hard regs.
5256
5257    For machines with register classes, we are responsible for
5258    finding a reload reg in the proper class.  */
5259
5260 static void
5261 choose_reload_regs (struct insn_chain *chain)
5262 {
5263   rtx insn = chain->insn;
5264   int i, j;
5265   unsigned int max_group_size = 1;
5266   enum reg_class group_class = NO_REGS;
5267   int pass, win, inheritance;
5268
5269   rtx save_reload_reg_rtx[MAX_RELOADS];
5270
5271   /* In order to be certain of getting the registers we need,
5272      we must sort the reloads into order of increasing register class.
5273      Then our grabbing of reload registers will parallel the process
5274      that provided the reload registers.
5275
5276      Also note whether any of the reloads wants a consecutive group of regs.
5277      If so, record the maximum size of the group desired and what
5278      register class contains all the groups needed by this insn.  */
5279
5280   for (j = 0; j < n_reloads; j++)
5281     {
5282       reload_order[j] = j;
5283       reload_spill_index[j] = -1;
5284
5285       if (rld[j].nregs > 1)
5286         {
5287           max_group_size = MAX (rld[j].nregs, max_group_size);
5288           group_class
5289             = reg_class_superunion[(int) rld[j].class][(int) group_class];
5290         }
5291
5292       save_reload_reg_rtx[j] = rld[j].reg_rtx;
5293     }
5294
5295   if (n_reloads > 1)
5296     qsort (reload_order, n_reloads, sizeof (short), reload_reg_class_lower);
5297
5298   /* If -O, try first with inheritance, then turning it off.
5299      If not -O, don't do inheritance.
5300      Using inheritance when not optimizing leads to paradoxes
5301      with fp on the 68k: fp numbers (not NaNs) fail to be equal to themselves
5302      because one side of the comparison might be inherited.  */
5303   win = 0;
5304   for (inheritance = optimize > 0; inheritance >= 0; inheritance--)
5305     {
5306       choose_reload_regs_init (chain, save_reload_reg_rtx);
5307
5308       /* Process the reloads in order of preference just found.
5309          Beyond this point, subregs can be found in reload_reg_rtx.
5310
5311          This used to look for an existing reloaded home for all of the
5312          reloads, and only then perform any new reloads.  But that could lose
5313          if the reloads were done out of reg-class order because a later
5314          reload with a looser constraint might have an old home in a register
5315          needed by an earlier reload with a tighter constraint.
5316
5317          To solve this, we make two passes over the reloads, in the order
5318          described above.  In the first pass we try to inherit a reload
5319          from a previous insn.  If there is a later reload that needs a
5320          class that is a proper subset of the class being processed, we must
5321          also allocate a spill register during the first pass.
5322
5323          Then make a second pass over the reloads to allocate any reloads
5324          that haven't been given registers yet.  */
5325
5326       for (j = 0; j < n_reloads; j++)
5327         {
5328           int r = reload_order[j];
5329           rtx search_equiv = NULL_RTX;
5330
5331           /* Ignore reloads that got marked inoperative.  */
5332           if (rld[r].out == 0 && rld[r].in == 0
5333               && ! rld[r].secondary_p)
5334             continue;
5335
5336           /* If find_reloads chose to use reload_in or reload_out as a reload
5337              register, we don't need to chose one.  Otherwise, try even if it
5338              found one since we might save an insn if we find the value lying
5339              around.
5340              Try also when reload_in is a pseudo without a hard reg.  */
5341           if (rld[r].in != 0 && rld[r].reg_rtx != 0
5342               && (rtx_equal_p (rld[r].in, rld[r].reg_rtx)
5343                   || (rtx_equal_p (rld[r].out, rld[r].reg_rtx)
5344                       && !MEM_P (rld[r].in)
5345                       && true_regnum (rld[r].in) < FIRST_PSEUDO_REGISTER)))
5346             continue;
5347
5348 #if 0 /* No longer needed for correct operation.
5349          It might give better code, or might not; worth an experiment?  */
5350           /* If this is an optional reload, we can't inherit from earlier insns
5351              until we are sure that any non-optional reloads have been allocated.
5352              The following code takes advantage of the fact that optional reloads
5353              are at the end of reload_order.  */
5354           if (rld[r].optional != 0)
5355             for (i = 0; i < j; i++)
5356               if ((rld[reload_order[i]].out != 0
5357                    || rld[reload_order[i]].in != 0
5358                    || rld[reload_order[i]].secondary_p)
5359                   && ! rld[reload_order[i]].optional
5360                   && rld[reload_order[i]].reg_rtx == 0)
5361                 allocate_reload_reg (chain, reload_order[i], 0);
5362 #endif
5363
5364           /* First see if this pseudo is already available as reloaded
5365              for a previous insn.  We cannot try to inherit for reloads
5366              that are smaller than the maximum number of registers needed
5367              for groups unless the register we would allocate cannot be used
5368              for the groups.
5369
5370              We could check here to see if this is a secondary reload for
5371              an object that is already in a register of the desired class.
5372              This would avoid the need for the secondary reload register.
5373              But this is complex because we can't easily determine what
5374              objects might want to be loaded via this reload.  So let a
5375              register be allocated here.  In `emit_reload_insns' we suppress
5376              one of the loads in the case described above.  */
5377
5378           if (inheritance)
5379             {
5380               int byte = 0;
5381               int regno = -1;
5382               enum machine_mode mode = VOIDmode;
5383
5384               if (rld[r].in == 0)
5385                 ;
5386               else if (REG_P (rld[r].in))
5387                 {
5388                   regno = REGNO (rld[r].in);
5389                   mode = GET_MODE (rld[r].in);
5390                 }
5391               else if (REG_P (rld[r].in_reg))
5392                 {
5393                   regno = REGNO (rld[r].in_reg);
5394                   mode = GET_MODE (rld[r].in_reg);
5395                 }
5396               else if (GET_CODE (rld[r].in_reg) == SUBREG
5397                        && REG_P (SUBREG_REG (rld[r].in_reg)))
5398                 {
5399                   byte = SUBREG_BYTE (rld[r].in_reg);
5400                   regno = REGNO (SUBREG_REG (rld[r].in_reg));
5401                   if (regno < FIRST_PSEUDO_REGISTER)
5402                     regno = subreg_regno (rld[r].in_reg);
5403                   mode = GET_MODE (rld[r].in_reg);
5404                 }
5405 #ifdef AUTO_INC_DEC
5406               else if ((GET_CODE (rld[r].in_reg) == PRE_INC
5407                         || GET_CODE (rld[r].in_reg) == PRE_DEC
5408                         || GET_CODE (rld[r].in_reg) == POST_INC
5409                         || GET_CODE (rld[r].in_reg) == POST_DEC)
5410                        && REG_P (XEXP (rld[r].in_reg, 0)))
5411                 {
5412                   regno = REGNO (XEXP (rld[r].in_reg, 0));
5413                   mode = GET_MODE (XEXP (rld[r].in_reg, 0));
5414                   rld[r].out = rld[r].in;
5415                 }
5416 #endif
5417 #if 0
5418               /* This won't work, since REGNO can be a pseudo reg number.
5419                  Also, it takes much more hair to keep track of all the things
5420                  that can invalidate an inherited reload of part of a pseudoreg.  */
5421               else if (GET_CODE (rld[r].in) == SUBREG
5422                        && REG_P (SUBREG_REG (rld[r].in)))
5423                 regno = subreg_regno (rld[r].in);
5424 #endif
5425
5426               if (regno >= 0 && reg_last_reload_reg[regno] != 0)
5427                 {
5428                   enum reg_class class = rld[r].class, last_class;
5429                   rtx last_reg = reg_last_reload_reg[regno];
5430                   enum machine_mode need_mode;
5431
5432                   i = REGNO (last_reg);
5433                   i += subreg_regno_offset (i, GET_MODE (last_reg), byte, mode);
5434                   last_class = REGNO_REG_CLASS (i);
5435
5436                   if (byte == 0)
5437                     need_mode = mode;
5438                   else
5439                     need_mode
5440                       = smallest_mode_for_size (GET_MODE_BITSIZE (mode)
5441                                                 + byte * BITS_PER_UNIT,
5442                                                 GET_MODE_CLASS (mode));
5443
5444                   if ((GET_MODE_SIZE (GET_MODE (last_reg))
5445                        >= GET_MODE_SIZE (need_mode))
5446 #ifdef CANNOT_CHANGE_MODE_CLASS
5447                       /* Verify that the register in "i" can be obtained
5448                          from LAST_REG.  */
5449                       && !REG_CANNOT_CHANGE_MODE_P (REGNO (last_reg),
5450                                                     GET_MODE (last_reg),
5451                                                     mode)
5452 #endif
5453                       && reg_reloaded_contents[i] == regno
5454                       && TEST_HARD_REG_BIT (reg_reloaded_valid, i)
5455                       && HARD_REGNO_MODE_OK (i, rld[r].mode)
5456                       && (TEST_HARD_REG_BIT (reg_class_contents[(int) class], i)
5457                           /* Even if we can't use this register as a reload
5458                              register, we might use it for reload_override_in,
5459                              if copying it to the desired class is cheap
5460                              enough.  */
5461                           || ((REGISTER_MOVE_COST (mode, last_class, class)
5462                                < MEMORY_MOVE_COST (mode, class, 1))
5463 #ifdef SECONDARY_INPUT_RELOAD_CLASS
5464                               && (SECONDARY_INPUT_RELOAD_CLASS (class, mode,
5465                                                                 last_reg)
5466                                   == NO_REGS)
5467 #endif
5468 #ifdef SECONDARY_MEMORY_NEEDED
5469                               && ! SECONDARY_MEMORY_NEEDED (last_class, class,
5470                                                             mode)
5471 #endif
5472                               ))
5473
5474                       && (rld[r].nregs == max_group_size
5475                           || ! TEST_HARD_REG_BIT (reg_class_contents[(int) group_class],
5476                                                   i))
5477                       && free_for_value_p (i, rld[r].mode, rld[r].opnum,
5478                                            rld[r].when_needed, rld[r].in,
5479                                            const0_rtx, r, 1))
5480                     {
5481                       /* If a group is needed, verify that all the subsequent
5482                          registers still have their values intact.  */
5483                       int nr = hard_regno_nregs[i][rld[r].mode];
5484                       int k;
5485
5486                       for (k = 1; k < nr; k++)
5487                         if (reg_reloaded_contents[i + k] != regno
5488                             || ! TEST_HARD_REG_BIT (reg_reloaded_valid, i + k))
5489                           break;
5490
5491                       if (k == nr)
5492                         {
5493                           int i1;
5494                           int bad_for_class;
5495
5496                           last_reg = (GET_MODE (last_reg) == mode
5497                                       ? last_reg : gen_rtx_REG (mode, i));
5498
5499                           bad_for_class = 0;
5500                           for (k = 0; k < nr; k++)
5501                             bad_for_class |= ! TEST_HARD_REG_BIT (reg_class_contents[(int) rld[r].class],
5502                                                                   i+k);
5503
5504                           /* We found a register that contains the
5505                              value we need.  If this register is the
5506                              same as an `earlyclobber' operand of the
5507                              current insn, just mark it as a place to
5508                              reload from since we can't use it as the
5509                              reload register itself.  */
5510
5511                           for (i1 = 0; i1 < n_earlyclobbers; i1++)
5512                             if (reg_overlap_mentioned_for_reload_p
5513                                 (reg_last_reload_reg[regno],
5514                                  reload_earlyclobbers[i1]))
5515                               break;
5516
5517                           if (i1 != n_earlyclobbers
5518                               || ! (free_for_value_p (i, rld[r].mode,
5519                                                       rld[r].opnum,
5520                                                       rld[r].when_needed, rld[r].in,
5521                                                       rld[r].out, r, 1))
5522                               /* Don't use it if we'd clobber a pseudo reg.  */
5523                               || (TEST_HARD_REG_BIT (reg_used_in_insn, i)
5524                                   && rld[r].out
5525                                   && ! TEST_HARD_REG_BIT (reg_reloaded_dead, i))
5526                               /* Don't clobber the frame pointer.  */
5527                               || (i == HARD_FRAME_POINTER_REGNUM
5528                                   && frame_pointer_needed
5529                                   && rld[r].out)
5530                               /* Don't really use the inherited spill reg
5531                                  if we need it wider than we've got it.  */
5532                               || (GET_MODE_SIZE (rld[r].mode)
5533                                   > GET_MODE_SIZE (mode))
5534                               || bad_for_class
5535
5536                               /* If find_reloads chose reload_out as reload
5537                                  register, stay with it - that leaves the
5538                                  inherited register for subsequent reloads.  */
5539                               || (rld[r].out && rld[r].reg_rtx
5540                                   && rtx_equal_p (rld[r].out, rld[r].reg_rtx)))
5541                             {
5542                               if (! rld[r].optional)
5543                                 {
5544                                   reload_override_in[r] = last_reg;
5545                                   reload_inheritance_insn[r]
5546                                     = reg_reloaded_insn[i];
5547                                 }
5548                             }
5549                           else
5550                             {
5551                               int k;
5552                               /* We can use this as a reload reg.  */
5553                               /* Mark the register as in use for this part of
5554                                  the insn.  */
5555                               mark_reload_reg_in_use (i,
5556                                                       rld[r].opnum,
5557                                                       rld[r].when_needed,
5558                                                       rld[r].mode);
5559                               rld[r].reg_rtx = last_reg;
5560                               reload_inherited[r] = 1;
5561                               reload_inheritance_insn[r]
5562                                 = reg_reloaded_insn[i];
5563                               reload_spill_index[r] = i;
5564                               for (k = 0; k < nr; k++)
5565                                 SET_HARD_REG_BIT (reload_reg_used_for_inherit,
5566                                                   i + k);
5567                             }
5568                         }
5569                     }
5570                 }
5571             }
5572
5573           /* Here's another way to see if the value is already lying around.  */
5574           if (inheritance
5575               && rld[r].in != 0
5576               && ! reload_inherited[r]
5577               && rld[r].out == 0
5578               && (CONSTANT_P (rld[r].in)
5579                   || GET_CODE (rld[r].in) == PLUS
5580                   || REG_P (rld[r].in)
5581                   || MEM_P (rld[r].in))
5582               && (rld[r].nregs == max_group_size
5583                   || ! reg_classes_intersect_p (rld[r].class, group_class)))
5584             search_equiv = rld[r].in;
5585           /* If this is an output reload from a simple move insn, look
5586              if an equivalence for the input is available.  */
5587           else if (inheritance && rld[r].in == 0 && rld[r].out != 0)
5588             {
5589               rtx set = single_set (insn);
5590
5591               if (set
5592                   && rtx_equal_p (rld[r].out, SET_DEST (set))
5593                   && CONSTANT_P (SET_SRC (set)))
5594                 search_equiv = SET_SRC (set);
5595             }
5596
5597           if (search_equiv)
5598             {
5599               rtx equiv
5600                 = find_equiv_reg (search_equiv, insn, rld[r].class,
5601                                   -1, NULL, 0, rld[r].mode);
5602               int regno = 0;
5603
5604               if (equiv != 0)
5605                 {
5606                   if (REG_P (equiv))
5607                     regno = REGNO (equiv);
5608                   else
5609                     {
5610                       /* This must be a SUBREG of a hard register.
5611                          Make a new REG since this might be used in an
5612                          address and not all machines support SUBREGs
5613                          there.  */
5614                       gcc_assert (GET_CODE (equiv) == SUBREG);
5615                       regno = subreg_regno (equiv);
5616                       equiv = gen_rtx_REG (rld[r].mode, regno);
5617                       /* If we choose EQUIV as the reload register, but the
5618                          loop below decides to cancel the inheritance, we'll
5619                          end up reloading EQUIV in rld[r].mode, not the mode
5620                          it had originally.  That isn't safe when EQUIV isn't
5621                          available as a spill register since its value might
5622                          still be live at this point.  */
5623                       for (i = regno; i < regno + (int) rld[r].nregs; i++)
5624                         if (TEST_HARD_REG_BIT (reload_reg_unavailable, i))
5625                           equiv = 0;
5626                     }
5627                 }
5628
5629               /* If we found a spill reg, reject it unless it is free
5630                  and of the desired class.  */
5631               if (equiv != 0)
5632                 {
5633                   int regs_used = 0;
5634                   int bad_for_class = 0;
5635                   int max_regno = regno + rld[r].nregs;
5636
5637                   for (i = regno; i < max_regno; i++)
5638                     {
5639                       regs_used |= TEST_HARD_REG_BIT (reload_reg_used_at_all,
5640                                                       i);
5641                       bad_for_class |= ! TEST_HARD_REG_BIT (reg_class_contents[(int) rld[r].class],
5642                                                            i);
5643                     }
5644
5645                   if ((regs_used
5646                        && ! free_for_value_p (regno, rld[r].mode,
5647                                               rld[r].opnum, rld[r].when_needed,
5648                                               rld[r].in, rld[r].out, r, 1))
5649                       || bad_for_class)
5650                     equiv = 0;
5651                 }
5652
5653               if (equiv != 0 && ! HARD_REGNO_MODE_OK (regno, rld[r].mode))
5654                 equiv = 0;
5655
5656               /* We found a register that contains the value we need.
5657                  If this register is the same as an `earlyclobber' operand
5658                  of the current insn, just mark it as a place to reload from
5659                  since we can't use it as the reload register itself.  */
5660
5661               if (equiv != 0)
5662                 for (i = 0; i < n_earlyclobbers; i++)
5663                   if (reg_overlap_mentioned_for_reload_p (equiv,
5664                                                           reload_earlyclobbers[i]))
5665                     {
5666                       if (! rld[r].optional)
5667                         reload_override_in[r] = equiv;
5668                       equiv = 0;
5669                       break;
5670                     }
5671
5672               /* If the equiv register we have found is explicitly clobbered
5673                  in the current insn, it depends on the reload type if we
5674                  can use it, use it for reload_override_in, or not at all.
5675                  In particular, we then can't use EQUIV for a
5676                  RELOAD_FOR_OUTPUT_ADDRESS reload.  */
5677
5678               if (equiv != 0)
5679                 {
5680                   if (regno_clobbered_p (regno, insn, rld[r].mode, 0))
5681                     switch (rld[r].when_needed)
5682                       {
5683                       case RELOAD_FOR_OTHER_ADDRESS:
5684                       case RELOAD_FOR_INPADDR_ADDRESS:
5685                       case RELOAD_FOR_INPUT_ADDRESS:
5686                       case RELOAD_FOR_OPADDR_ADDR:
5687                         break;
5688                       case RELOAD_OTHER:
5689                       case RELOAD_FOR_INPUT:
5690                       case RELOAD_FOR_OPERAND_ADDRESS:
5691                         if (! rld[r].optional)
5692                           reload_override_in[r] = equiv;
5693                         /* Fall through.  */
5694                       default:
5695                         equiv = 0;
5696                         break;
5697                       }
5698                   else if (regno_clobbered_p (regno, insn, rld[r].mode, 1))
5699                     switch (rld[r].when_needed)
5700                       {
5701                       case RELOAD_FOR_OTHER_ADDRESS:
5702                       case RELOAD_FOR_INPADDR_ADDRESS:
5703                       case RELOAD_FOR_INPUT_ADDRESS:
5704                       case RELOAD_FOR_OPADDR_ADDR:
5705                       case RELOAD_FOR_OPERAND_ADDRESS:
5706                       case RELOAD_FOR_INPUT:
5707                         break;
5708                       case RELOAD_OTHER:
5709                         if (! rld[r].optional)
5710                           reload_override_in[r] = equiv;
5711                         /* Fall through.  */
5712                       default:
5713                         equiv = 0;
5714                         break;
5715                       }
5716                 }
5717
5718               /* If we found an equivalent reg, say no code need be generated
5719                  to load it, and use it as our reload reg.  */
5720               if (equiv != 0
5721                   && (regno != HARD_FRAME_POINTER_REGNUM
5722                       || !frame_pointer_needed))
5723                 {
5724                   int nr = hard_regno_nregs[regno][rld[r].mode];
5725                   int k;
5726                   rld[r].reg_rtx = equiv;
5727                   reload_inherited[r] = 1;
5728
5729                   /* If reg_reloaded_valid is not set for this register,
5730                      there might be a stale spill_reg_store lying around.
5731                      We must clear it, since otherwise emit_reload_insns
5732                      might delete the store.  */
5733                   if (! TEST_HARD_REG_BIT (reg_reloaded_valid, regno))
5734                     spill_reg_store[regno] = NULL_RTX;
5735                   /* If any of the hard registers in EQUIV are spill
5736                      registers, mark them as in use for this insn.  */
5737                   for (k = 0; k < nr; k++)
5738                     {
5739                       i = spill_reg_order[regno + k];
5740                       if (i >= 0)
5741                         {
5742                           mark_reload_reg_in_use (regno, rld[r].opnum,
5743                                                   rld[r].when_needed,
5744                                                   rld[r].mode);
5745                           SET_HARD_REG_BIT (reload_reg_used_for_inherit,
5746                                             regno + k);
5747                         }
5748                     }
5749                 }
5750             }
5751
5752           /* If we found a register to use already, or if this is an optional
5753              reload, we are done.  */
5754           if (rld[r].reg_rtx != 0 || rld[r].optional != 0)
5755             continue;
5756
5757 #if 0
5758           /* No longer needed for correct operation.  Might or might
5759              not give better code on the average.  Want to experiment?  */
5760
5761           /* See if there is a later reload that has a class different from our
5762              class that intersects our class or that requires less register
5763              than our reload.  If so, we must allocate a register to this
5764              reload now, since that reload might inherit a previous reload
5765              and take the only available register in our class.  Don't do this
5766              for optional reloads since they will force all previous reloads
5767              to be allocated.  Also don't do this for reloads that have been
5768              turned off.  */
5769
5770           for (i = j + 1; i < n_reloads; i++)
5771             {
5772               int s = reload_order[i];
5773
5774               if ((rld[s].in == 0 && rld[s].out == 0
5775                    && ! rld[s].secondary_p)
5776                   || rld[s].optional)
5777                 continue;
5778
5779               if ((rld[s].class != rld[r].class
5780                    && reg_classes_intersect_p (rld[r].class,
5781                                                rld[s].class))
5782                   || rld[s].nregs < rld[r].nregs)
5783                 break;
5784             }
5785
5786           if (i == n_reloads)
5787             continue;
5788
5789           allocate_reload_reg (chain, r, j == n_reloads - 1);
5790 #endif
5791         }
5792
5793       /* Now allocate reload registers for anything non-optional that
5794          didn't get one yet.  */
5795       for (j = 0; j < n_reloads; j++)
5796         {
5797           int r = reload_order[j];
5798
5799           /* Ignore reloads that got marked inoperative.  */
5800           if (rld[r].out == 0 && rld[r].in == 0 && ! rld[r].secondary_p)
5801             continue;
5802
5803           /* Skip reloads that already have a register allocated or are
5804              optional.  */
5805           if (rld[r].reg_rtx != 0 || rld[r].optional)
5806             continue;
5807
5808           if (! allocate_reload_reg (chain, r, j == n_reloads - 1))
5809             break;
5810         }
5811
5812       /* If that loop got all the way, we have won.  */
5813       if (j == n_reloads)
5814         {
5815           win = 1;
5816           break;
5817         }
5818
5819       /* Loop around and try without any inheritance.  */
5820     }
5821
5822   if (! win)
5823     {
5824       /* First undo everything done by the failed attempt
5825          to allocate with inheritance.  */
5826       choose_reload_regs_init (chain, save_reload_reg_rtx);
5827
5828       /* Some sanity tests to verify that the reloads found in the first
5829          pass are identical to the ones we have now.  */
5830       gcc_assert (chain->n_reloads == n_reloads);
5831
5832       for (i = 0; i < n_reloads; i++)
5833         {
5834           if (chain->rld[i].regno < 0 || chain->rld[i].reg_rtx != 0)
5835             continue;
5836           gcc_assert (chain->rld[i].when_needed == rld[i].when_needed);
5837           for (j = 0; j < n_spills; j++)
5838             if (spill_regs[j] == chain->rld[i].regno)
5839               if (! set_reload_reg (j, i))
5840                 failed_reload (chain->insn, i);
5841         }
5842     }
5843
5844   /* If we thought we could inherit a reload, because it seemed that
5845      nothing else wanted the same reload register earlier in the insn,
5846      verify that assumption, now that all reloads have been assigned.
5847      Likewise for reloads where reload_override_in has been set.  */
5848
5849   /* If doing expensive optimizations, do one preliminary pass that doesn't
5850      cancel any inheritance, but removes reloads that have been needed only
5851      for reloads that we know can be inherited.  */
5852   for (pass = flag_expensive_optimizations; pass >= 0; pass--)
5853     {
5854       for (j = 0; j < n_reloads; j++)
5855         {
5856           int r = reload_order[j];
5857           rtx check_reg;
5858           if (reload_inherited[r] && rld[r].reg_rtx)
5859             check_reg = rld[r].reg_rtx;
5860           else if (reload_override_in[r]
5861                    && (REG_P (reload_override_in[r])
5862                        || GET_CODE (reload_override_in[r]) == SUBREG))
5863             check_reg = reload_override_in[r];
5864           else
5865             continue;
5866           if (! free_for_value_p (true_regnum (check_reg), rld[r].mode,
5867                                   rld[r].opnum, rld[r].when_needed, rld[r].in,
5868                                   (reload_inherited[r]
5869                                    ? rld[r].out : const0_rtx),
5870                                   r, 1))
5871             {
5872               if (pass)
5873                 continue;
5874               reload_inherited[r] = 0;
5875               reload_override_in[r] = 0;
5876             }
5877           /* If we can inherit a RELOAD_FOR_INPUT, or can use a
5878              reload_override_in, then we do not need its related
5879              RELOAD_FOR_INPUT_ADDRESS / RELOAD_FOR_INPADDR_ADDRESS reloads;
5880              likewise for other reload types.
5881              We handle this by removing a reload when its only replacement
5882              is mentioned in reload_in of the reload we are going to inherit.
5883              A special case are auto_inc expressions; even if the input is
5884              inherited, we still need the address for the output.  We can
5885              recognize them because they have RELOAD_OUT set to RELOAD_IN.
5886              If we succeeded removing some reload and we are doing a preliminary
5887              pass just to remove such reloads, make another pass, since the
5888              removal of one reload might allow us to inherit another one.  */
5889           else if (rld[r].in
5890                    && rld[r].out != rld[r].in
5891                    && remove_address_replacements (rld[r].in) && pass)
5892             pass = 2;
5893         }
5894     }
5895
5896   /* Now that reload_override_in is known valid,
5897      actually override reload_in.  */
5898   for (j = 0; j < n_reloads; j++)
5899     if (reload_override_in[j])
5900       rld[j].in = reload_override_in[j];
5901
5902   /* If this reload won't be done because it has been canceled or is
5903      optional and not inherited, clear reload_reg_rtx so other
5904      routines (such as subst_reloads) don't get confused.  */
5905   for (j = 0; j < n_reloads; j++)
5906     if (rld[j].reg_rtx != 0
5907         && ((rld[j].optional && ! reload_inherited[j])
5908             || (rld[j].in == 0 && rld[j].out == 0
5909                 && ! rld[j].secondary_p)))
5910       {
5911         int regno = true_regnum (rld[j].reg_rtx);
5912
5913         if (spill_reg_order[regno] >= 0)
5914           clear_reload_reg_in_use (regno, rld[j].opnum,
5915                                    rld[j].when_needed, rld[j].mode);
5916         rld[j].reg_rtx = 0;
5917         reload_spill_index[j] = -1;
5918       }
5919
5920   /* Record which pseudos and which spill regs have output reloads.  */
5921   for (j = 0; j < n_reloads; j++)
5922     {
5923       int r = reload_order[j];
5924
5925       i = reload_spill_index[r];
5926
5927       /* I is nonneg if this reload uses a register.
5928          If rld[r].reg_rtx is 0, this is an optional reload
5929          that we opted to ignore.  */
5930       if (rld[r].out_reg != 0 && REG_P (rld[r].out_reg)
5931           && rld[r].reg_rtx != 0)
5932         {
5933           int nregno = REGNO (rld[r].out_reg);
5934           int nr = 1;
5935
5936           if (nregno < FIRST_PSEUDO_REGISTER)
5937             nr = hard_regno_nregs[nregno][rld[r].mode];
5938
5939           while (--nr >= 0)
5940             reg_has_output_reload[nregno + nr] = 1;
5941
5942           if (i >= 0)
5943             {
5944               nr = hard_regno_nregs[i][rld[r].mode];
5945               while (--nr >= 0)
5946                 SET_HARD_REG_BIT (reg_is_output_reload, i + nr);
5947             }
5948
5949           gcc_assert (rld[r].when_needed == RELOAD_OTHER
5950                       || rld[r].when_needed == RELOAD_FOR_OUTPUT
5951                       || rld[r].when_needed == RELOAD_FOR_INSN);
5952         }
5953     }
5954 }
5955
5956 /* Deallocate the reload register for reload R.  This is called from
5957    remove_address_replacements.  */
5958
5959 void
5960 deallocate_reload_reg (int r)
5961 {
5962   int regno;
5963
5964   if (! rld[r].reg_rtx)
5965     return;
5966   regno = true_regnum (rld[r].reg_rtx);
5967   rld[r].reg_rtx = 0;
5968   if (spill_reg_order[regno] >= 0)
5969     clear_reload_reg_in_use (regno, rld[r].opnum, rld[r].when_needed,
5970                              rld[r].mode);
5971   reload_spill_index[r] = -1;
5972 }
5973 \f
5974 /* If SMALL_REGISTER_CLASSES is nonzero, we may not have merged two
5975    reloads of the same item for fear that we might not have enough reload
5976    registers. However, normally they will get the same reload register
5977    and hence actually need not be loaded twice.
5978
5979    Here we check for the most common case of this phenomenon: when we have
5980    a number of reloads for the same object, each of which were allocated
5981    the same reload_reg_rtx, that reload_reg_rtx is not used for any other
5982    reload, and is not modified in the insn itself.  If we find such,
5983    merge all the reloads and set the resulting reload to RELOAD_OTHER.
5984    This will not increase the number of spill registers needed and will
5985    prevent redundant code.  */
5986
5987 static void
5988 merge_assigned_reloads (rtx insn)
5989 {
5990   int i, j;
5991
5992   /* Scan all the reloads looking for ones that only load values and
5993      are not already RELOAD_OTHER and ones whose reload_reg_rtx are
5994      assigned and not modified by INSN.  */
5995
5996   for (i = 0; i < n_reloads; i++)
5997     {
5998       int conflicting_input = 0;
5999       int max_input_address_opnum = -1;
6000       int min_conflicting_input_opnum = MAX_RECOG_OPERANDS;
6001
6002       if (rld[i].in == 0 || rld[i].when_needed == RELOAD_OTHER
6003           || rld[i].out != 0 || rld[i].reg_rtx == 0
6004           || reg_set_p (rld[i].reg_rtx, insn))
6005         continue;
6006
6007       /* Look at all other reloads.  Ensure that the only use of this
6008          reload_reg_rtx is in a reload that just loads the same value
6009          as we do.  Note that any secondary reloads must be of the identical
6010          class since the values, modes, and result registers are the
6011          same, so we need not do anything with any secondary reloads.  */
6012
6013       for (j = 0; j < n_reloads; j++)
6014         {
6015           if (i == j || rld[j].reg_rtx == 0
6016               || ! reg_overlap_mentioned_p (rld[j].reg_rtx,
6017                                             rld[i].reg_rtx))
6018             continue;
6019
6020           if (rld[j].when_needed == RELOAD_FOR_INPUT_ADDRESS
6021               && rld[j].opnum > max_input_address_opnum)
6022             max_input_address_opnum = rld[j].opnum;
6023
6024           /* If the reload regs aren't exactly the same (e.g, different modes)
6025              or if the values are different, we can't merge this reload.
6026              But if it is an input reload, we might still merge
6027              RELOAD_FOR_INPUT_ADDRESS and RELOAD_FOR_OTHER_ADDRESS reloads.  */
6028
6029           if (! rtx_equal_p (rld[i].reg_rtx, rld[j].reg_rtx)
6030               || rld[j].out != 0 || rld[j].in == 0
6031               || ! rtx_equal_p (rld[i].in, rld[j].in))
6032             {
6033               if (rld[j].when_needed != RELOAD_FOR_INPUT
6034                   || ((rld[i].when_needed != RELOAD_FOR_INPUT_ADDRESS
6035                        || rld[i].opnum > rld[j].opnum)
6036                       && rld[i].when_needed != RELOAD_FOR_OTHER_ADDRESS))
6037                 break;
6038               conflicting_input = 1;
6039               if (min_conflicting_input_opnum > rld[j].opnum)
6040                 min_conflicting_input_opnum = rld[j].opnum;
6041             }
6042         }
6043
6044       /* If all is OK, merge the reloads.  Only set this to RELOAD_OTHER if
6045          we, in fact, found any matching reloads.  */
6046
6047       if (j == n_reloads
6048           && max_input_address_opnum <= min_conflicting_input_opnum)
6049         {
6050           for (j = 0; j < n_reloads; j++)
6051             if (i != j && rld[j].reg_rtx != 0
6052                 && rtx_equal_p (rld[i].reg_rtx, rld[j].reg_rtx)
6053                 && (! conflicting_input
6054                     || rld[j].when_needed == RELOAD_FOR_INPUT_ADDRESS
6055                     || rld[j].when_needed == RELOAD_FOR_OTHER_ADDRESS))
6056               {
6057                 rld[i].when_needed = RELOAD_OTHER;
6058                 rld[j].in = 0;
6059                 reload_spill_index[j] = -1;
6060                 transfer_replacements (i, j);
6061               }
6062
6063           /* If this is now RELOAD_OTHER, look for any reloads that load
6064              parts of this operand and set them to RELOAD_FOR_OTHER_ADDRESS
6065              if they were for inputs, RELOAD_OTHER for outputs.  Note that
6066              this test is equivalent to looking for reloads for this operand
6067              number.  */
6068           /* We must take special care when there are two or more reloads to
6069              be merged and a RELOAD_FOR_OUTPUT_ADDRESS reload that loads the
6070              same value or a part of it; we must not change its type if there
6071              is a conflicting input.  */
6072
6073           if (rld[i].when_needed == RELOAD_OTHER)
6074             for (j = 0; j < n_reloads; j++)
6075               if (rld[j].in != 0
6076                   && rld[j].when_needed != RELOAD_OTHER
6077                   && rld[j].when_needed != RELOAD_FOR_OTHER_ADDRESS
6078                   && (! conflicting_input
6079                       || rld[j].when_needed == RELOAD_FOR_INPUT_ADDRESS
6080                       || rld[j].when_needed == RELOAD_FOR_INPADDR_ADDRESS)
6081                   && reg_overlap_mentioned_for_reload_p (rld[j].in,
6082                                                          rld[i].in))
6083                 {
6084                   int k;
6085
6086                   rld[j].when_needed
6087                     = ((rld[j].when_needed == RELOAD_FOR_INPUT_ADDRESS
6088                         || rld[j].when_needed == RELOAD_FOR_INPADDR_ADDRESS)
6089                        ? RELOAD_FOR_OTHER_ADDRESS : RELOAD_OTHER);
6090
6091                   /* Check to see if we accidentally converted two
6092                      reloads that use the same reload register with
6093                      different inputs to the same type.  If so, the
6094                      resulting code won't work.  */
6095                   if (rld[j].reg_rtx)
6096                     for (k = 0; k < j; k++)
6097                       gcc_assert (rld[k].in == 0 || rld[k].reg_rtx == 0
6098                                   || rld[k].when_needed != rld[j].when_needed
6099                                   || !rtx_equal_p (rld[k].reg_rtx,
6100                                                    rld[j].reg_rtx)
6101                                   || rtx_equal_p (rld[k].in,
6102                                                   rld[j].in));
6103                 }
6104         }
6105     }
6106 }
6107 \f
6108 /* These arrays are filled by emit_reload_insns and its subroutines.  */
6109 static rtx input_reload_insns[MAX_RECOG_OPERANDS];
6110 static rtx other_input_address_reload_insns = 0;
6111 static rtx other_input_reload_insns = 0;
6112 static rtx input_address_reload_insns[MAX_RECOG_OPERANDS];
6113 static rtx inpaddr_address_reload_insns[MAX_RECOG_OPERANDS];
6114 static rtx output_reload_insns[MAX_RECOG_OPERANDS];
6115 static rtx output_address_reload_insns[MAX_RECOG_OPERANDS];
6116 static rtx outaddr_address_reload_insns[MAX_RECOG_OPERANDS];
6117 static rtx operand_reload_insns = 0;
6118 static rtx other_operand_reload_insns = 0;
6119 static rtx other_output_reload_insns[MAX_RECOG_OPERANDS];
6120
6121 /* Values to be put in spill_reg_store are put here first.  */
6122 static rtx new_spill_reg_store[FIRST_PSEUDO_REGISTER];
6123 static HARD_REG_SET reg_reloaded_died;
6124
6125 /* Generate insns to perform reload RL, which is for the insn in CHAIN and
6126    has the number J.  OLD contains the value to be used as input.  */
6127
6128 static void
6129 emit_input_reload_insns (struct insn_chain *chain, struct reload *rl,
6130                          rtx old, int j)
6131 {
6132   rtx insn = chain->insn;
6133   rtx reloadreg = rl->reg_rtx;
6134   rtx oldequiv_reg = 0;
6135   rtx oldequiv = 0;
6136   int special = 0;
6137   enum machine_mode mode;
6138   rtx *where;
6139
6140   /* Determine the mode to reload in.
6141      This is very tricky because we have three to choose from.
6142      There is the mode the insn operand wants (rl->inmode).
6143      There is the mode of the reload register RELOADREG.
6144      There is the intrinsic mode of the operand, which we could find
6145      by stripping some SUBREGs.
6146      It turns out that RELOADREG's mode is irrelevant:
6147      we can change that arbitrarily.
6148
6149      Consider (SUBREG:SI foo:QI) as an operand that must be SImode;
6150      then the reload reg may not support QImode moves, so use SImode.
6151      If foo is in memory due to spilling a pseudo reg, this is safe,
6152      because the QImode value is in the least significant part of a
6153      slot big enough for a SImode.  If foo is some other sort of
6154      memory reference, then it is impossible to reload this case,
6155      so previous passes had better make sure this never happens.
6156
6157      Then consider a one-word union which has SImode and one of its
6158      members is a float, being fetched as (SUBREG:SF union:SI).
6159      We must fetch that as SFmode because we could be loading into
6160      a float-only register.  In this case OLD's mode is correct.
6161
6162      Consider an immediate integer: it has VOIDmode.  Here we need
6163      to get a mode from something else.
6164
6165      In some cases, there is a fourth mode, the operand's
6166      containing mode.  If the insn specifies a containing mode for
6167      this operand, it overrides all others.
6168
6169      I am not sure whether the algorithm here is always right,
6170      but it does the right things in those cases.  */
6171
6172   mode = GET_MODE (old);
6173   if (mode == VOIDmode)
6174     mode = rl->inmode;
6175
6176 #ifdef SECONDARY_INPUT_RELOAD_CLASS
6177   /* If we need a secondary register for this operation, see if
6178      the value is already in a register in that class.  Don't
6179      do this if the secondary register will be used as a scratch
6180      register.  */
6181
6182   if (rl->secondary_in_reload >= 0
6183       && rl->secondary_in_icode == CODE_FOR_nothing
6184       && optimize)
6185     oldequiv
6186       = find_equiv_reg (old, insn,
6187                         rld[rl->secondary_in_reload].class,
6188                         -1, NULL, 0, mode);
6189 #endif
6190
6191   /* If reloading from memory, see if there is a register
6192      that already holds the same value.  If so, reload from there.
6193      We can pass 0 as the reload_reg_p argument because
6194      any other reload has either already been emitted,
6195      in which case find_equiv_reg will see the reload-insn,
6196      or has yet to be emitted, in which case it doesn't matter
6197      because we will use this equiv reg right away.  */
6198
6199   if (oldequiv == 0 && optimize
6200       && (MEM_P (old)
6201           || (REG_P (old)
6202               && REGNO (old) >= FIRST_PSEUDO_REGISTER
6203               && reg_renumber[REGNO (old)] < 0)))
6204     oldequiv = find_equiv_reg (old, insn, ALL_REGS, -1, NULL, 0, mode);
6205
6206   if (oldequiv)
6207     {
6208       unsigned int regno = true_regnum (oldequiv);
6209
6210       /* Don't use OLDEQUIV if any other reload changes it at an
6211          earlier stage of this insn or at this stage.  */
6212       if (! free_for_value_p (regno, rl->mode, rl->opnum, rl->when_needed,
6213                               rl->in, const0_rtx, j, 0))
6214         oldequiv = 0;
6215
6216       /* If it is no cheaper to copy from OLDEQUIV into the
6217          reload register than it would be to move from memory,
6218          don't use it. Likewise, if we need a secondary register
6219          or memory.  */
6220
6221       if (oldequiv != 0
6222           && (((enum reg_class) REGNO_REG_CLASS (regno) != rl->class
6223                && (REGISTER_MOVE_COST (mode, REGNO_REG_CLASS (regno),
6224                                        rl->class)
6225                    >= MEMORY_MOVE_COST (mode, rl->class, 1)))
6226 #ifdef SECONDARY_INPUT_RELOAD_CLASS
6227               || (SECONDARY_INPUT_RELOAD_CLASS (rl->class,
6228                                                 mode, oldequiv)
6229                   != NO_REGS)
6230 #endif
6231 #ifdef SECONDARY_MEMORY_NEEDED
6232               || SECONDARY_MEMORY_NEEDED (REGNO_REG_CLASS (regno),
6233                                           rl->class,
6234                                           mode)
6235 #endif
6236               ))
6237         oldequiv = 0;
6238     }
6239
6240   /* delete_output_reload is only invoked properly if old contains
6241      the original pseudo register.  Since this is replaced with a
6242      hard reg when RELOAD_OVERRIDE_IN is set, see if we can
6243      find the pseudo in RELOAD_IN_REG.  */
6244   if (oldequiv == 0
6245       && reload_override_in[j]
6246       && REG_P (rl->in_reg))
6247     {
6248       oldequiv = old;
6249       old = rl->in_reg;
6250     }
6251   if (oldequiv == 0)
6252     oldequiv = old;
6253   else if (REG_P (oldequiv))
6254     oldequiv_reg = oldequiv;
6255   else if (GET_CODE (oldequiv) == SUBREG)
6256     oldequiv_reg = SUBREG_REG (oldequiv);
6257
6258   /* If we are reloading from a register that was recently stored in
6259      with an output-reload, see if we can prove there was
6260      actually no need to store the old value in it.  */
6261
6262   if (optimize && REG_P (oldequiv)
6263       && REGNO (oldequiv) < FIRST_PSEUDO_REGISTER
6264       && spill_reg_store[REGNO (oldequiv)]
6265       && REG_P (old)
6266       && (dead_or_set_p (insn, spill_reg_stored_to[REGNO (oldequiv)])
6267           || rtx_equal_p (spill_reg_stored_to[REGNO (oldequiv)],
6268                           rl->out_reg)))
6269     delete_output_reload (insn, j, REGNO (oldequiv));
6270
6271   /* Encapsulate both RELOADREG and OLDEQUIV into that mode,
6272      then load RELOADREG from OLDEQUIV.  Note that we cannot use
6273      gen_lowpart_common since it can do the wrong thing when
6274      RELOADREG has a multi-word mode.  Note that RELOADREG
6275      must always be a REG here.  */
6276
6277   if (GET_MODE (reloadreg) != mode)
6278     reloadreg = reload_adjust_reg_for_mode (reloadreg, mode);
6279   while (GET_CODE (oldequiv) == SUBREG && GET_MODE (oldequiv) != mode)
6280     oldequiv = SUBREG_REG (oldequiv);
6281   if (GET_MODE (oldequiv) != VOIDmode
6282       && mode != GET_MODE (oldequiv))
6283     oldequiv = gen_lowpart_SUBREG (mode, oldequiv);
6284
6285   /* Switch to the right place to emit the reload insns.  */
6286   switch (rl->when_needed)
6287     {
6288     case RELOAD_OTHER:
6289       where = &other_input_reload_insns;
6290       break;
6291     case RELOAD_FOR_INPUT:
6292       where = &input_reload_insns[rl->opnum];
6293       break;
6294     case RELOAD_FOR_INPUT_ADDRESS:
6295       where = &input_address_reload_insns[rl->opnum];
6296       break;
6297     case RELOAD_FOR_INPADDR_ADDRESS:
6298       where = &inpaddr_address_reload_insns[rl->opnum];
6299       break;
6300     case RELOAD_FOR_OUTPUT_ADDRESS:
6301       where = &output_address_reload_insns[rl->opnum];
6302       break;
6303     case RELOAD_FOR_OUTADDR_ADDRESS:
6304       where = &outaddr_address_reload_insns[rl->opnum];
6305       break;
6306     case RELOAD_FOR_OPERAND_ADDRESS:
6307       where = &operand_reload_insns;
6308       break;
6309     case RELOAD_FOR_OPADDR_ADDR:
6310       where = &other_operand_reload_insns;
6311       break;
6312     case RELOAD_FOR_OTHER_ADDRESS:
6313       where = &other_input_address_reload_insns;
6314       break;
6315     default:
6316       gcc_unreachable ();
6317     }
6318
6319   push_to_sequence (*where);
6320
6321   /* Auto-increment addresses must be reloaded in a special way.  */
6322   if (rl->out && ! rl->out_reg)
6323     {
6324       /* We are not going to bother supporting the case where a
6325          incremented register can't be copied directly from
6326          OLDEQUIV since this seems highly unlikely.  */
6327       gcc_assert (rl->secondary_in_reload < 0);
6328
6329       if (reload_inherited[j])
6330         oldequiv = reloadreg;
6331
6332       old = XEXP (rl->in_reg, 0);
6333
6334       if (optimize && REG_P (oldequiv)
6335           && REGNO (oldequiv) < FIRST_PSEUDO_REGISTER
6336           && spill_reg_store[REGNO (oldequiv)]
6337           && REG_P (old)
6338           && (dead_or_set_p (insn,
6339                              spill_reg_stored_to[REGNO (oldequiv)])
6340               || rtx_equal_p (spill_reg_stored_to[REGNO (oldequiv)],
6341                               old)))
6342         delete_output_reload (insn, j, REGNO (oldequiv));
6343
6344       /* Prevent normal processing of this reload.  */
6345       special = 1;
6346       /* Output a special code sequence for this case.  */
6347       new_spill_reg_store[REGNO (reloadreg)]
6348         = inc_for_reload (reloadreg, oldequiv, rl->out,
6349                           rl->inc);
6350     }
6351
6352   /* If we are reloading a pseudo-register that was set by the previous
6353      insn, see if we can get rid of that pseudo-register entirely
6354      by redirecting the previous insn into our reload register.  */
6355
6356   else if (optimize && REG_P (old)
6357            && REGNO (old) >= FIRST_PSEUDO_REGISTER
6358            && dead_or_set_p (insn, old)
6359            /* This is unsafe if some other reload
6360               uses the same reg first.  */
6361            && ! conflicts_with_override (reloadreg)
6362            && free_for_value_p (REGNO (reloadreg), rl->mode, rl->opnum,
6363                                 rl->when_needed, old, rl->out, j, 0))
6364     {
6365       rtx temp = PREV_INSN (insn);
6366       while (temp && NOTE_P (temp))
6367         temp = PREV_INSN (temp);
6368       if (temp
6369           && NONJUMP_INSN_P (temp)
6370           && GET_CODE (PATTERN (temp)) == SET
6371           && SET_DEST (PATTERN (temp)) == old
6372           /* Make sure we can access insn_operand_constraint.  */
6373           && asm_noperands (PATTERN (temp)) < 0
6374           /* This is unsafe if operand occurs more than once in current
6375              insn.  Perhaps some occurrences aren't reloaded.  */
6376           && count_occurrences (PATTERN (insn), old, 0) == 1)
6377         {
6378           rtx old = SET_DEST (PATTERN (temp));
6379           /* Store into the reload register instead of the pseudo.  */
6380           SET_DEST (PATTERN (temp)) = reloadreg;
6381
6382           /* Verify that resulting insn is valid.  */
6383           extract_insn (temp);
6384           if (constrain_operands (1))
6385             {
6386               /* If the previous insn is an output reload, the source is
6387                  a reload register, and its spill_reg_store entry will
6388                  contain the previous destination.  This is now
6389                  invalid.  */
6390               if (REG_P (SET_SRC (PATTERN (temp)))
6391                   && REGNO (SET_SRC (PATTERN (temp))) < FIRST_PSEUDO_REGISTER)
6392                 {
6393                   spill_reg_store[REGNO (SET_SRC (PATTERN (temp)))] = 0;
6394                   spill_reg_stored_to[REGNO (SET_SRC (PATTERN (temp)))] = 0;
6395                 }
6396
6397               /* If these are the only uses of the pseudo reg,
6398                  pretend for GDB it lives in the reload reg we used.  */
6399               if (REG_N_DEATHS (REGNO (old)) == 1
6400                   && REG_N_SETS (REGNO (old)) == 1)
6401                 {
6402                   reg_renumber[REGNO (old)] = REGNO (rl->reg_rtx);
6403                   alter_reg (REGNO (old), -1);
6404                 }
6405               special = 1;
6406             }
6407           else
6408             {
6409               SET_DEST (PATTERN (temp)) = old;
6410             }
6411         }
6412     }
6413
6414   /* We can't do that, so output an insn to load RELOADREG.  */
6415
6416 #ifdef SECONDARY_INPUT_RELOAD_CLASS
6417   /* If we have a secondary reload, pick up the secondary register
6418      and icode, if any.  If OLDEQUIV and OLD are different or
6419      if this is an in-out reload, recompute whether or not we
6420      still need a secondary register and what the icode should
6421      be.  If we still need a secondary register and the class or
6422      icode is different, go back to reloading from OLD if using
6423      OLDEQUIV means that we got the wrong type of register.  We
6424      cannot have different class or icode due to an in-out reload
6425      because we don't make such reloads when both the input and
6426      output need secondary reload registers.  */
6427
6428   if (! special && rl->secondary_in_reload >= 0)
6429     {
6430       rtx second_reload_reg = 0;
6431       int secondary_reload = rl->secondary_in_reload;
6432       rtx real_oldequiv = oldequiv;
6433       rtx real_old = old;
6434       rtx tmp;
6435       enum insn_code icode;
6436
6437       /* If OLDEQUIV is a pseudo with a MEM, get the real MEM
6438          and similarly for OLD.
6439          See comments in get_secondary_reload in reload.c.  */
6440       /* If it is a pseudo that cannot be replaced with its
6441          equivalent MEM, we must fall back to reload_in, which
6442          will have all the necessary substitutions registered.
6443          Likewise for a pseudo that can't be replaced with its
6444          equivalent constant.
6445
6446          Take extra care for subregs of such pseudos.  Note that
6447          we cannot use reg_equiv_mem in this case because it is
6448          not in the right mode.  */
6449
6450       tmp = oldequiv;
6451       if (GET_CODE (tmp) == SUBREG)
6452         tmp = SUBREG_REG (tmp);
6453       if (REG_P (tmp)
6454           && REGNO (tmp) >= FIRST_PSEUDO_REGISTER
6455           && (reg_equiv_memory_loc[REGNO (tmp)] != 0
6456               || reg_equiv_constant[REGNO (tmp)] != 0))
6457         {
6458           if (! reg_equiv_mem[REGNO (tmp)]
6459               || num_not_at_initial_offset
6460               || GET_CODE (oldequiv) == SUBREG)
6461             real_oldequiv = rl->in;
6462           else
6463             real_oldequiv = reg_equiv_mem[REGNO (tmp)];
6464         }
6465
6466       tmp = old;
6467       if (GET_CODE (tmp) == SUBREG)
6468         tmp = SUBREG_REG (tmp);
6469       if (REG_P (tmp)
6470           && REGNO (tmp) >= FIRST_PSEUDO_REGISTER
6471           && (reg_equiv_memory_loc[REGNO (tmp)] != 0
6472               || reg_equiv_constant[REGNO (tmp)] != 0))
6473         {
6474           if (! reg_equiv_mem[REGNO (tmp)]
6475               || num_not_at_initial_offset
6476               || GET_CODE (old) == SUBREG)
6477             real_old = rl->in;
6478           else
6479             real_old = reg_equiv_mem[REGNO (tmp)];
6480         }
6481
6482       second_reload_reg = rld[secondary_reload].reg_rtx;
6483       icode = rl->secondary_in_icode;
6484
6485       if ((old != oldequiv && ! rtx_equal_p (old, oldequiv))
6486           || (rl->in != 0 && rl->out != 0))
6487         {
6488           enum reg_class new_class
6489             = SECONDARY_INPUT_RELOAD_CLASS (rl->class,
6490                                             mode, real_oldequiv);
6491
6492           if (new_class == NO_REGS)
6493             second_reload_reg = 0;
6494           else
6495             {
6496               enum insn_code new_icode;
6497               enum machine_mode new_mode;
6498
6499               if (! TEST_HARD_REG_BIT (reg_class_contents[(int) new_class],
6500                                        REGNO (second_reload_reg)))
6501                 oldequiv = old, real_oldequiv = real_old;
6502               else
6503                 {
6504                   new_icode = reload_in_optab[(int) mode];
6505                   if (new_icode != CODE_FOR_nothing
6506                       && ((insn_data[(int) new_icode].operand[0].predicate
6507                            && ! ((*insn_data[(int) new_icode].operand[0].predicate)
6508                                  (reloadreg, mode)))
6509                           || (insn_data[(int) new_icode].operand[1].predicate
6510                               && ! ((*insn_data[(int) new_icode].operand[1].predicate)
6511                                     (real_oldequiv, mode)))))
6512                     new_icode = CODE_FOR_nothing;
6513
6514                   if (new_icode == CODE_FOR_nothing)
6515                     new_mode = mode;
6516                   else
6517                     new_mode = insn_data[(int) new_icode].operand[2].mode;
6518
6519                   if (GET_MODE (second_reload_reg) != new_mode)
6520                     {
6521                       if (!HARD_REGNO_MODE_OK (REGNO (second_reload_reg),
6522                                                new_mode))
6523                         oldequiv = old, real_oldequiv = real_old;
6524                       else
6525                         second_reload_reg
6526                           = reload_adjust_reg_for_mode (second_reload_reg,
6527                                                         new_mode);
6528                     }
6529                 }
6530             }
6531         }
6532
6533       /* If we still need a secondary reload register, check
6534          to see if it is being used as a scratch or intermediate
6535          register and generate code appropriately.  If we need
6536          a scratch register, use REAL_OLDEQUIV since the form of
6537          the insn may depend on the actual address if it is
6538          a MEM.  */
6539
6540       if (second_reload_reg)
6541         {
6542           if (icode != CODE_FOR_nothing)
6543             {
6544               emit_insn (GEN_FCN (icode) (reloadreg, real_oldequiv,
6545                                           second_reload_reg));
6546               special = 1;
6547             }
6548           else
6549             {
6550               /* See if we need a scratch register to load the
6551                  intermediate register (a tertiary reload).  */
6552               enum insn_code tertiary_icode
6553                 = rld[secondary_reload].secondary_in_icode;
6554
6555               if (tertiary_icode != CODE_FOR_nothing)
6556                 {
6557                   rtx third_reload_reg
6558                     = rld[rld[secondary_reload].secondary_in_reload].reg_rtx;
6559
6560                   emit_insn ((GEN_FCN (tertiary_icode)
6561                               (second_reload_reg, real_oldequiv,
6562                                third_reload_reg)));
6563                 }
6564               else
6565                 gen_reload (second_reload_reg, real_oldequiv,
6566                             rl->opnum,
6567                             rl->when_needed);
6568
6569               oldequiv = second_reload_reg;
6570             }
6571         }
6572     }
6573 #endif
6574
6575   if (! special && ! rtx_equal_p (reloadreg, oldequiv))
6576     {
6577       rtx real_oldequiv = oldequiv;
6578
6579       if ((REG_P (oldequiv)
6580            && REGNO (oldequiv) >= FIRST_PSEUDO_REGISTER
6581            && (reg_equiv_memory_loc[REGNO (oldequiv)] != 0
6582                || reg_equiv_constant[REGNO (oldequiv)] != 0))
6583           || (GET_CODE (oldequiv) == SUBREG
6584               && REG_P (SUBREG_REG (oldequiv))
6585               && (REGNO (SUBREG_REG (oldequiv))
6586                   >= FIRST_PSEUDO_REGISTER)
6587               && ((reg_equiv_memory_loc
6588                    [REGNO (SUBREG_REG (oldequiv))] != 0)
6589                   || (reg_equiv_constant
6590                       [REGNO (SUBREG_REG (oldequiv))] != 0)))
6591           || (CONSTANT_P (oldequiv)
6592               && (PREFERRED_RELOAD_CLASS (oldequiv,
6593                                           REGNO_REG_CLASS (REGNO (reloadreg)))
6594                   == NO_REGS)))
6595         real_oldequiv = rl->in;
6596       gen_reload (reloadreg, real_oldequiv, rl->opnum,
6597                   rl->when_needed);
6598     }
6599
6600   if (flag_non_call_exceptions)
6601     copy_eh_notes (insn, get_insns ());
6602
6603   /* End this sequence.  */
6604   *where = get_insns ();
6605   end_sequence ();
6606
6607   /* Update reload_override_in so that delete_address_reloads_1
6608      can see the actual register usage.  */
6609   if (oldequiv_reg)
6610     reload_override_in[j] = oldequiv;
6611 }
6612
6613 /* Generate insns to for the output reload RL, which is for the insn described
6614    by CHAIN and has the number J.  */
6615 static void
6616 emit_output_reload_insns (struct insn_chain *chain, struct reload *rl,
6617                           int j)
6618 {
6619   rtx reloadreg = rl->reg_rtx;
6620   rtx insn = chain->insn;
6621   int special = 0;
6622   rtx old = rl->out;
6623   enum machine_mode mode = GET_MODE (old);
6624   rtx p;
6625
6626   if (rl->when_needed == RELOAD_OTHER)
6627     start_sequence ();
6628   else
6629     push_to_sequence (output_reload_insns[rl->opnum]);
6630
6631   /* Determine the mode to reload in.
6632      See comments above (for input reloading).  */
6633
6634   if (mode == VOIDmode)
6635     {
6636       /* VOIDmode should never happen for an output.  */
6637       if (asm_noperands (PATTERN (insn)) < 0)
6638         /* It's the compiler's fault.  */
6639         fatal_insn ("VOIDmode on an output", insn);
6640       error_for_asm (insn, "output operand is constant in %<asm%>");
6641       /* Prevent crash--use something we know is valid.  */
6642       mode = word_mode;
6643       old = gen_rtx_REG (mode, REGNO (reloadreg));
6644     }
6645
6646   if (GET_MODE (reloadreg) != mode)
6647     reloadreg = reload_adjust_reg_for_mode (reloadreg, mode);
6648
6649 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
6650
6651   /* If we need two reload regs, set RELOADREG to the intermediate
6652      one, since it will be stored into OLD.  We might need a secondary
6653      register only for an input reload, so check again here.  */
6654
6655   if (rl->secondary_out_reload >= 0)
6656     {
6657       rtx real_old = old;
6658
6659       if (REG_P (old) && REGNO (old) >= FIRST_PSEUDO_REGISTER
6660           && reg_equiv_mem[REGNO (old)] != 0)
6661         real_old = reg_equiv_mem[REGNO (old)];
6662
6663       if ((SECONDARY_OUTPUT_RELOAD_CLASS (rl->class,
6664                                           mode, real_old)
6665            != NO_REGS))
6666         {
6667           rtx second_reloadreg = reloadreg;
6668           reloadreg = rld[rl->secondary_out_reload].reg_rtx;
6669
6670           /* See if RELOADREG is to be used as a scratch register
6671              or as an intermediate register.  */
6672           if (rl->secondary_out_icode != CODE_FOR_nothing)
6673             {
6674               emit_insn ((GEN_FCN (rl->secondary_out_icode)
6675                           (real_old, second_reloadreg, reloadreg)));
6676               special = 1;
6677             }
6678           else
6679             {
6680               /* See if we need both a scratch and intermediate reload
6681                  register.  */
6682
6683               int secondary_reload = rl->secondary_out_reload;
6684               enum insn_code tertiary_icode
6685                 = rld[secondary_reload].secondary_out_icode;
6686
6687               if (GET_MODE (reloadreg) != mode)
6688                 reloadreg = reload_adjust_reg_for_mode (reloadreg, mode);
6689
6690               if (tertiary_icode != CODE_FOR_nothing)
6691                 {
6692                   rtx third_reloadreg
6693                     = rld[rld[secondary_reload].secondary_out_reload].reg_rtx;
6694                   rtx tem;
6695
6696                   /* Copy primary reload reg to secondary reload reg.
6697                      (Note that these have been swapped above, then
6698                      secondary reload reg to OLD using our insn.)  */
6699
6700                   /* If REAL_OLD is a paradoxical SUBREG, remove it
6701                      and try to put the opposite SUBREG on
6702                      RELOADREG.  */
6703                   if (GET_CODE (real_old) == SUBREG
6704                       && (GET_MODE_SIZE (GET_MODE (real_old))
6705                           > GET_MODE_SIZE (GET_MODE (SUBREG_REG (real_old))))
6706                       && 0 != (tem = gen_lowpart_common
6707                                (GET_MODE (SUBREG_REG (real_old)),
6708                                 reloadreg)))
6709                     real_old = SUBREG_REG (real_old), reloadreg = tem;
6710
6711                   gen_reload (reloadreg, second_reloadreg,
6712                               rl->opnum, rl->when_needed);
6713                   emit_insn ((GEN_FCN (tertiary_icode)
6714                               (real_old, reloadreg, third_reloadreg)));
6715                   special = 1;
6716                 }
6717
6718               else
6719                 /* Copy between the reload regs here and then to
6720                    OUT later.  */
6721
6722                 gen_reload (reloadreg, second_reloadreg,
6723                             rl->opnum, rl->when_needed);
6724             }
6725         }
6726     }
6727 #endif
6728
6729   /* Output the last reload insn.  */
6730   if (! special)
6731     {
6732       rtx set;
6733
6734       /* Don't output the last reload if OLD is not the dest of
6735          INSN and is in the src and is clobbered by INSN.  */
6736       if (! flag_expensive_optimizations
6737           || !REG_P (old)
6738           || !(set = single_set (insn))
6739           || rtx_equal_p (old, SET_DEST (set))
6740           || !reg_mentioned_p (old, SET_SRC (set))
6741           || !((REGNO (old) < FIRST_PSEUDO_REGISTER)
6742                && regno_clobbered_p (REGNO (old), insn, rl->mode, 0)))
6743         gen_reload (old, reloadreg, rl->opnum,
6744                     rl->when_needed);
6745     }
6746
6747   /* Look at all insns we emitted, just to be safe.  */
6748   for (p = get_insns (); p; p = NEXT_INSN (p))
6749     if (INSN_P (p))
6750       {
6751         rtx pat = PATTERN (p);
6752
6753         /* If this output reload doesn't come from a spill reg,
6754            clear any memory of reloaded copies of the pseudo reg.
6755            If this output reload comes from a spill reg,
6756            reg_has_output_reload will make this do nothing.  */
6757         note_stores (pat, forget_old_reloads_1, NULL);
6758
6759         if (reg_mentioned_p (rl->reg_rtx, pat))
6760           {
6761             rtx set = single_set (insn);
6762             if (reload_spill_index[j] < 0
6763                 && set
6764                 && SET_SRC (set) == rl->reg_rtx)
6765               {
6766                 int src = REGNO (SET_SRC (set));
6767
6768                 reload_spill_index[j] = src;
6769                 SET_HARD_REG_BIT (reg_is_output_reload, src);
6770                 if (find_regno_note (insn, REG_DEAD, src))
6771                   SET_HARD_REG_BIT (reg_reloaded_died, src);
6772               }
6773             if (REGNO (rl->reg_rtx) < FIRST_PSEUDO_REGISTER)
6774               {
6775                 int s = rl->secondary_out_reload;
6776                 set = single_set (p);
6777                 /* If this reload copies only to the secondary reload
6778                    register, the secondary reload does the actual
6779                    store.  */
6780                 if (s >= 0 && set == NULL_RTX)
6781                   /* We can't tell what function the secondary reload
6782                      has and where the actual store to the pseudo is
6783                      made; leave new_spill_reg_store alone.  */
6784                   ;
6785                 else if (s >= 0
6786                          && SET_SRC (set) == rl->reg_rtx
6787                          && SET_DEST (set) == rld[s].reg_rtx)
6788                   {
6789                     /* Usually the next instruction will be the
6790                        secondary reload insn;  if we can confirm
6791                        that it is, setting new_spill_reg_store to
6792                        that insn will allow an extra optimization.  */
6793                     rtx s_reg = rld[s].reg_rtx;
6794                     rtx next = NEXT_INSN (p);
6795                     rld[s].out = rl->out;
6796                     rld[s].out_reg = rl->out_reg;
6797                     set = single_set (next);
6798                     if (set && SET_SRC (set) == s_reg
6799                         && ! new_spill_reg_store[REGNO (s_reg)])
6800                       {
6801                         SET_HARD_REG_BIT (reg_is_output_reload,
6802                                           REGNO (s_reg));
6803                         new_spill_reg_store[REGNO (s_reg)] = next;
6804                       }
6805                   }
6806                 else
6807                   new_spill_reg_store[REGNO (rl->reg_rtx)] = p;
6808               }
6809           }
6810       }
6811
6812   if (rl->when_needed == RELOAD_OTHER)
6813     {
6814       emit_insn (other_output_reload_insns[rl->opnum]);
6815       other_output_reload_insns[rl->opnum] = get_insns ();
6816     }
6817   else
6818     output_reload_insns[rl->opnum] = get_insns ();
6819
6820   if (flag_non_call_exceptions)
6821     copy_eh_notes (insn, get_insns ());
6822
6823   end_sequence ();
6824 }
6825
6826 /* Do input reloading for reload RL, which is for the insn described by CHAIN
6827    and has the number J.  */
6828 static void
6829 do_input_reload (struct insn_chain *chain, struct reload *rl, int j)
6830 {
6831   rtx insn = chain->insn;
6832   rtx old = (rl->in && MEM_P (rl->in)
6833              ? rl->in_reg : rl->in);
6834
6835   if (old != 0
6836       /* AUTO_INC reloads need to be handled even if inherited.  We got an
6837          AUTO_INC reload if reload_out is set but reload_out_reg isn't.  */
6838       && (! reload_inherited[j] || (rl->out && ! rl->out_reg))
6839       && ! rtx_equal_p (rl->reg_rtx, old)
6840       && rl->reg_rtx != 0)
6841     emit_input_reload_insns (chain, rld + j, old, j);
6842
6843   /* When inheriting a wider reload, we have a MEM in rl->in,
6844      e.g. inheriting a SImode output reload for
6845      (mem:HI (plus:SI (reg:SI 14 fp) (const_int 10)))  */
6846   if (optimize && reload_inherited[j] && rl->in
6847       && MEM_P (rl->in)
6848       && MEM_P (rl->in_reg)
6849       && reload_spill_index[j] >= 0
6850       && TEST_HARD_REG_BIT (reg_reloaded_valid, reload_spill_index[j]))
6851     rl->in = regno_reg_rtx[reg_reloaded_contents[reload_spill_index[j]]];
6852
6853   /* If we are reloading a register that was recently stored in with an
6854      output-reload, see if we can prove there was
6855      actually no need to store the old value in it.  */
6856
6857   if (optimize
6858       /* Only attempt this for input reloads; for RELOAD_OTHER we miss
6859          that there may be multiple uses of the previous output reload.
6860          Restricting to RELOAD_FOR_INPUT is mostly paranoia.  */
6861       && rl->when_needed == RELOAD_FOR_INPUT
6862       && (reload_inherited[j] || reload_override_in[j])
6863       && rl->reg_rtx
6864       && REG_P (rl->reg_rtx)
6865       && spill_reg_store[REGNO (rl->reg_rtx)] != 0
6866 #if 0
6867       /* There doesn't seem to be any reason to restrict this to pseudos
6868          and doing so loses in the case where we are copying from a
6869          register of the wrong class.  */
6870       && (REGNO (spill_reg_stored_to[REGNO (rl->reg_rtx)])
6871           >= FIRST_PSEUDO_REGISTER)
6872 #endif
6873       /* The insn might have already some references to stackslots
6874          replaced by MEMs, while reload_out_reg still names the
6875          original pseudo.  */
6876       && (dead_or_set_p (insn,
6877                          spill_reg_stored_to[REGNO (rl->reg_rtx)])
6878           || rtx_equal_p (spill_reg_stored_to[REGNO (rl->reg_rtx)],
6879                           rl->out_reg)))
6880     delete_output_reload (insn, j, REGNO (rl->reg_rtx));
6881 }
6882
6883 /* Do output reloading for reload RL, which is for the insn described by
6884    CHAIN and has the number J.
6885    ??? At some point we need to support handling output reloads of
6886    JUMP_INSNs or insns that set cc0.  */
6887 static void
6888 do_output_reload (struct insn_chain *chain, struct reload *rl, int j)
6889 {
6890   rtx note, old;
6891   rtx insn = chain->insn;
6892   /* If this is an output reload that stores something that is
6893      not loaded in this same reload, see if we can eliminate a previous
6894      store.  */
6895   rtx pseudo = rl->out_reg;
6896
6897   if (pseudo
6898       && optimize
6899       && REG_P (pseudo)
6900       && ! rtx_equal_p (rl->in_reg, pseudo)
6901       && REGNO (pseudo) >= FIRST_PSEUDO_REGISTER
6902       && reg_last_reload_reg[REGNO (pseudo)])
6903     {
6904       int pseudo_no = REGNO (pseudo);
6905       int last_regno = REGNO (reg_last_reload_reg[pseudo_no]);
6906
6907       /* We don't need to test full validity of last_regno for
6908          inherit here; we only want to know if the store actually
6909          matches the pseudo.  */
6910       if (TEST_HARD_REG_BIT (reg_reloaded_valid, last_regno)
6911           && reg_reloaded_contents[last_regno] == pseudo_no
6912           && spill_reg_store[last_regno]
6913           && rtx_equal_p (pseudo, spill_reg_stored_to[last_regno]))
6914         delete_output_reload (insn, j, last_regno);
6915     }
6916
6917   old = rl->out_reg;
6918   if (old == 0
6919       || rl->reg_rtx == old
6920       || rl->reg_rtx == 0)
6921     return;
6922
6923   /* An output operand that dies right away does need a reload,
6924      but need not be copied from it.  Show the new location in the
6925      REG_UNUSED note.  */
6926   if ((REG_P (old) || GET_CODE (old) == SCRATCH)
6927       && (note = find_reg_note (insn, REG_UNUSED, old)) != 0)
6928     {
6929       XEXP (note, 0) = rl->reg_rtx;
6930       return;
6931     }
6932   /* Likewise for a SUBREG of an operand that dies.  */
6933   else if (GET_CODE (old) == SUBREG
6934            && REG_P (SUBREG_REG (old))
6935            && 0 != (note = find_reg_note (insn, REG_UNUSED,
6936                                           SUBREG_REG (old))))
6937     {
6938       XEXP (note, 0) = gen_lowpart_common (GET_MODE (old),
6939                                            rl->reg_rtx);
6940       return;
6941     }
6942   else if (GET_CODE (old) == SCRATCH)
6943     /* If we aren't optimizing, there won't be a REG_UNUSED note,
6944        but we don't want to make an output reload.  */
6945     return;
6946
6947   /* If is a JUMP_INSN, we can't support output reloads yet.  */
6948   gcc_assert (!JUMP_P (insn));
6949
6950   emit_output_reload_insns (chain, rld + j, j);
6951 }
6952
6953 /* Reload number R reloads from or to a group of hard registers starting at
6954    register REGNO.  Return true if it can be treated for inheritance purposes
6955    like a group of reloads, each one reloading a single hard register.
6956    The caller has already checked that the spill register and REGNO use
6957    the same number of registers to store the reload value.  */
6958
6959 static bool
6960 inherit_piecemeal_p (int r ATTRIBUTE_UNUSED, int regno ATTRIBUTE_UNUSED)
6961 {
6962 #ifdef CANNOT_CHANGE_MODE_CLASS
6963   return (!REG_CANNOT_CHANGE_MODE_P (reload_spill_index[r],
6964                                      GET_MODE (rld[r].reg_rtx),
6965                                      reg_raw_mode[reload_spill_index[r]])
6966           && !REG_CANNOT_CHANGE_MODE_P (regno,
6967                                         GET_MODE (rld[r].reg_rtx),
6968                                         reg_raw_mode[regno]));
6969 #else
6970   return true;
6971 #endif
6972 }
6973
6974 /* Output insns to reload values in and out of the chosen reload regs.  */
6975
6976 static void
6977 emit_reload_insns (struct insn_chain *chain)
6978 {
6979   rtx insn = chain->insn;
6980
6981   int j;
6982
6983   CLEAR_HARD_REG_SET (reg_reloaded_died);
6984
6985   for (j = 0; j < reload_n_operands; j++)
6986     input_reload_insns[j] = input_address_reload_insns[j]
6987       = inpaddr_address_reload_insns[j]
6988       = output_reload_insns[j] = output_address_reload_insns[j]
6989       = outaddr_address_reload_insns[j]
6990       = other_output_reload_insns[j] = 0;
6991   other_input_address_reload_insns = 0;
6992   other_input_reload_insns = 0;
6993   operand_reload_insns = 0;
6994   other_operand_reload_insns = 0;
6995
6996   /* Dump reloads into the dump file.  */
6997   if (dump_file)
6998     {
6999       fprintf (dump_file, "\nReloads for insn # %d\n", INSN_UID (insn));
7000       debug_reload_to_stream (dump_file);
7001     }
7002
7003   /* Now output the instructions to copy the data into and out of the
7004      reload registers.  Do these in the order that the reloads were reported,
7005      since reloads of base and index registers precede reloads of operands
7006      and the operands may need the base and index registers reloaded.  */
7007
7008   for (j = 0; j < n_reloads; j++)
7009     {
7010       if (rld[j].reg_rtx
7011           && REGNO (rld[j].reg_rtx) < FIRST_PSEUDO_REGISTER)
7012         new_spill_reg_store[REGNO (rld[j].reg_rtx)] = 0;
7013
7014       do_input_reload (chain, rld + j, j);
7015       do_output_reload (chain, rld + j, j);
7016     }
7017
7018   /* Now write all the insns we made for reloads in the order expected by
7019      the allocation functions.  Prior to the insn being reloaded, we write
7020      the following reloads:
7021
7022      RELOAD_FOR_OTHER_ADDRESS reloads for input addresses.
7023
7024      RELOAD_OTHER reloads.
7025
7026      For each operand, any RELOAD_FOR_INPADDR_ADDRESS reloads followed
7027      by any RELOAD_FOR_INPUT_ADDRESS reloads followed by the
7028      RELOAD_FOR_INPUT reload for the operand.
7029
7030      RELOAD_FOR_OPADDR_ADDRS reloads.
7031
7032      RELOAD_FOR_OPERAND_ADDRESS reloads.
7033
7034      After the insn being reloaded, we write the following:
7035
7036      For each operand, any RELOAD_FOR_OUTADDR_ADDRESS reloads followed
7037      by any RELOAD_FOR_OUTPUT_ADDRESS reload followed by the
7038      RELOAD_FOR_OUTPUT reload, followed by any RELOAD_OTHER output
7039      reloads for the operand.  The RELOAD_OTHER output reloads are
7040      output in descending order by reload number.  */
7041
7042   emit_insn_before (other_input_address_reload_insns, insn);
7043   emit_insn_before (other_input_reload_insns, insn);
7044
7045   for (j = 0; j < reload_n_operands; j++)
7046     {
7047       emit_insn_before (inpaddr_address_reload_insns[j], insn);
7048       emit_insn_before (input_address_reload_insns[j], insn);
7049       emit_insn_before (input_reload_insns[j], insn);
7050     }
7051
7052   emit_insn_before (other_operand_reload_insns, insn);
7053   emit_insn_before (operand_reload_insns, insn);
7054
7055   for (j = 0; j < reload_n_operands; j++)
7056     {
7057       rtx x = emit_insn_after (outaddr_address_reload_insns[j], insn);
7058       x = emit_insn_after (output_address_reload_insns[j], x);
7059       x = emit_insn_after (output_reload_insns[j], x);
7060       emit_insn_after (other_output_reload_insns[j], x);
7061     }
7062
7063   /* For all the spill regs newly reloaded in this instruction,
7064      record what they were reloaded from, so subsequent instructions
7065      can inherit the reloads.
7066
7067      Update spill_reg_store for the reloads of this insn.
7068      Copy the elements that were updated in the loop above.  */
7069
7070   for (j = 0; j < n_reloads; j++)
7071     {
7072       int r = reload_order[j];
7073       int i = reload_spill_index[r];
7074
7075       /* If this is a non-inherited input reload from a pseudo, we must
7076          clear any memory of a previous store to the same pseudo.  Only do
7077          something if there will not be an output reload for the pseudo
7078          being reloaded.  */
7079       if (rld[r].in_reg != 0
7080           && ! (reload_inherited[r] || reload_override_in[r]))
7081         {
7082           rtx reg = rld[r].in_reg;
7083
7084           if (GET_CODE (reg) == SUBREG)
7085             reg = SUBREG_REG (reg);
7086
7087           if (REG_P (reg)
7088               && REGNO (reg) >= FIRST_PSEUDO_REGISTER
7089               && ! reg_has_output_reload[REGNO (reg)])
7090             {
7091               int nregno = REGNO (reg);
7092
7093               if (reg_last_reload_reg[nregno])
7094                 {
7095                   int last_regno = REGNO (reg_last_reload_reg[nregno]);
7096
7097                   if (reg_reloaded_contents[last_regno] == nregno)
7098                     spill_reg_store[last_regno] = 0;
7099                 }
7100             }
7101         }
7102
7103       /* I is nonneg if this reload used a register.
7104          If rld[r].reg_rtx is 0, this is an optional reload
7105          that we opted to ignore.  */
7106
7107       if (i >= 0 && rld[r].reg_rtx != 0)
7108         {
7109           int nr = hard_regno_nregs[i][GET_MODE (rld[r].reg_rtx)];
7110           int k;
7111           int part_reaches_end = 0;
7112           int all_reaches_end = 1;
7113
7114           /* For a multi register reload, we need to check if all or part
7115              of the value lives to the end.  */
7116           for (k = 0; k < nr; k++)
7117             {
7118               if (reload_reg_reaches_end_p (i + k, rld[r].opnum,
7119                                             rld[r].when_needed))
7120                 part_reaches_end = 1;
7121               else
7122                 all_reaches_end = 0;
7123             }
7124
7125           /* Ignore reloads that don't reach the end of the insn in
7126              entirety.  */
7127           if (all_reaches_end)
7128             {
7129               /* First, clear out memory of what used to be in this spill reg.
7130                  If consecutive registers are used, clear them all.  */
7131
7132               for (k = 0; k < nr; k++)
7133                 {
7134                 CLEAR_HARD_REG_BIT (reg_reloaded_valid, i + k);
7135                   CLEAR_HARD_REG_BIT (reg_reloaded_call_part_clobbered, i + k);
7136                 }
7137
7138               /* Maybe the spill reg contains a copy of reload_out.  */
7139               if (rld[r].out != 0
7140                   && (REG_P (rld[r].out)
7141 #ifdef AUTO_INC_DEC
7142                       || ! rld[r].out_reg
7143 #endif
7144                       || REG_P (rld[r].out_reg)))
7145                 {
7146                   rtx out = (REG_P (rld[r].out)
7147                              ? rld[r].out
7148                              : rld[r].out_reg
7149                              ? rld[r].out_reg
7150 /* AUTO_INC */               : XEXP (rld[r].in_reg, 0));
7151                   int nregno = REGNO (out);
7152                   int nnr = (nregno >= FIRST_PSEUDO_REGISTER ? 1
7153                              : hard_regno_nregs[nregno]
7154                                                [GET_MODE (rld[r].reg_rtx)]);
7155                   bool piecemeal;
7156
7157                   spill_reg_store[i] = new_spill_reg_store[i];
7158                   spill_reg_stored_to[i] = out;
7159                   reg_last_reload_reg[nregno] = rld[r].reg_rtx;
7160
7161                   piecemeal = (nregno < FIRST_PSEUDO_REGISTER
7162                                && nr == nnr
7163                                && inherit_piecemeal_p (r, nregno));
7164
7165                   /* If NREGNO is a hard register, it may occupy more than
7166                      one register.  If it does, say what is in the
7167                      rest of the registers assuming that both registers
7168                      agree on how many words the object takes.  If not,
7169                      invalidate the subsequent registers.  */
7170
7171                   if (nregno < FIRST_PSEUDO_REGISTER)
7172                     for (k = 1; k < nnr; k++)
7173                       reg_last_reload_reg[nregno + k]
7174                         = (piecemeal
7175                            ? regno_reg_rtx[REGNO (rld[r].reg_rtx) + k]
7176                            : 0);
7177
7178                   /* Now do the inverse operation.  */
7179                   for (k = 0; k < nr; k++)
7180                     {
7181                       CLEAR_HARD_REG_BIT (reg_reloaded_dead, i + k);
7182                       reg_reloaded_contents[i + k]
7183                         = (nregno >= FIRST_PSEUDO_REGISTER || !piecemeal
7184                            ? nregno
7185                            : nregno + k);
7186                       reg_reloaded_insn[i + k] = insn;
7187                       SET_HARD_REG_BIT (reg_reloaded_valid, i + k);
7188                       if (HARD_REGNO_CALL_PART_CLOBBERED (i + k, GET_MODE (out)))
7189                         SET_HARD_REG_BIT (reg_reloaded_call_part_clobbered, i + k);
7190                     }
7191                 }
7192
7193               /* Maybe the spill reg contains a copy of reload_in.  Only do
7194                  something if there will not be an output reload for
7195                  the register being reloaded.  */
7196               else if (rld[r].out_reg == 0
7197                        && rld[r].in != 0
7198                        && ((REG_P (rld[r].in)
7199                             && REGNO (rld[r].in) >= FIRST_PSEUDO_REGISTER
7200                             && ! reg_has_output_reload[REGNO (rld[r].in)])
7201                            || (REG_P (rld[r].in_reg)
7202                                && ! reg_has_output_reload[REGNO (rld[r].in_reg)]))
7203                        && ! reg_set_p (rld[r].reg_rtx, PATTERN (insn)))
7204                 {
7205                   int nregno;
7206                   int nnr;
7207                   rtx in;
7208                   bool piecemeal;
7209
7210                   if (REG_P (rld[r].in)
7211                       && REGNO (rld[r].in) >= FIRST_PSEUDO_REGISTER)
7212                     in = rld[r].in;
7213                   else if (REG_P (rld[r].in_reg))
7214                     in = rld[r].in_reg;
7215                   else
7216                     in = XEXP (rld[r].in_reg, 0);
7217                   nregno = REGNO (in);
7218
7219                   nnr = (nregno >= FIRST_PSEUDO_REGISTER ? 1
7220                          : hard_regno_nregs[nregno]
7221                                            [GET_MODE (rld[r].reg_rtx)]);
7222
7223                   reg_last_reload_reg[nregno] = rld[r].reg_rtx;
7224
7225                   piecemeal = (nregno < FIRST_PSEUDO_REGISTER
7226                                && nr == nnr
7227                                && inherit_piecemeal_p (r, nregno));
7228
7229                   if (nregno < FIRST_PSEUDO_REGISTER)
7230                     for (k = 1; k < nnr; k++)
7231                       reg_last_reload_reg[nregno + k]
7232                         = (piecemeal
7233                            ? regno_reg_rtx[REGNO (rld[r].reg_rtx) + k]
7234                            : 0);
7235
7236                   /* Unless we inherited this reload, show we haven't
7237                      recently done a store.
7238                      Previous stores of inherited auto_inc expressions
7239                      also have to be discarded.  */
7240                   if (! reload_inherited[r]
7241                       || (rld[r].out && ! rld[r].out_reg))
7242                     spill_reg_store[i] = 0;
7243
7244                   for (k = 0; k < nr; k++)
7245                     {
7246                       CLEAR_HARD_REG_BIT (reg_reloaded_dead, i + k);
7247                       reg_reloaded_contents[i + k]
7248                         = (nregno >= FIRST_PSEUDO_REGISTER || !piecemeal
7249                            ? nregno
7250                            : nregno + k);
7251                       reg_reloaded_insn[i + k] = insn;
7252                       SET_HARD_REG_BIT (reg_reloaded_valid, i + k);
7253                       if (HARD_REGNO_CALL_PART_CLOBBERED (i + k, GET_MODE (in)))
7254                         SET_HARD_REG_BIT (reg_reloaded_call_part_clobbered, i + k);
7255                     }
7256                 }
7257             }
7258
7259           /* However, if part of the reload reaches the end, then we must
7260              invalidate the old info for the part that survives to the end.  */
7261           else if (part_reaches_end)
7262             {
7263               for (k = 0; k < nr; k++)
7264                 if (reload_reg_reaches_end_p (i + k,
7265                                               rld[r].opnum,
7266                                               rld[r].when_needed))
7267                   CLEAR_HARD_REG_BIT (reg_reloaded_valid, i + k);
7268             }
7269         }
7270
7271       /* The following if-statement was #if 0'd in 1.34 (or before...).
7272          It's reenabled in 1.35 because supposedly nothing else
7273          deals with this problem.  */
7274
7275       /* If a register gets output-reloaded from a non-spill register,
7276          that invalidates any previous reloaded copy of it.
7277          But forget_old_reloads_1 won't get to see it, because
7278          it thinks only about the original insn.  So invalidate it here.  */
7279       if (i < 0 && rld[r].out != 0
7280           && (REG_P (rld[r].out)
7281               || (MEM_P (rld[r].out)
7282                   && REG_P (rld[r].out_reg))))
7283         {
7284           rtx out = (REG_P (rld[r].out)
7285                      ? rld[r].out : rld[r].out_reg);
7286           int nregno = REGNO (out);
7287           if (nregno >= FIRST_PSEUDO_REGISTER)
7288             {
7289               rtx src_reg, store_insn = NULL_RTX;
7290
7291               reg_last_reload_reg[nregno] = 0;
7292
7293               /* If we can find a hard register that is stored, record
7294                  the storing insn so that we may delete this insn with
7295                  delete_output_reload.  */
7296               src_reg = rld[r].reg_rtx;
7297
7298               /* If this is an optional reload, try to find the source reg
7299                  from an input reload.  */
7300               if (! src_reg)
7301                 {
7302                   rtx set = single_set (insn);
7303                   if (set && SET_DEST (set) == rld[r].out)
7304                     {
7305                       int k;
7306
7307                       src_reg = SET_SRC (set);
7308                       store_insn = insn;
7309                       for (k = 0; k < n_reloads; k++)
7310                         {
7311                           if (rld[k].in == src_reg)
7312                             {
7313                               src_reg = rld[k].reg_rtx;
7314                               break;
7315                             }
7316                         }
7317                     }
7318                 }
7319               else
7320                 store_insn = new_spill_reg_store[REGNO (src_reg)];
7321               if (src_reg && REG_P (src_reg)
7322                   && REGNO (src_reg) < FIRST_PSEUDO_REGISTER)
7323                 {
7324                   int src_regno = REGNO (src_reg);
7325                   int nr = hard_regno_nregs[src_regno][rld[r].mode];
7326                   /* The place where to find a death note varies with
7327                      PRESERVE_DEATH_INFO_REGNO_P .  The condition is not
7328                      necessarily checked exactly in the code that moves
7329                      notes, so just check both locations.  */
7330                   rtx note = find_regno_note (insn, REG_DEAD, src_regno);
7331                   if (! note && store_insn)
7332                     note = find_regno_note (store_insn, REG_DEAD, src_regno);
7333                   while (nr-- > 0)
7334                     {
7335                       spill_reg_store[src_regno + nr] = store_insn;
7336                       spill_reg_stored_to[src_regno + nr] = out;
7337                       reg_reloaded_contents[src_regno + nr] = nregno;
7338                       reg_reloaded_insn[src_regno + nr] = store_insn;
7339                       CLEAR_HARD_REG_BIT (reg_reloaded_dead, src_regno + nr);
7340                       SET_HARD_REG_BIT (reg_reloaded_valid, src_regno + nr);
7341                       if (HARD_REGNO_CALL_PART_CLOBBERED (src_regno + nr, 
7342                                                           GET_MODE (src_reg)))
7343                         SET_HARD_REG_BIT (reg_reloaded_call_part_clobbered, 
7344                                           src_regno + nr);
7345                       SET_HARD_REG_BIT (reg_is_output_reload, src_regno + nr);
7346                       if (note)
7347                         SET_HARD_REG_BIT (reg_reloaded_died, src_regno);
7348                       else
7349                         CLEAR_HARD_REG_BIT (reg_reloaded_died, src_regno);
7350                     }
7351                   reg_last_reload_reg[nregno] = src_reg;
7352                   /* We have to set reg_has_output_reload here, or else 
7353                      forget_old_reloads_1 will clear reg_last_reload_reg
7354                      right away.  */
7355                   reg_has_output_reload[nregno] = 1;
7356                 }
7357             }
7358           else
7359             {
7360               int num_regs = hard_regno_nregs[nregno][GET_MODE (rld[r].out)];
7361
7362               while (num_regs-- > 0)
7363                 reg_last_reload_reg[nregno + num_regs] = 0;
7364             }
7365         }
7366     }
7367   IOR_HARD_REG_SET (reg_reloaded_dead, reg_reloaded_died);
7368 }
7369 \f
7370 /* Emit code to perform a reload from IN (which may be a reload register) to
7371    OUT (which may also be a reload register).  IN or OUT is from operand
7372    OPNUM with reload type TYPE.
7373
7374    Returns first insn emitted.  */
7375
7376 static rtx
7377 gen_reload (rtx out, rtx in, int opnum, enum reload_type type)
7378 {
7379   rtx last = get_last_insn ();
7380   rtx tem;
7381
7382   /* If IN is a paradoxical SUBREG, remove it and try to put the
7383      opposite SUBREG on OUT.  Likewise for a paradoxical SUBREG on OUT.  */
7384   if (GET_CODE (in) == SUBREG
7385       && (GET_MODE_SIZE (GET_MODE (in))
7386           > GET_MODE_SIZE (GET_MODE (SUBREG_REG (in))))
7387       && (tem = gen_lowpart_common (GET_MODE (SUBREG_REG (in)), out)) != 0)
7388     in = SUBREG_REG (in), out = tem;
7389   else if (GET_CODE (out) == SUBREG
7390            && (GET_MODE_SIZE (GET_MODE (out))
7391                > GET_MODE_SIZE (GET_MODE (SUBREG_REG (out))))
7392            && (tem = gen_lowpart_common (GET_MODE (SUBREG_REG (out)), in)) != 0)
7393     out = SUBREG_REG (out), in = tem;
7394
7395   /* How to do this reload can get quite tricky.  Normally, we are being
7396      asked to reload a simple operand, such as a MEM, a constant, or a pseudo
7397      register that didn't get a hard register.  In that case we can just
7398      call emit_move_insn.
7399
7400      We can also be asked to reload a PLUS that adds a register or a MEM to
7401      another register, constant or MEM.  This can occur during frame pointer
7402      elimination and while reloading addresses.  This case is handled by
7403      trying to emit a single insn to perform the add.  If it is not valid,
7404      we use a two insn sequence.
7405
7406      Finally, we could be called to handle an 'o' constraint by putting
7407      an address into a register.  In that case, we first try to do this
7408      with a named pattern of "reload_load_address".  If no such pattern
7409      exists, we just emit a SET insn and hope for the best (it will normally
7410      be valid on machines that use 'o').
7411
7412      This entire process is made complex because reload will never
7413      process the insns we generate here and so we must ensure that
7414      they will fit their constraints and also by the fact that parts of
7415      IN might be being reloaded separately and replaced with spill registers.
7416      Because of this, we are, in some sense, just guessing the right approach
7417      here.  The one listed above seems to work.
7418
7419      ??? At some point, this whole thing needs to be rethought.  */
7420
7421   if (GET_CODE (in) == PLUS
7422       && (REG_P (XEXP (in, 0))
7423           || GET_CODE (XEXP (in, 0)) == SUBREG
7424           || MEM_P (XEXP (in, 0)))
7425       && (REG_P (XEXP (in, 1))
7426           || GET_CODE (XEXP (in, 1)) == SUBREG
7427           || CONSTANT_P (XEXP (in, 1))
7428           || MEM_P (XEXP (in, 1))))
7429     {
7430       /* We need to compute the sum of a register or a MEM and another
7431          register, constant, or MEM, and put it into the reload
7432          register.  The best possible way of doing this is if the machine
7433          has a three-operand ADD insn that accepts the required operands.
7434
7435          The simplest approach is to try to generate such an insn and see if it
7436          is recognized and matches its constraints.  If so, it can be used.
7437
7438          It might be better not to actually emit the insn unless it is valid,
7439          but we need to pass the insn as an operand to `recog' and
7440          `extract_insn' and it is simpler to emit and then delete the insn if
7441          not valid than to dummy things up.  */
7442
7443       rtx op0, op1, tem, insn;
7444       int code;
7445
7446       op0 = find_replacement (&XEXP (in, 0));
7447       op1 = find_replacement (&XEXP (in, 1));
7448
7449       /* Since constraint checking is strict, commutativity won't be
7450          checked, so we need to do that here to avoid spurious failure
7451          if the add instruction is two-address and the second operand
7452          of the add is the same as the reload reg, which is frequently
7453          the case.  If the insn would be A = B + A, rearrange it so
7454          it will be A = A + B as constrain_operands expects.  */
7455
7456       if (REG_P (XEXP (in, 1))
7457           && REGNO (out) == REGNO (XEXP (in, 1)))
7458         tem = op0, op0 = op1, op1 = tem;
7459
7460       if (op0 != XEXP (in, 0) || op1 != XEXP (in, 1))
7461         in = gen_rtx_PLUS (GET_MODE (in), op0, op1);
7462
7463       insn = emit_insn (gen_rtx_SET (VOIDmode, out, in));
7464       code = recog_memoized (insn);
7465
7466       if (code >= 0)
7467         {
7468           extract_insn (insn);
7469           /* We want constrain operands to treat this insn strictly in
7470              its validity determination, i.e., the way it would after reload
7471              has completed.  */
7472           if (constrain_operands (1))
7473             return insn;
7474         }
7475
7476       delete_insns_since (last);
7477
7478       /* If that failed, we must use a conservative two-insn sequence.
7479
7480          Use a move to copy one operand into the reload register.  Prefer
7481          to reload a constant, MEM or pseudo since the move patterns can
7482          handle an arbitrary operand.  If OP1 is not a constant, MEM or
7483          pseudo and OP1 is not a valid operand for an add instruction, then
7484          reload OP1.
7485
7486          After reloading one of the operands into the reload register, add
7487          the reload register to the output register.
7488
7489          If there is another way to do this for a specific machine, a
7490          DEFINE_PEEPHOLE should be specified that recognizes the sequence
7491          we emit below.  */
7492
7493       code = (int) add_optab->handlers[(int) GET_MODE (out)].insn_code;
7494
7495       if (CONSTANT_P (op1) || MEM_P (op1) || GET_CODE (op1) == SUBREG
7496           || (REG_P (op1)
7497               && REGNO (op1) >= FIRST_PSEUDO_REGISTER)
7498           || (code != CODE_FOR_nothing
7499               && ! ((*insn_data[code].operand[2].predicate)
7500                     (op1, insn_data[code].operand[2].mode))))
7501         tem = op0, op0 = op1, op1 = tem;
7502
7503       gen_reload (out, op0, opnum, type);
7504
7505       /* If OP0 and OP1 are the same, we can use OUT for OP1.
7506          This fixes a problem on the 32K where the stack pointer cannot
7507          be used as an operand of an add insn.  */
7508
7509       if (rtx_equal_p (op0, op1))
7510         op1 = out;
7511
7512       insn = emit_insn (gen_add2_insn (out, op1));
7513
7514       /* If that failed, copy the address register to the reload register.
7515          Then add the constant to the reload register.  */
7516
7517       code = recog_memoized (insn);
7518
7519       if (code >= 0)
7520         {
7521           extract_insn (insn);
7522           /* We want constrain operands to treat this insn strictly in
7523              its validity determination, i.e., the way it would after reload
7524              has completed.  */
7525           if (constrain_operands (1))
7526             {
7527               /* Add a REG_EQUIV note so that find_equiv_reg can find it.  */
7528               REG_NOTES (insn)
7529                 = gen_rtx_EXPR_LIST (REG_EQUIV, in, REG_NOTES (insn));
7530               return insn;
7531             }
7532         }
7533
7534       delete_insns_since (last);
7535
7536       gen_reload (out, op1, opnum, type);
7537       insn = emit_insn (gen_add2_insn (out, op0));
7538       REG_NOTES (insn) = gen_rtx_EXPR_LIST (REG_EQUIV, in, REG_NOTES (insn));
7539     }
7540
7541 #ifdef SECONDARY_MEMORY_NEEDED
7542   /* If we need a memory location to do the move, do it that way.  */
7543   else if ((REG_P (in) || GET_CODE (in) == SUBREG)
7544            && reg_or_subregno (in) < FIRST_PSEUDO_REGISTER
7545            && (REG_P (out) || GET_CODE (out) == SUBREG)
7546            && reg_or_subregno (out) < FIRST_PSEUDO_REGISTER
7547            && SECONDARY_MEMORY_NEEDED (REGNO_REG_CLASS (reg_or_subregno (in)),
7548                                        REGNO_REG_CLASS (reg_or_subregno (out)),
7549                                        GET_MODE (out)))
7550     {
7551       /* Get the memory to use and rewrite both registers to its mode.  */
7552       rtx loc = get_secondary_mem (in, GET_MODE (out), opnum, type);
7553
7554       if (GET_MODE (loc) != GET_MODE (out))
7555         out = gen_rtx_REG (GET_MODE (loc), REGNO (out));
7556
7557       if (GET_MODE (loc) != GET_MODE (in))
7558         in = gen_rtx_REG (GET_MODE (loc), REGNO (in));
7559
7560       gen_reload (loc, in, opnum, type);
7561       gen_reload (out, loc, opnum, type);
7562     }
7563 #endif
7564
7565   /* If IN is a simple operand, use gen_move_insn.  */
7566   else if (OBJECT_P (in) || GET_CODE (in) == SUBREG)
7567     emit_insn (gen_move_insn (out, in));
7568
7569 #ifdef HAVE_reload_load_address
7570   else if (HAVE_reload_load_address)
7571     emit_insn (gen_reload_load_address (out, in));
7572 #endif
7573
7574   /* Otherwise, just write (set OUT IN) and hope for the best.  */
7575   else
7576     emit_insn (gen_rtx_SET (VOIDmode, out, in));
7577
7578   /* Return the first insn emitted.
7579      We can not just return get_last_insn, because there may have
7580      been multiple instructions emitted.  Also note that gen_move_insn may
7581      emit more than one insn itself, so we can not assume that there is one
7582      insn emitted per emit_insn_before call.  */
7583
7584   return last ? NEXT_INSN (last) : get_insns ();
7585 }
7586 \f
7587 /* Delete a previously made output-reload whose result we now believe
7588    is not needed.  First we double-check.
7589
7590    INSN is the insn now being processed.
7591    LAST_RELOAD_REG is the hard register number for which we want to delete
7592    the last output reload.
7593    J is the reload-number that originally used REG.  The caller has made
7594    certain that reload J doesn't use REG any longer for input.  */
7595
7596 static void
7597 delete_output_reload (rtx insn, int j, int last_reload_reg)
7598 {
7599   rtx output_reload_insn = spill_reg_store[last_reload_reg];
7600   rtx reg = spill_reg_stored_to[last_reload_reg];
7601   int k;
7602   int n_occurrences;
7603   int n_inherited = 0;
7604   rtx i1;
7605   rtx substed;
7606
7607   /* It is possible that this reload has been only used to set another reload
7608      we eliminated earlier and thus deleted this instruction too.  */
7609   if (INSN_DELETED_P (output_reload_insn))
7610     return;
7611
7612   /* Get the raw pseudo-register referred to.  */
7613
7614   while (GET_CODE (reg) == SUBREG)
7615     reg = SUBREG_REG (reg);
7616   substed = reg_equiv_memory_loc[REGNO (reg)];
7617
7618   /* This is unsafe if the operand occurs more often in the current
7619      insn than it is inherited.  */
7620   for (k = n_reloads - 1; k >= 0; k--)
7621     {
7622       rtx reg2 = rld[k].in;
7623       if (! reg2)
7624         continue;
7625       if (MEM_P (reg2) || reload_override_in[k])
7626         reg2 = rld[k].in_reg;
7627 #ifdef AUTO_INC_DEC
7628       if (rld[k].out && ! rld[k].out_reg)
7629         reg2 = XEXP (rld[k].in_reg, 0);
7630 #endif
7631       while (GET_CODE (reg2) == SUBREG)
7632         reg2 = SUBREG_REG (reg2);
7633       if (rtx_equal_p (reg2, reg))
7634         {
7635           if (reload_inherited[k] || reload_override_in[k] || k == j)
7636             {
7637               n_inherited++;
7638               reg2 = rld[k].out_reg;
7639               if (! reg2)
7640                 continue;
7641               while (GET_CODE (reg2) == SUBREG)
7642                 reg2 = XEXP (reg2, 0);
7643               if (rtx_equal_p (reg2, reg))
7644                 n_inherited++;
7645             }
7646           else
7647             return;
7648         }
7649     }
7650   n_occurrences = count_occurrences (PATTERN (insn), reg, 0);
7651   if (substed)
7652     n_occurrences += count_occurrences (PATTERN (insn),
7653                                         eliminate_regs (substed, 0,
7654                                                         NULL_RTX), 0);
7655   if (n_occurrences > n_inherited)
7656     return;
7657
7658   /* If the pseudo-reg we are reloading is no longer referenced
7659      anywhere between the store into it and here,
7660      and we're within the same basic block, then the value can only
7661      pass through the reload reg and end up here.
7662      Otherwise, give up--return.  */
7663   for (i1 = NEXT_INSN (output_reload_insn);
7664        i1 != insn; i1 = NEXT_INSN (i1))
7665     {
7666       if (NOTE_INSN_BASIC_BLOCK_P (i1))
7667         return;
7668       if ((NONJUMP_INSN_P (i1) || CALL_P (i1))
7669           && reg_mentioned_p (reg, PATTERN (i1)))
7670         {
7671           /* If this is USE in front of INSN, we only have to check that
7672              there are no more references than accounted for by inheritance.  */
7673           while (NONJUMP_INSN_P (i1) && GET_CODE (PATTERN (i1)) == USE)
7674             {
7675               n_occurrences += rtx_equal_p (reg, XEXP (PATTERN (i1), 0)) != 0;
7676               i1 = NEXT_INSN (i1);
7677             }
7678           if (n_occurrences <= n_inherited && i1 == insn)
7679             break;
7680           return;
7681         }
7682     }
7683
7684   /* We will be deleting the insn.  Remove the spill reg information.  */
7685   for (k = hard_regno_nregs[last_reload_reg][GET_MODE (reg)]; k-- > 0; )
7686     {
7687       spill_reg_store[last_reload_reg + k] = 0;
7688       spill_reg_stored_to[last_reload_reg + k] = 0;
7689     }
7690
7691   /* The caller has already checked that REG dies or is set in INSN.
7692      It has also checked that we are optimizing, and thus some
7693      inaccuracies in the debugging information are acceptable.
7694      So we could just delete output_reload_insn.  But in some cases
7695      we can improve the debugging information without sacrificing
7696      optimization - maybe even improving the code: See if the pseudo
7697      reg has been completely replaced with reload regs.  If so, delete
7698      the store insn and forget we had a stack slot for the pseudo.  */
7699   if (rld[j].out != rld[j].in
7700       && REG_N_DEATHS (REGNO (reg)) == 1
7701       && REG_N_SETS (REGNO (reg)) == 1
7702       && REG_BASIC_BLOCK (REGNO (reg)) >= 0
7703       && find_regno_note (insn, REG_DEAD, REGNO (reg)))
7704     {
7705       rtx i2;
7706
7707       /* We know that it was used only between here and the beginning of
7708          the current basic block.  (We also know that the last use before
7709          INSN was the output reload we are thinking of deleting, but never
7710          mind that.)  Search that range; see if any ref remains.  */
7711       for (i2 = PREV_INSN (insn); i2; i2 = PREV_INSN (i2))
7712         {
7713           rtx set = single_set (i2);
7714
7715           /* Uses which just store in the pseudo don't count,
7716              since if they are the only uses, they are dead.  */
7717           if (set != 0 && SET_DEST (set) == reg)
7718             continue;
7719           if (LABEL_P (i2)
7720               || JUMP_P (i2))
7721             break;
7722           if ((NONJUMP_INSN_P (i2) || CALL_P (i2))
7723               && reg_mentioned_p (reg, PATTERN (i2)))
7724             {
7725               /* Some other ref remains; just delete the output reload we
7726                  know to be dead.  */
7727               delete_address_reloads (output_reload_insn, insn);
7728               delete_insn (output_reload_insn);
7729               return;
7730             }
7731         }
7732
7733       /* Delete the now-dead stores into this pseudo.  Note that this
7734          loop also takes care of deleting output_reload_insn.  */
7735       for (i2 = PREV_INSN (insn); i2; i2 = PREV_INSN (i2))
7736         {
7737           rtx set = single_set (i2);
7738
7739           if (set != 0 && SET_DEST (set) == reg)
7740             {
7741               delete_address_reloads (i2, insn);
7742               delete_insn (i2);
7743             }
7744           if (LABEL_P (i2)
7745               || JUMP_P (i2))
7746             break;
7747         }
7748
7749       /* For the debugging info, say the pseudo lives in this reload reg.  */
7750       reg_renumber[REGNO (reg)] = REGNO (rld[j].reg_rtx);
7751       alter_reg (REGNO (reg), -1);
7752     }
7753   else
7754     {
7755       delete_address_reloads (output_reload_insn, insn);
7756       delete_insn (output_reload_insn);
7757     }
7758 }
7759
7760 /* We are going to delete DEAD_INSN.  Recursively delete loads of
7761    reload registers used in DEAD_INSN that are not used till CURRENT_INSN.
7762    CURRENT_INSN is being reloaded, so we have to check its reloads too.  */
7763 static void
7764 delete_address_reloads (rtx dead_insn, rtx current_insn)
7765 {
7766   rtx set = single_set (dead_insn);
7767   rtx set2, dst, prev, next;
7768   if (set)
7769     {
7770       rtx dst = SET_DEST (set);
7771       if (MEM_P (dst))
7772         delete_address_reloads_1 (dead_insn, XEXP (dst, 0), current_insn);
7773     }
7774   /* If we deleted the store from a reloaded post_{in,de}c expression,
7775      we can delete the matching adds.  */
7776   prev = PREV_INSN (dead_insn);
7777   next = NEXT_INSN (dead_insn);
7778   if (! prev || ! next)
7779     return;
7780   set = single_set (next);
7781   set2 = single_set (prev);
7782   if (! set || ! set2
7783       || GET_CODE (SET_SRC (set)) != PLUS || GET_CODE (SET_SRC (set2)) != PLUS
7784       || GET_CODE (XEXP (SET_SRC (set), 1)) != CONST_INT
7785       || GET_CODE (XEXP (SET_SRC (set2), 1)) != CONST_INT)
7786     return;
7787   dst = SET_DEST (set);
7788   if (! rtx_equal_p (dst, SET_DEST (set2))
7789       || ! rtx_equal_p (dst, XEXP (SET_SRC (set), 0))
7790       || ! rtx_equal_p (dst, XEXP (SET_SRC (set2), 0))
7791       || (INTVAL (XEXP (SET_SRC (set), 1))
7792           != -INTVAL (XEXP (SET_SRC (set2), 1))))
7793     return;
7794   delete_related_insns (prev);
7795   delete_related_insns (next);
7796 }
7797
7798 /* Subfunction of delete_address_reloads: process registers found in X.  */
7799 static void
7800 delete_address_reloads_1 (rtx dead_insn, rtx x, rtx current_insn)
7801 {
7802   rtx prev, set, dst, i2;
7803   int i, j;
7804   enum rtx_code code = GET_CODE (x);
7805
7806   if (code != REG)
7807     {
7808       const char *fmt = GET_RTX_FORMAT (code);
7809       for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
7810         {
7811           if (fmt[i] == 'e')
7812             delete_address_reloads_1 (dead_insn, XEXP (x, i), current_insn);
7813           else if (fmt[i] == 'E')
7814             {
7815               for (j = XVECLEN (x, i) - 1; j >= 0; j--)
7816                 delete_address_reloads_1 (dead_insn, XVECEXP (x, i, j),
7817                                           current_insn);
7818             }
7819         }
7820       return;
7821     }
7822
7823   if (spill_reg_order[REGNO (x)] < 0)
7824     return;
7825
7826   /* Scan backwards for the insn that sets x.  This might be a way back due
7827      to inheritance.  */
7828   for (prev = PREV_INSN (dead_insn); prev; prev = PREV_INSN (prev))
7829     {
7830       code = GET_CODE (prev);
7831       if (code == CODE_LABEL || code == JUMP_INSN)
7832         return;
7833       if (!INSN_P (prev))
7834         continue;
7835       if (reg_set_p (x, PATTERN (prev)))
7836         break;
7837       if (reg_referenced_p (x, PATTERN (prev)))
7838         return;
7839     }
7840   if (! prev || INSN_UID (prev) < reload_first_uid)
7841     return;
7842   /* Check that PREV only sets the reload register.  */
7843   set = single_set (prev);
7844   if (! set)
7845     return;
7846   dst = SET_DEST (set);
7847   if (!REG_P (dst)
7848       || ! rtx_equal_p (dst, x))
7849     return;
7850   if (! reg_set_p (dst, PATTERN (dead_insn)))
7851     {
7852       /* Check if DST was used in a later insn -
7853          it might have been inherited.  */
7854       for (i2 = NEXT_INSN (dead_insn); i2; i2 = NEXT_INSN (i2))
7855         {
7856           if (LABEL_P (i2))
7857             break;
7858           if (! INSN_P (i2))
7859             continue;
7860           if (reg_referenced_p (dst, PATTERN (i2)))
7861             {
7862               /* If there is a reference to the register in the current insn,
7863                  it might be loaded in a non-inherited reload.  If no other
7864                  reload uses it, that means the register is set before
7865                  referenced.  */
7866               if (i2 == current_insn)
7867                 {
7868                   for (j = n_reloads - 1; j >= 0; j--)
7869                     if ((rld[j].reg_rtx == dst && reload_inherited[j])
7870                         || reload_override_in[j] == dst)
7871                       return;
7872                   for (j = n_reloads - 1; j >= 0; j--)
7873                     if (rld[j].in && rld[j].reg_rtx == dst)
7874                       break;
7875                   if (j >= 0)
7876                     break;
7877                 }
7878               return;
7879             }
7880           if (JUMP_P (i2))
7881             break;
7882           /* If DST is still live at CURRENT_INSN, check if it is used for
7883              any reload.  Note that even if CURRENT_INSN sets DST, we still
7884              have to check the reloads.  */
7885           if (i2 == current_insn)
7886             {
7887               for (j = n_reloads - 1; j >= 0; j--)
7888                 if ((rld[j].reg_rtx == dst && reload_inherited[j])
7889                     || reload_override_in[j] == dst)
7890                   return;
7891               /* ??? We can't finish the loop here, because dst might be
7892                  allocated to a pseudo in this block if no reload in this
7893                  block needs any of the classes containing DST - see
7894                  spill_hard_reg.  There is no easy way to tell this, so we
7895                  have to scan till the end of the basic block.  */
7896             }
7897           if (reg_set_p (dst, PATTERN (i2)))
7898             break;
7899         }
7900     }
7901   delete_address_reloads_1 (prev, SET_SRC (set), current_insn);
7902   reg_reloaded_contents[REGNO (dst)] = -1;
7903   delete_insn (prev);
7904 }
7905 \f
7906 /* Output reload-insns to reload VALUE into RELOADREG.
7907    VALUE is an autoincrement or autodecrement RTX whose operand
7908    is a register or memory location;
7909    so reloading involves incrementing that location.
7910    IN is either identical to VALUE, or some cheaper place to reload from.
7911
7912    INC_AMOUNT is the number to increment or decrement by (always positive).
7913    This cannot be deduced from VALUE.
7914
7915    Return the instruction that stores into RELOADREG.  */
7916
7917 static rtx
7918 inc_for_reload (rtx reloadreg, rtx in, rtx value, int inc_amount)
7919 {
7920   /* REG or MEM to be copied and incremented.  */
7921   rtx incloc = XEXP (value, 0);
7922   /* Nonzero if increment after copying.  */
7923   int post = (GET_CODE (value) == POST_DEC || GET_CODE (value) == POST_INC);
7924   rtx last;
7925   rtx inc;
7926   rtx add_insn;
7927   int code;
7928   rtx store;
7929   rtx real_in = in == value ? XEXP (in, 0) : in;
7930
7931   /* No hard register is equivalent to this register after
7932      inc/dec operation.  If REG_LAST_RELOAD_REG were nonzero,
7933      we could inc/dec that register as well (maybe even using it for
7934      the source), but I'm not sure it's worth worrying about.  */
7935   if (REG_P (incloc))
7936     reg_last_reload_reg[REGNO (incloc)] = 0;
7937
7938   if (GET_CODE (value) == PRE_DEC || GET_CODE (value) == POST_DEC)
7939     inc_amount = -inc_amount;
7940
7941   inc = GEN_INT (inc_amount);
7942
7943   /* If this is post-increment, first copy the location to the reload reg.  */
7944   if (post && real_in != reloadreg)
7945     emit_insn (gen_move_insn (reloadreg, real_in));
7946
7947   if (in == value)
7948     {
7949       /* See if we can directly increment INCLOC.  Use a method similar to
7950          that in gen_reload.  */
7951
7952       last = get_last_insn ();
7953       add_insn = emit_insn (gen_rtx_SET (VOIDmode, incloc,
7954                                          gen_rtx_PLUS (GET_MODE (incloc),
7955                                                        incloc, inc)));
7956
7957       code = recog_memoized (add_insn);
7958       if (code >= 0)
7959         {
7960           extract_insn (add_insn);
7961           if (constrain_operands (1))
7962             {
7963               /* If this is a pre-increment and we have incremented the value
7964                  where it lives, copy the incremented value to RELOADREG to
7965                  be used as an address.  */
7966
7967               if (! post)
7968                 emit_insn (gen_move_insn (reloadreg, incloc));
7969
7970               return add_insn;
7971             }
7972         }
7973       delete_insns_since (last);
7974     }
7975
7976   /* If couldn't do the increment directly, must increment in RELOADREG.
7977      The way we do this depends on whether this is pre- or post-increment.
7978      For pre-increment, copy INCLOC to the reload register, increment it
7979      there, then save back.  */
7980
7981   if (! post)
7982     {
7983       if (in != reloadreg)
7984         emit_insn (gen_move_insn (reloadreg, real_in));
7985       emit_insn (gen_add2_insn (reloadreg, inc));
7986       store = emit_insn (gen_move_insn (incloc, reloadreg));
7987     }
7988   else
7989     {
7990       /* Postincrement.
7991          Because this might be a jump insn or a compare, and because RELOADREG
7992          may not be available after the insn in an input reload, we must do
7993          the incrementation before the insn being reloaded for.
7994
7995          We have already copied IN to RELOADREG.  Increment the copy in
7996          RELOADREG, save that back, then decrement RELOADREG so it has
7997          the original value.  */
7998
7999       emit_insn (gen_add2_insn (reloadreg, inc));
8000       store = emit_insn (gen_move_insn (incloc, reloadreg));
8001       emit_insn (gen_add2_insn (reloadreg, GEN_INT (-inc_amount)));
8002     }
8003
8004   return store;
8005 }
8006 \f
8007 #ifdef AUTO_INC_DEC
8008 static void
8009 add_auto_inc_notes (rtx insn, rtx x)
8010 {
8011   enum rtx_code code = GET_CODE (x);
8012   const char *fmt;
8013   int i, j;
8014
8015   if (code == MEM && auto_inc_p (XEXP (x, 0)))
8016     {
8017       REG_NOTES (insn)
8018         = gen_rtx_EXPR_LIST (REG_INC, XEXP (XEXP (x, 0), 0), REG_NOTES (insn));
8019       return;
8020     }
8021
8022   /* Scan all the operand sub-expressions.  */
8023   fmt = GET_RTX_FORMAT (code);
8024   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
8025     {
8026       if (fmt[i] == 'e')
8027         add_auto_inc_notes (insn, XEXP (x, i));
8028       else if (fmt[i] == 'E')
8029         for (j = XVECLEN (x, i) - 1; j >= 0; j--)
8030           add_auto_inc_notes (insn, XVECEXP (x, i, j));
8031     }
8032 }
8033 #endif
8034
8035 /* Copy EH notes from an insn to its reloads.  */
8036 static void
8037 copy_eh_notes (rtx insn, rtx x)
8038 {
8039   rtx eh_note = find_reg_note (insn, REG_EH_REGION, NULL_RTX);
8040   if (eh_note)
8041     {
8042       for (; x != 0; x = NEXT_INSN (x))
8043         {
8044           if (may_trap_p (PATTERN (x)))
8045             REG_NOTES (x)
8046               = gen_rtx_EXPR_LIST (REG_EH_REGION, XEXP (eh_note, 0),
8047                                    REG_NOTES (x));
8048         }
8049     }
8050 }
8051
8052 /* This is used by reload pass, that does emit some instructions after
8053    abnormal calls moving basic block end, but in fact it wants to emit
8054    them on the edge.  Looks for abnormal call edges, find backward the
8055    proper call and fix the damage.
8056
8057    Similar handle instructions throwing exceptions internally.  */
8058 void
8059 fixup_abnormal_edges (void)
8060 {
8061   bool inserted = false;
8062   basic_block bb;
8063
8064   FOR_EACH_BB (bb)
8065     {
8066       edge e;
8067       edge_iterator ei;
8068
8069       /* Look for cases we are interested in - calls or instructions causing
8070          exceptions.  */
8071       FOR_EACH_EDGE (e, ei, bb->succs)
8072         {
8073           if (e->flags & EDGE_ABNORMAL_CALL)
8074             break;
8075           if ((e->flags & (EDGE_ABNORMAL | EDGE_EH))
8076               == (EDGE_ABNORMAL | EDGE_EH))
8077             break;
8078         }
8079       if (e && !CALL_P (BB_END (bb))
8080           && !can_throw_internal (BB_END (bb)))
8081         {
8082           rtx insn = BB_END (bb), stop = NEXT_INSN (BB_END (bb));
8083           rtx next;
8084           FOR_EACH_EDGE (e, ei, bb->succs)
8085             if (e->flags & EDGE_FALLTHRU)
8086               break;
8087           /* Get past the new insns generated. Allow notes, as the insns may
8088              be already deleted.  */
8089           while ((NONJUMP_INSN_P (insn) || NOTE_P (insn))
8090                  && !can_throw_internal (insn)
8091                  && insn != BB_HEAD (bb))
8092             insn = PREV_INSN (insn);
8093           gcc_assert (CALL_P (insn) || can_throw_internal (insn));
8094           BB_END (bb) = insn;
8095           inserted = true;
8096           insn = NEXT_INSN (insn);
8097           while (insn && insn != stop)
8098             {
8099               next = NEXT_INSN (insn);
8100               if (INSN_P (insn))
8101                 {
8102                   delete_insn (insn);
8103
8104                   /* Sometimes there's still the return value USE.
8105                      If it's placed after a trapping call (i.e. that
8106                      call is the last insn anyway), we have no fallthru
8107                      edge.  Simply delete this use and don't try to insert
8108                      on the non-existent edge.  */
8109                   if (GET_CODE (PATTERN (insn)) != USE)
8110                     {
8111                       /* We're not deleting it, we're moving it.  */
8112                       INSN_DELETED_P (insn) = 0;
8113                       PREV_INSN (insn) = NULL_RTX;
8114                       NEXT_INSN (insn) = NULL_RTX;
8115
8116                       insert_insn_on_edge (insn, e);
8117                     }
8118                 }
8119               insn = next;
8120             }
8121         }
8122     }
8123   /* We've possibly turned single trapping insn into multiple ones.  */
8124   if (flag_non_call_exceptions)
8125     {
8126       sbitmap blocks;
8127       blocks = sbitmap_alloc (last_basic_block);
8128       sbitmap_ones (blocks);
8129       find_many_sub_basic_blocks (blocks);
8130     }
8131   if (inserted)
8132     commit_edge_insertions ();
8133 }