1 /* Move registers around to reduce number of move instructions needed.
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
23 /* This module makes some simple RTL code transformations which
24 improve the subsequent register allocation. */
28 #include "coretypes.h"
30 #include "rtl.h" /* stdio.h must precede rtl.h for FFS. */
32 #include "insn-config.h"
36 #include "hard-reg-set.h"
40 #include "basic-block.h"
45 #include "tree-pass.h"
48 static int optimize_reg_copy_1 (rtx
, rtx
, rtx
);
49 static void optimize_reg_copy_2 (rtx
, rtx
, rtx
);
50 static void optimize_reg_copy_3 (rtx
, rtx
, rtx
);
51 static void copy_src_to_dest (rtx
, rtx
, rtx
);
54 int with
[MAX_RECOG_OPERANDS
];
55 enum { READ
, WRITE
, READWRITE
} use
[MAX_RECOG_OPERANDS
];
56 int commutative
[MAX_RECOG_OPERANDS
];
57 int early_clobber
[MAX_RECOG_OPERANDS
];
60 static int find_matches (rtx
, struct match
*);
61 static int regclass_compatible_p (int, int);
62 static int fixup_match_2 (rtx
, rtx
, rtx
, rtx
);
64 /* Return nonzero if registers with CLASS1 and CLASS2 can be merged without
65 causing too much register allocation problems. */
67 regclass_compatible_p (int class0
, int class1
)
69 return (class0
== class1
70 || (reg_class_subset_p (class0
, class1
)
71 && ! CLASS_LIKELY_SPILLED_P (class0
))
72 || (reg_class_subset_p (class1
, class0
)
73 && ! CLASS_LIKELY_SPILLED_P (class1
)));
79 /* Find the place in the rtx X where REG is used as a memory address.
80 Return the MEM rtx that so uses it.
81 If PLUSCONST is nonzero, search instead for a memory address equivalent to
82 (plus REG (const_int PLUSCONST)).
84 If such an address does not appear, return 0.
85 If REG appears more than once, or is used other than in such an address,
89 find_use_as_address (rtx x
, rtx reg
, HOST_WIDE_INT plusconst
)
91 enum rtx_code code
= GET_CODE (x
);
92 const char * const fmt
= GET_RTX_FORMAT (code
);
97 if (code
== MEM
&& XEXP (x
, 0) == reg
&& plusconst
== 0)
100 if (code
== MEM
&& GET_CODE (XEXP (x
, 0)) == PLUS
101 && XEXP (XEXP (x
, 0), 0) == reg
102 && GET_CODE (XEXP (XEXP (x
, 0), 1)) == CONST_INT
103 && INTVAL (XEXP (XEXP (x
, 0), 1)) == plusconst
)
106 if (code
== SIGN_EXTRACT
|| code
== ZERO_EXTRACT
)
108 /* If REG occurs inside a MEM used in a bit-field reference,
109 that is unacceptable. */
110 if (find_use_as_address (XEXP (x
, 0), reg
, 0) != 0)
111 return (rtx
) (size_t) 1;
115 return (rtx
) (size_t) 1;
117 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
121 tem
= find_use_as_address (XEXP (x
, i
), reg
, plusconst
);
125 return (rtx
) (size_t) 1;
127 else if (fmt
[i
] == 'E')
130 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
132 tem
= find_use_as_address (XVECEXP (x
, i
, j
), reg
, plusconst
);
136 return (rtx
) (size_t) 1;
145 /* INC_INSN is an instruction that adds INCREMENT to REG.
146 Try to fold INC_INSN as a post/pre in/decrement into INSN.
147 Iff INC_INSN_SET is nonzero, inc_insn has a destination different from src.
148 Return nonzero for success. */
150 try_auto_increment (rtx insn
, rtx inc_insn
, rtx inc_insn_set
, rtx reg
,
151 HOST_WIDE_INT increment
, int pre
)
153 enum rtx_code inc_code
;
155 rtx pset
= single_set (insn
);
158 /* Can't use the size of SET_SRC, we might have something like
159 (sign_extend:SI (mem:QI ... */
160 rtx use
= find_use_as_address (pset
, reg
, 0);
161 if (use
!= 0 && use
!= (rtx
) (size_t) 1)
163 int size
= GET_MODE_SIZE (GET_MODE (use
));
165 || (HAVE_POST_INCREMENT
166 && pre
== 0 && (inc_code
= POST_INC
, increment
== size
))
167 || (HAVE_PRE_INCREMENT
168 && pre
== 1 && (inc_code
= PRE_INC
, increment
== size
))
169 || (HAVE_POST_DECREMENT
170 && pre
== 0 && (inc_code
= POST_DEC
, increment
== -size
))
171 || (HAVE_PRE_DECREMENT
172 && pre
== 1 && (inc_code
= PRE_DEC
, increment
== -size
))
178 &SET_SRC (inc_insn_set
),
179 XEXP (SET_SRC (inc_insn_set
), 0), 1);
180 validate_change (insn
, &XEXP (use
, 0),
181 gen_rtx_fmt_e (inc_code
, Pmode
, reg
), 1);
182 if (apply_change_group ())
184 /* If there is a REG_DEAD note on this insn, we must
185 change this not to REG_UNUSED meaning that the register
186 is set, but the value is dead. Failure to do so will
187 result in sched1 dying -- when it recomputes lifetime
188 information, the number of REG_DEAD notes will have
190 rtx note
= find_reg_note (insn
, REG_DEAD
, reg
);
192 PUT_MODE (note
, REG_UNUSED
);
194 add_reg_note (insn
, REG_INC
, reg
);
197 delete_insn (inc_insn
);
208 static int *regno_src_regno
;
210 /* INSN is a copy from SRC to DEST, both registers, and SRC does not die
213 Search forward to see if SRC dies before either it or DEST is modified,
214 but don't scan past the end of a basic block. If so, we can replace SRC
215 with DEST and let SRC die in INSN.
217 This will reduce the number of registers live in that range and may enable
218 DEST to be tied to SRC, thus often saving one register in addition to a
219 register-register copy. */
222 optimize_reg_copy_1 (rtx insn
, rtx dest
, rtx src
)
227 int sregno
= REGNO (src
);
228 int dregno
= REGNO (dest
);
229 basic_block bb
= BLOCK_FOR_INSN (insn
);
231 /* We don't want to mess with hard regs if register classes are small. */
233 || (SMALL_REGISTER_CLASSES
234 && (sregno
< FIRST_PSEUDO_REGISTER
235 || dregno
< FIRST_PSEUDO_REGISTER
))
236 /* We don't see all updates to SP if they are in an auto-inc memory
237 reference, so we must disallow this optimization on them. */
238 || sregno
== STACK_POINTER_REGNUM
|| dregno
== STACK_POINTER_REGNUM
)
241 for (p
= NEXT_INSN (insn
); p
; p
= NEXT_INSN (p
))
245 if (BLOCK_FOR_INSN (p
) != bb
)
248 if (reg_set_p (src
, p
) || reg_set_p (dest
, p
)
249 /* If SRC is an asm-declared register, it must not be replaced
250 in any asm. Unfortunately, the REG_EXPR tree for the asm
251 variable may be absent in the SRC rtx, so we can't check the
252 actual register declaration easily (the asm operand will have
253 it, though). To avoid complicating the test for a rare case,
254 we just don't perform register replacement for a hard reg
255 mentioned in an asm. */
256 || (sregno
< FIRST_PSEUDO_REGISTER
257 && asm_noperands (PATTERN (p
)) >= 0
258 && reg_overlap_mentioned_p (src
, PATTERN (p
)))
259 /* Don't change hard registers used by a call. */
260 || (CALL_P (p
) && sregno
< FIRST_PSEUDO_REGISTER
261 && find_reg_fusage (p
, USE
, src
))
262 /* Don't change a USE of a register. */
263 || (GET_CODE (PATTERN (p
)) == USE
264 && reg_overlap_mentioned_p (src
, XEXP (PATTERN (p
), 0))))
267 /* See if all of SRC dies in P. This test is slightly more
268 conservative than it needs to be. */
269 if ((note
= find_regno_note (p
, REG_DEAD
, sregno
)) != 0
270 && GET_MODE (XEXP (note
, 0)) == GET_MODE (src
))
277 int s_freq_calls
= 0;
278 int d_freq_calls
= 0;
280 /* We can do the optimization. Scan forward from INSN again,
281 replacing regs as we go. Set FAILED if a replacement can't
282 be done. In that case, we can't move the death note for SRC.
283 This should be rare. */
285 /* Set to stop at next insn. */
286 for (q
= next_real_insn (insn
);
287 q
!= next_real_insn (p
);
288 q
= next_real_insn (q
))
290 if (reg_overlap_mentioned_p (src
, PATTERN (q
)))
292 /* If SRC is a hard register, we might miss some
293 overlapping registers with validate_replace_rtx,
294 so we would have to undo it. We can't if DEST is
295 present in the insn, so fail in that combination
297 if (sregno
< FIRST_PSEUDO_REGISTER
298 && reg_mentioned_p (dest
, PATTERN (q
)))
301 /* Attempt to replace all uses. */
302 else if (!validate_replace_rtx (src
, dest
, q
))
305 /* If this succeeded, but some part of the register
306 is still present, undo the replacement. */
307 else if (sregno
< FIRST_PSEUDO_REGISTER
308 && reg_overlap_mentioned_p (src
, PATTERN (q
)))
310 validate_replace_rtx (dest
, src
, q
);
315 /* For SREGNO, count the total number of insns scanned.
316 For DREGNO, count the total number of insns scanned after
317 passing the death note for DREGNO. */
322 /* If the insn in which SRC dies is a CALL_INSN, don't count it
323 as a call that has been crossed. Otherwise, count it. */
324 if (q
!= p
&& CALL_P (q
))
326 /* Similarly, total calls for SREGNO, total calls beyond
327 the death note for DREGNO. */
329 s_freq_calls
+= REG_FREQ_FROM_BB (BLOCK_FOR_INSN (q
));
333 d_freq_calls
+= REG_FREQ_FROM_BB (BLOCK_FOR_INSN (q
));
337 /* If DEST dies here, remove the death note and save it for
338 later. Make sure ALL of DEST dies here; again, this is
339 overly conservative. */
341 && (dest_death
= find_regno_note (q
, REG_DEAD
, dregno
)) != 0)
343 if (GET_MODE (XEXP (dest_death
, 0)) != GET_MODE (dest
))
344 failed
= 1, dest_death
= 0;
346 remove_note (q
, dest_death
);
352 /* These counters need to be updated if and only if we are
353 going to move the REG_DEAD note. */
354 if (sregno
>= FIRST_PSEUDO_REGISTER
)
356 if (REG_LIVE_LENGTH (sregno
) >= 0)
358 REG_LIVE_LENGTH (sregno
) -= s_length
;
359 /* REG_LIVE_LENGTH is only an approximation after
360 combine if sched is not run, so make sure that we
361 still have a reasonable value. */
362 if (REG_LIVE_LENGTH (sregno
) < 2)
363 REG_LIVE_LENGTH (sregno
) = 2;
366 REG_N_CALLS_CROSSED (sregno
) -= s_n_calls
;
367 REG_FREQ_CALLS_CROSSED (sregno
) -= s_freq_calls
;
370 /* Move death note of SRC from P to INSN. */
371 remove_note (p
, note
);
372 XEXP (note
, 1) = REG_NOTES (insn
);
373 REG_NOTES (insn
) = note
;
376 /* DEST is also dead if INSN has a REG_UNUSED note for DEST. */
378 && (dest_death
= find_regno_note (insn
, REG_UNUSED
, dregno
)))
380 PUT_REG_NOTE_KIND (dest_death
, REG_DEAD
);
381 remove_note (insn
, dest_death
);
384 /* Put death note of DEST on P if we saw it die. */
387 XEXP (dest_death
, 1) = REG_NOTES (p
);
388 REG_NOTES (p
) = dest_death
;
390 if (dregno
>= FIRST_PSEUDO_REGISTER
)
392 /* If and only if we are moving the death note for DREGNO,
393 then we need to update its counters. */
394 if (REG_LIVE_LENGTH (dregno
) >= 0)
395 REG_LIVE_LENGTH (dregno
) += d_length
;
396 REG_N_CALLS_CROSSED (dregno
) += d_n_calls
;
397 REG_FREQ_CALLS_CROSSED (dregno
) += d_freq_calls
;
404 /* If SRC is a hard register which is set or killed in some other
405 way, we can't do this optimization. */
406 else if (sregno
< FIRST_PSEUDO_REGISTER
407 && dead_or_set_p (p
, src
))
413 /* INSN is a copy of SRC to DEST, in which SRC dies. See if we now have
414 a sequence of insns that modify DEST followed by an insn that sets
415 SRC to DEST in which DEST dies, with no prior modification of DEST.
416 (There is no need to check if the insns in between actually modify
417 DEST. We should not have cases where DEST is not modified, but
418 the optimization is safe if no such modification is detected.)
419 In that case, we can replace all uses of DEST, starting with INSN and
420 ending with the set of SRC to DEST, with SRC. We do not do this
421 optimization if a CALL_INSN is crossed unless SRC already crosses a
422 call or if DEST dies before the copy back to SRC.
424 It is assumed that DEST and SRC are pseudos; it is too complicated to do
425 this for hard registers since the substitutions we may make might fail. */
428 optimize_reg_copy_2 (rtx insn
, rtx dest
, rtx src
)
432 int sregno
= REGNO (src
);
433 int dregno
= REGNO (dest
);
434 basic_block bb
= BLOCK_FOR_INSN (insn
);
436 for (p
= NEXT_INSN (insn
); p
; p
= NEXT_INSN (p
))
440 if (BLOCK_FOR_INSN (p
) != bb
)
443 set
= single_set (p
);
444 if (set
&& SET_SRC (set
) == dest
&& SET_DEST (set
) == src
445 && find_reg_note (p
, REG_DEAD
, dest
))
447 /* We can do the optimization. Scan forward from INSN again,
448 replacing regs as we go. */
450 /* Set to stop at next insn. */
451 for (q
= insn
; q
!= NEXT_INSN (p
); q
= NEXT_INSN (q
))
454 if (reg_mentioned_p (dest
, PATTERN (q
)))
458 PATTERN (q
) = replace_rtx (PATTERN (q
), dest
, src
);
459 note
= FIND_REG_INC_NOTE (q
, dest
);
462 remove_note (q
, note
);
463 add_reg_note (q
, REG_INC
, src
);
470 int freq
= REG_FREQ_FROM_BB (BLOCK_FOR_INSN (q
));
471 REG_N_CALLS_CROSSED (dregno
)--;
472 REG_N_CALLS_CROSSED (sregno
)++;
473 REG_FREQ_CALLS_CROSSED (dregno
) -= freq
;
474 REG_FREQ_CALLS_CROSSED (sregno
) += freq
;
478 remove_note (p
, find_reg_note (p
, REG_DEAD
, dest
));
479 REG_N_DEATHS (dregno
)--;
480 remove_note (insn
, find_reg_note (insn
, REG_DEAD
, src
));
481 REG_N_DEATHS (sregno
)--;
485 if (reg_set_p (src
, p
)
486 || find_reg_note (p
, REG_DEAD
, dest
)
487 || (CALL_P (p
) && REG_N_CALLS_CROSSED (sregno
) == 0))
492 /* INSN is a ZERO_EXTEND or SIGN_EXTEND of SRC to DEST.
493 Look if SRC dies there, and if it is only set once, by loading
494 it from memory. If so, try to incorporate the zero/sign extension
495 into the memory read, change SRC to the mode of DEST, and alter
496 the remaining accesses to use the appropriate SUBREG. This allows
497 SRC and DEST to be tied later. */
499 optimize_reg_copy_3 (rtx insn
, rtx dest
, rtx src
)
501 rtx src_reg
= XEXP (src
, 0);
502 int src_no
= REGNO (src_reg
);
503 int dst_no
= REGNO (dest
);
505 enum machine_mode old_mode
;
506 basic_block bb
= BLOCK_FOR_INSN (insn
);
508 if (src_no
< FIRST_PSEUDO_REGISTER
509 || dst_no
< FIRST_PSEUDO_REGISTER
510 || ! find_reg_note (insn
, REG_DEAD
, src_reg
)
511 || REG_N_DEATHS (src_no
) != 1
512 || REG_N_SETS (src_no
) != 1)
515 for (p
= PREV_INSN (insn
); p
&& ! reg_set_p (src_reg
, p
); p
= PREV_INSN (p
))
516 if (INSN_P (p
) && BLOCK_FOR_INSN (p
) != bb
)
519 if (! p
|| BLOCK_FOR_INSN (p
) != bb
)
522 if (! (set
= single_set (p
))
523 || !MEM_P (SET_SRC (set
))
524 /* If there's a REG_EQUIV note, this must be an insn that loads an
525 argument. Prefer keeping the note over doing this optimization. */
526 || find_reg_note (p
, REG_EQUIV
, NULL_RTX
)
527 || SET_DEST (set
) != src_reg
)
530 /* Be conservative: although this optimization is also valid for
531 volatile memory references, that could cause trouble in later passes. */
532 if (MEM_VOLATILE_P (SET_SRC (set
)))
535 /* Do not use a SUBREG to truncate from one mode to another if truncation
537 if (GET_MODE_BITSIZE (GET_MODE (src_reg
)) <= GET_MODE_BITSIZE (GET_MODE (src
))
538 && !TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (GET_MODE (src
)),
539 GET_MODE_BITSIZE (GET_MODE (src_reg
))))
542 old_mode
= GET_MODE (src_reg
);
543 PUT_MODE (src_reg
, GET_MODE (src
));
544 XEXP (src
, 0) = SET_SRC (set
);
546 /* Include this change in the group so that it's easily undone if
547 one of the changes in the group is invalid. */
548 validate_change (p
, &SET_SRC (set
), src
, 1);
550 /* Now walk forward making additional replacements. We want to be able
551 to undo all the changes if a later substitution fails. */
552 while (p
= NEXT_INSN (p
), p
!= insn
)
557 /* Make a tentative change. */
558 validate_replace_rtx_group (src_reg
,
559 gen_lowpart_SUBREG (old_mode
, src_reg
),
563 validate_replace_rtx_group (src
, src_reg
, insn
);
565 /* Now see if all the changes are valid. */
566 if (! apply_change_group ())
568 /* One or more changes were no good. Back out everything. */
569 PUT_MODE (src_reg
, old_mode
);
570 XEXP (src
, 0) = src_reg
;
574 rtx note
= find_reg_note (p
, REG_EQUAL
, NULL_RTX
);
576 remove_note (p
, note
);
581 /* If we were not able to update the users of src to use dest directly, try
582 instead moving the value to dest directly before the operation. */
585 copy_src_to_dest (rtx insn
, rtx src
, rtx dest
)
599 /* A REG_LIVE_LENGTH of -1 indicates the register is equivalent to a constant
600 or memory location and is used infrequently; a REG_LIVE_LENGTH of -2 is
601 parameter when there is no frame pointer that is not allocated a register.
602 For now, we just reject them, rather than incrementing the live length. */
605 && REG_LIVE_LENGTH (REGNO (src
)) > 0
607 && REG_LIVE_LENGTH (REGNO (dest
)) > 0
608 && (set
= single_set (insn
)) != NULL_RTX
609 && !reg_mentioned_p (dest
, SET_SRC (set
))
610 && GET_MODE (src
) == GET_MODE (dest
))
612 int old_num_regs
= reg_rtx_no
;
614 /* Generate the src->dest move. */
616 emit_move_insn (dest
, src
);
619 /* If this sequence uses new registers, we may not use it. */
620 if (old_num_regs
!= reg_rtx_no
621 || ! validate_replace_rtx (src
, dest
, insn
))
623 /* We have to restore reg_rtx_no to its old value, lest
624 recompute_reg_usage will try to compute the usage of the
625 new regs, yet reg_n_info is not valid for them. */
626 reg_rtx_no
= old_num_regs
;
629 emit_insn_before (seq
, insn
);
630 move_insn
= PREV_INSN (insn
);
631 p_move_notes
= ®_NOTES (move_insn
);
632 p_insn_notes
= ®_NOTES (insn
);
634 /* Move any notes mentioning src to the move instruction. */
635 for (link
= REG_NOTES (insn
); link
!= NULL_RTX
; link
= next
)
637 next
= XEXP (link
, 1);
638 if (XEXP (link
, 0) == src
)
640 *p_move_notes
= link
;
641 p_move_notes
= &XEXP (link
, 1);
645 *p_insn_notes
= link
;
646 p_insn_notes
= &XEXP (link
, 1);
650 *p_move_notes
= NULL_RTX
;
651 *p_insn_notes
= NULL_RTX
;
653 insn_uid
= INSN_UID (insn
);
654 move_uid
= INSN_UID (move_insn
);
656 /* Update the various register tables. */
657 dest_regno
= REGNO (dest
);
658 INC_REG_N_SETS (dest_regno
, 1);
659 REG_LIVE_LENGTH (dest_regno
)++;
660 src_regno
= REGNO (src
);
661 if (! find_reg_note (move_insn
, REG_DEAD
, src
))
662 REG_LIVE_LENGTH (src_regno
)++;
666 /* reg_set_in_bb[REGNO] points to basic block iff the register is set
667 only once in the given block and has REG_EQUAL note. */
669 static basic_block
*reg_set_in_bb
;
671 /* Size of reg_set_in_bb array. */
672 static unsigned int max_reg_computed
;
675 /* Return whether REG is set in only one location, and is set to a
676 constant, but is set in a different basic block from INSN (an
677 instructions which uses REG). In this case REG is equivalent to a
678 constant, and we don't want to break that equivalence, because that
679 may increase register pressure and make reload harder. If REG is
680 set in the same basic block as INSN, we don't worry about it,
681 because we'll probably need a register anyhow (??? but what if REG
682 is used in a different basic block as well as this one?). */
685 reg_is_remote_constant_p (rtx reg
, rtx insn
)
693 max_reg_computed
= max
= max_reg_num ();
694 reg_set_in_bb
= XCNEWVEC (basic_block
, max
);
704 /* This is the instruction which sets REG. If there is a
705 REG_EQUAL note, then REG is equivalent to a constant. */
707 && REG_P (SET_DEST (s
))
708 && REG_N_SETS (REGNO (SET_DEST (s
))) == 1
709 && find_reg_note (p
, REG_EQUAL
, NULL_RTX
))
710 reg_set_in_bb
[REGNO (SET_DEST (s
))] = bb
;
714 gcc_assert (REGNO (reg
) < max_reg_computed
);
715 if (reg_set_in_bb
[REGNO (reg
)] == NULL
)
717 return (reg_set_in_bb
[REGNO (reg
)] != BLOCK_FOR_INSN (insn
));
720 /* INSN is adding a CONST_INT to a REG. We search backwards looking for
721 another add immediate instruction with the same source and dest registers,
722 and if we find one, we change INSN to an increment, and return 1. If
723 no changes are made, we return 0.
726 (set (reg100) (plus reg1 offset1))
728 (set (reg100) (plus reg1 offset2))
730 (set (reg100) (plus reg1 offset1))
732 (set (reg100) (plus reg100 offset2-offset1)) */
734 /* ??? What does this comment mean? */
735 /* cse disrupts preincrement / postdecrement sequences when it finds a
736 hard register as ultimate source, like the frame pointer. */
739 fixup_match_2 (rtx insn
, rtx dst
, rtx src
, rtx offset
)
741 rtx p
, dst_death
= 0;
742 int length
, num_calls
= 0, freq_calls
= 0;
743 basic_block bb
= BLOCK_FOR_INSN (insn
);
745 /* If SRC dies in INSN, we'd have to move the death note. This is
746 considered to be very unlikely, so we just skip the optimization
748 if (find_regno_note (insn
, REG_DEAD
, REGNO (src
)))
751 /* Scan backward to find the first instruction that sets DST. */
753 for (length
= 0, p
= PREV_INSN (insn
); p
; p
= PREV_INSN (p
))
759 if (BLOCK_FOR_INSN (p
) != bb
)
762 if (find_regno_note (p
, REG_DEAD
, REGNO (dst
)))
767 pset
= single_set (p
);
768 if (pset
&& SET_DEST (pset
) == dst
769 && GET_CODE (SET_SRC (pset
)) == PLUS
770 && XEXP (SET_SRC (pset
), 0) == src
771 && GET_CODE (XEXP (SET_SRC (pset
), 1)) == CONST_INT
)
773 HOST_WIDE_INT newconst
774 = INTVAL (offset
) - INTVAL (XEXP (SET_SRC (pset
), 1));
775 rtx add
= gen_add3_insn (dst
, dst
, GEN_INT (newconst
));
777 if (add
&& validate_change (insn
, &PATTERN (insn
), add
, 0))
779 /* Remove the death note for DST from DST_DEATH. */
782 remove_death (REGNO (dst
), dst_death
);
783 REG_LIVE_LENGTH (REGNO (dst
)) += length
;
784 REG_N_CALLS_CROSSED (REGNO (dst
)) += num_calls
;
785 REG_FREQ_CALLS_CROSSED (REGNO (dst
)) += freq_calls
;
790 "Fixed operand of insn %d.\n",
794 for (p
= PREV_INSN (insn
); p
; p
= PREV_INSN (p
))
798 if (BLOCK_FOR_INSN (p
) != bb
)
800 if (reg_overlap_mentioned_p (dst
, PATTERN (p
)))
802 if (try_auto_increment (p
, insn
, 0, dst
, newconst
, 0))
807 for (p
= NEXT_INSN (insn
); p
; p
= NEXT_INSN (p
))
811 if (BLOCK_FOR_INSN (p
) != bb
)
813 if (reg_overlap_mentioned_p (dst
, PATTERN (p
)))
815 try_auto_increment (p
, insn
, 0, dst
, newconst
, 1);
824 if (reg_set_p (dst
, PATTERN (p
)))
827 /* If we have passed a call instruction, and the
828 pseudo-reg SRC is not already live across a call,
829 then don't perform the optimization. */
830 /* reg_set_p is overly conservative for CALL_INSNS, thinks that all
831 hard regs are clobbered. Thus, we only use it for src for
838 freq_calls
+= REG_FREQ_FROM_BB (BLOCK_FOR_INSN (p
));
841 if (REG_N_CALLS_CROSSED (REGNO (src
)) == 0)
844 if (call_used_regs
[REGNO (dst
)]
845 || find_reg_fusage (p
, CLOBBER
, dst
))
848 else if (reg_set_p (src
, PATTERN (p
)))
855 /* A forward pass. Replace output operands with input operands. */
858 regmove_forward_pass (void)
863 if (! flag_expensive_optimizations
)
867 fprintf (dump_file
, "Starting forward pass...\n");
871 FOR_BB_INSNS (bb
, insn
)
873 rtx set
= single_set (insn
);
877 if ((GET_CODE (SET_SRC (set
)) == SIGN_EXTEND
878 || GET_CODE (SET_SRC (set
)) == ZERO_EXTEND
)
879 && REG_P (XEXP (SET_SRC (set
), 0))
880 && REG_P (SET_DEST (set
)))
881 optimize_reg_copy_3 (insn
, SET_DEST (set
), SET_SRC (set
));
883 if (REG_P (SET_SRC (set
))
884 && REG_P (SET_DEST (set
)))
886 /* If this is a register-register copy where SRC is not dead,
887 see if we can optimize it. If this optimization succeeds,
888 it will become a copy where SRC is dead. */
889 if ((find_reg_note (insn
, REG_DEAD
, SET_SRC (set
))
890 || optimize_reg_copy_1 (insn
, SET_DEST (set
), SET_SRC (set
)))
891 && REGNO (SET_DEST (set
)) >= FIRST_PSEUDO_REGISTER
)
893 /* Similarly for a pseudo-pseudo copy when SRC is dead. */
894 if (REGNO (SET_SRC (set
)) >= FIRST_PSEUDO_REGISTER
)
895 optimize_reg_copy_2 (insn
, SET_DEST (set
), SET_SRC (set
));
896 if (regno_src_regno
[REGNO (SET_DEST (set
))] < 0
897 && SET_SRC (set
) != SET_DEST (set
))
899 int srcregno
= REGNO (SET_SRC (set
));
900 if (regno_src_regno
[srcregno
] >= 0)
901 srcregno
= regno_src_regno
[srcregno
];
902 regno_src_regno
[REGNO (SET_DEST (set
))] = srcregno
;
910 /* A backward pass. Replace input operands with output operands. */
913 regmove_backward_pass (void)
919 fprintf (dump_file
, "Starting backward pass...\n");
921 FOR_EACH_BB_REVERSE (bb
)
923 /* ??? Use the safe iterator because fixup_match_2 can remove
924 insns via try_auto_increment. */
925 FOR_BB_INSNS_REVERSE_SAFE (bb
, insn
, prev
)
928 rtx copy_src
, copy_dst
;
935 if (! find_matches (insn
, &match
))
938 /* Now scan through the operands looking for a destination operand
939 which is supposed to match a source operand.
940 Then scan backward for an instruction which sets the source
941 operand. If safe, then replace the source operand with the
942 dest operand in both instructions. */
946 for (op_no
= 0; op_no
< recog_data
.n_operands
; op_no
++)
948 rtx set
, p
, src
, dst
;
949 rtx src_note
, dst_note
;
950 int num_calls
= 0, freq_calls
= 0;
951 enum reg_class src_class
, dst_class
;
954 match_no
= match
.with
[op_no
];
956 /* Nothing to do if the two operands aren't supposed to match. */
960 dst
= recog_data
.operand
[match_no
];
961 src
= recog_data
.operand
[op_no
];
967 || REGNO (dst
) < FIRST_PSEUDO_REGISTER
968 || REG_LIVE_LENGTH (REGNO (dst
)) < 0
969 || GET_MODE (src
) != GET_MODE (dst
))
972 /* If the operands already match, then there is nothing to do. */
973 if (operands_match_p (src
, dst
))
976 if (match
.commutative
[op_no
] >= 0)
978 rtx comm
= recog_data
.operand
[match
.commutative
[op_no
]];
979 if (operands_match_p (comm
, dst
))
983 set
= single_set (insn
);
987 /* Note that single_set ignores parts of a parallel set for
988 which one of the destinations is REG_UNUSED. We can't
989 handle that here, since we can wind up rewriting things
990 such that a single register is set twice within a single
992 if (reg_set_p (src
, insn
))
995 /* match_no/dst must be a write-only operand, and
996 operand_operand/src must be a read-only operand. */
997 if (match
.use
[op_no
] != READ
998 || match
.use
[match_no
] != WRITE
)
1001 if (match
.early_clobber
[match_no
]
1002 && count_occurrences (PATTERN (insn
), src
, 0) > 1)
1005 /* Make sure match_no is the destination. */
1006 if (recog_data
.operand
[match_no
] != SET_DEST (set
))
1009 if (REGNO (src
) < FIRST_PSEUDO_REGISTER
)
1011 if (GET_CODE (SET_SRC (set
)) == PLUS
1012 && GET_CODE (XEXP (SET_SRC (set
), 1)) == CONST_INT
1013 && XEXP (SET_SRC (set
), 0) == src
1014 && fixup_match_2 (insn
, dst
, src
,
1015 XEXP (SET_SRC (set
), 1)))
1019 src_class
= reg_preferred_class (REGNO (src
));
1020 dst_class
= reg_preferred_class (REGNO (dst
));
1022 if (! (src_note
= find_reg_note (insn
, REG_DEAD
, src
)))
1024 /* We used to force the copy here like in other cases, but
1025 it produces worse code, as it eliminates no copy
1026 instructions and the copy emitted will be produced by
1027 reload anyway. On patterns with multiple alternatives,
1028 there may be better solution available.
1030 In particular this change produced slower code for numeric
1036 if (! regclass_compatible_p (src_class
, dst_class
))
1046 /* Can not modify an earlier insn to set dst if this insn
1047 uses an old value in the source. */
1048 if (reg_overlap_mentioned_p (dst
, SET_SRC (set
)))
1058 /* If src is set once in a different basic block,
1059 and is set equal to a constant, then do not use
1060 it for this optimization, as this would make it
1061 no longer equivalent to a constant. */
1063 if (reg_is_remote_constant_p (src
, insn
))
1076 "Could fix operand %d of insn %d matching operand %d.\n",
1077 op_no
, INSN_UID (insn
), match_no
);
1079 /* Scan backward to find the first instruction that uses
1080 the input operand. If the operand is set here, then
1081 replace it in both instructions with match_no. */
1083 for (length
= 0, p
= PREV_INSN (insn
); p
; p
= PREV_INSN (p
))
1089 if (BLOCK_FOR_INSN (p
) != bb
)
1094 /* ??? See if all of SRC is set in P. This test is much
1095 more conservative than it needs to be. */
1096 pset
= single_set (p
);
1097 if (pset
&& SET_DEST (pset
) == src
)
1099 /* We use validate_replace_rtx, in case there
1100 are multiple identical source operands. All of
1101 them have to be changed at the same time. */
1102 if (validate_replace_rtx (src
, dst
, insn
))
1104 if (validate_change (p
, &SET_DEST (pset
),
1109 /* Change all source operands back.
1110 This modifies the dst as a side-effect. */
1111 validate_replace_rtx (dst
, src
, insn
);
1112 /* Now make sure the dst is right. */
1113 validate_change (insn
,
1114 recog_data
.operand_loc
[match_no
],
1121 /* We can't make this change if SRC is read or
1122 partially written in P, since we are going to
1123 eliminate SRC. We can't make this change
1124 if DST is mentioned at all in P,
1125 since we are going to change its value. */
1126 if (reg_overlap_mentioned_p (src
, PATTERN (p
))
1127 || reg_mentioned_p (dst
, PATTERN (p
)))
1130 /* If we have passed a call instruction, and the
1131 pseudo-reg DST is not already live across a call,
1132 then don't perform the optimization. */
1136 freq_calls
+= REG_FREQ_FROM_BB (BLOCK_FOR_INSN (p
));
1138 if (REG_N_CALLS_CROSSED (REGNO (dst
)) == 0)
1147 /* Remove the death note for SRC from INSN. */
1148 remove_note (insn
, src_note
);
1149 /* Move the death note for SRC to P if it is used
1151 if (reg_overlap_mentioned_p (src
, PATTERN (p
)))
1153 XEXP (src_note
, 1) = REG_NOTES (p
);
1154 REG_NOTES (p
) = src_note
;
1156 /* If there is a REG_DEAD note for DST on P, then remove
1157 it, because DST is now set there. */
1158 if ((dst_note
= find_reg_note (p
, REG_DEAD
, dst
)))
1159 remove_note (p
, dst_note
);
1161 dstno
= REGNO (dst
);
1162 srcno
= REGNO (src
);
1164 INC_REG_N_SETS (dstno
, 1);
1165 INC_REG_N_SETS (srcno
, -1);
1167 REG_N_CALLS_CROSSED (dstno
) += num_calls
;
1168 REG_N_CALLS_CROSSED (srcno
) -= num_calls
;
1169 REG_FREQ_CALLS_CROSSED (dstno
) += freq_calls
;
1170 REG_FREQ_CALLS_CROSSED (srcno
) -= freq_calls
;
1172 REG_LIVE_LENGTH (dstno
) += length
;
1173 if (REG_LIVE_LENGTH (srcno
) >= 0)
1175 REG_LIVE_LENGTH (srcno
) -= length
;
1176 /* REG_LIVE_LENGTH is only an approximation after
1177 combine if sched is not run, so make sure that we
1178 still have a reasonable value. */
1179 if (REG_LIVE_LENGTH (srcno
) < 2)
1180 REG_LIVE_LENGTH (srcno
) = 2;
1185 "Fixed operand %d of insn %d matching operand %d.\n",
1186 op_no
, INSN_UID (insn
), match_no
);
1192 /* If we weren't able to replace any of the alternatives, try an
1193 alternative approach of copying the source to the destination. */
1194 if (!success
&& copy_src
!= NULL_RTX
)
1195 copy_src_to_dest (insn
, copy_src
, copy_dst
);
1200 /* Main entry for the register move optimization. */
1203 regmove_optimize (void)
1206 int nregs
= max_reg_num ();
1208 df_note_add_problem ();
1211 regstat_init_n_sets_and_refs ();
1212 regstat_compute_ri ();
1214 regno_src_regno
= XNEWVEC (int, nregs
);
1215 for (i
= nregs
; --i
>= 0; )
1216 regno_src_regno
[i
] = -1;
1218 /* A forward pass. Replace output operands with input operands. */
1219 regmove_forward_pass ();
1221 /* A backward pass. Replace input operands with output operands. */
1222 regmove_backward_pass ();
1225 free (regno_src_regno
);
1228 free (reg_set_in_bb
);
1229 reg_set_in_bb
= NULL
;
1231 regstat_free_n_sets_and_refs ();
1236 /* Returns nonzero if INSN's pattern has matching constraints for any operand.
1237 Returns 0 if INSN can't be recognized, or if the alternative can't be
1240 Initialize the info in MATCHP based on the constraints. */
1243 find_matches (rtx insn
, struct match
*matchp
)
1245 int likely_spilled
[MAX_RECOG_OPERANDS
];
1247 int any_matches
= 0;
1249 extract_insn (insn
);
1250 if (! constrain_operands (0))
1253 /* Must initialize this before main loop, because the code for
1254 the commutative case may set matches for operands other than
1256 for (op_no
= recog_data
.n_operands
; --op_no
>= 0; )
1257 matchp
->with
[op_no
] = matchp
->commutative
[op_no
] = -1;
1259 for (op_no
= 0; op_no
< recog_data
.n_operands
; op_no
++)
1265 p
= recog_data
.constraints
[op_no
];
1267 likely_spilled
[op_no
] = 0;
1268 matchp
->use
[op_no
] = READ
;
1269 matchp
->early_clobber
[op_no
] = 0;
1271 matchp
->use
[op_no
] = WRITE
;
1273 matchp
->use
[op_no
] = READWRITE
;
1275 for (;*p
&& i
< which_alternative
; p
++)
1279 while ((c
= *p
) != '\0' && c
!= ',')
1288 matchp
->early_clobber
[op_no
] = 1;
1291 matchp
->commutative
[op_no
] = op_no
+ 1;
1292 matchp
->commutative
[op_no
+ 1] = op_no
;
1295 case '0': case '1': case '2': case '3': case '4':
1296 case '5': case '6': case '7': case '8': case '9':
1299 unsigned long match_ul
= strtoul (p
, &end
, 10);
1300 int match
= match_ul
;
1304 if (match
< op_no
&& likely_spilled
[match
])
1306 matchp
->with
[op_no
] = match
;
1308 if (matchp
->commutative
[op_no
] >= 0)
1309 matchp
->with
[matchp
->commutative
[op_no
]] = match
;
1313 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'h':
1314 case 'j': case 'k': case 'l': case 'p': case 'q': case 't': case 'u':
1315 case 'v': case 'w': case 'x': case 'y': case 'z': case 'A': case 'B':
1316 case 'C': case 'D': case 'W': case 'Y': case 'Z':
1317 if (CLASS_LIKELY_SPILLED_P (REG_CLASS_FROM_CONSTRAINT ((unsigned char) c
, p
) ))
1318 likely_spilled
[op_no
] = 1;
1321 p
+= CONSTRAINT_LEN (c
, p
);
1330 gate_handle_regmove (void)
1332 return (optimize
> 0 && flag_regmove
);
1336 struct rtl_opt_pass pass_regmove
=
1340 "regmove", /* name */
1341 gate_handle_regmove
, /* gate */
1342 regmove_optimize
, /* execute */
1345 0, /* static_pass_number */
1346 TV_REGMOVE
, /* tv_id */
1347 0, /* properties_required */
1348 0, /* properties_provided */
1349 0, /* properties_destroyed */
1350 0, /* todo_flags_start */
1351 TODO_df_finish
| TODO_verify_rtl_sharing
|
1353 TODO_ggc_collect
/* todo_flags_finish */