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