OSDN Git Service

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