1 /* Optimize jump instructions, for GNU compiler.
2 Copyright (C) 1987-2013 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This is the pathetic reminder of old fame of the jump-optimization pass
21 of the compiler. Now it contains basically a set of utility functions to
24 Each CODE_LABEL has a count of the times it is used
25 stored in the LABEL_NUSES internal field, and each JUMP_INSN
26 has one label that it refers to stored in the
27 JUMP_LABEL internal field. With this we can detect labels that
28 become unused because of the deletion of all the jumps that
29 formerly used them. The JUMP_LABEL info is sometimes looked
30 at by later passes. For return insns, it contains either a
31 RETURN or a SIMPLE_RETURN rtx.
33 The subroutines redirect_jump and invert_jump are used
34 from other passes as well. */
38 #include "coretypes.h"
43 #include "hard-reg-set.h"
45 #include "insn-config.h"
46 #include "insn-attr.h"
49 #include "basic-block.h"
52 #include "diagnostic-core.h"
55 #include "tree-pass.h"
58 /* Optimize jump y; x: ... y: jumpif... x?
59 Don't know if it is worth bothering with. */
60 /* Optimize two cases of conditional jump to conditional jump?
61 This can never delete any instruction or make anything dead,
62 or even change what is live at any point.
63 So perhaps let combiner do it. */
65 static void init_label_info (rtx
);
66 static void mark_all_labels (rtx
);
67 static void mark_jump_label_1 (rtx
, rtx
, bool, bool);
68 static void mark_jump_label_asm (rtx
, rtx
);
69 static void redirect_exp_1 (rtx
*, rtx
, rtx
, rtx
);
70 static int invert_exp_1 (rtx
, rtx
);
71 static int returnjump_p_1 (rtx
*, void *);
73 /* Worker for rebuild_jump_labels and rebuild_jump_labels_chain. */
75 rebuild_jump_labels_1 (rtx f
, bool count_forced
)
79 timevar_push (TV_REBUILD_JUMP
);
83 /* Keep track of labels used from static data; we don't track them
84 closely enough to delete them here, so make sure their reference
85 count doesn't drop to zero. */
88 for (insn
= forced_labels
; insn
; insn
= XEXP (insn
, 1))
89 if (LABEL_P (XEXP (insn
, 0)))
90 LABEL_NUSES (XEXP (insn
, 0))++;
91 timevar_pop (TV_REBUILD_JUMP
);
94 /* This function rebuilds the JUMP_LABEL field and REG_LABEL_TARGET
95 notes in jumping insns and REG_LABEL_OPERAND notes in non-jumping
96 instructions and jumping insns that have labels as operands
99 rebuild_jump_labels (rtx f
)
101 rebuild_jump_labels_1 (f
, true);
104 /* This function is like rebuild_jump_labels, but doesn't run over
105 forced_labels. It can be used on insn chains that aren't the
106 main function chain. */
108 rebuild_jump_labels_chain (rtx chain
)
110 rebuild_jump_labels_1 (chain
, false);
113 /* Some old code expects exactly one BARRIER as the NEXT_INSN of a
114 non-fallthru insn. This is not generally true, as multiple barriers
115 may have crept in, or the BARRIER may be separated from the last
116 real insn by one or more NOTEs.
118 This simple pass moves barriers and removes duplicates so that the
122 cleanup_barriers (void)
124 rtx insn
, next
, prev
;
125 for (insn
= get_insns (); insn
; insn
= next
)
127 next
= NEXT_INSN (insn
);
128 if (BARRIER_P (insn
))
130 prev
= prev_nonnote_insn (insn
);
133 if (BARRIER_P (prev
))
135 else if (prev
!= PREV_INSN (insn
))
136 reorder_insns_nobb (insn
, insn
, prev
);
144 const pass_data pass_data_cleanup_barriers
=
147 "barriers", /* name */
148 OPTGROUP_NONE
, /* optinfo_flags */
149 false, /* has_gate */
150 true, /* has_execute */
152 0, /* properties_required */
153 0, /* properties_provided */
154 0, /* properties_destroyed */
155 0, /* todo_flags_start */
156 0, /* todo_flags_finish */
159 class pass_cleanup_barriers
: public rtl_opt_pass
162 pass_cleanup_barriers(gcc::context
*ctxt
)
163 : rtl_opt_pass(pass_data_cleanup_barriers
, ctxt
)
166 /* opt_pass methods: */
167 unsigned int execute () { return cleanup_barriers (); }
169 }; // class pass_cleanup_barriers
174 make_pass_cleanup_barriers (gcc::context
*ctxt
)
176 return new pass_cleanup_barriers (ctxt
);
180 /* Initialize LABEL_NUSES and JUMP_LABEL fields, add REG_LABEL_TARGET
181 for remaining targets for JUMP_P. Delete any REG_LABEL_OPERAND
182 notes whose labels don't occur in the insn any more. */
185 init_label_info (rtx f
)
189 for (insn
= f
; insn
; insn
= NEXT_INSN (insn
))
192 LABEL_NUSES (insn
) = (LABEL_PRESERVE_P (insn
) != 0);
194 /* REG_LABEL_TARGET notes (including the JUMP_LABEL field) are
195 sticky and not reset here; that way we won't lose association
196 with a label when e.g. the source for a target register
197 disappears out of reach for targets that may use jump-target
198 registers. Jump transformations are supposed to transform
199 any REG_LABEL_TARGET notes. The target label reference in a
200 branch may disappear from the branch (and from the
201 instruction before it) for other reasons, like register
208 for (note
= REG_NOTES (insn
); note
; note
= next
)
210 next
= XEXP (note
, 1);
211 if (REG_NOTE_KIND (note
) == REG_LABEL_OPERAND
212 && ! reg_mentioned_p (XEXP (note
, 0), PATTERN (insn
)))
213 remove_note (insn
, note
);
219 /* A subroutine of mark_all_labels. Trivially propagate a simple label
220 load into a jump_insn that uses it. */
223 maybe_propagate_label_ref (rtx jump_insn
, rtx prev_nonjump_insn
)
225 rtx label_note
, pc
, pc_src
;
227 pc
= pc_set (jump_insn
);
228 pc_src
= pc
!= NULL
? SET_SRC (pc
) : NULL
;
229 label_note
= find_reg_note (prev_nonjump_insn
, REG_LABEL_OPERAND
, NULL
);
231 /* If the previous non-jump insn sets something to a label,
232 something that this jump insn uses, make that label the primary
233 target of this insn if we don't yet have any. That previous
234 insn must be a single_set and not refer to more than one label.
235 The jump insn must not refer to other labels as jump targets
236 and must be a plain (set (pc) ...), maybe in a parallel, and
237 may refer to the item being set only directly or as one of the
238 arms in an IF_THEN_ELSE. */
240 if (label_note
!= NULL
&& pc_src
!= NULL
)
242 rtx label_set
= single_set (prev_nonjump_insn
);
243 rtx label_dest
= label_set
!= NULL
? SET_DEST (label_set
) : NULL
;
245 if (label_set
!= NULL
246 /* The source must be the direct LABEL_REF, not a
247 PLUS, UNSPEC, IF_THEN_ELSE etc. */
248 && GET_CODE (SET_SRC (label_set
)) == LABEL_REF
249 && (rtx_equal_p (label_dest
, pc_src
)
250 || (GET_CODE (pc_src
) == IF_THEN_ELSE
251 && (rtx_equal_p (label_dest
, XEXP (pc_src
, 1))
252 || rtx_equal_p (label_dest
, XEXP (pc_src
, 2))))))
254 /* The CODE_LABEL referred to in the note must be the
255 CODE_LABEL in the LABEL_REF of the "set". We can
256 conveniently use it for the marker function, which
257 requires a LABEL_REF wrapping. */
258 gcc_assert (XEXP (label_note
, 0) == XEXP (SET_SRC (label_set
), 0));
260 mark_jump_label_1 (label_set
, jump_insn
, false, true);
262 gcc_assert (JUMP_LABEL (jump_insn
) == XEXP (label_note
, 0));
267 /* Mark the label each jump jumps to.
268 Combine consecutive labels, and count uses of labels. */
271 mark_all_labels (rtx f
)
275 if (current_ir_type () == IR_RTL_CFGLAYOUT
)
280 /* In cfglayout mode, we don't bother with trivial next-insn
281 propagation of LABEL_REFs into JUMP_LABEL. This will be
282 handled by other optimizers using better algorithms. */
283 FOR_BB_INSNS (bb
, insn
)
285 gcc_assert (! INSN_DELETED_P (insn
));
286 if (NONDEBUG_INSN_P (insn
))
287 mark_jump_label (PATTERN (insn
), insn
, 0);
290 /* In cfglayout mode, there may be non-insns between the
291 basic blocks. If those non-insns represent tablejump data,
292 they contain label references that we must record. */
293 for (insn
= BB_HEADER (bb
); insn
; insn
= NEXT_INSN (insn
))
294 if (JUMP_TABLE_DATA_P (insn
))
295 mark_jump_label (PATTERN (insn
), insn
, 0);
296 for (insn
= BB_FOOTER (bb
); insn
; insn
= NEXT_INSN (insn
))
297 if (JUMP_TABLE_DATA_P (insn
))
298 mark_jump_label (PATTERN (insn
), insn
, 0);
303 rtx prev_nonjump_insn
= NULL
;
304 for (insn
= f
; insn
; insn
= NEXT_INSN (insn
))
306 if (INSN_DELETED_P (insn
))
308 else if (LABEL_P (insn
))
309 prev_nonjump_insn
= NULL
;
310 else if (JUMP_TABLE_DATA_P (insn
))
311 mark_jump_label (PATTERN (insn
), insn
, 0);
312 else if (NONDEBUG_INSN_P (insn
))
314 mark_jump_label (PATTERN (insn
), insn
, 0);
317 if (JUMP_LABEL (insn
) == NULL
&& prev_nonjump_insn
!= NULL
)
318 maybe_propagate_label_ref (insn
, prev_nonjump_insn
);
321 prev_nonjump_insn
= insn
;
327 /* Given a comparison (CODE ARG0 ARG1), inside an insn, INSN, return a code
328 of reversed comparison if it is possible to do so. Otherwise return UNKNOWN.
329 UNKNOWN may be returned in case we are having CC_MODE compare and we don't
330 know whether it's source is floating point or integer comparison. Machine
331 description should define REVERSIBLE_CC_MODE and REVERSE_CONDITION macros
332 to help this function avoid overhead in these cases. */
334 reversed_comparison_code_parts (enum rtx_code code
, const_rtx arg0
,
335 const_rtx arg1
, const_rtx insn
)
337 enum machine_mode mode
;
339 /* If this is not actually a comparison, we can't reverse it. */
340 if (GET_RTX_CLASS (code
) != RTX_COMPARE
341 && GET_RTX_CLASS (code
) != RTX_COMM_COMPARE
)
344 mode
= GET_MODE (arg0
);
345 if (mode
== VOIDmode
)
346 mode
= GET_MODE (arg1
);
348 /* First see if machine description supplies us way to reverse the
349 comparison. Give it priority over everything else to allow
350 machine description to do tricks. */
351 if (GET_MODE_CLASS (mode
) == MODE_CC
352 && REVERSIBLE_CC_MODE (mode
))
354 #ifdef REVERSE_CONDITION
355 return REVERSE_CONDITION (code
, mode
);
357 return reverse_condition (code
);
361 /* Try a few special cases based on the comparison code. */
370 /* It is always safe to reverse EQ and NE, even for the floating
371 point. Similarly the unsigned comparisons are never used for
372 floating point so we can reverse them in the default way. */
373 return reverse_condition (code
);
378 /* In case we already see unordered comparison, we can be sure to
379 be dealing with floating point so we don't need any more tests. */
380 return reverse_condition_maybe_unordered (code
);
385 /* We don't have safe way to reverse these yet. */
391 if (GET_MODE_CLASS (mode
) == MODE_CC
|| CC0_P (arg0
))
394 /* Try to search for the comparison to determine the real mode.
395 This code is expensive, but with sane machine description it
396 will be never used, since REVERSIBLE_CC_MODE will return true
401 /* These CONST_CAST's are okay because prev_nonnote_insn just
402 returns its argument and we assign it to a const_rtx
404 for (prev
= prev_nonnote_insn (CONST_CAST_RTX(insn
));
405 prev
!= 0 && !LABEL_P (prev
);
406 prev
= prev_nonnote_insn (CONST_CAST_RTX(prev
)))
408 const_rtx set
= set_of (arg0
, prev
);
409 if (set
&& GET_CODE (set
) == SET
410 && rtx_equal_p (SET_DEST (set
), arg0
))
412 rtx src
= SET_SRC (set
);
414 if (GET_CODE (src
) == COMPARE
)
416 rtx comparison
= src
;
417 arg0
= XEXP (src
, 0);
418 mode
= GET_MODE (arg0
);
419 if (mode
== VOIDmode
)
420 mode
= GET_MODE (XEXP (comparison
, 1));
423 /* We can get past reg-reg moves. This may be useful for model
424 of i387 comparisons that first move flag registers around. */
431 /* If register is clobbered in some ununderstandable way,
438 /* Test for an integer condition, or a floating-point comparison
439 in which NaNs can be ignored. */
440 if (CONST_INT_P (arg0
)
441 || (GET_MODE (arg0
) != VOIDmode
442 && GET_MODE_CLASS (mode
) != MODE_CC
443 && !HONOR_NANS (mode
)))
444 return reverse_condition (code
);
449 /* A wrapper around the previous function to take COMPARISON as rtx
450 expression. This simplifies many callers. */
452 reversed_comparison_code (const_rtx comparison
, const_rtx insn
)
454 if (!COMPARISON_P (comparison
))
456 return reversed_comparison_code_parts (GET_CODE (comparison
),
457 XEXP (comparison
, 0),
458 XEXP (comparison
, 1), insn
);
461 /* Return comparison with reversed code of EXP.
462 Return NULL_RTX in case we fail to do the reversal. */
464 reversed_comparison (const_rtx exp
, enum machine_mode mode
)
466 enum rtx_code reversed_code
= reversed_comparison_code (exp
, NULL_RTX
);
467 if (reversed_code
== UNKNOWN
)
470 return simplify_gen_relational (reversed_code
, mode
, VOIDmode
,
471 XEXP (exp
, 0), XEXP (exp
, 1));
475 /* Given an rtx-code for a comparison, return the code for the negated
476 comparison. If no such code exists, return UNKNOWN.
478 WATCH OUT! reverse_condition is not safe to use on a jump that might
479 be acting on the results of an IEEE floating point comparison, because
480 of the special treatment of non-signaling nans in comparisons.
481 Use reversed_comparison_code instead. */
484 reverse_condition (enum rtx_code code
)
526 /* Similar, but we're allowed to generate unordered comparisons, which
527 makes it safe for IEEE floating-point. Of course, we have to recognize
528 that the target will support them too... */
531 reverse_condition_maybe_unordered (enum rtx_code code
)
569 /* Similar, but return the code when two operands of a comparison are swapped.
570 This IS safe for IEEE floating-point. */
573 swap_condition (enum rtx_code code
)
615 /* Given a comparison CODE, return the corresponding unsigned comparison.
616 If CODE is an equality comparison or already an unsigned comparison,
620 unsigned_condition (enum rtx_code code
)
646 /* Similarly, return the signed version of a comparison. */
649 signed_condition (enum rtx_code code
)
675 /* Return nonzero if CODE1 is more strict than CODE2, i.e., if the
676 truth of CODE1 implies the truth of CODE2. */
679 comparison_dominates_p (enum rtx_code code1
, enum rtx_code code2
)
681 /* UNKNOWN comparison codes can happen as a result of trying to revert
683 They can't match anything, so we have to reject them here. */
684 if (code1
== UNKNOWN
|| code2
== UNKNOWN
)
693 if (code2
== UNLE
|| code2
== UNGE
)
698 if (code2
== LE
|| code2
== LEU
|| code2
== GE
|| code2
== GEU
704 if (code2
== UNLE
|| code2
== NE
)
709 if (code2
== LE
|| code2
== NE
|| code2
== ORDERED
|| code2
== LTGT
)
714 if (code2
== UNGE
|| code2
== NE
)
719 if (code2
== GE
|| code2
== NE
|| code2
== ORDERED
|| code2
== LTGT
)
725 if (code2
== ORDERED
)
730 if (code2
== NE
|| code2
== ORDERED
)
735 if (code2
== LEU
|| code2
== NE
)
740 if (code2
== GEU
|| code2
== NE
)
745 if (code2
== NE
|| code2
== UNEQ
|| code2
== UNLE
|| code2
== UNLT
746 || code2
== UNGE
|| code2
== UNGT
)
757 /* Return 1 if INSN is an unconditional jump and nothing else. */
760 simplejump_p (const_rtx insn
)
762 return (JUMP_P (insn
)
763 && GET_CODE (PATTERN (insn
)) == SET
764 && GET_CODE (SET_DEST (PATTERN (insn
))) == PC
765 && GET_CODE (SET_SRC (PATTERN (insn
))) == LABEL_REF
);
768 /* Return nonzero if INSN is a (possibly) conditional jump
771 Use of this function is deprecated, since we need to support combined
772 branch and compare insns. Use any_condjump_p instead whenever possible. */
775 condjump_p (const_rtx insn
)
777 const_rtx x
= PATTERN (insn
);
779 if (GET_CODE (x
) != SET
780 || GET_CODE (SET_DEST (x
)) != PC
)
784 if (GET_CODE (x
) == LABEL_REF
)
787 return (GET_CODE (x
) == IF_THEN_ELSE
788 && ((GET_CODE (XEXP (x
, 2)) == PC
789 && (GET_CODE (XEXP (x
, 1)) == LABEL_REF
790 || ANY_RETURN_P (XEXP (x
, 1))))
791 || (GET_CODE (XEXP (x
, 1)) == PC
792 && (GET_CODE (XEXP (x
, 2)) == LABEL_REF
793 || ANY_RETURN_P (XEXP (x
, 2))))));
796 /* Return nonzero if INSN is a (possibly) conditional jump inside a
799 Use this function is deprecated, since we need to support combined
800 branch and compare insns. Use any_condjump_p instead whenever possible. */
803 condjump_in_parallel_p (const_rtx insn
)
805 const_rtx x
= PATTERN (insn
);
807 if (GET_CODE (x
) != PARALLEL
)
810 x
= XVECEXP (x
, 0, 0);
812 if (GET_CODE (x
) != SET
)
814 if (GET_CODE (SET_DEST (x
)) != PC
)
816 if (GET_CODE (SET_SRC (x
)) == LABEL_REF
)
818 if (GET_CODE (SET_SRC (x
)) != IF_THEN_ELSE
)
820 if (XEXP (SET_SRC (x
), 2) == pc_rtx
821 && (GET_CODE (XEXP (SET_SRC (x
), 1)) == LABEL_REF
822 || ANY_RETURN_P (XEXP (SET_SRC (x
), 1))))
824 if (XEXP (SET_SRC (x
), 1) == pc_rtx
825 && (GET_CODE (XEXP (SET_SRC (x
), 2)) == LABEL_REF
826 || ANY_RETURN_P (XEXP (SET_SRC (x
), 2))))
831 /* Return set of PC, otherwise NULL. */
834 pc_set (const_rtx insn
)
839 pat
= PATTERN (insn
);
841 /* The set is allowed to appear either as the insn pattern or
842 the first set in a PARALLEL. */
843 if (GET_CODE (pat
) == PARALLEL
)
844 pat
= XVECEXP (pat
, 0, 0);
845 if (GET_CODE (pat
) == SET
&& GET_CODE (SET_DEST (pat
)) == PC
)
851 /* Return true when insn is an unconditional direct jump,
852 possibly bundled inside a PARALLEL. */
855 any_uncondjump_p (const_rtx insn
)
857 const_rtx x
= pc_set (insn
);
860 if (GET_CODE (SET_SRC (x
)) != LABEL_REF
)
862 if (find_reg_note (insn
, REG_NON_LOCAL_GOTO
, NULL_RTX
))
867 /* Return true when insn is a conditional jump. This function works for
868 instructions containing PC sets in PARALLELs. The instruction may have
869 various other effects so before removing the jump you must verify
872 Note that unlike condjump_p it returns false for unconditional jumps. */
875 any_condjump_p (const_rtx insn
)
877 const_rtx x
= pc_set (insn
);
882 if (GET_CODE (SET_SRC (x
)) != IF_THEN_ELSE
)
885 a
= GET_CODE (XEXP (SET_SRC (x
), 1));
886 b
= GET_CODE (XEXP (SET_SRC (x
), 2));
888 return ((b
== PC
&& (a
== LABEL_REF
|| a
== RETURN
|| a
== SIMPLE_RETURN
))
890 && (b
== LABEL_REF
|| b
== RETURN
|| b
== SIMPLE_RETURN
)));
893 /* Return the label of a conditional jump. */
896 condjump_label (const_rtx insn
)
898 rtx x
= pc_set (insn
);
903 if (GET_CODE (x
) == LABEL_REF
)
905 if (GET_CODE (x
) != IF_THEN_ELSE
)
907 if (XEXP (x
, 2) == pc_rtx
&& GET_CODE (XEXP (x
, 1)) == LABEL_REF
)
909 if (XEXP (x
, 1) == pc_rtx
&& GET_CODE (XEXP (x
, 2)) == LABEL_REF
)
914 /* Return true if INSN is a (possibly conditional) return insn. */
917 returnjump_p_1 (rtx
*loc
, void *data ATTRIBUTE_UNUSED
)
924 switch (GET_CODE (x
))
932 return SET_IS_RETURN_P (x
);
939 /* Return TRUE if INSN is a return jump. */
942 returnjump_p (rtx insn
)
946 return for_each_rtx (&PATTERN (insn
), returnjump_p_1
, NULL
);
949 /* Return true if INSN is a (possibly conditional) return insn. */
952 eh_returnjump_p_1 (rtx
*loc
, void *data ATTRIBUTE_UNUSED
)
954 return *loc
&& GET_CODE (*loc
) == EH_RETURN
;
958 eh_returnjump_p (rtx insn
)
962 return for_each_rtx (&PATTERN (insn
), eh_returnjump_p_1
, NULL
);
965 /* Return true if INSN is a jump that only transfers control and
969 onlyjump_p (const_rtx insn
)
976 set
= single_set (insn
);
979 if (GET_CODE (SET_DEST (set
)) != PC
)
981 if (side_effects_p (SET_SRC (set
)))
987 /* Return true iff INSN is a jump and its JUMP_LABEL is a label, not
990 jump_to_label_p (rtx insn
)
992 return (JUMP_P (insn
)
993 && JUMP_LABEL (insn
) != NULL
&& !ANY_RETURN_P (JUMP_LABEL (insn
)));
998 /* Return nonzero if X is an RTX that only sets the condition codes
999 and has no side effects. */
1002 only_sets_cc0_p (const_rtx x
)
1010 return sets_cc0_p (x
) == 1 && ! side_effects_p (x
);
1013 /* Return 1 if X is an RTX that does nothing but set the condition codes
1014 and CLOBBER or USE registers.
1015 Return -1 if X does explicitly set the condition codes,
1016 but also does other things. */
1019 sets_cc0_p (const_rtx x
)
1027 if (GET_CODE (x
) == SET
&& SET_DEST (x
) == cc0_rtx
)
1029 if (GET_CODE (x
) == PARALLEL
)
1033 int other_things
= 0;
1034 for (i
= XVECLEN (x
, 0) - 1; i
>= 0; i
--)
1036 if (GET_CODE (XVECEXP (x
, 0, i
)) == SET
1037 && SET_DEST (XVECEXP (x
, 0, i
)) == cc0_rtx
)
1039 else if (GET_CODE (XVECEXP (x
, 0, i
)) == SET
)
1042 return ! sets_cc0
? 0 : other_things
? -1 : 1;
1048 /* Find all CODE_LABELs referred to in X, and increment their use
1049 counts. If INSN is a JUMP_INSN and there is at least one
1050 CODE_LABEL referenced in INSN as a jump target, then store the last
1051 one in JUMP_LABEL (INSN). For a tablejump, this must be the label
1052 for the ADDR_VEC. Store any other jump targets as REG_LABEL_TARGET
1053 notes. If INSN is an INSN or a CALL_INSN or non-target operands of
1054 a JUMP_INSN, and there is at least one CODE_LABEL referenced in
1055 INSN, add a REG_LABEL_OPERAND note containing that label to INSN.
1056 For returnjumps, the JUMP_LABEL will also be set as appropriate.
1058 Note that two labels separated by a loop-beginning note
1059 must be kept distinct if we have not yet done loop-optimization,
1060 because the gap between them is where loop-optimize
1061 will want to move invariant code to. CROSS_JUMP tells us
1062 that loop-optimization is done with. */
1065 mark_jump_label (rtx x
, rtx insn
, int in_mem
)
1067 rtx asmop
= extract_asm_operands (x
);
1069 mark_jump_label_asm (asmop
, insn
);
1071 mark_jump_label_1 (x
, insn
, in_mem
!= 0,
1072 (insn
!= NULL
&& x
== PATTERN (insn
) && JUMP_P (insn
)));
1075 /* Worker function for mark_jump_label. IN_MEM is TRUE when X occurs
1076 within a (MEM ...). IS_TARGET is TRUE when X is to be treated as a
1077 jump-target; when the JUMP_LABEL field of INSN should be set or a
1078 REG_LABEL_TARGET note should be added, not a REG_LABEL_OPERAND
1082 mark_jump_label_1 (rtx x
, rtx insn
, bool in_mem
, bool is_target
)
1084 RTX_CODE code
= GET_CODE (x
);
1101 gcc_assert (JUMP_LABEL (insn
) == NULL
|| JUMP_LABEL (insn
) == x
);
1102 JUMP_LABEL (insn
) = x
;
1111 for (i
= 0; i
< XVECLEN (x
, 0); i
++)
1112 mark_jump_label (PATTERN (XVECEXP (x
, 0, i
)),
1113 XVECEXP (x
, 0, i
), 0);
1120 /* If this is a constant-pool reference, see if it is a label. */
1121 if (CONSTANT_POOL_ADDRESS_P (x
))
1122 mark_jump_label_1 (get_pool_constant (x
), insn
, in_mem
, is_target
);
1125 /* Handle operands in the condition of an if-then-else as for a
1130 mark_jump_label_1 (XEXP (x
, 0), insn
, in_mem
, false);
1131 mark_jump_label_1 (XEXP (x
, 1), insn
, in_mem
, true);
1132 mark_jump_label_1 (XEXP (x
, 2), insn
, in_mem
, true);
1137 rtx label
= XEXP (x
, 0);
1139 /* Ignore remaining references to unreachable labels that
1140 have been deleted. */
1142 && NOTE_KIND (label
) == NOTE_INSN_DELETED_LABEL
)
1145 gcc_assert (LABEL_P (label
));
1147 /* Ignore references to labels of containing functions. */
1148 if (LABEL_REF_NONLOCAL_P (x
))
1151 XEXP (x
, 0) = label
;
1152 if (! insn
|| ! INSN_DELETED_P (insn
))
1153 ++LABEL_NUSES (label
);
1158 /* Do not change a previous setting of JUMP_LABEL. If the
1159 JUMP_LABEL slot is occupied by a different label,
1160 create a note for this label. */
1161 && (JUMP_LABEL (insn
) == NULL
|| JUMP_LABEL (insn
) == label
))
1162 JUMP_LABEL (insn
) = label
;
1166 = is_target
? REG_LABEL_TARGET
: REG_LABEL_OPERAND
;
1168 /* Add a REG_LABEL_OPERAND or REG_LABEL_TARGET note
1169 for LABEL unless there already is one. All uses of
1170 a label, except for the primary target of a jump,
1171 must have such a note. */
1172 if (! find_reg_note (insn
, kind
, label
))
1173 add_reg_note (insn
, kind
, label
);
1179 /* Do walk the labels in a vector, but not the first operand of an
1180 ADDR_DIFF_VEC. Don't set the JUMP_LABEL of a vector. */
1183 if (! INSN_DELETED_P (insn
))
1185 int eltnum
= code
== ADDR_DIFF_VEC
? 1 : 0;
1187 for (i
= 0; i
< XVECLEN (x
, eltnum
); i
++)
1188 mark_jump_label_1 (XVECEXP (x
, eltnum
, i
), NULL_RTX
, in_mem
,
1197 fmt
= GET_RTX_FORMAT (code
);
1199 /* The primary target of a tablejump is the label of the ADDR_VEC,
1200 which is canonically mentioned *last* in the insn. To get it
1201 marked as JUMP_LABEL, we iterate over items in reverse order. */
1202 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
1205 mark_jump_label_1 (XEXP (x
, i
), insn
, in_mem
, is_target
);
1206 else if (fmt
[i
] == 'E')
1210 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
1211 mark_jump_label_1 (XVECEXP (x
, i
, j
), insn
, in_mem
,
1217 /* Worker function for mark_jump_label. Handle asm insns specially.
1218 In particular, output operands need not be considered so we can
1219 avoid re-scanning the replicated asm_operand. Also, the asm_labels
1220 need to be considered targets. */
1223 mark_jump_label_asm (rtx asmop
, rtx insn
)
1227 for (i
= ASM_OPERANDS_INPUT_LENGTH (asmop
) - 1; i
>= 0; --i
)
1228 mark_jump_label_1 (ASM_OPERANDS_INPUT (asmop
, i
), insn
, false, false);
1230 for (i
= ASM_OPERANDS_LABEL_LENGTH (asmop
) - 1; i
>= 0; --i
)
1231 mark_jump_label_1 (ASM_OPERANDS_LABEL (asmop
, i
), insn
, false, true);
1234 /* Delete insn INSN from the chain of insns and update label ref counts
1235 and delete insns now unreachable.
1237 Returns the first insn after INSN that was not deleted.
1239 Usage of this instruction is deprecated. Use delete_insn instead and
1240 subsequent cfg_cleanup pass to delete unreachable code if needed. */
1243 delete_related_insns (rtx insn
)
1245 int was_code_label
= (LABEL_P (insn
));
1247 rtx next
= NEXT_INSN (insn
), prev
= PREV_INSN (insn
);
1249 while (next
&& INSN_DELETED_P (next
))
1250 next
= NEXT_INSN (next
);
1252 /* This insn is already deleted => return first following nondeleted. */
1253 if (INSN_DELETED_P (insn
))
1258 /* If instruction is followed by a barrier,
1259 delete the barrier too. */
1261 if (next
!= 0 && BARRIER_P (next
))
1264 /* If this is a call, then we have to remove the var tracking note
1265 for the call arguments. */
1268 || (NONJUMP_INSN_P (insn
)
1269 && GET_CODE (PATTERN (insn
)) == SEQUENCE
1270 && CALL_P (XVECEXP (PATTERN (insn
), 0, 0))))
1274 for (p
= next
&& INSN_DELETED_P (next
) ? NEXT_INSN (next
) : next
;
1277 if (NOTE_KIND (p
) == NOTE_INSN_CALL_ARG_LOCATION
)
1284 /* If deleting a jump, decrement the count of the label,
1285 and delete the label if it is now unused. */
1287 if (jump_to_label_p (insn
))
1289 rtx lab
= JUMP_LABEL (insn
), lab_next
;
1291 if (LABEL_NUSES (lab
) == 0)
1292 /* This can delete NEXT or PREV,
1293 either directly if NEXT is JUMP_LABEL (INSN),
1294 or indirectly through more levels of jumps. */
1295 delete_related_insns (lab
);
1296 else if (tablejump_p (insn
, NULL
, &lab_next
))
1298 /* If we're deleting the tablejump, delete the dispatch table.
1299 We may not be able to kill the label immediately preceding
1300 just yet, as it might be referenced in code leading up to
1302 delete_related_insns (lab_next
);
1306 /* Likewise if we're deleting a dispatch table. */
1308 if (JUMP_TABLE_DATA_P (insn
))
1310 rtx pat
= PATTERN (insn
);
1311 int i
, diff_vec_p
= GET_CODE (pat
) == ADDR_DIFF_VEC
;
1312 int len
= XVECLEN (pat
, diff_vec_p
);
1314 for (i
= 0; i
< len
; i
++)
1315 if (LABEL_NUSES (XEXP (XVECEXP (pat
, diff_vec_p
, i
), 0)) == 0)
1316 delete_related_insns (XEXP (XVECEXP (pat
, diff_vec_p
, i
), 0));
1317 while (next
&& INSN_DELETED_P (next
))
1318 next
= NEXT_INSN (next
);
1322 /* Likewise for any JUMP_P / INSN / CALL_INSN with a
1323 REG_LABEL_OPERAND or REG_LABEL_TARGET note. */
1325 for (note
= REG_NOTES (insn
); note
; note
= XEXP (note
, 1))
1326 if ((REG_NOTE_KIND (note
) == REG_LABEL_OPERAND
1327 || REG_NOTE_KIND (note
) == REG_LABEL_TARGET
)
1328 /* This could also be a NOTE_INSN_DELETED_LABEL note. */
1329 && LABEL_P (XEXP (note
, 0)))
1330 if (LABEL_NUSES (XEXP (note
, 0)) == 0)
1331 delete_related_insns (XEXP (note
, 0));
1333 while (prev
&& (INSN_DELETED_P (prev
) || NOTE_P (prev
)))
1334 prev
= PREV_INSN (prev
);
1336 /* If INSN was a label and a dispatch table follows it,
1337 delete the dispatch table. The tablejump must have gone already.
1338 It isn't useful to fall through into a table. */
1341 && NEXT_INSN (insn
) != 0
1342 && JUMP_TABLE_DATA_P (NEXT_INSN (insn
)))
1343 next
= delete_related_insns (NEXT_INSN (insn
));
1345 /* If INSN was a label, delete insns following it if now unreachable. */
1347 if (was_code_label
&& prev
&& BARRIER_P (prev
))
1352 code
= GET_CODE (next
);
1354 next
= NEXT_INSN (next
);
1355 /* Keep going past other deleted labels to delete what follows. */
1356 else if (code
== CODE_LABEL
&& INSN_DELETED_P (next
))
1357 next
= NEXT_INSN (next
);
1358 else if (code
== BARRIER
|| INSN_P (next
))
1359 /* Note: if this deletes a jump, it can cause more
1360 deletion of unreachable code, after a different label.
1361 As long as the value from this recursive call is correct,
1362 this invocation functions correctly. */
1363 next
= delete_related_insns (next
);
1369 /* I feel a little doubtful about this loop,
1370 but I see no clean and sure alternative way
1371 to find the first insn after INSN that is not now deleted.
1372 I hope this works. */
1373 while (next
&& INSN_DELETED_P (next
))
1374 next
= NEXT_INSN (next
);
1378 /* Delete a range of insns from FROM to TO, inclusive.
1379 This is for the sake of peephole optimization, so assume
1380 that whatever these insns do will still be done by a new
1381 peephole insn that will replace them. */
1384 delete_for_peephole (rtx from
, rtx to
)
1390 rtx next
= NEXT_INSN (insn
);
1391 rtx prev
= PREV_INSN (insn
);
1395 INSN_DELETED_P (insn
) = 1;
1397 /* Patch this insn out of the chain. */
1398 /* We don't do this all at once, because we
1399 must preserve all NOTEs. */
1401 NEXT_INSN (prev
) = next
;
1404 PREV_INSN (next
) = prev
;
1412 /* Note that if TO is an unconditional jump
1413 we *do not* delete the BARRIER that follows,
1414 since the peephole that replaces this sequence
1415 is also an unconditional jump in that case. */
1418 /* A helper function for redirect_exp_1; examines its input X and returns
1419 either a LABEL_REF around a label, or a RETURN if X was NULL. */
1421 redirect_target (rtx x
)
1425 if (!ANY_RETURN_P (x
))
1426 return gen_rtx_LABEL_REF (Pmode
, x
);
1430 /* Throughout LOC, redirect OLABEL to NLABEL. Treat null OLABEL or
1431 NLABEL as a return. Accrue modifications into the change group. */
1434 redirect_exp_1 (rtx
*loc
, rtx olabel
, rtx nlabel
, rtx insn
)
1437 RTX_CODE code
= GET_CODE (x
);
1441 if ((code
== LABEL_REF
&& XEXP (x
, 0) == olabel
)
1444 x
= redirect_target (nlabel
);
1445 if (GET_CODE (x
) == LABEL_REF
&& loc
== &PATTERN (insn
))
1446 x
= gen_rtx_SET (VOIDmode
, pc_rtx
, x
);
1447 validate_change (insn
, loc
, x
, 1);
1451 if (code
== SET
&& SET_DEST (x
) == pc_rtx
1452 && ANY_RETURN_P (nlabel
)
1453 && GET_CODE (SET_SRC (x
)) == LABEL_REF
1454 && XEXP (SET_SRC (x
), 0) == olabel
)
1456 validate_change (insn
, loc
, nlabel
, 1);
1460 if (code
== IF_THEN_ELSE
)
1462 /* Skip the condition of an IF_THEN_ELSE. We only want to
1463 change jump destinations, not eventual label comparisons. */
1464 redirect_exp_1 (&XEXP (x
, 1), olabel
, nlabel
, insn
);
1465 redirect_exp_1 (&XEXP (x
, 2), olabel
, nlabel
, insn
);
1469 fmt
= GET_RTX_FORMAT (code
);
1470 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
1473 redirect_exp_1 (&XEXP (x
, i
), olabel
, nlabel
, insn
);
1474 else if (fmt
[i
] == 'E')
1477 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
1478 redirect_exp_1 (&XVECEXP (x
, i
, j
), olabel
, nlabel
, insn
);
1483 /* Make JUMP go to NLABEL instead of where it jumps now. Accrue
1484 the modifications into the change group. Return false if we did
1485 not see how to do that. */
1488 redirect_jump_1 (rtx jump
, rtx nlabel
)
1490 int ochanges
= num_validated_changes ();
1493 gcc_assert (nlabel
!= NULL_RTX
);
1494 asmop
= extract_asm_operands (PATTERN (jump
));
1499 gcc_assert (ASM_OPERANDS_LABEL_LENGTH (asmop
) == 1);
1500 loc
= &ASM_OPERANDS_LABEL (asmop
, 0);
1502 else if (GET_CODE (PATTERN (jump
)) == PARALLEL
)
1503 loc
= &XVECEXP (PATTERN (jump
), 0, 0);
1505 loc
= &PATTERN (jump
);
1507 redirect_exp_1 (loc
, JUMP_LABEL (jump
), nlabel
, jump
);
1508 return num_validated_changes () > ochanges
;
1511 /* Make JUMP go to NLABEL instead of where it jumps now. If the old
1512 jump target label is unused as a result, it and the code following
1515 Normally, NLABEL will be a label, but it may also be a RETURN rtx;
1516 in that case we are to turn the jump into a (possibly conditional)
1519 The return value will be 1 if the change was made, 0 if it wasn't
1520 (this can only occur when trying to produce return insns). */
1523 redirect_jump (rtx jump
, rtx nlabel
, int delete_unused
)
1525 rtx olabel
= JUMP_LABEL (jump
);
1529 /* If there is no label, we are asked to redirect to the EXIT block.
1530 When before the epilogue is emitted, return/simple_return cannot be
1531 created so we return 0 immediately. After the epilogue is emitted,
1532 we always expect a label, either a non-null label, or a
1533 return/simple_return RTX. */
1535 if (!epilogue_completed
)
1540 if (nlabel
== olabel
)
1543 if (! redirect_jump_1 (jump
, nlabel
) || ! apply_change_group ())
1546 redirect_jump_2 (jump
, olabel
, nlabel
, delete_unused
, 0);
1550 /* Fix up JUMP_LABEL and label ref counts after OLABEL has been replaced with
1552 If DELETE_UNUSED is positive, delete related insn to OLABEL if its ref
1553 count has dropped to zero. */
1555 redirect_jump_2 (rtx jump
, rtx olabel
, rtx nlabel
, int delete_unused
,
1560 gcc_assert (JUMP_LABEL (jump
) == olabel
);
1562 /* Negative DELETE_UNUSED used to be used to signalize behavior on
1563 moving FUNCTION_END note. Just sanity check that no user still worry
1565 gcc_assert (delete_unused
>= 0);
1566 JUMP_LABEL (jump
) = nlabel
;
1567 if (!ANY_RETURN_P (nlabel
))
1568 ++LABEL_NUSES (nlabel
);
1570 /* Update labels in any REG_EQUAL note. */
1571 if ((note
= find_reg_note (jump
, REG_EQUAL
, NULL_RTX
)) != NULL_RTX
)
1573 if (ANY_RETURN_P (nlabel
)
1574 || (invert
&& !invert_exp_1 (XEXP (note
, 0), jump
)))
1575 remove_note (jump
, note
);
1578 redirect_exp_1 (&XEXP (note
, 0), olabel
, nlabel
, jump
);
1579 confirm_change_group ();
1583 if (!ANY_RETURN_P (olabel
)
1584 && --LABEL_NUSES (olabel
) == 0 && delete_unused
> 0
1585 /* Undefined labels will remain outside the insn stream. */
1586 && INSN_UID (olabel
))
1587 delete_related_insns (olabel
);
1589 invert_br_probabilities (jump
);
1592 /* Invert the jump condition X contained in jump insn INSN. Accrue the
1593 modifications into the change group. Return nonzero for success. */
1595 invert_exp_1 (rtx x
, rtx insn
)
1597 RTX_CODE code
= GET_CODE (x
);
1599 if (code
== IF_THEN_ELSE
)
1601 rtx comp
= XEXP (x
, 0);
1603 enum rtx_code reversed_code
;
1605 /* We can do this in two ways: The preferable way, which can only
1606 be done if this is not an integer comparison, is to reverse
1607 the comparison code. Otherwise, swap the THEN-part and ELSE-part
1608 of the IF_THEN_ELSE. If we can't do either, fail. */
1610 reversed_code
= reversed_comparison_code (comp
, insn
);
1612 if (reversed_code
!= UNKNOWN
)
1614 validate_change (insn
, &XEXP (x
, 0),
1615 gen_rtx_fmt_ee (reversed_code
,
1616 GET_MODE (comp
), XEXP (comp
, 0),
1623 validate_change (insn
, &XEXP (x
, 1), XEXP (x
, 2), 1);
1624 validate_change (insn
, &XEXP (x
, 2), tem
, 1);
1631 /* Invert the condition of the jump JUMP, and make it jump to label
1632 NLABEL instead of where it jumps now. Accrue changes into the
1633 change group. Return false if we didn't see how to perform the
1634 inversion and redirection. */
1637 invert_jump_1 (rtx jump
, rtx nlabel
)
1639 rtx x
= pc_set (jump
);
1643 ochanges
= num_validated_changes ();
1646 ok
= invert_exp_1 (SET_SRC (x
), jump
);
1649 if (num_validated_changes () == ochanges
)
1652 /* redirect_jump_1 will fail of nlabel == olabel, and the current use is
1653 in Pmode, so checking this is not merely an optimization. */
1654 return nlabel
== JUMP_LABEL (jump
) || redirect_jump_1 (jump
, nlabel
);
1657 /* Invert the condition of the jump JUMP, and make it jump to label
1658 NLABEL instead of where it jumps now. Return true if successful. */
1661 invert_jump (rtx jump
, rtx nlabel
, int delete_unused
)
1663 rtx olabel
= JUMP_LABEL (jump
);
1665 if (invert_jump_1 (jump
, nlabel
) && apply_change_group ())
1667 redirect_jump_2 (jump
, olabel
, nlabel
, delete_unused
, 1);
1675 /* Like rtx_equal_p except that it considers two REGs as equal
1676 if they renumber to the same value and considers two commutative
1677 operations to be the same if the order of the operands has been
1681 rtx_renumbered_equal_p (const_rtx x
, const_rtx y
)
1684 const enum rtx_code code
= GET_CODE (x
);
1690 if ((code
== REG
|| (code
== SUBREG
&& REG_P (SUBREG_REG (x
))))
1691 && (REG_P (y
) || (GET_CODE (y
) == SUBREG
1692 && REG_P (SUBREG_REG (y
)))))
1694 int reg_x
= -1, reg_y
= -1;
1695 int byte_x
= 0, byte_y
= 0;
1696 struct subreg_info info
;
1698 if (GET_MODE (x
) != GET_MODE (y
))
1701 /* If we haven't done any renumbering, don't
1702 make any assumptions. */
1703 if (reg_renumber
== 0)
1704 return rtx_equal_p (x
, y
);
1708 reg_x
= REGNO (SUBREG_REG (x
));
1709 byte_x
= SUBREG_BYTE (x
);
1711 if (reg_renumber
[reg_x
] >= 0)
1713 subreg_get_info (reg_renumber
[reg_x
],
1714 GET_MODE (SUBREG_REG (x
)), byte_x
,
1715 GET_MODE (x
), &info
);
1716 if (!info
.representable_p
)
1718 reg_x
= info
.offset
;
1725 if (reg_renumber
[reg_x
] >= 0)
1726 reg_x
= reg_renumber
[reg_x
];
1729 if (GET_CODE (y
) == SUBREG
)
1731 reg_y
= REGNO (SUBREG_REG (y
));
1732 byte_y
= SUBREG_BYTE (y
);
1734 if (reg_renumber
[reg_y
] >= 0)
1736 subreg_get_info (reg_renumber
[reg_y
],
1737 GET_MODE (SUBREG_REG (y
)), byte_y
,
1738 GET_MODE (y
), &info
);
1739 if (!info
.representable_p
)
1741 reg_y
= info
.offset
;
1748 if (reg_renumber
[reg_y
] >= 0)
1749 reg_y
= reg_renumber
[reg_y
];
1752 return reg_x
>= 0 && reg_x
== reg_y
&& byte_x
== byte_y
;
1755 /* Now we have disposed of all the cases
1756 in which different rtx codes can match. */
1757 if (code
!= GET_CODE (y
))
1770 /* We can't assume nonlocal labels have their following insns yet. */
1771 if (LABEL_REF_NONLOCAL_P (x
) || LABEL_REF_NONLOCAL_P (y
))
1772 return XEXP (x
, 0) == XEXP (y
, 0);
1774 /* Two label-refs are equivalent if they point at labels
1775 in the same position in the instruction stream. */
1776 return (next_real_insn (XEXP (x
, 0))
1777 == next_real_insn (XEXP (y
, 0)));
1780 return XSTR (x
, 0) == XSTR (y
, 0);
1783 /* If we didn't match EQ equality above, they aren't the same. */
1790 /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent. */
1792 if (GET_MODE (x
) != GET_MODE (y
))
1795 /* MEMs referring to different address space are not equivalent. */
1796 if (code
== MEM
&& MEM_ADDR_SPACE (x
) != MEM_ADDR_SPACE (y
))
1799 /* For commutative operations, the RTX match if the operand match in any
1800 order. Also handle the simple binary and unary cases without a loop. */
1801 if (targetm
.commutative_p (x
, UNKNOWN
))
1802 return ((rtx_renumbered_equal_p (XEXP (x
, 0), XEXP (y
, 0))
1803 && rtx_renumbered_equal_p (XEXP (x
, 1), XEXP (y
, 1)))
1804 || (rtx_renumbered_equal_p (XEXP (x
, 0), XEXP (y
, 1))
1805 && rtx_renumbered_equal_p (XEXP (x
, 1), XEXP (y
, 0))));
1806 else if (NON_COMMUTATIVE_P (x
))
1807 return (rtx_renumbered_equal_p (XEXP (x
, 0), XEXP (y
, 0))
1808 && rtx_renumbered_equal_p (XEXP (x
, 1), XEXP (y
, 1)));
1809 else if (UNARY_P (x
))
1810 return rtx_renumbered_equal_p (XEXP (x
, 0), XEXP (y
, 0));
1812 /* Compare the elements. If any pair of corresponding elements
1813 fail to match, return 0 for the whole things. */
1815 fmt
= GET_RTX_FORMAT (code
);
1816 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
1822 if (XWINT (x
, i
) != XWINT (y
, i
))
1827 if (XINT (x
, i
) != XINT (y
, i
))
1829 if (((code
== ASM_OPERANDS
&& i
== 6)
1830 || (code
== ASM_INPUT
&& i
== 1)))
1837 if (XTREE (x
, i
) != XTREE (y
, i
))
1842 if (strcmp (XSTR (x
, i
), XSTR (y
, i
)))
1847 if (! rtx_renumbered_equal_p (XEXP (x
, i
), XEXP (y
, i
)))
1852 if (XEXP (x
, i
) != XEXP (y
, i
))
1859 if (XVECLEN (x
, i
) != XVECLEN (y
, i
))
1861 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
1862 if (!rtx_renumbered_equal_p (XVECEXP (x
, i
, j
), XVECEXP (y
, i
, j
)))
1873 /* If X is a hard register or equivalent to one or a subregister of one,
1874 return the hard register number. If X is a pseudo register that was not
1875 assigned a hard register, return the pseudo register number. Otherwise,
1876 return -1. Any rtx is valid for X. */
1879 true_regnum (const_rtx x
)
1883 if (REGNO (x
) >= FIRST_PSEUDO_REGISTER
1884 && (lra_in_progress
|| reg_renumber
[REGNO (x
)] >= 0))
1885 return reg_renumber
[REGNO (x
)];
1888 if (GET_CODE (x
) == SUBREG
)
1890 int base
= true_regnum (SUBREG_REG (x
));
1892 && base
< FIRST_PSEUDO_REGISTER
)
1894 struct subreg_info info
;
1896 subreg_get_info (lra_in_progress
1897 ? (unsigned) base
: REGNO (SUBREG_REG (x
)),
1898 GET_MODE (SUBREG_REG (x
)),
1899 SUBREG_BYTE (x
), GET_MODE (x
), &info
);
1901 if (info
.representable_p
)
1902 return base
+ info
.offset
;
1908 /* Return regno of the register REG and handle subregs too. */
1910 reg_or_subregno (const_rtx reg
)
1912 if (GET_CODE (reg
) == SUBREG
)
1913 reg
= SUBREG_REG (reg
);
1914 gcc_assert (REG_P (reg
));