]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/lra-constraints.c
configure.ac: Set BDW_GC_CFLAGS and BDW_GC_LIBS after checking for the existence...
[thirdparty/gcc.git] / gcc / lra-constraints.c
CommitLineData
55a2c322 1/* Code for RTL transformations to satisfy insn constraints.
818ab71a 2 Copyright (C) 2010-2016 Free Software Foundation, Inc.
55a2c322
VM
3 Contributed by Vladimir Makarov <vmakarov@redhat.com>.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
20
21
22/* This file contains code for 3 passes: constraint pass,
23 inheritance/split pass, and pass for undoing failed inheritance and
24 split.
25
26 The major goal of constraint pass is to transform RTL to satisfy
27 insn and address constraints by:
28 o choosing insn alternatives;
29 o generating *reload insns* (or reloads in brief) and *reload
30 pseudos* which will get necessary hard registers later;
31 o substituting pseudos with equivalent values and removing the
32 instructions that initialized those pseudos.
33
34 The constraint pass has biggest and most complicated code in LRA.
35 There are a lot of important details like:
36 o reuse of input reload pseudos to simplify reload pseudo
37 allocations;
38 o some heuristics to choose insn alternative to improve the
39 inheritance;
40 o early clobbers etc.
41
42 The pass is mimicking former reload pass in alternative choosing
43 because the reload pass is oriented to current machine description
44 model. It might be changed if the machine description model is
45 changed.
46
47 There is special code for preventing all LRA and this pass cycling
48 in case of bugs.
49
50 On the first iteration of the pass we process every instruction and
51 choose an alternative for each one. On subsequent iterations we try
52 to avoid reprocessing instructions if we can be sure that the old
53 choice is still valid.
54
55 The inheritance/spilt pass is to transform code to achieve
56 ineheritance and live range splitting. It is done on backward
57 traversal of EBBs.
58
59 The inheritance optimization goal is to reuse values in hard
60 registers. There is analogous optimization in old reload pass. The
61 inheritance is achieved by following transformation:
62
63 reload_p1 <- p reload_p1 <- p
64 ... new_p <- reload_p1
65 ... => ...
66 reload_p2 <- p reload_p2 <- new_p
67
68 where p is spilled and not changed between the insns. Reload_p1 is
69 also called *original pseudo* and new_p is called *inheritance
70 pseudo*.
71
72 The subsequent assignment pass will try to assign the same (or
73 another if it is not possible) hard register to new_p as to
74 reload_p1 or reload_p2.
75
76 If the assignment pass fails to assign a hard register to new_p,
77 this file will undo the inheritance and restore the original code.
78 This is because implementing the above sequence with a spilled
79 new_p would make the code much worse. The inheritance is done in
80 EBB scope. The above is just a simplified example to get an idea
81 of the inheritance as the inheritance is also done for non-reload
82 insns.
83
84 Splitting (transformation) is also done in EBB scope on the same
85 pass as the inheritance:
86
87 r <- ... or ... <- r r <- ... or ... <- r
88 ... s <- r (new insn -- save)
f4eafc30 89 ... =>
55a2c322
VM
90 ... r <- s (new insn -- restore)
91 ... <- r ... <- r
92
93 The *split pseudo* s is assigned to the hard register of the
94 original pseudo or hard register r.
95
96 Splitting is done:
97 o In EBBs with high register pressure for global pseudos (living
98 in at least 2 BBs) and assigned to hard registers when there
99 are more one reloads needing the hard registers;
100 o for pseudos needing save/restore code around calls.
101
102 If the split pseudo still has the same hard register as the
103 original pseudo after the subsequent assignment pass or the
104 original pseudo was split, the opposite transformation is done on
105 the same pass for undoing inheritance. */
106
107#undef REG_OK_STRICT
108
109#include "config.h"
110#include "system.h"
111#include "coretypes.h"
c7131fb2 112#include "backend.h"
957060b5 113#include "target.h"
55a2c322 114#include "rtl.h"
957060b5
AM
115#include "tree.h"
116#include "predict.h"
c7131fb2 117#include "df.h"
4d0cdd0c 118#include "memmodel.h"
55a2c322 119#include "tm_p.h"
957060b5
AM
120#include "expmed.h"
121#include "optabs.h"
55a2c322 122#include "regs.h"
957060b5 123#include "ira.h"
55a2c322
VM
124#include "recog.h"
125#include "output.h"
126#include "addresses.h"
55a2c322 127#include "expr.h"
60393bbc 128#include "cfgrtl.h"
55a2c322 129#include "rtl-error.h"
fb8a0e40 130#include "params.h"
c7131fb2 131#include "lra.h"
55a2c322 132#include "lra-int.h"
013a8899 133#include "print-rtl.h"
55a2c322
VM
134
135/* Value of LRA_CURR_RELOAD_NUM at the beginning of BB of the current
136 insn. Remember that LRA_CURR_RELOAD_NUM is the number of emitted
137 reload insns. */
138static int bb_reload_num;
139
2c62cbaa
VM
140/* The current insn being processed and corresponding its single set
141 (NULL otherwise), its data (basic block, the insn data, the insn
142 static data, and the mode of each operand). */
cfa434f6 143static rtx_insn *curr_insn;
2c62cbaa 144static rtx curr_insn_set;
55a2c322
VM
145static basic_block curr_bb;
146static lra_insn_recog_data_t curr_id;
147static struct lra_static_insn_data *curr_static_id;
ef4bddc2 148static machine_mode curr_operand_mode[MAX_RECOG_OPERANDS];
895ff86f
VM
149/* Mode of the register substituted by its equivalence with VOIDmode
150 (e.g. constant) and whose subreg is given operand of the current
151 insn. VOIDmode in all other cases. */
152static machine_mode original_subreg_reg_mode[MAX_RECOG_OPERANDS];
55a2c322
VM
153
154\f
155
156/* Start numbers for new registers and insns at the current constraints
157 pass start. */
158static int new_regno_start;
159static int new_insn_uid_start;
160
277f65de
RS
161/* If LOC is nonnull, strip any outer subreg from it. */
162static inline rtx *
163strip_subreg (rtx *loc)
164{
165 return loc && GET_CODE (*loc) == SUBREG ? &SUBREG_REG (*loc) : loc;
166}
167
55a2c322
VM
168/* Return hard regno of REGNO or if it is was not assigned to a hard
169 register, use a hard register from its allocno class. */
170static int
171get_try_hard_regno (int regno)
172{
173 int hard_regno;
174 enum reg_class rclass;
175
176 if ((hard_regno = regno) >= FIRST_PSEUDO_REGISTER)
177 hard_regno = lra_get_regno_hard_regno (regno);
178 if (hard_regno >= 0)
179 return hard_regno;
180 rclass = lra_get_allocno_class (regno);
181 if (rclass == NO_REGS)
182 return -1;
183 return ira_class_hard_regs[rclass][0];
184}
185
9d0a9bb4
PB
186/* Return the hard regno of X after removing its subreg. If X is not
187 a register or a subreg of a register, return -1. If X is a pseudo,
1686923c
BE
188 use its assignment. If FINAL_P return the final hard regno which will
189 be after elimination. */
55a2c322 190static int
1686923c 191get_hard_regno (rtx x, bool final_p)
55a2c322
VM
192{
193 rtx reg;
1686923c 194 int hard_regno;
55a2c322
VM
195
196 reg = x;
9d0a9bb4 197 if (SUBREG_P (x))
55a2c322
VM
198 reg = SUBREG_REG (x);
199 if (! REG_P (reg))
200 return -1;
9d0a9bb4 201 if (! HARD_REGISTER_NUM_P (hard_regno = REGNO (reg)))
55a2c322
VM
202 hard_regno = lra_get_regno_hard_regno (hard_regno);
203 if (hard_regno < 0)
204 return -1;
1686923c
BE
205 if (final_p)
206 hard_regno = lra_get_elimination_hard_regno (hard_regno);
9d0a9bb4 207 if (SUBREG_P (x))
1686923c
BE
208 hard_regno += subreg_regno_offset (hard_regno, GET_MODE (reg),
209 SUBREG_BYTE (x), GET_MODE (x));
210 return hard_regno;
55a2c322
VM
211}
212
213/* If REGNO is a hard register or has been allocated a hard register,
214 return the class of that register. If REGNO is a reload pseudo
215 created by the current constraints pass, return its allocno class.
216 Return NO_REGS otherwise. */
217static enum reg_class
218get_reg_class (int regno)
219{
220 int hard_regno;
221
1686923c 222 if (! HARD_REGISTER_NUM_P (hard_regno = regno))
55a2c322
VM
223 hard_regno = lra_get_regno_hard_regno (regno);
224 if (hard_regno >= 0)
225 {
1686923c 226 hard_regno = lra_get_elimination_hard_regno (hard_regno);
55a2c322
VM
227 return REGNO_REG_CLASS (hard_regno);
228 }
229 if (regno >= new_regno_start)
230 return lra_get_allocno_class (regno);
231 return NO_REGS;
232}
233
234/* Return true if REG satisfies (or will satisfy) reg class constraint
235 CL. Use elimination first if REG is a hard register. If REG is a
236 reload pseudo created by this constraints pass, assume that it will
237 be allocated a hard register from its allocno class, but allow that
238 class to be narrowed to CL if it is currently a superset of CL.
239
240 If NEW_CLASS is nonnull, set *NEW_CLASS to the new allocno class of
241 REGNO (reg), or NO_REGS if no change in its class was needed. */
242static bool
243in_class_p (rtx reg, enum reg_class cl, enum reg_class *new_class)
244{
245 enum reg_class rclass, common_class;
ef4bddc2 246 machine_mode reg_mode;
55a2c322
VM
247 int class_size, hard_regno, nregs, i, j;
248 int regno = REGNO (reg);
f4eafc30 249
55a2c322
VM
250 if (new_class != NULL)
251 *new_class = NO_REGS;
252 if (regno < FIRST_PSEUDO_REGISTER)
253 {
254 rtx final_reg = reg;
255 rtx *final_loc = &final_reg;
f4eafc30 256
55a2c322
VM
257 lra_eliminate_reg_if_possible (final_loc);
258 return TEST_HARD_REG_BIT (reg_class_contents[cl], REGNO (*final_loc));
259 }
260 reg_mode = GET_MODE (reg);
261 rclass = get_reg_class (regno);
262 if (regno < new_regno_start
263 /* Do not allow the constraints for reload instructions to
264 influence the classes of new pseudos. These reloads are
265 typically moves that have many alternatives, and restricting
266 reload pseudos for one alternative may lead to situations
267 where other reload pseudos are no longer allocatable. */
a2d0d374
VM
268 || (INSN_UID (curr_insn) >= new_insn_uid_start
269 && curr_insn_set != NULL
58532ca6
VM
270 && ((OBJECT_P (SET_SRC (curr_insn_set))
271 && ! CONSTANT_P (SET_SRC (curr_insn_set)))
a2d0d374 272 || (GET_CODE (SET_SRC (curr_insn_set)) == SUBREG
58532ca6
VM
273 && OBJECT_P (SUBREG_REG (SET_SRC (curr_insn_set)))
274 && ! CONSTANT_P (SUBREG_REG (SET_SRC (curr_insn_set)))))))
55a2c322
VM
275 /* When we don't know what class will be used finally for reload
276 pseudos, we use ALL_REGS. */
277 return ((regno >= new_regno_start && rclass == ALL_REGS)
278 || (rclass != NO_REGS && ira_class_subset_p[rclass][cl]
279 && ! hard_reg_set_subset_p (reg_class_contents[cl],
280 lra_no_alloc_regs)));
281 else
282 {
283 common_class = ira_reg_class_subset[rclass][cl];
284 if (new_class != NULL)
285 *new_class = common_class;
286 if (hard_reg_set_subset_p (reg_class_contents[common_class],
287 lra_no_alloc_regs))
288 return false;
289 /* Check that there are enough allocatable regs. */
290 class_size = ira_class_hard_regs_num[common_class];
291 for (i = 0; i < class_size; i++)
292 {
293 hard_regno = ira_class_hard_regs[common_class][i];
294 nregs = hard_regno_nregs[hard_regno][reg_mode];
295 if (nregs == 1)
296 return true;
297 for (j = 0; j < nregs; j++)
f421c426
VM
298 if (TEST_HARD_REG_BIT (lra_no_alloc_regs, hard_regno + j)
299 || ! TEST_HARD_REG_BIT (reg_class_contents[common_class],
300 hard_regno + j))
55a2c322
VM
301 break;
302 if (j >= nregs)
303 return true;
304 }
305 return false;
306 }
307}
308
309/* Return true if REGNO satisfies a memory constraint. */
310static bool
311in_mem_p (int regno)
312{
313 return get_reg_class (regno) == NO_REGS;
314}
315
a953491e
RS
316/* Return 1 if ADDR is a valid memory address for mode MODE in address
317 space AS, and check that each pseudo has the proper kind of hard
318 reg. */
319static int
ef4bddc2 320valid_address_p (machine_mode mode ATTRIBUTE_UNUSED,
a953491e
RS
321 rtx addr, addr_space_t as)
322{
323#ifdef GO_IF_LEGITIMATE_ADDRESS
324 lra_assert (ADDR_SPACE_GENERIC_P (as));
325 GO_IF_LEGITIMATE_ADDRESS (mode, addr, win);
326 return 0;
327
328 win:
329 return 1;
330#else
331 return targetm.addr_space.legitimate_address_p (mode, addr, 0, as);
332#endif
333}
334
335namespace {
336 /* Temporarily eliminates registers in an address (for the lifetime of
337 the object). */
338 class address_eliminator {
339 public:
340 address_eliminator (struct address_info *ad);
341 ~address_eliminator ();
342
343 private:
344 struct address_info *m_ad;
345 rtx *m_base_loc;
346 rtx m_base_reg;
347 rtx *m_index_loc;
348 rtx m_index_reg;
349 };
350}
351
352address_eliminator::address_eliminator (struct address_info *ad)
353 : m_ad (ad),
354 m_base_loc (strip_subreg (ad->base_term)),
355 m_base_reg (NULL_RTX),
356 m_index_loc (strip_subreg (ad->index_term)),
357 m_index_reg (NULL_RTX)
358{
359 if (m_base_loc != NULL)
360 {
361 m_base_reg = *m_base_loc;
362 lra_eliminate_reg_if_possible (m_base_loc);
363 if (m_ad->base_term2 != NULL)
364 *m_ad->base_term2 = *m_ad->base_term;
365 }
366 if (m_index_loc != NULL)
367 {
368 m_index_reg = *m_index_loc;
369 lra_eliminate_reg_if_possible (m_index_loc);
370 }
371}
372
373address_eliminator::~address_eliminator ()
374{
375 if (m_base_loc && *m_base_loc != m_base_reg)
376 {
377 *m_base_loc = m_base_reg;
378 if (m_ad->base_term2 != NULL)
379 *m_ad->base_term2 = *m_ad->base_term;
380 }
381 if (m_index_loc && *m_index_loc != m_index_reg)
382 *m_index_loc = m_index_reg;
383}
384
385/* Return true if the eliminated form of AD is a legitimate target address. */
386static bool
387valid_address_p (struct address_info *ad)
388{
389 address_eliminator eliminator (ad);
390 return valid_address_p (ad->mode, *ad->outer, ad->as);
391}
392
a953491e 393/* Return true if the eliminated form of memory reference OP satisfies
9eb1ca69 394 extra (special) memory constraint CONSTRAINT. */
a953491e 395static bool
777e635f 396satisfies_memory_constraint_p (rtx op, enum constraint_num constraint)
a953491e
RS
397{
398 struct address_info ad;
399
400 decompose_mem_address (&ad, op);
401 address_eliminator eliminator (&ad);
777e635f 402 return constraint_satisfied_p (op, constraint);
a953491e
RS
403}
404
405/* Return true if the eliminated form of address AD satisfies extra
406 address constraint CONSTRAINT. */
407static bool
408satisfies_address_constraint_p (struct address_info *ad,
777e635f 409 enum constraint_num constraint)
a953491e
RS
410{
411 address_eliminator eliminator (ad);
777e635f 412 return constraint_satisfied_p (*ad->outer, constraint);
a953491e
RS
413}
414
415/* Return true if the eliminated form of address OP satisfies extra
416 address constraint CONSTRAINT. */
417static bool
777e635f 418satisfies_address_constraint_p (rtx op, enum constraint_num constraint)
a953491e
RS
419{
420 struct address_info ad;
421
422 decompose_lea_address (&ad, &op);
423 return satisfies_address_constraint_p (&ad, constraint);
424}
a953491e 425
4c2b2d79
VM
426/* Initiate equivalences for LRA. As we keep original equivalences
427 before any elimination, we need to make copies otherwise any change
428 in insns might change the equivalences. */
429void
430lra_init_equiv (void)
431{
432 ira_expand_reg_equiv ();
433 for (int i = FIRST_PSEUDO_REGISTER; i < max_reg_num (); i++)
434 {
435 rtx res;
436
437 if ((res = ira_reg_equiv[i].memory) != NULL_RTX)
438 ira_reg_equiv[i].memory = copy_rtx (res);
439 if ((res = ira_reg_equiv[i].invariant) != NULL_RTX)
440 ira_reg_equiv[i].invariant = copy_rtx (res);
441 }
442}
443
444static rtx loc_equivalence_callback (rtx, const_rtx, void *);
445
446/* Update equivalence for REGNO. We need to this as the equivalence
447 might contain other pseudos which are changed by their
448 equivalences. */
449static void
450update_equiv (int regno)
451{
452 rtx x;
453
454 if ((x = ira_reg_equiv[regno].memory) != NULL_RTX)
455 ira_reg_equiv[regno].memory
456 = simplify_replace_fn_rtx (x, NULL_RTX, loc_equivalence_callback,
457 NULL_RTX);
458 if ((x = ira_reg_equiv[regno].invariant) != NULL_RTX)
459 ira_reg_equiv[regno].invariant
460 = simplify_replace_fn_rtx (x, NULL_RTX, loc_equivalence_callback,
461 NULL_RTX);
462}
463
55a2c322
VM
464/* If we have decided to substitute X with another value, return that
465 value, otherwise return X. */
466static rtx
8d49e7ef 467get_equiv (rtx x)
55a2c322
VM
468{
469 int regno;
470 rtx res;
471
472 if (! REG_P (x) || (regno = REGNO (x)) < FIRST_PSEUDO_REGISTER
473 || ! ira_reg_equiv[regno].defined_p
474 || ! ira_reg_equiv[regno].profitable_p
475 || lra_get_regno_hard_regno (regno) >= 0)
476 return x;
477 if ((res = ira_reg_equiv[regno].memory) != NULL_RTX)
d6220b11
KK
478 {
479 if (targetm.cannot_substitute_mem_equiv_p (res))
480 return x;
481 return res;
482 }
55a2c322
VM
483 if ((res = ira_reg_equiv[regno].constant) != NULL_RTX)
484 return res;
485 if ((res = ira_reg_equiv[regno].invariant) != NULL_RTX)
486 return res;
487 gcc_unreachable ();
488}
489
8d49e7ef
VM
490/* If we have decided to substitute X with the equivalent value,
491 return that value after elimination for INSN, otherwise return
492 X. */
493static rtx
cfa434f6 494get_equiv_with_elimination (rtx x, rtx_insn *insn)
8d49e7ef
VM
495{
496 rtx res = get_equiv (x);
497
498 if (x == res || CONSTANT_P (res))
499 return res;
d9cf932c 500 return lra_eliminate_regs_1 (insn, res, GET_MODE (res),
a6af1bf9 501 false, false, 0, true);
8d49e7ef
VM
502}
503
55a2c322
VM
504/* Set up curr_operand_mode. */
505static void
506init_curr_operand_mode (void)
507{
508 int nop = curr_static_id->n_operands;
509 for (int i = 0; i < nop; i++)
510 {
ef4bddc2 511 machine_mode mode = GET_MODE (*curr_id->operand_loc[i]);
55a2c322
VM
512 if (mode == VOIDmode)
513 {
514 /* The .md mode for address operands is the mode of the
515 addressed value rather than the mode of the address itself. */
516 if (curr_id->icode >= 0 && curr_static_id->operand[i].is_address)
517 mode = Pmode;
518 else
519 mode = curr_static_id->operand[i].mode;
520 }
521 curr_operand_mode[i] = mode;
522 }
523}
524
525\f
526
527/* The page contains code to reuse input reloads. */
528
529/* Structure describes input reload of the current insns. */
530struct input_reload
531{
3f156a6c
VM
532 /* True for input reload of matched operands. */
533 bool match_p;
55a2c322
VM
534 /* Reloaded value. */
535 rtx input;
536 /* Reload pseudo used. */
537 rtx reg;
538};
539
540/* The number of elements in the following array. */
541static int curr_insn_input_reloads_num;
542/* Array containing info about input reloads. It is used to find the
543 same input reload and reuse the reload pseudo in this case. */
544static struct input_reload curr_insn_input_reloads[LRA_MAX_INSN_RELOADS];
545
546/* Initiate data concerning reuse of input reloads for the current
547 insn. */
548static void
549init_curr_insn_input_reloads (void)
550{
551 curr_insn_input_reloads_num = 0;
552}
553
55a2c322 554/* Create a new pseudo using MODE, RCLASS, ORIGINAL or reuse already
95921002
VM
555 created input reload pseudo (only if TYPE is not OP_OUT). Don't
556 reuse pseudo if IN_SUBREG_P is true and the reused pseudo should be
557 wrapped up in SUBREG. The result pseudo is returned through
558 RESULT_REG. Return TRUE if we created a new pseudo, FALSE if we
559 reused the already created input reload pseudo. Use TITLE to
560 describe new registers for debug purposes. */
55a2c322 561static bool
ef4bddc2 562get_reload_reg (enum op_type type, machine_mode mode, rtx original,
95921002
VM
563 enum reg_class rclass, bool in_subreg_p,
564 const char *title, rtx *result_reg)
55a2c322
VM
565{
566 int i, regno;
567 enum reg_class new_class;
3f156a6c 568 bool unique_p = false;
55a2c322
VM
569
570 if (type == OP_OUT)
571 {
572 *result_reg
573 = lra_create_new_reg_with_unique_value (mode, original, rclass, title);
574 return true;
575 }
73cca0cc
VM
576 /* Prevent reuse value of expression with side effects,
577 e.g. volatile memory. */
578 if (! side_effects_p (original))
579 for (i = 0; i < curr_insn_input_reloads_num; i++)
3f156a6c
VM
580 {
581 if (! curr_insn_input_reloads[i].match_p
582 && rtx_equal_p (curr_insn_input_reloads[i].input, original)
583 && in_class_p (curr_insn_input_reloads[i].reg, rclass, &new_class))
584 {
585 rtx reg = curr_insn_input_reloads[i].reg;
586 regno = REGNO (reg);
587 /* If input is equal to original and both are VOIDmode,
588 GET_MODE (reg) might be still different from mode.
589 Ensure we don't return *result_reg with wrong mode. */
590 if (GET_MODE (reg) != mode)
591 {
592 if (in_subreg_p)
593 continue;
594 if (GET_MODE_SIZE (GET_MODE (reg)) < GET_MODE_SIZE (mode))
595 continue;
596 reg = lowpart_subreg (mode, reg, GET_MODE (reg));
597 if (reg == NULL_RTX || GET_CODE (reg) != SUBREG)
598 continue;
599 }
600 *result_reg = reg;
601 if (lra_dump_file != NULL)
602 {
603 fprintf (lra_dump_file, " Reuse r%d for reload ", regno);
604 dump_value_slim (lra_dump_file, original, 1);
605 }
606 if (new_class != lra_get_allocno_class (regno))
607 lra_change_class (regno, new_class, ", change to", false);
608 if (lra_dump_file != NULL)
609 fprintf (lra_dump_file, "\n");
610 return false;
611 }
612 /* If we have an input reload with a different mode, make sure it
613 will get a different hard reg. */
614 else if (REG_P (original)
615 && REG_P (curr_insn_input_reloads[i].input)
616 && REGNO (original) == REGNO (curr_insn_input_reloads[i].input)
617 && (GET_MODE (original)
618 != GET_MODE (curr_insn_input_reloads[i].input)))
619 unique_p = true;
620 }
621 *result_reg = (unique_p
622 ? lra_create_new_reg_with_unique_value
623 : lra_create_new_reg) (mode, original, rclass, title);
55a2c322
VM
624 lra_assert (curr_insn_input_reloads_num < LRA_MAX_INSN_RELOADS);
625 curr_insn_input_reloads[curr_insn_input_reloads_num].input = original;
3f156a6c 626 curr_insn_input_reloads[curr_insn_input_reloads_num].match_p = false;
55a2c322
VM
627 curr_insn_input_reloads[curr_insn_input_reloads_num++].reg = *result_reg;
628 return true;
629}
630
631\f
632
633/* The page contains code to extract memory address parts. */
634
55a2c322
VM
635/* Wrapper around REGNO_OK_FOR_INDEX_P, to allow pseudos. */
636static inline bool
637ok_for_index_p_nonstrict (rtx reg)
638{
639 unsigned regno = REGNO (reg);
f4eafc30 640
55a2c322
VM
641 return regno >= FIRST_PSEUDO_REGISTER || REGNO_OK_FOR_INDEX_P (regno);
642}
643
644/* A version of regno_ok_for_base_p for use here, when all pseudos
645 should count as OK. Arguments as for regno_ok_for_base_p. */
646static inline bool
ef4bddc2 647ok_for_base_p_nonstrict (rtx reg, machine_mode mode, addr_space_t as,
55a2c322
VM
648 enum rtx_code outer_code, enum rtx_code index_code)
649{
650 unsigned regno = REGNO (reg);
651
652 if (regno >= FIRST_PSEUDO_REGISTER)
653 return true;
654 return ok_for_base_p_1 (regno, mode, as, outer_code, index_code);
655}
656
55a2c322
VM
657\f
658
659/* The page contains major code to choose the current insn alternative
660 and generate reloads for it. */
661
662/* Return the offset from REGNO of the least significant register
663 in (reg:MODE REGNO).
664
665 This function is used to tell whether two registers satisfy
666 a matching constraint. (reg:MODE1 REGNO1) matches (reg:MODE2 REGNO2) if:
667
668 REGNO1 + lra_constraint_offset (REGNO1, MODE1)
669 == REGNO2 + lra_constraint_offset (REGNO2, MODE2) */
670int
ef4bddc2 671lra_constraint_offset (int regno, machine_mode mode)
55a2c322
VM
672{
673 lra_assert (regno < FIRST_PSEUDO_REGISTER);
674 if (WORDS_BIG_ENDIAN && GET_MODE_SIZE (mode) > UNITS_PER_WORD
675 && SCALAR_INT_MODE_P (mode))
676 return hard_regno_nregs[regno][mode] - 1;
677 return 0;
678}
679
680/* Like rtx_equal_p except that it allows a REG and a SUBREG to match
681 if they are the same hard reg, and has special hacks for
682 auto-increment and auto-decrement. This is specifically intended for
683 process_alt_operands to use in determining whether two operands
684 match. X is the operand whose number is the lower of the two.
685
686 It is supposed that X is the output operand and Y is the input
687 operand. Y_HARD_REGNO is the final hard regno of register Y or
688 register in subreg Y as we know it now. Otherwise, it is a
689 negative value. */
690static bool
691operands_match_p (rtx x, rtx y, int y_hard_regno)
692{
693 int i;
694 RTX_CODE code = GET_CODE (x);
695 const char *fmt;
696
697 if (x == y)
698 return true;
699 if ((code == REG || (code == SUBREG && REG_P (SUBREG_REG (x))))
700 && (REG_P (y) || (GET_CODE (y) == SUBREG && REG_P (SUBREG_REG (y)))))
701 {
702 int j;
f4eafc30 703
1686923c 704 i = get_hard_regno (x, false);
55a2c322
VM
705 if (i < 0)
706 goto slow;
707
708 if ((j = y_hard_regno) < 0)
709 goto slow;
710
711 i += lra_constraint_offset (i, GET_MODE (x));
712 j += lra_constraint_offset (j, GET_MODE (y));
713
714 return i == j;
715 }
716
717 /* If two operands must match, because they are really a single
718 operand of an assembler insn, then two post-increments are invalid
719 because the assembler insn would increment only once. On the
720 other hand, a post-increment matches ordinary indexing if the
721 post-increment is the output operand. */
722 if (code == POST_DEC || code == POST_INC || code == POST_MODIFY)
723 return operands_match_p (XEXP (x, 0), y, y_hard_regno);
724
725 /* Two pre-increments are invalid because the assembler insn would
726 increment only once. On the other hand, a pre-increment matches
727 ordinary indexing if the pre-increment is the input operand. */
728 if (GET_CODE (y) == PRE_DEC || GET_CODE (y) == PRE_INC
729 || GET_CODE (y) == PRE_MODIFY)
730 return operands_match_p (x, XEXP (y, 0), -1);
f4eafc30 731
55a2c322
VM
732 slow:
733
9fccb335
RS
734 if (code == REG && REG_P (y))
735 return REGNO (x) == REGNO (y);
736
55a2c322
VM
737 if (code == REG && GET_CODE (y) == SUBREG && REG_P (SUBREG_REG (y))
738 && x == SUBREG_REG (y))
739 return true;
740 if (GET_CODE (y) == REG && code == SUBREG && REG_P (SUBREG_REG (x))
741 && SUBREG_REG (x) == y)
742 return true;
743
744 /* Now we have disposed of all the cases in which different rtx
745 codes can match. */
746 if (code != GET_CODE (y))
747 return false;
748
749 /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent. */
750 if (GET_MODE (x) != GET_MODE (y))
751 return false;
752
753 switch (code)
754 {
755 CASE_CONST_UNIQUE:
756 return false;
757
758 case LABEL_REF:
04a121a7 759 return label_ref_label (x) == label_ref_label (y);
55a2c322
VM
760 case SYMBOL_REF:
761 return XSTR (x, 0) == XSTR (y, 0);
762
763 default:
764 break;
765 }
766
767 /* Compare the elements. If any pair of corresponding elements fail
768 to match, return false for the whole things. */
769
770 fmt = GET_RTX_FORMAT (code);
771 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
772 {
773 int val, j;
774 switch (fmt[i])
775 {
776 case 'w':
777 if (XWINT (x, i) != XWINT (y, i))
778 return false;
779 break;
780
781 case 'i':
782 if (XINT (x, i) != XINT (y, i))
783 return false;
784 break;
785
786 case 'e':
787 val = operands_match_p (XEXP (x, i), XEXP (y, i), -1);
788 if (val == 0)
789 return false;
790 break;
791
792 case '0':
793 break;
794
795 case 'E':
796 if (XVECLEN (x, i) != XVECLEN (y, i))
797 return false;
798 for (j = XVECLEN (x, i) - 1; j >= 0; --j)
799 {
800 val = operands_match_p (XVECEXP (x, i, j), XVECEXP (y, i, j), -1);
801 if (val == 0)
802 return false;
803 }
804 break;
805
806 /* It is believed that rtx's at this level will never
807 contain anything but integers and other rtx's, except for
808 within LABEL_REFs and SYMBOL_REFs. */
809 default:
810 gcc_unreachable ();
811 }
812 }
813 return true;
814}
815
816/* True if X is a constant that can be forced into the constant pool.
817 MODE is the mode of the operand, or VOIDmode if not known. */
818#define CONST_POOL_OK_P(MODE, X) \
819 ((MODE) != VOIDmode \
820 && CONSTANT_P (X) \
821 && GET_CODE (X) != HIGH \
822 && !targetm.cannot_force_const_mem (MODE, X))
823
824/* True if C is a non-empty register class that has too few registers
825 to be safely used as a reload target class. */
a9711f36
VM
826#define SMALL_REGISTER_CLASS_P(C) \
827 (ira_class_hard_regs_num [(C)] == 1 \
828 || (ira_class_hard_regs_num [(C)] >= 1 \
829 && targetm.class_likely_spilled_p (C)))
55a2c322
VM
830
831/* If REG is a reload pseudo, try to make its class satisfying CL. */
832static void
833narrow_reload_pseudo_class (rtx reg, enum reg_class cl)
834{
835 enum reg_class rclass;
836
837 /* Do not make more accurate class from reloads generated. They are
838 mostly moves with a lot of constraints. Making more accurate
839 class may results in very narrow class and impossibility of find
840 registers for several reloads of one insn. */
841 if (INSN_UID (curr_insn) >= new_insn_uid_start)
842 return;
843 if (GET_CODE (reg) == SUBREG)
844 reg = SUBREG_REG (reg);
845 if (! REG_P (reg) || (int) REGNO (reg) < new_regno_start)
846 return;
847 if (in_class_p (reg, cl, &rclass) && rclass != cl)
a2d0d374 848 lra_change_class (REGNO (reg), rclass, " Change to", true);
55a2c322
VM
849}
850
4be9717c
VM
851/* Searches X for any reference to a reg with the same value as REGNO,
852 returning the rtx of the reference found if any. Otherwise,
853 returns NULL_RTX. */
854static rtx
855regno_val_use_in (unsigned int regno, rtx x)
856{
857 const char *fmt;
858 int i, j;
859 rtx tem;
860
861 if (REG_P (x) && lra_reg_info[REGNO (x)].val == lra_reg_info[regno].val)
862 return x;
863
864 fmt = GET_RTX_FORMAT (GET_CODE (x));
865 for (i = GET_RTX_LENGTH (GET_CODE (x)) - 1; i >= 0; i--)
866 {
867 if (fmt[i] == 'e')
868 {
869 if ((tem = regno_val_use_in (regno, XEXP (x, i))))
870 return tem;
871 }
872 else if (fmt[i] == 'E')
873 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
874 if ((tem = regno_val_use_in (regno , XVECEXP (x, i, j))))
875 return tem;
876 }
877
878 return NULL_RTX;
879}
880
55a2c322 881/* Generate reloads for matching OUT and INS (array of input operand
aefae0f1
TP
882 numbers with end marker -1) with reg class GOAL_CLASS, considering
883 output operands OUTS (similar array to INS) needing to be in different
884 registers. Add input and output reloads correspondingly to the lists
885 *BEFORE and *AFTER. OUT might be negative. In this case we generate
886 input reloads for matched input operands INS. EARLY_CLOBBER_P is a flag
887 that the output operand is early clobbered for chosen alternative. */
55a2c322 888static void
aefae0f1
TP
889match_reload (signed char out, signed char *ins, signed char *outs,
890 enum reg_class goal_class, rtx_insn **before,
891 rtx_insn **after, bool early_clobber_p)
55a2c322 892{
aefae0f1 893 bool out_conflict;
55a2c322 894 int i, in;
e67d1102 895 rtx new_in_reg, new_out_reg, reg;
ef4bddc2 896 machine_mode inmode, outmode;
55a2c322 897 rtx in_rtx = *curr_id->operand_loc[ins[0]];
511dcace 898 rtx out_rtx = out < 0 ? in_rtx : *curr_id->operand_loc[out];
55a2c322 899
55a2c322 900 inmode = curr_operand_mode[ins[0]];
511dcace 901 outmode = out < 0 ? inmode : curr_operand_mode[out];
55a2c322
VM
902 push_to_sequence (*before);
903 if (inmode != outmode)
904 {
905 if (GET_MODE_SIZE (inmode) > GET_MODE_SIZE (outmode))
906 {
907 reg = new_in_reg
908 = lra_create_new_reg_with_unique_value (inmode, in_rtx,
909 goal_class, "");
910 if (SCALAR_INT_MODE_P (inmode))
911 new_out_reg = gen_lowpart_SUBREG (outmode, reg);
912 else
913 new_out_reg = gen_rtx_SUBREG (outmode, reg, 0);
2c62cbaa 914 LRA_SUBREG_P (new_out_reg) = 1;
350c0fe7 915 /* If the input reg is dying here, we can use the same hard
f681cf95
VM
916 register for REG and IN_RTX. We do it only for original
917 pseudos as reload pseudos can die although original
918 pseudos still live where reload pseudos dies. */
919 if (REG_P (in_rtx) && (int) REGNO (in_rtx) < lra_new_regno_start
350c0fe7 920 && find_regno_note (curr_insn, REG_DEAD, REGNO (in_rtx)))
d70a81dd 921 lra_assign_reg_val (REGNO (in_rtx), REGNO (reg));
55a2c322
VM
922 }
923 else
924 {
925 reg = new_out_reg
926 = lra_create_new_reg_with_unique_value (outmode, out_rtx,
927 goal_class, "");
928 if (SCALAR_INT_MODE_P (outmode))
929 new_in_reg = gen_lowpart_SUBREG (inmode, reg);
930 else
931 new_in_reg = gen_rtx_SUBREG (inmode, reg, 0);
932 /* NEW_IN_REG is non-paradoxical subreg. We don't want
933 NEW_OUT_REG living above. We add clobber clause for
c5cd5a7e
VM
934 this. This is just a temporary clobber. We can remove
935 it at the end of LRA work. */
e67d1102 936 rtx_insn *clobber = emit_clobber (new_out_reg);
c5cd5a7e 937 LRA_TEMP_CLOBBER_P (PATTERN (clobber)) = 1;
2c62cbaa 938 LRA_SUBREG_P (new_in_reg) = 1;
350c0fe7
VM
939 if (GET_CODE (in_rtx) == SUBREG)
940 {
941 rtx subreg_reg = SUBREG_REG (in_rtx);
942
943 /* If SUBREG_REG is dying here and sub-registers IN_RTX
944 and NEW_IN_REG are similar, we can use the same hard
945 register for REG and SUBREG_REG. */
f681cf95
VM
946 if (REG_P (subreg_reg)
947 && (int) REGNO (subreg_reg) < lra_new_regno_start
948 && GET_MODE (subreg_reg) == outmode
350c0fe7
VM
949 && SUBREG_BYTE (in_rtx) == SUBREG_BYTE (new_in_reg)
950 && find_regno_note (curr_insn, REG_DEAD, REGNO (subreg_reg)))
d70a81dd 951 lra_assign_reg_val (REGNO (subreg_reg), REGNO (reg));
350c0fe7 952 }
55a2c322
VM
953 }
954 }
955 else
956 {
957 /* Pseudos have values -- see comments for lra_reg_info.
958 Different pseudos with the same value do not conflict even if
959 they live in the same place. When we create a pseudo we
960 assign value of original pseudo (if any) from which we
961 created the new pseudo. If we create the pseudo from the
3363daad
VM
962 input pseudo, the new pseudo will have no conflict with the
963 input pseudo which is wrong when the input pseudo lives after
964 the insn and as the new pseudo value is changed by the insn
965 output. Therefore we create the new pseudo from the output
966 except the case when we have single matched dying input
967 pseudo.
f4eafc30 968
55a2c322
VM
969 We cannot reuse the current output register because we might
970 have a situation like "a <- a op b", where the constraints
971 force the second input operand ("b") to match the output
972 operand ("a"). "b" must then be copied into a new register
599e1cf8
VM
973 so that it doesn't clobber the current value of "a".
974
975 We can not use the same value if the output pseudo is
976 early clobbered or the input pseudo is mentioned in the
977 output, e.g. as an address part in memory, because
978 output reload will actually extend the pseudo liveness.
979 We don't care about eliminable hard regs here as we are
980 interesting only in pseudos. */
f4eafc30 981
aefae0f1
TP
982 /* Matching input's register value is the same as one of the other
983 output operand. Output operands in a parallel insn must be in
984 different registers. */
985 out_conflict = false;
986 if (REG_P (in_rtx))
987 {
988 for (i = 0; outs[i] >= 0; i++)
989 {
990 rtx other_out_rtx = *curr_id->operand_loc[outs[i]];
991 if (REG_P (other_out_rtx)
992 && (regno_val_use_in (REGNO (in_rtx), other_out_rtx)
993 != NULL_RTX))
994 {
995 out_conflict = true;
996 break;
997 }
998 }
999 }
1000
55a2c322 1001 new_in_reg = new_out_reg
599e1cf8 1002 = (! early_clobber_p && ins[1] < 0 && REG_P (in_rtx)
3363daad
VM
1003 && (int) REGNO (in_rtx) < lra_new_regno_start
1004 && find_regno_note (curr_insn, REG_DEAD, REGNO (in_rtx))
4be9717c
VM
1005 && (out < 0
1006 || regno_val_use_in (REGNO (in_rtx), out_rtx) == NULL_RTX)
aefae0f1 1007 && !out_conflict
3363daad
VM
1008 ? lra_create_new_reg (inmode, in_rtx, goal_class, "")
1009 : lra_create_new_reg_with_unique_value (outmode, out_rtx,
1010 goal_class, ""));
55a2c322 1011 }
511dcace
VM
1012 /* In operand can be got from transformations before processing insn
1013 constraints. One example of such transformations is subreg
1014 reloading (see function simplify_operand_subreg). The new
1015 pseudos created by the transformations might have inaccurate
55a2c322
VM
1016 class (ALL_REGS) and we should make their classes more
1017 accurate. */
1018 narrow_reload_pseudo_class (in_rtx, goal_class);
55a2c322
VM
1019 lra_emit_move (copy_rtx (new_in_reg), in_rtx);
1020 *before = get_insns ();
1021 end_sequence ();
3f156a6c
VM
1022 /* Add the new pseudo to consider values of subsequent input reload
1023 pseudos. */
1024 lra_assert (curr_insn_input_reloads_num < LRA_MAX_INSN_RELOADS);
1025 curr_insn_input_reloads[curr_insn_input_reloads_num].input = in_rtx;
1026 curr_insn_input_reloads[curr_insn_input_reloads_num].match_p = true;
1027 curr_insn_input_reloads[curr_insn_input_reloads_num++].reg = new_in_reg;
55a2c322
VM
1028 for (i = 0; (in = ins[i]) >= 0; i++)
1029 {
1030 lra_assert
1031 (GET_MODE (*curr_id->operand_loc[in]) == VOIDmode
1032 || GET_MODE (new_in_reg) == GET_MODE (*curr_id->operand_loc[in]));
1033 *curr_id->operand_loc[in] = new_in_reg;
1034 }
1035 lra_update_dups (curr_id, ins);
511dcace
VM
1036 if (out < 0)
1037 return;
1038 /* See a comment for the input operand above. */
1039 narrow_reload_pseudo_class (out_rtx, goal_class);
55a2c322
VM
1040 if (find_reg_note (curr_insn, REG_UNUSED, out_rtx) == NULL_RTX)
1041 {
1042 start_sequence ();
1043 lra_emit_move (out_rtx, copy_rtx (new_out_reg));
1044 emit_insn (*after);
1045 *after = get_insns ();
1046 end_sequence ();
1047 }
1048 *curr_id->operand_loc[out] = new_out_reg;
1049 lra_update_dup (curr_id, out);
1050}
1051
1052/* Return register class which is union of all reg classes in insn
1053 constraint alternative string starting with P. */
1054static enum reg_class
1055reg_class_from_constraints (const char *p)
1056{
1057 int c, len;
1058 enum reg_class op_class = NO_REGS;
1059
1060 do
1061 switch ((c = *p, len = CONSTRAINT_LEN (c, p)), c)
1062 {
1063 case '#':
1064 case ',':
1065 return op_class;
1066
55a2c322 1067 case 'g':
55a2c322
VM
1068 op_class = reg_class_subunion[op_class][GENERAL_REGS];
1069 break;
f4eafc30 1070
55a2c322 1071 default:
777e635f
RS
1072 enum constraint_num cn = lookup_constraint (p);
1073 enum reg_class cl = reg_class_for_constraint (cn);
1074 if (cl == NO_REGS)
55a2c322 1075 {
777e635f 1076 if (insn_extra_address_constraint (cn))
55a2c322
VM
1077 op_class
1078 = (reg_class_subunion
1079 [op_class][base_reg_class (VOIDmode, ADDR_SPACE_GENERIC,
1080 ADDRESS, SCRATCH)]);
55a2c322
VM
1081 break;
1082 }
f4eafc30 1083
777e635f
RS
1084 op_class = reg_class_subunion[op_class][cl];
1085 break;
55a2c322
VM
1086 }
1087 while ((p += len), c);
1088 return op_class;
1089}
1090
1091/* If OP is a register, return the class of the register as per
1092 get_reg_class, otherwise return NO_REGS. */
1093static inline enum reg_class
1094get_op_class (rtx op)
1095{
1096 return REG_P (op) ? get_reg_class (REGNO (op)) : NO_REGS;
1097}
1098
1099/* Return generated insn mem_pseudo:=val if TO_P or val:=mem_pseudo
1100 otherwise. If modes of MEM_PSEUDO and VAL are different, use
1101 SUBREG for VAL to make them equal. */
cfa434f6 1102static rtx_insn *
55a2c322
VM
1103emit_spill_move (bool to_p, rtx mem_pseudo, rtx val)
1104{
1105 if (GET_MODE (mem_pseudo) != GET_MODE (val))
2c62cbaa 1106 {
cb1cca12
VM
1107 /* Usually size of mem_pseudo is greater than val size but in
1108 rare cases it can be less as it can be defined by target
1109 dependent macro HARD_REGNO_CALLER_SAVE_MODE. */
1ccd4874
VM
1110 if (! MEM_P (val))
1111 {
1112 val = gen_rtx_SUBREG (GET_MODE (mem_pseudo),
1113 GET_CODE (val) == SUBREG ? SUBREG_REG (val) : val,
1114 0);
1115 LRA_SUBREG_P (val) = 1;
1116 }
1117 else
1118 {
1119 mem_pseudo = gen_lowpart_SUBREG (GET_MODE (val), mem_pseudo);
1120 LRA_SUBREG_P (mem_pseudo) = 1;
1121 }
2c62cbaa 1122 }
1476d1bd
MM
1123 return to_p ? gen_move_insn (mem_pseudo, val)
1124 : gen_move_insn (val, mem_pseudo);
55a2c322
VM
1125}
1126
1127/* Process a special case insn (register move), return true if we
2c62cbaa
VM
1128 don't need to process it anymore. INSN should be a single set
1129 insn. Set up that RTL was changed through CHANGE_P and macro
1130 SECONDARY_MEMORY_NEEDED says to use secondary memory through
1131 SEC_MEM_P. */
55a2c322 1132static bool
2c62cbaa 1133check_and_process_move (bool *change_p, bool *sec_mem_p ATTRIBUTE_UNUSED)
55a2c322
VM
1134{
1135 int sregno, dregno;
ef0006eb 1136 rtx dest, src, dreg, sreg, new_reg, scratch_reg;
cfa434f6 1137 rtx_insn *before;
55a2c322 1138 enum reg_class dclass, sclass, secondary_class;
55a2c322
VM
1139 secondary_reload_info sri;
1140
2c62cbaa
VM
1141 lra_assert (curr_insn_set != NULL_RTX);
1142 dreg = dest = SET_DEST (curr_insn_set);
1143 sreg = src = SET_SRC (curr_insn_set);
55a2c322
VM
1144 if (GET_CODE (dest) == SUBREG)
1145 dreg = SUBREG_REG (dest);
1146 if (GET_CODE (src) == SUBREG)
1147 sreg = SUBREG_REG (src);
1ccd4874 1148 if (! (REG_P (dreg) || MEM_P (dreg)) || ! (REG_P (sreg) || MEM_P (sreg)))
55a2c322
VM
1149 return false;
1150 sclass = dclass = NO_REGS;
55a2c322
VM
1151 if (REG_P (dreg))
1152 dclass = get_reg_class (REGNO (dreg));
48855443 1153 gcc_assert (dclass < LIM_REG_CLASSES);
55a2c322
VM
1154 if (dclass == ALL_REGS)
1155 /* ALL_REGS is used for new pseudos created by transformations
1156 like reload of SUBREG_REG (see function
1157 simplify_operand_subreg). We don't know their class yet. We
1158 should figure out the class from processing the insn
1159 constraints not in this fast path function. Even if ALL_REGS
1160 were a right class for the pseudo, secondary_... hooks usually
1161 are not define for ALL_REGS. */
1162 return false;
55a2c322
VM
1163 if (REG_P (sreg))
1164 sclass = get_reg_class (REGNO (sreg));
48855443 1165 gcc_assert (sclass < LIM_REG_CLASSES);
55a2c322
VM
1166 if (sclass == ALL_REGS)
1167 /* See comments above. */
1168 return false;
1ccd4874
VM
1169 if (sclass == NO_REGS && dclass == NO_REGS)
1170 return false;
55a2c322 1171#ifdef SECONDARY_MEMORY_NEEDED
1ccd4874
VM
1172 if (SECONDARY_MEMORY_NEEDED (sclass, dclass, GET_MODE (src))
1173#ifdef SECONDARY_MEMORY_NEEDED_MODE
1174 && ((sclass != NO_REGS && dclass != NO_REGS)
1175 || GET_MODE (src) != SECONDARY_MEMORY_NEEDED_MODE (GET_MODE (src)))
1176#endif
1177 )
55a2c322
VM
1178 {
1179 *sec_mem_p = true;
1180 return false;
1181 }
1182#endif
1ccd4874
VM
1183 if (! REG_P (dreg) || ! REG_P (sreg))
1184 return false;
55a2c322
VM
1185 sri.prev_sri = NULL;
1186 sri.icode = CODE_FOR_nothing;
1187 sri.extra_cost = 0;
1188 secondary_class = NO_REGS;
1189 /* Set up hard register for a reload pseudo for hook
1190 secondary_reload because some targets just ignore unassigned
1191 pseudos in the hook. */
1192 if (dclass != NO_REGS && lra_get_regno_hard_regno (REGNO (dreg)) < 0)
1193 {
1194 dregno = REGNO (dreg);
1195 reg_renumber[dregno] = ira_class_hard_regs[dclass][0];
1196 }
1197 else
1198 dregno = -1;
1199 if (sclass != NO_REGS && lra_get_regno_hard_regno (REGNO (sreg)) < 0)
1200 {
1201 sregno = REGNO (sreg);
1202 reg_renumber[sregno] = ira_class_hard_regs[sclass][0];
1203 }
1204 else
1205 sregno = -1;
1206 if (sclass != NO_REGS)
1207 secondary_class
1208 = (enum reg_class) targetm.secondary_reload (false, dest,
1209 (reg_class_t) sclass,
1210 GET_MODE (src), &sri);
1211 if (sclass == NO_REGS
1212 || ((secondary_class != NO_REGS || sri.icode != CODE_FOR_nothing)
1213 && dclass != NO_REGS))
1214 {
55a2c322
VM
1215 enum reg_class old_sclass = secondary_class;
1216 secondary_reload_info old_sri = sri;
55a2c322
VM
1217
1218 sri.prev_sri = NULL;
1219 sri.icode = CODE_FOR_nothing;
1220 sri.extra_cost = 0;
1221 secondary_class
ef0006eb 1222 = (enum reg_class) targetm.secondary_reload (true, src,
55a2c322 1223 (reg_class_t) dclass,
ef0006eb 1224 GET_MODE (src), &sri);
55a2c322
VM
1225 /* Check the target hook consistency. */
1226 lra_assert
1227 ((secondary_class == NO_REGS && sri.icode == CODE_FOR_nothing)
1228 || (old_sclass == NO_REGS && old_sri.icode == CODE_FOR_nothing)
1229 || (secondary_class == old_sclass && sri.icode == old_sri.icode));
1230 }
1231 if (sregno >= 0)
1232 reg_renumber [sregno] = -1;
1233 if (dregno >= 0)
1234 reg_renumber [dregno] = -1;
1235 if (secondary_class == NO_REGS && sri.icode == CODE_FOR_nothing)
1236 return false;
1237 *change_p = true;
1238 new_reg = NULL_RTX;
1239 if (secondary_class != NO_REGS)
ef0006eb 1240 new_reg = lra_create_new_reg_with_unique_value (GET_MODE (src), NULL_RTX,
55a2c322
VM
1241 secondary_class,
1242 "secondary");
1243 start_sequence ();
55a2c322 1244 if (sri.icode == CODE_FOR_nothing)
ef0006eb 1245 lra_emit_move (new_reg, src);
55a2c322
VM
1246 else
1247 {
1248 enum reg_class scratch_class;
1249
1250 scratch_class = (reg_class_from_constraints
1251 (insn_data[sri.icode].operand[2].constraint));
1252 scratch_reg = (lra_create_new_reg_with_unique_value
1253 (insn_data[sri.icode].operand[2].mode, NULL_RTX,
1254 scratch_class, "scratch"));
1255 emit_insn (GEN_FCN (sri.icode) (new_reg != NULL_RTX ? new_reg : dest,
ef0006eb 1256 src, scratch_reg));
55a2c322
VM
1257 }
1258 before = get_insns ();
1259 end_sequence ();
cfa434f6 1260 lra_process_new_insns (curr_insn, before, NULL, "Inserting the move");
55a2c322 1261 if (new_reg != NULL_RTX)
ef0006eb 1262 SET_SRC (curr_insn_set) = new_reg;
55a2c322
VM
1263 else
1264 {
1265 if (lra_dump_file != NULL)
1266 {
1267 fprintf (lra_dump_file, "Deleting move %u\n", INSN_UID (curr_insn));
cfbeaedf 1268 dump_insn_slim (lra_dump_file, curr_insn);
55a2c322
VM
1269 }
1270 lra_set_insn_deleted (curr_insn);
1271 return true;
1272 }
1273 return false;
1274}
1275
1276/* The following data describe the result of process_alt_operands.
1277 The data are used in curr_insn_transform to generate reloads. */
1278
1279/* The chosen reg classes which should be used for the corresponding
1280 operands. */
1281static enum reg_class goal_alt[MAX_RECOG_OPERANDS];
1282/* True if the operand should be the same as another operand and that
1283 other operand does not need a reload. */
1284static bool goal_alt_match_win[MAX_RECOG_OPERANDS];
1285/* True if the operand does not need a reload. */
1286static bool goal_alt_win[MAX_RECOG_OPERANDS];
1287/* True if the operand can be offsetable memory. */
1288static bool goal_alt_offmemok[MAX_RECOG_OPERANDS];
1289/* The number of an operand to which given operand can be matched to. */
1290static int goal_alt_matches[MAX_RECOG_OPERANDS];
1291/* The number of elements in the following array. */
1292static int goal_alt_dont_inherit_ops_num;
1293/* Numbers of operands whose reload pseudos should not be inherited. */
1294static int goal_alt_dont_inherit_ops[MAX_RECOG_OPERANDS];
1295/* True if the insn commutative operands should be swapped. */
1296static bool goal_alt_swapped;
1297/* The chosen insn alternative. */
1298static int goal_alt_number;
1299
987b67f1
VM
1300/* True if the corresponding operand is the result of an equivalence
1301 substitution. */
1302static bool equiv_substition_p[MAX_RECOG_OPERANDS];
1303
55a2c322
VM
1304/* The following five variables are used to choose the best insn
1305 alternative. They reflect final characteristics of the best
1306 alternative. */
1307
1308/* Number of necessary reloads and overall cost reflecting the
1309 previous value and other unpleasantness of the best alternative. */
1310static int best_losers, best_overall;
55a2c322
VM
1311/* Overall number hard registers used for reloads. For example, on
1312 some targets we need 2 general registers to reload DFmode and only
1313 one floating point register. */
1314static int best_reload_nregs;
1315/* Overall number reflecting distances of previous reloading the same
1316 value. The distances are counted from the current BB start. It is
1317 used to improve inheritance chances. */
1318static int best_reload_sum;
1319
1320/* True if the current insn should have no correspondingly input or
1321 output reloads. */
1322static bool no_input_reloads_p, no_output_reloads_p;
1323
1324/* True if we swapped the commutative operands in the current
1325 insn. */
1326static int curr_swapped;
1327
d9cf932c
VM
1328/* if CHECK_ONLY_P is false, arrange for address element *LOC to be a
1329 register of class CL. Add any input reloads to list BEFORE. AFTER
1330 is nonnull if *LOC is an automodified value; handle that case by
1331 adding the required output reloads to list AFTER. Return true if
1332 the RTL was changed.
1333
1334 if CHECK_ONLY_P is true, check that the *LOC is a correct address
1335 register. Return false if the address register is correct. */
55a2c322 1336static bool
d9cf932c 1337process_addr_reg (rtx *loc, bool check_only_p, rtx_insn **before, rtx_insn **after,
cfa434f6 1338 enum reg_class cl)
55a2c322
VM
1339{
1340 int regno;
1341 enum reg_class rclass, new_class;
277f65de 1342 rtx reg;
55a2c322 1343 rtx new_reg;
ef4bddc2 1344 machine_mode mode;
95921002 1345 bool subreg_p, before_p = false;
55a2c322 1346
95921002
VM
1347 subreg_p = GET_CODE (*loc) == SUBREG;
1348 if (subreg_p)
ada2eb68
JW
1349 {
1350 reg = SUBREG_REG (*loc);
1351 mode = GET_MODE (reg);
1352
1353 /* For mode with size bigger than ptr_mode, there unlikely to be "mov"
1354 between two registers with different classes, but there normally will
1355 be "mov" which transfers element of vector register into the general
1356 register, and this normally will be a subreg which should be reloaded
1357 as a whole. This is particularly likely to be triggered when
1358 -fno-split-wide-types specified. */
3c11e1af
JW
1359 if (!REG_P (reg)
1360 || in_class_p (reg, cl, &new_class)
ada2eb68
JW
1361 || GET_MODE_SIZE (mode) <= GET_MODE_SIZE (ptr_mode))
1362 loc = &SUBREG_REG (*loc);
1363 }
1364
277f65de 1365 reg = *loc;
55a2c322
VM
1366 mode = GET_MODE (reg);
1367 if (! REG_P (reg))
1368 {
d9cf932c
VM
1369 if (check_only_p)
1370 return true;
55a2c322
VM
1371 /* Always reload memory in an address even if the target supports
1372 such addresses. */
1373 new_reg = lra_create_new_reg_with_unique_value (mode, reg, cl, "address");
1374 before_p = true;
1375 }
1376 else
1377 {
1378 regno = REGNO (reg);
1379 rclass = get_reg_class (regno);
d9cf932c
VM
1380 if (! check_only_p
1381 && (*loc = get_equiv_with_elimination (reg, curr_insn)) != reg)
55a2c322
VM
1382 {
1383 if (lra_dump_file != NULL)
1384 {
1385 fprintf (lra_dump_file,
1386 "Changing pseudo %d in address of insn %u on equiv ",
1387 REGNO (reg), INSN_UID (curr_insn));
cfbeaedf 1388 dump_value_slim (lra_dump_file, *loc, 1);
55a2c322
VM
1389 fprintf (lra_dump_file, "\n");
1390 }
1391 *loc = copy_rtx (*loc);
1392 }
1393 if (*loc != reg || ! in_class_p (reg, cl, &new_class))
1394 {
d9cf932c
VM
1395 if (check_only_p)
1396 return true;
55a2c322
VM
1397 reg = *loc;
1398 if (get_reload_reg (after == NULL ? OP_IN : OP_INOUT,
95921002 1399 mode, reg, cl, subreg_p, "address", &new_reg))
55a2c322
VM
1400 before_p = true;
1401 }
1402 else if (new_class != NO_REGS && rclass != new_class)
1403 {
d9cf932c
VM
1404 if (check_only_p)
1405 return true;
a2d0d374 1406 lra_change_class (regno, new_class, " Change to", true);
55a2c322
VM
1407 return false;
1408 }
1409 else
1410 return false;
1411 }
1412 if (before_p)
1413 {
1414 push_to_sequence (*before);
1415 lra_emit_move (new_reg, reg);
1416 *before = get_insns ();
1417 end_sequence ();
1418 }
1419 *loc = new_reg;
1420 if (after != NULL)
1421 {
1422 start_sequence ();
9a9fe2b4 1423 lra_emit_move (before_p ? copy_rtx (reg) : reg, new_reg);
55a2c322
VM
1424 emit_insn (*after);
1425 *after = get_insns ();
1426 end_sequence ();
1427 }
1428 return true;
1429}
1430
4f0bee4c
WM
1431/* Insert move insn in simplify_operand_subreg. BEFORE returns
1432 the insn to be inserted before curr insn. AFTER returns the
1433 the insn to be inserted after curr insn. ORIGREG and NEWREG
1434 are the original reg and new reg for reload. */
1435static void
cfa434f6
DM
1436insert_move_for_subreg (rtx_insn **before, rtx_insn **after, rtx origreg,
1437 rtx newreg)
4f0bee4c
WM
1438{
1439 if (before)
1440 {
1441 push_to_sequence (*before);
1442 lra_emit_move (newreg, origreg);
1443 *before = get_insns ();
1444 end_sequence ();
1445 }
1446 if (after)
1447 {
1448 start_sequence ();
1449 lra_emit_move (origreg, newreg);
1450 emit_insn (*after);
1451 *after = get_insns ();
1452 end_sequence ();
1453 }
1454}
1455
ef4bddc2 1456static int valid_address_p (machine_mode mode, rtx addr, addr_space_t as);
ba38538f 1457
55a2c322
VM
1458/* Make reloads for subreg in operand NOP with internal subreg mode
1459 REG_MODE, add new reloads for further processing. Return true if
895ff86f 1460 any change was done. */
55a2c322 1461static bool
ef4bddc2 1462simplify_operand_subreg (int nop, machine_mode reg_mode)
55a2c322
VM
1463{
1464 int hard_regno;
cfa434f6 1465 rtx_insn *before, *after;
895ff86f 1466 machine_mode mode, innermode;
55a2c322
VM
1467 rtx reg, new_reg;
1468 rtx operand = *curr_id->operand_loc[nop];
4f0bee4c
WM
1469 enum reg_class regclass;
1470 enum op_type type;
55a2c322 1471
cfa434f6 1472 before = after = NULL;
55a2c322
VM
1473
1474 if (GET_CODE (operand) != SUBREG)
1475 return false;
f4eafc30 1476
55a2c322
VM
1477 mode = GET_MODE (operand);
1478 reg = SUBREG_REG (operand);
895ff86f 1479 innermode = GET_MODE (reg);
4f0bee4c 1480 type = curr_static_id->operand[nop].type;
2e186411 1481 if (MEM_P (reg))
ba38538f 1482 {
2e186411 1483 rtx subst;
ba38538f
VM
1484
1485 alter_subreg (curr_id->operand_loc[nop], false);
1486 subst = *curr_id->operand_loc[nop];
1487 lra_assert (MEM_P (subst));
895ff86f 1488 if (! valid_address_p (innermode, XEXP (reg, 0),
ba38538f
VM
1489 MEM_ADDR_SPACE (reg))
1490 || valid_address_p (GET_MODE (subst), XEXP (subst, 0),
2e186411
AM
1491 MEM_ADDR_SPACE (subst))
1492 || ((get_constraint_type (lookup_constraint
1493 (curr_static_id->operand[nop].constraint))
1494 != CT_SPECIAL_MEMORY)
1495 /* We still can reload address and if the address is
1496 valid, we can remove subreg without reloading its
1497 inner memory. */
1498 && valid_address_p (GET_MODE (subst),
1499 regno_reg_rtx
1500 [ira_class_hard_regs
1501 [base_reg_class (GET_MODE (subst),
1502 MEM_ADDR_SPACE (subst),
1503 ADDRESS, SCRATCH)][0]],
1504 MEM_ADDR_SPACE (subst))))
1505 {
1506 /* If we change address for paradoxical subreg of memory, the
1507 address might violate the necessary alignment or the access might
1508 be slow. So take this into consideration. We should not worry
1509 about access beyond allocated memory for paradoxical memory
1510 subregs as we don't substitute such equiv memory (see processing
1511 equivalences in function lra_constraints) and because for spilled
1512 pseudos we allocate stack memory enough for the biggest
1513 corresponding paradoxical subreg. */
86a21121
PC
1514 if (!(MEM_ALIGN (reg) < GET_MODE_ALIGNMENT (mode)
1515 && SLOW_UNALIGNED_ACCESS (mode, MEM_ALIGN (reg)))
1516 || (MEM_ALIGN (reg) < GET_MODE_ALIGNMENT (innermode)
1517 && SLOW_UNALIGNED_ACCESS (innermode, MEM_ALIGN (reg))))
2e186411
AM
1518 return true;
1519
1520 /* INNERMODE is fast, MODE slow. Reload the mem in INNERMODE. */
1521 enum reg_class rclass
1522 = (enum reg_class) targetm.preferred_reload_class (reg, ALL_REGS);
1523 if (get_reload_reg (curr_static_id->operand[nop].type, innermode, reg,
1524 rclass, TRUE, "slow mem", &new_reg))
1525 {
1526 bool insert_before, insert_after;
1527 bitmap_set_bit (&lra_subreg_reload_pseudos, REGNO (new_reg));
1528
1529 insert_before = (type != OP_OUT
1530 || GET_MODE_SIZE (innermode) > GET_MODE_SIZE (mode));
1531 insert_after = type != OP_IN;
1532 insert_move_for_subreg (insert_before ? &before : NULL,
1533 insert_after ? &after : NULL,
1534 reg, new_reg);
1535 }
1536 *curr_id->operand_loc[nop] = operand;
1537 SUBREG_REG (operand) = new_reg;
1538
1539 /* Convert to MODE. */
1540 reg = operand;
1541 rclass = (enum reg_class) targetm.preferred_reload_class (reg, ALL_REGS);
1542 if (get_reload_reg (curr_static_id->operand[nop].type, mode, reg,
1543 rclass, TRUE, "slow mem", &new_reg))
1544 {
1545 bool insert_before, insert_after;
1546 bitmap_set_bit (&lra_subreg_reload_pseudos, REGNO (new_reg));
1547
1548 insert_before = type != OP_OUT;
1549 insert_after = type != OP_IN;
1550 insert_move_for_subreg (insert_before ? &before : NULL,
1551 insert_after ? &after : NULL,
1552 reg, new_reg);
1553 }
1554 *curr_id->operand_loc[nop] = new_reg;
1555 lra_process_new_insns (curr_insn, before, after,
1556 "Inserting slow mem reload");
1557 return true;
1558 }
95831c01 1559
ba38538f
VM
1560 /* If the address was valid and became invalid, prefer to reload
1561 the memory. Typical case is when the index scale should
1562 correspond the memory. */
2e186411 1563 *curr_id->operand_loc[nop] = operand;
ba38538f
VM
1564 }
1565 else if (REG_P (reg) && REGNO (reg) < FIRST_PSEUDO_REGISTER)
55a2c322
VM
1566 {
1567 alter_subreg (curr_id->operand_loc[nop], false);
1568 return true;
1569 }
895ff86f
VM
1570 else if (CONSTANT_P (reg))
1571 {
1572 /* Try to simplify subreg of constant. It is usually result of
1573 equivalence substitution. */
1574 if (innermode == VOIDmode
1575 && (innermode = original_subreg_reg_mode[nop]) == VOIDmode)
1576 innermode = curr_static_id->operand[nop].mode;
1577 if ((new_reg = simplify_subreg (mode, reg, innermode,
1578 SUBREG_BYTE (operand))) != NULL_RTX)
1579 {
1580 *curr_id->operand_loc[nop] = new_reg;
1581 return true;
1582 }
1583 }
55a2c322
VM
1584 /* Put constant into memory when we have mixed modes. It generates
1585 a better code in most cases as it does not need a secondary
1586 reload memory. It also prevents LRA looping when LRA is using
1587 secondary reload memory again and again. */
1588 if (CONSTANT_P (reg) && CONST_POOL_OK_P (reg_mode, reg)
1589 && SCALAR_INT_MODE_P (reg_mode) != SCALAR_INT_MODE_P (mode))
1590 {
1591 SUBREG_REG (operand) = force_const_mem (reg_mode, reg);
1592 alter_subreg (curr_id->operand_loc[nop], false);
1593 return true;
1594 }
1595 /* Force a reload of the SUBREG_REG if this is a constant or PLUS or
1596 if there may be a problem accessing OPERAND in the outer
1597 mode. */
1598 if ((REG_P (reg)
1599 && REGNO (reg) >= FIRST_PSEUDO_REGISTER
1600 && (hard_regno = lra_get_regno_hard_regno (REGNO (reg))) >= 0
1601 /* Don't reload paradoxical subregs because we could be looping
1602 having repeatedly final regno out of hard regs range. */
895ff86f 1603 && (hard_regno_nregs[hard_regno][innermode]
55a2c322 1604 >= hard_regno_nregs[hard_regno][mode])
895ff86f 1605 && simplify_subreg_regno (hard_regno, innermode,
2c62cbaa
VM
1606 SUBREG_BYTE (operand), mode) < 0
1607 /* Don't reload subreg for matching reload. It is actually
1608 valid subreg in LRA. */
1609 && ! LRA_SUBREG_P (operand))
55a2c322
VM
1610 || CONSTANT_P (reg) || GET_CODE (reg) == PLUS || MEM_P (reg))
1611 {
6e23f296
VM
1612 enum reg_class rclass;
1613
7613fa50
VM
1614 if (REG_P (reg))
1615 /* There is a big probability that we will get the same class
6e23f296
VM
1616 for the new pseudo and we will get the same insn which
1617 means infinite looping. So spill the new pseudo. */
1618 rclass = NO_REGS;
1619 else
1620 /* The class will be defined later in curr_insn_transform. */
1621 rclass
1622 = (enum reg_class) targetm.preferred_reload_class (reg, ALL_REGS);
55a2c322 1623
25bb0bb5 1624 if (get_reload_reg (curr_static_id->operand[nop].type, reg_mode, reg,
95921002 1625 rclass, TRUE, "subreg reg", &new_reg))
55a2c322 1626 {
4f0bee4c 1627 bool insert_before, insert_after;
2b778c9d 1628 bitmap_set_bit (&lra_subreg_reload_pseudos, REGNO (new_reg));
4f0bee4c
WM
1629
1630 insert_before = (type != OP_OUT
895ff86f 1631 || GET_MODE_SIZE (innermode) > GET_MODE_SIZE (mode));
4f0bee4c
WM
1632 insert_after = (type != OP_IN);
1633 insert_move_for_subreg (insert_before ? &before : NULL,
1634 insert_after ? &after : NULL,
1635 reg, new_reg);
55a2c322
VM
1636 }
1637 SUBREG_REG (operand) = new_reg;
1638 lra_process_new_insns (curr_insn, before, after,
1639 "Inserting subreg reload");
1640 return true;
1641 }
4f0bee4c
WM
1642 /* Force a reload for a paradoxical subreg. For paradoxical subreg,
1643 IRA allocates hardreg to the inner pseudo reg according to its mode
1644 instead of the outermode, so the size of the hardreg may not be enough
1645 to contain the outermode operand, in that case we may need to insert
1646 reload for the reg. For the following two types of paradoxical subreg,
1647 we need to insert reload:
1648 1. If the op_type is OP_IN, and the hardreg could not be paired with
1649 other hardreg to contain the outermode operand
1650 (checked by in_hard_reg_set_p), we need to insert the reload.
1651 2. If the op_type is OP_OUT or OP_INOUT.
1652
1653 Here is a paradoxical subreg example showing how the reload is generated:
1654
1655 (insn 5 4 7 2 (set (reg:TI 106 [ __comp ])
1656 (subreg:TI (reg:DI 107 [ __comp ]) 0)) {*movti_internal_rex64}
1657
1658 In IRA, reg107 is allocated to a DImode hardreg. We use x86-64 as example
1659 here, if reg107 is assigned to hardreg R15, because R15 is the last
1660 hardreg, compiler cannot find another hardreg to pair with R15 to
1661 contain TImode data. So we insert a TImode reload reg180 for it.
1662 After reload is inserted:
1663
1664 (insn 283 0 0 (set (subreg:DI (reg:TI 180 [orig:107 __comp ] [107]) 0)
1665 (reg:DI 107 [ __comp ])) -1
1666 (insn 5 4 7 2 (set (reg:TI 106 [ __comp ])
1667 (subreg:TI (reg:TI 180 [orig:107 __comp ] [107]) 0)) {*movti_internal_rex64}
1668
1669 Two reload hard registers will be allocated to reg180 to save TImode data
1670 in LRA_assign. */
1671 else if (REG_P (reg)
1672 && REGNO (reg) >= FIRST_PSEUDO_REGISTER
1673 && (hard_regno = lra_get_regno_hard_regno (REGNO (reg))) >= 0
895ff86f 1674 && (hard_regno_nregs[hard_regno][innermode]
4f0bee4c
WM
1675 < hard_regno_nregs[hard_regno][mode])
1676 && (regclass = lra_get_allocno_class (REGNO (reg)))
1677 && (type != OP_IN
1678 || !in_hard_reg_set_p (reg_class_contents[regclass],
1679 mode, hard_regno)))
1680 {
1681 /* The class will be defined later in curr_insn_transform. */
1682 enum reg_class rclass
1683 = (enum reg_class) targetm.preferred_reload_class (reg, ALL_REGS);
1684
1685 if (get_reload_reg (curr_static_id->operand[nop].type, mode, reg,
95921002 1686 rclass, TRUE, "paradoxical subreg", &new_reg))
4f0bee4c
WM
1687 {
1688 rtx subreg;
1689 bool insert_before, insert_after;
1690
1691 PUT_MODE (new_reg, mode);
ea09f50d 1692 subreg = gen_lowpart_SUBREG (innermode, new_reg);
4f0bee4c
WM
1693 bitmap_set_bit (&lra_subreg_reload_pseudos, REGNO (new_reg));
1694
1695 insert_before = (type != OP_OUT);
1696 insert_after = (type != OP_IN);
1697 insert_move_for_subreg (insert_before ? &before : NULL,
1698 insert_after ? &after : NULL,
1699 reg, subreg);
1700 }
1701 SUBREG_REG (operand) = new_reg;
1702 lra_process_new_insns (curr_insn, before, after,
1703 "Inserting paradoxical subreg reload");
1704 return true;
1705 }
55a2c322
VM
1706 return false;
1707}
1708
1709/* Return TRUE if X refers for a hard register from SET. */
1710static bool
1711uses_hard_regs_p (rtx x, HARD_REG_SET set)
1712{
1713 int i, j, x_hard_regno;
ef4bddc2 1714 machine_mode mode;
55a2c322
VM
1715 const char *fmt;
1716 enum rtx_code code;
1717
1718 if (x == NULL_RTX)
1719 return false;
1720 code = GET_CODE (x);
1721 mode = GET_MODE (x);
1722 if (code == SUBREG)
1723 {
1724 x = SUBREG_REG (x);
1725 code = GET_CODE (x);
1726 if (GET_MODE_SIZE (GET_MODE (x)) > GET_MODE_SIZE (mode))
1727 mode = GET_MODE (x);
1728 }
f4eafc30 1729
55a2c322
VM
1730 if (REG_P (x))
1731 {
1686923c 1732 x_hard_regno = get_hard_regno (x, true);
55a2c322
VM
1733 return (x_hard_regno >= 0
1734 && overlaps_hard_reg_set_p (set, mode, x_hard_regno));
1735 }
1736 if (MEM_P (x))
1737 {
277f65de 1738 struct address_info ad;
55a2c322 1739
277f65de
RS
1740 decompose_mem_address (&ad, x);
1741 if (ad.base_term != NULL && uses_hard_regs_p (*ad.base_term, set))
1742 return true;
1743 if (ad.index_term != NULL && uses_hard_regs_p (*ad.index_term, set))
1744 return true;
55a2c322
VM
1745 }
1746 fmt = GET_RTX_FORMAT (code);
1747 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1748 {
1749 if (fmt[i] == 'e')
1750 {
1751 if (uses_hard_regs_p (XEXP (x, i), set))
1752 return true;
1753 }
1754 else if (fmt[i] == 'E')
1755 {
1756 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
1757 if (uses_hard_regs_p (XVECEXP (x, i, j), set))
1758 return true;
1759 }
1760 }
1761 return false;
1762}
1763
1764/* Return true if OP is a spilled pseudo. */
1765static inline bool
1766spilled_pseudo_p (rtx op)
1767{
1768 return (REG_P (op)
1769 && REGNO (op) >= FIRST_PSEUDO_REGISTER && in_mem_p (REGNO (op)));
1770}
1771
1772/* Return true if X is a general constant. */
1773static inline bool
1774general_constant_p (rtx x)
1775{
1776 return CONSTANT_P (x) && (! flag_pic || LEGITIMATE_PIC_OPERAND_P (x));
1777}
1778
2c62cbaa
VM
1779static bool
1780reg_in_class_p (rtx reg, enum reg_class cl)
1781{
1782 if (cl == NO_REGS)
1783 return get_reg_class (REGNO (reg)) == NO_REGS;
1784 return in_class_p (reg, cl, NULL);
1785}
1786
3c954213
VM
1787/* Return true if SET of RCLASS contains no hard regs which can be
1788 used in MODE. */
1789static bool
1790prohibited_class_reg_set_mode_p (enum reg_class rclass,
1791 HARD_REG_SET &set,
1792 enum machine_mode mode)
1793{
1794 HARD_REG_SET temp;
1795
c07ad89a 1796 lra_assert (hard_reg_set_subset_p (reg_class_contents[rclass], set));
3c954213
VM
1797 COPY_HARD_REG_SET (temp, set);
1798 AND_COMPL_HARD_REG_SET (temp, lra_no_alloc_regs);
1799 return (hard_reg_set_subset_p
1800 (temp, ira_prohibited_class_mode_regs[rclass][mode]));
1801}
1802
55a2c322
VM
1803/* Major function to choose the current insn alternative and what
1804 operands should be reloaded and how. If ONLY_ALTERNATIVE is not
1805 negative we should consider only this alternative. Return false if
1806 we can not choose the alternative or find how to reload the
1807 operands. */
1808static bool
1809process_alt_operands (int only_alternative)
1810{
1811 bool ok_p = false;
36ff9dfb 1812 int nop, overall, nalt;
55a2c322
VM
1813 int n_alternatives = curr_static_id->n_alternatives;
1814 int n_operands = curr_static_id->n_operands;
1815 /* LOSERS counts the operands that don't fit this alternative and
1816 would require loading. */
1817 int losers;
1818 /* REJECT is a count of how undesirable this alternative says it is
1819 if any reloading is required. If the alternative matches exactly
1820 then REJECT is ignored, but otherwise it gets this much counted
1821 against it in addition to the reloading needed. */
1822 int reject;
d1457701 1823 int op_reject;
55a2c322
VM
1824 /* The number of elements in the following array. */
1825 int early_clobbered_regs_num;
1826 /* Numbers of operands which are early clobber registers. */
1827 int early_clobbered_nops[MAX_RECOG_OPERANDS];
1828 enum reg_class curr_alt[MAX_RECOG_OPERANDS];
1829 HARD_REG_SET curr_alt_set[MAX_RECOG_OPERANDS];
1830 bool curr_alt_match_win[MAX_RECOG_OPERANDS];
1831 bool curr_alt_win[MAX_RECOG_OPERANDS];
1832 bool curr_alt_offmemok[MAX_RECOG_OPERANDS];
1833 int curr_alt_matches[MAX_RECOG_OPERANDS];
1834 /* The number of elements in the following array. */
1835 int curr_alt_dont_inherit_ops_num;
1836 /* Numbers of operands whose reload pseudos should not be inherited. */
1837 int curr_alt_dont_inherit_ops[MAX_RECOG_OPERANDS];
1838 rtx op;
1839 /* The register when the operand is a subreg of register, otherwise the
1840 operand itself. */
1841 rtx no_subreg_reg_operand[MAX_RECOG_OPERANDS];
1842 /* The register if the operand is a register or subreg of register,
1843 otherwise NULL. */
1844 rtx operand_reg[MAX_RECOG_OPERANDS];
1845 int hard_regno[MAX_RECOG_OPERANDS];
ef4bddc2 1846 machine_mode biggest_mode[MAX_RECOG_OPERANDS];
55a2c322
VM
1847 int reload_nregs, reload_sum;
1848 bool costly_p;
1849 enum reg_class cl;
1850
1851 /* Calculate some data common for all alternatives to speed up the
1852 function. */
1853 for (nop = 0; nop < n_operands; nop++)
1854 {
7214306b
VM
1855 rtx reg;
1856
55a2c322
VM
1857 op = no_subreg_reg_operand[nop] = *curr_id->operand_loc[nop];
1858 /* The real hard regno of the operand after the allocation. */
1686923c 1859 hard_regno[nop] = get_hard_regno (op, true);
f4eafc30 1860
7214306b
VM
1861 operand_reg[nop] = reg = op;
1862 biggest_mode[nop] = GET_MODE (op);
1863 if (GET_CODE (op) == SUBREG)
55a2c322 1864 {
7214306b 1865 operand_reg[nop] = reg = SUBREG_REG (op);
55a2c322 1866 if (GET_MODE_SIZE (biggest_mode[nop])
7214306b
VM
1867 < GET_MODE_SIZE (GET_MODE (reg)))
1868 biggest_mode[nop] = GET_MODE (reg);
55a2c322 1869 }
7214306b 1870 if (! REG_P (reg))
55a2c322 1871 operand_reg[nop] = NULL_RTX;
7214306b
VM
1872 else if (REGNO (reg) >= FIRST_PSEUDO_REGISTER
1873 || ((int) REGNO (reg)
1874 == lra_get_elimination_hard_regno (REGNO (reg))))
1875 no_subreg_reg_operand[nop] = reg;
1876 else
1877 operand_reg[nop] = no_subreg_reg_operand[nop]
1878 /* Just use natural mode for elimination result. It should
1879 be enough for extra constraints hooks. */
1880 = regno_reg_rtx[hard_regno[nop]];
55a2c322
VM
1881 }
1882
1883 /* The constraints are made of several alternatives. Each operand's
1884 constraint looks like foo,bar,... with commas separating the
1885 alternatives. The first alternatives for all operands go
1886 together, the second alternatives go together, etc.
1887
1888 First loop over alternatives. */
9840b2fa 1889 alternative_mask preferred = curr_id->preferred_alternatives;
4cc8d9d2 1890 if (only_alternative >= 0)
9840b2fa 1891 preferred &= ALTERNATIVE_BIT (only_alternative);
4cc8d9d2 1892
55a2c322
VM
1893 for (nalt = 0; nalt < n_alternatives; nalt++)
1894 {
1895 /* Loop over operands for one constraint alternative. */
9840b2fa 1896 if (!TEST_BIT (preferred, nalt))
55a2c322
VM
1897 continue;
1898
1899 overall = losers = reject = reload_nregs = reload_sum = 0;
1900 for (nop = 0; nop < n_operands; nop++)
cb1cca12
VM
1901 {
1902 int inc = (curr_static_id
1903 ->operand_alternative[nalt * n_operands + nop].reject);
1904 if (lra_dump_file != NULL && inc != 0)
1905 fprintf (lra_dump_file,
1906 " Staticly defined alt reject+=%d\n", inc);
1907 reject += inc;
1908 }
55a2c322
VM
1909 early_clobbered_regs_num = 0;
1910
1911 for (nop = 0; nop < n_operands; nop++)
1912 {
1913 const char *p;
1914 char *end;
1915 int len, c, m, i, opalt_num, this_alternative_matches;
1916 bool win, did_match, offmemok, early_clobber_p;
1917 /* false => this operand can be reloaded somehow for this
1918 alternative. */
1919 bool badop;
1920 /* true => this operand can be reloaded if the alternative
1921 allows regs. */
1922 bool winreg;
1923 /* True if a constant forced into memory would be OK for
1924 this operand. */
1925 bool constmemok;
1926 enum reg_class this_alternative, this_costly_alternative;
1927 HARD_REG_SET this_alternative_set, this_costly_alternative_set;
1928 bool this_alternative_match_win, this_alternative_win;
1929 bool this_alternative_offmemok;
80f466c4 1930 bool scratch_p;
ef4bddc2 1931 machine_mode mode;
777e635f 1932 enum constraint_num cn;
55a2c322
VM
1933
1934 opalt_num = nalt * n_operands + nop;
1935 if (curr_static_id->operand_alternative[opalt_num].anything_ok)
1936 {
1937 /* Fast track for no constraints at all. */
1938 curr_alt[nop] = NO_REGS;
1939 CLEAR_HARD_REG_SET (curr_alt_set[nop]);
1940 curr_alt_win[nop] = true;
1941 curr_alt_match_win[nop] = false;
1942 curr_alt_offmemok[nop] = false;
1943 curr_alt_matches[nop] = -1;
1944 continue;
1945 }
f4eafc30 1946
55a2c322
VM
1947 op = no_subreg_reg_operand[nop];
1948 mode = curr_operand_mode[nop];
1949
1950 win = did_match = winreg = offmemok = constmemok = false;
1951 badop = true;
f4eafc30 1952
55a2c322
VM
1953 early_clobber_p = false;
1954 p = curr_static_id->operand_alternative[opalt_num].constraint;
f4eafc30 1955
55a2c322
VM
1956 this_costly_alternative = this_alternative = NO_REGS;
1957 /* We update set of possible hard regs besides its class
1958 because reg class might be inaccurate. For example,
1959 union of LO_REGS (l), HI_REGS(h), and STACK_REG(k) in ARM
1960 is translated in HI_REGS because classes are merged by
1961 pairs and there is no accurate intermediate class. */
1962 CLEAR_HARD_REG_SET (this_alternative_set);
1963 CLEAR_HARD_REG_SET (this_costly_alternative_set);
1964 this_alternative_win = false;
1965 this_alternative_match_win = false;
1966 this_alternative_offmemok = false;
1967 this_alternative_matches = -1;
f4eafc30 1968
55a2c322
VM
1969 /* An empty constraint should be excluded by the fast
1970 track. */
1971 lra_assert (*p != 0 && *p != ',');
f4eafc30 1972
d1457701 1973 op_reject = 0;
55a2c322
VM
1974 /* Scan this alternative's specs for this operand; set WIN
1975 if the operand fits any letter in this alternative.
1976 Otherwise, clear BADOP if this operand could fit some
1977 letter after reloads, or set WINREG if this operand could
1978 fit after reloads provided the constraint allows some
1979 registers. */
1980 costly_p = false;
1981 do
1982 {
1983 switch ((c = *p, len = CONSTRAINT_LEN (c, p)), c)
1984 {
1985 case '\0':
1986 len = 0;
1987 break;
1988 case ',':
1989 c = '\0';
1990 break;
f4eafc30 1991
55a2c322
VM
1992 case '&':
1993 early_clobber_p = true;
1994 break;
f4eafc30 1995
d1457701
VM
1996 case '$':
1997 op_reject += LRA_MAX_REJECT;
1998 break;
1999 case '^':
2000 op_reject += LRA_LOSER_COST_FACTOR;
2001 break;
2002
55a2c322
VM
2003 case '#':
2004 /* Ignore rest of this alternative. */
2005 c = '\0';
2006 break;
f4eafc30 2007
55a2c322
VM
2008 case '0': case '1': case '2': case '3': case '4':
2009 case '5': case '6': case '7': case '8': case '9':
2010 {
2011 int m_hregno;
2012 bool match_p;
f4eafc30 2013
55a2c322
VM
2014 m = strtoul (p, &end, 10);
2015 p = end;
2016 len = 0;
2017 lra_assert (nop > m);
f4eafc30 2018
55a2c322 2019 this_alternative_matches = m;
1686923c 2020 m_hregno = get_hard_regno (*curr_id->operand_loc[m], false);
55a2c322
VM
2021 /* We are supposed to match a previous operand.
2022 If we do, we win if that one did. If we do
2023 not, count both of the operands as losers.
2024 (This is too conservative, since most of the
2025 time only a single reload insn will be needed
2026 to make the two operands win. As a result,
2027 this alternative may be rejected when it is
2028 actually desirable.) */
2029 match_p = false;
2030 if (operands_match_p (*curr_id->operand_loc[nop],
2031 *curr_id->operand_loc[m], m_hregno))
2032 {
2033 /* We should reject matching of an early
2034 clobber operand if the matching operand is
2035 not dying in the insn. */
2036 if (! curr_static_id->operand[m].early_clobber
2037 || operand_reg[nop] == NULL_RTX
2038 || (find_regno_note (curr_insn, REG_DEAD,
1c86bd80
VM
2039 REGNO (op))
2040 || REGNO (op) == REGNO (operand_reg[m])))
55a2c322
VM
2041 match_p = true;
2042 }
2043 if (match_p)
2044 {
2045 /* If we are matching a non-offsettable
2046 address where an offsettable address was
2047 expected, then we must reject this
2048 combination, because we can't reload
2049 it. */
2050 if (curr_alt_offmemok[m]
2051 && MEM_P (*curr_id->operand_loc[m])
2052 && curr_alt[m] == NO_REGS && ! curr_alt_win[m])
2053 continue;
55a2c322
VM
2054 }
2055 else
2056 {
2057 /* Operands don't match. Both operands must
2058 allow a reload register, otherwise we
2059 cannot make them match. */
2060 if (curr_alt[m] == NO_REGS)
2061 break;
2062 /* Retroactively mark the operand we had to
2063 match as a loser, if it wasn't already and
2064 it wasn't matched to a register constraint
2065 (e.g it might be matched by memory). */
2066 if (curr_alt_win[m]
2067 && (operand_reg[m] == NULL_RTX
2068 || hard_regno[m] < 0))
2069 {
2070 losers++;
2071 reload_nregs
2072 += (ira_reg_class_max_nregs[curr_alt[m]]
2073 [GET_MODE (*curr_id->operand_loc[m])]);
2074 }
f4eafc30 2075
f4581282
VM
2076 /* Prefer matching earlyclobber alternative as
2077 it results in less hard regs required for
2078 the insn than a non-matching earlyclobber
2079 alternative. */
2080 if (curr_static_id->operand[m].early_clobber)
2081 {
2082 if (lra_dump_file != NULL)
2083 fprintf
2084 (lra_dump_file,
2085 " %d Matching earlyclobber alt:"
2086 " reject--\n",
2087 nop);
2088 reject--;
2089 }
2090 /* Otherwise we prefer no matching
2091 alternatives because it gives more freedom
2092 in RA. */
2093 else if (operand_reg[nop] == NULL_RTX
2094 || (find_regno_note (curr_insn, REG_DEAD,
2095 REGNO (operand_reg[nop]))
2096 == NULL_RTX))
cb1cca12
VM
2097 {
2098 if (lra_dump_file != NULL)
2099 fprintf
2100 (lra_dump_file,
2101 " %d Matching alt: reject+=2\n",
2102 nop);
2103 reject += 2;
2104 }
55a2c322
VM
2105 }
2106 /* If we have to reload this operand and some
2107 previous operand also had to match the same
2108 thing as this operand, we don't know how to do
2109 that. */
2110 if (!match_p || !curr_alt_win[m])
2111 {
2112 for (i = 0; i < nop; i++)
2113 if (curr_alt_matches[i] == m)
2114 break;
2115 if (i < nop)
2116 break;
2117 }
2118 else
2119 did_match = true;
f4eafc30 2120
55a2c322
VM
2121 /* This can be fixed with reloads if the operand
2122 we are supposed to match can be fixed with
2123 reloads. */
2124 badop = false;
2125 this_alternative = curr_alt[m];
2126 COPY_HARD_REG_SET (this_alternative_set, curr_alt_set[m]);
821b7577 2127 winreg = this_alternative != NO_REGS;
55a2c322
VM
2128 break;
2129 }
f4eafc30 2130
55a2c322
VM
2131 case 'g':
2132 if (MEM_P (op)
2133 || general_constant_p (op)
2134 || spilled_pseudo_p (op))
2135 win = true;
777e635f 2136 cl = GENERAL_REGS;
55a2c322 2137 goto reg;
f4eafc30 2138
55a2c322 2139 default:
777e635f
RS
2140 cn = lookup_constraint (p);
2141 switch (get_constraint_type (cn))
55a2c322 2142 {
777e635f
RS
2143 case CT_REGISTER:
2144 cl = reg_class_for_constraint (cn);
2145 if (cl != NO_REGS)
2146 goto reg;
2147 break;
f4eafc30 2148
d9c35eee
RS
2149 case CT_CONST_INT:
2150 if (CONST_INT_P (op)
2151 && insn_const_int_ok_for_constraint (INTVAL (op), cn))
2152 win = true;
2153 break;
2154
777e635f
RS
2155 case CT_MEMORY:
2156 if (MEM_P (op)
2157 && satisfies_memory_constraint_p (op, cn))
2158 win = true;
2159 else if (spilled_pseudo_p (op))
2160 win = true;
2161
2162 /* If we didn't already win, we can reload constants
2163 via force_const_mem or put the pseudo value into
2164 memory, or make other memory by reloading the
2165 address like for 'o'. */
2166 if (CONST_POOL_OK_P (mode, op)
987b67f1
VM
2167 || MEM_P (op) || REG_P (op)
2168 /* We can restore the equiv insn by a
2169 reload. */
2170 || equiv_substition_p[nop])
777e635f
RS
2171 badop = false;
2172 constmemok = true;
2173 offmemok = true;
2174 break;
2175
2176 case CT_ADDRESS:
2177 /* If we didn't already win, we can reload the address
2178 into a base register. */
2179 if (satisfies_address_constraint_p (op, cn))
2180 win = true;
2181 cl = base_reg_class (VOIDmode, ADDR_SPACE_GENERIC,
2182 ADDRESS, SCRATCH);
2183 badop = false;
2184 goto reg;
2185
2186 case CT_FIXED_FORM:
2187 if (constraint_satisfied_p (op, cn))
55a2c322 2188 win = true;
55a2c322 2189 break;
9eb1ca69
VM
2190
2191 case CT_SPECIAL_MEMORY:
2192 if (MEM_P (op)
2193 && satisfies_memory_constraint_p (op, cn))
2194 win = true;
2195 else if (spilled_pseudo_p (op))
2196 win = true;
2197 break;
55a2c322 2198 }
777e635f 2199 break;
f4eafc30 2200
777e635f 2201 reg:
55a2c322
VM
2202 this_alternative = reg_class_subunion[this_alternative][cl];
2203 IOR_HARD_REG_SET (this_alternative_set,
2204 reg_class_contents[cl]);
2205 if (costly_p)
2206 {
2207 this_costly_alternative
2208 = reg_class_subunion[this_costly_alternative][cl];
2209 IOR_HARD_REG_SET (this_costly_alternative_set,
2210 reg_class_contents[cl]);
2211 }
55a2c322
VM
2212 if (mode == BLKmode)
2213 break;
2214 winreg = true;
2215 if (REG_P (op))
2216 {
2217 if (hard_regno[nop] >= 0
2218 && in_hard_reg_set_p (this_alternative_set,
2219 mode, hard_regno[nop]))
2220 win = true;
2221 else if (hard_regno[nop] < 0
2222 && in_class_p (op, this_alternative, NULL))
2223 win = true;
2224 }
2225 break;
2226 }
2227 if (c != ' ' && c != '\t')
2228 costly_p = c == '*';
2229 }
2230 while ((p += len), c);
f4eafc30 2231
80f466c4
VM
2232 scratch_p = (operand_reg[nop] != NULL_RTX
2233 && lra_former_scratch_p (REGNO (operand_reg[nop])));
55a2c322
VM
2234 /* Record which operands fit this alternative. */
2235 if (win)
2236 {
2237 this_alternative_win = true;
2238 if (operand_reg[nop] != NULL_RTX)
2239 {
2240 if (hard_regno[nop] >= 0)
2241 {
2242 if (in_hard_reg_set_p (this_costly_alternative_set,
2243 mode, hard_regno[nop]))
cb1cca12
VM
2244 {
2245 if (lra_dump_file != NULL)
2246 fprintf (lra_dump_file,
2247 " %d Costly set: reject++\n",
2248 nop);
2249 reject++;
2250 }
55a2c322
VM
2251 }
2252 else
2253 {
80f466c4
VM
2254 /* Prefer won reg to spilled pseudo under other
2255 equal conditions for possibe inheritance. */
2256 if (! scratch_p)
2257 {
2258 if (lra_dump_file != NULL)
2259 fprintf
2260 (lra_dump_file,
2261 " %d Non pseudo reload: reject++\n",
2262 nop);
2263 reject++;
2264 }
55a2c322
VM
2265 if (in_class_p (operand_reg[nop],
2266 this_costly_alternative, NULL))
cb1cca12
VM
2267 {
2268 if (lra_dump_file != NULL)
2269 fprintf
2270 (lra_dump_file,
2271 " %d Non pseudo costly reload:"
2272 " reject++\n",
2273 nop);
2274 reject++;
2275 }
55a2c322 2276 }
9c582551 2277 /* We simulate the behavior of old reload here.
55a2c322
VM
2278 Although scratches need hard registers and it
2279 might result in spilling other pseudos, no reload
2280 insns are generated for the scratches. So it
2281 might cost something but probably less than old
2282 reload pass believes. */
80f466c4 2283 if (scratch_p)
cb1cca12
VM
2284 {
2285 if (lra_dump_file != NULL)
2286 fprintf (lra_dump_file,
80f466c4 2287 " %d Scratch win: reject+=2\n",
cb1cca12 2288 nop);
80f466c4 2289 reject += 2;
cb1cca12 2290 }
55a2c322
VM
2291 }
2292 }
2293 else if (did_match)
2294 this_alternative_match_win = true;
2295 else
2296 {
2297 int const_to_mem = 0;
2298 bool no_regs_p;
2299
d1457701 2300 reject += op_reject;
8d49e7ef
VM
2301 /* Never do output reload of stack pointer. It makes
2302 impossible to do elimination when SP is changed in
2303 RTL. */
2304 if (op == stack_pointer_rtx && ! frame_pointer_needed
2305 && curr_static_id->operand[nop].type != OP_IN)
2306 goto fail;
2307
e86c0101
SB
2308 /* If this alternative asks for a specific reg class, see if there
2309 is at least one allocatable register in that class. */
55a2c322
VM
2310 no_regs_p
2311 = (this_alternative == NO_REGS
2312 || (hard_reg_set_subset_p
2313 (reg_class_contents[this_alternative],
2314 lra_no_alloc_regs)));
e86c0101
SB
2315
2316 /* For asms, verify that the class for this alternative is possible
2317 for the mode that is specified. */
ecee672b 2318 if (!no_regs_p && INSN_CODE (curr_insn) < 0)
e86c0101
SB
2319 {
2320 int i;
2321 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
2322 if (HARD_REGNO_MODE_OK (i, mode)
8f21260c
VM
2323 && in_hard_reg_set_p (reg_class_contents[this_alternative],
2324 mode, i))
e86c0101
SB
2325 break;
2326 if (i == FIRST_PSEUDO_REGISTER)
2327 winreg = false;
2328 }
2329
55a2c322
VM
2330 /* If this operand accepts a register, and if the
2331 register class has at least one allocatable register,
2332 then this operand can be reloaded. */
2333 if (winreg && !no_regs_p)
2334 badop = false;
f4eafc30 2335
55a2c322 2336 if (badop)
8f21260c
VM
2337 {
2338 if (lra_dump_file != NULL)
2339 fprintf (lra_dump_file,
2340 " alt=%d: Bad operand -- refuse\n",
2341 nalt);
2342 goto fail;
2343 }
55a2c322 2344
d13835b6
VM
2345 if (this_alternative != NO_REGS)
2346 {
2347 HARD_REG_SET available_regs;
2348
2349 COPY_HARD_REG_SET (available_regs,
2350 reg_class_contents[this_alternative]);
2351 AND_COMPL_HARD_REG_SET
2352 (available_regs,
2353 ira_prohibited_class_mode_regs[this_alternative][mode]);
2354 AND_COMPL_HARD_REG_SET (available_regs, lra_no_alloc_regs);
2355 if (hard_reg_set_empty_p (available_regs))
2356 {
2357 /* There are no hard regs holding a value of given
2358 mode. */
2359 if (offmemok)
2360 {
2361 this_alternative = NO_REGS;
2362 if (lra_dump_file != NULL)
2363 fprintf (lra_dump_file,
2364 " %d Using memory because of"
2365 " a bad mode: reject+=2\n",
2366 nop);
2367 reject += 2;
2368 }
2369 else
2370 {
2371 if (lra_dump_file != NULL)
2372 fprintf (lra_dump_file,
2373 " alt=%d: Wrong mode -- refuse\n",
2374 nalt);
2375 goto fail;
2376 }
2377 }
2378 }
2379
2ae577fd
VM
2380 /* If not assigned pseudo has a class which a subset of
2381 required reg class, it is a less costly alternative
2382 as the pseudo still can get a hard reg of necessary
2383 class. */
2384 if (! no_regs_p && REG_P (op) && hard_regno[nop] < 0
2385 && (cl = get_reg_class (REGNO (op))) != NO_REGS
2386 && ira_class_subset_p[this_alternative][cl])
2387 {
2388 if (lra_dump_file != NULL)
2389 fprintf
2390 (lra_dump_file,
2391 " %d Super set class reg: reject-=3\n", nop);
2392 reject -= 3;
2393 }
2394
55a2c322
VM
2395 this_alternative_offmemok = offmemok;
2396 if (this_costly_alternative != NO_REGS)
cb1cca12
VM
2397 {
2398 if (lra_dump_file != NULL)
2399 fprintf (lra_dump_file,
2400 " %d Costly loser: reject++\n", nop);
2401 reject++;
2402 }
55a2c322
VM
2403 /* If the operand is dying, has a matching constraint,
2404 and satisfies constraints of the matched operand
f4581282 2405 which failed to satisfy the own constraints, most probably
a9711f36
VM
2406 the reload for this operand will be gone. */
2407 if (this_alternative_matches >= 0
2408 && !curr_alt_win[this_alternative_matches]
2409 && REG_P (op)
2410 && find_regno_note (curr_insn, REG_DEAD, REGNO (op))
2411 && (hard_regno[nop] >= 0
2412 ? in_hard_reg_set_p (this_alternative_set,
2413 mode, hard_regno[nop])
2414 : in_class_p (op, this_alternative, NULL)))
2415 {
2416 if (lra_dump_file != NULL)
2417 fprintf
2418 (lra_dump_file,
2419 " %d Dying matched operand reload: reject++\n",
2420 nop);
2421 reject++;
2422 }
2423 else
027ece11 2424 {
5306401f
VM
2425 /* Strict_low_part requires to reload the register
2426 not the sub-register. In this case we should
2427 check that a final reload hard reg can hold the
2428 value mode. */
027ece11
VM
2429 if (curr_static_id->operand[nop].strict_low
2430 && REG_P (op)
2431 && hard_regno[nop] < 0
2432 && GET_CODE (*curr_id->operand_loc[nop]) == SUBREG
2433 && ira_class_hard_regs_num[this_alternative] > 0
2434 && ! HARD_REGNO_MODE_OK (ira_class_hard_regs
2435 [this_alternative][0],
00b7527b
VM
2436 GET_MODE
2437 (*curr_id->operand_loc[nop])))
8f21260c
VM
2438 {
2439 if (lra_dump_file != NULL)
2440 fprintf
2441 (lra_dump_file,
2442 " alt=%d: Strict low subreg reload -- refuse\n",
2443 nalt);
2444 goto fail;
2445 }
027ece11
VM
2446 losers++;
2447 }
55a2c322
VM
2448 if (operand_reg[nop] != NULL_RTX
2449 /* Output operands and matched input operands are
2450 not inherited. The following conditions do not
2451 exactly describe the previous statement but they
2452 are pretty close. */
2453 && curr_static_id->operand[nop].type != OP_OUT
2454 && (this_alternative_matches < 0
2455 || curr_static_id->operand[nop].type != OP_IN))
2456 {
2457 int last_reload = (lra_reg_info[ORIGINAL_REGNO
2458 (operand_reg[nop])]
2459 .last_reload);
2460
6334f3e9
VM
2461 /* The value of reload_sum has sense only if we
2462 process insns in their order. It happens only on
2463 the first constraints sub-pass when we do most of
2464 reload work. */
2465 if (lra_constraint_iter == 1 && last_reload > bb_reload_num)
55a2c322
VM
2466 reload_sum += last_reload - bb_reload_num;
2467 }
2468 /* If this is a constant that is reloaded into the
2469 desired class by copying it to memory first, count
2470 that as another reload. This is consistent with
2471 other code and is required to avoid choosing another
2472 alternative when the constant is moved into memory.
2473 Note that the test here is precisely the same as in
2474 the code below that calls force_const_mem. */
2475 if (CONST_POOL_OK_P (mode, op)
2476 && ((targetm.preferred_reload_class
2477 (op, this_alternative) == NO_REGS)
2478 || no_input_reloads_p))
2479 {
2480 const_to_mem = 1;
2481 if (! no_regs_p)
2482 losers++;
2483 }
f4eafc30 2484
55a2c322
VM
2485 /* Alternative loses if it requires a type of reload not
2486 permitted for this insn. We can always reload
2487 objects with a REG_UNUSED note. */
2488 if ((curr_static_id->operand[nop].type != OP_IN
2489 && no_output_reloads_p
2490 && ! find_reg_note (curr_insn, REG_UNUSED, op))
2491 || (curr_static_id->operand[nop].type != OP_OUT
8f21260c
VM
2492 && no_input_reloads_p && ! const_to_mem)
2493 || (this_alternative_matches >= 0
9102dadd
VM
2494 && (no_input_reloads_p
2495 || (no_output_reloads_p
2496 && (curr_static_id->operand
2497 [this_alternative_matches].type != OP_IN)
2498 && ! find_reg_note (curr_insn, REG_UNUSED,
2499 no_subreg_reg_operand
2500 [this_alternative_matches])))))
8f21260c
VM
2501 {
2502 if (lra_dump_file != NULL)
2503 fprintf
2504 (lra_dump_file,
2505 " alt=%d: No input/otput reload -- refuse\n",
2506 nalt);
2507 goto fail;
2508 }
f4eafc30 2509
f66af4aa
VM
2510 /* Alternative loses if it required class pseudo can not
2511 hold value of required mode. Such insns can be
7b6e0c54 2512 described by insn definitions with mode iterators. */
f66af4aa
VM
2513 if (GET_MODE (*curr_id->operand_loc[nop]) != VOIDmode
2514 && ! hard_reg_set_empty_p (this_alternative_set)
7b6e0c54
VM
2515 /* It is common practice for constraints to use a
2516 class which does not have actually enough regs to
2517 hold the value (e.g. x86 AREG for mode requiring
2518 more one general reg). Therefore we have 2
2519 conditions to check that the reload pseudo can
2520 not hold the mode value. */
f66af4aa
VM
2521 && ! HARD_REGNO_MODE_OK (ira_class_hard_regs
2522 [this_alternative][0],
3c954213 2523 GET_MODE (*curr_id->operand_loc[nop]))
7b6e0c54
VM
2524 /* The above condition is not enough as the first
2525 reg in ira_class_hard_regs can be not aligned for
2526 multi-words mode values. */
3c954213
VM
2527 && (prohibited_class_reg_set_mode_p
2528 (this_alternative, this_alternative_set,
2529 GET_MODE (*curr_id->operand_loc[nop]))))
2530 {
2531 if (lra_dump_file != NULL)
2532 fprintf (lra_dump_file,
2533 " alt=%d: reload pseudo for op %d "
2534 " can not hold the mode value -- refuse\n",
2535 nalt, nop);
2536 goto fail;
f66af4aa
VM
2537 }
2538
821b7577
VM
2539 /* Check strong discouragement of reload of non-constant
2540 into class THIS_ALTERNATIVE. */
2541 if (! CONSTANT_P (op) && ! no_regs_p
2542 && (targetm.preferred_reload_class
2543 (op, this_alternative) == NO_REGS
2544 || (curr_static_id->operand[nop].type == OP_OUT
2545 && (targetm.preferred_output_reload_class
2546 (op, this_alternative) == NO_REGS))))
cb1cca12
VM
2547 {
2548 if (lra_dump_file != NULL)
2549 fprintf (lra_dump_file,
2550 " %d Non-prefered reload: reject+=%d\n",
2551 nop, LRA_MAX_REJECT);
2552 reject += LRA_MAX_REJECT;
2553 }
f4eafc30 2554
ed52a84e
VM
2555 if (! (MEM_P (op) && offmemok)
2556 && ! (const_to_mem && constmemok))
55a2c322
VM
2557 {
2558 /* We prefer to reload pseudos over reloading other
2559 things, since such reloads may be able to be
2560 eliminated later. So bump REJECT in other cases.
2561 Don't do this in the case where we are forcing a
2562 constant into memory and it will then win since
2563 we don't want to have a different alternative
2564 match then. */
2565 if (! (REG_P (op) && REGNO (op) >= FIRST_PSEUDO_REGISTER))
cb1cca12
VM
2566 {
2567 if (lra_dump_file != NULL)
2568 fprintf
2569 (lra_dump_file,
2570 " %d Non-pseudo reload: reject+=2\n",
2571 nop);
2572 reject += 2;
2573 }
f4eafc30 2574
55a2c322
VM
2575 if (! no_regs_p)
2576 reload_nregs
2577 += ira_reg_class_max_nregs[this_alternative][mode];
36ff9dfb
VM
2578
2579 if (SMALL_REGISTER_CLASS_P (this_alternative))
cb1cca12
VM
2580 {
2581 if (lra_dump_file != NULL)
2582 fprintf
2583 (lra_dump_file,
2584 " %d Small class reload: reject+=%d\n",
2585 nop, LRA_LOSER_COST_FACTOR / 2);
2586 reject += LRA_LOSER_COST_FACTOR / 2;
2587 }
55a2c322
VM
2588 }
2589
1bdc4b11
VM
2590 /* We are trying to spill pseudo into memory. It is
2591 usually more costly than moving to a hard register
2592 although it might takes the same number of
5f225ef4
VM
2593 reloads.
2594
2595 Non-pseudo spill may happen also. Suppose a target allows both
2596 register and memory in the operand constraint alternatives,
2597 then it's typical that an eliminable register has a substition
2598 of "base + offset" which can either be reloaded by a simple
2599 "new_reg <= base + offset" which will match the register
2600 constraint, or a similar reg addition followed by further spill
2601 to and reload from memory which will match the memory
2602 constraint, but this memory spill will be much more costly
2603 usually.
2604
2605 Code below increases the reject for both pseudo and non-pseudo
2606 spill. */
10406801
JW
2607 if (no_regs_p
2608 && !(MEM_P (op) && offmemok)
2609 && !(REG_P (op) && hard_regno[nop] < 0))
cb1cca12
VM
2610 {
2611 if (lra_dump_file != NULL)
2612 fprintf
2613 (lra_dump_file,
5f225ef4
VM
2614 " %d Spill %spseudo into memory: reject+=3\n",
2615 nop, REG_P (op) ? "" : "Non-");
cb1cca12 2616 reject += 3;
7891065a
VM
2617 if (VECTOR_MODE_P (mode))
2618 {
2619 /* Spilling vectors into memory is usually more
2620 costly as they contain big values. */
2621 if (lra_dump_file != NULL)
2622 fprintf
2623 (lra_dump_file,
2624 " %d Spill vector pseudo: reject+=2\n",
2625 nop);
2626 reject += 2;
2627 }
cb1cca12 2628 }
1bdc4b11 2629
7100b561
UB
2630#ifdef SECONDARY_MEMORY_NEEDED
2631 /* If reload requires moving value through secondary
2632 memory, it will need one more insn at least. */
2633 if (this_alternative != NO_REGS
2634 && REG_P (op) && (cl = get_reg_class (REGNO (op))) != NO_REGS
2635 && ((curr_static_id->operand[nop].type != OP_OUT
2636 && SECONDARY_MEMORY_NEEDED (cl, this_alternative,
2637 GET_MODE (op)))
2638 || (curr_static_id->operand[nop].type != OP_IN
2639 && SECONDARY_MEMORY_NEEDED (this_alternative, cl,
2640 GET_MODE (op)))))
2641 losers++;
2642#endif
55a2c322
VM
2643 /* Input reloads can be inherited more often than output
2644 reloads can be removed, so penalize output
2645 reloads. */
2646 if (!REG_P (op) || curr_static_id->operand[nop].type != OP_IN)
cb1cca12
VM
2647 {
2648 if (lra_dump_file != NULL)
2649 fprintf
2650 (lra_dump_file,
2651 " %d Non input pseudo reload: reject++\n",
2652 nop);
2653 reject++;
2654 }
55a2c322 2655 }
f4eafc30 2656
80f466c4 2657 if (early_clobber_p && ! scratch_p)
cb1cca12
VM
2658 {
2659 if (lra_dump_file != NULL)
2660 fprintf (lra_dump_file,
2661 " %d Early clobber: reject++\n", nop);
2662 reject++;
2663 }
55a2c322
VM
2664 /* ??? We check early clobbers after processing all operands
2665 (see loop below) and there we update the costs more.
2666 Should we update the cost (may be approximately) here
2667 because of early clobber register reloads or it is a rare
2668 or non-important thing to be worth to do it. */
821b7577 2669 overall = losers * LRA_LOSER_COST_FACTOR + reject;
55a2c322 2670 if ((best_losers == 0 || losers != 0) && best_overall < overall)
deca73f5
VM
2671 {
2672 if (lra_dump_file != NULL)
2673 fprintf (lra_dump_file,
cb1cca12 2674 " alt=%d,overall=%d,losers=%d -- refuse\n",
deca73f5
VM
2675 nalt, overall, losers);
2676 goto fail;
2677 }
55a2c322
VM
2678
2679 curr_alt[nop] = this_alternative;
2680 COPY_HARD_REG_SET (curr_alt_set[nop], this_alternative_set);
2681 curr_alt_win[nop] = this_alternative_win;
2682 curr_alt_match_win[nop] = this_alternative_match_win;
2683 curr_alt_offmemok[nop] = this_alternative_offmemok;
2684 curr_alt_matches[nop] = this_alternative_matches;
f4eafc30 2685
55a2c322
VM
2686 if (this_alternative_matches >= 0
2687 && !did_match && !this_alternative_win)
2688 curr_alt_win[this_alternative_matches] = false;
f4eafc30 2689
55a2c322
VM
2690 if (early_clobber_p && operand_reg[nop] != NULL_RTX)
2691 early_clobbered_nops[early_clobbered_regs_num++] = nop;
2692 }
2c62cbaa
VM
2693 if (curr_insn_set != NULL_RTX && n_operands == 2
2694 /* Prevent processing non-move insns. */
2695 && (GET_CODE (SET_SRC (curr_insn_set)) == SUBREG
2696 || SET_SRC (curr_insn_set) == no_subreg_reg_operand[1])
2697 && ((! curr_alt_win[0] && ! curr_alt_win[1]
2698 && REG_P (no_subreg_reg_operand[0])
2699 && REG_P (no_subreg_reg_operand[1])
2700 && (reg_in_class_p (no_subreg_reg_operand[0], curr_alt[1])
2701 || reg_in_class_p (no_subreg_reg_operand[1], curr_alt[0])))
2702 || (! curr_alt_win[0] && curr_alt_win[1]
2703 && REG_P (no_subreg_reg_operand[1])
2704 && reg_in_class_p (no_subreg_reg_operand[1], curr_alt[0]))
2705 || (curr_alt_win[0] && ! curr_alt_win[1]
2706 && REG_P (no_subreg_reg_operand[0])
2707 && reg_in_class_p (no_subreg_reg_operand[0], curr_alt[1])
2708 && (! CONST_POOL_OK_P (curr_operand_mode[1],
2709 no_subreg_reg_operand[1])
2710 || (targetm.preferred_reload_class
2711 (no_subreg_reg_operand[1],
2712 (enum reg_class) curr_alt[1]) != NO_REGS))
2713 /* If it is a result of recent elimination in move
2714 insn we can transform it into an add still by
2715 using this alternative. */
2716 && GET_CODE (no_subreg_reg_operand[1]) != PLUS)))
cb1cca12
VM
2717 {
2718 /* We have a move insn and a new reload insn will be similar
2719 to the current insn. We should avoid such situation as it
2720 results in LRA cycling. */
2721 overall += LRA_MAX_REJECT;
2722 }
55a2c322
VM
2723 ok_p = true;
2724 curr_alt_dont_inherit_ops_num = 0;
2725 for (nop = 0; nop < early_clobbered_regs_num; nop++)
2726 {
2194f7a2 2727 int i, j, clobbered_hard_regno, first_conflict_j, last_conflict_j;
55a2c322
VM
2728 HARD_REG_SET temp_set;
2729
2730 i = early_clobbered_nops[nop];
2731 if ((! curr_alt_win[i] && ! curr_alt_match_win[i])
2732 || hard_regno[i] < 0)
2733 continue;
1c86bd80 2734 lra_assert (operand_reg[i] != NULL_RTX);
55a2c322
VM
2735 clobbered_hard_regno = hard_regno[i];
2736 CLEAR_HARD_REG_SET (temp_set);
2737 add_to_hard_reg_set (&temp_set, biggest_mode[i], clobbered_hard_regno);
2194f7a2 2738 first_conflict_j = last_conflict_j = -1;
55a2c322
VM
2739 for (j = 0; j < n_operands; j++)
2740 if (j == i
2741 /* We don't want process insides of match_operator and
2742 match_parallel because otherwise we would process
2743 their operands once again generating a wrong
2744 code. */
2745 || curr_static_id->operand[j].is_operator)
2746 continue;
2747 else if ((curr_alt_matches[j] == i && curr_alt_match_win[j])
2748 || (curr_alt_matches[i] == j && curr_alt_match_win[i]))
2749 continue;
1c86bd80
VM
2750 /* If we don't reload j-th operand, check conflicts. */
2751 else if ((curr_alt_win[j] || curr_alt_match_win[j])
2752 && uses_hard_regs_p (*curr_id->operand_loc[j], temp_set))
2194f7a2
VM
2753 {
2754 if (first_conflict_j < 0)
2755 first_conflict_j = j;
2756 last_conflict_j = j;
2757 }
2758 if (last_conflict_j < 0)
55a2c322 2759 continue;
1c86bd80
VM
2760 /* If earlyclobber operand conflicts with another
2761 non-matching operand which is actually the same register
2762 as the earlyclobber operand, it is better to reload the
2763 another operand as an operand matching the earlyclobber
2764 operand can be also the same. */
2194f7a2 2765 if (first_conflict_j == last_conflict_j
e78dbb4a
MS
2766 && operand_reg[last_conflict_j] != NULL_RTX
2767 && ! curr_alt_match_win[last_conflict_j]
2194f7a2 2768 && REGNO (operand_reg[i]) == REGNO (operand_reg[last_conflict_j]))
1c86bd80 2769 {
2194f7a2
VM
2770 curr_alt_win[last_conflict_j] = false;
2771 curr_alt_dont_inherit_ops[curr_alt_dont_inherit_ops_num++]
2772 = last_conflict_j;
1c86bd80 2773 losers++;
deca73f5
VM
2774 /* Early clobber was already reflected in REJECT. */
2775 lra_assert (reject > 0);
cb1cca12
VM
2776 if (lra_dump_file != NULL)
2777 fprintf
2778 (lra_dump_file,
2779 " %d Conflict early clobber reload: reject--\n",
2780 i);
deca73f5
VM
2781 reject--;
2782 overall += LRA_LOSER_COST_FACTOR - 1;
1c86bd80 2783 }
55a2c322
VM
2784 else
2785 {
1c86bd80
VM
2786 /* We need to reload early clobbered register and the
2787 matched registers. */
2788 for (j = 0; j < n_operands; j++)
2789 if (curr_alt_matches[j] == i)
2790 {
2791 curr_alt_match_win[j] = false;
2792 losers++;
2793 overall += LRA_LOSER_COST_FACTOR;
2794 }
2795 if (! curr_alt_match_win[i])
2796 curr_alt_dont_inherit_ops[curr_alt_dont_inherit_ops_num++] = i;
2797 else
2798 {
2799 /* Remember pseudos used for match reloads are never
2800 inherited. */
2801 lra_assert (curr_alt_matches[i] >= 0);
2802 curr_alt_win[curr_alt_matches[i]] = false;
2803 }
2804 curr_alt_win[i] = curr_alt_match_win[i] = false;
2805 losers++;
deca73f5
VM
2806 /* Early clobber was already reflected in REJECT. */
2807 lra_assert (reject > 0);
cb1cca12
VM
2808 if (lra_dump_file != NULL)
2809 fprintf
2810 (lra_dump_file,
2811 " %d Matched conflict early clobber reloads:"
2812 "reject--\n",
2813 i);
deca73f5
VM
2814 reject--;
2815 overall += LRA_LOSER_COST_FACTOR - 1;
55a2c322 2816 }
55a2c322 2817 }
deca73f5 2818 if (lra_dump_file != NULL)
36ff9dfb
VM
2819 fprintf (lra_dump_file, " alt=%d,overall=%d,losers=%d,rld_nregs=%d\n",
2820 nalt, overall, losers, reload_nregs);
deca73f5 2821
55a2c322
VM
2822 /* If this alternative can be made to work by reloading, and it
2823 needs less reloading than the others checked so far, record
2824 it as the chosen goal for reloading. */
2825 if ((best_losers != 0 && losers == 0)
2826 || (((best_losers == 0 && losers == 0)
2827 || (best_losers != 0 && losers != 0))
2828 && (best_overall > overall
2829 || (best_overall == overall
2830 /* If the cost of the reloads is the same,
2831 prefer alternative which requires minimal
36ff9dfb
VM
2832 number of reload regs. */
2833 && (reload_nregs < best_reload_nregs
2834 || (reload_nregs == best_reload_nregs
f15feaf9
VM
2835 && (best_reload_sum < reload_sum
2836 || (best_reload_sum == reload_sum
2837 && nalt < goal_alt_number))))))))
55a2c322
VM
2838 {
2839 for (nop = 0; nop < n_operands; nop++)
2840 {
2841 goal_alt_win[nop] = curr_alt_win[nop];
2842 goal_alt_match_win[nop] = curr_alt_match_win[nop];
2843 goal_alt_matches[nop] = curr_alt_matches[nop];
2844 goal_alt[nop] = curr_alt[nop];
2845 goal_alt_offmemok[nop] = curr_alt_offmemok[nop];
2846 }
2847 goal_alt_dont_inherit_ops_num = curr_alt_dont_inherit_ops_num;
2848 for (nop = 0; nop < curr_alt_dont_inherit_ops_num; nop++)
2849 goal_alt_dont_inherit_ops[nop] = curr_alt_dont_inherit_ops[nop];
2850 goal_alt_swapped = curr_swapped;
2851 best_overall = overall;
2852 best_losers = losers;
55a2c322
VM
2853 best_reload_nregs = reload_nregs;
2854 best_reload_sum = reload_sum;
2855 goal_alt_number = nalt;
2856 }
2857 if (losers == 0)
2858 /* Everything is satisfied. Do not process alternatives
f4eafc30 2859 anymore. */
55a2c322
VM
2860 break;
2861 fail:
2862 ;
2863 }
2864 return ok_p;
2865}
2866
c31d2d11
RS
2867/* Make reload base reg from address AD. */
2868static rtx
2869base_to_reg (struct address_info *ad)
2870{
2871 enum reg_class cl;
2872 int code = -1;
2873 rtx new_inner = NULL_RTX;
2874 rtx new_reg = NULL_RTX;
fee3e72c
DM
2875 rtx_insn *insn;
2876 rtx_insn *last_insn = get_last_insn();
c31d2d11
RS
2877
2878 lra_assert (ad->base == ad->base_term && ad->disp == ad->disp_term);
2879 cl = base_reg_class (ad->mode, ad->as, ad->base_outer_code,
2880 get_index_code (ad));
2881 new_reg = lra_create_new_reg (GET_MODE (*ad->base_term), NULL_RTX,
2882 cl, "base");
2883 new_inner = simplify_gen_binary (PLUS, GET_MODE (new_reg), new_reg,
2884 ad->disp_term == NULL
2885 ? gen_int_mode (0, ad->mode)
2886 : *ad->disp_term);
2887 if (!valid_address_p (ad->mode, new_inner, ad->as))
2888 return NULL_RTX;
f7df4a84 2889 insn = emit_insn (gen_rtx_SET (new_reg, *ad->base_term));
c31d2d11
RS
2890 code = recog_memoized (insn);
2891 if (code < 0)
2892 {
2893 delete_insns_since (last_insn);
2894 return NULL_RTX;
2895 }
2896
2897 return new_inner;
2898}
2899
277f65de 2900/* Make reload base reg + disp from address AD. Return the new pseudo. */
55a2c322 2901static rtx
277f65de 2902base_plus_disp_to_reg (struct address_info *ad)
55a2c322
VM
2903{
2904 enum reg_class cl;
2905 rtx new_reg;
2906
277f65de
RS
2907 lra_assert (ad->base == ad->base_term && ad->disp == ad->disp_term);
2908 cl = base_reg_class (ad->mode, ad->as, ad->base_outer_code,
2909 get_index_code (ad));
2910 new_reg = lra_create_new_reg (GET_MODE (*ad->base_term), NULL_RTX,
2911 cl, "base + disp");
2912 lra_emit_add (new_reg, *ad->base_term, *ad->disp_term);
55a2c322
VM
2913 return new_reg;
2914}
2915
6e071b1e
VM
2916/* Make reload of index part of address AD. Return the new
2917 pseudo. */
2918static rtx
2919index_part_to_reg (struct address_info *ad)
2920{
2921 rtx new_reg;
2922
2923 new_reg = lra_create_new_reg (GET_MODE (*ad->index), NULL_RTX,
2924 INDEX_REG_CLASS, "index term");
2925 expand_mult (GET_MODE (*ad->index), *ad->index_term,
2926 GEN_INT (get_index_scale (ad)), new_reg, 1);
2927 return new_reg;
2928}
2929
277f65de
RS
2930/* Return true if we can add a displacement to address AD, even if that
2931 makes the address invalid. The fix-up code requires any new address
2932 to be the sum of the BASE_TERM, INDEX and DISP_TERM fields. */
02ea4bf4 2933static bool
277f65de 2934can_add_disp_p (struct address_info *ad)
02ea4bf4 2935{
277f65de
RS
2936 return (!ad->autoinc_p
2937 && ad->segment == NULL
2938 && ad->base == ad->base_term
2939 && ad->disp == ad->disp_term);
02ea4bf4
RS
2940}
2941
277f65de
RS
2942/* Make equiv substitution in address AD. Return true if a substitution
2943 was made. */
55a2c322 2944static bool
277f65de 2945equiv_address_substitution (struct address_info *ad)
55a2c322 2946{
277f65de 2947 rtx base_reg, new_base_reg, index_reg, new_index_reg, *base_term, *index_term;
55a2c322
VM
2948 HOST_WIDE_INT disp, scale;
2949 bool change_p;
2950
277f65de
RS
2951 base_term = strip_subreg (ad->base_term);
2952 if (base_term == NULL)
55a2c322
VM
2953 base_reg = new_base_reg = NULL_RTX;
2954 else
2955 {
277f65de 2956 base_reg = *base_term;
8d49e7ef 2957 new_base_reg = get_equiv_with_elimination (base_reg, curr_insn);
55a2c322 2958 }
277f65de
RS
2959 index_term = strip_subreg (ad->index_term);
2960 if (index_term == NULL)
55a2c322
VM
2961 index_reg = new_index_reg = NULL_RTX;
2962 else
2963 {
277f65de 2964 index_reg = *index_term;
8d49e7ef 2965 new_index_reg = get_equiv_with_elimination (index_reg, curr_insn);
55a2c322
VM
2966 }
2967 if (base_reg == new_base_reg && index_reg == new_index_reg)
2968 return false;
2969 disp = 0;
2970 change_p = false;
2971 if (lra_dump_file != NULL)
2972 {
2973 fprintf (lra_dump_file, "Changing address in insn %d ",
2974 INSN_UID (curr_insn));
cfbeaedf 2975 dump_value_slim (lra_dump_file, *ad->outer, 1);
55a2c322
VM
2976 }
2977 if (base_reg != new_base_reg)
2978 {
2979 if (REG_P (new_base_reg))
2980 {
277f65de 2981 *base_term = new_base_reg;
55a2c322
VM
2982 change_p = true;
2983 }
2984 else if (GET_CODE (new_base_reg) == PLUS
2985 && REG_P (XEXP (new_base_reg, 0))
02ea4bf4 2986 && CONST_INT_P (XEXP (new_base_reg, 1))
277f65de 2987 && can_add_disp_p (ad))
55a2c322
VM
2988 {
2989 disp += INTVAL (XEXP (new_base_reg, 1));
277f65de 2990 *base_term = XEXP (new_base_reg, 0);
55a2c322
VM
2991 change_p = true;
2992 }
277f65de
RS
2993 if (ad->base_term2 != NULL)
2994 *ad->base_term2 = *ad->base_term;
55a2c322 2995 }
55a2c322
VM
2996 if (index_reg != new_index_reg)
2997 {
2998 if (REG_P (new_index_reg))
2999 {
277f65de 3000 *index_term = new_index_reg;
55a2c322
VM
3001 change_p = true;
3002 }
3003 else if (GET_CODE (new_index_reg) == PLUS
3004 && REG_P (XEXP (new_index_reg, 0))
02ea4bf4 3005 && CONST_INT_P (XEXP (new_index_reg, 1))
277f65de 3006 && can_add_disp_p (ad)
02ea4bf4 3007 && (scale = get_index_scale (ad)))
55a2c322
VM
3008 {
3009 disp += INTVAL (XEXP (new_index_reg, 1)) * scale;
277f65de 3010 *index_term = XEXP (new_index_reg, 0);
55a2c322
VM
3011 change_p = true;
3012 }
3013 }
3014 if (disp != 0)
3015 {
277f65de
RS
3016 if (ad->disp != NULL)
3017 *ad->disp = plus_constant (GET_MODE (*ad->inner), *ad->disp, disp);
55a2c322
VM
3018 else
3019 {
277f65de
RS
3020 *ad->inner = plus_constant (GET_MODE (*ad->inner), *ad->inner, disp);
3021 update_address (ad);
55a2c322
VM
3022 }
3023 change_p = true;
3024 }
3025 if (lra_dump_file != NULL)
3026 {
3027 if (! change_p)
3028 fprintf (lra_dump_file, " -- no change\n");
3029 else
3030 {
3031 fprintf (lra_dump_file, " on equiv ");
cfbeaedf 3032 dump_value_slim (lra_dump_file, *ad->outer, 1);
55a2c322
VM
3033 fprintf (lra_dump_file, "\n");
3034 }
3035 }
3036 return change_p;
3037}
3038
d9cf932c
VM
3039/* Major function to make reloads for an address in operand NOP or
3040 check its correctness (If CHECK_ONLY_P is true). The supported
3041 cases are:
bd3d34d4 3042
5a107a0f
VM
3043 1) an address that existed before LRA started, at which point it
3044 must have been valid. These addresses are subject to elimination
3045 and may have become invalid due to the elimination offset being out
3046 of range.
bd3d34d4 3047
5a107a0f
VM
3048 2) an address created by forcing a constant to memory
3049 (force_const_to_mem). The initial form of these addresses might
3050 not be valid, and it is this function's job to make them valid.
bd3d34d4
RS
3051
3052 3) a frame address formed from a register and a (possibly zero)
5a107a0f
VM
3053 constant offset. As above, these addresses might not be valid and
3054 this function must make them so.
bd3d34d4
RS
3055
3056 Add reloads to the lists *BEFORE and *AFTER. We might need to add
55a2c322 3057 reloads to *AFTER because of inc/dec, {pre, post} modify in the
cc8849a1
VM
3058 address. Return true for any RTL change.
3059
3060 The function is a helper function which does not produce all
d9cf932c
VM
3061 transformations (when CHECK_ONLY_P is false) which can be
3062 necessary. It does just basic steps. To do all necessary
3063 transformations use function process_address. */
55a2c322 3064static bool
d9cf932c
VM
3065process_address_1 (int nop, bool check_only_p,
3066 rtx_insn **before, rtx_insn **after)
55a2c322 3067{
277f65de
RS
3068 struct address_info ad;
3069 rtx new_reg;
bc2fc1f3 3070 HOST_WIDE_INT scale;
55a2c322
VM
3071 rtx op = *curr_id->operand_loc[nop];
3072 const char *constraint = curr_static_id->operand[nop].constraint;
777e635f 3073 enum constraint_num cn = lookup_constraint (constraint);
d9cf932c 3074 bool change_p = false;
55a2c322 3075
823bb054
SB
3076 if (MEM_P (op)
3077 && GET_MODE (op) == BLKmode
3078 && GET_CODE (XEXP (op, 0)) == SCRATCH)
3079 return false;
3080
8677664e 3081 if (insn_extra_address_constraint (cn))
277f65de 3082 decompose_lea_address (&ad, curr_id->operand_loc[nop]);
55a2c322 3083 else if (MEM_P (op))
277f65de 3084 decompose_mem_address (&ad, op);
55a2c322
VM
3085 else if (GET_CODE (op) == SUBREG
3086 && MEM_P (SUBREG_REG (op)))
277f65de 3087 decompose_mem_address (&ad, SUBREG_REG (op));
55a2c322
VM
3088 else
3089 return false;
70712859
KK
3090 /* If INDEX_REG_CLASS is assigned to base_term already and isn't to
3091 index_term, swap them so to avoid assigning INDEX_REG_CLASS to both
3092 when INDEX_REG_CLASS is a single register class. */
3093 if (ad.base_term != NULL
3094 && ad.index_term != NULL
3095 && ira_class_hard_regs_num[INDEX_REG_CLASS] == 1
3096 && REG_P (*ad.base_term)
3097 && REG_P (*ad.index_term)
3098 && in_class_p (*ad.base_term, INDEX_REG_CLASS, NULL)
3099 && ! in_class_p (*ad.index_term, INDEX_REG_CLASS, NULL))
3100 {
3101 std::swap (ad.base, ad.index);
3102 std::swap (ad.base_term, ad.index_term);
3103 }
d9cf932c
VM
3104 if (! check_only_p)
3105 change_p = equiv_address_substitution (&ad);
277f65de 3106 if (ad.base_term != NULL
55a2c322 3107 && (process_addr_reg
d9cf932c 3108 (ad.base_term, check_only_p, before,
277f65de
RS
3109 (ad.autoinc_p
3110 && !(REG_P (*ad.base_term)
3111 && find_regno_note (curr_insn, REG_DEAD,
3112 REGNO (*ad.base_term)) != NULL_RTX)
55a2c322 3113 ? after : NULL),
277f65de
RS
3114 base_reg_class (ad.mode, ad.as, ad.base_outer_code,
3115 get_index_code (&ad)))))
55a2c322
VM
3116 {
3117 change_p = true;
277f65de
RS
3118 if (ad.base_term2 != NULL)
3119 *ad.base_term2 = *ad.base_term;
55a2c322 3120 }
277f65de 3121 if (ad.index_term != NULL
d9cf932c
VM
3122 && process_addr_reg (ad.index_term, check_only_p,
3123 before, NULL, INDEX_REG_CLASS))
55a2c322
VM
3124 change_p = true;
3125
777e635f
RS
3126 /* Target hooks sometimes don't treat extra-constraint addresses as
3127 legitimate address_operands, so handle them specially. */
8677664e 3128 if (insn_extra_address_constraint (cn)
777e635f 3129 && satisfies_address_constraint_p (&ad, cn))
2c62cbaa 3130 return change_p;
2c62cbaa 3131
d9cf932c
VM
3132 if (check_only_p)
3133 return change_p;
3134
277f65de 3135 /* There are three cases where the shape of *AD.INNER may now be invalid:
bd3d34d4
RS
3136
3137 1) the original address was valid, but either elimination or
5a107a0f
VM
3138 equiv_address_substitution was applied and that made
3139 the address invalid.
bd3d34d4
RS
3140
3141 2) the address is an invalid symbolic address created by
5a107a0f 3142 force_const_to_mem.
bd3d34d4
RS
3143
3144 3) the address is a frame address with an invalid offset.
3145
c31d2d11
RS
3146 4) the address is a frame address with an invalid base.
3147
2c62cbaa
VM
3148 All these cases involve a non-autoinc address, so there is no
3149 point revalidating other types. */
3150 if (ad.autoinc_p || valid_address_p (&ad))
55a2c322
VM
3151 return change_p;
3152
bd3d34d4
RS
3153 /* Any index existed before LRA started, so we can assume that the
3154 presence and shape of the index is valid. */
55a2c322 3155 push_to_sequence (*before);
2c62cbaa 3156 lra_assert (ad.disp == ad.disp_term);
277f65de 3157 if (ad.base == NULL)
55a2c322 3158 {
277f65de 3159 if (ad.index == NULL)
55a2c322 3160 {
95831c01
VM
3161 rtx_insn *insn;
3162 rtx_insn *last = get_last_insn ();
55a2c322 3163 int code = -1;
277f65de
RS
3164 enum reg_class cl = base_reg_class (ad.mode, ad.as,
3165 SCRATCH, SCRATCH);
2c62cbaa 3166 rtx addr = *ad.inner;
277f65de 3167
2c62cbaa 3168 new_reg = lra_create_new_reg (Pmode, NULL_RTX, cl, "addr");
d0b2266a
TS
3169 if (HAVE_lo_sum)
3170 {
d0b2266a
TS
3171 /* addr => lo_sum (new_base, addr), case (2) above. */
3172 insn = emit_insn (gen_rtx_SET
3173 (new_reg,
3174 gen_rtx_HIGH (Pmode, copy_rtx (addr))));
3175 code = recog_memoized (insn);
3176 if (code >= 0)
3177 {
3178 *ad.inner = gen_rtx_LO_SUM (Pmode, new_reg, addr);
3179 if (! valid_address_p (ad.mode, *ad.outer, ad.as))
3180 {
3181 /* Try to put lo_sum into register. */
3182 insn = emit_insn (gen_rtx_SET
3183 (new_reg,
3184 gen_rtx_LO_SUM (Pmode, new_reg, addr)));
3185 code = recog_memoized (insn);
3186 if (code >= 0)
3187 {
3188 *ad.inner = new_reg;
3189 if (! valid_address_p (ad.mode, *ad.outer, ad.as))
3190 {
3191 *ad.inner = addr;
3192 code = -1;
3193 }
3194 }
3195
3196 }
3197 }
3198 if (code < 0)
3199 delete_insns_since (last);
3200 }
3201
55a2c322
VM
3202 if (code < 0)
3203 {
2c62cbaa
VM
3204 /* addr => new_base, case (2) above. */
3205 lra_emit_move (new_reg, addr);
95831c01
VM
3206
3207 for (insn = last == NULL_RTX ? get_insns () : NEXT_INSN (last);
3208 insn != NULL_RTX;
3209 insn = NEXT_INSN (insn))
3210 if (recog_memoized (insn) < 0)
3211 break;
3212 if (insn != NULL_RTX)
3213 {
3214 /* Do nothing if we cannot generate right insns.
9c582551 3215 This is analogous to reload pass behavior. */
95831c01
VM
3216 delete_insns_since (last);
3217 end_sequence ();
3218 return false;
3219 }
2c62cbaa 3220 *ad.inner = new_reg;
55a2c322
VM
3221 }
3222 }
3223 else
3224 {
bd3d34d4
RS
3225 /* index * scale + disp => new base + index * scale,
3226 case (1) above. */
277f65de
RS
3227 enum reg_class cl = base_reg_class (ad.mode, ad.as, PLUS,
3228 GET_CODE (*ad.index));
55a2c322
VM
3229
3230 lra_assert (INDEX_REG_CLASS != NO_REGS);
3231 new_reg = lra_create_new_reg (Pmode, NULL_RTX, cl, "disp");
277f65de
RS
3232 lra_emit_move (new_reg, *ad.disp);
3233 *ad.inner = simplify_gen_binary (PLUS, GET_MODE (new_reg),
3234 new_reg, *ad.index);
55a2c322
VM
3235 }
3236 }
277f65de 3237 else if (ad.index == NULL)
55a2c322 3238 {
5a107a0f
VM
3239 int regno;
3240 enum reg_class cl;
cfa434f6
DM
3241 rtx set;
3242 rtx_insn *insns, *last_insn;
c31d2d11
RS
3243 /* Try to reload base into register only if the base is invalid
3244 for the address but with valid offset, case (4) above. */
3245 start_sequence ();
3246 new_reg = base_to_reg (&ad);
3247
bd3d34d4 3248 /* base + disp => new base, cases (1) and (3) above. */
55a2c322
VM
3249 /* Another option would be to reload the displacement into an
3250 index register. However, postreload has code to optimize
3251 address reloads that have the same base and different
3252 displacements, so reloading into an index register would
3253 not necessarily be a win. */
c31d2d11
RS
3254 if (new_reg == NULL_RTX)
3255 new_reg = base_plus_disp_to_reg (&ad);
5a107a0f
VM
3256 insns = get_insns ();
3257 last_insn = get_last_insn ();
3258 /* If we generated at least two insns, try last insn source as
3259 an address. If we succeed, we generate one less insn. */
3260 if (last_insn != insns && (set = single_set (last_insn)) != NULL_RTX
3261 && GET_CODE (SET_SRC (set)) == PLUS
3262 && REG_P (XEXP (SET_SRC (set), 0))
3263 && CONSTANT_P (XEXP (SET_SRC (set), 1)))
3264 {
3265 *ad.inner = SET_SRC (set);
3266 if (valid_address_p (ad.mode, *ad.outer, ad.as))
3267 {
3268 *ad.base_term = XEXP (SET_SRC (set), 0);
3269 *ad.disp_term = XEXP (SET_SRC (set), 1);
3270 cl = base_reg_class (ad.mode, ad.as, ad.base_outer_code,
3271 get_index_code (&ad));
3272 regno = REGNO (*ad.base_term);
3273 if (regno >= FIRST_PSEUDO_REGISTER
3274 && cl != lra_get_allocno_class (regno))
a2d0d374 3275 lra_change_class (regno, cl, " Change to", true);
5a107a0f
VM
3276 new_reg = SET_SRC (set);
3277 delete_insns_since (PREV_INSN (last_insn));
3278 }
3279 }
14133a4d
KK
3280 /* Try if target can split displacement into legitimite new disp
3281 and offset. If it's the case, we replace the last insn with
3282 insns for base + offset => new_reg and set new_reg + new disp
3283 to *ad.inner. */
3284 last_insn = get_last_insn ();
3285 if ((set = single_set (last_insn)) != NULL_RTX
3286 && GET_CODE (SET_SRC (set)) == PLUS
3287 && REG_P (XEXP (SET_SRC (set), 0))
3288 && REGNO (XEXP (SET_SRC (set), 0)) < FIRST_PSEUDO_REGISTER
3289 && CONST_INT_P (XEXP (SET_SRC (set), 1)))
3290 {
3291 rtx addend, disp = XEXP (SET_SRC (set), 1);
3292 if (targetm.legitimize_address_displacement (&disp, &addend,
3293 ad.mode))
3294 {
3295 rtx_insn *new_insns;
3296 start_sequence ();
3297 lra_emit_add (new_reg, XEXP (SET_SRC (set), 0), addend);
3298 new_insns = get_insns ();
3299 end_sequence ();
3300 new_reg = gen_rtx_PLUS (Pmode, new_reg, disp);
3301 delete_insns_since (PREV_INSN (last_insn));
3302 add_insn (new_insns);
3303 insns = get_insns ();
3304 }
3305 }
5a107a0f
VM
3306 end_sequence ();
3307 emit_insn (insns);
277f65de 3308 *ad.inner = new_reg;
55a2c322 3309 }
6e071b1e 3310 else if (ad.disp_term != NULL)
55a2c322 3311 {
bd3d34d4
RS
3312 /* base + scale * index + disp => new base + scale * index,
3313 case (1) above. */
277f65de
RS
3314 new_reg = base_plus_disp_to_reg (&ad);
3315 *ad.inner = simplify_gen_binary (PLUS, GET_MODE (new_reg),
3316 new_reg, *ad.index);
55a2c322 3317 }
bc2fc1f3 3318 else if ((scale = get_index_scale (&ad)) == 1)
5a770e01
VM
3319 {
3320 /* The last transformation to one reg will be made in
3321 curr_insn_transform function. */
3322 end_sequence ();
3323 return false;
3324 }
bc2fc1f3 3325 else if (scale != 0)
6e071b1e
VM
3326 {
3327 /* base + scale * index => base + new_reg,
3328 case (1) above.
3329 Index part of address may become invalid. For example, we
3330 changed pseudo on the equivalent memory and a subreg of the
3331 pseudo onto the memory of different mode for which the scale is
3332 prohibitted. */
3333 new_reg = index_part_to_reg (&ad);
3334 *ad.inner = simplify_gen_binary (PLUS, GET_MODE (new_reg),
3335 *ad.base_term, new_reg);
3336 }
bc2fc1f3
VM
3337 else
3338 {
3339 enum reg_class cl = base_reg_class (ad.mode, ad.as,
3340 SCRATCH, SCRATCH);
3341 rtx addr = *ad.inner;
3342
3343 new_reg = lra_create_new_reg (Pmode, NULL_RTX, cl, "addr");
3344 /* addr => new_base. */
3345 lra_emit_move (new_reg, addr);
3346 *ad.inner = new_reg;
3347 }
55a2c322
VM
3348 *before = get_insns ();
3349 end_sequence ();
3350 return true;
3351}
3352
d9cf932c
VM
3353/* If CHECK_ONLY_P is false, do address reloads until it is necessary.
3354 Use process_address_1 as a helper function. Return true for any
3355 RTL changes.
3356
3357 If CHECK_ONLY_P is true, just check address correctness. Return
3358 false if the address correct. */
cc8849a1 3359static bool
d9cf932c
VM
3360process_address (int nop, bool check_only_p,
3361 rtx_insn **before, rtx_insn **after)
cc8849a1
VM
3362{
3363 bool res = false;
3364
d9cf932c
VM
3365 while (process_address_1 (nop, check_only_p, before, after))
3366 {
3367 if (check_only_p)
3368 return true;
3369 res = true;
3370 }
cc8849a1
VM
3371 return res;
3372}
3373
55a2c322
VM
3374/* Emit insns to reload VALUE into a new register. VALUE is an
3375 auto-increment or auto-decrement RTX whose operand is a register or
3376 memory location; so reloading involves incrementing that location.
3377 IN is either identical to VALUE, or some cheaper place to reload
3378 value being incremented/decremented from.
3379
3380 INC_AMOUNT is the number to increment or decrement by (always
3381 positive and ignored for POST_MODIFY/PRE_MODIFY).
3382
3383 Return pseudo containing the result. */
3384static rtx
3385emit_inc (enum reg_class new_rclass, rtx in, rtx value, int inc_amount)
3386{
3387 /* REG or MEM to be copied and incremented. */
3388 rtx incloc = XEXP (value, 0);
3389 /* Nonzero if increment after copying. */
3390 int post = (GET_CODE (value) == POST_DEC || GET_CODE (value) == POST_INC
3391 || GET_CODE (value) == POST_MODIFY);
cfa434f6 3392 rtx_insn *last;
55a2c322 3393 rtx inc;
647d790d 3394 rtx_insn *add_insn;
55a2c322
VM
3395 int code;
3396 rtx real_in = in == value ? incloc : in;
3397 rtx result;
3398 bool plus_p = true;
3399
3400 if (GET_CODE (value) == PRE_MODIFY || GET_CODE (value) == POST_MODIFY)
3401 {
3402 lra_assert (GET_CODE (XEXP (value, 1)) == PLUS
3403 || GET_CODE (XEXP (value, 1)) == MINUS);
3404 lra_assert (rtx_equal_p (XEXP (XEXP (value, 1), 0), XEXP (value, 0)));
3405 plus_p = GET_CODE (XEXP (value, 1)) == PLUS;
3406 inc = XEXP (XEXP (value, 1), 1);
3407 }
3408 else
3409 {
3410 if (GET_CODE (value) == PRE_DEC || GET_CODE (value) == POST_DEC)
3411 inc_amount = -inc_amount;
3412
3413 inc = GEN_INT (inc_amount);
3414 }
3415
3416 if (! post && REG_P (incloc))
3417 result = incloc;
3418 else
3419 result = lra_create_new_reg (GET_MODE (value), value, new_rclass,
3420 "INC/DEC result");
3421
3422 if (real_in != result)
3423 {
3424 /* First copy the location to the result register. */
3425 lra_assert (REG_P (result));
3426 emit_insn (gen_move_insn (result, real_in));
3427 }
3428
3429 /* We suppose that there are insns to add/sub with the constant
3430 increment permitted in {PRE/POST)_{DEC/INC/MODIFY}. At least the
3431 old reload worked with this assumption. If the assumption
3432 becomes wrong, we should use approach in function
3433 base_plus_disp_to_reg. */
3434 if (in == value)
3435 {
3436 /* See if we can directly increment INCLOC. */
3437 last = get_last_insn ();
3438 add_insn = emit_insn (plus_p
3439 ? gen_add2_insn (incloc, inc)
3440 : gen_sub2_insn (incloc, inc));
3441
3442 code = recog_memoized (add_insn);
3443 if (code >= 0)
3444 {
3445 if (! post && result != incloc)
3446 emit_insn (gen_move_insn (result, incloc));
3447 return result;
3448 }
3449 delete_insns_since (last);
3450 }
3451
3452 /* If couldn't do the increment directly, must increment in RESULT.
3453 The way we do this depends on whether this is pre- or
3454 post-increment. For pre-increment, copy INCLOC to the reload
3455 register, increment it there, then save back. */
3456 if (! post)
3457 {
3458 if (real_in != result)
3459 emit_insn (gen_move_insn (result, real_in));
3460 if (plus_p)
3461 emit_insn (gen_add2_insn (result, inc));
3462 else
3463 emit_insn (gen_sub2_insn (result, inc));
3464 if (result != incloc)
3465 emit_insn (gen_move_insn (incloc, result));
3466 }
3467 else
3468 {
3469 /* Post-increment.
3470
3471 Because this might be a jump insn or a compare, and because
3472 RESULT may not be available after the insn in an input
3473 reload, we must do the incrementing before the insn being
3474 reloaded for.
3475
3476 We have already copied IN to RESULT. Increment the copy in
3477 RESULT, save that back, then decrement RESULT so it has
3478 the original value. */
3479 if (plus_p)
3480 emit_insn (gen_add2_insn (result, inc));
3481 else
3482 emit_insn (gen_sub2_insn (result, inc));
3483 emit_insn (gen_move_insn (incloc, result));
3484 /* Restore non-modified value for the result. We prefer this
3485 way because it does not require an additional hard
3486 register. */
3487 if (plus_p)
3488 {
3489 if (CONST_INT_P (inc))
69db2d57
RS
3490 emit_insn (gen_add2_insn (result,
3491 gen_int_mode (-INTVAL (inc),
3492 GET_MODE (result))));
55a2c322
VM
3493 else
3494 emit_insn (gen_sub2_insn (result, inc));
3495 }
3496 else
3497 emit_insn (gen_add2_insn (result, inc));
3498 }
3499 return result;
3500}
3501
2c62cbaa
VM
3502/* Return true if the current move insn does not need processing as we
3503 already know that it satisfies its constraints. */
3504static bool
3505simple_move_p (void)
3506{
3507 rtx dest, src;
3508 enum reg_class dclass, sclass;
3509
3510 lra_assert (curr_insn_set != NULL_RTX);
3511 dest = SET_DEST (curr_insn_set);
3512 src = SET_SRC (curr_insn_set);
2008be40
SB
3513
3514 /* If the instruction has multiple sets we need to process it even if it
3515 is single_set. This can happen if one or more of the SETs are dead.
3516 See PR73650. */
3517 if (multiple_sets (curr_insn))
3518 return false;
3519
2c62cbaa
VM
3520 return ((dclass = get_op_class (dest)) != NO_REGS
3521 && (sclass = get_op_class (src)) != NO_REGS
3522 /* The backend guarantees that register moves of cost 2
3523 never need reloads. */
03b9b5ce 3524 && targetm.register_move_cost (GET_MODE (src), sclass, dclass) == 2);
2c62cbaa
VM
3525 }
3526
55a2c322
VM
3527/* Swap operands NOP and NOP + 1. */
3528static inline void
3529swap_operands (int nop)
3530{
fab27f52
MM
3531 std::swap (curr_operand_mode[nop], curr_operand_mode[nop + 1]);
3532 std::swap (original_subreg_reg_mode[nop], original_subreg_reg_mode[nop + 1]);
3533 std::swap (*curr_id->operand_loc[nop], *curr_id->operand_loc[nop + 1]);
987b67f1 3534 std::swap (equiv_substition_p[nop], equiv_substition_p[nop + 1]);
55a2c322
VM
3535 /* Swap the duplicates too. */
3536 lra_update_dup (curr_id, nop);
3537 lra_update_dup (curr_id, nop + 1);
3538}
3539
3540/* Main entry point of the constraint code: search the body of the
3541 current insn to choose the best alternative. It is mimicking insn
3542 alternative cost calculation model of former reload pass. That is
3543 because machine descriptions were written to use this model. This
3544 model can be changed in future. Make commutative operand exchange
3545 if it is chosen.
3546
d9cf932c
VM
3547 if CHECK_ONLY_P is false, do RTL changes to satisfy the
3548 constraints. Return true if any change happened during function
3549 call.
3550
3551 If CHECK_ONLY_P is true then don't do any transformation. Just
3552 check that the insn satisfies all constraints. If the insn does
3553 not satisfy any constraint, return true. */
55a2c322 3554static bool
d9cf932c 3555curr_insn_transform (bool check_only_p)
55a2c322
VM
3556{
3557 int i, j, k;
3558 int n_operands;
3559 int n_alternatives;
aefae0f1 3560 int n_outputs;
55a2c322
VM
3561 int commutative;
3562 signed char goal_alt_matched[MAX_RECOG_OPERANDS][MAX_RECOG_OPERANDS];
511dcace 3563 signed char match_inputs[MAX_RECOG_OPERANDS + 1];
aefae0f1 3564 signed char outputs[MAX_RECOG_OPERANDS + 1];
cfa434f6 3565 rtx_insn *before, *after;
55a2c322
VM
3566 bool alt_p = false;
3567 /* Flag that the insn has been changed through a transformation. */
3568 bool change_p;
3569 bool sec_mem_p;
3570#ifdef SECONDARY_MEMORY_NEEDED
3571 bool use_sec_mem_p;
3572#endif
3573 int max_regno_before;
3574 int reused_alternative_num;
3575
2c62cbaa
VM
3576 curr_insn_set = single_set (curr_insn);
3577 if (curr_insn_set != NULL_RTX && simple_move_p ())
3578 return false;
3579
55a2c322
VM
3580 no_input_reloads_p = no_output_reloads_p = false;
3581 goal_alt_number = -1;
2c62cbaa 3582 change_p = sec_mem_p = false;
55a2c322
VM
3583 /* JUMP_INSNs and CALL_INSNs are not allowed to have any output
3584 reloads; neither are insns that SET cc0. Insns that use CC0 are
3585 not allowed to have any input reloads. */
3586 if (JUMP_P (curr_insn) || CALL_P (curr_insn))
3587 no_output_reloads_p = true;
3588
058eb3b0 3589 if (HAVE_cc0 && reg_referenced_p (cc0_rtx, PATTERN (curr_insn)))
55a2c322 3590 no_input_reloads_p = true;
058eb3b0 3591 if (HAVE_cc0 && reg_set_p (cc0_rtx, PATTERN (curr_insn)))
55a2c322 3592 no_output_reloads_p = true;
55a2c322
VM
3593
3594 n_operands = curr_static_id->n_operands;
3595 n_alternatives = curr_static_id->n_alternatives;
3596
3597 /* Just return "no reloads" if insn has no operands with
3598 constraints. */
3599 if (n_operands == 0 || n_alternatives == 0)
3600 return false;
3601
3602 max_regno_before = max_reg_num ();
3603
3604 for (i = 0; i < n_operands; i++)
3605 {
3606 goal_alt_matched[i][0] = -1;
3607 goal_alt_matches[i] = -1;
3608 }
3609
3610 commutative = curr_static_id->commutative;
3611
3612 /* Now see what we need for pseudos that didn't get hard regs or got
3613 the wrong kind of hard reg. For this, we must consider all the
3614 operands together against the register constraints. */
3615
821b7577 3616 best_losers = best_overall = INT_MAX;
36ff9dfb 3617 best_reload_sum = 0;
55a2c322
VM
3618
3619 curr_swapped = false;
3620 goal_alt_swapped = false;
3621
d9cf932c
VM
3622 if (! check_only_p)
3623 /* Make equivalence substitution and memory subreg elimination
3624 before address processing because an address legitimacy can
3625 depend on memory mode. */
3626 for (i = 0; i < n_operands; i++)
3627 {
0b87be09 3628 rtx op, subst, old;
d9cf932c 3629 bool op_change_p = false;
0b87be09
VM
3630
3631 if (curr_static_id->operand[i].is_operator)
3632 continue;
d9cf932c 3633
0b87be09 3634 old = op = *curr_id->operand_loc[i];
d9cf932c
VM
3635 if (GET_CODE (old) == SUBREG)
3636 old = SUBREG_REG (old);
3637 subst = get_equiv_with_elimination (old, curr_insn);
895ff86f 3638 original_subreg_reg_mode[i] = VOIDmode;
987b67f1 3639 equiv_substition_p[i] = false;
d9cf932c
VM
3640 if (subst != old)
3641 {
987b67f1 3642 equiv_substition_p[i] = true;
d9cf932c
VM
3643 subst = copy_rtx (subst);
3644 lra_assert (REG_P (old));
895ff86f 3645 if (GET_CODE (op) != SUBREG)
d9cf932c 3646 *curr_id->operand_loc[i] = subst;
895ff86f
VM
3647 else
3648 {
3649 SUBREG_REG (op) = subst;
3650 if (GET_MODE (subst) == VOIDmode)
3651 original_subreg_reg_mode[i] = GET_MODE (old);
3652 }
d9cf932c
VM
3653 if (lra_dump_file != NULL)
3654 {
3655 fprintf (lra_dump_file,
3656 "Changing pseudo %d in operand %i of insn %u on equiv ",
3657 REGNO (old), i, INSN_UID (curr_insn));
3658 dump_value_slim (lra_dump_file, subst, 1);
895ff86f 3659 fprintf (lra_dump_file, "\n");
d9cf932c
VM
3660 }
3661 op_change_p = change_p = true;
3662 }
3663 if (simplify_operand_subreg (i, GET_MODE (old)) || op_change_p)
3664 {
3665 change_p = true;
3666 lra_update_dup (curr_id, i);
3667 }
3668 }
55a2c322
VM
3669
3670 /* Reload address registers and displacements. We do it before
3671 finding an alternative because of memory constraints. */
cfa434f6 3672 before = after = NULL;
55a2c322
VM
3673 for (i = 0; i < n_operands; i++)
3674 if (! curr_static_id->operand[i].is_operator
d9cf932c 3675 && process_address (i, check_only_p, &before, &after))
55a2c322 3676 {
d9cf932c
VM
3677 if (check_only_p)
3678 return true;
55a2c322
VM
3679 change_p = true;
3680 lra_update_dup (curr_id, i);
3681 }
cc8849a1 3682
55a2c322
VM
3683 if (change_p)
3684 /* If we've changed the instruction then any alternative that
3685 we chose previously may no longer be valid. */
3686 lra_set_used_insn_alternative (curr_insn, -1);
3687
d9cf932c 3688 if (! check_only_p && curr_insn_set != NULL_RTX
2c62cbaa
VM
3689 && check_and_process_move (&change_p, &sec_mem_p))
3690 return change_p;
3691
55a2c322
VM
3692 try_swapped:
3693
d9cf932c 3694 reused_alternative_num = check_only_p ? -1 : curr_id->used_insn_alternative;
55a2c322
VM
3695 if (lra_dump_file != NULL && reused_alternative_num >= 0)
3696 fprintf (lra_dump_file, "Reusing alternative %d for insn #%u\n",
3697 reused_alternative_num, INSN_UID (curr_insn));
3698
3699 if (process_alt_operands (reused_alternative_num))
3700 alt_p = true;
3701
d9cf932c
VM
3702 if (check_only_p)
3703 return ! alt_p || best_losers != 0;
3704
55a2c322
VM
3705 /* If insn is commutative (it's safe to exchange a certain pair of
3706 operands) then we need to try each alternative twice, the second
3707 time matching those two operands as if we had exchanged them. To
3708 do this, really exchange them in operands.
3709
3710 If we have just tried the alternatives the second time, return
3711 operands to normal and drop through. */
3712
3713 if (reused_alternative_num < 0 && commutative >= 0)
3714 {
3715 curr_swapped = !curr_swapped;
3716 if (curr_swapped)
3717 {
3718 swap_operands (commutative);
3719 goto try_swapped;
3720 }
3721 else
3722 swap_operands (commutative);
3723 }
3724
55a2c322
VM
3725 if (! alt_p && ! sec_mem_p)
3726 {
3727 /* No alternative works with reloads?? */
3728 if (INSN_CODE (curr_insn) >= 0)
3729 fatal_insn ("unable to generate reloads for:", curr_insn);
3730 error_for_asm (curr_insn,
3731 "inconsistent operand constraints in an %<asm%>");
3732 /* Avoid further trouble with this insn. */
3733 PATTERN (curr_insn) = gen_rtx_USE (VOIDmode, const0_rtx);
3734 lra_invalidate_insn_data (curr_insn);
3735 return true;
3736 }
3737
3738 /* If the best alternative is with operands 1 and 2 swapped, swap
3739 them. Update the operand numbers of any reloads already
3740 pushed. */
3741
3742 if (goal_alt_swapped)
3743 {
3744 if (lra_dump_file != NULL)
3745 fprintf (lra_dump_file, " Commutative operand exchange in insn %u\n",
3746 INSN_UID (curr_insn));
3747
3748 /* Swap the duplicates too. */
3749 swap_operands (commutative);
3750 change_p = true;
3751 }
3752
3753#ifdef SECONDARY_MEMORY_NEEDED
3754 /* Some target macros SECONDARY_MEMORY_NEEDED (e.g. x86) are defined
3755 too conservatively. So we use the secondary memory only if there
3756 is no any alternative without reloads. */
3757 use_sec_mem_p = false;
3758 if (! alt_p)
3759 use_sec_mem_p = true;
3760 else if (sec_mem_p)
3761 {
3762 for (i = 0; i < n_operands; i++)
3763 if (! goal_alt_win[i] && ! goal_alt_match_win[i])
3764 break;
3765 use_sec_mem_p = i < n_operands;
3766 }
3767
3768 if (use_sec_mem_p)
3769 {
e03dd765 3770 int in = -1, out = -1;
89d56d79 3771 rtx new_reg, src, dest, rld;
ef4bddc2 3772 machine_mode sec_mode, rld_mode;
55a2c322 3773
e03dd765
VM
3774 lra_assert (curr_insn_set != NULL_RTX && sec_mem_p);
3775 dest = SET_DEST (curr_insn_set);
3776 src = SET_SRC (curr_insn_set);
3777 for (i = 0; i < n_operands; i++)
3778 if (*curr_id->operand_loc[i] == dest)
3779 out = i;
3780 else if (*curr_id->operand_loc[i] == src)
3781 in = i;
3782 for (i = 0; i < curr_static_id->n_dups; i++)
3783 if (out < 0 && *curr_id->dup_loc[i] == dest)
3784 out = curr_static_id->dup_num[i];
3785 else if (in < 0 && *curr_id->dup_loc[i] == src)
3786 in = curr_static_id->dup_num[i];
3787 lra_assert (out >= 0 && in >= 0
3788 && curr_static_id->operand[out].type == OP_OUT
3789 && curr_static_id->operand[in].type == OP_IN);
66aa7879
VM
3790 rld = (GET_MODE_SIZE (GET_MODE (dest)) <= GET_MODE_SIZE (GET_MODE (src))
3791 ? dest : src);
3792 rld_mode = GET_MODE (rld);
55a2c322 3793#ifdef SECONDARY_MEMORY_NEEDED_MODE
66aa7879 3794 sec_mode = SECONDARY_MEMORY_NEEDED_MODE (rld_mode);
55a2c322 3795#else
66aa7879 3796 sec_mode = rld_mode;
55a2c322
VM
3797#endif
3798 new_reg = lra_create_new_reg (sec_mode, NULL_RTX,
3799 NO_REGS, "secondary");
3800 /* If the mode is changed, it should be wider. */
66aa7879 3801 lra_assert (GET_MODE_SIZE (sec_mode) >= GET_MODE_SIZE (rld_mode));
89d56d79
VM
3802 if (sec_mode != rld_mode)
3803 {
3804 /* If the target says specifically to use another mode for
3805 secondary memory moves we can not reuse the original
3806 insn. */
1ccd4874 3807 after = emit_spill_move (false, new_reg, dest);
cfa434f6 3808 lra_process_new_insns (curr_insn, NULL, after,
1ccd4874
VM
3809 "Inserting the sec. move");
3810 /* We may have non null BEFORE here (e.g. after address
3811 processing. */
3812 push_to_sequence (before);
3813 before = emit_spill_move (true, new_reg, src);
3814 emit_insn (before);
3815 before = get_insns ();
3816 end_sequence ();
cfa434f6 3817 lra_process_new_insns (curr_insn, before, NULL, "Changing on");
1ccd4874
VM
3818 lra_set_insn_deleted (curr_insn);
3819 }
89d56d79 3820 else if (dest == rld)
1ccd4874 3821 {
e03dd765
VM
3822 *curr_id->operand_loc[out] = new_reg;
3823 lra_update_dup (curr_id, out);
66aa7879 3824 after = emit_spill_move (false, new_reg, dest);
cfa434f6 3825 lra_process_new_insns (curr_insn, NULL, after,
66aa7879
VM
3826 "Inserting the sec. move");
3827 }
3828 else
3829 {
e03dd765
VM
3830 *curr_id->operand_loc[in] = new_reg;
3831 lra_update_dup (curr_id, in);
1ccd4874
VM
3832 /* See comments above. */
3833 push_to_sequence (before);
66aa7879 3834 before = emit_spill_move (true, new_reg, src);
1ccd4874
VM
3835 emit_insn (before);
3836 before = get_insns ();
3837 end_sequence ();
cfa434f6 3838 lra_process_new_insns (curr_insn, before, NULL,
66aa7879
VM
3839 "Inserting the sec. move");
3840 }
3841 lra_update_insn_regno_info (curr_insn);
55a2c322
VM
3842 return true;
3843 }
3844#endif
3845
3846 lra_assert (goal_alt_number >= 0);
3847 lra_set_used_insn_alternative (curr_insn, goal_alt_number);
3848
3849 if (lra_dump_file != NULL)
3850 {
3851 const char *p;
3852
3853 fprintf (lra_dump_file, " Choosing alt %d in insn %u:",
3854 goal_alt_number, INSN_UID (curr_insn));
3855 for (i = 0; i < n_operands; i++)
3856 {
3857 p = (curr_static_id->operand_alternative
3858 [goal_alt_number * n_operands + i].constraint);
3859 if (*p == '\0')
3860 continue;
3861 fprintf (lra_dump_file, " (%d) ", i);
3862 for (; *p != '\0' && *p != ',' && *p != '#'; p++)
3863 fputc (*p, lra_dump_file);
3864 }
36ff9dfb
VM
3865 if (INSN_CODE (curr_insn) >= 0
3866 && (p = get_insn_name (INSN_CODE (curr_insn))) != NULL)
3867 fprintf (lra_dump_file, " {%s}", p);
8d49e7ef
VM
3868 if (curr_id->sp_offset != 0)
3869 fprintf (lra_dump_file, " (sp_off=%" HOST_WIDE_INT_PRINT "d)",
3870 curr_id->sp_offset);
36ff9dfb 3871 fprintf (lra_dump_file, "\n");
55a2c322
VM
3872 }
3873
3874 /* Right now, for any pair of operands I and J that are required to
3875 match, with J < I, goal_alt_matches[I] is J. Add I to
3876 goal_alt_matched[J]. */
f4eafc30 3877
55a2c322
VM
3878 for (i = 0; i < n_operands; i++)
3879 if ((j = goal_alt_matches[i]) >= 0)
3880 {
3881 for (k = 0; goal_alt_matched[j][k] >= 0; k++)
3882 ;
3883 /* We allow matching one output operand and several input
3884 operands. */
3885 lra_assert (k == 0
3886 || (curr_static_id->operand[j].type == OP_OUT
3887 && curr_static_id->operand[i].type == OP_IN
3888 && (curr_static_id->operand
3889 [goal_alt_matched[j][0]].type == OP_IN)));
3890 goal_alt_matched[j][k] = i;
3891 goal_alt_matched[j][k + 1] = -1;
3892 }
f4eafc30 3893
55a2c322
VM
3894 for (i = 0; i < n_operands; i++)
3895 goal_alt_win[i] |= goal_alt_match_win[i];
f4eafc30 3896
55a2c322
VM
3897 /* Any constants that aren't allowed and can't be reloaded into
3898 registers are here changed into memory references. */
3899 for (i = 0; i < n_operands; i++)
3900 if (goal_alt_win[i])
3901 {
3902 int regno;
3903 enum reg_class new_class;
3904 rtx reg = *curr_id->operand_loc[i];
3905
3906 if (GET_CODE (reg) == SUBREG)
3907 reg = SUBREG_REG (reg);
f4eafc30 3908
55a2c322
VM
3909 if (REG_P (reg) && (regno = REGNO (reg)) >= FIRST_PSEUDO_REGISTER)
3910 {
3911 bool ok_p = in_class_p (reg, goal_alt[i], &new_class);
3912
3913 if (new_class != NO_REGS && get_reg_class (regno) != new_class)
3914 {
3915 lra_assert (ok_p);
a2d0d374 3916 lra_change_class (regno, new_class, " Change to", true);
55a2c322
VM
3917 }
3918 }
3919 }
3920 else
3921 {
3922 const char *constraint;
3923 char c;
3924 rtx op = *curr_id->operand_loc[i];
3925 rtx subreg = NULL_RTX;
ef4bddc2 3926 machine_mode mode = curr_operand_mode[i];
f4eafc30 3927
55a2c322
VM
3928 if (GET_CODE (op) == SUBREG)
3929 {
3930 subreg = op;
3931 op = SUBREG_REG (op);
3932 mode = GET_MODE (op);
3933 }
f4eafc30 3934
55a2c322
VM
3935 if (CONST_POOL_OK_P (mode, op)
3936 && ((targetm.preferred_reload_class
3937 (op, (enum reg_class) goal_alt[i]) == NO_REGS)
3938 || no_input_reloads_p))
3939 {
3940 rtx tem = force_const_mem (mode, op);
f4eafc30 3941
55a2c322
VM
3942 change_p = true;
3943 if (subreg != NULL_RTX)
3944 tem = gen_rtx_SUBREG (mode, tem, SUBREG_BYTE (subreg));
f4eafc30 3945
55a2c322
VM
3946 *curr_id->operand_loc[i] = tem;
3947 lra_update_dup (curr_id, i);
d9cf932c 3948 process_address (i, false, &before, &after);
f4eafc30 3949
55a2c322
VM
3950 /* If the alternative accepts constant pool refs directly
3951 there will be no reload needed at all. */
3952 if (subreg != NULL_RTX)
3953 continue;
3954 /* Skip alternatives before the one requested. */
3955 constraint = (curr_static_id->operand_alternative
3956 [goal_alt_number * n_operands + i].constraint);
3957 for (;
3958 (c = *constraint) && c != ',' && c != '#';
3959 constraint += CONSTRAINT_LEN (c, constraint))
3960 {
777e635f 3961 enum constraint_num cn = lookup_constraint (constraint);
9eb1ca69
VM
3962 if ((insn_extra_memory_constraint (cn)
3963 || insn_extra_special_memory_constraint (cn))
777e635f 3964 && satisfies_memory_constraint_p (tem, cn))
55a2c322 3965 break;
55a2c322
VM
3966 }
3967 if (c == '\0' || c == ',' || c == '#')
3968 continue;
f4eafc30 3969
55a2c322
VM
3970 goal_alt_win[i] = true;
3971 }
3972 }
f4eafc30 3973
aefae0f1
TP
3974 n_outputs = 0;
3975 outputs[0] = -1;
55a2c322
VM
3976 for (i = 0; i < n_operands; i++)
3977 {
2b778c9d
VM
3978 int regno;
3979 bool optional_p = false;
55a2c322
VM
3980 rtx old, new_reg;
3981 rtx op = *curr_id->operand_loc[i];
3982
3983 if (goal_alt_win[i])
3984 {
3985 if (goal_alt[i] == NO_REGS
3986 && REG_P (op)
3987 /* When we assign NO_REGS it means that we will not
3988 assign a hard register to the scratch pseudo by
3989 assigment pass and the scratch pseudo will be
3990 spilled. Spilled scratch pseudos are transformed
3991 back to scratches at the LRA end. */
6c051d60
VM
3992 && lra_former_scratch_operand_p (curr_insn, i)
3993 && lra_former_scratch_p (REGNO (op)))
deca73f5
VM
3994 {
3995 int regno = REGNO (op);
a2d0d374 3996 lra_change_class (regno, NO_REGS, " Change to", true);
deca73f5
VM
3997 if (lra_get_regno_hard_regno (regno) >= 0)
3998 /* We don't have to mark all insn affected by the
3999 spilled pseudo as there is only one such insn, the
4000 current one. */
4001 reg_renumber[regno] = -1;
6c051d60
VM
4002 lra_assert (bitmap_single_bit_set_p
4003 (&lra_reg_info[REGNO (op)].insn_bitmap));
deca73f5 4004 }
2b778c9d
VM
4005 /* We can do an optional reload. If the pseudo got a hard
4006 reg, we might improve the code through inheritance. If
4007 it does not get a hard register we coalesce memory/memory
4008 moves later. Ignore move insns to avoid cycling. */
b0681c9e 4009 if (! lra_simple_p
2b778c9d
VM
4010 && lra_undo_inheritance_iter < LRA_MAX_INHERITANCE_PASSES
4011 && goal_alt[i] != NO_REGS && REG_P (op)
4012 && (regno = REGNO (op)) >= FIRST_PSEUDO_REGISTER
a2d0d374 4013 && regno < new_regno_start
b0681c9e 4014 && ! lra_former_scratch_p (regno)
2b778c9d 4015 && reg_renumber[regno] < 0
3c954213
VM
4016 /* Check that the optional reload pseudo will be able to
4017 hold given mode value. */
4018 && ! (prohibited_class_reg_set_mode_p
4019 (goal_alt[i], reg_class_contents[goal_alt[i]],
4020 PSEUDO_REGNO_MODE (regno)))
2b778c9d 4021 && (curr_insn_set == NULL_RTX
b0681c9e
VM
4022 || !((REG_P (SET_SRC (curr_insn_set))
4023 || MEM_P (SET_SRC (curr_insn_set))
4024 || GET_CODE (SET_SRC (curr_insn_set)) == SUBREG)
4025 && (REG_P (SET_DEST (curr_insn_set))
4026 || MEM_P (SET_DEST (curr_insn_set))
4027 || GET_CODE (SET_DEST (curr_insn_set)) == SUBREG))))
2b778c9d
VM
4028 optional_p = true;
4029 else
4030 continue;
55a2c322 4031 }
f4eafc30 4032
55a2c322
VM
4033 /* Operands that match previous ones have already been handled. */
4034 if (goal_alt_matches[i] >= 0)
4035 continue;
4036
4037 /* We should not have an operand with a non-offsettable address
4038 appearing where an offsettable address will do. It also may
4039 be a case when the address should be special in other words
4040 not a general one (e.g. it needs no index reg). */
4041 if (goal_alt_matched[i][0] == -1 && goal_alt_offmemok[i] && MEM_P (op))
4042 {
4043 enum reg_class rclass;
4044 rtx *loc = &XEXP (op, 0);
4045 enum rtx_code code = GET_CODE (*loc);
4046
4047 push_to_sequence (before);
4048 rclass = base_reg_class (GET_MODE (op), MEM_ADDR_SPACE (op),
4049 MEM, SCRATCH);
4050 if (GET_RTX_CLASS (code) == RTX_AUTOINC)
4051 new_reg = emit_inc (rclass, *loc, *loc,
4052 /* This value does not matter for MODIFY. */
4053 GET_MODE_SIZE (GET_MODE (op)));
95921002 4054 else if (get_reload_reg (OP_IN, Pmode, *loc, rclass, FALSE,
55a2c322
VM
4055 "offsetable address", &new_reg))
4056 lra_emit_move (new_reg, *loc);
4057 before = get_insns ();
4058 end_sequence ();
4059 *loc = new_reg;
4060 lra_update_dup (curr_id, i);
4061 }
4062 else if (goal_alt_matched[i][0] == -1)
4063 {
ef4bddc2 4064 machine_mode mode;
55a2c322
VM
4065 rtx reg, *loc;
4066 int hard_regno, byte;
4067 enum op_type type = curr_static_id->operand[i].type;
4068
4069 loc = curr_id->operand_loc[i];
4070 mode = curr_operand_mode[i];
4071 if (GET_CODE (*loc) == SUBREG)
4072 {
4073 reg = SUBREG_REG (*loc);
4074 byte = SUBREG_BYTE (*loc);
4075 if (REG_P (reg)
4076 /* Strict_low_part requires reload the register not
4077 the sub-register. */
4078 && (curr_static_id->operand[i].strict_low
4079 || (GET_MODE_SIZE (mode)
4080 <= GET_MODE_SIZE (GET_MODE (reg))
4081 && (hard_regno
4082 = get_try_hard_regno (REGNO (reg))) >= 0
4083 && (simplify_subreg_regno
4084 (hard_regno,
4085 GET_MODE (reg), byte, mode) < 0)
4086 && (goal_alt[i] == NO_REGS
4087 || (simplify_subreg_regno
4088 (ira_class_hard_regs[goal_alt[i]][0],
4089 GET_MODE (reg), byte, mode) >= 0)))))
4090 {
8b8e23de
RS
4091 if (type == OP_OUT)
4092 type = OP_INOUT;
55a2c322
VM
4093 loc = &SUBREG_REG (*loc);
4094 mode = GET_MODE (*loc);
4095 }
4096 }
4097 old = *loc;
95921002
VM
4098 if (get_reload_reg (type, mode, old, goal_alt[i],
4099 loc != curr_id->operand_loc[i], "", &new_reg)
55a2c322
VM
4100 && type != OP_OUT)
4101 {
4102 push_to_sequence (before);
4103 lra_emit_move (new_reg, old);
4104 before = get_insns ();
4105 end_sequence ();
4106 }
4107 *loc = new_reg;
4108 if (type != OP_IN
4109 && find_reg_note (curr_insn, REG_UNUSED, old) == NULL_RTX)
4110 {
4111 start_sequence ();
4112 lra_emit_move (type == OP_INOUT ? copy_rtx (old) : old, new_reg);
4113 emit_insn (after);
4114 after = get_insns ();
4115 end_sequence ();
4116 *loc = new_reg;
4117 }
4118 for (j = 0; j < goal_alt_dont_inherit_ops_num; j++)
4119 if (goal_alt_dont_inherit_ops[j] == i)
4120 {
4121 lra_set_regno_unique_value (REGNO (new_reg));
4122 break;
4123 }
4124 lra_update_dup (curr_id, i);
4125 }
4126 else if (curr_static_id->operand[i].type == OP_IN
4127 && (curr_static_id->operand[goal_alt_matched[i][0]].type
4128 == OP_OUT))
4129 {
511dcace
VM
4130 /* generate reloads for input and matched outputs. */
4131 match_inputs[0] = i;
4132 match_inputs[1] = -1;
aefae0f1 4133 match_reload (goal_alt_matched[i][0], match_inputs, outputs,
599e1cf8
VM
4134 goal_alt[i], &before, &after,
4135 curr_static_id->operand_alternative
4136 [goal_alt_number * n_operands + goal_alt_matched[i][0]]
4137 .earlyclobber);
55a2c322
VM
4138 }
4139 else if (curr_static_id->operand[i].type == OP_OUT
4140 && (curr_static_id->operand[goal_alt_matched[i][0]].type
4141 == OP_IN))
511dcace 4142 /* Generate reloads for output and matched inputs. */
aefae0f1
TP
4143 match_reload (i, goal_alt_matched[i], outputs, goal_alt[i], &before,
4144 &after, curr_static_id->operand_alternative
4145 [goal_alt_number * n_operands + i].earlyclobber);
511dcace
VM
4146 else if (curr_static_id->operand[i].type == OP_IN
4147 && (curr_static_id->operand[goal_alt_matched[i][0]].type
4148 == OP_IN))
4149 {
4150 /* Generate reloads for matched inputs. */
4151 match_inputs[0] = i;
4152 for (j = 0; (k = goal_alt_matched[i][j]) >= 0; j++)
4153 match_inputs[j + 1] = k;
4154 match_inputs[j + 1] = -1;
aefae0f1
TP
4155 match_reload (-1, match_inputs, outputs, goal_alt[i], &before,
4156 &after, false);
511dcace 4157 }
55a2c322
VM
4158 else
4159 /* We must generate code in any case when function
4160 process_alt_operands decides that it is possible. */
4161 gcc_unreachable ();
aefae0f1
TP
4162
4163 /* Memorise processed outputs so that output remaining to be processed
4164 can avoid using the same register value (see match_reload). */
4165 if (curr_static_id->operand[i].type == OP_OUT)
4166 {
4167 outputs[n_outputs++] = i;
4168 outputs[n_outputs] = -1;
4169 }
4170
2b778c9d
VM
4171 if (optional_p)
4172 {
8a8330b7
VM
4173 rtx reg = op;
4174
4175 lra_assert (REG_P (reg));
4176 regno = REGNO (reg);
2b778c9d
VM
4177 op = *curr_id->operand_loc[i]; /* Substitution. */
4178 if (GET_CODE (op) == SUBREG)
4179 op = SUBREG_REG (op);
4180 gcc_assert (REG_P (op) && (int) REGNO (op) >= new_regno_start);
4181 bitmap_set_bit (&lra_optional_reload_pseudos, REGNO (op));
8a8330b7 4182 lra_reg_info[REGNO (op)].restore_rtx = reg;
2b778c9d
VM
4183 if (lra_dump_file != NULL)
4184 fprintf (lra_dump_file,
4185 " Making reload reg %d for reg %d optional\n",
4186 REGNO (op), regno);
4187 }
55a2c322
VM
4188 }
4189 if (before != NULL_RTX || after != NULL_RTX
4190 || max_regno_before != max_reg_num ())
4191 change_p = true;
4192 if (change_p)
4193 {
4194 lra_update_operator_dups (curr_id);
4195 /* Something changes -- process the insn. */
4196 lra_update_insn_regno_info (curr_insn);
4197 }
4198 lra_process_new_insns (curr_insn, before, after, "Inserting insn reload");
4199 return change_p;
4200}
4201
d9cf932c
VM
4202/* Return true if INSN satisfies all constraints. In other words, no
4203 reload insns are needed. */
4204bool
4205lra_constrain_insn (rtx_insn *insn)
4206{
4207 int saved_new_regno_start = new_regno_start;
4208 int saved_new_insn_uid_start = new_insn_uid_start;
4209 bool change_p;
4210
4211 curr_insn = insn;
4212 curr_id = lra_get_insn_recog_data (curr_insn);
4213 curr_static_id = curr_id->insn_static_data;
4214 new_insn_uid_start = get_max_uid ();
4215 new_regno_start = max_reg_num ();
4216 change_p = curr_insn_transform (true);
4217 new_regno_start = saved_new_regno_start;
4218 new_insn_uid_start = saved_new_insn_uid_start;
4219 return ! change_p;
4220}
4221
55a2c322
VM
4222/* Return true if X is in LIST. */
4223static bool
4224in_list_p (rtx x, rtx list)
4225{
4226 for (; list != NULL_RTX; list = XEXP (list, 1))
4227 if (XEXP (list, 0) == x)
4228 return true;
4229 return false;
4230}
4231
4232/* Return true if X contains an allocatable hard register (if
4233 HARD_REG_P) or a (spilled if SPILLED_P) pseudo. */
4234static bool
4235contains_reg_p (rtx x, bool hard_reg_p, bool spilled_p)
4236{
4237 int i, j;
4238 const char *fmt;
4239 enum rtx_code code;
4240
4241 code = GET_CODE (x);
4242 if (REG_P (x))
4243 {
4244 int regno = REGNO (x);
4245 HARD_REG_SET alloc_regs;
4246
4247 if (hard_reg_p)
4248 {
4249 if (regno >= FIRST_PSEUDO_REGISTER)
4250 regno = lra_get_regno_hard_regno (regno);
4251 if (regno < 0)
4252 return false;
4253 COMPL_HARD_REG_SET (alloc_regs, lra_no_alloc_regs);
4254 return overlaps_hard_reg_set_p (alloc_regs, GET_MODE (x), regno);
4255 }
4256 else
4257 {
4258 if (regno < FIRST_PSEUDO_REGISTER)
4259 return false;
4260 if (! spilled_p)
4261 return true;
4262 return lra_get_regno_hard_regno (regno) < 0;
4263 }
4264 }
4265 fmt = GET_RTX_FORMAT (code);
4266 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4267 {
4268 if (fmt[i] == 'e')
4269 {
4270 if (contains_reg_p (XEXP (x, i), hard_reg_p, spilled_p))
4271 return true;
4272 }
4273 else if (fmt[i] == 'E')
4274 {
4275 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
4276 if (contains_reg_p (XVECEXP (x, i, j), hard_reg_p, spilled_p))
4277 return true;
4278 }
4279 }
4280 return false;
4281}
4282
28430b2e
VM
4283/* Process all regs in location *LOC and change them on equivalent
4284 substitution. Return true if any change was done. */
55a2c322 4285static bool
28430b2e 4286loc_equivalence_change_p (rtx *loc)
55a2c322
VM
4287{
4288 rtx subst, reg, x = *loc;
4289 bool result = false;
4290 enum rtx_code code = GET_CODE (x);
4291 const char *fmt;
4292 int i, j;
4293
4294 if (code == SUBREG)
4295 {
4296 reg = SUBREG_REG (x);
8d49e7ef 4297 if ((subst = get_equiv_with_elimination (reg, curr_insn)) != reg
55a2c322
VM
4298 && GET_MODE (subst) == VOIDmode)
4299 {
4300 /* We cannot reload debug location. Simplify subreg here
4301 while we know the inner mode. */
4302 *loc = simplify_gen_subreg (GET_MODE (x), subst,
4303 GET_MODE (reg), SUBREG_BYTE (x));
4304 return true;
4305 }
4306 }
8d49e7ef 4307 if (code == REG && (subst = get_equiv_with_elimination (x, curr_insn)) != x)
55a2c322
VM
4308 {
4309 *loc = subst;
4310 return true;
4311 }
4312
4313 /* Scan all the operand sub-expressions. */
4314 fmt = GET_RTX_FORMAT (code);
4315 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4316 {
4317 if (fmt[i] == 'e')
28430b2e 4318 result = loc_equivalence_change_p (&XEXP (x, i)) || result;
55a2c322
VM
4319 else if (fmt[i] == 'E')
4320 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
4321 result
28430b2e 4322 = loc_equivalence_change_p (&XVECEXP (x, i, j)) || result;
55a2c322
VM
4323 }
4324 return result;
4325}
4326
d0608e59 4327/* Similar to loc_equivalence_change_p, but for use as
4c2b2d79
VM
4328 simplify_replace_fn_rtx callback. DATA is insn for which the
4329 elimination is done. If it null we don't do the elimination. */
d0608e59 4330static rtx
4c2b2d79 4331loc_equivalence_callback (rtx loc, const_rtx, void *data)
d0608e59
JJ
4332{
4333 if (!REG_P (loc))
4334 return NULL_RTX;
4335
4c2b2d79 4336 rtx subst = (data == NULL
cfa434f6 4337 ? get_equiv (loc) : get_equiv_with_elimination (loc, (rtx_insn *) data));
d0608e59
JJ
4338 if (subst != loc)
4339 return subst;
4340
4341 return NULL_RTX;
4342}
4343
55a2c322
VM
4344/* Maximum number of generated reload insns per an insn. It is for
4345 preventing this pass cycling in a bug case. */
4346#define MAX_RELOAD_INSNS_NUMBER LRA_MAX_INSN_RELOADS
4347
4348/* The current iteration number of this LRA pass. */
4349int lra_constraint_iter;
4350
55a2c322
VM
4351/* True if we substituted equiv which needs checking register
4352 allocation correctness because the equivalent value contains
4353 allocatable hard registers or when we restore multi-register
4354 pseudo. */
4355bool lra_risky_transformations_p;
4356
4357/* Return true if REGNO is referenced in more than one block. */
4358static bool
4359multi_block_pseudo_p (int regno)
4360{
4361 basic_block bb = NULL;
4362 unsigned int uid;
4363 bitmap_iterator bi;
f4eafc30 4364
55a2c322
VM
4365 if (regno < FIRST_PSEUDO_REGISTER)
4366 return false;
f4eafc30 4367
55a2c322
VM
4368 EXECUTE_IF_SET_IN_BITMAP (&lra_reg_info[regno].insn_bitmap, 0, uid, bi)
4369 if (bb == NULL)
4370 bb = BLOCK_FOR_INSN (lra_insn_recog_data[uid]->insn);
4371 else if (BLOCK_FOR_INSN (lra_insn_recog_data[uid]->insn) != bb)
4372 return true;
4373 return false;
4374}
4375
1966c91b
VM
4376/* Return true if LIST contains a deleted insn. */
4377static bool
0cc97fc5 4378contains_deleted_insn_p (rtx_insn_list *list)
1966c91b 4379{
0cc97fc5
DM
4380 for (; list != NULL_RTX; list = list->next ())
4381 if (NOTE_P (list->insn ())
4382 && NOTE_KIND (list->insn ()) == NOTE_INSN_DELETED)
1966c91b
VM
4383 return true;
4384 return false;
4385}
4386
55a2c322
VM
4387/* Return true if X contains a pseudo dying in INSN. */
4388static bool
605780f6 4389dead_pseudo_p (rtx x, rtx_insn *insn)
55a2c322
VM
4390{
4391 int i, j;
4392 const char *fmt;
4393 enum rtx_code code;
4394
4395 if (REG_P (x))
4396 return (insn != NULL_RTX
4397 && find_regno_note (insn, REG_DEAD, REGNO (x)) != NULL_RTX);
4398 code = GET_CODE (x);
4399 fmt = GET_RTX_FORMAT (code);
4400 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4401 {
4402 if (fmt[i] == 'e')
4403 {
4404 if (dead_pseudo_p (XEXP (x, i), insn))
4405 return true;
4406 }
4407 else if (fmt[i] == 'E')
4408 {
4409 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
4410 if (dead_pseudo_p (XVECEXP (x, i, j), insn))
4411 return true;
4412 }
4413 }
4414 return false;
4415}
4416
4417/* Return true if INSN contains a dying pseudo in INSN right hand
4418 side. */
4419static bool
e8a54173 4420insn_rhs_dead_pseudo_p (rtx_insn *insn)
55a2c322
VM
4421{
4422 rtx set = single_set (insn);
4423
4424 gcc_assert (set != NULL);
4425 return dead_pseudo_p (SET_SRC (set), insn);
4426}
4427
4428/* Return true if any init insn of REGNO contains a dying pseudo in
4429 insn right hand side. */
4430static bool
4431init_insn_rhs_dead_pseudo_p (int regno)
4432{
0cc97fc5 4433 rtx_insn_list *insns = ira_reg_equiv[regno].init_insns;
55a2c322
VM
4434
4435 if (insns == NULL)
4436 return false;
0cc97fc5
DM
4437 for (; insns != NULL_RTX; insns = insns->next ())
4438 if (insn_rhs_dead_pseudo_p (insns->insn ()))
55a2c322
VM
4439 return true;
4440 return false;
4441}
4442
01e54ef8
VM
4443/* Return TRUE if REGNO has a reverse equivalence. The equivalence is
4444 reverse only if we have one init insn with given REGNO as a
4445 source. */
4446static bool
4447reverse_equiv_p (int regno)
4448{
0cc97fc5
DM
4449 rtx_insn_list *insns = ira_reg_equiv[regno].init_insns;
4450 rtx set;
01e54ef8 4451
0cc97fc5 4452 if (insns == NULL)
01e54ef8 4453 return false;
0cc97fc5
DM
4454 if (! INSN_P (insns->insn ())
4455 || insns->next () != NULL)
01e54ef8 4456 return false;
0cc97fc5 4457 if ((set = single_set (insns->insn ())) == NULL_RTX)
01e54ef8
VM
4458 return false;
4459 return REG_P (SET_SRC (set)) && (int) REGNO (SET_SRC (set)) == regno;
4460}
4461
4462/* Return TRUE if REGNO was reloaded in an equivalence init insn. We
4463 call this function only for non-reverse equivalence. */
4464static bool
4465contains_reloaded_insn_p (int regno)
4466{
4467 rtx set;
0cc97fc5 4468 rtx_insn_list *list = ira_reg_equiv[regno].init_insns;
01e54ef8 4469
0cc97fc5
DM
4470 for (; list != NULL; list = list->next ())
4471 if ((set = single_set (list->insn ())) == NULL_RTX
01e54ef8
VM
4472 || ! REG_P (SET_DEST (set))
4473 || (int) REGNO (SET_DEST (set)) != regno)
4474 return true;
4475 return false;
4476}
4477
55a2c322
VM
4478/* Entry function of LRA constraint pass. Return true if the
4479 constraint pass did change the code. */
4480bool
4481lra_constraints (bool first_p)
4482{
4483 bool changed_p;
4484 int i, hard_regno, new_insns_num;
6cd1dd26
VM
4485 unsigned int min_len, new_min_len, uid;
4486 rtx set, x, reg, dest_reg;
55a2c322 4487 basic_block last_bb;
6cd1dd26
VM
4488 bitmap_head equiv_insn_bitmap;
4489 bitmap_iterator bi;
55a2c322
VM
4490
4491 lra_constraint_iter++;
4492 if (lra_dump_file != NULL)
4493 fprintf (lra_dump_file, "\n********** Local #%d: **********\n\n",
4494 lra_constraint_iter);
55a2c322 4495 changed_p = false;
bcb21886
KY
4496 if (pic_offset_table_rtx
4497 && REGNO (pic_offset_table_rtx) >= FIRST_PSEUDO_REGISTER)
4498 lra_risky_transformations_p = true;
4499 else
4500 lra_risky_transformations_p = false;
55a2c322
VM
4501 new_insn_uid_start = get_max_uid ();
4502 new_regno_start = first_p ? lra_constraint_new_regno_start : max_reg_num ();
8d49e7ef
VM
4503 /* Mark used hard regs for target stack size calulations. */
4504 for (i = FIRST_PSEUDO_REGISTER; i < new_regno_start; i++)
4505 if (lra_reg_info[i].nrefs != 0
4506 && (hard_regno = lra_get_regno_hard_regno (i)) >= 0)
4507 {
4508 int j, nregs;
4509
4510 nregs = hard_regno_nregs[hard_regno][lra_reg_info[i].biggest_mode];
4511 for (j = 0; j < nregs; j++)
4512 df_set_regs_ever_live (hard_regno + j, true);
4513 }
4514 /* Do elimination before the equivalence processing as we can spill
4515 some pseudos during elimination. */
4516 lra_eliminate (false, first_p);
6cd1dd26 4517 bitmap_initialize (&equiv_insn_bitmap, &reg_obstack);
55a2c322
VM
4518 for (i = FIRST_PSEUDO_REGISTER; i < new_regno_start; i++)
4519 if (lra_reg_info[i].nrefs != 0)
4520 {
4521 ira_reg_equiv[i].profitable_p = true;
6cd1dd26 4522 reg = regno_reg_rtx[i];
8d49e7ef 4523 if (lra_get_regno_hard_regno (i) < 0 && (x = get_equiv (reg)) != reg)
55a2c322
VM
4524 {
4525 bool pseudo_p = contains_reg_p (x, false, false);
55a2c322 4526
1966c91b
VM
4527 /* After RTL transformation, we can not guarantee that
4528 pseudo in the substitution was not reloaded which might
4529 make equivalence invalid. For example, in reverse
4530 equiv of p0
4531
4532 p0 <- ...
4533 ...
4534 equiv_mem <- p0
4535
4536 the memory address register was reloaded before the 2nd
4537 insn. */
4538 if ((! first_p && pseudo_p)
4539 /* We don't use DF for compilation speed sake. So it
4540 is problematic to update live info when we use an
4541 equivalence containing pseudos in more than one
4542 BB. */
4543 || (pseudo_p && multi_block_pseudo_p (i))
4544 /* If an init insn was deleted for some reason, cancel
4545 the equiv. We could update the equiv insns after
4546 transformations including an equiv insn deletion
4547 but it is not worthy as such cases are extremely
4548 rare. */
4549 || contains_deleted_insn_p (ira_reg_equiv[i].init_insns)
55a2c322
VM
4550 /* If it is not a reverse equivalence, we check that a
4551 pseudo in rhs of the init insn is not dying in the
4552 insn. Otherwise, the live info at the beginning of
4553 the corresponding BB might be wrong after we
4554 removed the insn. When the equiv can be a
4555 constant, the right hand side of the init insn can
4556 be a pseudo. */
01e54ef8
VM
4557 || (! reverse_equiv_p (i)
4558 && (init_insn_rhs_dead_pseudo_p (i)
4559 /* If we reloaded the pseudo in an equivalence
4560 init insn, we can not remove the equiv init
4561 insns and the init insns might write into
4562 const memory in this case. */
4563 || contains_reloaded_insn_p (i)))
b28ece32
VM
4564 /* Prevent access beyond equivalent memory for
4565 paradoxical subregs. */
4566 || (MEM_P (x)
4567 && (GET_MODE_SIZE (lra_reg_info[i].biggest_mode)
bcb21886
KY
4568 > GET_MODE_SIZE (GET_MODE (x))))
4569 || (pic_offset_table_rtx
4570 && ((CONST_POOL_OK_P (PSEUDO_REGNO_MODE (i), x)
4571 && (targetm.preferred_reload_class
4572 (x, lra_get_allocno_class (i)) == NO_REGS))
b81a2f0d 4573 || contains_symbol_ref_p (x))))
55a2c322 4574 ira_reg_equiv[i].defined_p = false;
55a2c322
VM
4575 if (contains_reg_p (x, false, true))
4576 ira_reg_equiv[i].profitable_p = false;
8d49e7ef 4577 if (get_equiv (reg) != reg)
6cd1dd26 4578 bitmap_ior_into (&equiv_insn_bitmap, &lra_reg_info[i].insn_bitmap);
55a2c322
VM
4579 }
4580 }
4c2b2d79
VM
4581 for (i = FIRST_PSEUDO_REGISTER; i < new_regno_start; i++)
4582 update_equiv (i);
6cd1dd26
VM
4583 /* We should add all insns containing pseudos which should be
4584 substituted by their equivalences. */
4585 EXECUTE_IF_SET_IN_BITMAP (&equiv_insn_bitmap, 0, uid, bi)
4586 lra_push_insn_by_uid (uid);
55a2c322
VM
4587 min_len = lra_insn_stack_length ();
4588 new_insns_num = 0;
4589 last_bb = NULL;
4590 changed_p = false;
4591 while ((new_min_len = lra_insn_stack_length ()) != 0)
4592 {
4593 curr_insn = lra_pop_insn ();
4594 --new_min_len;
f4eafc30 4595 curr_bb = BLOCK_FOR_INSN (curr_insn);
55a2c322
VM
4596 if (curr_bb != last_bb)
4597 {
4598 last_bb = curr_bb;
4599 bb_reload_num = lra_curr_reload_num;
4600 }
4601 if (min_len > new_min_len)
4602 {
4603 min_len = new_min_len;
4604 new_insns_num = 0;
4605 }
4606 if (new_insns_num > MAX_RELOAD_INSNS_NUMBER)
4607 internal_error
4608 ("Max. number of generated reload insns per insn is achieved (%d)\n",
4609 MAX_RELOAD_INSNS_NUMBER);
4610 new_insns_num++;
4611 if (DEBUG_INSN_P (curr_insn))
4612 {
4613 /* We need to check equivalence in debug insn and change
4614 pseudo to the equivalent value if necessary. */
4615 curr_id = lra_get_insn_recog_data (curr_insn);
d0608e59 4616 if (bitmap_bit_p (&equiv_insn_bitmap, INSN_UID (curr_insn)))
4d64ce5c 4617 {
d0608e59
JJ
4618 rtx old = *curr_id->operand_loc[0];
4619 *curr_id->operand_loc[0]
4620 = simplify_replace_fn_rtx (old, NULL_RTX,
4c2b2d79 4621 loc_equivalence_callback, curr_insn);
d0608e59
JJ
4622 if (old != *curr_id->operand_loc[0])
4623 {
4624 lra_update_insn_regno_info (curr_insn);
4625 changed_p = true;
4626 }
4d64ce5c 4627 }
55a2c322
VM
4628 }
4629 else if (INSN_P (curr_insn))
4630 {
4631 if ((set = single_set (curr_insn)) != NULL_RTX)
4632 {
4633 dest_reg = SET_DEST (set);
4634 /* The equivalence pseudo could be set up as SUBREG in a
4635 case when it is a call restore insn in a mode
4636 different from the pseudo mode. */
4637 if (GET_CODE (dest_reg) == SUBREG)
4638 dest_reg = SUBREG_REG (dest_reg);
4639 if ((REG_P (dest_reg)
8d49e7ef 4640 && (x = get_equiv (dest_reg)) != dest_reg
55a2c322
VM
4641 /* Remove insns which set up a pseudo whose value
4642 can not be changed. Such insns might be not in
4643 init_insns because we don't update equiv data
4644 during insn transformations.
5a107a0f 4645
55a2c322
VM
4646 As an example, let suppose that a pseudo got
4647 hard register and on the 1st pass was not
4648 changed to equivalent constant. We generate an
4649 additional insn setting up the pseudo because of
4650 secondary memory movement. Then the pseudo is
4651 spilled and we use the equiv constant. In this
4652 case we should remove the additional insn and
f6937e32 4653 this insn is not init_insns list. */
55a2c322 4654 && (! MEM_P (x) || MEM_READONLY_P (x)
f6937e32
VM
4655 /* Check that this is actually an insn setting
4656 up the equivalence. */
55a2c322
VM
4657 || in_list_p (curr_insn,
4658 ira_reg_equiv
4659 [REGNO (dest_reg)].init_insns)))
8d49e7ef 4660 || (((x = get_equiv (SET_SRC (set))) != SET_SRC (set))
55a2c322
VM
4661 && in_list_p (curr_insn,
4662 ira_reg_equiv
4663 [REGNO (SET_SRC (set))].init_insns)))
4664 {
4665 /* This is equiv init insn of pseudo which did not get a
4666 hard register -- remove the insn. */
4667 if (lra_dump_file != NULL)
4668 {
4669 fprintf (lra_dump_file,
4670 " Removing equiv init insn %i (freq=%d)\n",
4671 INSN_UID (curr_insn),
fef37404 4672 REG_FREQ_FROM_BB (BLOCK_FOR_INSN (curr_insn)));
cfbeaedf 4673 dump_insn_slim (lra_dump_file, curr_insn);
55a2c322
VM
4674 }
4675 if (contains_reg_p (x, true, false))
4676 lra_risky_transformations_p = true;
4677 lra_set_insn_deleted (curr_insn);
4678 continue;
4679 }
4680 }
4681 curr_id = lra_get_insn_recog_data (curr_insn);
4682 curr_static_id = curr_id->insn_static_data;
4683 init_curr_insn_input_reloads ();
4684 init_curr_operand_mode ();
d9cf932c 4685 if (curr_insn_transform (false))
55a2c322 4686 changed_p = true;
28430b2e
VM
4687 /* Check non-transformed insns too for equiv change as USE
4688 or CLOBBER don't need reloads but can contain pseudos
4689 being changed on their equivalences. */
4690 else if (bitmap_bit_p (&equiv_insn_bitmap, INSN_UID (curr_insn))
4691 && loc_equivalence_change_p (&PATTERN (curr_insn)))
4692 {
4693 lra_update_insn_regno_info (curr_insn);
4694 changed_p = true;
4695 }
55a2c322
VM
4696 }
4697 }
28430b2e 4698 bitmap_clear (&equiv_insn_bitmap);
55a2c322
VM
4699 /* If we used a new hard regno, changed_p should be true because the
4700 hard reg is assigned to a new pseudo. */
b2b29377 4701 if (flag_checking && !changed_p)
55a2c322
VM
4702 {
4703 for (i = FIRST_PSEUDO_REGISTER; i < new_regno_start; i++)
4704 if (lra_reg_info[i].nrefs != 0
4705 && (hard_regno = lra_get_regno_hard_regno (i)) >= 0)
4706 {
4707 int j, nregs = hard_regno_nregs[hard_regno][PSEUDO_REGNO_MODE (i)];
f4eafc30 4708
55a2c322
VM
4709 for (j = 0; j < nregs; j++)
4710 lra_assert (df_regs_ever_live_p (hard_regno + j));
4711 }
4712 }
55a2c322
VM
4713 return changed_p;
4714}
4715
8a8330b7
VM
4716static void initiate_invariants (void);
4717static void finish_invariants (void);
4718
55a2c322
VM
4719/* Initiate the LRA constraint pass. It is done once per
4720 function. */
4721void
4722lra_constraints_init (void)
4723{
8a8330b7 4724 initiate_invariants ();
55a2c322
VM
4725}
4726
4727/* Finalize the LRA constraint pass. It is done once per
4728 function. */
4729void
4730lra_constraints_finish (void)
4731{
8a8330b7
VM
4732 finish_invariants ();
4733}
4734
4735\f
4736
4737/* Structure describes invariants for ineheritance. */
4738struct invariant
4739{
4740 /* The order number of the invariant. */
4741 int num;
4742 /* The invariant RTX. */
4743 rtx invariant_rtx;
4744 /* The origin insn of the invariant. */
4745 rtx_insn *insn;
4746};
4747
4748typedef struct invariant invariant_t;
4749typedef invariant_t *invariant_ptr_t;
4750typedef const invariant_t *const_invariant_ptr_t;
4751
4752/* Pointer to the inheritance invariants. */
4753static vec<invariant_ptr_t> invariants;
4754
4755/* Allocation pool for the invariants. */
4756static object_allocator<struct invariant> *invariants_pool;
4757
4758/* Hash table for the invariants. */
4759static htab_t invariant_table;
4760
4761/* Hash function for INVARIANT. */
4762static hashval_t
4763invariant_hash (const void *invariant)
4764{
4765 rtx inv = ((const_invariant_ptr_t) invariant)->invariant_rtx;
4766 return lra_rtx_hash (inv);
4767}
4768
4769/* Equal function for invariants INVARIANT1 and INVARIANT2. */
4770static int
4771invariant_eq_p (const void *invariant1, const void *invariant2)
4772{
4773 rtx inv1 = ((const_invariant_ptr_t) invariant1)->invariant_rtx;
4774 rtx inv2 = ((const_invariant_ptr_t) invariant2)->invariant_rtx;
4775
4776 return rtx_equal_p (inv1, inv2);
4777}
4778
4779/* Insert INVARIANT_RTX into the table if it is not there yet. Return
4780 invariant which is in the table. */
4781static invariant_ptr_t
4782insert_invariant (rtx invariant_rtx)
4783{
4784 void **entry_ptr;
4785 invariant_t invariant;
4786 invariant_ptr_t invariant_ptr;
4787
4788 invariant.invariant_rtx = invariant_rtx;
4789 entry_ptr = htab_find_slot (invariant_table, &invariant, INSERT);
4790 if (*entry_ptr == NULL)
4791 {
4792 invariant_ptr = invariants_pool->allocate ();
4793 invariant_ptr->invariant_rtx = invariant_rtx;
4794 invariant_ptr->insn = NULL;
4795 invariants.safe_push (invariant_ptr);
4796 *entry_ptr = (void *) invariant_ptr;
4797 }
4798 return (invariant_ptr_t) *entry_ptr;
4799}
4800
4801/* Initiate the invariant table. */
4802static void
4803initiate_invariants (void)
4804{
4805 invariants.create (100);
4806 invariants_pool = new object_allocator<struct invariant> ("Inheritance invariants");
4807 invariant_table = htab_create (100, invariant_hash, invariant_eq_p, NULL);
4808}
4809
4810/* Finish the invariant table. */
4811static void
4812finish_invariants (void)
4813{
4814 htab_delete (invariant_table);
4815 delete invariants_pool;
4816 invariants.release ();
4817}
4818
4819/* Make the invariant table empty. */
4820static void
4821clear_invariants (void)
4822{
4823 htab_empty (invariant_table);
4824 invariants_pool->release ();
4825 invariants.truncate (0);
55a2c322
VM
4826}
4827
4828\f
4829
4830/* This page contains code to do inheritance/split
4831 transformations. */
4832
4833/* Number of reloads passed so far in current EBB. */
4834static int reloads_num;
4835
4836/* Number of calls passed so far in current EBB. */
4837static int calls_num;
4838
4839/* Current reload pseudo check for validity of elements in
4840 USAGE_INSNS. */
4841static int curr_usage_insns_check;
4842
4843/* Info about last usage of registers in EBB to do inheritance/split
4844 transformation. Inheritance transformation is done from a spilled
4845 pseudo and split transformations from a hard register or a pseudo
4846 assigned to a hard register. */
4847struct usage_insns
4848{
4849 /* If the value is equal to CURR_USAGE_INSNS_CHECK, then the member
4850 value INSNS is valid. The insns is chain of optional debug insns
1ccd4874
VM
4851 and a finishing non-debug insn using the corresponding reg. The
4852 value is also used to mark the registers which are set up in the
4853 current insn. The negated insn uid is used for this. */
55a2c322
VM
4854 int check;
4855 /* Value of global reloads_num at the last insn in INSNS. */
4856 int reloads_num;
4857 /* Value of global reloads_nums at the last insn in INSNS. */
4858 int calls_num;
4859 /* It can be true only for splitting. And it means that the restore
4860 insn should be put after insn given by the following member. */
4861 bool after_p;
4862 /* Next insns in the current EBB which use the original reg and the
4863 original reg value is not changed between the current insn and
4864 the next insns. In order words, e.g. for inheritance, if we need
4865 to use the original reg value again in the next insns we can try
4866 to use the value in a hard register from a reload insn of the
4867 current insn. */
4868 rtx insns;
4869};
4870
4871/* Map: regno -> corresponding pseudo usage insns. */
4872static struct usage_insns *usage_insns;
4873
4874static void
1476d1bd 4875setup_next_usage_insn (int regno, rtx insn, int reloads_num, bool after_p)
55a2c322
VM
4876{
4877 usage_insns[regno].check = curr_usage_insns_check;
4878 usage_insns[regno].insns = insn;
4879 usage_insns[regno].reloads_num = reloads_num;
4880 usage_insns[regno].calls_num = calls_num;
4881 usage_insns[regno].after_p = after_p;
4882}
4883
4884/* The function is used to form list REGNO usages which consists of
4885 optional debug insns finished by a non-debug insn using REGNO.
4886 RELOADS_NUM is current number of reload insns processed so far. */
4887static void
767dc529 4888add_next_usage_insn (int regno, rtx_insn *insn, int reloads_num)
55a2c322
VM
4889{
4890 rtx next_usage_insns;
f4eafc30 4891
55a2c322
VM
4892 if (usage_insns[regno].check == curr_usage_insns_check
4893 && (next_usage_insns = usage_insns[regno].insns) != NULL_RTX
4894 && DEBUG_INSN_P (insn))
4895 {
4896 /* Check that we did not add the debug insn yet. */
4897 if (next_usage_insns != insn
4898 && (GET_CODE (next_usage_insns) != INSN_LIST
4899 || XEXP (next_usage_insns, 0) != insn))
4900 usage_insns[regno].insns = gen_rtx_INSN_LIST (VOIDmode, insn,
4901 next_usage_insns);
4902 }
4903 else if (NONDEBUG_INSN_P (insn))
4904 setup_next_usage_insn (regno, insn, reloads_num, false);
4905 else
4906 usage_insns[regno].check = 0;
4907}
f4eafc30 4908
bc3591eb 4909/* Return first non-debug insn in list USAGE_INSNS. */
e8a54173 4910static rtx_insn *
bc3591eb
VM
4911skip_usage_debug_insns (rtx usage_insns)
4912{
4913 rtx insn;
4914
4915 /* Skip debug insns. */
4916 for (insn = usage_insns;
4917 insn != NULL_RTX && GET_CODE (insn) == INSN_LIST;
4918 insn = XEXP (insn, 1))
4919 ;
e8a54173 4920 return safe_as_a <rtx_insn *> (insn);
bc3591eb
VM
4921}
4922
4923/* Return true if we need secondary memory moves for insn in
4924 USAGE_INSNS after inserting inherited pseudo of class INHER_CL
4925 into the insn. */
4926static bool
fbebbadd
JR
4927check_secondary_memory_needed_p (enum reg_class inher_cl ATTRIBUTE_UNUSED,
4928 rtx usage_insns ATTRIBUTE_UNUSED)
bc3591eb
VM
4929{
4930#ifndef SECONDARY_MEMORY_NEEDED
4931 return false;
4932#else
e8a54173
DM
4933 rtx_insn *insn;
4934 rtx set, dest;
bc3591eb
VM
4935 enum reg_class cl;
4936
4937 if (inher_cl == ALL_REGS
4938 || (insn = skip_usage_debug_insns (usage_insns)) == NULL_RTX)
4939 return false;
4940 lra_assert (INSN_P (insn));
4941 if ((set = single_set (insn)) == NULL_RTX || ! REG_P (SET_DEST (set)))
4942 return false;
4943 dest = SET_DEST (set);
4944 if (! REG_P (dest))
4945 return false;
4946 lra_assert (inher_cl != NO_REGS);
4947 cl = get_reg_class (REGNO (dest));
4948 return (cl != NO_REGS && cl != ALL_REGS
4949 && SECONDARY_MEMORY_NEEDED (inher_cl, cl, GET_MODE (dest)));
4950#endif
4951}
4952
55a2c322
VM
4953/* Registers involved in inheritance/split in the current EBB
4954 (inheritance/split pseudos and original registers). */
4955static bitmap_head check_only_regs;
4956
8a8330b7
VM
4957/* Reload pseudos can not be involded in invariant inheritance in the
4958 current EBB. */
4959static bitmap_head invalid_invariant_regs;
4960
55a2c322
VM
4961/* Do inheritance transformations for insn INSN, which defines (if
4962 DEF_P) or uses ORIGINAL_REGNO. NEXT_USAGE_INSNS specifies which
4963 instruction in the EBB next uses ORIGINAL_REGNO; it has the same
4964 form as the "insns" field of usage_insns. Return true if we
4965 succeed in such transformation.
4966
4967 The transformations look like:
4968
4969 p <- ... i <- ...
4970 ... p <- i (new insn)
4971 ... =>
4972 <- ... p ... <- ... i ...
4973 or
4974 ... i <- p (new insn)
4975 <- ... p ... <- ... i ...
4976 ... =>
4977 <- ... p ... <- ... i ...
4978 where p is a spilled original pseudo and i is a new inheritance pseudo.
f4eafc30
L
4979
4980
55a2c322
VM
4981 The inheritance pseudo has the smallest class of two classes CL and
4982 class of ORIGINAL REGNO. */
4983static bool
4984inherit_reload_reg (bool def_p, int original_regno,
cfa434f6 4985 enum reg_class cl, rtx_insn *insn, rtx next_usage_insns)
55a2c322 4986{
2ae577fd
VM
4987 if (optimize_function_for_size_p (cfun))
4988 return false;
4989
55a2c322
VM
4990 enum reg_class rclass = lra_get_allocno_class (original_regno);
4991 rtx original_reg = regno_reg_rtx[original_regno];
cfa434f6
DM
4992 rtx new_reg, usage_insn;
4993 rtx_insn *new_insns;
55a2c322
VM
4994
4995 lra_assert (! usage_insns[original_regno].after_p);
4996 if (lra_dump_file != NULL)
4997 fprintf (lra_dump_file,
bc3591eb 4998 " <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<\n");
55a2c322
VM
4999 if (! ira_reg_classes_intersect_p[cl][rclass])
5000 {
5001 if (lra_dump_file != NULL)
5002 {
5003 fprintf (lra_dump_file,
bc3591eb 5004 " Rejecting inheritance for %d "
55a2c322
VM
5005 "because of disjoint classes %s and %s\n",
5006 original_regno, reg_class_names[cl],
5007 reg_class_names[rclass]);
5008 fprintf (lra_dump_file,
bc3591eb 5009 " >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n");
55a2c322
VM
5010 }
5011 return false;
5012 }
5013 if ((ira_class_subset_p[cl][rclass] && cl != rclass)
5014 /* We don't use a subset of two classes because it can be
5015 NO_REGS. This transformation is still profitable in most
5016 cases even if the classes are not intersected as register
5017 move is probably cheaper than a memory load. */
5018 || ira_class_hard_regs_num[cl] < ira_class_hard_regs_num[rclass])
5019 {
5020 if (lra_dump_file != NULL)
5021 fprintf (lra_dump_file, " Use smallest class of %s and %s\n",
5022 reg_class_names[cl], reg_class_names[rclass]);
f4eafc30 5023
55a2c322
VM
5024 rclass = cl;
5025 }
66aa7879 5026 if (check_secondary_memory_needed_p (rclass, next_usage_insns))
bc3591eb
VM
5027 {
5028 /* Reject inheritance resulting in secondary memory moves.
5029 Otherwise, there is a danger in LRA cycling. Also such
5030 transformation will be unprofitable. */
5031 if (lra_dump_file != NULL)
5032 {
e8a54173 5033 rtx_insn *insn = skip_usage_debug_insns (next_usage_insns);
bc3591eb
VM
5034 rtx set = single_set (insn);
5035
5036 lra_assert (set != NULL_RTX);
5037
5038 rtx dest = SET_DEST (set);
5039
5040 lra_assert (REG_P (dest));
5041 fprintf (lra_dump_file,
5042 " Rejecting inheritance for insn %d(%s)<-%d(%s) "
5043 "as secondary mem is needed\n",
5044 REGNO (dest), reg_class_names[get_reg_class (REGNO (dest))],
66aa7879 5045 original_regno, reg_class_names[rclass]);
bc3591eb
VM
5046 fprintf (lra_dump_file,
5047 " >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n");
5048 }
5049 return false;
5050 }
55a2c322
VM
5051 new_reg = lra_create_new_reg (GET_MODE (original_reg), original_reg,
5052 rclass, "inheritance");
5053 start_sequence ();
5054 if (def_p)
a810ee82 5055 lra_emit_move (original_reg, new_reg);
55a2c322 5056 else
a810ee82 5057 lra_emit_move (new_reg, original_reg);
55a2c322
VM
5058 new_insns = get_insns ();
5059 end_sequence ();
5060 if (NEXT_INSN (new_insns) != NULL_RTX)
5061 {
5062 if (lra_dump_file != NULL)
5063 {
5064 fprintf (lra_dump_file,
bc3591eb 5065 " Rejecting inheritance %d->%d "
55a2c322
VM
5066 "as it results in 2 or more insns:\n",
5067 original_regno, REGNO (new_reg));
dc01c3d1 5068 dump_rtl_slim (lra_dump_file, new_insns, NULL, -1, 0);
55a2c322
VM
5069 fprintf (lra_dump_file,
5070 " >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n");
5071 }
5072 return false;
5073 }
ef87312e 5074 lra_substitute_pseudo_within_insn (insn, original_regno, new_reg, false);
55a2c322
VM
5075 lra_update_insn_regno_info (insn);
5076 if (! def_p)
5077 /* We now have a new usage insn for original regno. */
5078 setup_next_usage_insn (original_regno, new_insns, reloads_num, false);
5079 if (lra_dump_file != NULL)
bc3591eb 5080 fprintf (lra_dump_file, " Original reg change %d->%d (bb%d):\n",
55a2c322 5081 original_regno, REGNO (new_reg), BLOCK_FOR_INSN (insn)->index);
8a8330b7 5082 lra_reg_info[REGNO (new_reg)].restore_rtx = regno_reg_rtx[original_regno];
55a2c322
VM
5083 bitmap_set_bit (&check_only_regs, REGNO (new_reg));
5084 bitmap_set_bit (&check_only_regs, original_regno);
5085 bitmap_set_bit (&lra_inheritance_pseudos, REGNO (new_reg));
5086 if (def_p)
cfa434f6 5087 lra_process_new_insns (insn, NULL, new_insns,
55a2c322
VM
5088 "Add original<-inheritance");
5089 else
cfa434f6 5090 lra_process_new_insns (insn, new_insns, NULL,
55a2c322
VM
5091 "Add inheritance<-original");
5092 while (next_usage_insns != NULL_RTX)
5093 {
5094 if (GET_CODE (next_usage_insns) != INSN_LIST)
5095 {
5096 usage_insn = next_usage_insns;
5097 lra_assert (NONDEBUG_INSN_P (usage_insn));
5098 next_usage_insns = NULL;
5099 }
5100 else
5101 {
5102 usage_insn = XEXP (next_usage_insns, 0);
5103 lra_assert (DEBUG_INSN_P (usage_insn));
5104 next_usage_insns = XEXP (next_usage_insns, 1);
5105 }
ef87312e 5106 lra_substitute_pseudo (&usage_insn, original_regno, new_reg, false);
cfa434f6 5107 lra_update_insn_regno_info (as_a <rtx_insn *> (usage_insn));
55a2c322
VM
5108 if (lra_dump_file != NULL)
5109 {
5110 fprintf (lra_dump_file,
5111 " Inheritance reuse change %d->%d (bb%d):\n",
5112 original_regno, REGNO (new_reg),
5113 BLOCK_FOR_INSN (usage_insn)->index);
1476d1bd 5114 dump_insn_slim (lra_dump_file, as_a <rtx_insn *> (usage_insn));
55a2c322
VM
5115 }
5116 }
5117 if (lra_dump_file != NULL)
5118 fprintf (lra_dump_file,
5119 " >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n");
5120 return true;
5121}
5122
5123/* Return true if we need a caller save/restore for pseudo REGNO which
5124 was assigned to a hard register. */
5125static inline bool
5126need_for_call_save_p (int regno)
5127{
5128 lra_assert (regno >= FIRST_PSEUDO_REGISTER && reg_renumber[regno] >= 0);
5129 return (usage_insns[regno].calls_num < calls_num
5130 && (overlaps_hard_reg_set_p
1e288103 5131 ((flag_ipa_ra &&
10e1bdb2
TV
5132 ! hard_reg_set_empty_p (lra_reg_info[regno].actual_call_used_reg_set))
5133 ? lra_reg_info[regno].actual_call_used_reg_set
5134 : call_used_reg_set,
8a26ad39
VM
5135 PSEUDO_REGNO_MODE (regno), reg_renumber[regno])
5136 || HARD_REGNO_CALL_PART_CLOBBERED (reg_renumber[regno],
5137 PSEUDO_REGNO_MODE (regno))));
55a2c322
VM
5138}
5139
1aa95df7 5140/* Global registers occurring in the current EBB. */
55a2c322
VM
5141static bitmap_head ebb_global_regs;
5142
5143/* Return true if we need a split for hard register REGNO or pseudo
5144 REGNO which was assigned to a hard register.
5145 POTENTIAL_RELOAD_HARD_REGS contains hard registers which might be
5146 used for reloads since the EBB end. It is an approximation of the
5147 used hard registers in the split range. The exact value would
5148 require expensive calculations. If we were aggressive with
5149 splitting because of the approximation, the split pseudo will save
5150 the same hard register assignment and will be removed in the undo
5151 pass. We still need the approximation because too aggressive
5152 splitting would result in too inaccurate cost calculation in the
5153 assignment pass because of too many generated moves which will be
5154 probably removed in the undo pass. */
5155static inline bool
5156need_for_split_p (HARD_REG_SET potential_reload_hard_regs, int regno)
5157{
5158 int hard_regno = regno < FIRST_PSEUDO_REGISTER ? regno : reg_renumber[regno];
5159
5160 lra_assert (hard_regno >= 0);
5161 return ((TEST_HARD_REG_BIT (potential_reload_hard_regs, hard_regno)
5162 /* Don't split eliminable hard registers, otherwise we can
5163 split hard registers like hard frame pointer, which
5164 lives on BB start/end according to DF-infrastructure,
5165 when there is a pseudo assigned to the register and
5166 living in the same BB. */
5167 && (regno >= FIRST_PSEUDO_REGISTER
5168 || ! TEST_HARD_REG_BIT (eliminable_regset, hard_regno))
5169 && ! TEST_HARD_REG_BIT (lra_no_alloc_regs, hard_regno)
e32e4c4a
VM
5170 /* Don't split call clobbered hard regs living through
5171 calls, otherwise we might have a check problem in the
5172 assign sub-pass as in the most cases (exception is a
5173 situation when lra_risky_transformations_p value is
5174 true) the assign pass assumes that all pseudos living
5175 through calls are assigned to call saved hard regs. */
5176 && (regno >= FIRST_PSEUDO_REGISTER
5177 || ! TEST_HARD_REG_BIT (call_used_reg_set, regno)
5178 || usage_insns[regno].calls_num == calls_num)
55a2c322
VM
5179 /* We need at least 2 reloads to make pseudo splitting
5180 profitable. We should provide hard regno splitting in
5181 any case to solve 1st insn scheduling problem when
5182 moving hard register definition up might result in
5183 impossibility to find hard register for reload pseudo of
5184 small register class. */
5185 && (usage_insns[regno].reloads_num
8e9d68a9 5186 + (regno < FIRST_PSEUDO_REGISTER ? 0 : 3) < reloads_num)
55a2c322
VM
5187 && (regno < FIRST_PSEUDO_REGISTER
5188 /* For short living pseudos, spilling + inheritance can
5189 be considered a substitution for splitting.
5190 Therefore we do not splitting for local pseudos. It
5191 decreases also aggressiveness of splitting. The
5192 minimal number of references is chosen taking into
5193 account that for 2 references splitting has no sense
5194 as we can just spill the pseudo. */
5195 || (regno >= FIRST_PSEUDO_REGISTER
5196 && lra_reg_info[regno].nrefs > 3
5197 && bitmap_bit_p (&ebb_global_regs, regno))))
5198 || (regno >= FIRST_PSEUDO_REGISTER && need_for_call_save_p (regno)));
5199}
5200
5201/* Return class for the split pseudo created from original pseudo with
5202 ALLOCNO_CLASS and MODE which got a hard register HARD_REGNO. We
5203 choose subclass of ALLOCNO_CLASS which contains HARD_REGNO and
5204 results in no secondary memory movements. */
5205static enum reg_class
5206choose_split_class (enum reg_class allocno_class,
5207 int hard_regno ATTRIBUTE_UNUSED,
ef4bddc2 5208 machine_mode mode ATTRIBUTE_UNUSED)
55a2c322
VM
5209{
5210#ifndef SECONDARY_MEMORY_NEEDED
5211 return allocno_class;
5212#else
5213 int i;
5214 enum reg_class cl, best_cl = NO_REGS;
ef4dbe49
JR
5215 enum reg_class hard_reg_class ATTRIBUTE_UNUSED
5216 = REGNO_REG_CLASS (hard_regno);
f4eafc30 5217
55a2c322
VM
5218 if (! SECONDARY_MEMORY_NEEDED (allocno_class, allocno_class, mode)
5219 && TEST_HARD_REG_BIT (reg_class_contents[allocno_class], hard_regno))
5220 return allocno_class;
5221 for (i = 0;
5222 (cl = reg_class_subclasses[allocno_class][i]) != LIM_REG_CLASSES;
5223 i++)
5224 if (! SECONDARY_MEMORY_NEEDED (cl, hard_reg_class, mode)
5225 && ! SECONDARY_MEMORY_NEEDED (hard_reg_class, cl, mode)
5226 && TEST_HARD_REG_BIT (reg_class_contents[cl], hard_regno)
5227 && (best_cl == NO_REGS
5228 || ira_class_hard_regs_num[best_cl] < ira_class_hard_regs_num[cl]))
5229 best_cl = cl;
5230 return best_cl;
5231#endif
5232}
5233
5234/* Do split transformations for insn INSN, which defines or uses
5235 ORIGINAL_REGNO. NEXT_USAGE_INSNS specifies which instruction in
5236 the EBB next uses ORIGINAL_REGNO; it has the same form as the
5237 "insns" field of usage_insns.
5238
5239 The transformations look like:
5240
5241 p <- ... p <- ...
5242 ... s <- p (new insn -- save)
5243 ... =>
5244 ... p <- s (new insn -- restore)
5245 <- ... p ... <- ... p ...
5246 or
5247 <- ... p ... <- ... p ...
5248 ... s <- p (new insn -- save)
5249 ... =>
5250 ... p <- s (new insn -- restore)
5251 <- ... p ... <- ... p ...
5252
5253 where p is an original pseudo got a hard register or a hard
5254 register and s is a new split pseudo. The save is put before INSN
5255 if BEFORE_P is true. Return true if we succeed in such
5256 transformation. */
5257static bool
cfa434f6
DM
5258split_reg (bool before_p, int original_regno, rtx_insn *insn,
5259 rtx next_usage_insns)
55a2c322
VM
5260{
5261 enum reg_class rclass;
5262 rtx original_reg;
77bce07c 5263 int hard_regno, nregs;
cfa434f6
DM
5264 rtx new_reg, usage_insn;
5265 rtx_insn *restore, *save;
55a2c322
VM
5266 bool after_p;
5267 bool call_save_p;
3cbf012a 5268 machine_mode mode;
55a2c322
VM
5269
5270 if (original_regno < FIRST_PSEUDO_REGISTER)
5271 {
5272 rclass = ira_allocno_class_translate[REGNO_REG_CLASS (original_regno)];
5273 hard_regno = original_regno;
5274 call_save_p = false;
77bce07c 5275 nregs = 1;
3cbf012a
BS
5276 mode = lra_reg_info[hard_regno].biggest_mode;
5277 machine_mode reg_rtx_mode = GET_MODE (regno_reg_rtx[hard_regno]);
5c6a601c
BS
5278 /* A reg can have a biggest_mode of VOIDmode if it was only ever seen
5279 as part of a multi-word register. In that case, or if the biggest
5280 mode was larger than a register, just use the reg_rtx. Otherwise,
5281 limit the size to that of the biggest access in the function. */
5282 if (mode == VOIDmode
5283 || GET_MODE_SIZE (mode) > GET_MODE_SIZE (reg_rtx_mode))
3cbf012a
BS
5284 {
5285 original_reg = regno_reg_rtx[hard_regno];
5286 mode = reg_rtx_mode;
5287 }
5288 else
5289 original_reg = gen_rtx_REG (mode, hard_regno);
55a2c322
VM
5290 }
5291 else
5292 {
3cbf012a 5293 mode = PSEUDO_REGNO_MODE (original_regno);
55a2c322 5294 hard_regno = reg_renumber[original_regno];
3cbf012a 5295 nregs = hard_regno_nregs[hard_regno][mode];
55a2c322
VM
5296 rclass = lra_get_allocno_class (original_regno);
5297 original_reg = regno_reg_rtx[original_regno];
5298 call_save_p = need_for_call_save_p (original_regno);
5299 }
55a2c322
VM
5300 lra_assert (hard_regno >= 0);
5301 if (lra_dump_file != NULL)
5302 fprintf (lra_dump_file,
5303 " ((((((((((((((((((((((((((((((((((((((((((((((((\n");
3cbf012a 5304
55a2c322
VM
5305 if (call_save_p)
5306 {
cb1cca12
VM
5307 mode = HARD_REGNO_CALLER_SAVE_MODE (hard_regno,
5308 hard_regno_nregs[hard_regno][mode],
5309 mode);
5310 new_reg = lra_create_new_reg (mode, NULL_RTX, NO_REGS, "save");
55a2c322
VM
5311 }
5312 else
5313 {
3cbf012a 5314 rclass = choose_split_class (rclass, hard_regno, mode);
55a2c322
VM
5315 if (rclass == NO_REGS)
5316 {
5317 if (lra_dump_file != NULL)
5318 {
5319 fprintf (lra_dump_file,
5320 " Rejecting split of %d(%s): "
5321 "no good reg class for %d(%s)\n",
5322 original_regno,
5323 reg_class_names[lra_get_allocno_class (original_regno)],
5324 hard_regno,
5325 reg_class_names[REGNO_REG_CLASS (hard_regno)]);
5326 fprintf
5327 (lra_dump_file,
5328 " ))))))))))))))))))))))))))))))))))))))))))))))))\n");
5329 }
5330 return false;
5331 }
3cbf012a 5332 new_reg = lra_create_new_reg (mode, original_reg, rclass, "split");
55a2c322
VM
5333 reg_renumber[REGNO (new_reg)] = hard_regno;
5334 }
5335 save = emit_spill_move (true, new_reg, original_reg);
c61fe0cc 5336 if (NEXT_INSN (save) != NULL_RTX && !call_save_p)
55a2c322 5337 {
55a2c322
VM
5338 if (lra_dump_file != NULL)
5339 {
5340 fprintf
5341 (lra_dump_file,
c61fe0cc
KC
5342 " Rejecting split %d->%d resulting in > 2 save insns:\n",
5343 original_regno, REGNO (new_reg));
dc01c3d1 5344 dump_rtl_slim (lra_dump_file, save, NULL, -1, 0);
55a2c322
VM
5345 fprintf (lra_dump_file,
5346 " ))))))))))))))))))))))))))))))))))))))))))))))))\n");
5347 }
5348 return false;
5349 }
5350 restore = emit_spill_move (false, new_reg, original_reg);
c61fe0cc 5351 if (NEXT_INSN (restore) != NULL_RTX && !call_save_p)
55a2c322 5352 {
55a2c322
VM
5353 if (lra_dump_file != NULL)
5354 {
5355 fprintf (lra_dump_file,
5356 " Rejecting split %d->%d "
c61fe0cc
KC
5357 "resulting in > 2 restore insns:\n",
5358 original_regno, REGNO (new_reg));
dc01c3d1 5359 dump_rtl_slim (lra_dump_file, restore, NULL, -1, 0);
55a2c322
VM
5360 fprintf (lra_dump_file,
5361 " ))))))))))))))))))))))))))))))))))))))))))))))))\n");
5362 }
5363 return false;
5364 }
5365 after_p = usage_insns[original_regno].after_p;
8a8330b7 5366 lra_reg_info[REGNO (new_reg)].restore_rtx = regno_reg_rtx[original_regno];
55a2c322
VM
5367 bitmap_set_bit (&check_only_regs, REGNO (new_reg));
5368 bitmap_set_bit (&check_only_regs, original_regno);
5369 bitmap_set_bit (&lra_split_regs, REGNO (new_reg));
5370 for (;;)
5371 {
5372 if (GET_CODE (next_usage_insns) != INSN_LIST)
5373 {
5374 usage_insn = next_usage_insns;
5375 break;
5376 }
5377 usage_insn = XEXP (next_usage_insns, 0);
5378 lra_assert (DEBUG_INSN_P (usage_insn));
5379 next_usage_insns = XEXP (next_usage_insns, 1);
ef87312e 5380 lra_substitute_pseudo (&usage_insn, original_regno, new_reg, false);
cfa434f6 5381 lra_update_insn_regno_info (as_a <rtx_insn *> (usage_insn));
55a2c322
VM
5382 if (lra_dump_file != NULL)
5383 {
5384 fprintf (lra_dump_file, " Split reuse change %d->%d:\n",
5385 original_regno, REGNO (new_reg));
1476d1bd 5386 dump_insn_slim (lra_dump_file, as_a <rtx_insn *> (usage_insn));
55a2c322
VM
5387 }
5388 }
5389 lra_assert (NOTE_P (usage_insn) || NONDEBUG_INSN_P (usage_insn));
5390 lra_assert (usage_insn != insn || (after_p && before_p));
cfa434f6
DM
5391 lra_process_new_insns (as_a <rtx_insn *> (usage_insn),
5392 after_p ? NULL : restore,
5393 after_p ? restore : NULL,
55a2c322
VM
5394 call_save_p
5395 ? "Add reg<-save" : "Add reg<-split");
cfa434f6
DM
5396 lra_process_new_insns (insn, before_p ? save : NULL,
5397 before_p ? NULL : save,
55a2c322
VM
5398 call_save_p
5399 ? "Add save<-reg" : "Add split<-reg");
77bce07c
VM
5400 if (nregs > 1)
5401 /* If we are trying to split multi-register. We should check
5402 conflicts on the next assignment sub-pass. IRA can allocate on
5403 sub-register levels, LRA do this on pseudos level right now and
5404 this discrepancy may create allocation conflicts after
5405 splitting. */
5406 lra_risky_transformations_p = true;
55a2c322
VM
5407 if (lra_dump_file != NULL)
5408 fprintf (lra_dump_file,
5409 " ))))))))))))))))))))))))))))))))))))))))))))))))\n");
5410 return true;
5411}
5412
5413/* Recognize that we need a split transformation for insn INSN, which
5414 defines or uses REGNO in its insn biggest MODE (we use it only if
5415 REGNO is a hard register). POTENTIAL_RELOAD_HARD_REGS contains
5416 hard registers which might be used for reloads since the EBB end.
5417 Put the save before INSN if BEFORE_P is true. MAX_UID is maximla
5418 uid before starting INSN processing. Return true if we succeed in
5419 such transformation. */
5420static bool
ef4bddc2 5421split_if_necessary (int regno, machine_mode mode,
55a2c322 5422 HARD_REG_SET potential_reload_hard_regs,
cfa434f6 5423 bool before_p, rtx_insn *insn, int max_uid)
55a2c322
VM
5424{
5425 bool res = false;
5426 int i, nregs = 1;
5427 rtx next_usage_insns;
5428
5429 if (regno < FIRST_PSEUDO_REGISTER)
5430 nregs = hard_regno_nregs[regno][mode];
5431 for (i = 0; i < nregs; i++)
5432 if (usage_insns[regno + i].check == curr_usage_insns_check
5433 && (next_usage_insns = usage_insns[regno + i].insns) != NULL_RTX
5434 /* To avoid processing the register twice or more. */
5435 && ((GET_CODE (next_usage_insns) != INSN_LIST
5436 && INSN_UID (next_usage_insns) < max_uid)
5437 || (GET_CODE (next_usage_insns) == INSN_LIST
5438 && (INSN_UID (XEXP (next_usage_insns, 0)) < max_uid)))
5439 && need_for_split_p (potential_reload_hard_regs, regno + i)
5440 && split_reg (before_p, regno + i, insn, next_usage_insns))
5441 res = true;
5442 return res;
5443}
5444
8a8330b7
VM
5445/* Return TRUE if rtx X is considered as an invariant for
5446 inheritance. */
5447static bool
5448invariant_p (const_rtx x)
5449{
5450 machine_mode mode;
5451 const char *fmt;
5452 enum rtx_code code;
5453 int i, j;
5454
5455 code = GET_CODE (x);
5456 mode = GET_MODE (x);
5457 if (code == SUBREG)
5458 {
5459 x = SUBREG_REG (x);
5460 code = GET_CODE (x);
5461 if (GET_MODE_SIZE (GET_MODE (x)) > GET_MODE_SIZE (mode))
5462 mode = GET_MODE (x);
5463 }
5464
5465 if (MEM_P (x))
5466 return false;
5467
5468 if (REG_P (x))
5469 {
5470 int i, nregs, regno = REGNO (x);
5471
5472 if (regno >= FIRST_PSEUDO_REGISTER || regno == STACK_POINTER_REGNUM
5473 || TEST_HARD_REG_BIT (eliminable_regset, regno)
5474 || GET_MODE_CLASS (GET_MODE (x)) == MODE_CC)
5475 return false;
5476 nregs = hard_regno_nregs[regno][mode];
5477 for (i = 0; i < nregs; i++)
5478 if (! fixed_regs[regno + i]
5479 /* A hard register may be clobbered in the current insn
5480 but we can ignore this case because if the hard
5481 register is used it should be set somewhere after the
5482 clobber. */
5483 || bitmap_bit_p (&invalid_invariant_regs, regno + i))
5484 return false;
5485 }
5486 fmt = GET_RTX_FORMAT (code);
5487 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
5488 {
5489 if (fmt[i] == 'e')
5490 {
5491 if (! invariant_p (XEXP (x, i)))
5492 return false;
5493 }
5494 else if (fmt[i] == 'E')
5495 {
5496 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
5497 if (! invariant_p (XVECEXP (x, i, j)))
5498 return false;
5499 }
5500 }
5501 return true;
5502}
5503
5504/* We have 'dest_reg <- invariant'. Let us try to make an invariant
5505 inheritance transformation (using dest_reg instead invariant in a
5506 subsequent insn). */
5507static bool
5508process_invariant_for_inheritance (rtx dst_reg, rtx invariant_rtx)
5509{
5510 invariant_ptr_t invariant_ptr;
5511 rtx_insn *insn, *new_insns;
5512 rtx insn_set, insn_reg, new_reg;
5513 int insn_regno;
5514 bool succ_p = false;
5515 int dst_regno = REGNO (dst_reg);
5516 enum machine_mode dst_mode = GET_MODE (dst_reg);
5517 enum reg_class cl = lra_get_allocno_class (dst_regno), insn_reg_cl;
5518
5519 invariant_ptr = insert_invariant (invariant_rtx);
5520 if ((insn = invariant_ptr->insn) != NULL_RTX)
5521 {
5522 /* We have a subsequent insn using the invariant. */
5523 insn_set = single_set (insn);
5524 lra_assert (insn_set != NULL);
5525 insn_reg = SET_DEST (insn_set);
5526 lra_assert (REG_P (insn_reg));
5527 insn_regno = REGNO (insn_reg);
5528 insn_reg_cl = lra_get_allocno_class (insn_regno);
5529
5530 if (dst_mode == GET_MODE (insn_reg)
5531 /* We should consider only result move reg insns which are
5532 cheap. */
5533 && targetm.register_move_cost (dst_mode, cl, insn_reg_cl) == 2
5534 && targetm.register_move_cost (dst_mode, cl, cl) == 2)
5535 {
5536 if (lra_dump_file != NULL)
5537 fprintf (lra_dump_file,
5538 " [[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[\n");
5539 new_reg = lra_create_new_reg (dst_mode, dst_reg,
5540 cl, "invariant inheritance");
5541 bitmap_set_bit (&lra_inheritance_pseudos, REGNO (new_reg));
5542 bitmap_set_bit (&check_only_regs, REGNO (new_reg));
b10d44ef 5543 lra_reg_info[REGNO (new_reg)].restore_rtx = PATTERN (insn);
8a8330b7
VM
5544 start_sequence ();
5545 lra_emit_move (new_reg, dst_reg);
5546 new_insns = get_insns ();
5547 end_sequence ();
5548 lra_process_new_insns (curr_insn, NULL, new_insns,
5549 "Add invariant inheritance<-original");
5550 start_sequence ();
5551 lra_emit_move (SET_DEST (insn_set), new_reg);
5552 new_insns = get_insns ();
5553 end_sequence ();
5554 lra_process_new_insns (insn, NULL, new_insns,
5555 "Changing reload<-inheritance");
5556 lra_set_insn_deleted (insn);
5557 succ_p = true;
5558 if (lra_dump_file != NULL)
5559 {
5560 fprintf (lra_dump_file,
5561 " Invariant inheritance reuse change %d (bb%d):\n",
5562 REGNO (new_reg), BLOCK_FOR_INSN (insn)->index);
5563 dump_insn_slim (lra_dump_file, insn);
5564 fprintf (lra_dump_file,
5565 " ]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]\n");
5566 }
5567 }
5568 }
5569 invariant_ptr->insn = curr_insn;
5570 return succ_p;
5571}
5572
55a2c322
VM
5573/* Check only registers living at the current program point in the
5574 current EBB. */
5575static bitmap_head live_regs;
5576
5577/* Update live info in EBB given by its HEAD and TAIL insns after
5578 inheritance/split transformation. The function removes dead moves
5579 too. */
5580static void
cfa434f6 5581update_ebb_live_info (rtx_insn *head, rtx_insn *tail)
55a2c322
VM
5582{
5583 unsigned int j;
8e9d68a9 5584 int i, regno;
55a2c322 5585 bool live_p;
cfa434f6
DM
5586 rtx_insn *prev_insn;
5587 rtx set;
55a2c322
VM
5588 bool remove_p;
5589 basic_block last_bb, prev_bb, curr_bb;
5590 bitmap_iterator bi;
5591 struct lra_insn_reg *reg;
5592 edge e;
5593 edge_iterator ei;
5594
f4eafc30 5595 last_bb = BLOCK_FOR_INSN (tail);
55a2c322
VM
5596 prev_bb = NULL;
5597 for (curr_insn = tail;
5598 curr_insn != PREV_INSN (head);
5599 curr_insn = prev_insn)
5600 {
5601 prev_insn = PREV_INSN (curr_insn);
911598e3
VM
5602 /* We need to process empty blocks too. They contain
5603 NOTE_INSN_BASIC_BLOCK referring for the basic block. */
5604 if (NOTE_P (curr_insn) && NOTE_KIND (curr_insn) != NOTE_INSN_BASIC_BLOCK)
5605 continue;
55a2c322
VM
5606 curr_bb = BLOCK_FOR_INSN (curr_insn);
5607 if (curr_bb != prev_bb)
5608 {
5609 if (prev_bb != NULL)
5610 {
5611 /* Update df_get_live_in (prev_bb): */
5612 EXECUTE_IF_SET_IN_BITMAP (&check_only_regs, 0, j, bi)
5613 if (bitmap_bit_p (&live_regs, j))
5614 bitmap_set_bit (df_get_live_in (prev_bb), j);
5615 else
5616 bitmap_clear_bit (df_get_live_in (prev_bb), j);
5617 }
5618 if (curr_bb != last_bb)
5619 {
5620 /* Update df_get_live_out (curr_bb): */
5621 EXECUTE_IF_SET_IN_BITMAP (&check_only_regs, 0, j, bi)
5622 {
5623 live_p = bitmap_bit_p (&live_regs, j);
5624 if (! live_p)
5625 FOR_EACH_EDGE (e, ei, curr_bb->succs)
5626 if (bitmap_bit_p (df_get_live_in (e->dest), j))
5627 {
5628 live_p = true;
5629 break;
5630 }
5631 if (live_p)
5632 bitmap_set_bit (df_get_live_out (curr_bb), j);
5633 else
5634 bitmap_clear_bit (df_get_live_out (curr_bb), j);
5635 }
5636 }
5637 prev_bb = curr_bb;
5638 bitmap_and (&live_regs, &check_only_regs, df_get_live_out (curr_bb));
5639 }
44b94bdb 5640 if (! NONDEBUG_INSN_P (curr_insn))
55a2c322
VM
5641 continue;
5642 curr_id = lra_get_insn_recog_data (curr_insn);
8e9d68a9 5643 curr_static_id = curr_id->insn_static_data;
55a2c322 5644 remove_p = false;
53250f44
BS
5645 if ((set = single_set (curr_insn)) != NULL_RTX
5646 && REG_P (SET_DEST (set))
55a2c322 5647 && (regno = REGNO (SET_DEST (set))) >= FIRST_PSEUDO_REGISTER
53250f44 5648 && SET_DEST (set) != pic_offset_table_rtx
55a2c322
VM
5649 && bitmap_bit_p (&check_only_regs, regno)
5650 && ! bitmap_bit_p (&live_regs, regno))
5651 remove_p = true;
5652 /* See which defined values die here. */
5653 for (reg = curr_id->regs; reg != NULL; reg = reg->next)
5654 if (reg->type == OP_OUT && ! reg->subreg_p)
5655 bitmap_clear_bit (&live_regs, reg->regno);
8e9d68a9
VM
5656 for (reg = curr_static_id->hard_regs; reg != NULL; reg = reg->next)
5657 if (reg->type == OP_OUT && ! reg->subreg_p)
5658 bitmap_clear_bit (&live_regs, reg->regno);
9d86e84e
VM
5659 if (curr_id->arg_hard_regs != NULL)
5660 /* Make clobbered argument hard registers die. */
5661 for (i = 0; (regno = curr_id->arg_hard_regs[i]) >= 0; i++)
5662 if (regno >= FIRST_PSEUDO_REGISTER)
5663 bitmap_clear_bit (&live_regs, regno - FIRST_PSEUDO_REGISTER);
55a2c322
VM
5664 /* Mark each used value as live. */
5665 for (reg = curr_id->regs; reg != NULL; reg = reg->next)
d89ae27c 5666 if (reg->type != OP_OUT
55a2c322
VM
5667 && bitmap_bit_p (&check_only_regs, reg->regno))
5668 bitmap_set_bit (&live_regs, reg->regno);
8e9d68a9
VM
5669 for (reg = curr_static_id->hard_regs; reg != NULL; reg = reg->next)
5670 if (reg->type != OP_OUT
5671 && bitmap_bit_p (&check_only_regs, reg->regno))
5672 bitmap_set_bit (&live_regs, reg->regno);
5673 if (curr_id->arg_hard_regs != NULL)
9d86e84e 5674 /* Make used argument hard registers live. */
8e9d68a9 5675 for (i = 0; (regno = curr_id->arg_hard_regs[i]) >= 0; i++)
9d86e84e
VM
5676 if (regno < FIRST_PSEUDO_REGISTER
5677 && bitmap_bit_p (&check_only_regs, regno))
8e9d68a9 5678 bitmap_set_bit (&live_regs, regno);
55a2c322
VM
5679 /* It is quite important to remove dead move insns because it
5680 means removing dead store. We don't need to process them for
5681 constraints. */
5682 if (remove_p)
5683 {
5684 if (lra_dump_file != NULL)
5685 {
5686 fprintf (lra_dump_file, " Removing dead insn:\n ");
cfbeaedf 5687 dump_insn_slim (lra_dump_file, curr_insn);
55a2c322
VM
5688 }
5689 lra_set_insn_deleted (curr_insn);
5690 }
5691 }
5692}
5693
5694/* The structure describes info to do an inheritance for the current
5695 insn. We need to collect such info first before doing the
5696 transformations because the transformations change the insn
5697 internal representation. */
5698struct to_inherit
5699{
5700 /* Original regno. */
5701 int regno;
5702 /* Subsequent insns which can inherit original reg value. */
5703 rtx insns;
5704};
5705
5706/* Array containing all info for doing inheritance from the current
5707 insn. */
5708static struct to_inherit to_inherit[LRA_MAX_INSN_RELOADS];
5709
5710/* Number elements in the previous array. */
5711static int to_inherit_num;
5712
5713/* Add inheritance info REGNO and INSNS. Their meaning is described in
5714 structure to_inherit. */
5715static void
5716add_to_inherit (int regno, rtx insns)
5717{
5718 int i;
5719
5720 for (i = 0; i < to_inherit_num; i++)
5721 if (to_inherit[i].regno == regno)
5722 return;
5723 lra_assert (to_inherit_num < LRA_MAX_INSN_RELOADS);
5724 to_inherit[to_inherit_num].regno = regno;
5725 to_inherit[to_inherit_num++].insns = insns;
5726}
5727
5728/* Return the last non-debug insn in basic block BB, or the block begin
5729 note if none. */
cfa434f6 5730static rtx_insn *
55a2c322
VM
5731get_last_insertion_point (basic_block bb)
5732{
cfa434f6 5733 rtx_insn *insn;
55a2c322
VM
5734
5735 FOR_BB_INSNS_REVERSE (bb, insn)
5736 if (NONDEBUG_INSN_P (insn) || NOTE_INSN_BASIC_BLOCK_P (insn))
5737 return insn;
5738 gcc_unreachable ();
5739}
5740
5741/* Set up RES by registers living on edges FROM except the edge (FROM,
5742 TO) or by registers set up in a jump insn in BB FROM. */
5743static void
5744get_live_on_other_edges (basic_block from, basic_block to, bitmap res)
5745{
cfa434f6 5746 rtx_insn *last;
55a2c322
VM
5747 struct lra_insn_reg *reg;
5748 edge e;
5749 edge_iterator ei;
5750
5751 lra_assert (to != NULL);
5752 bitmap_clear (res);
5753 FOR_EACH_EDGE (e, ei, from->succs)
5754 if (e->dest != to)
5755 bitmap_ior_into (res, df_get_live_in (e->dest));
5756 last = get_last_insertion_point (from);
5757 if (! JUMP_P (last))
5758 return;
5759 curr_id = lra_get_insn_recog_data (last);
5760 for (reg = curr_id->regs; reg != NULL; reg = reg->next)
5761 if (reg->type != OP_IN)
5762 bitmap_set_bit (res, reg->regno);
5763}
f4eafc30 5764
55a2c322
VM
5765/* Used as a temporary results of some bitmap calculations. */
5766static bitmap_head temp_bitmap;
5767
8e9d68a9
VM
5768/* We split for reloads of small class of hard regs. The following
5769 defines how many hard regs the class should have to be qualified as
5770 small. The code is mostly oriented to x86/x86-64 architecture
5771 where some insns need to use only specific register or pair of
5772 registers and these register can live in RTL explicitly, e.g. for
5773 parameter passing. */
5774static const int max_small_class_regs_num = 2;
5775
55a2c322
VM
5776/* Do inheritance/split transformations in EBB starting with HEAD and
5777 finishing on TAIL. We process EBB insns in the reverse order.
5778 Return true if we did any inheritance/split transformation in the
5779 EBB.
5780
5781 We should avoid excessive splitting which results in worse code
5782 because of inaccurate cost calculations for spilling new split
5783 pseudos in such case. To achieve this we do splitting only if
5784 register pressure is high in given basic block and there are reload
5785 pseudos requiring hard registers. We could do more register
5786 pressure calculations at any given program point to avoid necessary
5787 splitting even more but it is to expensive and the current approach
5788 works well enough. */
5789static bool
cfa434f6 5790inherit_in_ebb (rtx_insn *head, rtx_insn *tail)
55a2c322
VM
5791{
5792 int i, src_regno, dst_regno, nregs;
df2980be 5793 bool change_p, succ_p, update_reloads_num_p;
cfa434f6 5794 rtx_insn *prev_insn, *last_insn;
8a8330b7 5795 rtx next_usage_insns, curr_set;
55a2c322
VM
5796 enum reg_class cl;
5797 struct lra_insn_reg *reg;
5798 basic_block last_processed_bb, curr_bb = NULL;
5799 HARD_REG_SET potential_reload_hard_regs, live_hard_regs;
5800 bitmap to_process;
5801 unsigned int j;
5802 bitmap_iterator bi;
5803 bool head_p, after_p;
5804
5805 change_p = false;
5806 curr_usage_insns_check++;
8a8330b7 5807 clear_invariants ();
55a2c322
VM
5808 reloads_num = calls_num = 0;
5809 bitmap_clear (&check_only_regs);
8a8330b7 5810 bitmap_clear (&invalid_invariant_regs);
55a2c322
VM
5811 last_processed_bb = NULL;
5812 CLEAR_HARD_REG_SET (potential_reload_hard_regs);
8e9d68a9
VM
5813 COPY_HARD_REG_SET (live_hard_regs, eliminable_regset);
5814 IOR_HARD_REG_SET (live_hard_regs, lra_no_alloc_regs);
55a2c322
VM
5815 /* We don't process new insns generated in the loop. */
5816 for (curr_insn = tail; curr_insn != PREV_INSN (head); curr_insn = prev_insn)
5817 {
5818 prev_insn = PREV_INSN (curr_insn);
5819 if (BLOCK_FOR_INSN (curr_insn) != NULL)
5820 curr_bb = BLOCK_FOR_INSN (curr_insn);
5821 if (last_processed_bb != curr_bb)
5822 {
5823 /* We are at the end of BB. Add qualified living
5824 pseudos for potential splitting. */
5825 to_process = df_get_live_out (curr_bb);
5826 if (last_processed_bb != NULL)
f4eafc30 5827 {
55a2c322
VM
5828 /* We are somewhere in the middle of EBB. */
5829 get_live_on_other_edges (curr_bb, last_processed_bb,
5830 &temp_bitmap);
5831 to_process = &temp_bitmap;
5832 }
5833 last_processed_bb = curr_bb;
5834 last_insn = get_last_insertion_point (curr_bb);
5835 after_p = (! JUMP_P (last_insn)
5836 && (! CALL_P (last_insn)
5837 || (find_reg_note (last_insn,
5838 REG_NORETURN, NULL_RTX) == NULL_RTX
5839 && ! SIBLING_CALL_P (last_insn))));
55a2c322
VM
5840 CLEAR_HARD_REG_SET (potential_reload_hard_regs);
5841 EXECUTE_IF_SET_IN_BITMAP (to_process, 0, j, bi)
5842 {
5843 if ((int) j >= lra_constraint_new_regno_start)
5844 break;
5845 if (j < FIRST_PSEUDO_REGISTER || reg_renumber[j] >= 0)
5846 {
5847 if (j < FIRST_PSEUDO_REGISTER)
5848 SET_HARD_REG_BIT (live_hard_regs, j);
5849 else
5850 add_to_hard_reg_set (&live_hard_regs,
5851 PSEUDO_REGNO_MODE (j),
5852 reg_renumber[j]);
5853 setup_next_usage_insn (j, last_insn, reloads_num, after_p);
5854 }
5855 }
5856 }
5857 src_regno = dst_regno = -1;
8a8330b7
VM
5858 curr_set = single_set (curr_insn);
5859 if (curr_set != NULL_RTX && REG_P (SET_DEST (curr_set)))
5860 dst_regno = REGNO (SET_DEST (curr_set));
5861 if (curr_set != NULL_RTX && REG_P (SET_SRC (curr_set)))
5862 src_regno = REGNO (SET_SRC (curr_set));
df2980be 5863 update_reloads_num_p = true;
55a2c322
VM
5864 if (src_regno < lra_constraint_new_regno_start
5865 && src_regno >= FIRST_PSEUDO_REGISTER
5866 && reg_renumber[src_regno] < 0
5867 && dst_regno >= lra_constraint_new_regno_start
5868 && (cl = lra_get_allocno_class (dst_regno)) != NO_REGS)
5869 {
5870 /* 'reload_pseudo <- original_pseudo'. */
8e9d68a9
VM
5871 if (ira_class_hard_regs_num[cl] <= max_small_class_regs_num)
5872 reloads_num++;
df2980be 5873 update_reloads_num_p = false;
55a2c322
VM
5874 succ_p = false;
5875 if (usage_insns[src_regno].check == curr_usage_insns_check
5876 && (next_usage_insns = usage_insns[src_regno].insns) != NULL_RTX)
5877 succ_p = inherit_reload_reg (false, src_regno, cl,
5878 curr_insn, next_usage_insns);
5879 if (succ_p)
5880 change_p = true;
5881 else
5882 setup_next_usage_insn (src_regno, curr_insn, reloads_num, false);
5883 if (hard_reg_set_subset_p (reg_class_contents[cl], live_hard_regs))
5884 IOR_HARD_REG_SET (potential_reload_hard_regs,
5885 reg_class_contents[cl]);
5886 }
8a8330b7
VM
5887 else if (src_regno < 0
5888 && dst_regno >= lra_constraint_new_regno_start
5889 && invariant_p (SET_SRC (curr_set))
5890 && (cl = lra_get_allocno_class (dst_regno)) != NO_REGS
5891 && ! bitmap_bit_p (&invalid_invariant_regs, dst_regno))
5892 {
5893 /* 'reload_pseudo <- invariant'. */
5894 if (ira_class_hard_regs_num[cl] <= max_small_class_regs_num)
5895 reloads_num++;
5896 update_reloads_num_p = false;
5897 if (process_invariant_for_inheritance (SET_DEST (curr_set), SET_SRC (curr_set)))
5898 change_p = true;
5899 if (hard_reg_set_subset_p (reg_class_contents[cl], live_hard_regs))
5900 IOR_HARD_REG_SET (potential_reload_hard_regs,
5901 reg_class_contents[cl]);
5902 }
55a2c322
VM
5903 else if (src_regno >= lra_constraint_new_regno_start
5904 && dst_regno < lra_constraint_new_regno_start
5905 && dst_regno >= FIRST_PSEUDO_REGISTER
5906 && reg_renumber[dst_regno] < 0
5907 && (cl = lra_get_allocno_class (src_regno)) != NO_REGS
5908 && usage_insns[dst_regno].check == curr_usage_insns_check
5909 && (next_usage_insns
5910 = usage_insns[dst_regno].insns) != NULL_RTX)
5911 {
8e9d68a9
VM
5912 if (ira_class_hard_regs_num[cl] <= max_small_class_regs_num)
5913 reloads_num++;
df2980be 5914 update_reloads_num_p = false;
55a2c322
VM
5915 /* 'original_pseudo <- reload_pseudo'. */
5916 if (! JUMP_P (curr_insn)
5917 && inherit_reload_reg (true, dst_regno, cl,
5918 curr_insn, next_usage_insns))
5919 change_p = true;
5920 /* Invalidate. */
5921 usage_insns[dst_regno].check = 0;
5922 if (hard_reg_set_subset_p (reg_class_contents[cl], live_hard_regs))
5923 IOR_HARD_REG_SET (potential_reload_hard_regs,
5924 reg_class_contents[cl]);
5925 }
5926 else if (INSN_P (curr_insn))
5927 {
2f259720 5928 int iter;
55a2c322
VM
5929 int max_uid = get_max_uid ();
5930
5931 curr_id = lra_get_insn_recog_data (curr_insn);
2f259720 5932 curr_static_id = curr_id->insn_static_data;
55a2c322
VM
5933 to_inherit_num = 0;
5934 /* Process insn definitions. */
2f259720
VM
5935 for (iter = 0; iter < 2; iter++)
5936 for (reg = iter == 0 ? curr_id->regs : curr_static_id->hard_regs;
5937 reg != NULL;
5938 reg = reg->next)
5939 if (reg->type != OP_IN
5940 && (dst_regno = reg->regno) < lra_constraint_new_regno_start)
5941 {
5942 if (dst_regno >= FIRST_PSEUDO_REGISTER && reg->type == OP_OUT
5943 && reg_renumber[dst_regno] < 0 && ! reg->subreg_p
5944 && usage_insns[dst_regno].check == curr_usage_insns_check
5945 && (next_usage_insns
5946 = usage_insns[dst_regno].insns) != NULL_RTX)
5947 {
5948 struct lra_insn_reg *r;
5949
5950 for (r = curr_id->regs; r != NULL; r = r->next)
5951 if (r->type != OP_OUT && r->regno == dst_regno)
5952 break;
5953 /* Don't do inheritance if the pseudo is also
5954 used in the insn. */
5955 if (r == NULL)
5956 /* We can not do inheritance right now
5957 because the current insn reg info (chain
5958 regs) can change after that. */
5959 add_to_inherit (dst_regno, next_usage_insns);
5960 }
5961 /* We can not process one reg twice here because of
5962 usage_insns invalidation. */
5963 if ((dst_regno < FIRST_PSEUDO_REGISTER
5964 || reg_renumber[dst_regno] >= 0)
e32e4c4a 5965 && ! reg->subreg_p && reg->type != OP_IN)
2f259720
VM
5966 {
5967 HARD_REG_SET s;
5968
5969 if (split_if_necessary (dst_regno, reg->biggest_mode,
5970 potential_reload_hard_regs,
5971 false, curr_insn, max_uid))
5972 change_p = true;
5973 CLEAR_HARD_REG_SET (s);
5974 if (dst_regno < FIRST_PSEUDO_REGISTER)
5975 add_to_hard_reg_set (&s, reg->biggest_mode, dst_regno);
5976 else
5977 add_to_hard_reg_set (&s, PSEUDO_REGNO_MODE (dst_regno),
5978 reg_renumber[dst_regno]);
5979 AND_COMPL_HARD_REG_SET (live_hard_regs, s);
5980 }
5981 /* We should invalidate potential inheritance or
5982 splitting for the current insn usages to the next
5983 usage insns (see code below) as the output pseudo
5984 prevents this. */
5985 if ((dst_regno >= FIRST_PSEUDO_REGISTER
5986 && reg_renumber[dst_regno] < 0)
5987 || (reg->type == OP_OUT && ! reg->subreg_p
5988 && (dst_regno < FIRST_PSEUDO_REGISTER
5989 || reg_renumber[dst_regno] >= 0)))
5990 {
5991 /* Invalidate and mark definitions. */
5992 if (dst_regno >= FIRST_PSEUDO_REGISTER)
5993 usage_insns[dst_regno].check = -(int) INSN_UID (curr_insn);
5994 else
5995 {
5996 nregs = hard_regno_nregs[dst_regno][reg->biggest_mode];
5997 for (i = 0; i < nregs; i++)
5998 usage_insns[dst_regno + i].check
5999 = -(int) INSN_UID (curr_insn);
6000 }
6001 }
6002 }
9d86e84e
VM
6003 /* Process clobbered call regs. */
6004 if (curr_id->arg_hard_regs != NULL)
6005 for (i = 0; (dst_regno = curr_id->arg_hard_regs[i]) >= 0; i++)
6006 if (dst_regno >= FIRST_PSEUDO_REGISTER)
6007 usage_insns[dst_regno - FIRST_PSEUDO_REGISTER].check
6008 = -(int) INSN_UID (curr_insn);
55a2c322
VM
6009 if (! JUMP_P (curr_insn))
6010 for (i = 0; i < to_inherit_num; i++)
6011 if (inherit_reload_reg (true, to_inherit[i].regno,
6012 ALL_REGS, curr_insn,
6013 to_inherit[i].insns))
6014 change_p = true;
6015 if (CALL_P (curr_insn))
6016 {
cfa434f6
DM
6017 rtx cheap, pat, dest;
6018 rtx_insn *restore;
55a2c322
VM
6019 int regno, hard_regno;
6020
6021 calls_num++;
6022 if ((cheap = find_reg_note (curr_insn,
6023 REG_RETURNED, NULL_RTX)) != NULL_RTX
6024 && ((cheap = XEXP (cheap, 0)), true)
6025 && (regno = REGNO (cheap)) >= FIRST_PSEUDO_REGISTER
6026 && (hard_regno = reg_renumber[regno]) >= 0
6027 /* If there are pending saves/restores, the
6028 optimization is not worth. */
6029 && usage_insns[regno].calls_num == calls_num - 1
6030 && TEST_HARD_REG_BIT (call_used_reg_set, hard_regno))
6031 {
6032 /* Restore the pseudo from the call result as
6033 REG_RETURNED note says that the pseudo value is
6034 in the call result and the pseudo is an argument
6035 of the call. */
6036 pat = PATTERN (curr_insn);
6037 if (GET_CODE (pat) == PARALLEL)
6038 pat = XVECEXP (pat, 0, 0);
6039 dest = SET_DEST (pat);
54bddf1d
IE
6040 /* For multiple return values dest is PARALLEL.
6041 Currently we handle only single return value case. */
6042 if (REG_P (dest))
6043 {
6044 start_sequence ();
6045 emit_move_insn (cheap, copy_rtx (dest));
6046 restore = get_insns ();
6047 end_sequence ();
6048 lra_process_new_insns (curr_insn, NULL, restore,
6049 "Inserting call parameter restore");
6050 /* We don't need to save/restore of the pseudo from
6051 this call. */
6052 usage_insns[regno].calls_num = calls_num;
6053 bitmap_set_bit (&check_only_regs, regno);
6054 }
55a2c322
VM
6055 }
6056 }
6057 to_inherit_num = 0;
6058 /* Process insn usages. */
2f259720
VM
6059 for (iter = 0; iter < 2; iter++)
6060 for (reg = iter == 0 ? curr_id->regs : curr_static_id->hard_regs;
6061 reg != NULL;
6062 reg = reg->next)
6063 if ((reg->type != OP_OUT
6064 || (reg->type == OP_OUT && reg->subreg_p))
6065 && (src_regno = reg->regno) < lra_constraint_new_regno_start)
6066 {
6067 if (src_regno >= FIRST_PSEUDO_REGISTER
6068 && reg_renumber[src_regno] < 0 && reg->type == OP_IN)
6069 {
6070 if (usage_insns[src_regno].check == curr_usage_insns_check
6071 && (next_usage_insns
6072 = usage_insns[src_regno].insns) != NULL_RTX
6073 && NONDEBUG_INSN_P (curr_insn))
6074 add_to_inherit (src_regno, next_usage_insns);
6075 else if (usage_insns[src_regno].check
6076 != -(int) INSN_UID (curr_insn))
6077 /* Add usages but only if the reg is not set up
6078 in the same insn. */
6079 add_next_usage_insn (src_regno, curr_insn, reloads_num);
6080 }
6081 else if (src_regno < FIRST_PSEUDO_REGISTER
6082 || reg_renumber[src_regno] >= 0)
6083 {
6084 bool before_p;
e67d1102 6085 rtx_insn *use_insn = curr_insn;
2f259720
VM
6086
6087 before_p = (JUMP_P (curr_insn)
6088 || (CALL_P (curr_insn) && reg->type == OP_IN));
6089 if (NONDEBUG_INSN_P (curr_insn)
8e9d68a9 6090 && (! JUMP_P (curr_insn) || reg->type == OP_IN)
2f259720
VM
6091 && split_if_necessary (src_regno, reg->biggest_mode,
6092 potential_reload_hard_regs,
6093 before_p, curr_insn, max_uid))
6094 {
6095 if (reg->subreg_p)
6096 lra_risky_transformations_p = true;
6097 change_p = true;
8e9d68a9 6098 /* Invalidate. */
2f259720
VM
6099 usage_insns[src_regno].check = 0;
6100 if (before_p)
6101 use_insn = PREV_INSN (curr_insn);
6102 }
6103 if (NONDEBUG_INSN_P (curr_insn))
6104 {
6105 if (src_regno < FIRST_PSEUDO_REGISTER)
6106 add_to_hard_reg_set (&live_hard_regs,
6107 reg->biggest_mode, src_regno);
6108 else
6109 add_to_hard_reg_set (&live_hard_regs,
6110 PSEUDO_REGNO_MODE (src_regno),
6111 reg_renumber[src_regno]);
6112 }
6113 add_next_usage_insn (src_regno, use_insn, reloads_num);
6114 }
6115 }
9d86e84e 6116 /* Process used call regs. */
df2980be
VM
6117 if (curr_id->arg_hard_regs != NULL)
6118 for (i = 0; (src_regno = curr_id->arg_hard_regs[i]) >= 0; i++)
6119 if (src_regno < FIRST_PSEUDO_REGISTER)
6120 {
6121 SET_HARD_REG_BIT (live_hard_regs, src_regno);
6122 add_next_usage_insn (src_regno, curr_insn, reloads_num);
6123 }
55a2c322
VM
6124 for (i = 0; i < to_inherit_num; i++)
6125 {
6126 src_regno = to_inherit[i].regno;
6127 if (inherit_reload_reg (false, src_regno, ALL_REGS,
6128 curr_insn, to_inherit[i].insns))
6129 change_p = true;
6130 else
6131 setup_next_usage_insn (src_regno, curr_insn, reloads_num, false);
6132 }
6133 }
df2980be 6134 if (update_reloads_num_p
8a8330b7 6135 && NONDEBUG_INSN_P (curr_insn) && curr_set != NULL_RTX)
df2980be
VM
6136 {
6137 int regno = -1;
8a8330b7
VM
6138 if ((REG_P (SET_DEST (curr_set))
6139 && (regno = REGNO (SET_DEST (curr_set))) >= lra_constraint_new_regno_start
df2980be
VM
6140 && reg_renumber[regno] < 0
6141 && (cl = lra_get_allocno_class (regno)) != NO_REGS)
8a8330b7
VM
6142 || (REG_P (SET_SRC (curr_set))
6143 && (regno = REGNO (SET_SRC (curr_set))) >= lra_constraint_new_regno_start
df2980be
VM
6144 && reg_renumber[regno] < 0
6145 && (cl = lra_get_allocno_class (regno)) != NO_REGS))
6146 {
8e9d68a9
VM
6147 if (ira_class_hard_regs_num[cl] <= max_small_class_regs_num)
6148 reloads_num++;
df2980be
VM
6149 if (hard_reg_set_subset_p (reg_class_contents[cl], live_hard_regs))
6150 IOR_HARD_REG_SET (potential_reload_hard_regs,
6151 reg_class_contents[cl]);
6152 }
6153 }
8a8330b7
VM
6154 if (NONDEBUG_INSN_P (curr_insn))
6155 {
6156 int regno;
6157
6158 /* Invalidate invariants with changed regs. */
6159 curr_id = lra_get_insn_recog_data (curr_insn);
6160 for (reg = curr_id->regs; reg != NULL; reg = reg->next)
6161 if (reg->type != OP_IN)
6162 bitmap_set_bit (&invalid_invariant_regs, reg->regno);
6163 curr_static_id = curr_id->insn_static_data;
6164 for (reg = curr_static_id->hard_regs; reg != NULL; reg = reg->next)
6165 if (reg->type != OP_IN)
6166 bitmap_set_bit (&invalid_invariant_regs, reg->regno);
6167 if (curr_id->arg_hard_regs != NULL)
6168 for (i = 0; (regno = curr_id->arg_hard_regs[i]) >= 0; i++)
6169 bitmap_set_bit (&invalid_invariant_regs,
6170 regno >= FIRST_PSEUDO_REGISTER
6171 ? regno : regno - FIRST_PSEUDO_REGISTER);
6172 }
55a2c322
VM
6173 /* We reached the start of the current basic block. */
6174 if (prev_insn == NULL_RTX || prev_insn == PREV_INSN (head)
6175 || BLOCK_FOR_INSN (prev_insn) != curr_bb)
6176 {
6177 /* We reached the beginning of the current block -- do
6178 rest of spliting in the current BB. */
6179 to_process = df_get_live_in (curr_bb);
6180 if (BLOCK_FOR_INSN (head) != curr_bb)
f4eafc30 6181 {
55a2c322
VM
6182 /* We are somewhere in the middle of EBB. */
6183 get_live_on_other_edges (EDGE_PRED (curr_bb, 0)->src,
6184 curr_bb, &temp_bitmap);
6185 to_process = &temp_bitmap;
6186 }
6187 head_p = true;
6188 EXECUTE_IF_SET_IN_BITMAP (to_process, 0, j, bi)
6189 {
6190 if ((int) j >= lra_constraint_new_regno_start)
6191 break;
6192 if (((int) j < FIRST_PSEUDO_REGISTER || reg_renumber[j] >= 0)
6193 && usage_insns[j].check == curr_usage_insns_check
6194 && (next_usage_insns = usage_insns[j].insns) != NULL_RTX)
6195 {
6196 if (need_for_split_p (potential_reload_hard_regs, j))
6197 {
6198 if (lra_dump_file != NULL && head_p)
6199 {
6200 fprintf (lra_dump_file,
6201 " ----------------------------------\n");
6202 head_p = false;
6203 }
6204 if (split_reg (false, j, bb_note (curr_bb),
6205 next_usage_insns))
6206 change_p = true;
6207 }
6208 usage_insns[j].check = 0;
6209 }
6210 }
6211 }
6212 }
6213 return change_p;
6214}
6215
6216/* This value affects EBB forming. If probability of edge from EBB to
6217 a BB is not greater than the following value, we don't add the BB
f4eafc30 6218 to EBB. */
fb8a0e40
VM
6219#define EBB_PROBABILITY_CUTOFF \
6220 ((REG_BR_PROB_BASE * LRA_INHERITANCE_EBB_PROBABILITY_CUTOFF) / 100)
55a2c322
VM
6221
6222/* Current number of inheritance/split iteration. */
6223int lra_inheritance_iter;
6224
6225/* Entry function for inheritance/split pass. */
6226void
6227lra_inheritance (void)
6228{
6229 int i;
6230 basic_block bb, start_bb;
6231 edge e;
6232
55a2c322 6233 lra_inheritance_iter++;
8e3a4869 6234 if (lra_inheritance_iter > LRA_MAX_INHERITANCE_PASSES)
e731262b
VM
6235 return;
6236 timevar_push (TV_LRA_INHERITANCE);
55a2c322
VM
6237 if (lra_dump_file != NULL)
6238 fprintf (lra_dump_file, "\n********** Inheritance #%d: **********\n\n",
6239 lra_inheritance_iter);
6240 curr_usage_insns_check = 0;
6241 usage_insns = XNEWVEC (struct usage_insns, lra_constraint_new_regno_start);
6242 for (i = 0; i < lra_constraint_new_regno_start; i++)
6243 usage_insns[i].check = 0;
6244 bitmap_initialize (&check_only_regs, &reg_obstack);
8a8330b7 6245 bitmap_initialize (&invalid_invariant_regs, &reg_obstack);
55a2c322
VM
6246 bitmap_initialize (&live_regs, &reg_obstack);
6247 bitmap_initialize (&temp_bitmap, &reg_obstack);
6248 bitmap_initialize (&ebb_global_regs, &reg_obstack);
11cd3bed 6249 FOR_EACH_BB_FN (bb, cfun)
55a2c322
VM
6250 {
6251 start_bb = bb;
6252 if (lra_dump_file != NULL)
6253 fprintf (lra_dump_file, "EBB");
6254 /* Form a EBB starting with BB. */
6255 bitmap_clear (&ebb_global_regs);
6256 bitmap_ior_into (&ebb_global_regs, df_get_live_in (bb));
6257 for (;;)
6258 {
6259 if (lra_dump_file != NULL)
6260 fprintf (lra_dump_file, " %d", bb->index);
fefa31b5
DM
6261 if (bb->next_bb == EXIT_BLOCK_PTR_FOR_FN (cfun)
6262 || LABEL_P (BB_HEAD (bb->next_bb)))
55a2c322
VM
6263 break;
6264 e = find_fallthru_edge (bb->succs);
6265 if (! e)
6266 break;
fb8a0e40 6267 if (e->probability < EBB_PROBABILITY_CUTOFF)
55a2c322
VM
6268 break;
6269 bb = bb->next_bb;
6270 }
6271 bitmap_ior_into (&ebb_global_regs, df_get_live_out (bb));
6272 if (lra_dump_file != NULL)
6273 fprintf (lra_dump_file, "\n");
6274 if (inherit_in_ebb (BB_HEAD (start_bb), BB_END (bb)))
6275 /* Remember that the EBB head and tail can change in
6276 inherit_in_ebb. */
6277 update_ebb_live_info (BB_HEAD (start_bb), BB_END (bb));
6278 }
6279 bitmap_clear (&ebb_global_regs);
6280 bitmap_clear (&temp_bitmap);
6281 bitmap_clear (&live_regs);
8a8330b7 6282 bitmap_clear (&invalid_invariant_regs);
55a2c322
VM
6283 bitmap_clear (&check_only_regs);
6284 free (usage_insns);
6285
6286 timevar_pop (TV_LRA_INHERITANCE);
6287}
6288
6289\f
6290
6291/* This page contains code to undo failed inheritance/split
6292 transformations. */
6293
6294/* Current number of iteration undoing inheritance/split. */
6295int lra_undo_inheritance_iter;
6296
6297/* Fix BB live info LIVE after removing pseudos created on pass doing
6298 inheritance/split which are REMOVED_PSEUDOS. */
6299static void
6300fix_bb_live_info (bitmap live, bitmap removed_pseudos)
6301{
6302 unsigned int regno;
6303 bitmap_iterator bi;
6304
6305 EXECUTE_IF_SET_IN_BITMAP (removed_pseudos, 0, regno, bi)
8a8330b7
VM
6306 if (bitmap_clear_bit (live, regno)
6307 && REG_P (lra_reg_info[regno].restore_rtx))
6308 bitmap_set_bit (live, REGNO (lra_reg_info[regno].restore_rtx));
55a2c322
VM
6309}
6310
6311/* Return regno of the (subreg of) REG. Otherwise, return a negative
6312 number. */
6313static int
6314get_regno (rtx reg)
6315{
6316 if (GET_CODE (reg) == SUBREG)
6317 reg = SUBREG_REG (reg);
6318 if (REG_P (reg))
6319 return REGNO (reg);
6320 return -1;
6321}
6322
cefe08a4
VM
6323/* Delete a move INSN with destination reg DREGNO and a previous
6324 clobber insn with the same regno. The inheritance/split code can
6325 generate moves with preceding clobber and when we delete such moves
6326 we should delete the clobber insn too to keep the correct life
6327 info. */
6328static void
6329delete_move_and_clobber (rtx_insn *insn, int dregno)
6330{
6331 rtx_insn *prev_insn = PREV_INSN (insn);
6332
6333 lra_set_insn_deleted (insn);
79b57d18 6334 lra_assert (dregno >= 0);
cefe08a4
VM
6335 if (prev_insn != NULL && NONDEBUG_INSN_P (prev_insn)
6336 && GET_CODE (PATTERN (prev_insn)) == CLOBBER
6337 && dregno == get_regno (XEXP (PATTERN (prev_insn), 0)))
6338 lra_set_insn_deleted (prev_insn);
6339}
6340
55a2c322
VM
6341/* Remove inheritance/split pseudos which are in REMOVE_PSEUDOS and
6342 return true if we did any change. The undo transformations for
6343 inheritance looks like
6344 i <- i2
6345 p <- i => p <- i2
6346 or removing
6347 p <- i, i <- p, and i <- i3
6348 where p is original pseudo from which inheritance pseudo i was
6349 created, i and i3 are removed inheritance pseudos, i2 is another
6350 not removed inheritance pseudo. All split pseudos or other
6351 occurrences of removed inheritance pseudos are changed on the
6352 corresponding original pseudos.
6353
6354 The function also schedules insns changed and created during
6355 inheritance/split pass for processing by the subsequent constraint
6356 pass. */
6357static bool
6358remove_inheritance_pseudos (bitmap remove_pseudos)
6359{
6360 basic_block bb;
8a8330b7
VM
6361 int regno, sregno, prev_sregno, dregno;
6362 rtx restore_rtx;
cfa434f6
DM
6363 rtx set, prev_set;
6364 rtx_insn *prev_insn;
55a2c322
VM
6365 bool change_p, done_p;
6366
6367 change_p = ! bitmap_empty_p (remove_pseudos);
6368 /* We can not finish the function right away if CHANGE_P is true
6369 because we need to marks insns affected by previous
6370 inheritance/split pass for processing by the subsequent
6371 constraint pass. */
11cd3bed 6372 FOR_EACH_BB_FN (bb, cfun)
55a2c322
VM
6373 {
6374 fix_bb_live_info (df_get_live_in (bb), remove_pseudos);
6375 fix_bb_live_info (df_get_live_out (bb), remove_pseudos);
6376 FOR_BB_INSNS_REVERSE (bb, curr_insn)
6377 {
6378 if (! INSN_P (curr_insn))
6379 continue;
6380 done_p = false;
6381 sregno = dregno = -1;
6382 if (change_p && NONDEBUG_INSN_P (curr_insn)
6383 && (set = single_set (curr_insn)) != NULL_RTX)
6384 {
6385 dregno = get_regno (SET_DEST (set));
6386 sregno = get_regno (SET_SRC (set));
6387 }
f4eafc30 6388
55a2c322
VM
6389 if (sregno >= 0 && dregno >= 0)
6390 {
8a8330b7
VM
6391 if (bitmap_bit_p (remove_pseudos, dregno)
6392 && ! REG_P (lra_reg_info[dregno].restore_rtx))
6393 {
6394 /* invariant inheritance pseudo <- original pseudo */
6395 if (lra_dump_file != NULL)
6396 {
6397 fprintf (lra_dump_file, " Removing invariant inheritance:\n");
6398 dump_insn_slim (lra_dump_file, curr_insn);
6399 fprintf (lra_dump_file, "\n");
6400 }
6401 delete_move_and_clobber (curr_insn, dregno);
6402 done_p = true;
6403 }
6404 else if (bitmap_bit_p (remove_pseudos, sregno)
6405 && ! REG_P (lra_reg_info[sregno].restore_rtx))
6406 {
6407 /* reload pseudo <- invariant inheritance pseudo */
6408 start_sequence ();
6409 /* We can not just change the source. It might be
6410 an insn different from the move. */
b10d44ef 6411 emit_insn (lra_reg_info[sregno].restore_rtx);
8a8330b7
VM
6412 rtx_insn *new_insns = get_insns ();
6413 end_sequence ();
b10d44ef
VM
6414 lra_assert (single_set (new_insns) != NULL
6415 && SET_DEST (set) == SET_DEST (single_set (new_insns)));
8a8330b7
VM
6416 lra_process_new_insns (curr_insn, NULL, new_insns,
6417 "Changing reload<-invariant inheritance");
6418 delete_move_and_clobber (curr_insn, dregno);
6419 done_p = true;
6420 }
6421 else if ((bitmap_bit_p (remove_pseudos, sregno)
6422 && (get_regno (lra_reg_info[sregno].restore_rtx) == dregno
6423 || (bitmap_bit_p (remove_pseudos, dregno)
6424 && get_regno (lra_reg_info[sregno].restore_rtx) >= 0
6425 && (get_regno (lra_reg_info[sregno].restore_rtx)
6426 == get_regno (lra_reg_info[dregno].restore_rtx)))))
55a2c322 6427 || (bitmap_bit_p (remove_pseudos, dregno)
8a8330b7 6428 && get_regno (lra_reg_info[dregno].restore_rtx) == sregno))
55a2c322
VM
6429 /* One of the following cases:
6430 original <- removed inheritance pseudo
6431 removed inherit pseudo <- another removed inherit pseudo
6432 removed inherit pseudo <- original pseudo
6433 Or
6434 removed_split_pseudo <- original_reg
6435 original_reg <- removed_split_pseudo */
6436 {
6437 if (lra_dump_file != NULL)
6438 {
6439 fprintf (lra_dump_file, " Removing %s:\n",
6440 bitmap_bit_p (&lra_split_regs, sregno)
6441 || bitmap_bit_p (&lra_split_regs, dregno)
6442 ? "split" : "inheritance");
cfbeaedf 6443 dump_insn_slim (lra_dump_file, curr_insn);
55a2c322 6444 }
cefe08a4 6445 delete_move_and_clobber (curr_insn, dregno);
55a2c322
VM
6446 done_p = true;
6447 }
6448 else if (bitmap_bit_p (remove_pseudos, sregno)
6449 && bitmap_bit_p (&lra_inheritance_pseudos, sregno))
6450 {
6451 /* Search the following pattern:
6452 inherit_or_split_pseudo1 <- inherit_or_split_pseudo2
6453 original_pseudo <- inherit_or_split_pseudo1
6454 where the 2nd insn is the current insn and
6455 inherit_or_split_pseudo2 is not removed. If it is found,
6456 change the current insn onto:
6457 original_pseudo <- inherit_or_split_pseudo2. */
6458 for (prev_insn = PREV_INSN (curr_insn);
6459 prev_insn != NULL_RTX && ! NONDEBUG_INSN_P (prev_insn);
6460 prev_insn = PREV_INSN (prev_insn))
6461 ;
6462 if (prev_insn != NULL_RTX && BLOCK_FOR_INSN (prev_insn) == bb
6463 && (prev_set = single_set (prev_insn)) != NULL_RTX
6464 /* There should be no subregs in insn we are
6465 searching because only the original reg might
6466 be in subreg when we changed the mode of
6467 load/store for splitting. */
6468 && REG_P (SET_DEST (prev_set))
6469 && REG_P (SET_SRC (prev_set))
6470 && (int) REGNO (SET_DEST (prev_set)) == sregno
6471 && ((prev_sregno = REGNO (SET_SRC (prev_set)))
6472 >= FIRST_PSEUDO_REGISTER)
8a8330b7
VM
6473 && (lra_reg_info[prev_sregno].restore_rtx == NULL_RTX
6474 ||
6475 /* As we consider chain of inheritance or
6476 splitting described in above comment we should
6477 check that sregno and prev_sregno were
6478 inheritance/split pseudos created from the
6479 same original regno. */
6480 (get_regno (lra_reg_info[sregno].restore_rtx) >= 0
6481 && (get_regno (lra_reg_info[sregno].restore_rtx)
6482 == get_regno (lra_reg_info[prev_sregno].restore_rtx))))
55a2c322
VM
6483 && ! bitmap_bit_p (remove_pseudos, prev_sregno))
6484 {
6485 lra_assert (GET_MODE (SET_SRC (prev_set))
6486 == GET_MODE (regno_reg_rtx[sregno]));
6487 if (GET_CODE (SET_SRC (set)) == SUBREG)
6488 SUBREG_REG (SET_SRC (set)) = SET_SRC (prev_set);
6489 else
6490 SET_SRC (set) = SET_SRC (prev_set);
12b308fa
VM
6491 /* As we are finishing with processing the insn
6492 here, check the destination too as it might
6493 inheritance pseudo for another pseudo. */
6494 if (bitmap_bit_p (remove_pseudos, dregno)
6495 && bitmap_bit_p (&lra_inheritance_pseudos, dregno)
8a8330b7
VM
6496 && (restore_rtx
6497 = lra_reg_info[dregno].restore_rtx) != NULL_RTX)
12b308fa
VM
6498 {
6499 if (GET_CODE (SET_DEST (set)) == SUBREG)
8a8330b7 6500 SUBREG_REG (SET_DEST (set)) = restore_rtx;
12b308fa 6501 else
8a8330b7 6502 SET_DEST (set) = restore_rtx;
12b308fa 6503 }
55a2c322
VM
6504 lra_push_insn_and_update_insn_regno_info (curr_insn);
6505 lra_set_used_insn_alternative_by_uid
6506 (INSN_UID (curr_insn), -1);
6507 done_p = true;
6508 if (lra_dump_file != NULL)
6509 {
6510 fprintf (lra_dump_file, " Change reload insn:\n");
cfbeaedf 6511 dump_insn_slim (lra_dump_file, curr_insn);
55a2c322
VM
6512 }
6513 }
6514 }
6515 }
6516 if (! done_p)
6517 {
6518 struct lra_insn_reg *reg;
6519 bool restored_regs_p = false;
6520 bool kept_regs_p = false;
6521
6522 curr_id = lra_get_insn_recog_data (curr_insn);
6523 for (reg = curr_id->regs; reg != NULL; reg = reg->next)
6524 {
6525 regno = reg->regno;
8a8330b7
VM
6526 restore_rtx = lra_reg_info[regno].restore_rtx;
6527 if (restore_rtx != NULL_RTX)
55a2c322
VM
6528 {
6529 if (change_p && bitmap_bit_p (remove_pseudos, regno))
6530 {
ef87312e 6531 lra_substitute_pseudo_within_insn
8a8330b7 6532 (curr_insn, regno, restore_rtx, false);
55a2c322
VM
6533 restored_regs_p = true;
6534 }
6535 else
6536 kept_regs_p = true;
6537 }
6538 }
6539 if (NONDEBUG_INSN_P (curr_insn) && kept_regs_p)
6540 {
6541 /* The instruction has changed since the previous
6542 constraints pass. */
6543 lra_push_insn_and_update_insn_regno_info (curr_insn);
6544 lra_set_used_insn_alternative_by_uid
6545 (INSN_UID (curr_insn), -1);
6546 }
6547 else if (restored_regs_p)
6548 /* The instruction has been restored to the form that
6549 it had during the previous constraints pass. */
6550 lra_update_insn_regno_info (curr_insn);
6551 if (restored_regs_p && lra_dump_file != NULL)
6552 {
6553 fprintf (lra_dump_file, " Insn after restoring regs:\n");
cfbeaedf 6554 dump_insn_slim (lra_dump_file, curr_insn);
55a2c322
VM
6555 }
6556 }
6557 }
6558 }
6559 return change_p;
6560}
6561
2b778c9d
VM
6562/* If optional reload pseudos failed to get a hard register or was not
6563 inherited, it is better to remove optional reloads. We do this
6564 transformation after undoing inheritance to figure out necessity to
6565 remove optional reloads easier. Return true if we do any
6566 change. */
6567static bool
6568undo_optional_reloads (void)
6569{
b0681c9e 6570 bool change_p, keep_p;
2b778c9d
VM
6571 unsigned int regno, uid;
6572 bitmap_iterator bi, bi2;
cfa434f6
DM
6573 rtx_insn *insn;
6574 rtx set, src, dest;
2b778c9d
VM
6575 bitmap_head removed_optional_reload_pseudos, insn_bitmap;
6576
6577 bitmap_initialize (&removed_optional_reload_pseudos, &reg_obstack);
6578 bitmap_copy (&removed_optional_reload_pseudos, &lra_optional_reload_pseudos);
6579 EXECUTE_IF_SET_IN_BITMAP (&lra_optional_reload_pseudos, 0, regno, bi)
aa940f7c
VM
6580 {
6581 keep_p = false;
080cbf9e 6582 /* Keep optional reloads from previous subpasses. */
8a8330b7 6583 if (lra_reg_info[regno].restore_rtx == NULL_RTX
080cbf9e
VM
6584 /* If the original pseudo changed its allocation, just
6585 removing the optional pseudo is dangerous as the original
6586 pseudo will have longer live range. */
8a8330b7 6587 || reg_renumber[REGNO (lra_reg_info[regno].restore_rtx)] >= 0)
aa940f7c
VM
6588 keep_p = true;
6589 else if (reg_renumber[regno] >= 0)
6590 EXECUTE_IF_SET_IN_BITMAP (&lra_reg_info[regno].insn_bitmap, 0, uid, bi2)
b0681c9e 6591 {
aa940f7c
VM
6592 insn = lra_insn_recog_data[uid]->insn;
6593 if ((set = single_set (insn)) == NULL_RTX)
6594 continue;
6595 src = SET_SRC (set);
6596 dest = SET_DEST (set);
6597 if (! REG_P (src) || ! REG_P (dest))
6598 continue;
6599 if (REGNO (dest) == regno
6600 /* Ignore insn for optional reloads itself. */
8a8330b7 6601 && REGNO (lra_reg_info[regno].restore_rtx) != REGNO (src)
aa940f7c
VM
6602 /* Check only inheritance on last inheritance pass. */
6603 && (int) REGNO (src) >= new_regno_start
6604 /* Check that the optional reload was inherited. */
6605 && bitmap_bit_p (&lra_inheritance_pseudos, REGNO (src)))
6606 {
6607 keep_p = true;
6608 break;
6609 }
b0681c9e 6610 }
aa940f7c
VM
6611 if (keep_p)
6612 {
6613 bitmap_clear_bit (&removed_optional_reload_pseudos, regno);
6614 if (lra_dump_file != NULL)
6615 fprintf (lra_dump_file, "Keep optional reload reg %d\n", regno);
6616 }
6617 }
2b778c9d
VM
6618 change_p = ! bitmap_empty_p (&removed_optional_reload_pseudos);
6619 bitmap_initialize (&insn_bitmap, &reg_obstack);
6620 EXECUTE_IF_SET_IN_BITMAP (&removed_optional_reload_pseudos, 0, regno, bi)
6621 {
6622 if (lra_dump_file != NULL)
6623 fprintf (lra_dump_file, "Remove optional reload reg %d\n", regno);
6624 bitmap_copy (&insn_bitmap, &lra_reg_info[regno].insn_bitmap);
6625 EXECUTE_IF_SET_IN_BITMAP (&insn_bitmap, 0, uid, bi2)
6626 {
6627 insn = lra_insn_recog_data[uid]->insn;
6628 if ((set = single_set (insn)) != NULL_RTX)
6629 {
6630 src = SET_SRC (set);
6631 dest = SET_DEST (set);
6632 if (REG_P (src) && REG_P (dest)
6633 && ((REGNO (src) == regno
8a8330b7
VM
6634 && (REGNO (lra_reg_info[regno].restore_rtx)
6635 == REGNO (dest)))
2b778c9d 6636 || (REGNO (dest) == regno
8a8330b7
VM
6637 && (REGNO (lra_reg_info[regno].restore_rtx)
6638 == REGNO (src)))))
2b778c9d
VM
6639 {
6640 if (lra_dump_file != NULL)
6641 {
6642 fprintf (lra_dump_file, " Deleting move %u\n",
6643 INSN_UID (insn));
6644 dump_insn_slim (lra_dump_file, insn);
6645 }
cefe08a4 6646 delete_move_and_clobber (insn, REGNO (dest));
2b778c9d
VM
6647 continue;
6648 }
6649 /* We should not worry about generation memory-memory
6650 moves here as if the corresponding inheritance did
6651 not work (inheritance pseudo did not get a hard reg),
6652 we remove the inheritance pseudo and the optional
6653 reload. */
6654 }
ef87312e 6655 lra_substitute_pseudo_within_insn
8a8330b7 6656 (insn, regno, lra_reg_info[regno].restore_rtx, false);
2b778c9d
VM
6657 lra_update_insn_regno_info (insn);
6658 if (lra_dump_file != NULL)
6659 {
6660 fprintf (lra_dump_file,
6661 " Restoring original insn:\n");
6662 dump_insn_slim (lra_dump_file, insn);
6663 }
6664 }
6665 }
6666 /* Clear restore_regnos. */
6667 EXECUTE_IF_SET_IN_BITMAP (&lra_optional_reload_pseudos, 0, regno, bi)
8a8330b7 6668 lra_reg_info[regno].restore_rtx = NULL_RTX;
2b778c9d
VM
6669 bitmap_clear (&insn_bitmap);
6670 bitmap_clear (&removed_optional_reload_pseudos);
6671 return change_p;
6672}
6673
55a2c322
VM
6674/* Entry function for undoing inheritance/split transformation. Return true
6675 if we did any RTL change in this pass. */
6676bool
6677lra_undo_inheritance (void)
6678{
6679 unsigned int regno;
8a8330b7 6680 int hard_regno;
55a2c322 6681 int n_all_inherit, n_inherit, n_all_split, n_split;
8a8330b7 6682 rtx restore_rtx;
55a2c322
VM
6683 bitmap_head remove_pseudos;
6684 bitmap_iterator bi;
6685 bool change_p;
6686
6687 lra_undo_inheritance_iter++;
8e3a4869 6688 if (lra_undo_inheritance_iter > LRA_MAX_INHERITANCE_PASSES)
e731262b 6689 return false;
55a2c322
VM
6690 if (lra_dump_file != NULL)
6691 fprintf (lra_dump_file,
6692 "\n********** Undoing inheritance #%d: **********\n\n",
6693 lra_undo_inheritance_iter);
6694 bitmap_initialize (&remove_pseudos, &reg_obstack);
6695 n_inherit = n_all_inherit = 0;
6696 EXECUTE_IF_SET_IN_BITMAP (&lra_inheritance_pseudos, 0, regno, bi)
8a8330b7 6697 if (lra_reg_info[regno].restore_rtx != NULL_RTX)
55a2c322
VM
6698 {
6699 n_all_inherit++;
b0681c9e
VM
6700 if (reg_renumber[regno] < 0
6701 /* If the original pseudo changed its allocation, just
6702 removing inheritance is dangerous as for changing
6703 allocation we used shorter live-ranges. */
8a8330b7
VM
6704 && (! REG_P (lra_reg_info[regno].restore_rtx)
6705 || reg_renumber[REGNO (lra_reg_info[regno].restore_rtx)] < 0))
55a2c322
VM
6706 bitmap_set_bit (&remove_pseudos, regno);
6707 else
6708 n_inherit++;
6709 }
6710 if (lra_dump_file != NULL && n_all_inherit != 0)
6711 fprintf (lra_dump_file, "Inherit %d out of %d (%.2f%%)\n",
6712 n_inherit, n_all_inherit,
6713 (double) n_inherit / n_all_inherit * 100);
6714 n_split = n_all_split = 0;
6715 EXECUTE_IF_SET_IN_BITMAP (&lra_split_regs, 0, regno, bi)
8a8330b7 6716 if ((restore_rtx = lra_reg_info[regno].restore_rtx) != NULL_RTX)
55a2c322 6717 {
8a8330b7
VM
6718 int restore_regno = REGNO (restore_rtx);
6719
55a2c322
VM
6720 n_all_split++;
6721 hard_regno = (restore_regno >= FIRST_PSEUDO_REGISTER
6722 ? reg_renumber[restore_regno] : restore_regno);
6723 if (hard_regno < 0 || reg_renumber[regno] == hard_regno)
6724 bitmap_set_bit (&remove_pseudos, regno);
6725 else
6726 {
6727 n_split++;
6728 if (lra_dump_file != NULL)
6729 fprintf (lra_dump_file, " Keep split r%d (orig=r%d)\n",
6730 regno, restore_regno);
6731 }
6732 }
6733 if (lra_dump_file != NULL && n_all_split != 0)
6734 fprintf (lra_dump_file, "Split %d out of %d (%.2f%%)\n",
6735 n_split, n_all_split,
6736 (double) n_split / n_all_split * 100);
6737 change_p = remove_inheritance_pseudos (&remove_pseudos);
6738 bitmap_clear (&remove_pseudos);
6739 /* Clear restore_regnos. */
6740 EXECUTE_IF_SET_IN_BITMAP (&lra_inheritance_pseudos, 0, regno, bi)
8a8330b7 6741 lra_reg_info[regno].restore_rtx = NULL_RTX;
55a2c322 6742 EXECUTE_IF_SET_IN_BITMAP (&lra_split_regs, 0, regno, bi)
8a8330b7 6743 lra_reg_info[regno].restore_rtx = NULL_RTX;
2b778c9d 6744 change_p = undo_optional_reloads () || change_p;
55a2c322
VM
6745 return change_p;
6746}