OSDN Git Service

*** empty log message ***
[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 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
19
20
21 #include "config.h"
22 #include "rtl.h"
23 #include "obstack.h"
24 #include "insn-config.h"
25 #include "insn-flags.h"
26 #include "insn-codes.h"
27 #include "flags.h"
28 #include "expr.h"
29 #include "regs.h"
30 #include "hard-reg-set.h"
31 #include "reload.h"
32 #include "recog.h"
33 #include "basic-block.h"
34 #include "output.h"
35 #include <stdio.h>
36
37 /* This file contains the reload pass of the compiler, which is
38    run after register allocation has been done.  It checks that
39    each insn is valid (operands required to be in registers really
40    are in registers of the proper class) and fixes up invalid ones
41    by copying values temporarily into registers for the insns
42    that need them.
43
44    The results of register allocation are described by the vector
45    reg_renumber; the insns still contain pseudo regs, but reg_renumber
46    can be used to find which hard reg, if any, a pseudo reg is in.
47
48    The technique we always use is to free up a few hard regs that are
49    called ``reload regs'', and for each place where a pseudo reg
50    must be in a hard reg, copy it temporarily into one of the reload regs.
51
52    All the pseudos that were formerly allocated to the hard regs that
53    are now in use as reload regs must be ``spilled''.  This means
54    that they go to other hard regs, or to stack slots if no other
55    available hard regs can be found.  Spilling can invalidate more
56    insns, requiring additional need for reloads, so we must keep checking
57    until the process stabilizes.
58
59    For machines with different classes of registers, we must keep track
60    of the register class needed for each reload, and make sure that
61    we allocate enough reload registers of each class.
62
63    The file reload.c contains the code that checks one insn for
64    validity and reports the reloads that it needs.  This file
65    is in charge of scanning the entire rtl code, accumulating the
66    reload needs, spilling, assigning reload registers to use for
67    fixing up each insn, and generating the new insns to copy values
68    into the reload registers.  */
69 \f
70 /* During reload_as_needed, element N contains a REG rtx for the hard reg
71    into which pseudo reg N has been reloaded (perhaps for a previous insn). */
72 static rtx *reg_last_reload_reg;
73
74 /* Elt N nonzero if reg_last_reload_reg[N] has been set in this insn
75    for an output reload that stores into reg N.  */
76 static char *reg_has_output_reload;
77
78 /* Indicates which hard regs are reload-registers for an output reload
79    in the current insn.  */
80 static HARD_REG_SET reg_is_output_reload;
81
82 /* Element N is the constant value to which pseudo reg N is equivalent,
83    or zero if pseudo reg N is not equivalent to a constant.
84    find_reloads looks at this in order to replace pseudo reg N
85    with the constant it stands for.  */
86 rtx *reg_equiv_constant;
87
88 /* Element N is a memory location to which pseudo reg N is equivalent,
89    prior to any register elimination (such as frame pointer to stack
90    pointer).  Depending on whether or not it is a valid address, this value
91    is transferred to either reg_equiv_address or reg_equiv_mem.  */
92 static rtx *reg_equiv_memory_loc;
93
94 /* Element N is the address of stack slot to which pseudo reg N is equivalent.
95    This is used when the address is not valid as a memory address
96    (because its displacement is too big for the machine.)  */
97 rtx *reg_equiv_address;
98
99 /* Element N is the memory slot to which pseudo reg N is equivalent,
100    or zero if pseudo reg N is not equivalent to a memory slot.  */
101 rtx *reg_equiv_mem;
102
103 /* Widest width in which each pseudo reg is referred to (via subreg).  */
104 static int *reg_max_ref_width;
105
106 /* Element N is the insn that initialized reg N from its equivalent
107    constant or memory slot.  */
108 static rtx *reg_equiv_init;
109
110 /* During reload_as_needed, element N contains the last pseudo regno
111    reloaded into the Nth reload register.  This vector is in parallel
112    with spill_regs.  If that pseudo reg occupied more than one register,
113    reg_reloaded_contents points to that pseudo for each spill register in
114    use; all of these must remain set for an inheritance to occur.  */
115 static int reg_reloaded_contents[FIRST_PSEUDO_REGISTER];
116
117 /* During reload_as_needed, element N contains the insn for which
118    the Nth reload register was last used.  This vector is in parallel
119    with spill_regs, and its contents are significant only when
120    reg_reloaded_contents is significant.  */
121 static rtx reg_reloaded_insn[FIRST_PSEUDO_REGISTER];
122
123 /* Number of spill-regs so far; number of valid elements of spill_regs.  */
124 static int n_spills;
125
126 /* In parallel with spill_regs, contains REG rtx's for those regs.
127    Holds the last rtx used for any given reg, or 0 if it has never
128    been used for spilling yet.  This rtx is reused, provided it has
129    the proper mode.  */
130 static rtx spill_reg_rtx[FIRST_PSEUDO_REGISTER];
131
132 /* In parallel with spill_regs, contains nonzero for a spill reg
133    that was stored after the last time it was used.
134    The precise value is the insn generated to do the store.  */
135 static rtx spill_reg_store[FIRST_PSEUDO_REGISTER];
136
137 /* This table is the inverse mapping of spill_regs:
138    indexed by hard reg number,
139    it contains the position of that reg in spill_regs,
140    or -1 for something that is not in spill_regs.  */
141 static short spill_reg_order[FIRST_PSEUDO_REGISTER];
142
143 /* This reg set indicates registers that may not be used for retrying global
144    allocation.  The registers that may not be used include all spill registers
145    and the frame pointer (if we are using one).  */
146 HARD_REG_SET forbidden_regs;
147
148 /* This reg set indicates registers that are not good for spill registers.
149    They will not be used to complete groups of spill registers.  This includes
150    all fixed registers, registers that may be eliminated, and registers
151    explicitly used in the rtl.
152
153    (spill_reg_order prevents these registers from being used to start a
154    group.)  */
155 static HARD_REG_SET bad_spill_regs;
156
157 /* Describes order of use of registers for reloading
158    of spilled pseudo-registers.  `spills' is the number of
159    elements that are actually valid; new ones are added at the end.  */
160 static short spill_regs[FIRST_PSEUDO_REGISTER];
161
162 /* Describes order of preference for putting regs into spill_regs.
163    Contains the numbers of all the hard regs, in order most preferred first.
164    This order is different for each function.
165    It is set up by order_regs_for_reload.
166    Empty elements at the end contain -1.  */
167 static short potential_reload_regs[FIRST_PSEUDO_REGISTER];
168
169 /* 1 for a hard register that appears explicitly in the rtl
170    (for example, function value registers, special registers
171    used by insns, structure value pointer registers).  */
172 static char regs_explicitly_used[FIRST_PSEUDO_REGISTER];
173
174 /* Indicates if a register was counted against the need for
175    groups.  0 means it can count against max_nongroup instead.  */
176 static HARD_REG_SET counted_for_groups;
177
178 /* Indicates if a register was counted against the need for
179    non-groups.  0 means it can become part of a new group.
180    During choose_reload_regs, 1 here means don't use this reg
181    as part of a group, even if it seems to be otherwise ok.  */
182 static HARD_REG_SET counted_for_nongroups;
183
184 /* Nonzero if indirect addressing is supported on the machine; this means
185    that spilling (REG n) does not require reloading it into a register in
186    order to do (MEM (REG n)) or (MEM (PLUS (REG n) (CONST_INT c))).  The
187    value indicates the level of indirect addressing supported, e.g., two
188    means that (MEM (MEM (REG n))) is also valid if (REG n) does not get
189    a hard register.  */
190
191 static char spill_indirect_levels;
192
193 /* Nonzero if indirect addressing is supported when the innermost MEM is
194    of the form (MEM (SYMBOL_REF sym)).  It is assumed that the level to
195    which these are valid is the same as spill_indirect_levels, above.   */
196
197 char indirect_symref_ok;
198
199 /* Nonzero if an address (plus (reg frame_pointer) (reg ...)) is valid.  */
200
201 char double_reg_address_ok;
202
203 /* Record the stack slot for each spilled hard register.  */
204
205 static rtx spill_stack_slot[FIRST_PSEUDO_REGISTER];
206
207 /* Width allocated so far for that stack slot.  */
208
209 static int spill_stack_slot_width[FIRST_PSEUDO_REGISTER];
210
211 /* Indexed by register class and basic block number, nonzero if there is
212    any need for a spill register of that class in that basic block.
213    The pointer is 0 if we did stupid allocation and don't know
214    the structure of basic blocks.  */
215
216 char *basic_block_needs[N_REG_CLASSES];
217
218 /* First uid used by insns created by reload in this function.
219    Used in find_equiv_reg.  */
220 int reload_first_uid;
221
222 /* Flag set by local-alloc or global-alloc if anything is live in
223    a call-clobbered reg across calls.  */
224
225 int caller_save_needed;
226
227 /* Set to 1 while reload_as_needed is operating.
228    Required by some machines to handle any generated moves differently.  */
229
230 int reload_in_progress = 0;
231
232 /* These arrays record the insn_code of insns that may be needed to
233    perform input and output reloads of special objects.  They provide a
234    place to pass a scratch register.  */
235
236 enum insn_code reload_in_optab[NUM_MACHINE_MODES];
237 enum insn_code reload_out_optab[NUM_MACHINE_MODES];
238
239 /* This obstack is used for allocation of rtl during register elmination.
240    The allocated storage can be freed once find_reloads has processed the
241    insn.  */
242
243 struct obstack reload_obstack;
244 char *reload_firstobj;
245
246 #define obstack_chunk_alloc xmalloc
247 #define obstack_chunk_free free
248
249 extern int xmalloc ();
250 extern void free ();
251
252 /* List of labels that must never be deleted.  */
253 extern rtx forced_labels;
254 \f
255 /* This structure is used to record information about register eliminations.
256    Each array entry describes one possible way of eliminating a register
257    in favor of another.   If there is more than one way of eliminating a
258    particular register, the most preferred should be specified first.  */
259
260 static struct elim_table
261 {
262   int from;                     /* Register number to be eliminated. */
263   int to;                       /* Register number used as replacement. */
264   int initial_offset;           /* Initial difference between values. */
265   int can_eliminate;            /* Non-zero if this elimination can be done. */
266   int can_eliminate_previous;   /* Value of CAN_ELIMINATE in previous scan over
267                                    insns made by reload. */
268   int offset;                   /* Current offset between the two regs. */
269   int max_offset;               /* Maximum offset between the two regs. */
270   int previous_offset;          /* Offset at end of previous insn. */
271   int ref_outside_mem;          /* "to" has been referenced outside a MEM. */
272   rtx from_rtx;                 /* REG rtx for the register to be eliminated.
273                                    We cannot simply compare the number since
274                                    we might then spuriously replace a hard
275                                    register corresponding to a pseudo
276                                    assigned to the reg to be eliminated. */
277   rtx to_rtx;                   /* REG rtx for the replacement. */
278 } reg_eliminate[] =
279
280 /* If a set of eliminable registers was specified, define the table from it.
281    Otherwise, default to the normal case of the frame pointer being
282    replaced by the stack pointer.  */
283
284 #ifdef ELIMINABLE_REGS
285   ELIMINABLE_REGS;
286 #else
287   {{ FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM}};
288 #endif
289
290 #define NUM_ELIMINABLE_REGS (sizeof reg_eliminate / sizeof reg_eliminate[0])
291
292 /* Record the number of pending eliminations that have an offset not equal
293    to their initial offset.  If non-zero, we use a new copy of each
294    replacement result in any insns encountered.  */
295 static int num_not_at_initial_offset;
296
297 /* Count the number of registers that we may be able to eliminate.  */
298 static int num_eliminable;
299
300 /* For each label, we record the offset of each elimination.  If we reach
301    a label by more than one path and an offset differs, we cannot do the
302    elimination.  This information is indexed by the number of the label.
303    The first table is an array of flags that records whether we have yet
304    encountered a label and the second table is an array of arrays, one
305    entry in the latter array for each elimination.  */
306
307 static char *offsets_known_at;
308 static int (*offsets_at)[NUM_ELIMINABLE_REGS];
309
310 /* Number of labels in the current function.  */
311
312 static int num_labels;
313 \f
314 void mark_home_live ();
315 static void count_possible_groups ();
316 static int possible_group_p ();
317 static void scan_paradoxical_subregs ();
318 static void reload_as_needed ();
319 static int modes_equiv_for_class_p ();
320 static void alter_reg ();
321 static void delete_dead_insn ();
322 static int new_spill_reg();
323 static void set_label_offsets ();
324 static int eliminate_regs_in_insn ();
325 static void mark_not_eliminable ();
326 static int spill_hard_reg ();
327 static void choose_reload_regs ();
328 static void emit_reload_insns ();
329 static void delete_output_reload ();
330 static void forget_old_reloads_1 ();
331 static void order_regs_for_reload ();
332 static rtx inc_for_reload ();
333 static int constraint_accepts_reg_p ();
334 static int count_occurrences ();
335
336 extern void remove_death ();
337 extern rtx adj_offsettable_operand ();
338 extern rtx form_sum ();
339 \f
340 void
341 init_reload ()
342 {
343   register int i;
344
345   /* Often (MEM (REG n)) is still valid even if (REG n) is put on the stack.
346      Set spill_indirect_levels to the number of levels such addressing is
347      permitted, zero if it is not permitted at all.  */
348
349   register rtx tem
350     = gen_rtx (MEM, Pmode,
351                gen_rtx (PLUS, Pmode,
352                         gen_rtx (REG, Pmode, LAST_VIRTUAL_REGISTER + 1),
353                         gen_rtx (CONST_INT, VOIDmode, 4)));
354   spill_indirect_levels = 0;
355
356   while (memory_address_p (QImode, tem))
357     {
358       spill_indirect_levels++;
359       tem = gen_rtx (MEM, Pmode, tem);
360     }
361
362   /* See if indirect addressing is valid for (MEM (SYMBOL_REF ...)).  */
363
364   tem = gen_rtx (MEM, Pmode, gen_rtx (SYMBOL_REF, Pmode, "foo"));
365   indirect_symref_ok = memory_address_p (QImode, tem);
366
367   /* See if reg+reg is a valid (and offsettable) address.  */
368
369   tem = gen_rtx (PLUS, Pmode,
370                  gen_rtx (REG, Pmode, FRAME_POINTER_REGNUM),
371                  gen_rtx (REG, Pmode, FRAME_POINTER_REGNUM));
372   /* This way, we make sure that reg+reg is an offsettable address.  */
373   tem = plus_constant (tem, 4);
374
375   double_reg_address_ok = memory_address_p (QImode, tem);
376
377   /* Initialize obstack for our rtl allocation. */
378   gcc_obstack_init (&reload_obstack);
379   reload_firstobj = (char *) obstack_alloc (&reload_obstack, 0);
380
381 #ifdef HAVE_SECONDARY_RELOADS
382
383   /* Initialize the optabs for doing special input and output reloads.  */
384
385   for (i = 0; i < NUM_MACHINE_MODES; i++)
386     reload_in_optab[i] = reload_out_optab[i] = CODE_FOR_nothing;
387
388 #ifdef HAVE_reload_inqi
389   if (HAVE_reload_inqi)
390     reload_in_optab[(int) QImode] = CODE_FOR_reload_inqi;
391 #endif
392 #ifdef HAVE_reload_inhi
393   if (HAVE_reload_inhi)
394     reload_in_optab[(int) HImode] = CODE_FOR_reload_inhi;
395 #endif
396 #ifdef HAVE_reload_insi
397   if (HAVE_reload_insi)
398     reload_in_optab[(int) SImode] = CODE_FOR_reload_insi;
399 #endif
400 #ifdef HAVE_reload_indi
401   if (HAVE_reload_indi)
402     reload_in_optab[(int) DImode] = CODE_FOR_reload_indi;
403 #endif
404 #ifdef HAVE_reload_inti
405   if (HAVE_reload_inti)
406     reload_in_optab[(int) TImode] = CODE_FOR_reload_inti;
407 #endif
408 #ifdef HAVE_reload_insf
409   if (HAVE_reload_insf)
410     reload_in_optab[(int) SFmode] = CODE_FOR_reload_insf;
411 #endif
412 #ifdef HAVE_reload_indf
413   if (HAVE_reload_indf)
414     reload_in_optab[(int) DFmode] = CODE_FOR_reload_indf;
415 #endif
416 #ifdef HAVE_reload_inxf
417   if (HAVE_reload_inxf)
418     reload_in_optab[(int) XFmode] = CODE_FOR_reload_inxf;
419 #endif
420 #ifdef HAVE_reload_intf
421   if (HAVE_reload_intf)
422     reload_in_optab[(int) TFmode] = CODE_FOR_reload_intf;
423 #endif
424
425 #ifdef HAVE_reload_outqi
426   if (HAVE_reload_outqi)
427     reload_out_optab[(int) QImode] = CODE_FOR_reload_outqi;
428 #endif
429 #ifdef HAVE_reload_outhi
430   if (HAVE_reload_outhi)
431     reload_out_optab[(int) HImode] = CODE_FOR_reload_outhi;
432 #endif
433 #ifdef HAVE_reload_outsi
434   if (HAVE_reload_outsi)
435     reload_out_optab[(int) SImode] = CODE_FOR_reload_outsi;
436 #endif
437 #ifdef HAVE_reload_outdi
438   if (HAVE_reload_outdi)
439     reload_out_optab[(int) DImode] = CODE_FOR_reload_outdi;
440 #endif
441 #ifdef HAVE_reload_outti
442   if (HAVE_reload_outti)
443     reload_out_optab[(int) TImode] = CODE_FOR_reload_outti;
444 #endif
445 #ifdef HAVE_reload_outsf
446   if (HAVE_reload_outsf)
447     reload_out_optab[(int) SFmode] = CODE_FOR_reload_outsf;
448 #endif
449 #ifdef HAVE_reload_outdf
450   if (HAVE_reload_outdf)
451     reload_out_optab[(int) DFmode] = CODE_FOR_reload_outdf;
452 #endif
453 #ifdef HAVE_reload_outxf
454   if (HAVE_reload_outxf)
455     reload_out_optab[(int) XFmode] = CODE_FOR_reload_outxf;
456 #endif
457 #ifdef HAVE_reload_outtf
458   if (HAVE_reload_outtf)
459     reload_out_optab[(int) TFmode] = CODE_FOR_reload_outtf;
460 #endif
461
462 #endif /* HAVE_SECONDARY_RELOADS */
463
464 }
465
466 /* Main entry point for the reload pass, and only entry point
467    in this file.
468
469    FIRST is the first insn of the function being compiled.
470
471    GLOBAL nonzero means we were called from global_alloc
472    and should attempt to reallocate any pseudoregs that we
473    displace from hard regs we will use for reloads.
474    If GLOBAL is zero, we do not have enough information to do that,
475    so any pseudo reg that is spilled must go to the stack.
476
477    DUMPFILE is the global-reg debugging dump file stream, or 0.
478    If it is nonzero, messages are written to it to describe
479    which registers are seized as reload regs, which pseudo regs
480    are spilled from them, and where the pseudo regs are reallocated to.  */
481
482 void
483 reload (first, global, dumpfile)
484      rtx first;
485      int global;
486      FILE *dumpfile;
487 {
488   register int class;
489   register int i;
490   register rtx insn;
491   register struct elim_table *ep;
492
493   int something_changed;
494   int something_needs_reloads;
495   int something_needs_elimination;
496   int new_basic_block_needs;
497   enum reg_class caller_save_spill_class = NO_REGS;
498   int caller_save_group_size = 1;
499
500   /* The basic block number currently being processed for INSN.  */
501   int this_block;
502
503   /* Make sure even insns with volatile mem refs are recognizable.  */
504   init_recog ();
505
506   /* Enable find_equiv_reg to distinguish insns made by reload.  */
507   reload_first_uid = get_max_uid ();
508
509   for (i = 0; i < N_REG_CLASSES; i++)
510     basic_block_needs[i] = 0;
511
512   /* Remember which hard regs appear explicitly
513      before we merge into `regs_ever_live' the ones in which
514      pseudo regs have been allocated.  */
515   bcopy (regs_ever_live, regs_explicitly_used, sizeof regs_ever_live);
516
517   /* We don't have a stack slot for any spill reg yet.  */
518   bzero (spill_stack_slot, sizeof spill_stack_slot);
519   bzero (spill_stack_slot_width, sizeof spill_stack_slot_width);
520
521   /* Initialize the save area information for caller-save, in case some
522      are needed.  */
523   init_save_areas ();
524
525   /* Compute which hard registers are now in use
526      as homes for pseudo registers.
527      This is done here rather than (eg) in global_alloc
528      because this point is reached even if not optimizing.  */
529
530   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
531     mark_home_live (i);
532
533   /* Make sure that the last insn in the chain
534      is not something that needs reloading.  */
535   emit_note (0, NOTE_INSN_DELETED);
536
537   /* Find all the pseudo registers that didn't get hard regs
538      but do have known equivalent constants or memory slots.
539      These include parameters (known equivalent to parameter slots)
540      and cse'd or loop-moved constant memory addresses.
541
542      Record constant equivalents in reg_equiv_constant
543      so they will be substituted by find_reloads.
544      Record memory equivalents in reg_mem_equiv so they can
545      be substituted eventually by altering the REG-rtx's.  */
546
547   reg_equiv_constant = (rtx *) alloca (max_regno * sizeof (rtx));
548   bzero (reg_equiv_constant, max_regno * sizeof (rtx));
549   reg_equiv_memory_loc = (rtx *) alloca (max_regno * sizeof (rtx));
550   bzero (reg_equiv_memory_loc, max_regno * sizeof (rtx));
551   reg_equiv_mem = (rtx *) alloca (max_regno * sizeof (rtx));
552   bzero (reg_equiv_mem, max_regno * sizeof (rtx));
553   reg_equiv_init = (rtx *) alloca (max_regno * sizeof (rtx));
554   bzero (reg_equiv_init, max_regno * sizeof (rtx));
555   reg_equiv_address = (rtx *) alloca (max_regno * sizeof (rtx));
556   bzero (reg_equiv_address, max_regno * sizeof (rtx));
557   reg_max_ref_width = (int *) alloca (max_regno * sizeof (int));
558   bzero (reg_max_ref_width, max_regno * sizeof (int));
559
560   /* Look for REG_EQUIV notes; record what each pseudo is equivalent to.
561      Also find all paradoxical subregs
562      and find largest such for each pseudo.  */
563
564   for (insn = first; insn; insn = NEXT_INSN (insn))
565     {
566       rtx set = single_set (insn);
567
568       if (set != 0 && GET_CODE (SET_DEST (set)) == REG)
569         {
570           rtx note = find_reg_note (insn, REG_EQUIV, 0);
571           if (note
572 #ifdef LEGITIMATE_PIC_OPERAND_P
573               && (! CONSTANT_P (XEXP (note, 0)) || ! flag_pic
574                   || LEGITIMATE_PIC_OPERAND_P (XEXP (note, 0)))
575 #endif
576               )
577             {
578               rtx x = XEXP (note, 0);
579               i = REGNO (SET_DEST (set));
580               if (i > LAST_VIRTUAL_REGISTER)
581                 {
582                   if (GET_CODE (x) == MEM)
583                     reg_equiv_memory_loc[i] = x;
584                   else if (CONSTANT_P (x))
585                     {
586                       if (LEGITIMATE_CONSTANT_P (x))
587                         reg_equiv_constant[i] = x;
588                       else
589                         reg_equiv_memory_loc[i]
590                           = force_const_mem (GET_MODE (SET_DEST (set)), x);
591                     }
592                   else
593                     continue;
594
595                   /* If this register is being made equivalent to a MEM
596                      and the MEM is not SET_SRC, the equivalencing insn
597                      is one with the MEM as a SET_DEST and it occurs later.
598                      So don't mark this insn now.  */
599                   if (GET_CODE (x) != MEM
600                       || rtx_equal_p (SET_SRC (set), x))
601                     reg_equiv_init[i] = insn;
602                 }
603             }
604         }
605
606       /* If this insn is setting a MEM from a register equivalent to it,
607          this is the equivalencing insn.  */
608       else if (set && GET_CODE (SET_DEST (set)) == MEM
609                && GET_CODE (SET_SRC (set)) == REG
610                && reg_equiv_memory_loc[REGNO (SET_SRC (set))]
611                && rtx_equal_p (SET_DEST (set),
612                                reg_equiv_memory_loc[REGNO (SET_SRC (set))]))
613         reg_equiv_init[REGNO (SET_SRC (set))] = insn;
614
615       if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
616         scan_paradoxical_subregs (PATTERN (insn));
617     }
618
619   /* Does this function require a frame pointer?  */
620
621   frame_pointer_needed = (! flag_omit_frame_pointer
622 #ifdef EXIT_IGNORE_STACK
623                           /* ?? If EXIT_IGNORE_STACK is set, we will not save
624                              and restore sp for alloca.  So we can't eliminate
625                              the frame pointer in that case.  At some point,
626                              we should improve this by emitting the
627                              sp-adjusting insns for this case.  */
628                           || (current_function_calls_alloca
629                               && EXIT_IGNORE_STACK)
630 #endif
631                           || FRAME_POINTER_REQUIRED);
632
633   num_eliminable = 0;
634
635   /* Initialize the table of registers to eliminate.  The way we do this
636      depends on how the eliminable registers were defined.  */
637 #ifdef ELIMINABLE_REGS
638   for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
639     {
640       ep->can_eliminate = ep->can_eliminate_previous
641         = (CAN_ELIMINATE (ep->from, ep->to)
642            && (ep->from != FRAME_POINTER_REGNUM || ! frame_pointer_needed));
643     }
644 #else
645   reg_eliminate[0].can_eliminate = reg_eliminate[0].can_eliminate_previous
646     = ! frame_pointer_needed;
647 #endif
648
649   /* Count the number of eliminable registers and build the FROM and TO
650      REG rtx's.  Note that code in gen_rtx will cause, e.g.,
651      gen_rtx (REG, Pmode, STACK_POINTER_REGNUM) to equal stack_pointer_rtx.
652      We depend on this.  */
653   for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
654     {
655       num_eliminable += ep->can_eliminate;
656       ep->from_rtx = gen_rtx (REG, Pmode, ep->from);
657       ep->to_rtx = gen_rtx (REG, Pmode, ep->to);
658     }
659
660   num_labels = max_label_num () - get_first_label_num ();
661
662   /* Allocate the tables used to store offset information at labels.  */
663   offsets_known_at = (char *) alloca (num_labels);
664   offsets_at
665     = (int (*)[NUM_ELIMINABLE_REGS])
666       alloca (num_labels * NUM_ELIMINABLE_REGS * sizeof (int));
667
668   offsets_known_at -= get_first_label_num ();
669   offsets_at -= get_first_label_num ();
670
671   /* Alter each pseudo-reg rtx to contain its hard reg number.
672      Assign stack slots to the pseudos that lack hard regs or equivalents.
673      Do not touch virtual registers.  */
674
675   for (i = LAST_VIRTUAL_REGISTER + 1; i < max_regno; i++)
676     alter_reg (i, -1);
677
678   /* Round size of stack frame to BIGGEST_ALIGNMENT.  This must be done here
679      because the stack size may be a part of the offset computation for
680      register elimination.   */
681   assign_stack_local (BLKmode, 0, 0);
682
683   /* If we have some registers we think can be eliminated, scan all insns to
684      see if there is an insn that sets one of these registers to something
685      other than itself plus a constant.  If so, the register cannot be
686      eliminated.  Doing this scan here eliminates an extra pass through the
687      main reload loop in the most common case where register elimination
688      cannot be done.  */
689   for (insn = first; insn && num_eliminable; insn = NEXT_INSN (insn))
690     if (GET_CODE (insn) == INSN || GET_CODE (insn) == JUMP_INSN
691         || GET_CODE (insn) == CALL_INSN)
692       note_stores (PATTERN (insn), mark_not_eliminable);
693
694 #ifndef REGISTER_CONSTRAINTS
695   /* If all the pseudo regs have hard regs,
696      except for those that are never referenced,
697      we know that no reloads are needed.  */
698   /* But that is not true if there are register constraints, since
699      in that case some pseudos might be in the wrong kind of hard reg.  */
700
701   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
702     if (reg_renumber[i] == -1 && reg_n_refs[i] != 0)
703       break;
704
705   if (i == max_regno && num_eliminable == 0 && ! caller_save_needed)
706     return;
707 #endif
708
709   /* Compute the order of preference for hard registers to spill.
710      Store them by decreasing preference in potential_reload_regs.  */
711
712   order_regs_for_reload ();
713
714   /* So far, no hard regs have been spilled.  */
715   n_spills = 0;
716   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
717     spill_reg_order[i] = -1;
718
719   /* On most machines, we can't use any register explicitly used in the
720      rtl as a spill register.  But on some, we have to.  Those will have
721      taken care to keep the life of hard regs as short as possible.  */
722
723 #ifdef SMALL_REGISTER_CLASSES
724   CLEAR_HARD_REG_SET (forbidden_regs);
725 #else
726   COPY_HARD_REG_SET (forbidden_regs, bad_spill_regs);
727 #endif
728
729   /* Spill any hard regs that we know we can't eliminate.  */
730   for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
731     if (! ep->can_eliminate)
732       {
733         spill_hard_reg (ep->from, global, dumpfile, 1);
734         regs_ever_live[ep->from] = 1;
735       }
736
737   if (global)
738     for (i = 0; i < N_REG_CLASSES; i++)
739       {
740         basic_block_needs[i] = (char *)alloca (n_basic_blocks);
741         bzero (basic_block_needs[i], n_basic_blocks);
742       }
743
744   /* This loop scans the entire function each go-round
745      and repeats until one repetition spills no additional hard regs.  */
746
747   /* This flag is set when a psuedo reg is spilled,
748      to require another pass.  Note that getting an additional reload
749      reg does not necessarily imply any pseudo reg was spilled;
750      sometimes we find a reload reg that no pseudo reg was allocated in.  */
751   something_changed = 1;
752   /* This flag is set if there are any insns that require reloading.  */
753   something_needs_reloads = 0;
754   /* This flag is set if there are any insns that require register
755      eliminations.  */
756   something_needs_elimination = 0;
757   while (something_changed)
758     {
759       rtx after_call = 0;
760
761       /* For each class, number of reload regs needed in that class.
762          This is the maximum over all insns of the needs in that class
763          of the individual insn.  */
764       int max_needs[N_REG_CLASSES];
765       /* For each class, size of group of consecutive regs
766          that is needed for the reloads of this class.  */
767       int group_size[N_REG_CLASSES];
768       /* For each class, max number of consecutive groups needed.
769          (Each group contains group_size[CLASS] consecutive registers.)  */
770       int max_groups[N_REG_CLASSES];
771       /* For each class, max number needed of regs that don't belong
772          to any of the groups.  */
773       int max_nongroups[N_REG_CLASSES];
774       /* For each class, the machine mode which requires consecutive
775          groups of regs of that class.
776          If two different modes ever require groups of one class,
777          they must be the same size and equally restrictive for that class,
778          otherwise we can't handle the complexity.  */
779       enum machine_mode group_mode[N_REG_CLASSES];
780       rtx x;
781
782       something_changed = 0;
783       bzero (max_needs, sizeof max_needs);
784       bzero (max_groups, sizeof max_groups);
785       bzero (max_nongroups, sizeof max_nongroups);
786       bzero (group_size, sizeof group_size);
787       for (i = 0; i < N_REG_CLASSES; i++)
788         group_mode[i] = VOIDmode;
789
790       /* Keep track of which basic blocks are needing the reloads.  */
791       this_block = 0;
792
793       /* Remember whether any element of basic_block_needs
794          changes from 0 to 1 in this pass.  */
795       new_basic_block_needs = 0;
796
797       /* Reset all offsets on eliminable registers to their initial values.  */
798 #ifdef ELIMINABLE_REGS
799       for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
800         {
801           INITIAL_ELIMINATION_OFFSET (ep->from, ep->to, ep->initial_offset);
802           ep->previous_offset = ep->offset
803             = ep->max_offset = ep->initial_offset;
804         }
805 #else
806 #ifdef INITIAL_FRAME_POINTER_OFFSET
807       INITIAL_FRAME_POINTER_OFFSET (reg_eliminate[0].initial_offset);
808 #else
809       if (!FRAME_POINTER_REQUIRED)
810         abort ();
811       reg_eliminate[0].initial_offset = 0;
812 #endif
813       reg_eliminate[0].previous_offset = reg_eliminate[0].max_offset
814         = reg_eliminate[0].offset = reg_eliminate[0].initial_offset;
815 #endif
816
817       num_not_at_initial_offset = 0;
818
819       bzero (&offsets_known_at[get_first_label_num ()], num_labels);
820
821       /* Set a known offset for each forced label to be at the initial offset
822          of each elimination.  We do this because we assume that all
823          computed jumps occur from a location where each elimination is
824          at its initial offset.  */
825
826       for (x = forced_labels; x; x = XEXP (x, 1))
827         if (XEXP (x, 0))
828           set_label_offsets (XEXP (x, 0), 0, 1);
829
830       /* For each pseudo register that has an equivalent location defined,
831          try to eliminate any eliminable registers (such as the frame pointer)
832          assuming initial offsets for the replacement register, which
833          is the normal case.
834
835          If the resulting location is directly addressable, substitute
836          the MEM we just got directly for the old REG.
837
838          If it is not addressable but is a constant or the sum of a hard reg
839          and constant, it is probably not addressable because the constant is
840          out of range, in that case record the address; we will generate
841          hairy code to compute the address in a register each time it is
842          needed.
843
844          If the location is not addressable, but does not have one of the
845          above forms, assign a stack slot.  We have to do this to avoid the
846          potential of producing lots of reloads if, e.g., a location involves
847          a pseudo that didn't get a hard register and has an equivalent memory
848          location that also involves a pseudo that didn't get a hard register.
849
850          Perhaps at some point we will improve reload_when_needed handling
851          so this problem goes away.  But that's very hairy.  */
852
853       for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
854         if (reg_renumber[i] < 0 && reg_equiv_memory_loc[i])
855           {
856             rtx x = eliminate_regs (reg_equiv_memory_loc[i], 0, 0);
857
858             if (strict_memory_address_p (GET_MODE (regno_reg_rtx[i]),
859                                          XEXP (x, 0)))
860               reg_equiv_mem[i] = x, reg_equiv_address[i] = 0;
861             else if (CONSTANT_P (XEXP (x, 0))
862                      || (GET_CODE (XEXP (x, 0)) == PLUS
863                          && GET_CODE (XEXP (XEXP (x, 0), 0)) == REG
864                          && (REGNO (XEXP (XEXP (x, 0), 0))
865                              < FIRST_PSEUDO_REGISTER)
866                          && CONSTANT_P (XEXP (XEXP (x, 0), 1))))
867               reg_equiv_address[i] = XEXP (x, 0), reg_equiv_mem[i] = 0;
868             else
869               {
870                 /* Make a new stack slot.  Then indicate that something
871                    changed so we go back and recompute offsets for
872                    eliminable registers because the allocation of memory
873                    below might change some offset.  reg_equiv_{mem,address}
874                    will be set up for this pseudo on the next pass around
875                    the loop.  */
876                 reg_equiv_memory_loc[i] = 0;
877                 reg_equiv_init[i] = 0;
878                 alter_reg (i, -1);
879                 something_changed = 1;
880               }
881           }
882
883       /* If we allocated another psuedo to the stack, redo elimination
884          bookkeeping.  */
885       if (something_changed)
886         continue;
887
888       /* If caller-saves needs a group, initialize the group to include
889          the size and mode required for caller-saves.  */
890
891       if (caller_save_group_size > 1)
892         {
893           group_mode[(int) caller_save_spill_class] = Pmode;
894           group_size[(int) caller_save_spill_class] = caller_save_group_size;
895         }
896
897       /* Compute the most additional registers needed by any instruction.
898          Collect information separately for each class of regs.  */
899
900       for (insn = first; insn; insn = NEXT_INSN (insn))
901         {
902           if (global && this_block + 1 < n_basic_blocks
903               && insn == basic_block_head[this_block+1])
904             ++this_block;
905
906           /* If this is a label, a JUMP_INSN, or has REG_NOTES (which
907              might include REG_LABEL), we need to see what effects this
908              has on the known offsets at labels.  */
909
910           if (GET_CODE (insn) == CODE_LABEL || GET_CODE (insn) == JUMP_INSN
911               || (GET_RTX_CLASS (GET_CODE (insn)) == 'i'
912                   && REG_NOTES (insn) != 0))
913             set_label_offsets (insn, insn, 0);
914
915           if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
916             {
917               /* Nonzero means don't use a reload reg that overlaps
918                  the place where a function value can be returned.  */
919               rtx avoid_return_reg = 0;
920
921               rtx old_body = PATTERN (insn);
922               int old_code = INSN_CODE (insn);
923               rtx old_notes = REG_NOTES (insn);
924               int did_elimination = 0;
925
926               /* Initially, count RELOAD_OTHER reloads.
927                  Later, merge in the other kinds.  */
928               int insn_needs[N_REG_CLASSES];
929               int insn_groups[N_REG_CLASSES];
930               int insn_total_groups = 0;
931
932               /* Count RELOAD_FOR_INPUT_RELOAD_ADDRESS reloads.  */
933               int insn_needs_for_inputs[N_REG_CLASSES];
934               int insn_groups_for_inputs[N_REG_CLASSES];
935               int insn_total_groups_for_inputs = 0;
936
937               /* Count RELOAD_FOR_OUTPUT_RELOAD_ADDRESS reloads.  */
938               int insn_needs_for_outputs[N_REG_CLASSES];
939               int insn_groups_for_outputs[N_REG_CLASSES];
940               int insn_total_groups_for_outputs = 0;
941
942               /* Count RELOAD_FOR_OPERAND_ADDRESS reloads.  */
943               int insn_needs_for_operands[N_REG_CLASSES];
944               int insn_groups_for_operands[N_REG_CLASSES];
945               int insn_total_groups_for_operands = 0;
946
947 #if 0  /* This wouldn't work nowadays, since optimize_bit_field
948           looks for non-strict memory addresses.  */
949               /* Optimization: a bit-field instruction whose field
950                  happens to be a byte or halfword in memory
951                  can be changed to a move instruction.  */
952
953               if (GET_CODE (PATTERN (insn)) == SET)
954                 {
955                   rtx dest = SET_DEST (PATTERN (insn));
956                   rtx src = SET_SRC (PATTERN (insn));
957
958                   if (GET_CODE (dest) == ZERO_EXTRACT
959                       || GET_CODE (dest) == SIGN_EXTRACT)
960                     optimize_bit_field (PATTERN (insn), insn, reg_equiv_mem);
961                   if (GET_CODE (src) == ZERO_EXTRACT
962                       || GET_CODE (src) == SIGN_EXTRACT)
963                     optimize_bit_field (PATTERN (insn), insn, reg_equiv_mem);
964                 }
965 #endif
966
967               /* If needed, eliminate any eliminable registers.  */
968               if (num_eliminable)
969                 did_elimination = eliminate_regs_in_insn (insn, 0);
970
971 #ifdef SMALL_REGISTER_CLASSES
972               /* Set avoid_return_reg if this is an insn
973                  that might use the value of a function call.  */
974               if (GET_CODE (insn) == CALL_INSN)
975                 {
976                   if (GET_CODE (PATTERN (insn)) == SET)
977                     after_call = SET_DEST (PATTERN (insn));
978                   else if (GET_CODE (PATTERN (insn)) == PARALLEL
979                            && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == SET)
980                     after_call = SET_DEST (XVECEXP (PATTERN (insn), 0, 0));
981                   else
982                     after_call = 0;
983                 }
984               else if (after_call != 0
985                        && !(GET_CODE (PATTERN (insn)) == SET
986                             && SET_DEST (PATTERN (insn)) == stack_pointer_rtx))
987                 {
988                   if (reg_mentioned_p (after_call, PATTERN (insn)))
989                     avoid_return_reg = after_call;
990                   after_call = 0;
991                 }
992 #endif /* SMALL_REGISTER_CLASSES */
993
994               /* Analyze the instruction.  */
995               find_reloads (insn, 0, spill_indirect_levels, global,
996                             spill_reg_order);
997
998               /* Remember for later shortcuts which insns had any reloads or
999                  register eliminations.
1000
1001                  One might think that it would be worthwhile to mark insns
1002                  that need register replacements but not reloads, but this is
1003                  not safe because find_reloads may do some manipulation of
1004                  the insn (such as swapping commutative operands), which would
1005                  be lost when we restore the old pattern after register
1006                  replacement.  So the actions of find_reloads must be redone in
1007                  subsequent passes or in reload_as_needed.
1008
1009                  However, it is safe to mark insns that need reloads
1010                  but not register replacement.  */
1011
1012               PUT_MODE (insn, (did_elimination ? QImode
1013                                : n_reloads ? HImode
1014                                : VOIDmode));
1015
1016               /* Discard any register replacements done.  */
1017               if (did_elimination)
1018                 {
1019                   obstack_free (&reload_obstack, reload_firstobj);
1020                   PATTERN (insn) = old_body;
1021                   INSN_CODE (insn) = old_code;
1022                   REG_NOTES (insn) = old_notes;
1023                   something_needs_elimination = 1;
1024                 }
1025
1026               /* If this insn has no reloads, we need not do anything except
1027                  in the case of a CALL_INSN when we have caller-saves and
1028                  caller-save needs reloads.  */
1029
1030               if (n_reloads == 0
1031                   && ! (GET_CODE (insn) == CALL_INSN
1032                         && caller_save_spill_class != NO_REGS))
1033                 continue;
1034
1035               something_needs_reloads = 1;
1036
1037               for (i = 0; i < N_REG_CLASSES; i++)
1038                 {
1039                   insn_needs[i] = 0, insn_groups[i] = 0;
1040                   insn_needs_for_inputs[i] = 0, insn_groups_for_inputs[i] = 0;
1041                   insn_needs_for_outputs[i] = 0, insn_groups_for_outputs[i] = 0;
1042                   insn_needs_for_operands[i] = 0, insn_groups_for_operands[i] = 0;
1043                 }
1044
1045               /* Count each reload once in every class
1046                  containing the reload's own class.  */
1047
1048               for (i = 0; i < n_reloads; i++)
1049                 {
1050                   register enum reg_class *p;
1051                   int size;
1052                   enum machine_mode mode;
1053                   int *this_groups;
1054                   int *this_needs;
1055                   int *this_total_groups;
1056
1057                   /* Don't count the dummy reloads, for which one of the
1058                      regs mentioned in the insn can be used for reloading.
1059                      Don't count optional reloads.
1060                      Don't count reloads that got combined with others.  */
1061                   if (reload_reg_rtx[i] != 0
1062                       || reload_optional[i] != 0
1063                       || (reload_out[i] == 0 && reload_in[i] == 0
1064                           && ! reload_secondary_p[i]))
1065                     continue;
1066
1067                   /* Decide which time-of-use to count this reload for.  */
1068                   switch (reload_when_needed[i])
1069                     {
1070                     case RELOAD_OTHER:
1071                     case RELOAD_FOR_OUTPUT:
1072                     case RELOAD_FOR_INPUT:
1073                       this_needs = insn_needs;
1074                       this_groups = insn_groups;
1075                       this_total_groups = &insn_total_groups;
1076                       break;
1077
1078                     case RELOAD_FOR_INPUT_RELOAD_ADDRESS:
1079                       this_needs = insn_needs_for_inputs;
1080                       this_groups = insn_groups_for_inputs;
1081                       this_total_groups = &insn_total_groups_for_inputs;
1082                       break;
1083
1084                     case RELOAD_FOR_OUTPUT_RELOAD_ADDRESS:
1085                       this_needs = insn_needs_for_outputs;
1086                       this_groups = insn_groups_for_outputs;
1087                       this_total_groups = &insn_total_groups_for_outputs;
1088                       break;
1089
1090                     case RELOAD_FOR_OPERAND_ADDRESS:
1091                       this_needs = insn_needs_for_operands;
1092                       this_groups = insn_groups_for_operands;
1093                       this_total_groups = &insn_total_groups_for_operands;
1094                       break;
1095                     }
1096
1097                   mode = reload_inmode[i];
1098                   if (GET_MODE_SIZE (reload_outmode[i]) > GET_MODE_SIZE (mode))
1099                     mode = reload_outmode[i];
1100                   size = CLASS_MAX_NREGS (reload_reg_class[i], mode);
1101                   if (size > 1)
1102                     {
1103                       enum machine_mode other_mode, allocate_mode;
1104
1105                       /* Count number of groups needed separately from
1106                          number of individual regs needed.  */
1107                       this_groups[(int) reload_reg_class[i]]++;
1108                       p = reg_class_superclasses[(int) reload_reg_class[i]];
1109                       while (*p != LIM_REG_CLASSES)
1110                         this_groups[(int) *p++]++;
1111                       (*this_total_groups)++;
1112
1113                       /* Record size and mode of a group of this class.  */
1114                       /* If more than one size group is needed,
1115                          make all groups the largest needed size.  */
1116                       if (group_size[(int) reload_reg_class[i]] < size)
1117                         {
1118                           other_mode = group_mode[(int) reload_reg_class[i]];
1119                           allocate_mode = mode;
1120
1121                           group_size[(int) reload_reg_class[i]] = size;
1122                           group_mode[(int) reload_reg_class[i]] = mode;
1123                         }
1124                       else
1125                         {
1126                           other_mode = mode;
1127                           allocate_mode = group_mode[(int) reload_reg_class[i]];
1128                         }
1129
1130                       /* Crash if two dissimilar machine modes both need
1131                          groups of consecutive regs of the same class.  */
1132
1133                       if (other_mode != VOIDmode
1134                           && other_mode != allocate_mode
1135                           && ! modes_equiv_for_class_p (allocate_mode,
1136                                                         other_mode,
1137                                                         reload_reg_class[i]))
1138                         abort ();
1139                     }
1140                   else if (size == 1)
1141                     {
1142                       this_needs[(int) reload_reg_class[i]] += 1;
1143                       p = reg_class_superclasses[(int) reload_reg_class[i]];
1144                       while (*p != LIM_REG_CLASSES)
1145                         this_needs[(int) *p++] += 1;
1146                     }
1147                   else
1148                     abort ();
1149                 }
1150
1151               /* All reloads have been counted for this insn;
1152                  now merge the various times of use.
1153                  This sets insn_needs, etc., to the maximum total number
1154                  of registers needed at any point in this insn.  */
1155
1156               for (i = 0; i < N_REG_CLASSES; i++)
1157                 {
1158                   int this_max;
1159                   this_max = insn_needs_for_inputs[i];
1160                   if (insn_needs_for_outputs[i] > this_max)
1161                     this_max = insn_needs_for_outputs[i];
1162                   if (insn_needs_for_operands[i] > this_max)
1163                     this_max = insn_needs_for_operands[i];
1164                   insn_needs[i] += this_max;
1165                   this_max = insn_groups_for_inputs[i];
1166                   if (insn_groups_for_outputs[i] > this_max)
1167                     this_max = insn_groups_for_outputs[i];
1168                   if (insn_groups_for_operands[i] > this_max)
1169                     this_max = insn_groups_for_operands[i];
1170                   insn_groups[i] += this_max;
1171                 }
1172
1173               insn_total_groups += MAX (insn_total_groups_for_inputs,
1174                                         MAX (insn_total_groups_for_outputs,
1175                                              insn_total_groups_for_operands));
1176
1177               /* If this is a CALL_INSN and caller-saves will need
1178                  a spill register, act as if the spill register is
1179                  needed for this insn.   However, the spill register
1180                  can be used by any reload of this insn, so we only
1181                  need do something if no need for that class has
1182                  been recorded.
1183
1184                  The assumption that every CALL_INSN will trigger a
1185                  caller-save is highly conservative, however, the number
1186                  of cases where caller-saves will need a spill register but
1187                  a block containing a CALL_INSN won't need a spill register
1188                  of that class should be quite rare.
1189
1190                  If a group is needed, the size and mode of the group will
1191                  have been set up at the begining of this loop.  */
1192
1193               if (GET_CODE (insn) == CALL_INSN
1194                   && caller_save_spill_class != NO_REGS)
1195                 {
1196                   int *caller_save_needs
1197                     = (caller_save_group_size > 1 ? insn_groups : insn_needs);
1198
1199                   if (caller_save_needs[(int) caller_save_spill_class] == 0)
1200                     {
1201                       register enum reg_class *p
1202                         = reg_class_superclasses[(int) caller_save_spill_class];
1203
1204                       caller_save_needs[(int) caller_save_spill_class]++;
1205
1206                       while (*p != LIM_REG_CLASSES)
1207                         caller_save_needs[(int) *p++] += 1;
1208                     }
1209
1210                   if (caller_save_group_size > 1)
1211                     insn_total_groups = MAX (insn_total_groups, 1);
1212                 }
1213
1214               /* Update the basic block needs.  */
1215
1216               for (i = 0; i < N_REG_CLASSES; i++)
1217                 if (global && (insn_needs[i] || insn_groups[i])
1218                     && ! basic_block_needs[i][this_block])
1219                   {
1220                     new_basic_block_needs = 1;
1221                     basic_block_needs[i][this_block] = 1;
1222                   }
1223
1224 #ifdef SMALL_REGISTER_CLASSES
1225               /* If this insn stores the value of a function call,
1226                  and that value is in a register that has been spilled,
1227                  and if the insn needs a reload in a class
1228                  that might use that register as the reload register,
1229                  then add add an extra need in that class.
1230                  This makes sure we have a register available that does
1231                  not overlap the return value.  */
1232               if (avoid_return_reg)
1233                 {
1234                   int regno = REGNO (avoid_return_reg);
1235                   int nregs
1236                     = HARD_REGNO_NREGS (regno, GET_MODE (avoid_return_reg));
1237                   int r;
1238                   int inc_groups = 0;
1239                   for (r = regno; r < regno + nregs; r++)
1240                     if (spill_reg_order[r] >= 0)
1241                       for (i = 0; i < N_REG_CLASSES; i++)
1242                         if (TEST_HARD_REG_BIT (reg_class_contents[i], r))
1243                           {
1244                             if (insn_needs[i] > 0)
1245                               insn_needs[i]++;
1246                             if (insn_groups[i] > 0
1247                                 && nregs > 1)
1248                               inc_groups = 1;
1249                           }
1250                   if (inc_groups)
1251                     insn_groups[i]++;
1252                 }
1253 #endif /* SMALL_REGISTER_CLASSES */
1254
1255               /* For each class, collect maximum need of any insn.  */
1256
1257               for (i = 0; i < N_REG_CLASSES; i++)
1258                 {
1259                   if (max_needs[i] < insn_needs[i])
1260                     max_needs[i] = insn_needs[i];
1261                   if (max_groups[i] < insn_groups[i])
1262                     max_groups[i] = insn_groups[i];
1263                   if (insn_total_groups > 0)
1264                     if (max_nongroups[i] < insn_needs[i])
1265                       max_nongroups[i] = insn_needs[i];
1266                 }
1267             }
1268           /* Note that there is a continue statement above.  */
1269         }
1270
1271       /* If we have caller-saves, set up the save areas and see if caller-save
1272          will need a spill register.  */
1273
1274       if (caller_save_needed
1275           && ! setup_save_areas (&something_changed)
1276           && caller_save_spill_class  == NO_REGS)
1277         {
1278           /* The class we will need depends on whether the machine
1279              supports the sum of two registers for an address; see
1280              find_address_reloads for details.  */
1281
1282           caller_save_spill_class
1283             = double_reg_address_ok ? INDEX_REG_CLASS : BASE_REG_CLASS;
1284           caller_save_group_size
1285             = CLASS_MAX_NREGS (caller_save_spill_class, Pmode);
1286           something_changed = 1;
1287         }
1288
1289       /* Now deduct from the needs for the registers already
1290          available (already spilled).  */
1291
1292       CLEAR_HARD_REG_SET (counted_for_groups);
1293       CLEAR_HARD_REG_SET (counted_for_nongroups);
1294
1295       /* First find all regs alone in their class
1296          and count them (if desired) for non-groups.
1297          We would be screwed if a group took the only reg in a class
1298          for which a non-group reload is needed.
1299          (Note there is still a bug; if a class has 2 regs,
1300          both could be stolen by groups and we would lose the same way.
1301          With luck, no machine will need a nongroup in a 2-reg class.)  */
1302
1303       for (i = 0; i < n_spills; i++)
1304         {
1305           register enum reg_class *p;
1306           class = (int) REGNO_REG_CLASS (spill_regs[i]);
1307
1308           if (reg_class_size[class] == 1 && max_nongroups[class] > 0)
1309             {
1310               max_needs[class]--;
1311               p = reg_class_superclasses[class];
1312               while (*p != LIM_REG_CLASSES)
1313                 max_needs[(int) *p++]--;
1314
1315               SET_HARD_REG_BIT (counted_for_nongroups, spill_regs[i]);
1316               max_nongroups[class]--;
1317               p = reg_class_superclasses[class];
1318               while (*p != LIM_REG_CLASSES)
1319                 {
1320                   if (max_nongroups[(int) *p] > 0)
1321                     SET_HARD_REG_BIT (counted_for_nongroups, spill_regs[i]);
1322                   max_nongroups[(int) *p++]--;
1323                 }
1324             }
1325         }
1326
1327       /* Now find all consecutive groups of spilled registers
1328          and mark each group off against the need for such groups.
1329          But don't count them against ordinary need, yet.  */
1330
1331       count_possible_groups (group_size, group_mode, max_groups);
1332
1333       /* Now count all spill regs against the individual need,
1334          This includes those counted above for groups,
1335          but not those previously counted for nongroups.
1336
1337          Those that weren't counted_for_groups can also count against
1338          the not-in-group need.  */
1339
1340       for (i = 0; i < n_spills; i++)
1341         {
1342           register enum reg_class *p;
1343           class = (int) REGNO_REG_CLASS (spill_regs[i]);
1344
1345           /* Those counted at the beginning shouldn't be counted twice.  */
1346           if (! TEST_HARD_REG_BIT (counted_for_nongroups, spill_regs[i]))
1347             {
1348               max_needs[class]--;
1349               p = reg_class_superclasses[class];
1350               while (*p != LIM_REG_CLASSES)
1351                 max_needs[(int) *p++]--;
1352
1353               if (! TEST_HARD_REG_BIT (counted_for_groups, spill_regs[i]))
1354                 {
1355                   if (max_nongroups[class] > 0)
1356                     SET_HARD_REG_BIT (counted_for_nongroups, spill_regs[i]);
1357                   max_nongroups[class]--;
1358                   p = reg_class_superclasses[class];
1359                   while (*p != LIM_REG_CLASSES)
1360                     {
1361                       if (max_nongroups[(int) *p] > 0)
1362                         SET_HARD_REG_BIT (counted_for_nongroups,
1363                                           spill_regs[i]);
1364                       max_nongroups[(int) *p++]--;
1365                     }
1366                 }
1367             }
1368         }
1369
1370       /* See if anything that happened changes which eliminations are valid.
1371          For example, on the Sparc, whether or not the frame pointer can
1372          be eliminated can depend on what registers have been used.  We need
1373          not check some conditions again (such as flag_omit_frame_pointer)
1374          since they can't have changed.  */
1375
1376       for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
1377         if ((ep->from == FRAME_POINTER_REGNUM && FRAME_POINTER_REQUIRED)
1378 #ifdef ELIMINABLE_REGS
1379             || ! CAN_ELIMINATE (ep->from, ep->to)
1380 #endif
1381             )
1382           ep->can_eliminate = 0;
1383
1384       /* Look for the case where we have discovered that we can't replace
1385          register A with register B and that means that we will now be
1386          trying to replace register A with register C.  This means we can
1387          no longer replace register C with register B and we need to disable
1388          such an elimination, if it exists.  This occurs often with A == ap,
1389          B == sp, and C == fp.  */
1390
1391       for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
1392         {
1393           struct elim_table *op;
1394           register int new_to = -1;
1395
1396           if (! ep->can_eliminate && ep->can_eliminate_previous)
1397             {
1398               /* Find the current elimination for ep->from, if there is a
1399                  new one.  */
1400               for (op = reg_eliminate;
1401                    op < &reg_eliminate[NUM_ELIMINABLE_REGS]; op++)
1402                 if (op->from == ep->from && op->can_eliminate)
1403                   {
1404                     new_to = op->to;
1405                     break;
1406                   }
1407
1408               /* See if there is an elimination of NEW_TO -> EP->TO.  If so,
1409                  disable it.  */
1410               for (op = reg_eliminate;
1411                    op < &reg_eliminate[NUM_ELIMINABLE_REGS]; op++)
1412                 if (op->from == new_to && op->to == ep->to)
1413                   op->can_eliminate = 0;
1414             }
1415         }
1416
1417       /* See if any registers that we thought we could eliminate the previous
1418          time are no longer eliminable.  If so, something has changed and we
1419          must spill the register.  Also, recompute the number of eliminable
1420          registers and see if the frame pointer is needed; it is if there is
1421          no elimination of the frame pointer that we can perform.  */
1422
1423       frame_pointer_needed = 1;
1424       for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
1425         {
1426           if (ep->can_eliminate && ep->from == FRAME_POINTER_REGNUM)
1427             frame_pointer_needed = 0;
1428
1429           if (! ep->can_eliminate && ep->can_eliminate_previous)
1430             {
1431               ep->can_eliminate_previous = 0;
1432               spill_hard_reg (ep->from, global, dumpfile, 1);
1433               regs_ever_live[ep->from] = 1;
1434               something_changed = 1;
1435               num_eliminable--;
1436             }
1437         }
1438
1439       /* If all needs are met, we win.  */
1440
1441       for (i = 0; i < N_REG_CLASSES; i++)
1442         if (max_needs[i] > 0 || max_groups[i] > 0 || max_nongroups[i] > 0)
1443           break;
1444       if (i == N_REG_CLASSES && !new_basic_block_needs && ! something_changed)
1445         break;
1446
1447       /* Not all needs are met; must spill more hard regs.  */
1448
1449       /* If any element of basic_block_needs changed from 0 to 1,
1450          re-spill all the regs already spilled.  This may spill
1451          additional pseudos that didn't spill before.  */
1452
1453       if (new_basic_block_needs)
1454         for (i = 0; i < n_spills; i++)
1455           something_changed
1456             |= spill_hard_reg (spill_regs[i], global, dumpfile, 0);
1457
1458       /* Now find more reload regs to satisfy the remaining need
1459          Do it by ascending class number, since otherwise a reg
1460          might be spilled for a big class and might fail to count
1461          for a smaller class even though it belongs to that class.
1462
1463          Count spilled regs in `spills', and add entries to
1464          `spill_regs' and `spill_reg_order'.
1465
1466          ??? Note there is a problem here.
1467          When there is a need for a group in a high-numbered class,
1468          and also need for non-group regs that come from a lower class,
1469          the non-group regs are chosen first.  If there aren't many regs,
1470          they might leave no room for a group.
1471
1472          This was happening on the 386.  To fix it, we added the code
1473          that calls possible_group_p, so that the lower class won't
1474          break up the last possible group.
1475
1476          Really fixing the problem would require changes above
1477          in counting the regs already spilled, and in choose_reload_regs.
1478          It might be hard to avoid introducing bugs there.  */
1479
1480       for (class = 0; class < N_REG_CLASSES; class++)
1481         {
1482           /* First get the groups of registers.
1483              If we got single registers first, we might fragment
1484              possible groups.  */
1485           while (max_groups[class] > 0)
1486             {
1487               /* If any single spilled regs happen to form groups,
1488                  count them now.  Maybe we don't really need
1489                  to spill another group.  */
1490               count_possible_groups (group_size, group_mode, max_groups);
1491
1492               /* Groups of size 2 (the only groups used on most machines)
1493                  are treated specially.  */
1494               if (group_size[class] == 2)
1495                 {
1496                   /* First, look for a register that will complete a group.  */
1497                   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1498                     {
1499                       int j = potential_reload_regs[i];
1500                       int other;
1501                       if (j >= 0 && ! TEST_HARD_REG_BIT (bad_spill_regs, j)
1502                           &&
1503                           ((j > 0 && (other = j - 1, spill_reg_order[other] >= 0)
1504                             && TEST_HARD_REG_BIT (reg_class_contents[class], j)
1505                             && TEST_HARD_REG_BIT (reg_class_contents[class], other)
1506                             && HARD_REGNO_MODE_OK (other, group_mode[class])
1507                             && ! TEST_HARD_REG_BIT (counted_for_nongroups,
1508                                                     other)
1509                             /* We don't want one part of another group.
1510                                We could get "two groups" that overlap!  */
1511                             && ! TEST_HARD_REG_BIT (counted_for_groups, other))
1512                            ||
1513                            (j < FIRST_PSEUDO_REGISTER - 1
1514                             && (other = j + 1, spill_reg_order[other] >= 0)
1515                             && TEST_HARD_REG_BIT (reg_class_contents[class], j)
1516                             && TEST_HARD_REG_BIT (reg_class_contents[class], other)
1517                             && HARD_REGNO_MODE_OK (j, group_mode[class])
1518                             && ! TEST_HARD_REG_BIT (counted_for_nongroups,
1519                                                     other)
1520                             && ! TEST_HARD_REG_BIT (counted_for_groups,
1521                                                     other))))
1522                         {
1523                           register enum reg_class *p;
1524
1525                           /* We have found one that will complete a group,
1526                              so count off one group as provided.  */
1527                           max_groups[class]--;
1528                           p = reg_class_superclasses[class];
1529                           while (*p != LIM_REG_CLASSES)
1530                             max_groups[(int) *p++]--;
1531
1532                           /* Indicate both these regs are part of a group.  */
1533                           SET_HARD_REG_BIT (counted_for_groups, j);
1534                           SET_HARD_REG_BIT (counted_for_groups, other);
1535                           break;
1536                         }
1537                     }
1538                   /* We can't complete a group, so start one.  */
1539                   if (i == FIRST_PSEUDO_REGISTER)
1540                     for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1541                       {
1542                         int j = potential_reload_regs[i];
1543                         if (j >= 0 && j + 1 < FIRST_PSEUDO_REGISTER
1544                             && spill_reg_order[j] < 0 && spill_reg_order[j + 1] < 0
1545                             && TEST_HARD_REG_BIT (reg_class_contents[class], j)
1546                             && TEST_HARD_REG_BIT (reg_class_contents[class], j + 1)
1547                             && HARD_REGNO_MODE_OK (j, group_mode[class])
1548                             && ! TEST_HARD_REG_BIT (counted_for_nongroups,
1549                                                     j + 1))
1550                           break;
1551                       }
1552
1553                   /* I should be the index in potential_reload_regs
1554                      of the new reload reg we have found.  */
1555
1556                   something_changed
1557                     |= new_spill_reg (i, class, max_needs, 0,
1558                                       global, dumpfile);
1559                 }
1560               else
1561                 {
1562                   /* For groups of more than 2 registers,
1563                      look for a sufficient sequence of unspilled registers,
1564                      and spill them all at once.  */
1565                   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1566                     {
1567                       int j = potential_reload_regs[i];
1568                       int k;
1569                       if (j >= 0 && j + 1 < FIRST_PSEUDO_REGISTER
1570                           && HARD_REGNO_MODE_OK (j, group_mode[class]))
1571                         {
1572                           /* Check each reg in the sequence.  */
1573                           for (k = 0; k < group_size[class]; k++)
1574                             if (! (spill_reg_order[j + k] < 0
1575                                    && ! TEST_HARD_REG_BIT (bad_spill_regs, j + k)
1576                                    && TEST_HARD_REG_BIT (reg_class_contents[class], j + k)))
1577                               break;
1578                           /* We got a full sequence, so spill them all.  */
1579                           if (k == group_size[class])
1580                             {
1581                               register enum reg_class *p;
1582                               for (k = 0; k < group_size[class]; k++)
1583                                 {
1584                                   int idx;
1585                                   SET_HARD_REG_BIT (counted_for_groups, j + k);
1586                                   for (idx = 0; idx < FIRST_PSEUDO_REGISTER; idx++)
1587                                     if (potential_reload_regs[idx] == j + k)
1588                                       break;
1589                                   something_changed
1590                                     |= new_spill_reg (idx, class, max_needs, 0,
1591                                                       global, dumpfile);
1592                                 }
1593
1594                               /* We have found one that will complete a group,
1595                                  so count off one group as provided.  */
1596                               max_groups[class]--;
1597                               p = reg_class_superclasses[class];
1598                               while (*p != LIM_REG_CLASSES)
1599                                 max_groups[(int) *p++]--;
1600
1601                               break;
1602                             }
1603                         }
1604                     }
1605                 }
1606             }
1607
1608           /* Now similarly satisfy all need for single registers.  */
1609
1610           while (max_needs[class] > 0 || max_nongroups[class] > 0)
1611             {
1612               /* Consider the potential reload regs that aren't
1613                  yet in use as reload regs, in order of preference.
1614                  Find the most preferred one that's in this class.  */
1615
1616               for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1617                 if (potential_reload_regs[i] >= 0
1618                     && TEST_HARD_REG_BIT (reg_class_contents[class],
1619                                           potential_reload_regs[i])
1620                     /* If this reg will not be available for groups,
1621                        pick one that does not foreclose possible groups.
1622                        This is a kludge, and not very general,
1623                        but it should be sufficient to make the 386 work,
1624                        and the problem should not occur on machines with
1625                        more registers.  */
1626                     && (max_nongroups[class] == 0
1627                         || possible_group_p (potential_reload_regs[i], max_groups)))
1628                   break;
1629
1630               /* I should be the index in potential_reload_regs
1631                  of the new reload reg we have found.  */
1632
1633               something_changed
1634                 |= new_spill_reg (i, class, max_needs, max_nongroups,
1635                                   global, dumpfile);
1636             }
1637         }
1638     }
1639
1640   /* If global-alloc was run, notify it of any register eliminations we have
1641      done.  */
1642   if (global)
1643     for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
1644       if (ep->can_eliminate)
1645         mark_elimination (ep->from, ep->to);
1646
1647   /* From now on, we need to emit any moves without making new pseudos.  */
1648   reload_in_progress = 1;
1649
1650   /* Insert code to save and restore call-clobbered hard regs
1651      around calls.  Tell if what mode to use so that we will process
1652      those insns in reload_as_needed if we have to.  */
1653
1654   if (caller_save_needed)
1655     save_call_clobbered_regs (num_eliminable ? QImode
1656                               : caller_save_spill_class != NO_REGS ? HImode
1657                               : VOIDmode);
1658
1659   /* If a pseudo has no hard reg, delete the insns that made the equivalence.
1660      If that insn didn't set the register (i.e., it copied the register to
1661      memory), just delete that insn instead of the equivalencing insn plus
1662      anything now dead.  If we call delete_dead_insn on that insn, we may
1663      delete the insn that actually sets the register if the register die
1664      there and that is incorrect.  */
1665
1666   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
1667     if (reg_renumber[i] < 0 && reg_equiv_init[i] != 0
1668         && GET_CODE (reg_equiv_init[i]) != NOTE)
1669       {
1670         if (reg_set_p (regno_reg_rtx[i], PATTERN (reg_equiv_init[i])))
1671           delete_dead_insn (reg_equiv_init[i]);
1672         else
1673           {
1674             PUT_CODE (reg_equiv_init[i], NOTE);
1675             NOTE_SOURCE_FILE (reg_equiv_init[i]) = 0;
1676             NOTE_LINE_NUMBER (reg_equiv_init[i]) = NOTE_INSN_DELETED;
1677           }
1678       }
1679
1680   /* Use the reload registers where necessary
1681      by generating move instructions to move the must-be-register
1682      values into or out of the reload registers.  */
1683
1684   if (something_needs_reloads || something_needs_elimination
1685       || (caller_save_needed && num_eliminable)
1686       || caller_save_spill_class != NO_REGS)
1687     reload_as_needed (first, global);
1688
1689   reload_in_progress = 0;
1690
1691   /* Now eliminate all pseudo regs by modifying them into
1692      their equivalent memory references.
1693      The REG-rtx's for the pseudos are modified in place,
1694      so all insns that used to refer to them now refer to memory.
1695
1696      For a reg that has a reg_equiv_address, all those insns
1697      were changed by reloading so that no insns refer to it any longer;
1698      but the DECL_RTL of a variable decl may refer to it,
1699      and if so this causes the debugging info to mention the variable.  */
1700
1701   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
1702     {
1703       rtx addr = 0;
1704       if (reg_equiv_mem[i])
1705         addr = XEXP (reg_equiv_mem[i], 0);
1706       if (reg_equiv_address[i])
1707         addr = reg_equiv_address[i];
1708       if (addr)
1709         {
1710           if (reg_renumber[i] < 0)
1711             {
1712               rtx reg = regno_reg_rtx[i];
1713               XEXP (reg, 0) = addr;
1714               REG_USERVAR_P (reg) = 0;
1715               PUT_CODE (reg, MEM);
1716             }
1717           else if (reg_equiv_mem[i])
1718             XEXP (reg_equiv_mem[i], 0) = addr;
1719         }
1720     }
1721
1722 #ifdef PRESERVE_DEATH_INFO_REGNO_P
1723   /* Make a pass over all the insns and remove death notes for things that
1724      are no longer registers or no longer die in the insn (e.g., an input
1725      and output pseudo being tied).  */
1726
1727   for (insn = first; insn; insn = NEXT_INSN (insn))
1728     if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
1729       {
1730         rtx note, next;
1731
1732         for (note = REG_NOTES (insn); note; note = next)
1733           {
1734             next = XEXP (note, 1);
1735             if (REG_NOTE_KIND (note) == REG_DEAD
1736                 && (GET_CODE (XEXP (note, 0)) != REG
1737                     || reg_set_p (XEXP (note, 0), PATTERN (insn))))
1738               remove_note (insn, note);
1739           }
1740       }
1741 #endif
1742
1743   /* Indicate that we no longer have known memory locations or constants.  */
1744   reg_equiv_constant = 0;
1745   reg_equiv_memory_loc = 0;
1746 }
1747 \f
1748 /* Nonzero if, after spilling reg REGNO for non-groups,
1749    it will still be possible to find a group if we still need one.  */
1750
1751 static int
1752 possible_group_p (regno, max_groups)
1753      int regno;
1754      int *max_groups;
1755 {
1756   int i;
1757   int class = (int) NO_REGS;
1758
1759   for (i = 0; i < (int) N_REG_CLASSES; i++)
1760     if (max_groups[i] > 0)
1761       {
1762         class = i;
1763         break;
1764       }
1765
1766   if (class == (int) NO_REGS)
1767     return 1;
1768
1769   /* Consider each pair of consecutive registers.  */
1770   for (i = 0; i < FIRST_PSEUDO_REGISTER - 1; i++)
1771     {
1772       /* Ignore pairs that include reg REGNO.  */
1773       if (i == regno || i + 1 == regno)
1774         continue;
1775
1776       /* Ignore pairs that are outside the class that needs the group.
1777          ??? Here we fail to handle the case where two different classes
1778          independently need groups.  But this never happens with our
1779          current machine descriptions.  */
1780       if (! (TEST_HARD_REG_BIT (reg_class_contents[class], i)
1781              && TEST_HARD_REG_BIT (reg_class_contents[class], i + 1)))
1782         continue;
1783
1784       /* A pair of consecutive regs we can still spill does the trick.  */
1785       if (spill_reg_order[i] < 0 && spill_reg_order[i + 1] < 0
1786           && ! TEST_HARD_REG_BIT (bad_spill_regs, i)
1787           && ! TEST_HARD_REG_BIT (bad_spill_regs, i + 1))
1788         return 1;
1789
1790       /* A pair of one already spilled and one we can spill does it
1791          provided the one already spilled is not otherwise reserved.  */
1792       if (spill_reg_order[i] < 0
1793           && ! TEST_HARD_REG_BIT (bad_spill_regs, i)
1794           && spill_reg_order[i + 1] >= 0
1795           && ! TEST_HARD_REG_BIT (counted_for_groups, i + 1)
1796           && ! TEST_HARD_REG_BIT (counted_for_nongroups, i + 1))
1797         return 1;
1798       if (spill_reg_order[i + 1] < 0
1799           && ! TEST_HARD_REG_BIT (bad_spill_regs, i + 1)
1800           && spill_reg_order[i] >= 0
1801           && ! TEST_HARD_REG_BIT (counted_for_groups, i)
1802           && ! TEST_HARD_REG_BIT (counted_for_nongroups, i))
1803         return 1;
1804     }
1805
1806   return 0;
1807 }
1808 \f
1809 /* Count any groups that can be formed from the registers recently spilled.
1810    This is done class by class, in order of ascending class number.  */
1811
1812 static void
1813 count_possible_groups (group_size, group_mode, max_groups)
1814      int *group_size, *max_groups;
1815      enum machine_mode *group_mode;
1816 {
1817   int i;
1818   /* Now find all consecutive groups of spilled registers
1819      and mark each group off against the need for such groups.
1820      But don't count them against ordinary need, yet.  */
1821
1822   for (i = 0; i < N_REG_CLASSES; i++)
1823     if (group_size[i] > 1)
1824       {
1825         char regmask[FIRST_PSEUDO_REGISTER];
1826         int j;
1827
1828         bzero (regmask, sizeof regmask);
1829         /* Make a mask of all the regs that are spill regs in class I.  */
1830         for (j = 0; j < n_spills; j++)
1831           if (TEST_HARD_REG_BIT (reg_class_contents[i], spill_regs[j])
1832               && ! TEST_HARD_REG_BIT (counted_for_groups, spill_regs[j])
1833               && ! TEST_HARD_REG_BIT (counted_for_nongroups,
1834                                       spill_regs[j]))
1835             regmask[spill_regs[j]] = 1;
1836         /* Find each consecutive group of them.  */
1837         for (j = 0; j < FIRST_PSEUDO_REGISTER && max_groups[i] > 0; j++)
1838           if (regmask[j] && j + group_size[i] <= FIRST_PSEUDO_REGISTER
1839               /* Next line in case group-mode for this class
1840                  demands an even-odd pair.  */
1841               && HARD_REGNO_MODE_OK (j, group_mode[i]))
1842             {
1843               int k;
1844               for (k = 1; k < group_size[i]; k++)
1845                 if (! regmask[j + k])
1846                   break;
1847               if (k == group_size[i])
1848                 {
1849                   /* We found a group.  Mark it off against this class's
1850                      need for groups, and against each superclass too.  */
1851                   register enum reg_class *p;
1852                   max_groups[i]--;
1853                   p = reg_class_superclasses[i];
1854                   while (*p != LIM_REG_CLASSES)
1855                     max_groups[(int) *p++]--;
1856                   /* Don't count these registers again.  */
1857                   for (k = 0; k < group_size[i]; k++)
1858                     SET_HARD_REG_BIT (counted_for_groups, j + k);
1859                 }
1860               j += k;
1861             }
1862       }
1863
1864 }
1865 \f
1866 /* ALLOCATE_MODE is a register mode that needs to be reloaded.  OTHER_MODE is
1867    another mode that needs to be reloaded for the same register class CLASS.
1868    If any reg in CLASS allows ALLOCATE_MODE but not OTHER_MODE, fail.
1869    ALLOCATE_MODE will never be smaller than OTHER_MODE.
1870
1871    This code used to also fail if any reg in CLASS allows OTHER_MODE but not
1872    ALLOCATE_MODE.  This test is unnecessary, because we will never try to put
1873    something of mode ALLOCATE_MODE into an OTHER_MODE register.  Testing this
1874    causes unnecessary failures on machines requiring alignment of register
1875    groups when the two modes are different sizes, because the larger mode has
1876    more strict alignment rules than the smaller mode.  */
1877
1878 static int
1879 modes_equiv_for_class_p (allocate_mode, other_mode, class)
1880      enum machine_mode allocate_mode, other_mode;
1881      enum reg_class class;
1882 {
1883   register int regno;
1884   for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
1885     {
1886       if (TEST_HARD_REG_BIT (reg_class_contents[(int) class], regno)
1887           && HARD_REGNO_MODE_OK (regno, allocate_mode)
1888           && ! HARD_REGNO_MODE_OK (regno, other_mode))
1889         return 0;
1890     }
1891   return 1;
1892 }
1893
1894 /* Add a new register to the tables of available spill-registers
1895     (as well as spilling all pseudos allocated to the register).
1896    I is the index of this register in potential_reload_regs.
1897    CLASS is the regclass whose need is being satisfied.
1898    MAX_NEEDS and MAX_NONGROUPS are the vectors of needs,
1899     so that this register can count off against them.
1900     MAX_NONGROUPS is 0 if this register is part of a group.
1901    GLOBAL and DUMPFILE are the same as the args that `reload' got.  */
1902
1903 static int
1904 new_spill_reg (i, class, max_needs, max_nongroups, global, dumpfile)
1905      int i;
1906      int class;
1907      int *max_needs;
1908      int *max_nongroups;
1909      int global;
1910      FILE *dumpfile;
1911 {
1912   register enum reg_class *p;
1913   int val;
1914   int regno = potential_reload_regs[i];
1915
1916   if (i >= FIRST_PSEUDO_REGISTER)
1917     abort ();   /* Caller failed to find any register.  */
1918
1919   if (fixed_regs[regno] || TEST_HARD_REG_BIT (forbidden_regs, regno))
1920     fatal ("fixed or forbidden register was spilled.\n\
1921 This may be due to a compiler bug or to impossible asm statements.");
1922
1923   /* Make reg REGNO an additional reload reg.  */
1924
1925   potential_reload_regs[i] = -1;
1926   spill_regs[n_spills] = regno;
1927   spill_reg_order[regno] = n_spills;
1928   if (dumpfile)
1929     fprintf (dumpfile, "Spilling reg %d.\n", spill_regs[n_spills]);
1930
1931   /* Clear off the needs we just satisfied.  */
1932
1933   max_needs[class]--;
1934   p = reg_class_superclasses[class];
1935   while (*p != LIM_REG_CLASSES)
1936     max_needs[(int) *p++]--;
1937
1938   if (max_nongroups && max_nongroups[class] > 0)
1939     {
1940       SET_HARD_REG_BIT (counted_for_nongroups, regno);
1941       max_nongroups[class]--;
1942       p = reg_class_superclasses[class];
1943       while (*p != LIM_REG_CLASSES)
1944         max_nongroups[(int) *p++]--;
1945     }
1946
1947   /* Spill every pseudo reg that was allocated to this reg
1948      or to something that overlaps this reg.  */
1949
1950   val = spill_hard_reg (spill_regs[n_spills], global, dumpfile, 0);
1951
1952   /* If there are some registers still to eliminate and this register
1953      wasn't ever used before, additional stack space may have to be
1954      allocated to store this register.  Thus, we may have changed the offset
1955      between the stack and frame pointers, so mark that something has changed.
1956      (If new pseudos were spilled, thus requiring more space, VAL would have
1957      been set non-zero by the call to spill_hard_reg above since additional
1958      reloads may be needed in that case.
1959
1960      One might think that we need only set VAL to 1 if this is a call-used
1961      register.  However, the set of registers that must be saved by the
1962      prologue is not identical to the call-used set.  For example, the
1963      register used by the call insn for the return PC is a call-used register,
1964      but must be saved by the prologue.  */
1965   if (num_eliminable && ! regs_ever_live[spill_regs[n_spills]])
1966     val = 1;
1967
1968   regs_ever_live[spill_regs[n_spills]] = 1;
1969   n_spills++;
1970
1971   return val;
1972 }
1973 \f
1974 /* Delete an unneeded INSN and any previous insns who sole purpose is loading
1975    data that is dead in INSN.  */
1976
1977 static void
1978 delete_dead_insn (insn)
1979      rtx insn;
1980 {
1981   rtx prev = prev_real_insn (insn);
1982   rtx prev_dest;
1983
1984   /* If the previous insn sets a register that dies in our insn, delete it
1985      too.  */
1986   if (prev && GET_CODE (PATTERN (prev)) == SET
1987       && (prev_dest = SET_DEST (PATTERN (prev)), GET_CODE (prev_dest) == REG)
1988       && reg_mentioned_p (prev_dest, PATTERN (insn))
1989       && find_regno_note (insn, REG_DEAD, REGNO (prev_dest)))
1990     delete_dead_insn (prev);
1991
1992   PUT_CODE (insn, NOTE);
1993   NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
1994   NOTE_SOURCE_FILE (insn) = 0;
1995 }
1996
1997 /* Modify the home of pseudo-reg I.
1998    The new home is present in reg_renumber[I].
1999
2000    FROM_REG may be the hard reg that the pseudo-reg is being spilled from;
2001    or it may be -1, meaning there is none or it is not relevant.
2002    This is used so that all pseudos spilled from a given hard reg
2003    can share one stack slot.  */
2004
2005 static void
2006 alter_reg (i, from_reg)
2007      register int i;
2008      int from_reg;
2009 {
2010   /* When outputting an inline function, this can happen
2011      for a reg that isn't actually used.  */
2012   if (regno_reg_rtx[i] == 0)
2013     return;
2014
2015   /* If the reg got changed to a MEM at rtl-generation time,
2016      ignore it.  */
2017   if (GET_CODE (regno_reg_rtx[i]) != REG)
2018     return;
2019
2020   /* Modify the reg-rtx to contain the new hard reg
2021      number or else to contain its pseudo reg number.  */
2022   REGNO (regno_reg_rtx[i])
2023     = reg_renumber[i] >= 0 ? reg_renumber[i] : i;
2024
2025   /* If we have a pseudo that is needed but has no hard reg or equivalent,
2026      allocate a stack slot for it.  */
2027
2028   if (reg_renumber[i] < 0
2029       && reg_n_refs[i] > 0
2030       && reg_equiv_constant[i] == 0
2031       && reg_equiv_memory_loc[i] == 0)
2032     {
2033       register rtx x;
2034       int inherent_size = PSEUDO_REGNO_BYTES (i);
2035       int total_size = MAX (inherent_size, reg_max_ref_width[i]);
2036       int adjust = 0;
2037
2038       /* Each pseudo reg has an inherent size which comes from its own mode,
2039          and a total size which provides room for paradoxical subregs
2040          which refer to the pseudo reg in wider modes.
2041
2042          We can use a slot already allocated if it provides both
2043          enough inherent space and enough total space.
2044          Otherwise, we allocate a new slot, making sure that it has no less
2045          inherent space, and no less total space, then the previous slot.  */
2046       if (from_reg == -1)
2047         {
2048           /* No known place to spill from => no slot to reuse.  */
2049           x = assign_stack_local (GET_MODE (regno_reg_rtx[i]), total_size, -1);
2050 #if BYTES_BIG_ENDIAN
2051           /* Cancel the  big-endian correction done in assign_stack_local.
2052              Get the address of the beginning of the slot.
2053              This is so we can do a big-endian correction unconditionally
2054              below.  */
2055           adjust = inherent_size - total_size;
2056 #endif
2057         }
2058       /* Reuse a stack slot if possible.  */
2059       else if (spill_stack_slot[from_reg] != 0
2060                && spill_stack_slot_width[from_reg] >= total_size
2061                && (GET_MODE_SIZE (GET_MODE (spill_stack_slot[from_reg]))
2062                    >= inherent_size))
2063         x = spill_stack_slot[from_reg];
2064       /* Allocate a bigger slot.  */
2065       else
2066         {
2067           /* Compute maximum size needed, both for inherent size
2068              and for total size.  */
2069           enum machine_mode mode = GET_MODE (regno_reg_rtx[i]);
2070           if (spill_stack_slot[from_reg])
2071             {
2072               if (GET_MODE_SIZE (GET_MODE (spill_stack_slot[from_reg]))
2073                   > inherent_size)
2074                 mode = GET_MODE (spill_stack_slot[from_reg]);
2075               if (spill_stack_slot_width[from_reg] > total_size)
2076                 total_size = spill_stack_slot_width[from_reg];
2077             }
2078           /* Make a slot with that size.  */
2079           x = assign_stack_local (mode, total_size, -1);
2080 #if BYTES_BIG_ENDIAN
2081           /* Cancel the  big-endian correction done in assign_stack_local.
2082              Get the address of the beginning of the slot.
2083              This is so we can do a big-endian correction unconditionally
2084              below.  */
2085           adjust = GET_MODE_SIZE (mode) - total_size;
2086 #endif
2087           spill_stack_slot[from_reg] = x;
2088           spill_stack_slot_width[from_reg] = total_size;
2089         }
2090
2091 #if BYTES_BIG_ENDIAN
2092       /* On a big endian machine, the "address" of the slot
2093          is the address of the low part that fits its inherent mode.  */
2094       if (inherent_size < total_size)
2095         adjust += (total_size - inherent_size);
2096 #endif /* BYTES_BIG_ENDIAN */
2097
2098       /* If we have any adjustment to make, or if the stack slot is the
2099          wrong mode, make a new stack slot.  */
2100       if (adjust != 0 || GET_MODE (x) != GET_MODE (regno_reg_rtx[i]))
2101         {
2102           x = gen_rtx (MEM, GET_MODE (regno_reg_rtx[i]),
2103                        plus_constant (XEXP (x, 0), adjust));
2104           RTX_UNCHANGING_P (x) = RTX_UNCHANGING_P (regno_reg_rtx[i]);
2105         }
2106
2107       /* Save the stack slot for later.   */
2108       reg_equiv_memory_loc[i] = x;
2109     }
2110 }
2111
2112 /* Mark the slots in regs_ever_live for the hard regs
2113    used by pseudo-reg number REGNO.  */
2114
2115 void
2116 mark_home_live (regno)
2117      int regno;
2118 {
2119   register int i, lim;
2120   i = reg_renumber[regno];
2121   if (i < 0)
2122     return;
2123   lim = i + HARD_REGNO_NREGS (i, PSEUDO_REGNO_MODE (regno));
2124   while (i < lim)
2125     regs_ever_live[i++] = 1;
2126 }
2127 \f
2128 /* This function handles the tracking of elimination offsets around branches.
2129
2130    X is a piece of RTL being scanned.
2131
2132    INSN is the insn that it came from, if any.
2133
2134    INITIAL_P is non-zero if we are to set the offset to be the initial
2135    offset and zero if we are setting the offset of the label to be the
2136    current offset.  */
2137
2138 static void
2139 set_label_offsets (x, insn, initial_p)
2140      rtx x;
2141      rtx insn;
2142      int initial_p;
2143 {
2144   enum rtx_code code = GET_CODE (x);
2145   rtx tem;
2146   int i;
2147   struct elim_table *p;
2148
2149   switch (code)
2150     {
2151     case LABEL_REF:
2152       x = XEXP (x, 0);
2153
2154       /* ... fall through ... */
2155
2156     case CODE_LABEL:
2157       /* If we know nothing about this label, set the desired offsets.  Note
2158          that this sets the offset at a label to be the offset before a label
2159          if we don't know anything about the label.  This is not correct for
2160          the label after a BARRIER, but is the best guess we can make.  If
2161          we guessed wrong, we will suppress an elimination that might have
2162          been possible had we been able to guess correctly.  */
2163
2164       if (! offsets_known_at[CODE_LABEL_NUMBER (x)])
2165         {
2166           for (i = 0; i < NUM_ELIMINABLE_REGS; i++)
2167             offsets_at[CODE_LABEL_NUMBER (x)][i]
2168               = (initial_p ? reg_eliminate[i].initial_offset
2169                  : reg_eliminate[i].offset);
2170           offsets_known_at[CODE_LABEL_NUMBER (x)] = 1;
2171         }
2172
2173       /* Otherwise, if this is the definition of a label and it is
2174          preceeded by a BARRIER, set our offsets to the known offset of
2175          that label.  */
2176
2177       else if (x == insn
2178                && (tem = prev_nonnote_insn (insn)) != 0
2179                && GET_CODE (tem) == BARRIER)
2180         {
2181           num_not_at_initial_offset = 0;
2182           for (i = 0; i < NUM_ELIMINABLE_REGS; i++)
2183             {
2184               reg_eliminate[i].offset = reg_eliminate[i].previous_offset
2185                 = offsets_at[CODE_LABEL_NUMBER (x)][i];
2186               if (reg_eliminate[i].offset != reg_eliminate[i].initial_offset)
2187                 num_not_at_initial_offset++;
2188             }
2189         }
2190
2191       else
2192         /* If neither of the above cases is true, compare each offset
2193            with those previously recorded and suppress any eliminations
2194            where the offsets disagree.  */
2195
2196         for (i = 0; i < NUM_ELIMINABLE_REGS; i++)
2197           if (offsets_at[CODE_LABEL_NUMBER (x)][i]
2198               != (initial_p ? reg_eliminate[i].initial_offset
2199                   : reg_eliminate[i].offset))
2200             reg_eliminate[i].can_eliminate = 0;
2201
2202       return;
2203
2204     case JUMP_INSN:
2205       set_label_offsets (PATTERN (insn), insn, initial_p);
2206
2207       /* ... fall through ... */
2208
2209     case INSN:
2210     case CALL_INSN:
2211       /* Any labels mentioned in REG_LABEL notes can be branched to indirectly
2212          and hence must have all eliminations at their initial offsets.  */
2213       for (tem = REG_NOTES (x); tem; tem = XEXP (tem, 1))
2214         if (REG_NOTE_KIND (tem) == REG_LABEL)
2215           set_label_offsets (XEXP (tem, 0), insn, 1);
2216       return;
2217
2218     case ADDR_VEC:
2219     case ADDR_DIFF_VEC:
2220       /* Each of the labels in the address vector must be at their initial
2221          offsets.  We want the first first for ADDR_VEC and the second
2222          field for ADDR_DIFF_VEC.  */
2223
2224       for (i = 0; i < XVECLEN (x, code == ADDR_DIFF_VEC); i++)
2225         set_label_offsets (XVECEXP (x, code == ADDR_DIFF_VEC, i),
2226                            insn, initial_p);
2227       return;
2228
2229     case SET:
2230       /* We only care about setting PC.  If the source is not RETURN,
2231          IF_THEN_ELSE, or a label, disable any eliminations not at
2232          their initial offsets.  Similarly if any arm of the IF_THEN_ELSE
2233          isn't one of those possibilities.  For branches to a label,
2234          call ourselves recursively.
2235
2236          Note that this can disable elimination unnecessarily when we have
2237          a non-local goto since it will look like a non-constant jump to
2238          someplace in the current function.  This isn't a significant
2239          problem since such jumps will normally be when all elimination
2240          pairs are back to their initial offsets.  */
2241
2242       if (SET_DEST (x) != pc_rtx)
2243         return;
2244
2245       switch (GET_CODE (SET_SRC (x)))
2246         {
2247         case PC:
2248         case RETURN:
2249           return;
2250
2251         case LABEL_REF:
2252           set_label_offsets (XEXP (SET_SRC (x), 0), insn, initial_p);
2253           return;
2254
2255         case IF_THEN_ELSE:
2256           tem = XEXP (SET_SRC (x), 1);
2257           if (GET_CODE (tem) == LABEL_REF)
2258             set_label_offsets (XEXP (tem, 0), insn, initial_p);
2259           else if (GET_CODE (tem) != PC && GET_CODE (tem) != RETURN)
2260             break;
2261
2262           tem = XEXP (SET_SRC (x), 2);
2263           if (GET_CODE (tem) == LABEL_REF)
2264             set_label_offsets (XEXP (tem, 0), insn, initial_p);
2265           else if (GET_CODE (tem) != PC && GET_CODE (tem) != RETURN)
2266             break;
2267           return;
2268         }
2269
2270       /* If we reach here, all eliminations must be at their initial
2271          offset because we are doing a jump to a variable address.  */
2272       for (p = reg_eliminate; p < &reg_eliminate[NUM_ELIMINABLE_REGS]; p++)
2273         if (p->offset != p->initial_offset)
2274           p->can_eliminate = 0;
2275     }
2276 }
2277 \f
2278 /* Used for communication between the next two function to properly share
2279    the vector for an ASM_OPERANDS.  */
2280
2281 static struct rtvec_def *old_asm_operands_vec, *new_asm_operands_vec;
2282
2283 /* Scan X and replace any eliminable registers (such as fp) with a
2284    replacement (such as sp), plus an offset.
2285
2286    MEM_MODE is the mode of an enclosing MEM.  We need this to know how
2287    much to adjust a register for, e.g., PRE_DEC.  Also, if we are inside a
2288    MEM, we are allowed to replace a sum of a register and the constant zero
2289    with the register, which we cannot do outside a MEM.  In addition, we need
2290    to record the fact that a register is referenced outside a MEM.
2291
2292    If INSN is nonzero, it is the insn containing X.  If we replace a REG
2293    in a SET_DEST with an equivalent MEM and INSN is non-zero, write a
2294    CLOBBER of the pseudo after INSN so find_equiv_regs will know that
2295    that the REG is being modified.
2296
2297    If we see a modification to a register we know about, take the
2298    appropriate action (see case SET, below).
2299
2300    REG_EQUIV_MEM and REG_EQUIV_ADDRESS contain address that have had
2301    replacements done assuming all offsets are at their initial values.  If
2302    they are not, or if REG_EQUIV_ADDRESS is nonzero for a pseudo we
2303    encounter, return the actual location so that find_reloads will do
2304    the proper thing.  */
2305
2306 rtx
2307 eliminate_regs (x, mem_mode, insn)
2308      rtx x;
2309      enum machine_mode mem_mode;
2310      rtx insn;
2311 {
2312   enum rtx_code code = GET_CODE (x);
2313   struct elim_table *ep;
2314   int regno;
2315   rtx new;
2316   int i, j;
2317   char *fmt;
2318   int copied = 0;
2319
2320   switch (code)
2321     {
2322     case CONST_INT:
2323     case CONST_DOUBLE:
2324     case CONST:
2325     case SYMBOL_REF:
2326     case CODE_LABEL:
2327     case PC:
2328     case CC0:
2329     case ASM_INPUT:
2330     case ADDR_VEC:
2331     case ADDR_DIFF_VEC:
2332     case RETURN:
2333       return x;
2334
2335     case REG:
2336       regno = REGNO (x);
2337
2338       /* First handle the case where we encounter a bare register that
2339          is eliminable.  Replace it with a PLUS.  */
2340       if (regno < FIRST_PSEUDO_REGISTER)
2341         {
2342           for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS];
2343                ep++)
2344             if (ep->from_rtx == x && ep->can_eliminate)
2345               {
2346                 if (! mem_mode)
2347                   ep->ref_outside_mem = 1;
2348                 return plus_constant (ep->to_rtx, ep->previous_offset);
2349               }
2350
2351         }
2352       else if (reg_equiv_memory_loc && reg_equiv_memory_loc[regno]
2353                && (reg_equiv_address[regno] || num_not_at_initial_offset))
2354         {
2355           /* In this case, find_reloads would attempt to either use an
2356              incorrect address (if something is not at its initial offset)
2357              or substitute an replaced address into an insn (which loses
2358              if the offset is changed by some later action).  So we simply
2359              return the replaced stack slot (assuming it is changed by
2360              elimination) and ignore the fact that this is actually a
2361              reference to the pseudo.  Ensure we make a copy of the
2362              address in case it is shared.  */
2363           new = eliminate_regs (reg_equiv_memory_loc[regno], mem_mode, 0);
2364           if (new != reg_equiv_memory_loc[regno])
2365             return copy_rtx (new);
2366         }
2367       return x;
2368
2369     case PLUS:
2370       /* If this is the sum of an eliminable register and a constant, rework
2371          the sum.   */
2372       if (GET_CODE (XEXP (x, 0)) == REG
2373           && REGNO (XEXP (x, 0)) < FIRST_PSEUDO_REGISTER
2374           && CONSTANT_P (XEXP (x, 1)))
2375         {
2376           for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS];
2377                ep++)
2378             if (ep->from_rtx == XEXP (x, 0) && ep->can_eliminate)
2379               {
2380                 if (! mem_mode)
2381                   ep->ref_outside_mem = 1;
2382
2383                 /* The only time we want to replace a PLUS with a REG (this
2384                    occurs when the constant operand of the PLUS is the negative
2385                    of the offset) is when we are inside a MEM.  We won't want
2386                    to do so at other times because that would change the
2387                    structure of the insn in a way that reload can't handle.
2388                    We special-case the commonest situation in
2389                    eliminate_regs_in_insn, so just replace a PLUS with a
2390                    PLUS here, unless inside a MEM.  */
2391                 if (mem_mode && GET_CODE (XEXP (x, 1)) == CONST_INT
2392                     && INTVAL (XEXP (x, 1)) == - ep->previous_offset)
2393                   return ep->to_rtx;
2394                 else
2395                   return gen_rtx (PLUS, Pmode, ep->to_rtx,
2396                                   plus_constant (XEXP (x, 1),
2397                                                  ep->previous_offset));
2398               }
2399
2400           /* If the register is not eliminable, we are done since the other
2401              operand is a constant.  */
2402           return x;
2403         }
2404
2405       /* If this is part of an address, we want to bring any constant to the
2406          outermost PLUS.  We will do this by doing register replacement in
2407          our operands and seeing if a constant shows up in one of them.
2408
2409          We assume here this is part of an address (or a "load address" insn)
2410          since an eliminable register is not likely to appear in any other
2411          context.
2412
2413          If we have (plus (eliminable) (reg)), we want to produce
2414          (plus (plus (replacement) (reg) (const))).  If this was part of a
2415          normal add insn, (plus (replacement) (reg)) will be pushed as a
2416          reload.  This is the desired action.  */
2417
2418       {
2419         rtx new0 = eliminate_regs (XEXP (x, 0), mem_mode, 0);
2420         rtx new1 = eliminate_regs (XEXP (x, 1), mem_mode, 0);
2421
2422         if (new0 != XEXP (x, 0) || new1 != XEXP (x, 1))
2423           {
2424             /* If one side is a PLUS and the other side is a pseudo that
2425                didn't get a hard register but has a reg_equiv_constant,
2426                we must replace the constant here since it may no longer
2427                be in the position of any operand.  */
2428             if (GET_CODE (new0) == PLUS && GET_CODE (new1) == REG
2429                 && REGNO (new1) >= FIRST_PSEUDO_REGISTER
2430                 && reg_renumber[REGNO (new1)] < 0
2431                 && reg_equiv_constant != 0
2432                 && reg_equiv_constant[REGNO (new1)] != 0)
2433               new1 = reg_equiv_constant[REGNO (new1)];
2434             else if (GET_CODE (new1) == PLUS && GET_CODE (new0) == REG
2435                      && REGNO (new0) >= FIRST_PSEUDO_REGISTER
2436                      && reg_renumber[REGNO (new0)] < 0
2437                      && reg_equiv_constant[REGNO (new0)] != 0)
2438               new0 = reg_equiv_constant[REGNO (new0)];
2439
2440             new = form_sum (new0, new1);
2441
2442             /* As above, if we are not inside a MEM we do not want to
2443                turn a PLUS into something else.  We might try to do so here
2444                for an addition of 0 if we aren't optimizing.  */
2445             if (! mem_mode && GET_CODE (new) != PLUS)
2446               return gen_rtx (PLUS, GET_MODE (x), new, const0_rtx);
2447             else
2448               return new;
2449           }
2450       }
2451       return x;
2452
2453     case EXPR_LIST:
2454       /* If we have something in XEXP (x, 0), the usual case, eliminate it.  */
2455       if (XEXP (x, 0))
2456         {
2457           new = eliminate_regs (XEXP (x, 0), mem_mode, 0);
2458           if (new != XEXP (x, 0))
2459             x = gen_rtx (EXPR_LIST, REG_NOTE_KIND (x), new, XEXP (x, 1));
2460         }
2461
2462       /* ... fall through ... */
2463
2464     case INSN_LIST:
2465       /* Now do eliminations in the rest of the chain.  If this was
2466          an EXPR_LIST, this might result in allocating more memory than is
2467          strictly needed, but it simplifies the code.  */
2468       if (XEXP (x, 1))
2469         {
2470           new = eliminate_regs (XEXP (x, 1), mem_mode, 0);
2471           if (new != XEXP (x, 1))
2472             return gen_rtx (INSN_LIST, GET_MODE (x), XEXP (x, 0), new);
2473         }
2474       return x;
2475
2476     case CALL:
2477     case COMPARE:
2478     case MINUS:
2479     case MULT:
2480     case DIV:      case UDIV:
2481     case MOD:      case UMOD:
2482     case AND:      case IOR:      case XOR:
2483     case LSHIFT:   case ASHIFT:   case ROTATE:
2484     case ASHIFTRT: case LSHIFTRT: case ROTATERT:
2485     case NE:       case EQ:
2486     case GE:       case GT:       case GEU:    case GTU:
2487     case LE:       case LT:       case LEU:    case LTU:
2488       {
2489         rtx new0 = eliminate_regs (XEXP (x, 0), mem_mode, 0);
2490         rtx new1 = XEXP (x, 1) ? eliminate_regs (XEXP (x, 1), mem_mode, 0) : 0;
2491
2492         if (new0 != XEXP (x, 0) || new1 != XEXP (x, 1))
2493           return gen_rtx (code, GET_MODE (x), new0, new1);
2494       }
2495       return x;
2496
2497     case PRE_INC:
2498     case POST_INC:
2499     case PRE_DEC:
2500     case POST_DEC:
2501       for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
2502         if (ep->to_rtx == XEXP (x, 0))
2503           {
2504             if (code == PRE_DEC || code == POST_DEC)
2505               ep->offset += GET_MODE_SIZE (mem_mode);
2506             else
2507               ep->offset -= GET_MODE_SIZE (mem_mode);
2508           }
2509
2510       /* Fall through to generic unary operation case.  */
2511     case USE:
2512     case STRICT_LOW_PART:
2513     case NEG:          case NOT:
2514     case SIGN_EXTEND:  case ZERO_EXTEND:
2515     case TRUNCATE:     case FLOAT_EXTEND: case FLOAT_TRUNCATE:
2516     case FLOAT:        case FIX:
2517     case UNSIGNED_FIX: case UNSIGNED_FLOAT:
2518     case ABS:
2519     case SQRT:
2520     case FFS:
2521       new = eliminate_regs (XEXP (x, 0), mem_mode, 0);
2522       if (new != XEXP (x, 0))
2523         return gen_rtx (code, GET_MODE (x), new);
2524       return x;
2525
2526     case SUBREG:
2527       /* Similar to above processing, but preserve SUBREG_WORD.
2528          Convert (subreg (mem)) to (mem) if not paradoxical.
2529          Also, if we have a non-paradoxical (subreg (pseudo)) and the
2530          pseudo didn't get a hard reg, we must replace this with the
2531          eliminated version of the memory location because push_reloads
2532          may do the replacement in certain circumstances.  */
2533       if (GET_CODE (SUBREG_REG (x)) == REG
2534           && (GET_MODE_SIZE (GET_MODE (x))
2535               <= GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
2536           && reg_equiv_memory_loc != 0
2537           && reg_equiv_memory_loc[REGNO (SUBREG_REG (x))] != 0)
2538         {
2539           new = eliminate_regs (reg_equiv_memory_loc[REGNO (SUBREG_REG (x))],
2540                                 mem_mode, 0);
2541
2542           /* If we didn't change anything, we must retain the pseudo.  */
2543           if (new == reg_equiv_memory_loc[REGNO (SUBREG_REG (x))])
2544             new = XEXP (x, 0);
2545           else
2546             /* Otherwise, ensure NEW isn't shared in case we have to reload
2547                it.  */
2548             new = copy_rtx (new);
2549         }
2550       else
2551         new = eliminate_regs (SUBREG_REG (x), mem_mode, 0);
2552
2553       if (new != XEXP (x, 0))
2554         {
2555           if (GET_CODE (new) == MEM
2556               && (GET_MODE_SIZE (GET_MODE (x))
2557                   <= GET_MODE_SIZE (GET_MODE (new))))
2558             {
2559               int offset = SUBREG_WORD (x) * UNITS_PER_WORD;
2560               enum machine_mode mode = GET_MODE (x);
2561
2562 #if BYTES_BIG_ENDIAN
2563               offset += (MIN (UNITS_PER_WORD,
2564                               GET_MODE_SIZE (GET_MODE (new)))
2565                          - MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode)));
2566 #endif
2567
2568               PUT_MODE (new, mode);
2569               XEXP (new, 0) = plus_constant (XEXP (new, 0), offset);
2570               return new;
2571             }
2572           else
2573             return gen_rtx (SUBREG, GET_MODE (x), new, SUBREG_WORD (x));
2574         }
2575
2576       return x;
2577
2578     case CLOBBER:
2579       /* If clobbering a register that is the replacement register for an
2580          elimination we still think can be peformed, note that it cannot
2581          be performed.  Otherwise, we need not be concerned about it.  */
2582       for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
2583         if (ep->to_rtx == XEXP (x, 0))
2584           ep->can_eliminate = 0;
2585
2586       return x;
2587
2588     case ASM_OPERANDS:
2589       {
2590         rtx *temp_vec;
2591         /* Properly handle sharing input and constraint vectors.  */
2592         if (ASM_OPERANDS_INPUT_VEC (x) != old_asm_operands_vec)
2593           {
2594             /* When we come to a new vector not seen before,
2595                scan all its elements; keep the old vector if none
2596                of them changes; otherwise, make a copy.  */
2597             old_asm_operands_vec = ASM_OPERANDS_INPUT_VEC (x);
2598             temp_vec = (rtx *) alloca (XVECLEN (x, 3) * sizeof (rtx));
2599             for (i = 0; i < ASM_OPERANDS_INPUT_LENGTH (x); i++)
2600               temp_vec[i] = eliminate_regs (ASM_OPERANDS_INPUT (x, i),
2601                                             mem_mode, 0);
2602
2603             for (i = 0; i < ASM_OPERANDS_INPUT_LENGTH (x); i++)
2604               if (temp_vec[i] != ASM_OPERANDS_INPUT (x, i))
2605                 break;
2606
2607             if (i == ASM_OPERANDS_INPUT_LENGTH (x))
2608               new_asm_operands_vec = old_asm_operands_vec;
2609             else
2610               new_asm_operands_vec
2611                 = gen_rtvec_v (ASM_OPERANDS_INPUT_LENGTH (x), temp_vec);
2612           }
2613
2614         /* If we had to copy the vector, copy the entire ASM_OPERANDS.  */
2615         if (new_asm_operands_vec == old_asm_operands_vec)
2616           return x;
2617
2618         new = gen_rtx (ASM_OPERANDS, VOIDmode, ASM_OPERANDS_TEMPLATE (x),
2619                        ASM_OPERANDS_OUTPUT_CONSTRAINT (x),
2620                        ASM_OPERANDS_OUTPUT_IDX (x), new_asm_operands_vec,
2621                        ASM_OPERANDS_INPUT_CONSTRAINT_VEC (x),
2622                        ASM_OPERANDS_SOURCE_FILE (x),
2623                        ASM_OPERANDS_SOURCE_LINE (x));
2624         new->volatil = x->volatil;
2625         return new;
2626       }
2627
2628     case SET:
2629       /* Check for setting a register that we know about.  */
2630       if (GET_CODE (SET_DEST (x)) == REG)
2631         {
2632           /* See if this is setting the replacement register for an
2633              elimination.
2634
2635              If DEST is the frame pointer, we do nothing because we assume that
2636              all assignments to the frame pointer are for non-local gotos and
2637              are being done at a time when they are valid and do not disturb
2638              anything else.  Some machines want to eliminate a fake argument
2639              pointer with either the frame or stack pointer.  Assignments to
2640              the frame pointer must not prevent this elimination.  */
2641
2642           for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS];
2643                ep++)
2644             if (ep->to_rtx == SET_DEST (x)
2645                 && SET_DEST (x) != frame_pointer_rtx)
2646               {
2647                 /* If it is being incrememented, adjust the offset.  Otherwise,
2648                    this elimination can't be done.  */
2649                 rtx src = SET_SRC (x);
2650
2651                 if (GET_CODE (src) == PLUS
2652                     && XEXP (src, 0) == SET_DEST (x)
2653                     && GET_CODE (XEXP (src, 1)) == CONST_INT)
2654                   ep->offset -= INTVAL (XEXP (src, 1));
2655                 else
2656                   ep->can_eliminate = 0;
2657               }
2658
2659           /* Now check to see we are assigning to a register that can be
2660              eliminated.  If so, it must be as part of a PARALLEL, since we
2661              will not have been called if this is a single SET.  So indicate
2662              that we can no longer eliminate this reg.  */
2663           for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS];
2664                ep++)
2665             if (ep->from_rtx == SET_DEST (x) && ep->can_eliminate)
2666               ep->can_eliminate = 0;
2667         }
2668
2669       /* Now avoid the loop below in this common case.  */
2670       {
2671         rtx new0 = eliminate_regs (SET_DEST (x), 0, 0);
2672         rtx new1 = eliminate_regs (SET_SRC (x), 0, 0);
2673
2674         /* If SET_DEST changed from a REG to a MEM and INSN is non-zero,
2675            write a CLOBBER insn.  */
2676         if (GET_CODE (SET_DEST (x)) == REG && GET_CODE (new0) == MEM
2677             && insn != 0)
2678           emit_insn_after (gen_rtx (CLOBBER, VOIDmode, SET_DEST (x)), insn);
2679
2680         if (new0 != SET_DEST (x) || new1 != SET_SRC (x))
2681           return gen_rtx (SET, VOIDmode, new0, new1);
2682       }
2683
2684       return x;
2685
2686     case MEM:
2687       /* Our only special processing is to pass the mode of the MEM to our
2688          recursive call and copy the flags.  While we are here, handle this
2689          case more efficiently.  */
2690       new = eliminate_regs (XEXP (x, 0), GET_MODE (x), 0);
2691       if (new != XEXP (x, 0))
2692         {
2693           new = gen_rtx (MEM, GET_MODE (x), new);
2694           new->volatil = x->volatil;
2695           new->unchanging = x->unchanging;
2696           new->in_struct = x->in_struct;
2697           return new;
2698         }
2699       else
2700         return x;
2701     }
2702
2703   /* Process each of our operands recursively.  If any have changed, make a
2704      copy of the rtx.  */
2705   fmt = GET_RTX_FORMAT (code);
2706   for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
2707     {
2708       if (*fmt == 'e')
2709         {
2710           new = eliminate_regs (XEXP (x, i), mem_mode, 0);
2711           if (new != XEXP (x, i) && ! copied)
2712             {
2713               rtx new_x = rtx_alloc (code);
2714               bcopy (x, new_x, (sizeof (*new_x) - sizeof (new_x->fld)
2715                                 + (sizeof (new_x->fld[0])
2716                                    * GET_RTX_LENGTH (code))));
2717               x = new_x;
2718               copied = 1;
2719             }
2720           XEXP (x, i) = new;
2721         }
2722       else if (*fmt == 'E')
2723         {
2724           int copied_vec = 0;
2725           for (j = 0; j < XVECLEN (x, i); j++)
2726             {
2727               new = eliminate_regs (XVECEXP (x, i, j), mem_mode, insn);
2728               if (new != XVECEXP (x, i, j) && ! copied_vec)
2729                 {
2730                   rtvec new_v = gen_rtvec_v (XVECLEN (x, i),
2731                                              &XVECEXP (x, i, 0));
2732                   if (! copied)
2733                     {
2734                       rtx new_x = rtx_alloc (code);
2735                       bcopy (x, new_x, (sizeof (*new_x) - sizeof (new_x->fld)
2736                                         + (sizeof (new_x->fld[0])
2737                                            * GET_RTX_LENGTH (code))));
2738                       x = new_x;
2739                       copied = 1;
2740                     }
2741                   XVEC (x, i) = new_v;
2742                   copied_vec = 1;
2743                 }
2744               XVECEXP (x, i, j) = new;
2745             }
2746         }
2747     }
2748
2749   return x;
2750 }
2751 \f
2752 /* Scan INSN and eliminate all eliminable registers in it.
2753
2754    If REPLACE is nonzero, do the replacement destructively.  Also
2755    delete the insn as dead it if it is setting an eliminable register.
2756
2757    If REPLACE is zero, do all our allocations in reload_obstack.
2758
2759    If no eliminations were done and this insn doesn't require any elimination
2760    processing (these are not identical conditions: it might be updating sp,
2761    but not referencing fp; this needs to be seen during reload_as_needed so
2762    that the offset between fp and sp can be taken into consideration), zero
2763    is returned.  Otherwise, 1 is returned.  */
2764
2765 static int
2766 eliminate_regs_in_insn (insn, replace)
2767      rtx insn;
2768      int replace;
2769 {
2770   rtx old_body = PATTERN (insn);
2771   rtx new_body;
2772   int val = 0;
2773   struct elim_table *ep;
2774
2775   if (! replace)
2776     push_obstacks (&reload_obstack, &reload_obstack);
2777
2778   if (GET_CODE (old_body) == SET && GET_CODE (SET_DEST (old_body)) == REG
2779       && REGNO (SET_DEST (old_body)) < FIRST_PSEUDO_REGISTER)
2780     {
2781       /* Check for setting an eliminable register.  */
2782       for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
2783         if (ep->from_rtx == SET_DEST (old_body) && ep->can_eliminate)
2784           {
2785             /* In this case this insn isn't serving a useful purpose.  We
2786                will delete it in reload_as_needed once we know that this
2787                elimination is, in fact, being done.
2788
2789                If REPLACE isn't set, we can't delete this insn, but neededn't
2790                process it since it won't be used unless something changes.  */
2791             if (replace)
2792               delete_dead_insn (insn);
2793             val = 1;
2794             goto done;
2795           }
2796
2797       /* Check for (set (reg) (plus (reg from) (offset))) where the offset
2798          in the insn is the negative of the offset in FROM.  Substitute
2799          (set (reg) (reg to)) for the insn and change its code.
2800
2801          We have to do this here, rather than in eliminate_regs, do that we can
2802          change the insn code.  */
2803
2804       if (GET_CODE (SET_SRC (old_body)) == PLUS
2805           && GET_CODE (XEXP (SET_SRC (old_body), 0)) == REG
2806           && GET_CODE (XEXP (SET_SRC (old_body), 1)) == CONST_INT)
2807         for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS];
2808              ep++)
2809           if (ep->from_rtx == XEXP (SET_SRC (old_body), 0)
2810               && ep->can_eliminate
2811               && ep->offset == - INTVAL (XEXP (SET_SRC (old_body), 1)))
2812             {
2813               PATTERN (insn) = gen_rtx (SET, VOIDmode,
2814                                         SET_DEST (old_body), ep->to_rtx);
2815               INSN_CODE (insn) = -1;
2816               val = 1;
2817               goto done;
2818             }
2819     }
2820
2821   old_asm_operands_vec = 0;
2822
2823   /* Replace the body of this insn with a substituted form.  If we changed
2824      something, return non-zero.  If this is the final call for this
2825      insn (REPLACE is non-zero), do the elimination in REG_NOTES as well.
2826
2827      If we are replacing a body that was a (set X (plus Y Z)), try to
2828      re-recognize the insn.  We do this in case we had a simple addition
2829      but now can do this as a load-address.  This saves an insn in this
2830      common case. */
2831
2832   new_body = eliminate_regs (old_body, 0, replace ? insn : 0);
2833   if (new_body != old_body)
2834     {
2835       if (GET_CODE (old_body) != SET || GET_CODE (SET_SRC (old_body)) != PLUS
2836           || ! validate_change (insn, &PATTERN (insn), new_body, 0))
2837         PATTERN (insn) = new_body;
2838
2839       if (replace && REG_NOTES (insn))
2840         REG_NOTES (insn) = eliminate_regs (REG_NOTES (insn), 0, 0);
2841       val = 1;
2842     }
2843
2844   /* Loop through all elimination pairs.  See if any have changed and
2845      recalculate the number not at initial offset.
2846
2847      Compute the maximum offset (minimum offset if the stack does not
2848      grow downward) for each elimination pair.
2849
2850      We also detect a cases where register elimination cannot be done,
2851      namely, if a register would be both changed and referenced outside a MEM
2852      in the resulting insn since such an insn is often undefined and, even if
2853      not, we cannot know what meaning will be given to it.  Note that it is
2854      valid to have a register used in an address in an insn that changes it
2855      (presumably with a pre- or post-increment or decrement).
2856
2857      If anything changes, return nonzero.  */
2858
2859   num_not_at_initial_offset = 0;
2860   for (ep = reg_eliminate; ep < &reg_eliminate[NUM_ELIMINABLE_REGS]; ep++)
2861     {
2862       if (ep->previous_offset != ep->offset && ep->ref_outside_mem)
2863         ep->can_eliminate = 0;
2864
2865       ep->ref_outside_mem = 0;
2866
2867       if (ep->previous_offset != ep->offset)
2868         val = 1;
2869
2870       ep->previous_offset = ep->offset;
2871       if (ep->can_eliminate && ep->offset != ep->initial_offset)
2872         num_not_at_initial_offset++;
2873
2874 #ifdef STACK_GROWS_DOWNWARD
2875       ep->max_offset = MAX (ep->max_offset, ep->offset);
2876 #else
2877       ep->max_offset = MIN (ep->max_offset, ep->offset);
2878 #endif
2879     }
2880
2881  done:
2882   if (! replace)
2883     pop_obstacks ();
2884
2885   return val;
2886 }
2887
2888 /* Given X, a SET or CLOBBER of DEST, if DEST is the target of a register
2889    replacement we currently believe is valid, mark it as not eliminable if X
2890    modifies DEST in any way other than by adding a constant integer to it.
2891
2892    If DEST is the frame pointer, we do nothing because we assume that
2893    all assignments to the frame pointer are nonlocal gotos and are being done
2894    at a time when they are valid and do not disturb anything else.
2895    Some machines want to eliminate a fake argument pointer with either the
2896    frame or stack pointer.  Assignments to the frame pointer must not prevent
2897    this elimination.
2898
2899    Called via note_stores from reload before starting its passes to scan
2900    the insns of the function.  */
2901
2902 static void
2903 mark_not_eliminable (dest, x)
2904      rtx dest;
2905      rtx x;
2906 {
2907   register int i;
2908
2909   /* A SUBREG of a hard register here is just changing its mode.  We should
2910      not see a SUBREG of an eliminable hard register, but check just in
2911      case.  */
2912   if (GET_CODE (dest) == SUBREG)
2913     dest = SUBREG_REG (dest);
2914
2915   if (dest == frame_pointer_rtx)
2916     return;
2917
2918   for (i = 0; i < NUM_ELIMINABLE_REGS; i++)
2919     if (reg_eliminate[i].can_eliminate && dest == reg_eliminate[i].to_rtx
2920         && (GET_CODE (x) != SET
2921             || GET_CODE (SET_SRC (x)) != PLUS
2922             || XEXP (SET_SRC (x), 0) != dest
2923             || GET_CODE (XEXP (SET_SRC (x), 1)) != CONST_INT))
2924       {
2925         reg_eliminate[i].can_eliminate_previous
2926           = reg_eliminate[i].can_eliminate = 0;
2927         num_eliminable--;
2928       }
2929 }
2930 \f
2931 /* Kick all pseudos out of hard register REGNO.
2932    If GLOBAL is nonzero, try to find someplace else to put them.
2933    If DUMPFILE is nonzero, log actions taken on that file.
2934
2935    If CANT_ELIMINATE is nonzero, it means that we are doing this spill
2936    because we found we can't eliminate some register.  In the case, no pseudos
2937    are allowed to be in the register, even if they are only in a block that
2938    doesn't require spill registers, unlike the case when we are spilling this
2939    hard reg to produce another spill register.
2940
2941    Return nonzero if any pseudos needed to be kicked out.  */
2942
2943 static int
2944 spill_hard_reg (regno, global, dumpfile, cant_eliminate)
2945      register int regno;
2946      int global;
2947      FILE *dumpfile;
2948      int cant_eliminate;
2949 {
2950   int something_changed = 0;
2951   register int i;
2952
2953   SET_HARD_REG_BIT (forbidden_regs, regno);
2954
2955   /* Spill every pseudo reg that was allocated to this reg
2956      or to something that overlaps this reg.  */
2957
2958   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
2959     if (reg_renumber[i] >= 0
2960         && reg_renumber[i] <= regno
2961         && (reg_renumber[i]
2962             + HARD_REGNO_NREGS (reg_renumber[i],
2963                                 PSEUDO_REGNO_MODE (i))
2964             > regno))
2965       {
2966         enum reg_class class = REGNO_REG_CLASS (regno);
2967
2968         /* If this register belongs solely to a basic block which needed no
2969            spilling of any class that this register is contained in,
2970            leave it be, unless we are spilling this register because
2971            it was a hard register that can't be eliminated.   */
2972
2973         if (! cant_eliminate
2974             && basic_block_needs[0]
2975             && reg_basic_block[i] >= 0
2976             && basic_block_needs[(int) class][reg_basic_block[i]] == 0)
2977           {
2978             enum reg_class *p;
2979
2980             for (p = reg_class_superclasses[(int) class];
2981                  *p != LIM_REG_CLASSES; p++)
2982               if (basic_block_needs[(int) *p][reg_basic_block[i]] > 0)
2983                 break;
2984
2985             if (*p == LIM_REG_CLASSES)
2986               continue;
2987           }
2988
2989         /* Mark it as no longer having a hard register home.  */
2990         reg_renumber[i] = -1;
2991         /* We will need to scan everything again.  */
2992         something_changed = 1;
2993         if (global)
2994             retry_global_alloc (i, forbidden_regs);
2995
2996         alter_reg (i, regno);
2997         if (dumpfile)
2998           {
2999             if (reg_renumber[i] == -1)
3000               fprintf (dumpfile, " Register %d now on stack.\n\n", i);
3001             else
3002               fprintf (dumpfile, " Register %d now in %d.\n\n",
3003                        i, reg_renumber[i]);
3004           }
3005       }
3006
3007   return something_changed;
3008 }
3009 \f
3010 /* Find all paradoxical subregs within X and update reg_max_ref_width.  */
3011
3012 static void
3013 scan_paradoxical_subregs (x)
3014      register rtx x;
3015 {
3016   register int i;
3017   register char *fmt;
3018   register enum rtx_code code = GET_CODE (x);
3019
3020   switch (code)
3021     {
3022     case CONST_INT:
3023     case CONST:
3024     case SYMBOL_REF:
3025     case LABEL_REF:
3026     case CONST_DOUBLE:
3027     case CC0:
3028     case PC:
3029     case REG:
3030     case USE:
3031     case CLOBBER:
3032       return;
3033
3034     case SUBREG:
3035       if (GET_CODE (SUBREG_REG (x)) == REG
3036           && GET_MODE_SIZE (GET_MODE (x)) > GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
3037         reg_max_ref_width[REGNO (SUBREG_REG (x))]
3038           = GET_MODE_SIZE (GET_MODE (x));
3039       return;
3040     }
3041
3042   fmt = GET_RTX_FORMAT (code);
3043   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
3044     {
3045       if (fmt[i] == 'e')
3046         scan_paradoxical_subregs (XEXP (x, i));
3047       else if (fmt[i] == 'E')
3048         {
3049           register int j;
3050           for (j = XVECLEN (x, i) - 1; j >=0; j--)
3051             scan_paradoxical_subregs (XVECEXP (x, i, j));
3052         }
3053     }
3054 }
3055 \f
3056 struct hard_reg_n_uses { int regno; int uses; };
3057
3058 static int
3059 hard_reg_use_compare (p1, p2)
3060      struct hard_reg_n_uses *p1, *p2;
3061 {
3062   int tem = p1->uses - p2->uses;
3063   if (tem != 0) return tem;
3064   /* If regs are equally good, sort by regno,
3065      so that the results of qsort leave nothing to chance.  */
3066   return p1->regno - p2->regno;
3067 }
3068
3069 /* Choose the order to consider regs for use as reload registers
3070    based on how much trouble would be caused by spilling one.
3071    Store them in order of decreasing preference in potential_reload_regs.  */
3072
3073 static void
3074 order_regs_for_reload ()
3075 {
3076   register int i;
3077   register int o = 0;
3078   int large = 0;
3079
3080   struct hard_reg_n_uses hard_reg_n_uses[FIRST_PSEUDO_REGISTER];
3081
3082   CLEAR_HARD_REG_SET (bad_spill_regs);
3083
3084   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3085     potential_reload_regs[i] = -1;
3086
3087   /* Count number of uses of each hard reg by pseudo regs allocated to it
3088      and then order them by decreasing use.  */
3089
3090   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3091     {
3092       hard_reg_n_uses[i].uses = 0;
3093       hard_reg_n_uses[i].regno = i;
3094     }
3095
3096   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
3097     {
3098       int regno = reg_renumber[i];
3099       if (regno >= 0)
3100         {
3101           int lim = regno + HARD_REGNO_NREGS (regno, PSEUDO_REGNO_MODE (i));
3102           while (regno < lim)
3103             hard_reg_n_uses[regno++].uses += reg_n_refs[i];
3104         }
3105       large += reg_n_refs[i];
3106     }
3107
3108   /* Now fixed registers (which cannot safely be used for reloading)
3109      get a very high use count so they will be considered least desirable.
3110      Registers used explicitly in the rtl code are almost as bad.  */
3111
3112   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3113     {
3114       if (fixed_regs[i])
3115         {
3116           hard_reg_n_uses[i].uses += 2 * large + 2;
3117           SET_HARD_REG_BIT (bad_spill_regs, i);
3118         }
3119       else if (regs_explicitly_used[i])
3120         {
3121           hard_reg_n_uses[i].uses += large + 1;
3122           /* ??? We are doing this here because of the potential that
3123              bad code may be generated if a register explicitly used in
3124              an insn was used as a spill register for that insn.  But
3125              not using these are spill registers may lose on some machine.
3126              We'll have to see how this works out.  */
3127           SET_HARD_REG_BIT (bad_spill_regs, i);
3128         }
3129     }
3130   hard_reg_n_uses[FRAME_POINTER_REGNUM].uses += 2 * large + 2;
3131   SET_HARD_REG_BIT (bad_spill_regs, FRAME_POINTER_REGNUM);
3132
3133 #ifdef ELIMINABLE_REGS
3134   /* If registers other than the frame pointer are eliminable, mark them as
3135      poor choices.  */
3136   for (i = 0; i < NUM_ELIMINABLE_REGS; i++)
3137     {
3138       hard_reg_n_uses[reg_eliminate[i].from].uses += 2 * large + 2;
3139       SET_HARD_REG_BIT (bad_spill_regs, reg_eliminate[i].from);
3140     }
3141 #endif
3142
3143   /* Prefer registers not so far used, for use in temporary loading.
3144      Among them, if REG_ALLOC_ORDER is defined, use that order.
3145      Otherwise, prefer registers not preserved by calls.  */
3146
3147 #ifdef REG_ALLOC_ORDER
3148   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3149     {
3150       int regno = reg_alloc_order[i];
3151
3152       if (hard_reg_n_uses[regno].uses == 0)
3153         potential_reload_regs[o++] = regno;
3154     }
3155 #else
3156   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3157     {
3158       if (hard_reg_n_uses[i].uses == 0 && call_used_regs[i])
3159         potential_reload_regs[o++] = i;
3160     }
3161   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3162     {
3163       if (hard_reg_n_uses[i].uses == 0 && ! call_used_regs[i])
3164         potential_reload_regs[o++] = i;
3165     }
3166 #endif
3167
3168   qsort (hard_reg_n_uses, FIRST_PSEUDO_REGISTER,
3169          sizeof hard_reg_n_uses[0], hard_reg_use_compare);
3170
3171   /* Now add the regs that are already used,
3172      preferring those used less often.  The fixed and otherwise forbidden
3173      registers will be at the end of this list.  */
3174
3175   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3176     if (hard_reg_n_uses[i].uses != 0)
3177       potential_reload_regs[o++] = hard_reg_n_uses[i].regno;
3178 }
3179 \f
3180 /* Reload pseudo-registers into hard regs around each insn as needed.
3181    Additional register load insns are output before the insn that needs it
3182    and perhaps store insns after insns that modify the reloaded pseudo reg.
3183
3184    reg_last_reload_reg and reg_reloaded_contents keep track of
3185    which pseudo-registers are already available in reload registers.
3186    We update these for the reloads that we perform,
3187    as the insns are scanned.  */
3188
3189 static void
3190 reload_as_needed (first, live_known)
3191      rtx first;
3192      int live_known;
3193 {
3194   register rtx insn;
3195   register int i;
3196   int this_block = 0;
3197   rtx x;
3198   rtx after_call = 0;
3199
3200   bzero (spill_reg_rtx, sizeof spill_reg_rtx);
3201   reg_last_reload_reg = (rtx *) alloca (max_regno * sizeof (rtx));
3202   bzero (reg_last_reload_reg, max_regno * sizeof (rtx));
3203   reg_has_output_reload = (char *) alloca (max_regno);
3204   for (i = 0; i < n_spills; i++)
3205     {
3206       reg_reloaded_contents[i] = -1;
3207       reg_reloaded_insn[i] = 0;
3208     }
3209
3210   /* Reset all offsets on eliminable registers to their initial values.  */
3211 #ifdef ELIMINABLE_REGS
3212   for (i = 0; i < NUM_ELIMINABLE_REGS; i++)
3213     {
3214       INITIAL_ELIMINATION_OFFSET (reg_eliminate[i].from, reg_eliminate[i].to,
3215                                   reg_eliminate[i].initial_offset)
3216       reg_eliminate[i].previous_offset
3217         = reg_eliminate[i].offset = reg_eliminate[i].initial_offset;
3218     }
3219 #else
3220   INITIAL_FRAME_POINTER_OFFSET (reg_eliminate[0].initial_offset);
3221   reg_eliminate[0].previous_offset
3222     = reg_eliminate[0].offset = reg_eliminate[0].initial_offset;
3223 #endif
3224
3225   num_not_at_initial_offset = 0;
3226
3227   for (insn = first; insn;)
3228     {
3229       register rtx next = NEXT_INSN (insn);
3230
3231       /* Notice when we move to a new basic block.  */
3232       if (live_known && basic_block_needs && this_block + 1 < n_basic_blocks
3233           && insn == basic_block_head[this_block+1])
3234         ++this_block;
3235
3236       /* If we pass a label, copy the offsets from the label information
3237          into the current offsets of each elimination.  */
3238       if (GET_CODE (insn) == CODE_LABEL)
3239         {
3240           num_not_at_initial_offset = 0;
3241           for (i = 0; i < NUM_ELIMINABLE_REGS; i++)
3242             {
3243               reg_eliminate[i].offset = reg_eliminate[i].previous_offset
3244                 = offsets_at[CODE_LABEL_NUMBER (insn)][i];
3245               if (reg_eliminate[i].offset != reg_eliminate[i].initial_offset)
3246                 num_not_at_initial_offset++;
3247             }
3248         }
3249
3250       else if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
3251         {
3252           rtx avoid_return_reg = 0;
3253
3254 #ifdef SMALL_REGISTER_CLASSES
3255           /* Set avoid_return_reg if this is an insn
3256              that might use the value of a function call.  */
3257           if (GET_CODE (insn) == CALL_INSN)
3258             {
3259               if (GET_CODE (PATTERN (insn)) == SET)
3260                 after_call = SET_DEST (PATTERN (insn));
3261               else if (GET_CODE (PATTERN (insn)) == PARALLEL
3262                        && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == SET)
3263                 after_call = SET_DEST (XVECEXP (PATTERN (insn), 0, 0));
3264               else
3265                 after_call = 0;
3266             }
3267           else if (after_call != 0
3268                    && !(GET_CODE (PATTERN (insn)) == SET
3269                         && SET_DEST (PATTERN (insn)) == stack_pointer_rtx))
3270             {
3271               if (reg_mentioned_p (after_call, PATTERN (insn)))
3272                 avoid_return_reg = after_call;
3273               after_call = 0;
3274             }
3275 #endif /* SMALL_REGISTER_CLASSES */
3276
3277           /* If this is a USE and CLOBBER of a MEM, ensure that any
3278              references to eliminable registers have been removed.  */
3279
3280           if ((GET_CODE (PATTERN (insn)) == USE
3281                || GET_CODE (PATTERN (insn)) == CLOBBER)
3282               && GET_CODE (XEXP (PATTERN (insn), 0)) == MEM)
3283             XEXP (XEXP (PATTERN (insn), 0), 0)
3284               = eliminate_regs (XEXP (XEXP (PATTERN (insn), 0), 0),
3285                                 GET_MODE (XEXP (PATTERN (insn), 0)), 0);
3286
3287           /* If we need to do register elimination processing, do so.
3288              This might delete the insn, in which case we are done.  */
3289           if (num_eliminable && GET_MODE (insn) == QImode)
3290             {
3291               eliminate_regs_in_insn (insn, 1);
3292               if (GET_CODE (insn) == NOTE)
3293                 {
3294                   insn = next;
3295                   continue;
3296                 }
3297             }
3298
3299           if (GET_MODE (insn) == VOIDmode)
3300             n_reloads = 0;
3301           /* First find the pseudo regs that must be reloaded for this insn.
3302              This info is returned in the tables reload_... (see reload.h).
3303              Also modify the body of INSN by substituting RELOAD
3304              rtx's for those pseudo regs.  */
3305           else
3306             {
3307               bzero (reg_has_output_reload, max_regno);
3308               CLEAR_HARD_REG_SET (reg_is_output_reload);
3309
3310               find_reloads (insn, 1, spill_indirect_levels, live_known,
3311                             spill_reg_order);
3312             }
3313
3314           if (n_reloads > 0)
3315             {
3316               int class;
3317
3318               /* If this block has not had spilling done for a
3319                  particular class, deactivate any optional reloads
3320                  of that class lest they try to use a spill-reg which isn't
3321                  available here.  If we have any non-optionals that need a
3322                  spill reg, abort.  */
3323
3324               for (class = 0; class < N_REG_CLASSES; class++)
3325                 if (basic_block_needs[class] != 0
3326                     && basic_block_needs[class][this_block] == 0)
3327                   for (i = 0; i < n_reloads; i++)
3328                     if (class == (int) reload_reg_class[i])
3329                       {
3330                         if (reload_optional[i])
3331                           reload_in[i] = reload_out[i] = reload_reg_rtx[i] = 0;
3332                         else if (reload_reg_rtx[i] == 0)
3333                           abort ();
3334                       }
3335
3336               /* Now compute which reload regs to reload them into.  Perhaps
3337                  reusing reload regs from previous insns, or else output
3338                  load insns to reload them.  Maybe output store insns too.
3339                  Record the choices of reload reg in reload_reg_rtx.  */
3340               choose_reload_regs (insn, avoid_return_reg);
3341
3342               /* Generate the insns to reload operands into or out of
3343                  their reload regs.  */
3344               emit_reload_insns (insn);
3345
3346               /* Substitute the chosen reload regs from reload_reg_rtx
3347                  into the insn's body (or perhaps into the bodies of other
3348                  load and store insn that we just made for reloading
3349                  and that we moved the structure into).  */
3350               subst_reloads ();
3351             }
3352           /* Any previously reloaded spilled pseudo reg, stored in this insn,
3353              is no longer validly lying around to save a future reload.
3354              Note that this does not detect pseudos that were reloaded
3355              for this insn in order to be stored in
3356              (obeying register constraints).  That is correct; such reload
3357              registers ARE still valid.  */
3358           note_stores (PATTERN (insn), forget_old_reloads_1);
3359
3360           /* There may have been CLOBBER insns placed after INSN.  So scan
3361              between INSN and NEXT and use them to forget old reloads.  */
3362           for (x = NEXT_INSN (insn); x != next; x = NEXT_INSN (x))
3363             if (GET_CODE (x) == INSN && GET_CODE (PATTERN (x)) == CLOBBER)
3364               note_stores (PATTERN (x), forget_old_reloads_1);
3365
3366 #ifdef AUTO_INC_DEC
3367           /* Likewise for regs altered by auto-increment in this insn.
3368              But note that the reg-notes are not changed by reloading:
3369              they still contain the pseudo-regs, not the spill regs.  */
3370           for (x = REG_NOTES (insn); x; x = XEXP (x, 1))
3371             if (REG_NOTE_KIND (x) == REG_INC)
3372               {
3373                 /* See if this pseudo reg was reloaded in this insn.
3374                    If so, its last-reload info is still valid
3375                    because it is based on this insn's reload.  */
3376                 for (i = 0; i < n_reloads; i++)
3377                   if (reload_out[i] == XEXP (x, 0))
3378                     break;
3379
3380                 if (i != n_reloads)
3381                   forget_old_reloads_1 (XEXP (x, 0));
3382               }
3383 #endif
3384         }
3385       /* A reload reg's contents are unknown after a label.  */
3386       if (GET_CODE (insn) == CODE_LABEL)
3387         for (i = 0; i < n_spills; i++)
3388           {
3389             reg_reloaded_contents[i] = -1;
3390             reg_reloaded_insn[i] = 0;
3391           }
3392
3393       /* Don't assume a reload reg is still good after a call insn
3394          if it is a call-used reg.  */
3395       if (GET_CODE (insn) == CODE_LABEL || GET_CODE (insn) == CALL_INSN)
3396         for (i = 0; i < n_spills; i++)
3397           if (call_used_regs[spill_regs[i]])
3398             {
3399               reg_reloaded_contents[i] = -1;
3400               reg_reloaded_insn[i] = 0;
3401             }
3402
3403       /* In case registers overlap, allow certain insns to invalidate
3404          particular hard registers.  */
3405
3406 #ifdef INSN_CLOBBERS_REGNO_P
3407       for (i = 0 ; i < n_spills ; i++)
3408         if (INSN_CLOBBERS_REGNO_P (insn, spill_regs[i]))
3409           {
3410             reg_reloaded_contents[i] = -1;
3411             reg_reloaded_insn[i] = 0;
3412           }
3413 #endif
3414
3415       insn = next;
3416
3417 #ifdef USE_C_ALLOCA
3418       alloca (0);
3419 #endif
3420     }
3421 }
3422
3423 /* Discard all record of any value reloaded from X,
3424    or reloaded in X from someplace else;
3425    unless X is an output reload reg of the current insn.
3426
3427    X may be a hard reg (the reload reg)
3428    or it may be a pseudo reg that was reloaded from.  */
3429
3430 static void
3431 forget_old_reloads_1 (x)
3432      rtx x;
3433 {
3434   register int regno;
3435   int nr;
3436
3437   if (GET_CODE (x) != REG)
3438     return;
3439
3440   regno = REGNO (x);
3441
3442   if (regno >= FIRST_PSEUDO_REGISTER)
3443     nr = 1;
3444   else
3445     {
3446       int i;
3447       nr = HARD_REGNO_NREGS (regno, GET_MODE (x));
3448       /* Storing into a spilled-reg invalidates its contents.
3449          This can happen if a block-local pseudo is allocated to that reg
3450          and it wasn't spilled because this block's total need is 0.
3451          Then some insn might have an optional reload and use this reg.  */
3452       for (i = 0; i < nr; i++)
3453         if (spill_reg_order[regno + i] >= 0
3454             /* But don't do this if the reg actually serves as an output
3455                reload reg in the current instruction.  */
3456             && (n_reloads == 0
3457                 || ! TEST_HARD_REG_BIT (reg_is_output_reload, regno + i)))
3458           {
3459             reg_reloaded_contents[spill_reg_order[regno + i]] = -1;
3460             reg_reloaded_insn[spill_reg_order[regno + i]] = 0;
3461           }
3462     }
3463
3464   /* Since value of X has changed,
3465      forget any value previously copied from it.  */
3466
3467   while (nr-- > 0)
3468     /* But don't forget a copy if this is the output reload
3469        that establishes the copy's validity.  */
3470     if (n_reloads == 0 || reg_has_output_reload[regno + nr] == 0)
3471       reg_last_reload_reg[regno + nr] = 0;
3472 }
3473 \f
3474 /* For each reload, the mode of the reload register.  */
3475 static enum machine_mode reload_mode[MAX_RELOADS];
3476
3477 /* For each reload, the largest number of registers it will require.  */
3478 static int reload_nregs[MAX_RELOADS];
3479
3480 /* Comparison function for qsort to decide which of two reloads
3481    should be handled first.  *P1 and *P2 are the reload numbers.  */
3482
3483 static int
3484 reload_reg_class_lower (p1, p2)
3485      short *p1, *p2;
3486 {
3487   register int r1 = *p1, r2 = *p2;
3488   register int t;
3489
3490   /* Consider required reloads before optional ones.  */
3491   t = reload_optional[r1] - reload_optional[r2];
3492   if (t != 0)
3493     return t;
3494
3495   /* Count all solitary classes before non-solitary ones.  */
3496   t = ((reg_class_size[(int) reload_reg_class[r2]] == 1)
3497        - (reg_class_size[(int) reload_reg_class[r1]] == 1));
3498   if (t != 0)
3499     return t;
3500
3501   /* Aside from solitaires, consider all multi-reg groups first.  */
3502   t = reload_nregs[r2] - reload_nregs[r1];
3503   if (t != 0)
3504     return t;
3505
3506   /* Consider reloads in order of increasing reg-class number.  */
3507   t = (int) reload_reg_class[r1] - (int) reload_reg_class[r2];
3508   if (t != 0)
3509     return t;
3510
3511   /* If reloads are equally urgent, sort by reload number,
3512      so that the results of qsort leave nothing to chance.  */
3513   return r1 - r2;
3514 }
3515 \f
3516 /* The following HARD_REG_SETs indicate when each hard register is
3517    used for a reload of various parts of the current insn.  */
3518
3519 /* If reg is in use as a reload reg for a RELOAD_OTHER reload.  */
3520 static HARD_REG_SET reload_reg_used;
3521 /* If reg is in use for a RELOAD_FOR_INPUT_RELOAD_ADDRESS reload.  */
3522 static HARD_REG_SET reload_reg_used_in_input_addr;
3523 /* If reg is in use for a RELOAD_FOR_OUTPUT_RELOAD_ADDRESS reload.  */
3524 static HARD_REG_SET reload_reg_used_in_output_addr;
3525 /* If reg is in use for a RELOAD_FOR_OPERAND_ADDRESS reload.  */
3526 static HARD_REG_SET reload_reg_used_in_op_addr;
3527 /* If reg is in use for a RELOAD_FOR_INPUT reload.  */
3528 static HARD_REG_SET reload_reg_used_in_input;
3529 /* If reg is in use for a RELOAD_FOR_OUTPUT reload.  */
3530 static HARD_REG_SET reload_reg_used_in_output;
3531
3532 /* If reg is in use as a reload reg for any sort of reload.  */
3533 static HARD_REG_SET reload_reg_used_at_all;
3534
3535 /* Mark reg REGNO as in use for a reload of the sort spec'd by WHEN_NEEDED.
3536    MODE is used to indicate how many consecutive regs are actually used.  */
3537
3538 static void
3539 mark_reload_reg_in_use (regno, when_needed, mode)
3540      int regno;
3541      enum reload_when_needed when_needed;
3542      enum machine_mode mode;
3543 {
3544   int nregs = HARD_REGNO_NREGS (regno, mode);
3545   int i;
3546
3547   for (i = regno; i < nregs + regno; i++)
3548     {
3549       switch (when_needed)
3550         {
3551         case RELOAD_OTHER:
3552           SET_HARD_REG_BIT (reload_reg_used, i);
3553           break;
3554
3555         case RELOAD_FOR_INPUT_RELOAD_ADDRESS:
3556           SET_HARD_REG_BIT (reload_reg_used_in_input_addr, i);
3557           break;
3558
3559         case RELOAD_FOR_OUTPUT_RELOAD_ADDRESS:
3560           SET_HARD_REG_BIT (reload_reg_used_in_output_addr, i);
3561           break;
3562
3563         case RELOAD_FOR_OPERAND_ADDRESS:
3564           SET_HARD_REG_BIT (reload_reg_used_in_op_addr, i);
3565           break;
3566
3567         case RELOAD_FOR_INPUT:
3568           SET_HARD_REG_BIT (reload_reg_used_in_input, i);
3569           break;
3570
3571         case RELOAD_FOR_OUTPUT:
3572           SET_HARD_REG_BIT (reload_reg_used_in_output, i);
3573           break;
3574         }
3575
3576       SET_HARD_REG_BIT (reload_reg_used_at_all, i);
3577     }
3578 }
3579
3580 /* 1 if reg REGNO is free as a reload reg for a reload of the sort
3581    specified by WHEN_NEEDED.  */
3582
3583 static int
3584 reload_reg_free_p (regno, when_needed)
3585      int regno;
3586      enum reload_when_needed when_needed;
3587 {
3588   /* In use for a RELOAD_OTHER means it's not available for anything.  */
3589   if (TEST_HARD_REG_BIT (reload_reg_used, regno))
3590     return 0;
3591   switch (when_needed)
3592     {
3593     case RELOAD_OTHER:
3594       /* In use for anything means not available for a RELOAD_OTHER.  */
3595       return ! TEST_HARD_REG_BIT (reload_reg_used_at_all, regno);
3596
3597       /* The other kinds of use can sometimes share a register.  */
3598     case RELOAD_FOR_INPUT:
3599       return (! TEST_HARD_REG_BIT (reload_reg_used_in_input, regno)
3600               && ! TEST_HARD_REG_BIT (reload_reg_used_in_op_addr, regno)
3601               && ! TEST_HARD_REG_BIT (reload_reg_used_in_input_addr, regno));
3602     case RELOAD_FOR_INPUT_RELOAD_ADDRESS:
3603       return (! TEST_HARD_REG_BIT (reload_reg_used_in_input_addr, regno)
3604               && ! TEST_HARD_REG_BIT (reload_reg_used_in_input, regno));
3605     case RELOAD_FOR_OUTPUT_RELOAD_ADDRESS:
3606       return (! TEST_HARD_REG_BIT (reload_reg_used_in_output_addr, regno)
3607               && ! TEST_HARD_REG_BIT (reload_reg_used_in_output, regno));
3608     case RELOAD_FOR_OPERAND_ADDRESS:
3609       return (! TEST_HARD_REG_BIT (reload_reg_used_in_op_addr, regno)
3610               && ! TEST_HARD_REG_BIT (reload_reg_used_in_input, regno)
3611               && ! TEST_HARD_REG_BIT (reload_reg_used_in_output, regno));
3612     case RELOAD_FOR_OUTPUT:
3613       return (! TEST_HARD_REG_BIT (reload_reg_used_in_op_addr, regno)
3614               && ! TEST_HARD_REG_BIT (reload_reg_used_in_output_addr, regno)
3615               && ! TEST_HARD_REG_BIT (reload_reg_used_in_output, regno));
3616     }
3617   abort ();
3618 }
3619
3620 /* Return 1 if the value in reload reg REGNO, as used by a reload
3621    needed for the part of the insn specified by WHEN_NEEDED,
3622    is not in use for a reload in any prior part of the insn.
3623
3624    We can assume that the reload reg was already tested for availability
3625    at the time it is needed, and we should not check this again,
3626    in case the reg has already been marked in use.  */
3627
3628 static int
3629 reload_reg_free_before_p (regno, when_needed)
3630      int regno;
3631      enum reload_when_needed when_needed;
3632 {
3633   switch (when_needed)
3634     {
3635     case RELOAD_OTHER:
3636       /* Since a RELOAD_OTHER reload claims the reg for the entire insn,
3637          its use starts from the beginning, so nothing can use it earlier.  */
3638       return 1;
3639
3640       /* If this use is for part of the insn,
3641          check the reg is not in use for any prior part.  */
3642     case RELOAD_FOR_OUTPUT_RELOAD_ADDRESS:
3643       if (TEST_HARD_REG_BIT (reload_reg_used_in_op_addr, regno))
3644         return 0;
3645     case RELOAD_FOR_OUTPUT:
3646       if (TEST_HARD_REG_BIT (reload_reg_used_in_input, regno))
3647         return 0;
3648     case RELOAD_FOR_OPERAND_ADDRESS:
3649       if (TEST_HARD_REG_BIT (reload_reg_used_in_input_addr, regno))
3650         return 0;
3651     case RELOAD_FOR_INPUT_RELOAD_ADDRESS:
3652     case RELOAD_FOR_INPUT:
3653       return 1;
3654     }
3655   abort ();
3656 }
3657
3658 /* Return 1 if the value in reload reg REGNO, as used by a reload
3659    needed for the part of the insn specified by WHEN_NEEDED,
3660    is still available in REGNO at the end of the insn.
3661
3662    We can assume that the reload reg was already tested for availability
3663    at the time it is needed, and we should not check this again,
3664    in case the reg has already been marked in use.  */
3665
3666 static int
3667 reload_reg_reaches_end_p (regno, when_needed)
3668      int regno;
3669      enum reload_when_needed when_needed;
3670 {
3671   switch (when_needed)
3672     {
3673     case RELOAD_OTHER:
3674       /* Since a RELOAD_OTHER reload claims the reg for the entire insn,
3675          its value must reach the end.  */
3676       return 1;
3677
3678       /* If this use is for part of the insn,
3679          its value reaches if no subsequent part uses the same register.  */
3680     case RELOAD_FOR_INPUT_RELOAD_ADDRESS:
3681     case RELOAD_FOR_INPUT:
3682       if (TEST_HARD_REG_BIT (reload_reg_used_in_op_addr, regno)
3683           || TEST_HARD_REG_BIT (reload_reg_used_in_output, regno))
3684         return 0;
3685     case RELOAD_FOR_OPERAND_ADDRESS:
3686       if (TEST_HARD_REG_BIT (reload_reg_used_in_output_addr, regno))
3687         return 0;
3688     case RELOAD_FOR_OUTPUT:
3689     case RELOAD_FOR_OUTPUT_RELOAD_ADDRESS:
3690       return 1;
3691     }
3692   abort ();
3693 }
3694 \f
3695 /* Vector of reload-numbers showing the order in which the reloads should
3696    be processed.  */
3697 short reload_order[MAX_RELOADS];
3698
3699 /* Indexed by reload number, 1 if incoming value
3700    inherited from previous insns.  */
3701 char reload_inherited[MAX_RELOADS];
3702
3703 /* For an inherited reload, this is the insn the reload was inherited from,
3704    if we know it.  Otherwise, this is 0.  */
3705 rtx reload_inheritance_insn[MAX_RELOADS];
3706
3707 /* If non-zero, this is a place to get the value of the reload,
3708    rather than using reload_in.  */
3709 rtx reload_override_in[MAX_RELOADS];
3710
3711 /* For each reload, the index in spill_regs of the spill register used,
3712    or -1 if we did not need one of the spill registers for this reload.  */
3713 int reload_spill_index[MAX_RELOADS];
3714
3715 /* Index of last register assigned as a spill register.  We allocate in
3716    a round-robin fashio.  */
3717
3718 static last_spill_reg = 0;
3719
3720 /* Find a spill register to use as a reload register for reload R.
3721    LAST_RELOAD is non-zero if this is the last reload for the insn being
3722    processed.
3723
3724    Set reload_reg_rtx[R] to the register allocated.
3725
3726    If NOERROR is nonzero, we return 1 if successful,
3727    or 0 if we couldn't find a spill reg and we didn't change anything.  */
3728
3729 static int
3730 allocate_reload_reg (r, insn, last_reload, noerror)
3731      int r;
3732      rtx insn;
3733      int last_reload;
3734      int noerror;
3735 {
3736   int i;
3737   int pass;
3738   int count;
3739   rtx new;
3740   int regno;
3741
3742   /* If we put this reload ahead, thinking it is a group,
3743      then insist on finding a group.  Otherwise we can grab a
3744      reg that some other reload needs.
3745      (That can happen when we have a 68000 DATA_OR_FP_REG
3746      which is a group of data regs or one fp reg.)
3747      We need not be so restrictive if there are no more reloads
3748      for this insn.
3749
3750      ??? Really it would be nicer to have smarter handling
3751      for that kind of reg class, where a problem like this is normal.
3752      Perhaps those classes should be avoided for reloading
3753      by use of more alternatives.  */
3754
3755   int force_group = reload_nregs[r] > 1 && ! last_reload;
3756
3757   /* If we want a single register and haven't yet found one,
3758      take any reg in the right class and not in use.
3759      If we want a consecutive group, here is where we look for it.
3760
3761      We use two passes so we can first look for reload regs to
3762      reuse, which are already in use for other reloads in this insn,
3763      and only then use additional registers.
3764      I think that maximizing reuse is needed to make sure we don't
3765      run out of reload regs.  Suppose we have three reloads, and
3766      reloads A and B can share regs.  These need two regs.
3767      Suppose A and B are given different regs.
3768      That leaves none for C.  */
3769   for (pass = 0; pass < 2; pass++)
3770     {
3771       /* I is the index in spill_regs.
3772          We advance it round-robin between insns to use all spill regs
3773          equally, so that inherited reloads have a chance
3774          of leapfrogging each other.  */
3775
3776       for (count = 0, i = last_spill_reg; count < n_spills; count++)
3777         {
3778           int class = (int) reload_reg_class[r];
3779
3780           i = (i + 1) % n_spills;
3781
3782           if (reload_reg_free_p (spill_regs[i], reload_when_needed[r])
3783               && TEST_HARD_REG_BIT (reg_class_contents[class], spill_regs[i])
3784               && HARD_REGNO_MODE_OK (spill_regs[i], reload_mode[r])
3785               /* Look first for regs to share, then for unshared.  */
3786               && (pass || TEST_HARD_REG_BIT (reload_reg_used_at_all,
3787                                              spill_regs[i])))
3788             {
3789               int nr = HARD_REGNO_NREGS (spill_regs[i], reload_mode[r]);
3790               /* Avoid the problem where spilling a GENERAL_OR_FP_REG
3791                  (on 68000) got us two FP regs.  If NR is 1,
3792                  we would reject both of them.  */
3793               if (force_group)
3794                 nr = CLASS_MAX_NREGS (reload_reg_class[r], reload_mode[r]);
3795               /* If we need only one reg, we have already won.  */
3796               if (nr == 1)
3797                 {
3798                   /* But reject a single reg if we demand a group.  */
3799                   if (force_group)
3800                     continue;
3801                   break;
3802                 }
3803               /* Otherwise check that as many consecutive regs as we need
3804                  are available here.
3805                  Also, don't use for a group registers that are
3806                  needed for nongroups.  */
3807               if (! TEST_HARD_REG_BIT (counted_for_nongroups, spill_regs[i]))
3808                 while (nr > 1)
3809                   {
3810                     regno = spill_regs[i] + nr - 1;
3811                     if (!(TEST_HARD_REG_BIT (reg_class_contents[class], regno)
3812                           && spill_reg_order[regno] >= 0
3813                           && reload_reg_free_p (regno, reload_when_needed[r])
3814                           && ! TEST_HARD_REG_BIT (counted_for_nongroups,
3815                                                   regno)))
3816                       break;
3817                     nr--;
3818                   }
3819               if (nr == 1)
3820                 break;
3821             }
3822         }
3823
3824       /* If we found something on pass 1, omit pass 2.  */
3825       if (count < n_spills)
3826         break;
3827     }
3828
3829   /* We should have found a spill register by now.  */
3830   if (count == n_spills)
3831     {
3832       if (noerror)
3833         return 0;
3834       abort ();
3835     }
3836
3837   last_spill_reg = i;
3838
3839   /* Mark as in use for this insn the reload regs we use for this.  */
3840   mark_reload_reg_in_use (spill_regs[i], reload_when_needed[r],
3841                           reload_mode[r]);
3842
3843   new = spill_reg_rtx[i];
3844
3845   if (new == 0 || GET_MODE (new) != reload_mode[r])
3846     spill_reg_rtx[i] = new = gen_rtx (REG, reload_mode[r], spill_regs[i]);
3847
3848   reload_reg_rtx[r] = new;
3849   reload_spill_index[r] = i;
3850   regno = true_regnum (new);
3851
3852   /* Detect when the reload reg can't hold the reload mode.
3853      This used to be one `if', but Sequent compiler can't handle that.  */
3854   if (HARD_REGNO_MODE_OK (regno, reload_mode[r]))
3855     {
3856       enum machine_mode test_mode = VOIDmode;
3857       if (reload_in[r])
3858         test_mode = GET_MODE (reload_in[r]);
3859       /* If reload_in[r] has VOIDmode, it means we will load it
3860          in whatever mode the reload reg has: to wit, reload_mode[r].
3861          We have already tested that for validity.  */
3862       /* Aside from that, we need to test that the expressions
3863          to reload from or into have modes which are valid for this
3864          reload register.  Otherwise the reload insns would be invalid.  */
3865       if (! (reload_in[r] != 0 && test_mode != VOIDmode
3866              && ! HARD_REGNO_MODE_OK (regno, test_mode)))
3867         if (! (reload_out[r] != 0
3868                && ! HARD_REGNO_MODE_OK (regno, GET_MODE (reload_out[r]))))
3869           /* The reg is OK.  */
3870           return 1;
3871     }
3872
3873   /* The reg is not OK.  */
3874   if (noerror)
3875     return 0;
3876
3877   if (asm_noperands (PATTERN (insn)) < 0)
3878     /* It's the compiler's fault.  */
3879     abort ();
3880
3881   /* It's the user's fault; the operand's mode and constraint
3882      don't match.  Disable this reload so we don't crash in final.  */
3883   error_for_asm (insn,
3884                  "`asm' operand constraint incompatible with operand size");
3885   reload_in[r] = 0;
3886   reload_out[r] = 0;
3887   reload_reg_rtx[r] = 0;
3888   reload_optional[r] = 1;
3889   reload_secondary_p[r] = 1;
3890
3891   return 1;
3892 }
3893 \f
3894 /* Assign hard reg targets for the pseudo-registers we must reload
3895    into hard regs for this insn.
3896    Also output the instructions to copy them in and out of the hard regs.
3897
3898    For machines with register classes, we are responsible for
3899    finding a reload reg in the proper class.  */
3900
3901 static void
3902 choose_reload_regs (insn, avoid_return_reg)
3903      rtx insn;
3904      /* This argument is currently ignored.  */
3905      rtx avoid_return_reg;
3906 {
3907   register int i, j;
3908   int max_group_size = 1;
3909   enum reg_class group_class = NO_REGS;
3910   int inheritance;
3911
3912   rtx save_reload_reg_rtx[MAX_RELOADS];
3913   char save_reload_inherited[MAX_RELOADS];
3914   rtx save_reload_inheritance_insn[MAX_RELOADS];
3915   rtx save_reload_override_in[MAX_RELOADS];
3916   int save_reload_spill_index[MAX_RELOADS];
3917   HARD_REG_SET save_reload_reg_used;
3918   HARD_REG_SET save_reload_reg_used_in_input_addr;
3919   HARD_REG_SET save_reload_reg_used_in_output_addr;
3920   HARD_REG_SET save_reload_reg_used_in_op_addr;
3921   HARD_REG_SET save_reload_reg_used_in_input;
3922   HARD_REG_SET save_reload_reg_used_in_output;
3923   HARD_REG_SET save_reload_reg_used_at_all;
3924
3925   bzero (reload_inherited, MAX_RELOADS);
3926   bzero (reload_inheritance_insn, MAX_RELOADS * sizeof (rtx));
3927   bzero (reload_override_in, MAX_RELOADS * sizeof (rtx));
3928
3929   CLEAR_HARD_REG_SET (reload_reg_used);
3930   CLEAR_HARD_REG_SET (reload_reg_used_at_all);
3931   CLEAR_HARD_REG_SET (reload_reg_used_in_input_addr);
3932   CLEAR_HARD_REG_SET (reload_reg_used_in_output_addr);
3933   CLEAR_HARD_REG_SET (reload_reg_used_in_op_addr);
3934   CLEAR_HARD_REG_SET (reload_reg_used_in_output);
3935   CLEAR_HARD_REG_SET (reload_reg_used_in_input);
3936
3937   /* Distinguish output-only and input-only reloads
3938      because they can overlap with other things.  */
3939   for (j = 0; j < n_reloads; j++)
3940     if (reload_when_needed[j] == RELOAD_OTHER
3941         && ! reload_needed_for_multiple[j])
3942       {
3943         if (reload_in[j] == 0)
3944           {
3945             /* But earlyclobber operands must stay as RELOAD_OTHER.  */
3946             for (i = 0; i < n_earlyclobbers; i++)
3947               if (rtx_equal_p (reload_out[j], reload_earlyclobbers[i]))
3948                 break;
3949             if (i == n_earlyclobbers)
3950               reload_when_needed[j] = RELOAD_FOR_OUTPUT;
3951           }
3952         if (reload_out[j] == 0)
3953           reload_when_needed[j] = RELOAD_FOR_INPUT;
3954
3955         if (reload_secondary_reload[j] >= 0
3956             && ! reload_needed_for_multiple[reload_secondary_reload[j]])
3957           reload_when_needed[reload_secondary_reload[j]]
3958             = reload_when_needed[j];
3959       }
3960
3961 #ifdef SMALL_REGISTER_CLASSES
3962   /* Don't bother with avoiding the return reg
3963      if we have no mandatory reload that could use it.  */
3964   if (avoid_return_reg)
3965     {
3966       int do_avoid = 0;
3967       int regno = REGNO (avoid_return_reg);
3968       int nregs
3969         = HARD_REGNO_NREGS (regno, GET_MODE (avoid_return_reg));
3970       int r;
3971
3972       for (r = regno; r < regno + nregs; r++)
3973         if (spill_reg_order[r] >= 0)
3974           for (j = 0; j < n_reloads; j++)
3975             if (!reload_optional[j] && reload_reg_rtx[j] == 0
3976                 && (reload_in[j] != 0 || reload_out[j] != 0
3977                     || reload_secondary_p[j])
3978                 &&
3979                 TEST_HARD_REG_BIT (reg_class_contents[(int) reload_reg_class[j]], r))
3980               do_avoid = 1;
3981       if (!do_avoid)
3982         avoid_return_reg = 0;
3983     }
3984 #endif /* SMALL_REGISTER_CLASSES */
3985
3986 #if 0  /* Not needed, now that we can always retry without inheritance.  */
3987   /* See if we have more mandatory reloads than spill regs.
3988      If so, then we cannot risk optimizations that could prevent
3989      reloads from sharing one spill register.
3990
3991      Since we will try finding a better register than reload_reg_rtx
3992      unless it is equal to reload_in or reload_out, count such reloads.  */
3993
3994   {
3995     int tem = 0;
3996 #ifdef SMALL_REGISTER_CLASSES
3997     int tem = (avoid_return_reg != 0);
3998 #endif
3999     for (j = 0; j < n_reloads; j++)
4000       if (! reload_optional[j]
4001           && (reload_in[j] != 0 || reload_out[j] != 0 || reload_secondary_p[j])
4002           && (reload_reg_rtx[j] == 0
4003               || (! rtx_equal_p (reload_reg_rtx[j], reload_in[j])
4004                   && ! rtx_equal_p (reload_reg_rtx[j], reload_out[j]))))
4005         tem++;
4006     if (tem > n_spills)
4007       must_reuse = 1;
4008   }
4009 #endif
4010
4011 #ifdef SMALL_REGISTER_CLASSES
4012   /* Don't use the subroutine call return reg for a reload
4013      if we are supposed to avoid it.  */
4014   if (avoid_return_reg)
4015     {
4016       int regno = REGNO (avoid_return_reg);
4017       int nregs
4018         = HARD_REGNO_NREGS (regno, GET_MODE (avoid_return_reg));
4019       int r;
4020
4021       for (r = regno; r < regno + nregs; r++)
4022         if (spill_reg_order[r] >= 0)
4023           SET_HARD_REG_BIT (reload_reg_used, r);
4024     }
4025 #endif /* SMALL_REGISTER_CLASSES */
4026
4027   /* In order to be certain of getting the registers we need,
4028      we must sort the reloads into order of increasing register class.
4029      Then our grabbing of reload registers will parallel the process
4030      that provided the reload registers.
4031
4032      Also note whether any of the reloads wants a consecutive group of regs.
4033      If so, record the maximum size of the group desired and what
4034      register class contains all the groups needed by this insn.  */
4035
4036   for (j = 0; j < n_reloads; j++)
4037     {
4038       reload_order[j] = j;
4039       reload_spill_index[j] = -1;
4040
4041       reload_mode[j]
4042         = (reload_strict_low[j] && reload_out[j]
4043            ? GET_MODE (SUBREG_REG (reload_out[j]))
4044            : (reload_inmode[j] == VOIDmode
4045               || (GET_MODE_SIZE (reload_outmode[j])
4046                   > GET_MODE_SIZE (reload_inmode[j])))
4047            ? reload_outmode[j] : reload_inmode[j]);
4048
4049       reload_nregs[j] = CLASS_MAX_NREGS (reload_reg_class[j], reload_mode[j]);
4050
4051       if (reload_nregs[j] > 1)
4052         {
4053           max_group_size = MAX (reload_nregs[j], max_group_size);
4054           group_class = reg_class_superunion[(int)reload_reg_class[j]][(int)group_class];
4055         }
4056
4057       /* If we have already decided to use a certain register,
4058          don't use it in another way.  */
4059       if (reload_reg_rtx[j])
4060         mark_reload_reg_in_use (REGNO (reload_reg_rtx[j]),
4061                                 reload_when_needed[j], reload_mode[j]);
4062     }
4063
4064   if (n_reloads > 1)
4065     qsort (reload_order, n_reloads, sizeof (short), reload_reg_class_lower);
4066
4067   bcopy (reload_reg_rtx, save_reload_reg_rtx, sizeof reload_reg_rtx);
4068   bcopy (reload_inherited, save_reload_inherited, sizeof reload_inherited);
4069   bcopy (reload_inheritance_insn, save_reload_inheritance_insn,
4070          sizeof reload_inheritance_insn);
4071   bcopy (reload_override_in, save_reload_override_in,
4072          sizeof reload_override_in);
4073   bcopy (reload_spill_index, save_reload_spill_index,
4074          sizeof reload_spill_index);
4075   COPY_HARD_REG_SET (save_reload_reg_used, reload_reg_used);
4076   COPY_HARD_REG_SET (save_reload_reg_used_at_all, reload_reg_used_at_all);
4077   COPY_HARD_REG_SET (save_reload_reg_used_in_output,
4078                      reload_reg_used_in_output);
4079   COPY_HARD_REG_SET (save_reload_reg_used_in_input,
4080                      reload_reg_used_in_input);
4081   COPY_HARD_REG_SET (save_reload_reg_used_in_input_addr,
4082                      reload_reg_used_in_input_addr);
4083   COPY_HARD_REG_SET (save_reload_reg_used_in_output_addr,
4084                      reload_reg_used_in_output_addr);
4085   COPY_HARD_REG_SET (save_reload_reg_used_in_op_addr,
4086                      reload_reg_used_in_op_addr);
4087
4088   /* Try first with inheritance, then turning it off.  */
4089
4090   for (inheritance = 1; inheritance >= 0; inheritance--)
4091     {
4092       /* Process the reloads in order of preference just found.
4093          Beyond this point, subregs can be found in reload_reg_rtx.
4094
4095          This used to look for an existing reloaded home for all
4096          of the reloads, and only then perform any new reloads.
4097          But that could lose if the reloads were done out of reg-class order
4098          because a later reload with a looser constraint might have an old
4099          home in a register needed by an earlier reload with a tighter constraint.
4100
4101          To solve this, we make two passes over the reloads, in the order
4102          described above.  In the first pass we try to inherit a reload
4103          from a previous insn.  If there is a later reload that needs a
4104          class that is a proper subset of the class being processed, we must
4105          also allocate a spill register during the first pass.
4106
4107          Then make a second pass over the reloads to allocate any reloads
4108          that haven't been given registers yet.  */
4109
4110       for (j = 0; j < n_reloads; j++)
4111         {
4112           register int r = reload_order[j];
4113
4114           /* Ignore reloads that got marked inoperative.  */
4115           if (reload_out[r] == 0 && reload_in[r] == 0 && ! reload_secondary_p[r])
4116             continue;
4117
4118           /* If find_reloads chose a to use reload_in or reload_out as a reload
4119              register, we don't need to chose one.  Otherwise, try even if it found
4120              one since we might save an insn if we find the value lying around.  */
4121           if (reload_in[r] != 0 && reload_reg_rtx[r] != 0
4122               && (rtx_equal_p (reload_in[r], reload_reg_rtx[r])
4123                   || rtx_equal_p (reload_out[r], reload_reg_rtx[r])))
4124             continue;
4125
4126 #if 0 /* No longer needed for correct operation.
4127          It might give better code, or might not; worth an experiment?  */
4128           /* If this is an optional reload, we can't inherit from earlier insns
4129              until we are sure that any non-optional reloads have been allocated.
4130              The following code takes advantage of the fact that optional reloads
4131              are at the end of reload_order.  */
4132           if (reload_optional[r] != 0)
4133             for (i = 0; i < j; i++)
4134               if ((reload_out[reload_order[i]] != 0
4135                    || reload_in[reload_order[i]] != 0
4136                    || reload_secondary_p[reload_order[i]])
4137                   && ! reload_optional[reload_order[i]]
4138                   && reload_reg_rtx[reload_order[i]] == 0)
4139                 allocate_reload_reg (reload_order[i], insn, 0, inheritance);
4140 #endif
4141
4142           /* First see if this pseudo is already available as reloaded
4143              for a previous insn.  We cannot try to inherit for reloads
4144              that are smaller than the maximum number of registers needed
4145              for groups unless the register we would allocate cannot be used
4146              for the groups.
4147
4148              We could check here to see if this is a secondary reload for
4149              an object that is already in a register of the desired class.
4150              This would avoid the need for the secondary reload register.
4151              But this is complex because we can't easily determine what
4152              objects might want to be loaded via this reload.  So let a register
4153              be allocated here.  In `emit_reload_insns' we suppress one of the
4154              loads in the case described above.  */
4155
4156           if (inheritance)
4157             {
4158               register int regno = -1;
4159
4160               if (reload_in[r] == 0)
4161                 ;
4162               else if (GET_CODE (reload_in[r]) == REG)
4163                 regno = REGNO (reload_in[r]);
4164               else if (GET_CODE (reload_in_reg[r]) == REG)
4165                 regno = REGNO (reload_in_reg[r]);
4166 #if 0
4167               /* This won't work, since REGNO can be a pseudo reg number.
4168                  Also, it takes much more hair to keep track of all the things
4169                  that can invalidate an inherited reload of part of a pseudoreg.  */
4170               else if (GET_CODE (reload_in[r]) == SUBREG
4171                        && GET_CODE (SUBREG_REG (reload_in[r])) == REG)
4172                 regno = REGNO (SUBREG_REG (reload_in[r])) + SUBREG_WORD (reload_in[r]);
4173 #endif
4174
4175               if (regno >= 0 && reg_last_reload_reg[regno] != 0)
4176                 {
4177                   i = spill_reg_order[REGNO (reg_last_reload_reg[regno])];
4178
4179                   if (reg_reloaded_contents[i] == regno
4180                       && HARD_REGNO_MODE_OK (spill_regs[i], reload_mode[r])
4181                       && TEST_HARD_REG_BIT (reg_class_contents[(int) reload_reg_class[r]],
4182                                             spill_regs[i])
4183                       && (reload_nregs[r] == max_group_size
4184                           || ! TEST_HARD_REG_BIT (reg_class_contents[(int) group_class],
4185                                                   spill_regs[i]))
4186                       && reload_reg_free_p (spill_regs[i], reload_when_needed[r])
4187                       && reload_reg_free_before_p (spill_regs[i],
4188                                                    reload_when_needed[r]))
4189                     {
4190                       /* If a group is needed, verify that all the subsequent
4191                          registers still have their values intact. */
4192                       int nr
4193                         = HARD_REGNO_NREGS (spill_regs[i], reload_mode[r]);
4194                       int k;
4195
4196                       for (k = 1; k < nr; k++)
4197                         if (reg_reloaded_contents[spill_reg_order[spill_regs[i] + k]]
4198                             != regno)
4199                           break;
4200
4201                       if (k == nr)
4202                         {
4203                           /* Mark the register as in use for this part of
4204                              the insn.  */
4205                           mark_reload_reg_in_use (spill_regs[i],
4206                                                   reload_when_needed[r],
4207                                                   reload_mode[r]);
4208                           reload_reg_rtx[r] = reg_last_reload_reg[regno];
4209                           reload_inherited[r] = 1;
4210                           reload_inheritance_insn[r] = reg_reloaded_insn[i];
4211                           reload_spill_index[r] = i;
4212                         }
4213                     }
4214                 }
4215             }
4216
4217           /* Here's another way to see if the value is already lying around.  */
4218           if (inheritance
4219               && reload_in[r] != 0
4220               && ! reload_inherited[r]
4221               && reload_out[r] == 0
4222               && (CONSTANT_P (reload_in[r])
4223                   || GET_CODE (reload_in[r]) == PLUS
4224                   || GET_CODE (reload_in[r]) == REG
4225                   || GET_CODE (reload_in[r]) == MEM)
4226               && (reload_nregs[r] == max_group_size
4227                   || ! reg_classes_intersect_p (reload_reg_class[r], group_class)))
4228             {
4229               register rtx equiv
4230                 = find_equiv_reg (reload_in[r], insn, reload_reg_class[r],
4231                                   -1, 0, 0, reload_mode[r]);
4232               int regno;
4233
4234               if (equiv != 0)
4235                 {
4236                   if (GET_CODE (equiv) == REG)
4237                     regno = REGNO (equiv);
4238                   else if (GET_CODE (equiv) == SUBREG)
4239                     {
4240                       regno = REGNO (SUBREG_REG (equiv));
4241                       if (regno < FIRST_PSEUDO_REGISTER)
4242                         regno += SUBREG_WORD (equiv);
4243                     }
4244                   else
4245                     abort ();
4246                 }
4247
4248               /* If we found a spill reg, reject it unless it is free
4249                  and of the desired class.  */
4250               if (equiv != 0
4251                   && ((spill_reg_order[regno] >= 0
4252                        && ! reload_reg_free_before_p (regno,
4253                                                       reload_when_needed[r]))
4254                       || ! TEST_HARD_REG_BIT (reg_class_contents[(int) reload_reg_class[r]],
4255                                               regno)))
4256                 equiv = 0;
4257
4258               if (equiv != 0 && TEST_HARD_REG_BIT (reload_reg_used_at_all, regno))
4259                 equiv = 0;
4260
4261               if (equiv != 0 && ! HARD_REGNO_MODE_OK (regno, reload_mode[r]))
4262                 equiv = 0;
4263
4264               /* We found a register that contains the value we need.
4265                  If this register is the same as an `earlyclobber' operand
4266                  of the current insn, just mark it as a place to reload from
4267                  since we can't use it as the reload register itself.  */
4268
4269               if (equiv != 0)
4270                 for (i = 0; i < n_earlyclobbers; i++)
4271                   if (reg_overlap_mentioned_p (equiv, reload_earlyclobbers[i]))
4272                     {
4273                       reload_override_in[r] = equiv;
4274                       equiv = 0;
4275                       break;
4276                     }
4277
4278               /* JRV: If the equiv register we have found is explicitly
4279                  clobbered in the current insn, mark but don't use, as above. */
4280
4281               if (equiv != 0 && regno_clobbered_p (regno, insn))
4282                 {
4283                   reload_override_in[r] = equiv;
4284                   equiv = 0;
4285                 }
4286
4287               /* If we found an equivalent reg, say no code need be generated
4288                  to load it, and use it as our reload reg.  */
4289               if (equiv != 0 && regno != FRAME_POINTER_REGNUM)
4290                 {
4291                   reload_reg_rtx[r] = equiv;
4292                   reload_inherited[r] = 1;
4293                   /* If it is a spill reg,
4294                      mark the spill reg as in use for this insn.  */
4295                   i = spill_reg_order[regno];
4296                   if (i >= 0)
4297                     mark_reload_reg_in_use (regno, reload_when_needed[r],
4298                                             reload_mode[r]);
4299                 }
4300             }
4301
4302           /* If we found a register to use already, or if this is an optional
4303              reload, we are done.  */
4304           if (reload_reg_rtx[r] != 0 || reload_optional[r] != 0)
4305             continue;
4306
4307 #if 0 /* No longer needed for correct operation.  Might or might not
4308          give better code on the average.  Want to experiment?  */
4309
4310           /* See if there is a later reload that has a class different from our
4311              class that intersects our class or that requires less register
4312              than our reload.  If so, we must allocate a register to this
4313              reload now, since that reload might inherit a previous reload
4314              and take the only available register in our class.  Don't do this
4315              for optional reloads since they will force all previous reloads
4316              to be allocated.  Also don't do this for reloads that have been
4317              turned off.  */
4318
4319           for (i = j + 1; i < n_reloads; i++)
4320             {
4321               int s = reload_order[i];
4322
4323               if ((reload_in[s] == 0 && reload_out[s] == 0 &&
4324                    ! reload_secondary_p[s])
4325                   || reload_optional[s])
4326                 continue;
4327
4328               if ((reload_reg_class[s] != reload_reg_class[r]
4329                    && reg_classes_intersect_p (reload_reg_class[r],
4330                                                reload_reg_class[s]))
4331                   || reload_nregs[s] < reload_nregs[r])
4332               break;
4333             }
4334
4335           if (i == n_reloads)
4336             continue;
4337
4338           allocate_reload_reg (r, insn, j == n_reloads - 1, inheritance);
4339 #endif
4340         }
4341
4342       /* Now allocate reload registers for anything non-optional that
4343          didn't get one yet.  */
4344       for (j = 0; j < n_reloads; j++)
4345         {
4346           register int r = reload_order[j];
4347
4348           /* Ignore reloads that got marked inoperative.  */
4349           if (reload_out[r] == 0 && reload_in[r] == 0 && ! reload_secondary_p[r])
4350             continue;
4351
4352           /* Skip reloads that already have a register allocated or are
4353              optional. */
4354           if (reload_reg_rtx[r] != 0 || reload_optional[r])
4355             continue;
4356
4357           if (! allocate_reload_reg (r, insn, j == n_reloads - 1, inheritance))
4358             break;
4359         }
4360
4361       /* If that loop got all the way, we have won.  */
4362       if (j == n_reloads)
4363         break;
4364
4365     fail:
4366       /* Loop around and try without any inheritance.  */
4367       /* First undo everything done by the failed attempt
4368          to allocate with inheritance.  */
4369       bcopy (save_reload_reg_rtx, reload_reg_rtx, sizeof reload_reg_rtx);
4370       bcopy (save_reload_inherited, reload_inherited, sizeof reload_inherited);
4371       bcopy (save_reload_inheritance_insn, reload_inheritance_insn,
4372              sizeof reload_inheritance_insn);
4373       bcopy (save_reload_override_in, reload_override_in,
4374              sizeof reload_override_in);
4375       bcopy (save_reload_spill_index, reload_spill_index,
4376              sizeof reload_spill_index);
4377       COPY_HARD_REG_SET (reload_reg_used, save_reload_reg_used);
4378       COPY_HARD_REG_SET (reload_reg_used_at_all, save_reload_reg_used_at_all);
4379       COPY_HARD_REG_SET (reload_reg_used_in_input,
4380                          save_reload_reg_used_in_input);
4381       COPY_HARD_REG_SET (reload_reg_used_in_output,
4382                          save_reload_reg_used_in_output);
4383       COPY_HARD_REG_SET (reload_reg_used_in_input_addr,
4384                          save_reload_reg_used_in_input_addr);
4385       COPY_HARD_REG_SET (reload_reg_used_in_output_addr,
4386                          save_reload_reg_used_in_output_addr);
4387       COPY_HARD_REG_SET (reload_reg_used_in_op_addr,
4388                          save_reload_reg_used_in_op_addr);
4389     }
4390
4391   /* If we thought we could inherit a reload, because it seemed that
4392      nothing else wanted the same reload register earlier in the insn,
4393      verify that assumption, now that all reloads have been assigned.  */
4394
4395   for (j = 0; j < n_reloads; j++)
4396     {
4397       register int r = reload_order[j];
4398
4399       if (reload_inherited[r] && reload_reg_rtx[r] != 0
4400           && ! reload_reg_free_before_p (true_regnum (reload_reg_rtx[r]),
4401                                          reload_when_needed[r]))
4402         reload_inherited[r] = 0;
4403
4404       /* If we found a better place to reload from,
4405          validate it in the same fashion, if it is a reload reg.  */
4406       if (reload_override_in[r]
4407           && (GET_CODE (reload_override_in[r]) == REG
4408               || GET_CODE (reload_override_in[r]) == SUBREG))
4409         {
4410           int regno = true_regnum (reload_override_in[r]);
4411           if (spill_reg_order[regno] >= 0
4412               && ! reload_reg_free_before_p (regno, reload_when_needed[r]))
4413             reload_override_in[r] = 0;
4414         }
4415     }
4416
4417   /* Now that reload_override_in is known valid,
4418      actually override reload_in.  */
4419   for (j = 0; j < n_reloads; j++)
4420     if (reload_override_in[j])
4421       reload_in[j] = reload_override_in[j];
4422
4423   /* If this reload won't be done because it has been cancelled or is
4424      optional and not inherited, clear reload_reg_rtx so other
4425      routines (such as subst_reloads) don't get confused.  */
4426   for (j = 0; j < n_reloads; j++)
4427     if ((reload_optional[j] && ! reload_inherited[j])
4428         || (reload_in[j] == 0 && reload_out[j] == 0
4429             && ! reload_secondary_p[j]))
4430       reload_reg_rtx[j] = 0;
4431
4432   /* Record which pseudos and which spill regs have output reloads.  */
4433   for (j = 0; j < n_reloads; j++)
4434     {
4435       register int r = reload_order[j];
4436
4437       i = reload_spill_index[r];
4438
4439       /* I is nonneg if this reload used one of the spill regs.
4440          If reload_reg_rtx[r] is 0, this is an optional reload
4441          that we opted to ignore.  */
4442       if (reload_out[r] != 0 && GET_CODE (reload_out[r]) == REG
4443           && reload_reg_rtx[r] != 0)
4444         {
4445           register int nregno = REGNO (reload_out[r]);
4446           int nr = HARD_REGNO_NREGS (nregno, reload_mode[r]);
4447
4448           while (--nr >= 0)
4449             {
4450               reg_has_output_reload[nregno + nr] = 1;
4451               if (i >= 0)
4452                 SET_HARD_REG_BIT (reg_is_output_reload, spill_regs[i] + nr);
4453             }
4454
4455           if (reload_when_needed[r] != RELOAD_OTHER
4456               && reload_when_needed[r] != RELOAD_FOR_OUTPUT)
4457             abort ();
4458         }
4459     }
4460 }
4461 \f
4462 /* Output insns to reload values in and out of the chosen reload regs.  */
4463
4464 static void
4465 emit_reload_insns (insn)
4466      rtx insn;
4467 {
4468   register int j;
4469   rtx following_insn = NEXT_INSN (insn);
4470   rtx before_insn = insn;
4471   rtx first_output_reload_insn = NEXT_INSN (insn);
4472   rtx first_other_reload_insn = insn;
4473   rtx first_operand_address_reload_insn = insn;
4474   int special;
4475   /* Values to be put in spill_reg_store are put here first.  */
4476   rtx new_spill_reg_store[FIRST_PSEUDO_REGISTER];
4477
4478   /* If this is a CALL_INSN preceeded by USE insns, any reload insns
4479      must go in front of the first USE insn, not in front of INSN.  */
4480
4481   if (GET_CODE (insn) == CALL_INSN && GET_CODE (PREV_INSN (insn)) == INSN
4482       && GET_CODE (PATTERN (PREV_INSN (insn))) == USE)
4483     while (GET_CODE (PREV_INSN (before_insn)) == INSN
4484            && GET_CODE (PATTERN (PREV_INSN (before_insn))) == USE)
4485       first_other_reload_insn = first_operand_address_reload_insn
4486         = before_insn = PREV_INSN (before_insn);
4487
4488   /* Now output the instructions to copy the data into and out of the
4489      reload registers.  Do these in the order that the reloads were reported,
4490      since reloads of base and index registers precede reloads of operands
4491      and the operands may need the base and index registers reloaded.  */
4492
4493   for (j = 0; j < n_reloads; j++)
4494     {
4495       register rtx old;
4496       rtx oldequiv_reg = 0;
4497       rtx this_reload_insn = 0;
4498       rtx store_insn = 0;
4499
4500       old = reload_in[j];
4501       if (old != 0 && ! reload_inherited[j]
4502           && ! rtx_equal_p (reload_reg_rtx[j], old)
4503           && reload_reg_rtx[j] != 0)
4504         {
4505           register rtx reloadreg = reload_reg_rtx[j];
4506           rtx oldequiv = 0;
4507           enum machine_mode mode;
4508           rtx where;
4509           rtx reload_insn;
4510
4511           /* Determine the mode to reload in.
4512              This is very tricky because we have three to choose from.
4513              There is the mode the insn operand wants (reload_inmode[J]).
4514              There is the mode of the reload register RELOADREG.
4515              There is the intrinsic mode of the operand, which we could find
4516              by stripping some SUBREGs.
4517              It turns out that RELOADREG's mode is irrelevant:
4518              we can change that arbitrarily.
4519
4520              Consider (SUBREG:SI foo:QI) as an operand that must be SImode;
4521              then the reload reg may not support QImode moves, so use SImode.
4522              If foo is in memory due to spilling a pseudo reg, this is safe,
4523              because the QImode value is in the least significant part of a
4524              slot big enough for a SImode.  If foo is some other sort of
4525              memory reference, then it is impossible to reload this case,
4526              so previous passes had better make sure this never happens.
4527
4528              Then consider a one-word union which has SImode and one of its
4529              members is a float, being fetched as (SUBREG:SF union:SI).
4530              We must fetch that as SFmode because we could be loading into
4531              a float-only register.  In this case OLD's mode is correct.
4532
4533              Consider an immediate integer: it has VOIDmode.  Here we need
4534              to get a mode from something else.
4535
4536              In some cases, there is a fourth mode, the operand's
4537              containing mode.  If the insn specifies a containing mode for
4538              this operand, it overrides all others.
4539
4540              I am not sure whether the algorithm here is always right,
4541              but it does the right things in those cases.  */
4542
4543           mode = GET_MODE (old);
4544           if (mode == VOIDmode)
4545             mode = reload_inmode[j];
4546           if (reload_strict_low[j])
4547             mode = GET_MODE (SUBREG_REG (reload_in[j]));
4548
4549 #ifdef SECONDARY_INPUT_RELOAD_CLASS
4550           /* If we need a secondary register for this operation, see if
4551              the value is already in a register in that class.  Don't
4552              do this if the secondary register will be used as a scratch
4553              register.  */
4554
4555           if (reload_secondary_reload[j] >= 0
4556               && reload_secondary_icode[j] == CODE_FOR_nothing)
4557             oldequiv
4558               = find_equiv_reg (old, insn,
4559                                 reload_reg_class[reload_secondary_reload[j]],
4560                                 -1, 0, 0, mode);
4561 #endif
4562
4563           /* If reloading from memory, see if there is a register
4564              that already holds the same value.  If so, reload from there.
4565              We can pass 0 as the reload_reg_p argument because
4566              any other reload has either already been emitted,
4567              in which case find_equiv_reg will see the reload-insn,
4568              or has yet to be emitted, in which case it doesn't matter
4569              because we will use this equiv reg right away.  */
4570
4571           if (oldequiv == 0
4572               && (GET_CODE (old) == MEM
4573                   || (GET_CODE (old) == REG
4574                       && REGNO (old) >= FIRST_PSEUDO_REGISTER
4575                       && reg_renumber[REGNO (old)] < 0)))
4576             oldequiv = find_equiv_reg (old, insn, GENERAL_REGS,
4577                                        -1, 0, 0, mode);
4578
4579           if (oldequiv)
4580             {
4581               int regno = true_regnum (oldequiv);
4582
4583               /* If OLDEQUIV is a spill register, don't use it for this
4584                  if any other reload needs it at an earlier stage of this insn
4585                  or at this stage.  */
4586               if (spill_reg_order[regno] >= 0
4587                   && (! reload_reg_free_p (regno, reload_when_needed[j])
4588                       || ! reload_reg_free_before_p (regno,
4589                                                      reload_when_needed[j])))
4590                 oldequiv = 0;
4591
4592               /* If OLDEQUIV is not a spill register,
4593                  don't use it if any other reload wants it.  */
4594               if (spill_reg_order[regno] < 0)
4595                 {
4596                   int k;
4597                   for (k = 0; k < n_reloads; k++)
4598                     if (reload_reg_rtx[k] != 0 && k != j
4599                         && reg_overlap_mentioned_p (reload_reg_rtx[k], oldequiv))
4600                       {
4601                         oldequiv = 0;
4602                         break;
4603                       }
4604                 }
4605             }
4606
4607           if (oldequiv == 0)
4608             oldequiv = old;
4609           else if (GET_CODE (oldequiv) == REG)
4610             oldequiv_reg = oldequiv;
4611           else if (GET_CODE (oldequiv) == SUBREG)
4612             oldequiv_reg = SUBREG_REG (oldequiv);
4613
4614           /* Encapsulate both RELOADREG and OLDEQUIV into that mode,
4615              then load RELOADREG from OLDEQUIV.  */
4616
4617           if (GET_MODE (reloadreg) != mode)
4618             reloadreg = gen_rtx (REG, mode, REGNO (reloadreg));
4619           while (GET_CODE (oldequiv) == SUBREG && GET_MODE (oldequiv) != mode)
4620             oldequiv = SUBREG_REG (oldequiv);
4621           if (GET_MODE (oldequiv) != VOIDmode
4622               && mode != GET_MODE (oldequiv))
4623             oldequiv = gen_rtx (SUBREG, mode, oldequiv, 0);
4624
4625           /* Decide where to put reload insn for this reload.  */
4626           switch (reload_when_needed[j])
4627             {
4628             case RELOAD_FOR_INPUT:
4629             case RELOAD_OTHER:
4630               where = first_operand_address_reload_insn;
4631               break;
4632             case RELOAD_FOR_INPUT_RELOAD_ADDRESS:
4633               where = first_other_reload_insn;
4634               break;
4635             case RELOAD_FOR_OUTPUT_RELOAD_ADDRESS:
4636               where = first_output_reload_insn;
4637               break;
4638             case RELOAD_FOR_OPERAND_ADDRESS:
4639               where = before_insn;
4640             }
4641
4642           special = 0;
4643
4644           /* Auto-increment addresses must be reloaded in a special way.  */
4645           if (GET_CODE (oldequiv) == POST_INC
4646               || GET_CODE (oldequiv) == POST_DEC
4647               || GET_CODE (oldequiv) == PRE_INC
4648               || GET_CODE (oldequiv) == PRE_DEC)
4649             {
4650               /* We are not going to bother supporting the case where a
4651                  incremented register can't be copied directly from
4652                  OLDEQUIV since this seems highly unlikely.  */
4653               if (reload_secondary_reload[j] >= 0)
4654                 abort ();
4655               /* Prevent normal processing of this reload.  */
4656               special = 1;
4657               /* Output a special code sequence for this case.  */
4658               this_reload_insn
4659                 = inc_for_reload (reloadreg, oldequiv, reload_inc[j], where);
4660             }
4661
4662           /* If we are reloading a pseudo-register that was set by the previous
4663              insn, see if we can get rid of that pseudo-register entirely
4664              by redirecting the previous insn into our reload register.  */
4665
4666           else if (optimize && GET_CODE (old) == REG
4667                    && REGNO (old) >= FIRST_PSEUDO_REGISTER
4668                    && dead_or_set_p (insn, old)
4669                    /* This is unsafe if some other reload
4670                       uses the same reg first.  */
4671                    && (reload_when_needed[j] == RELOAD_OTHER
4672                        || reload_when_needed[j] == RELOAD_FOR_INPUT
4673                        || reload_when_needed[j] == RELOAD_FOR_INPUT_RELOAD_ADDRESS))
4674             {
4675               rtx temp = PREV_INSN (insn);
4676               while (temp && GET_CODE (temp) == NOTE)
4677                 temp = PREV_INSN (temp);
4678               if (temp
4679                   && GET_CODE (temp) == INSN
4680                   && GET_CODE (PATTERN (temp)) == SET
4681                   && SET_DEST (PATTERN (temp)) == old
4682                   /* Make sure we can access insn_operand_constraint.  */
4683                   && asm_noperands (PATTERN (temp)) < 0
4684                   /* This is unsafe if prev insn rejects our reload reg.  */
4685                   && constraint_accepts_reg_p (insn_operand_constraint[recog_memoized (temp)][0],
4686                                                reloadreg)
4687                   /* This is unsafe if operand occurs more than once in current
4688                      insn.  Perhaps some occurrences aren't reloaded.  */
4689                   && count_occurrences (PATTERN (insn), old) == 1
4690                   /* Don't risk splitting a matching pair of operands.  */
4691                   && ! reg_mentioned_p (old, SET_SRC (PATTERN (temp))))
4692                 {
4693                   /* Store into the reload register instead of the pseudo.  */
4694                   SET_DEST (PATTERN (temp)) = reloadreg;
4695                   /* If these are the only uses of the pseudo reg,
4696                      pretend for GDB it lives in the reload reg we used.  */
4697                   if (reg_n_deaths[REGNO (old)] == 1
4698                       && reg_n_sets[REGNO (old)] == 1)
4699                     {
4700                       reg_renumber[REGNO (old)] = REGNO (reload_reg_rtx[j]);
4701                       alter_reg (REGNO (old), -1);
4702                     }
4703                   special = 1;
4704                 }
4705             }
4706
4707           /* We can't do that, so output an insn to load RELOADREG.
4708              Keep them in the following order:
4709              all reloads for input reload addresses,
4710              all reloads for ordinary input operands,
4711              all reloads for addresses of non-reloaded operands,
4712              the insn being reloaded,
4713              all reloads for addresses of output reloads,
4714              the output reloads.  */
4715           if (! special)
4716             {
4717 #ifdef SECONDARY_INPUT_RELOAD_CLASS
4718               rtx second_reload_reg = 0;
4719               enum insn_code icode;
4720
4721               /* If we have a secondary reload, pick up the secondary register
4722                  and icode, if any.  If OLDEQUIV and OLD are different or
4723                  if this is an in-out reload, recompute whether or not we
4724                  still need a secondary register and what the icode should
4725                  be.  If we still need a secondary register and the class or
4726                  icode is different, go back to reloading from OLD if using
4727                  OLDEQUIV means that we got the wrong type of register.  We
4728                  cannot have different class or icode due to an in-out reload
4729                  because we don't make such reloads when both the input and
4730                  output need secondary reload registers.  */
4731
4732               if (reload_secondary_reload[j] >= 0)
4733                 {
4734                   int secondary_reload = reload_secondary_reload[j];
4735                   second_reload_reg = reload_reg_rtx[secondary_reload];
4736                   icode = reload_secondary_icode[j];
4737
4738                   if ((old != oldequiv && ! rtx_equal_p (old, oldequiv))
4739                       || (reload_in[j] != 0 && reload_out[j] != 0))
4740                     {
4741                       enum reg_class new_class
4742                         = SECONDARY_INPUT_RELOAD_CLASS (reload_reg_class[j],
4743                                                         mode, oldequiv);
4744
4745                       if (new_class == NO_REGS)
4746                         second_reload_reg = 0;
4747                       else
4748                         {
4749                           enum insn_code new_icode;
4750                           enum machine_mode new_mode;
4751
4752                           if (! TEST_HARD_REG_BIT (reg_class_contents[(int) new_class],
4753                                                    REGNO (second_reload_reg)))
4754                             oldequiv = old;
4755                           else
4756                             {
4757                               new_icode = reload_in_optab[(int) mode];
4758                               if (new_icode != CODE_FOR_nothing
4759                                   && ((insn_operand_predicate[(int) new_icode][0]
4760                                        && ! ((*insn_operand_predicate[(int) new_icode][0])
4761                                              (reloadreg, mode)))
4762                                       || (insn_operand_predicate[(int) new_icode][1]
4763                                           && ! ((*insn_operand_predicate[(int) new_icode][1])
4764                                                 (oldequiv, mode)))))
4765                                 new_icode = CODE_FOR_nothing;
4766
4767                               if (new_icode == CODE_FOR_nothing)
4768                                 new_mode = mode;
4769                               else
4770                                 new_mode = insn_operand_mode[new_icode][2];
4771
4772                               if (GET_MODE (second_reload_reg) != new_mode)
4773                                 {
4774                                   if (!HARD_REGNO_MODE_OK (REGNO (second_reload_reg),
4775                                                            new_mode))
4776                                     oldequiv = old;
4777                                   else
4778                                     second_reload_reg
4779                                       = gen_reg_rtx (REG, new_mode,
4780                                                      REGNO (second_reload_reg));
4781                                 }
4782                             }
4783                         }
4784                     }
4785
4786                   /* If we still need a secondary reload register, check
4787                      to see if it is being used as a scratch or intermediate
4788                      register and generate code appropriately.  */
4789
4790                   if (second_reload_reg)
4791                     {
4792                       if (icode != CODE_FOR_nothing)
4793                         {
4794                           reload_insn = emit_insn_before (GEN_FCN (icode)
4795                                                           (reloadreg, oldequiv,
4796                                                            second_reload_reg),
4797                                                           where);
4798                           if (this_reload_insn == 0)
4799                             this_reload_insn = reload_insn;
4800                           special = 1;
4801                         }
4802                       else
4803                         {
4804                           /* See if we need a scratch register to load the
4805                              intermediate register (a tertiary reload).  */
4806                           enum insn_code tertiary_icode
4807                             = reload_secondary_icode[secondary_reload];
4808
4809                           if (tertiary_icode != CODE_FOR_nothing)
4810                             {
4811                               rtx third_reload_reg
4812                                 = reload_reg_rtx[reload_secondary_reload[secondary_reload]];
4813
4814                               reload_insn
4815                                 = emit_insn_before ((GEN_FCN (tertiary_icode)
4816                                                      (second_reload_reg,
4817                                                       oldequiv,
4818                                                       third_reload_reg)),
4819                                                     where);
4820                               if (this_reload_insn == 0)
4821                                 this_reload_insn = reload_insn;
4822                             }
4823                           else
4824                             {
4825                               reload_insn
4826                                 = gen_input_reload (second_reload_reg,
4827                                                     oldequiv, where);
4828                               if (this_reload_insn == 0)
4829                                 this_reload_insn = reload_insn;
4830                               oldequiv = second_reload_reg;
4831                             }
4832                         }
4833                     }
4834                 }
4835 #endif
4836
4837               if (! special)
4838                 {
4839                   reload_insn = gen_input_reload (reloadreg,
4840                                                   oldequiv, where);
4841                   if (this_reload_insn == 0)
4842                     this_reload_insn = reload_insn;
4843                 }
4844
4845 #if defined(SECONDARY_INPUT_RELOAD_CLASS) && defined(PRESERVE_DEATH_INFO_REGNO_P)
4846               /* We may have to make a REG_DEAD note for the secondary reload
4847                  register in the insns we just made.  Find the last insn that
4848                  mentioned the register.  */
4849               if (! special && second_reload_reg
4850                   && PRESERVE_DEATH_INFO_REGNO_P (REGNO (second_reload_reg)))
4851                 {
4852                   rtx prev;
4853
4854                   for (prev = where;
4855                        prev != PREV_INSN (this_reload_insn);
4856                        prev = PREV_INSN (prev))
4857                     if (GET_RTX_CLASS (GET_CODE (prev) == 'i')
4858                         && reg_overlap_mentioned_p (second_reload_reg,
4859                                                     PATTERN (prev)))
4860                       {
4861                         REG_NOTES (prev) = gen_rtx (EXPR_LIST, REG_DEAD,
4862                                                     second_reload_reg,
4863                                                     REG_NOTES (prev));
4864                         break;
4865                       }
4866                 }
4867 #endif
4868             }
4869
4870           /* Update where to put other reload insns.  */
4871           if (this_reload_insn)
4872             switch (reload_when_needed[j])
4873               {
4874               case RELOAD_FOR_INPUT:
4875               case RELOAD_OTHER:
4876                 if (first_other_reload_insn == first_operand_address_reload_insn)
4877                   first_other_reload_insn = this_reload_insn;
4878                 break;
4879               case RELOAD_FOR_OPERAND_ADDRESS:
4880                 if (first_operand_address_reload_insn == before_insn)
4881                   first_operand_address_reload_insn = this_reload_insn;
4882                 if (first_other_reload_insn == before_insn)
4883                   first_other_reload_insn = this_reload_insn;
4884               }
4885
4886           /* reload_inc[j] was formerly processed here.  */
4887         }
4888
4889       /* Add a note saying the input reload reg
4890          dies in this insn, if anyone cares.  */
4891 #ifdef PRESERVE_DEATH_INFO_REGNO_P
4892       if (old != 0
4893           && reload_reg_rtx[j] != old
4894           && reload_reg_rtx[j] != 0
4895           && reload_out[j] == 0
4896           && ! reload_inherited[j]
4897           && PRESERVE_DEATH_INFO_REGNO_P (REGNO (reload_reg_rtx[j])))
4898         {
4899           register rtx reloadreg = reload_reg_rtx[j];
4900
4901 #if 0
4902           /* We can't abort here because we need to support this for sched.c.
4903              It's not terrible to miss a REG_DEAD note, but we should try
4904              to figure out how to do this correctly.  */
4905           /* The code below is incorrect for address-only reloads.  */
4906           if (reload_when_needed[j] != RELOAD_OTHER
4907               && reload_when_needed[j] != RELOAD_FOR_INPUT)
4908             abort ();
4909 #endif
4910
4911           /* Add a death note to this insn, for an input reload.  */
4912
4913           if ((reload_when_needed[j] == RELOAD_OTHER
4914                || reload_when_needed[j] == RELOAD_FOR_INPUT)
4915               && ! dead_or_set_p (insn, reloadreg))
4916             REG_NOTES (insn)
4917               = gen_rtx (EXPR_LIST, REG_DEAD,
4918                          reloadreg, REG_NOTES (insn));
4919         }
4920
4921       /* When we inherit a reload, the last marked death of the reload reg
4922          may no longer really be a death.  */
4923       if (reload_reg_rtx[j] != 0
4924           && PRESERVE_DEATH_INFO_REGNO_P (REGNO (reload_reg_rtx[j]))
4925           && reload_inherited[j])
4926         {
4927           /* Handle inheriting an output reload.
4928              Remove the death note from the output reload insn.  */
4929           if (reload_spill_index[j] >= 0
4930               && GET_CODE (reload_in[j]) == REG
4931               && spill_reg_store[reload_spill_index[j]] != 0
4932               && find_regno_note (spill_reg_store[reload_spill_index[j]],
4933                                   REG_DEAD, REGNO (reload_reg_rtx[j])))
4934             remove_death (REGNO (reload_reg_rtx[j]),
4935                           spill_reg_store[reload_spill_index[j]]);
4936           /* Likewise for input reloads that were inherited.  */
4937           else if (reload_spill_index[j] >= 0
4938                    && GET_CODE (reload_in[j]) == REG
4939                    && spill_reg_store[reload_spill_index[j]] == 0
4940                    && reload_inheritance_insn[j] != 0
4941                    && find_regno_note (reload_inheritance_insn[j], REG_DEAD,
4942                                        REGNO (reload_reg_rtx[j])))
4943             remove_death (REGNO (reload_reg_rtx[j]),
4944                           reload_inheritance_insn[j]);
4945           else
4946             {
4947               rtx prev;
4948
4949               /* We got this register from find_equiv_reg.
4950                  Search back for its last death note and get rid of it.
4951                  But don't search back too far.
4952                  Don't go past a place where this reg is set,
4953                  since a death note before that remains valid.  */
4954               for (prev = PREV_INSN (insn);
4955                    prev && GET_CODE (prev) != CODE_LABEL;
4956                    prev = PREV_INSN (prev))
4957                 if (GET_RTX_CLASS (GET_CODE (prev)) == 'i'
4958                     && dead_or_set_p (prev, reload_reg_rtx[j]))
4959                   {
4960                     if (find_regno_note (prev, REG_DEAD,
4961                                          REGNO (reload_reg_rtx[j])))
4962                       remove_death (REGNO (reload_reg_rtx[j]), prev);
4963                     break;
4964                   }
4965             }
4966         }
4967
4968       /* We might have used find_equiv_reg above to choose an alternate
4969          place from which to reload.  If so, and it died, we need to remove
4970          that death and move it to one of the insns we just made.  */
4971
4972       if (oldequiv_reg != 0
4973           && PRESERVE_DEATH_INFO_REGNO_P (true_regnum (oldequiv_reg)))
4974         {
4975           rtx prev, prev1;
4976
4977           for (prev = PREV_INSN (insn); prev && GET_CODE (prev) != CODE_LABEL;
4978                prev = PREV_INSN (prev))
4979             if (GET_RTX_CLASS (GET_CODE (prev)) == 'i'
4980                 && dead_or_set_p (prev, oldequiv_reg))
4981               {
4982                 if (find_regno_note (prev, REG_DEAD, REGNO (oldequiv_reg)))
4983                   {
4984                     for (prev1 = this_reload_insn;
4985                          prev1; prev1 = PREV_INSN (prev1))
4986                       if (GET_RTX_CLASS (GET_CODE (prev1) == 'i')
4987                         && reg_overlap_mentioned_p (oldequiv_reg,
4988                                                     PATTERN (prev1)))
4989                       {
4990                         REG_NOTES (prev1) = gen_rtx (EXPR_LIST, REG_DEAD,
4991                                                      oldequiv_reg,
4992                                                      REG_NOTES (prev1));
4993                         break;
4994                       }
4995                     remove_death (REGNO (oldequiv_reg), prev);
4996                   }
4997                 break;
4998               }
4999         }
5000 #endif
5001
5002       /* If we are reloading a register that was recently stored in with an
5003          output-reload, see if we can prove there was
5004          actually no need to store the old value in it.  */
5005
5006       if (optimize && reload_inherited[j] && reload_spill_index[j] >= 0
5007           /* This is unsafe if some other reload uses the same reg first.  */
5008           && (reload_when_needed[j] == RELOAD_OTHER
5009               || reload_when_needed[j] == RELOAD_FOR_INPUT
5010               || reload_when_needed[j] == RELOAD_FOR_INPUT_RELOAD_ADDRESS)
5011           && GET_CODE (reload_in[j]) == REG
5012 #if 0
5013           /* There doesn't seem to be any reason to restrict this to pseudos
5014              and doing so loses in the case where we are copying from a
5015              register of the wrong class.  */
5016           && REGNO (reload_in[j]) >= FIRST_PSEUDO_REGISTER
5017 #endif
5018           && spill_reg_store[reload_spill_index[j]] != 0
5019           && dead_or_set_p (insn, reload_in[j])
5020           /* This is unsafe if operand occurs more than once in current
5021              insn.  Perhaps some occurrences weren't reloaded.  */
5022           && count_occurrences (PATTERN (insn), reload_in[j]) == 1)
5023         delete_output_reload (insn, j,
5024                               spill_reg_store[reload_spill_index[j]]);
5025
5026       /* Input-reloading is done.  Now do output-reloading,
5027          storing the value from the reload-register after the main insn
5028          if reload_out[j] is nonzero.
5029
5030          ??? At some point we need to support handling output reloads of
5031          JUMP_INSNs or insns that set cc0.  */
5032       old = reload_out[j];
5033       if (old != 0
5034           && reload_reg_rtx[j] != old
5035           && reload_reg_rtx[j] != 0)
5036         {
5037           register rtx reloadreg = reload_reg_rtx[j];
5038           register rtx second_reloadreg = 0;
5039           rtx prev_insn = PREV_INSN (first_output_reload_insn);
5040           rtx note, p;
5041           enum machine_mode mode;
5042           int special = 0;
5043
5044           /* An output operand that dies right away does need a reload,
5045              but need not be copied from it.  Show the new location in the
5046              REG_UNUSED note.  */
5047           if ((GET_CODE (old) == REG || GET_CODE (old) == SCRATCH)
5048               && (note = find_reg_note (insn, REG_UNUSED, old)) != 0)
5049             {
5050               XEXP (note, 0) = reload_reg_rtx[j];
5051               continue;
5052             }
5053           else if (GET_CODE (old) == SCRATCH)
5054             /* If we aren't optimizing, there won't be a REG_UNUSED note,
5055                but we don't want to make an output reload.  */
5056             continue;
5057
5058 #if 0
5059           /* Strip off of OLD any size-increasing SUBREGs such as
5060              (SUBREG:SI foo:QI 0).  */
5061
5062           while (GET_CODE (old) == SUBREG && SUBREG_WORD (old) == 0
5063                  && (GET_MODE_SIZE (GET_MODE (old))
5064                      > GET_MODE_SIZE (GET_MODE (SUBREG_REG (old)))))
5065             old = SUBREG_REG (old);
5066 #endif
5067
5068           /* If is a JUMP_INSN, we can't support output reloads yet.  */
5069           if (GET_CODE (insn) == JUMP_INSN)
5070             abort ();
5071
5072           /* Determine the mode to reload in.
5073              See comments above (for input reloading).  */
5074
5075           mode = GET_MODE (old);
5076           if (mode == VOIDmode)
5077             abort ();           /* Should never happen for an output.  */
5078
5079           /* A strict-low-part output operand needs to be reloaded
5080              in the mode of the entire value.  */
5081           if (reload_strict_low[j])
5082             {
5083               mode = GET_MODE (SUBREG_REG (reload_out[j]));
5084               /* Encapsulate OLD into that mode.  */
5085               /* If OLD is a subreg, then strip it, since the subreg will
5086                  be altered by this very reload.  */
5087               while (GET_CODE (old) == SUBREG && GET_MODE (old) != mode)
5088                 old = SUBREG_REG (old);
5089               if (GET_MODE (old) != VOIDmode
5090                   && mode != GET_MODE (old))
5091                 old = gen_rtx (SUBREG, mode, old, 0);
5092             }
5093
5094           if (GET_MODE (reloadreg) != mode)
5095             reloadreg = gen_rtx (REG, mode, REGNO (reloadreg));
5096
5097 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
5098
5099           /* If we need two reload regs, set RELOADREG to the intermediate
5100              one, since it will be stored into OUT.  We might need a secondary
5101              register only for an input reload, so check again here.  */
5102
5103           if (reload_secondary_reload[j] >= 0
5104               && (SECONDARY_OUTPUT_RELOAD_CLASS (reload_reg_class[j],
5105                                                  mode, old)
5106                   != NO_REGS))
5107             {
5108               second_reloadreg = reloadreg;
5109               reloadreg = reload_reg_rtx[reload_secondary_reload[j]];
5110
5111               /* See if RELOADREG is to be used as a scratch register
5112                  or as an intermediate register.  */
5113               if (reload_secondary_icode[j] != CODE_FOR_nothing)
5114                 {
5115                   emit_insn_before ((GEN_FCN (reload_secondary_icode[j])
5116                                      (old, second_reloadreg, reloadreg)),
5117                                     first_output_reload_insn);
5118                   special = 1;
5119                 }
5120               else
5121                 {
5122                   /* See if we need both a scratch and intermediate reload
5123                      register.  */
5124                   int secondary_reload = reload_secondary_reload[j];
5125                   enum insn_code tertiary_icode
5126                     = reload_secondary_icode[secondary_reload];
5127                   rtx pat;
5128
5129                   if (GET_MODE (reloadreg) != mode)
5130                     reloadreg = gen_rtx (REG, mode, REGNO (reloadreg));
5131
5132                   if (tertiary_icode != CODE_FOR_nothing)
5133                     {
5134                       rtx third_reloadreg
5135                         = reload_reg_rtx[reload_secondary_reload[secondary_reload]];
5136                       pat = (GEN_FCN (tertiary_icode)
5137                              (reloadreg, second_reloadreg, third_reloadreg));
5138                     }
5139                   else
5140                     pat = gen_move_insn (reloadreg, second_reloadreg);
5141
5142                   emit_insn_before (pat, first_output_reload_insn);
5143                 }
5144             }
5145 #endif
5146
5147           /* Output the last reload insn.  */
5148           if (! special)
5149             emit_insn_before (gen_move_insn (old, reloadreg),
5150                               first_output_reload_insn);
5151
5152 #ifdef PRESERVE_DEATH_INFO_REGNO_P
5153           /* If final will look at death notes for this reg,
5154              put one on the last output-reload insn to use it.  Similarly
5155              for any secondary register.  */
5156           if (PRESERVE_DEATH_INFO_REGNO_P (REGNO (reloadreg)))
5157             for (p = PREV_INSN (first_output_reload_insn);
5158                  p != prev_insn; p = PREV_INSN (p))
5159               if (GET_RTX_CLASS (GET_CODE (p)) == 'i'
5160                   && reg_overlap_mentioned_p (reloadreg, PATTERN (p)))
5161                 REG_NOTES (p) = gen_rtx (EXPR_LIST, REG_DEAD,
5162                                          reloadreg, REG_NOTES (p));
5163
5164 #ifdef SECONDARY_OUTPUT_RELOAD_CLASS
5165           if (! special
5166               && PRESERVE_DEATH_INFO_REGNO_P (REGNO (second_reloadreg)))
5167             for (p = PREV_INSN (first_output_reload_insn);
5168                  p != prev_insn; p = PREV_INSN (p))
5169               if (GET_RTX_CLASS (GET_CODE (p)) == 'i'
5170                   && reg_overlap_mentioned_p (second_reloadreg, PATTERN (p)))
5171                 REG_NOTES (p) = gen_rtx (EXPR_LIST, REG_DEAD,
5172                                          second_reloadreg, REG_NOTES (p));
5173 #endif
5174 #endif
5175           /* Look at all insns we emitted, just to be safe.  */
5176           for (p = NEXT_INSN (prev_insn); p != first_output_reload_insn;
5177                p = NEXT_INSN (p))
5178             if (GET_RTX_CLASS (GET_CODE (p)) == 'i')
5179               {
5180                 /* If this output reload doesn't come from a spill reg,
5181                    clear any memory of reloaded copies of the pseudo reg.
5182                    If this output reload comes from a spill reg,
5183                    reg_has_output_reload will make this do nothing.  */
5184                 note_stores (PATTERN (p), forget_old_reloads_1);
5185
5186                 if (reg_mentioned_p (reload_reg_rtx[j], PATTERN (p)))
5187                   store_insn = p;
5188               }
5189
5190           first_output_reload_insn = NEXT_INSN (prev_insn);
5191         }
5192
5193       if (reload_spill_index[j] >= 0)
5194         new_spill_reg_store[reload_spill_index[j]] = store_insn;
5195     }
5196
5197   /* Move death notes from INSN
5198      to output-operand-address and output reload insns.  */
5199 #ifdef PRESERVE_DEATH_INFO_REGNO_P
5200   {
5201     rtx insn1;
5202     /* Loop over those insns, last ones first.  */
5203     for (insn1 = PREV_INSN (following_insn); insn1 != insn;
5204          insn1 = PREV_INSN (insn1))
5205       if (GET_CODE (insn1) == INSN && GET_CODE (PATTERN (insn1)) == SET)
5206         {
5207           rtx source = SET_SRC (PATTERN (insn1));
5208           rtx dest = SET_DEST (PATTERN (insn1));
5209
5210           /* The note we will examine next.  */
5211           rtx reg_notes = REG_NOTES (insn);
5212           /* The place that pointed to this note.  */
5213           rtx *prev_reg_note = &REG_NOTES (insn);
5214
5215           /* If the note is for something used in the source of this
5216              reload insn, or in the output address, move the note.  */
5217           while (reg_notes)
5218             {
5219               rtx next_reg_notes = XEXP (reg_notes, 1);
5220               if (REG_NOTE_KIND (reg_notes) == REG_DEAD
5221                   && GET_CODE (XEXP (reg_notes, 0)) == REG
5222                   && ((GET_CODE (dest) != REG
5223                        && reg_overlap_mentioned_p (XEXP (reg_notes, 0), dest))
5224                       || reg_overlap_mentioned_p (XEXP (reg_notes, 0), source)))
5225                 {
5226                   *prev_reg_note = next_reg_notes;
5227                   XEXP (reg_notes, 1) = REG_NOTES (insn1);
5228                   REG_NOTES (insn1) = reg_notes;
5229                 }
5230               else
5231                 prev_reg_note = &XEXP (reg_notes, 1);
5232
5233               reg_notes = next_reg_notes;
5234             }
5235         }
5236   }
5237 #endif
5238
5239   /* For all the spill regs newly reloaded in this instruction,
5240      record what they were reloaded from, so subsequent instructions
5241      can inherit the reloads.
5242
5243      Update spill_reg_store for the reloads of this insn.
5244      Copy the elements that were updated in the loop above.  */
5245
5246   for (j = 0; j < n_reloads; j++)
5247     {
5248       register int r = reload_order[j];
5249       register int i = reload_spill_index[r];
5250
5251       /* I is nonneg if this reload used one of the spill regs.
5252          If reload_reg_rtx[r] is 0, this is an optional reload
5253          that we opted to ignore.  */
5254
5255       if (i >= 0 && reload_reg_rtx[r] != 0)
5256         {
5257           /* First, clear out memory of what used to be in this spill reg.
5258              If consecutive registers are used, clear them all.  */
5259           int nr
5260             = HARD_REGNO_NREGS (spill_regs[i], GET_MODE (reload_reg_rtx[r]));
5261           int k;
5262
5263           for (k = 0; k < nr; k++)
5264             {
5265               reg_reloaded_contents[spill_reg_order[spill_regs[i] + k]] = -1;
5266               reg_reloaded_insn[spill_reg_order[spill_regs[i] + k]] = 0;
5267             }
5268
5269           /* Maybe the spill reg contains a copy of reload_out.  */
5270           if (reload_out[r] != 0 && GET_CODE (reload_out[r]) == REG)
5271             {
5272               register int nregno = REGNO (reload_out[r]);
5273
5274               spill_reg_store[i] = new_spill_reg_store[i];
5275               reg_last_reload_reg[nregno] = reload_reg_rtx[r];
5276
5277               for (k = 0; k < nr; k++)
5278                 {
5279                   reg_reloaded_contents[spill_reg_order[spill_regs[i] + k]]
5280                     = nregno;
5281                   reg_reloaded_insn[spill_reg_order[spill_regs[i] + k]] = insn;
5282                 }
5283             }
5284
5285           /* Maybe the spill reg contains a copy of reload_in.  */
5286           else if (reload_out[r] == 0
5287                    && reload_in[r] != 0
5288                    && (GET_CODE (reload_in[r]) == REG
5289                        || GET_CODE (reload_in_reg[r]) == REG))
5290             {
5291               register int nregno;
5292               if (GET_CODE (reload_in[r]) == REG)
5293                 nregno = REGNO (reload_in[r]);
5294               else
5295                 nregno = REGNO (reload_in_reg[r]);
5296
5297               /* If there are two separate reloads (one in and one out)
5298                  for the same (hard or pseudo) reg,
5299                  leave reg_last_reload_reg set
5300                  based on the output reload.
5301                  Otherwise, set it from this input reload.  */
5302               if (!reg_has_output_reload[nregno]
5303                   /* But don't do so if another input reload
5304                      will clobber this one's value.  */
5305                   && reload_reg_reaches_end_p (spill_regs[i],
5306                                                reload_when_needed[r]))
5307                 {
5308                   reg_last_reload_reg[nregno] = reload_reg_rtx[r];
5309
5310                   /* Unless we inherited this reload, show we haven't
5311                      recently done a store.  */
5312                   if (! reload_inherited[r])
5313                     spill_reg_store[i] = 0;
5314
5315                   for (k = 0; k < nr; k++)
5316                     {
5317                       reg_reloaded_contents[spill_reg_order[spill_regs[i] + k]]
5318                         = nregno;
5319                       reg_reloaded_insn[spill_reg_order[spill_regs[i] + k]]
5320                         = insn;
5321                     }
5322                 }
5323             }
5324         }
5325
5326       /* The following if-statement was #if 0'd in 1.34 (or before...).
5327          It's reenabled in 1.35 because supposedly nothing else
5328          deals with this problem.  */
5329
5330       /* If a register gets output-reloaded from a non-spill register,
5331          that invalidates any previous reloaded copy of it.
5332          But forget_old_reloads_1 won't get to see it, because
5333          it thinks only about the original insn.  So invalidate it here.  */
5334       if (i < 0 && reload_out[r] != 0 && GET_CODE (reload_out[r]) == REG)
5335         {
5336           register int nregno = REGNO (reload_out[r]);
5337           reg_last_reload_reg[nregno] = 0;
5338         }
5339     }
5340 }
5341 \f
5342 /* Emit code before BEFORE_INSN to perform an input reload of IN to RELOADREG.
5343    Returns first insn emitted.  */
5344
5345 rtx
5346 gen_input_reload (reloadreg, in, before_insn)
5347      rtx reloadreg;
5348      rtx in;
5349      rtx before_insn;
5350 {
5351   register rtx prev_insn = PREV_INSN (before_insn);
5352
5353   /* How to do this reload can get quite tricky.  Normally, we are being
5354      asked to reload a simple operand, such as a MEM, a constant, or a pseudo
5355      register that didn't get a hard register.  In that case we can just
5356      call emit_move_insn.
5357
5358      We can also be asked to reload a PLUS that adds either two registers or
5359      a register and a constant or MEM.  This can occur during frame pointer
5360      elimination.  That case if handled by trying to emit a single insn
5361      to perform the add.  If it is not valid, we use a two insn sequence.
5362
5363      Finally, we could be called to handle an 'o' constraint by putting
5364      an address into a register.  In that case, we first try to do this
5365      with a named pattern of "reload_load_address".  If no such pattern
5366      exists, we just emit a SET insn and hope for the best (it will normally
5367      be valid on machines that use 'o').
5368
5369      This entire process is made complex because reload will never
5370      process the insns we generate here and so we must ensure that
5371      they will fit their constraints and also by the fact that parts of
5372      IN might be being reloaded separately and replaced with spill registers.
5373      Because of this, we are, in some sense, just guessing the right approach
5374      here.  The one listed above seems to work.
5375
5376      ??? At some point, this whole thing needs to be rethought.  */
5377
5378   if (GET_CODE (in) == PLUS
5379       && GET_CODE (XEXP (in, 0)) == REG
5380       && (GET_CODE (XEXP (in, 1)) == REG
5381           || CONSTANT_P (XEXP (in, 1))
5382           || GET_CODE (XEXP (in, 1)) == MEM))
5383     {
5384       /* We need to compute the sum of what is either a register and a
5385          constant, a register and memory, or a hard register and a pseudo
5386          register and put it into the reload register.  The best possible way
5387          of doing this is if the machine has a three-operand ADD insn that
5388          accepts the required operands.
5389
5390          The simplest approach is to try to generate such an insn and see if it
5391          is recognized and matches its constraints.  If so, it can be used.
5392
5393          It might be better not to actually emit the insn unless it is valid,
5394          but we need to pass the insn as an operand to `recog' and it is
5395          simpler to emit and then delete the insn if not valid than to
5396          dummy things up.  */
5397
5398       rtx move_operand, other_operand, insn;
5399       int code;
5400
5401       /* Since constraint checking is strict, commutativity won't be
5402          checked, so we need to do that here to avoid spurious failure
5403          if the add instruction is two-address and the second operand
5404          of the add is the same as the reload reg, which is frequently
5405          the case.  If the insn would be A = B + A, rearrange it so
5406          it will be A = A + B as constrain_operands expects. */
5407
5408       if (GET_CODE (XEXP (in, 1)) == REG
5409           && REGNO (reloadreg) == REGNO (XEXP (in, 1)))
5410         in = gen_rtx (PLUS, GET_MODE (in), XEXP (in, 1), XEXP (in, 0));
5411
5412       insn = emit_insn_before (gen_rtx (SET, VOIDmode, reloadreg, in),
5413                                    before_insn);
5414       code = recog_memoized (insn);
5415
5416       if (code >= 0)
5417         {
5418           insn_extract (insn);
5419           /* We want constrain operands to treat this insn strictly in
5420              its validity determination, i.e., the way it would after reload
5421              has completed.  */
5422           if (constrain_operands (code, 1))
5423             return insn;
5424         }
5425
5426       if (PREV_INSN (insn))
5427         NEXT_INSN (PREV_INSN (insn)) = NEXT_INSN (insn);
5428       if (NEXT_INSN (insn))
5429         PREV_INSN (NEXT_INSN (insn)) = PREV_INSN (insn);
5430
5431       /* If that failed, we must use a conservative two-insn sequence.
5432          use move to copy constant, MEM, or pseudo register to the reload
5433          register since "move" will be able to handle arbitrary operand, unlike
5434          add which can't, in general.  Then add the registers.
5435
5436          If there is another way to do this for a specific machine, a
5437          DEFINE_PEEPHOLE should be specified that recognizes the sequence
5438          we emit below.  */
5439
5440       if (CONSTANT_P (XEXP (in, 1))
5441           || GET_CODE (XEXP (in, 1)) == MEM
5442           || (GET_CODE (XEXP (in, 1)) == REG
5443               && REGNO (XEXP (in, 1)) >= FIRST_PSEUDO_REGISTER))
5444         move_operand = XEXP (in, 1), other_operand = XEXP (in, 0);
5445       else
5446         move_operand = XEXP (in, 0), other_operand = XEXP (in, 1);
5447
5448       emit_insn_before (gen_move_insn (reloadreg, move_operand), before_insn);
5449       emit_insn_before (gen_add2_insn (reloadreg, other_operand), before_insn);
5450     }
5451
5452   /* If IN is a simple operand, use gen_move_insn.  */
5453   else if (GET_RTX_CLASS (GET_CODE (in)) == 'o' || GET_CODE (in) == SUBREG)
5454     emit_insn_before (gen_move_insn (reloadreg, in), before_insn);
5455
5456 #ifdef HAVE_reload_load_address
5457   else if (HAVE_reload_load_address)
5458     emit_insn_before (gen_reload_load_address (reloadreg, in), before_insn);
5459 #endif
5460
5461   /* Otherwise, just write (set REGLOADREG IN) and hope for the best.  */
5462   else
5463     emit_insn_before (gen_rtx (SET, VOIDmode, reloadreg, in), before_insn);
5464
5465   /* Return the first insn emitted.
5466      We can not just return PREV_INSN (before_insn), because there may have
5467      been multiple instructions emitted.  Also note that gen_move_insn may
5468      emit more than one insn itself, so we can not assume that there is one
5469      insn emitted per emit_insn_before call.  */
5470
5471   return NEXT_INSN (prev_insn);
5472 }
5473 \f
5474 /* Delete a previously made output-reload
5475    whose result we now believe is not needed.
5476    First we double-check.
5477
5478    INSN is the insn now being processed.
5479    OUTPUT_RELOAD_INSN is the insn of the output reload.
5480    J is the reload-number for this insn.  */
5481
5482 static void
5483 delete_output_reload (insn, j, output_reload_insn)
5484      rtx insn;
5485      int j;
5486      rtx output_reload_insn;
5487 {
5488   register rtx i1;
5489
5490   /* Get the raw pseudo-register referred to.  */
5491
5492   rtx reg = reload_in[j];
5493   while (GET_CODE (reg) == SUBREG)
5494     reg = SUBREG_REG (reg);
5495
5496   /* If the pseudo-reg we are reloading is no longer referenced
5497      anywhere between the store into it and here,
5498      and no jumps or labels intervene, then the value can get
5499      here through the reload reg alone.
5500      Otherwise, give up--return.  */
5501   for (i1 = NEXT_INSN (output_reload_insn);
5502        i1 != insn; i1 = NEXT_INSN (i1))
5503     {
5504       if (GET_CODE (i1) == CODE_LABEL || GET_CODE (i1) == JUMP_INSN)
5505         return;
5506       if ((GET_CODE (i1) == INSN || GET_CODE (i1) == CALL_INSN)
5507           && reg_mentioned_p (reg, PATTERN (i1)))
5508         return;
5509     }
5510
5511   /* If this insn will store in the pseudo again,
5512      the previous store can be removed.  */
5513   if (reload_out[j] == reload_in[j])
5514     delete_insn (output_reload_insn);
5515
5516   /* See if the pseudo reg has been completely replaced
5517      with reload regs.  If so, delete the store insn
5518      and forget we had a stack slot for the pseudo.  */
5519   else if (reg_n_deaths[REGNO (reg)] == 1
5520            && reg_basic_block[REGNO (reg)] >= 0
5521            && find_regno_note (insn, REG_DEAD, REGNO (reg)))
5522     {
5523       rtx i2;
5524
5525       /* We know that it was used only between here
5526          and the beginning of the current basic block.
5527          (We also know that the last use before INSN was
5528          the output reload we are thinking of deleting, but never mind that.)
5529          Search that range; see if any ref remains.  */
5530       for (i2 = PREV_INSN (insn); i2; i2 = PREV_INSN (i2))
5531         {
5532           rtx set = single_set (i2);
5533
5534           /* Uses which just store in the pseudo don't count,
5535              since if they are the only uses, they are dead.  */
5536           if (set != 0 && SET_DEST (set) == reg)
5537             continue;
5538           if (GET_CODE (i2) == CODE_LABEL
5539               || GET_CODE (i2) == JUMP_INSN)
5540             break;
5541           if ((GET_CODE (i2) == INSN || GET_CODE (i2) == CALL_INSN)
5542               && reg_mentioned_p (reg, PATTERN (i2)))
5543             /* Some other ref remains;
5544                we can't do anything.  */
5545             return;
5546         }
5547
5548       /* Delete the now-dead stores into this pseudo.  */
5549       for (i2 = PREV_INSN (insn); i2; i2 = PREV_INSN (i2))
5550         {
5551           rtx set = single_set (i2);
5552
5553           if (set != 0 && SET_DEST (set) == reg)
5554             delete_insn (i2);
5555           if (GET_CODE (i2) == CODE_LABEL
5556               || GET_CODE (i2) == JUMP_INSN)
5557             break;
5558         }
5559
5560       /* For the debugging info,
5561          say the pseudo lives in this reload reg.  */
5562       reg_renumber[REGNO (reg)] = REGNO (reload_reg_rtx[j]);
5563       alter_reg (REGNO (reg), -1);
5564     }
5565 }
5566
5567 \f
5568 /* Output reload-insns to reload VALUE into RELOADREG.
5569    VALUE is a autoincrement or autodecrement RTX whose operand
5570    is a register or memory location;
5571    so reloading involves incrementing that location.
5572
5573    INC_AMOUNT is the number to increment or decrement by (always positive).
5574    This cannot be deduced from VALUE.
5575
5576    INSN is the insn before which the new insns should be emitted.
5577
5578    The return value is the first of the insns emitted.  */
5579
5580 static rtx
5581 inc_for_reload (reloadreg, value, inc_amount, insn)
5582      rtx reloadreg;
5583      rtx value;
5584      int inc_amount;
5585      rtx insn;
5586 {
5587   /* REG or MEM to be copied and incremented.  */
5588   rtx incloc = XEXP (value, 0);
5589   /* Nonzero if increment after copying.  */
5590   int post = (GET_CODE (value) == POST_DEC || GET_CODE (value) == POST_INC);
5591
5592   /* No hard register is equivalent to this register after
5593      inc/dec operation.  If REG_LAST_RELOAD_REG were non-zero,
5594      we could inc/dec that register as well (maybe even using it for
5595      the source), but I'm not sure it's worth worrying about.  */
5596   if (GET_CODE (incloc) == REG)
5597     reg_last_reload_reg[REGNO (incloc)] = 0;
5598
5599   if (GET_CODE (value) == PRE_DEC || GET_CODE (value) == POST_DEC)
5600     inc_amount = - inc_amount;
5601
5602   /* First handle preincrement, which is simpler.  */
5603   if (! post)
5604     {
5605       /* If incrementing a register, assume we can
5606          output an insn to increment it directly.  */
5607       if (GET_CODE (incloc) == REG &&
5608           (REGNO (incloc) < FIRST_PSEUDO_REGISTER
5609            || reg_renumber[REGNO (incloc)] >= 0))
5610         {
5611           rtx first_new
5612             = emit_insn_before (gen_add2_insn (incloc,
5613                                                gen_rtx (CONST_INT, VOIDmode,
5614                                                         inc_amount)),
5615                                 insn);
5616           emit_insn_before (gen_move_insn (reloadreg, incloc), insn);
5617           return first_new;
5618         }
5619       else
5620         /* Else we must not assume we can increment the location directly
5621            (even though on many target machines we can);
5622            copy it to the reload register, increment there, then save back.  */
5623         {
5624           rtx first_new
5625             = emit_insn_before (gen_move_insn (reloadreg, incloc), insn);
5626           emit_insn_before (gen_add2_insn (reloadreg,
5627                                            gen_rtx (CONST_INT, VOIDmode,
5628                                                     inc_amount)),
5629                             insn);
5630           emit_insn_before (gen_move_insn (incloc, reloadreg), insn);
5631           return first_new;
5632         }
5633     }
5634   /* Postincrement.
5635      Because this might be a jump insn or a compare, and because RELOADREG
5636      may not be available after the insn in an input reload,
5637      we must do the incrementation before the insn being reloaded for.  */
5638   else
5639     {
5640       /* Copy the value, then increment it.  */
5641       rtx first_new
5642         = emit_insn_before (gen_move_insn (reloadreg, incloc), insn);
5643
5644       /* If incrementing a register, assume we can
5645          output an insn to increment it directly.  */
5646       if (GET_CODE (incloc) == REG &&
5647           (REGNO (incloc) < FIRST_PSEUDO_REGISTER
5648            || reg_renumber[REGNO (incloc)] >= 0))
5649         {
5650           emit_insn_before (gen_add2_insn (incloc,
5651                                            gen_rtx (CONST_INT, VOIDmode,
5652                                                     inc_amount)),
5653                             insn);
5654         }
5655       else
5656         /* Else we must not assume we can increment INCLOC
5657            (even though on many target machines we can);
5658            increment the copy in the reload register,
5659            save that back, then decrement the reload register
5660            so it has the original value.  */
5661         {
5662           emit_insn_before (gen_add2_insn (reloadreg,
5663                                            gen_rtx (CONST_INT, VOIDmode,
5664                                                     inc_amount)),
5665                             insn);
5666           emit_insn_before (gen_move_insn (incloc, reloadreg), insn);
5667           emit_insn_before (gen_sub2_insn (reloadreg,
5668                                            gen_rtx (CONST_INT, VOIDmode,
5669                                                     inc_amount)),
5670                             insn);
5671         }
5672       return first_new;
5673     }
5674 }
5675 \f
5676 /* Return 1 if we are certain that the constraint-string STRING allows
5677    the hard register REG.  Return 0 if we can't be sure of this.  */
5678
5679 static int
5680 constraint_accepts_reg_p (string, reg)
5681      char *string;
5682      rtx reg;
5683 {
5684   int value = 0;
5685   int regno = true_regnum (reg);
5686   int c;
5687
5688   /* Initialize for first alternative.  */
5689   value = 0;
5690   /* Check that each alternative contains `g' or `r'.  */
5691   while (1)
5692     switch (c = *string++)
5693       {
5694       case 0:
5695         /* If an alternative lacks `g' or `r', we lose.  */
5696         return value;
5697       case ',':
5698         /* If an alternative lacks `g' or `r', we lose.  */
5699         if (value == 0)
5700           return 0;
5701         /* Initialize for next alternative.  */
5702         value = 0;
5703         break;
5704       case 'g':
5705       case 'r':
5706         /* Any general reg wins for this alternative.  */
5707         if (TEST_HARD_REG_BIT (reg_class_contents[(int) GENERAL_REGS], regno))
5708           value = 1;
5709         break;
5710       default:
5711         /* Any reg in specified class wins for this alternative.  */
5712         {
5713           int class = REG_CLASS_FROM_LETTER (c);
5714
5715           if (TEST_HARD_REG_BIT (reg_class_contents[class], regno))
5716             value = 1;
5717         }
5718       }
5719 }
5720 \f
5721 /* Return the number of places FIND appears within X, but don't count
5722    an occurrence if some SET_DEST is FIND.  */
5723
5724 static int
5725 count_occurrences (x, find)
5726      register rtx x, find;
5727 {
5728   register int i, j;
5729   register enum rtx_code code;
5730   register char *format_ptr;
5731   int count;
5732
5733   if (x == find)
5734     return 1;
5735   if (x == 0)
5736     return 0;
5737
5738   code = GET_CODE (x);
5739
5740   switch (code)
5741     {
5742     case REG:
5743     case QUEUED:
5744     case CONST_INT:
5745     case CONST_DOUBLE:
5746     case SYMBOL_REF:
5747     case CODE_LABEL:
5748     case PC:
5749     case CC0:
5750       return 0;
5751
5752     case SET:
5753       if (SET_DEST (x) == find)
5754         return count_occurrences (SET_SRC (x), find);
5755       break;
5756     }
5757
5758   format_ptr = GET_RTX_FORMAT (code);
5759   count = 0;
5760
5761   for (i = 0; i < GET_RTX_LENGTH (code); i++)
5762     {
5763       switch (*format_ptr++)
5764         {
5765         case 'e':
5766           count += count_occurrences (XEXP (x, i), find);
5767           break;
5768
5769         case 'E':
5770           if (XVEC (x, i) != NULL)
5771             {
5772               for (j = 0; j < XVECLEN (x, i); j++)
5773                 count += count_occurrences (XVECEXP (x, i, j), find);
5774             }
5775           break;
5776         }
5777     }
5778   return count;
5779 }