OSDN Git Service

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