1 /* Analyze RTL for C-Compiler
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
5 This file is part of GCC.
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 2, or (at your option) any later
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
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
25 #include "coretypes.h"
29 #include "hard-reg-set.h"
30 #include "insn-config.h"
36 #include "basic-block.h"
41 /* Forward declarations */
42 static int global_reg_mentioned_p_1 (rtx
*, void *);
43 static void set_of_1 (rtx
, rtx
, void *);
44 static void insn_dependent_p_1 (rtx
, rtx
, void *);
45 static int rtx_referenced_p_1 (rtx
*, void *);
46 static int computed_jump_p_1 (rtx
);
47 static void parms_set (rtx
, rtx
, void *);
48 static bool hoist_test_store (rtx
, rtx
, regset
);
49 static void hoist_update_store (rtx
, rtx
*, rtx
, rtx
);
51 static unsigned HOST_WIDE_INT
cached_nonzero_bits (rtx
, enum machine_mode
,
52 rtx
, enum machine_mode
,
53 unsigned HOST_WIDE_INT
);
54 static unsigned HOST_WIDE_INT
nonzero_bits1 (rtx
, enum machine_mode
, rtx
,
56 unsigned HOST_WIDE_INT
);
57 static unsigned int cached_num_sign_bit_copies (rtx
, enum machine_mode
, rtx
,
60 static unsigned int num_sign_bit_copies1 (rtx
, enum machine_mode
, rtx
,
61 enum machine_mode
, unsigned int);
63 /* Bit flags that specify the machine subtype we are compiling for.
64 Bits are tested using macros TARGET_... defined in the tm.h file
65 and set by `-m...' switches. Must be defined in rtlanal.c. */
69 /* Return 1 if the value of X is unstable
70 (would be different at a different point in the program).
71 The frame pointer, arg pointer, etc. are considered stable
72 (within one function) and so is anything marked `unchanging'. */
75 rtx_unstable_p (rtx x
)
77 RTX_CODE code
= GET_CODE (x
);
84 return !MEM_READONLY_P (x
) || rtx_unstable_p (XEXP (x
, 0));
95 /* As in rtx_varies_p, we have to use the actual rtx, not reg number. */
96 if (x
== frame_pointer_rtx
|| x
== hard_frame_pointer_rtx
97 /* The arg pointer varies if it is not a fixed register. */
98 || (x
== arg_pointer_rtx
&& fixed_regs
[ARG_POINTER_REGNUM
]))
100 #ifndef PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
101 /* ??? When call-clobbered, the value is stable modulo the restore
102 that must happen after a call. This currently screws up local-alloc
103 into believing that the restore is not needed. */
104 if (x
== pic_offset_table_rtx
)
110 if (MEM_VOLATILE_P (x
))
119 fmt
= GET_RTX_FORMAT (code
);
120 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
123 if (rtx_unstable_p (XEXP (x
, i
)))
126 else if (fmt
[i
] == 'E')
129 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
130 if (rtx_unstable_p (XVECEXP (x
, i
, j
)))
137 /* Return 1 if X has a value that can vary even between two
138 executions of the program. 0 means X can be compared reliably
139 against certain constants or near-constants.
140 FOR_ALIAS is nonzero if we are called from alias analysis; if it is
141 zero, we are slightly more conservative.
142 The frame pointer and the arg pointer are considered constant. */
145 rtx_varies_p (rtx x
, int for_alias
)
158 return !MEM_READONLY_P (x
) || rtx_varies_p (XEXP (x
, 0), for_alias
);
169 /* Note that we have to test for the actual rtx used for the frame
170 and arg pointers and not just the register number in case we have
171 eliminated the frame and/or arg pointer and are using it
173 if (x
== frame_pointer_rtx
|| x
== hard_frame_pointer_rtx
174 /* The arg pointer varies if it is not a fixed register. */
175 || (x
== arg_pointer_rtx
&& fixed_regs
[ARG_POINTER_REGNUM
]))
177 if (x
== pic_offset_table_rtx
178 #ifdef PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
179 /* ??? When call-clobbered, the value is stable modulo the restore
180 that must happen after a call. This currently screws up
181 local-alloc into believing that the restore is not needed, so we
182 must return 0 only if we are called from alias analysis. */
190 /* The operand 0 of a LO_SUM is considered constant
191 (in fact it is related specifically to operand 1)
192 during alias analysis. */
193 return (! for_alias
&& rtx_varies_p (XEXP (x
, 0), for_alias
))
194 || rtx_varies_p (XEXP (x
, 1), for_alias
);
197 if (MEM_VOLATILE_P (x
))
206 fmt
= GET_RTX_FORMAT (code
);
207 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
210 if (rtx_varies_p (XEXP (x
, i
), for_alias
))
213 else if (fmt
[i
] == 'E')
216 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
217 if (rtx_varies_p (XVECEXP (x
, i
, j
), for_alias
))
224 /* Return 0 if the use of X as an address in a MEM can cause a trap. */
227 rtx_addr_can_trap_p (rtx x
)
229 enum rtx_code code
= GET_CODE (x
);
234 return SYMBOL_REF_WEAK (x
);
240 /* As in rtx_varies_p, we have to use the actual rtx, not reg number. */
241 if (x
== frame_pointer_rtx
|| x
== hard_frame_pointer_rtx
242 || x
== stack_pointer_rtx
243 /* The arg pointer varies if it is not a fixed register. */
244 || (x
== arg_pointer_rtx
&& fixed_regs
[ARG_POINTER_REGNUM
]))
246 /* All of the virtual frame registers are stack references. */
247 if (REGNO (x
) >= FIRST_VIRTUAL_REGISTER
248 && REGNO (x
) <= LAST_VIRTUAL_REGISTER
)
253 return rtx_addr_can_trap_p (XEXP (x
, 0));
256 /* An address is assumed not to trap if it is an address that can't
257 trap plus a constant integer or it is the pic register plus a
259 return ! ((! rtx_addr_can_trap_p (XEXP (x
, 0))
260 && GET_CODE (XEXP (x
, 1)) == CONST_INT
)
261 || (XEXP (x
, 0) == pic_offset_table_rtx
262 && CONSTANT_P (XEXP (x
, 1))));
266 return rtx_addr_can_trap_p (XEXP (x
, 1));
273 return rtx_addr_can_trap_p (XEXP (x
, 0));
279 /* If it isn't one of the case above, it can cause a trap. */
283 /* Return true if X is an address that is known to not be zero. */
286 nonzero_address_p (rtx x
)
288 enum rtx_code code
= GET_CODE (x
);
293 return !SYMBOL_REF_WEAK (x
);
299 /* As in rtx_varies_p, we have to use the actual rtx, not reg number. */
300 if (x
== frame_pointer_rtx
|| x
== hard_frame_pointer_rtx
301 || x
== stack_pointer_rtx
302 || (x
== arg_pointer_rtx
&& fixed_regs
[ARG_POINTER_REGNUM
]))
304 /* All of the virtual frame registers are stack references. */
305 if (REGNO (x
) >= FIRST_VIRTUAL_REGISTER
306 && REGNO (x
) <= LAST_VIRTUAL_REGISTER
)
311 return nonzero_address_p (XEXP (x
, 0));
314 if (GET_CODE (XEXP (x
, 1)) == CONST_INT
)
316 /* Pointers aren't allowed to wrap. If we've got a register
317 that is known to be a pointer, and a positive offset, then
318 the composite can't be zero. */
319 if (INTVAL (XEXP (x
, 1)) > 0
320 && REG_P (XEXP (x
, 0))
321 && REG_POINTER (XEXP (x
, 0)))
324 return nonzero_address_p (XEXP (x
, 0));
326 /* Handle PIC references. */
327 else if (XEXP (x
, 0) == pic_offset_table_rtx
328 && CONSTANT_P (XEXP (x
, 1)))
333 /* Similar to the above; allow positive offsets. Further, since
334 auto-inc is only allowed in memories, the register must be a
336 if (GET_CODE (XEXP (x
, 1)) == CONST_INT
337 && INTVAL (XEXP (x
, 1)) > 0)
339 return nonzero_address_p (XEXP (x
, 0));
342 /* Similarly. Further, the offset is always positive. */
349 return nonzero_address_p (XEXP (x
, 0));
352 return nonzero_address_p (XEXP (x
, 1));
358 /* If it isn't one of the case above, might be zero. */
362 /* Return 1 if X refers to a memory location whose address
363 cannot be compared reliably with constant addresses,
364 or if X refers to a BLKmode memory object.
365 FOR_ALIAS is nonzero if we are called from alias analysis; if it is
366 zero, we are slightly more conservative. */
369 rtx_addr_varies_p (rtx x
, int for_alias
)
380 return GET_MODE (x
) == BLKmode
|| rtx_varies_p (XEXP (x
, 0), for_alias
);
382 fmt
= GET_RTX_FORMAT (code
);
383 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
386 if (rtx_addr_varies_p (XEXP (x
, i
), for_alias
))
389 else if (fmt
[i
] == 'E')
392 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
393 if (rtx_addr_varies_p (XVECEXP (x
, i
, j
), for_alias
))
399 /* Return the value of the integer term in X, if one is apparent;
401 Only obvious integer terms are detected.
402 This is used in cse.c with the `related_value' field. */
405 get_integer_term (rtx x
)
407 if (GET_CODE (x
) == CONST
)
410 if (GET_CODE (x
) == MINUS
411 && GET_CODE (XEXP (x
, 1)) == CONST_INT
)
412 return - INTVAL (XEXP (x
, 1));
413 if (GET_CODE (x
) == PLUS
414 && GET_CODE (XEXP (x
, 1)) == CONST_INT
)
415 return INTVAL (XEXP (x
, 1));
419 /* If X is a constant, return the value sans apparent integer term;
421 Only obvious integer terms are detected. */
424 get_related_value (rtx x
)
426 if (GET_CODE (x
) != CONST
)
429 if (GET_CODE (x
) == PLUS
430 && GET_CODE (XEXP (x
, 1)) == CONST_INT
)
432 else if (GET_CODE (x
) == MINUS
433 && GET_CODE (XEXP (x
, 1)) == CONST_INT
)
438 /* Given a tablejump insn INSN, return the RTL expression for the offset
439 into the jump table. If the offset cannot be determined, then return
442 If EARLIEST is nonzero, it is a pointer to a place where the earliest
443 insn used in locating the offset was found. */
446 get_jump_table_offset (rtx insn
, rtx
*earliest
)
458 if (!tablejump_p (insn
, &label
, &table
) || !(set
= single_set (insn
)))
463 /* Some targets (eg, ARM) emit a tablejump that also
464 contains the out-of-range target. */
465 if (GET_CODE (x
) == IF_THEN_ELSE
466 && GET_CODE (XEXP (x
, 2)) == LABEL_REF
)
469 /* Search backwards and locate the expression stored in X. */
470 for (old_x
= NULL_RTX
; REG_P (x
) && x
!= old_x
;
471 old_x
= x
, x
= find_last_value (x
, &insn
, NULL_RTX
, 0))
474 /* If X is an expression using a relative address then strip
475 off the addition / subtraction of PC, PIC_OFFSET_TABLE_REGNUM,
476 or the jump table label. */
477 if (GET_CODE (PATTERN (table
)) == ADDR_DIFF_VEC
478 && (GET_CODE (x
) == PLUS
|| GET_CODE (x
) == MINUS
))
480 for (i
= 0; i
< 2; i
++)
485 if (y
== pc_rtx
|| y
== pic_offset_table_rtx
)
488 for (old_y
= NULL_RTX
; REG_P (y
) && y
!= old_y
;
489 old_y
= y
, y
= find_last_value (y
, &old_insn
, NULL_RTX
, 0))
492 if ((GET_CODE (y
) == LABEL_REF
&& XEXP (y
, 0) == label
))
501 for (old_x
= NULL_RTX
; REG_P (x
) && x
!= old_x
;
502 old_x
= x
, x
= find_last_value (x
, &insn
, NULL_RTX
, 0))
506 /* Strip off any sign or zero extension. */
507 if (GET_CODE (x
) == SIGN_EXTEND
|| GET_CODE (x
) == ZERO_EXTEND
)
511 for (old_x
= NULL_RTX
; REG_P (x
) && x
!= old_x
;
512 old_x
= x
, x
= find_last_value (x
, &insn
, NULL_RTX
, 0))
516 /* If X isn't a MEM then this isn't a tablejump we understand. */
520 /* Strip off the MEM. */
523 for (old_x
= NULL_RTX
; REG_P (x
) && x
!= old_x
;
524 old_x
= x
, x
= find_last_value (x
, &insn
, NULL_RTX
, 0))
527 /* If X isn't a PLUS than this isn't a tablejump we understand. */
528 if (GET_CODE (x
) != PLUS
)
531 /* At this point we should have an expression representing the jump table
532 plus an offset. Examine each operand in order to determine which one
533 represents the jump table. Knowing that tells us that the other operand
534 must represent the offset. */
535 for (i
= 0; i
< 2; i
++)
540 for (old_y
= NULL_RTX
; REG_P (y
) && y
!= old_y
;
541 old_y
= y
, y
= find_last_value (y
, &old_insn
, NULL_RTX
, 0))
544 if ((GET_CODE (y
) == CONST
|| GET_CODE (y
) == LABEL_REF
)
545 && reg_mentioned_p (label
, y
))
554 /* Strip off the addition / subtraction of PIC_OFFSET_TABLE_REGNUM. */
555 if (GET_CODE (x
) == PLUS
|| GET_CODE (x
) == MINUS
)
556 for (i
= 0; i
< 2; i
++)
557 if (XEXP (x
, i
) == pic_offset_table_rtx
)
566 /* Return the RTL expression representing the offset. */
570 /* A subroutine of global_reg_mentioned_p, returns 1 if *LOC mentions
571 a global register. */
574 global_reg_mentioned_p_1 (rtx
*loc
, void *data ATTRIBUTE_UNUSED
)
582 switch (GET_CODE (x
))
585 if (REG_P (SUBREG_REG (x
)))
587 if (REGNO (SUBREG_REG (x
)) < FIRST_PSEUDO_REGISTER
588 && global_regs
[subreg_regno (x
)])
596 if (regno
< FIRST_PSEUDO_REGISTER
&& global_regs
[regno
])
610 /* A non-constant call might use a global register. */
620 /* Returns nonzero if X mentions a global register. */
623 global_reg_mentioned_p (rtx x
)
629 if (! CONST_OR_PURE_CALL_P (x
))
631 x
= CALL_INSN_FUNCTION_USAGE (x
);
639 return for_each_rtx (&x
, global_reg_mentioned_p_1
, NULL
);
642 /* Return the number of places FIND appears within X. If COUNT_DEST is
643 zero, we do not count occurrences inside the destination of a SET. */
646 count_occurrences (rtx x
, rtx find
, int count_dest
)
650 const char *format_ptr
;
671 if (MEM_P (find
) && rtx_equal_p (x
, find
))
676 if (SET_DEST (x
) == find
&& ! count_dest
)
677 return count_occurrences (SET_SRC (x
), find
, count_dest
);
684 format_ptr
= GET_RTX_FORMAT (code
);
687 for (i
= 0; i
< GET_RTX_LENGTH (code
); i
++)
689 switch (*format_ptr
++)
692 count
+= count_occurrences (XEXP (x
, i
), find
, count_dest
);
696 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
697 count
+= count_occurrences (XVECEXP (x
, i
, j
), find
, count_dest
);
704 /* Nonzero if register REG appears somewhere within IN.
705 Also works if REG is not a register; in this case it checks
706 for a subexpression of IN that is Lisp "equal" to REG. */
709 reg_mentioned_p (rtx reg
, rtx in
)
721 if (GET_CODE (in
) == LABEL_REF
)
722 return reg
== XEXP (in
, 0);
724 code
= GET_CODE (in
);
728 /* Compare registers by number. */
730 return REG_P (reg
) && REGNO (in
) == REGNO (reg
);
732 /* These codes have no constituent expressions
742 /* These are kept unique for a given value. */
749 if (GET_CODE (reg
) == code
&& rtx_equal_p (reg
, in
))
752 fmt
= GET_RTX_FORMAT (code
);
754 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
759 for (j
= XVECLEN (in
, i
) - 1; j
>= 0; j
--)
760 if (reg_mentioned_p (reg
, XVECEXP (in
, i
, j
)))
763 else if (fmt
[i
] == 'e'
764 && reg_mentioned_p (reg
, XEXP (in
, i
)))
770 /* Return 1 if in between BEG and END, exclusive of BEG and END, there is
771 no CODE_LABEL insn. */
774 no_labels_between_p (rtx beg
, rtx end
)
779 for (p
= NEXT_INSN (beg
); p
!= end
; p
= NEXT_INSN (p
))
785 /* Return 1 if in between BEG and END, exclusive of BEG and END, there is
786 no JUMP_INSN insn. */
789 no_jumps_between_p (rtx beg
, rtx end
)
792 for (p
= NEXT_INSN (beg
); p
!= end
; p
= NEXT_INSN (p
))
798 /* Nonzero if register REG is used in an insn between
799 FROM_INSN and TO_INSN (exclusive of those two). */
802 reg_used_between_p (rtx reg
, rtx from_insn
, rtx to_insn
)
806 if (from_insn
== to_insn
)
809 for (insn
= NEXT_INSN (from_insn
); insn
!= to_insn
; insn
= NEXT_INSN (insn
))
811 && (reg_overlap_mentioned_p (reg
, PATTERN (insn
))
813 && (find_reg_fusage (insn
, USE
, reg
)
814 || find_reg_fusage (insn
, CLOBBER
, reg
)))))
819 /* Nonzero if the old value of X, a register, is referenced in BODY. If X
820 is entirely replaced by a new value and the only use is as a SET_DEST,
821 we do not consider it a reference. */
824 reg_referenced_p (rtx x
, rtx body
)
828 switch (GET_CODE (body
))
831 if (reg_overlap_mentioned_p (x
, SET_SRC (body
)))
834 /* If the destination is anything other than CC0, PC, a REG or a SUBREG
835 of a REG that occupies all of the REG, the insn references X if
836 it is mentioned in the destination. */
837 if (GET_CODE (SET_DEST (body
)) != CC0
838 && GET_CODE (SET_DEST (body
)) != PC
839 && !REG_P (SET_DEST (body
))
840 && ! (GET_CODE (SET_DEST (body
)) == SUBREG
841 && REG_P (SUBREG_REG (SET_DEST (body
)))
842 && (((GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (body
))))
843 + (UNITS_PER_WORD
- 1)) / UNITS_PER_WORD
)
844 == ((GET_MODE_SIZE (GET_MODE (SET_DEST (body
)))
845 + (UNITS_PER_WORD
- 1)) / UNITS_PER_WORD
)))
846 && reg_overlap_mentioned_p (x
, SET_DEST (body
)))
851 for (i
= ASM_OPERANDS_INPUT_LENGTH (body
) - 1; i
>= 0; i
--)
852 if (reg_overlap_mentioned_p (x
, ASM_OPERANDS_INPUT (body
, i
)))
859 return reg_overlap_mentioned_p (x
, body
);
862 return reg_overlap_mentioned_p (x
, TRAP_CONDITION (body
));
865 return reg_overlap_mentioned_p (x
, XEXP (body
, 0));
868 case UNSPEC_VOLATILE
:
869 for (i
= XVECLEN (body
, 0) - 1; i
>= 0; i
--)
870 if (reg_overlap_mentioned_p (x
, XVECEXP (body
, 0, i
)))
875 for (i
= XVECLEN (body
, 0) - 1; i
>= 0; i
--)
876 if (reg_referenced_p (x
, XVECEXP (body
, 0, i
)))
881 if (MEM_P (XEXP (body
, 0)))
882 if (reg_overlap_mentioned_p (x
, XEXP (XEXP (body
, 0), 0)))
887 if (reg_overlap_mentioned_p (x
, COND_EXEC_TEST (body
)))
889 return reg_referenced_p (x
, COND_EXEC_CODE (body
));
896 /* Nonzero if register REG is referenced in an insn between
897 FROM_INSN and TO_INSN (exclusive of those two). Sets of REG do
901 reg_referenced_between_p (rtx reg
, rtx from_insn
, rtx to_insn
)
905 if (from_insn
== to_insn
)
908 for (insn
= NEXT_INSN (from_insn
); insn
!= to_insn
; insn
= NEXT_INSN (insn
))
910 && (reg_referenced_p (reg
, PATTERN (insn
))
912 && find_reg_fusage (insn
, USE
, reg
))))
917 /* Nonzero if register REG is set or clobbered in an insn between
918 FROM_INSN and TO_INSN (exclusive of those two). */
921 reg_set_between_p (rtx reg
, rtx from_insn
, rtx to_insn
)
925 if (from_insn
== to_insn
)
928 for (insn
= NEXT_INSN (from_insn
); insn
!= to_insn
; insn
= NEXT_INSN (insn
))
929 if (INSN_P (insn
) && reg_set_p (reg
, insn
))
934 /* Internals of reg_set_between_p. */
936 reg_set_p (rtx reg
, rtx insn
)
938 /* We can be passed an insn or part of one. If we are passed an insn,
939 check if a side-effect of the insn clobbers REG. */
941 && (FIND_REG_INC_NOTE (insn
, reg
)
944 && REGNO (reg
) < FIRST_PSEUDO_REGISTER
945 && TEST_HARD_REG_BIT (regs_invalidated_by_call
,
948 || find_reg_fusage (insn
, CLOBBER
, reg
)))))
951 return set_of (reg
, insn
) != NULL_RTX
;
954 /* Similar to reg_set_between_p, but check all registers in X. Return 0
955 only if none of them are modified between START and END. Do not
956 consider non-registers one way or the other. */
959 regs_set_between_p (rtx x
, rtx start
, rtx end
)
961 enum rtx_code code
= GET_CODE (x
);
978 return reg_set_between_p (x
, start
, end
);
984 fmt
= GET_RTX_FORMAT (code
);
985 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
987 if (fmt
[i
] == 'e' && regs_set_between_p (XEXP (x
, i
), start
, end
))
990 else if (fmt
[i
] == 'E')
991 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
992 if (regs_set_between_p (XVECEXP (x
, i
, j
), start
, end
))
999 /* Similar to reg_set_between_p, but check all registers in X. Return 0
1000 only if none of them are modified between START and END. Return 1 if
1001 X contains a MEM; this routine does usememory aliasing. */
1004 modified_between_p (rtx x
, rtx start
, rtx end
)
1006 enum rtx_code code
= GET_CODE (x
);
1029 if (MEM_READONLY_P (x
))
1031 if (modified_between_p (XEXP (x
, 0), start
, end
))
1033 for (insn
= NEXT_INSN (start
); insn
!= end
; insn
= NEXT_INSN (insn
))
1034 if (memory_modified_in_insn_p (x
, insn
))
1040 return reg_set_between_p (x
, start
, end
);
1046 fmt
= GET_RTX_FORMAT (code
);
1047 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
1049 if (fmt
[i
] == 'e' && modified_between_p (XEXP (x
, i
), start
, end
))
1052 else if (fmt
[i
] == 'E')
1053 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
1054 if (modified_between_p (XVECEXP (x
, i
, j
), start
, end
))
1061 /* Similar to reg_set_p, but check all registers in X. Return 0 only if none
1062 of them are modified in INSN. Return 1 if X contains a MEM; this routine
1063 does use memory aliasing. */
1066 modified_in_p (rtx x
, rtx insn
)
1068 enum rtx_code code
= GET_CODE (x
);
1087 if (MEM_READONLY_P (x
))
1089 if (modified_in_p (XEXP (x
, 0), insn
))
1091 if (memory_modified_in_insn_p (x
, insn
))
1097 return reg_set_p (x
, insn
);
1103 fmt
= GET_RTX_FORMAT (code
);
1104 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
1106 if (fmt
[i
] == 'e' && modified_in_p (XEXP (x
, i
), insn
))
1109 else if (fmt
[i
] == 'E')
1110 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
1111 if (modified_in_p (XVECEXP (x
, i
, j
), insn
))
1118 /* Return true if anything in insn X is (anti,output,true) dependent on
1119 anything in insn Y. */
1122 insn_dependent_p (rtx x
, rtx y
)
1126 gcc_assert (INSN_P (x
));
1127 gcc_assert (INSN_P (y
));
1130 note_stores (PATTERN (x
), insn_dependent_p_1
, &tmp
);
1131 if (tmp
== NULL_RTX
)
1135 note_stores (PATTERN (y
), insn_dependent_p_1
, &tmp
);
1136 if (tmp
== NULL_RTX
)
1142 /* A helper routine for insn_dependent_p called through note_stores. */
1145 insn_dependent_p_1 (rtx x
, rtx pat ATTRIBUTE_UNUSED
, void *data
)
1147 rtx
* pinsn
= (rtx
*) data
;
1149 if (*pinsn
&& reg_mentioned_p (x
, *pinsn
))
1153 /* Helper function for set_of. */
1161 set_of_1 (rtx x
, rtx pat
, void *data1
)
1163 struct set_of_data
*data
= (struct set_of_data
*) (data1
);
1164 if (rtx_equal_p (x
, data
->pat
)
1165 || (!MEM_P (x
) && reg_overlap_mentioned_p (data
->pat
, x
)))
1169 /* Give an INSN, return a SET or CLOBBER expression that does modify PAT
1170 (either directly or via STRICT_LOW_PART and similar modifiers). */
1172 set_of (rtx pat
, rtx insn
)
1174 struct set_of_data data
;
1175 data
.found
= NULL_RTX
;
1177 note_stores (INSN_P (insn
) ? PATTERN (insn
) : insn
, set_of_1
, &data
);
1181 /* Given an INSN, return a SET expression if this insn has only a single SET.
1182 It may also have CLOBBERs, USEs, or SET whose output
1183 will not be used, which we ignore. */
1186 single_set_2 (rtx insn
, rtx pat
)
1189 int set_verified
= 1;
1192 if (GET_CODE (pat
) == PARALLEL
)
1194 for (i
= 0; i
< XVECLEN (pat
, 0); i
++)
1196 rtx sub
= XVECEXP (pat
, 0, i
);
1197 switch (GET_CODE (sub
))
1204 /* We can consider insns having multiple sets, where all
1205 but one are dead as single set insns. In common case
1206 only single set is present in the pattern so we want
1207 to avoid checking for REG_UNUSED notes unless necessary.
1209 When we reach set first time, we just expect this is
1210 the single set we are looking for and only when more
1211 sets are found in the insn, we check them. */
1214 if (find_reg_note (insn
, REG_UNUSED
, SET_DEST (set
))
1215 && !side_effects_p (set
))
1221 set
= sub
, set_verified
= 0;
1222 else if (!find_reg_note (insn
, REG_UNUSED
, SET_DEST (sub
))
1223 || side_effects_p (sub
))
1235 /* Given an INSN, return nonzero if it has more than one SET, else return
1239 multiple_sets (rtx insn
)
1244 /* INSN must be an insn. */
1245 if (! INSN_P (insn
))
1248 /* Only a PARALLEL can have multiple SETs. */
1249 if (GET_CODE (PATTERN (insn
)) == PARALLEL
)
1251 for (i
= 0, found
= 0; i
< XVECLEN (PATTERN (insn
), 0); i
++)
1252 if (GET_CODE (XVECEXP (PATTERN (insn
), 0, i
)) == SET
)
1254 /* If we have already found a SET, then return now. */
1262 /* Either zero or one SET. */
1266 /* Return nonzero if the destination of SET equals the source
1267 and there are no side effects. */
1270 set_noop_p (rtx set
)
1272 rtx src
= SET_SRC (set
);
1273 rtx dst
= SET_DEST (set
);
1275 if (dst
== pc_rtx
&& src
== pc_rtx
)
1278 if (MEM_P (dst
) && MEM_P (src
))
1279 return rtx_equal_p (dst
, src
) && !side_effects_p (dst
);
1281 if (GET_CODE (dst
) == SIGN_EXTRACT
1282 || GET_CODE (dst
) == ZERO_EXTRACT
)
1283 return rtx_equal_p (XEXP (dst
, 0), src
)
1284 && ! BYTES_BIG_ENDIAN
&& XEXP (dst
, 2) == const0_rtx
1285 && !side_effects_p (src
);
1287 if (GET_CODE (dst
) == STRICT_LOW_PART
)
1288 dst
= XEXP (dst
, 0);
1290 if (GET_CODE (src
) == SUBREG
&& GET_CODE (dst
) == SUBREG
)
1292 if (SUBREG_BYTE (src
) != SUBREG_BYTE (dst
))
1294 src
= SUBREG_REG (src
);
1295 dst
= SUBREG_REG (dst
);
1298 return (REG_P (src
) && REG_P (dst
)
1299 && REGNO (src
) == REGNO (dst
));
1302 /* Return nonzero if an insn consists only of SETs, each of which only sets a
1306 noop_move_p (rtx insn
)
1308 rtx pat
= PATTERN (insn
);
1310 if (INSN_CODE (insn
) == NOOP_MOVE_INSN_CODE
)
1313 /* Insns carrying these notes are useful later on. */
1314 if (find_reg_note (insn
, REG_EQUAL
, NULL_RTX
))
1317 /* For now treat an insn with a REG_RETVAL note as a
1318 a special insn which should not be considered a no-op. */
1319 if (find_reg_note (insn
, REG_RETVAL
, NULL_RTX
))
1322 if (GET_CODE (pat
) == SET
&& set_noop_p (pat
))
1325 if (GET_CODE (pat
) == PARALLEL
)
1328 /* If nothing but SETs of registers to themselves,
1329 this insn can also be deleted. */
1330 for (i
= 0; i
< XVECLEN (pat
, 0); i
++)
1332 rtx tem
= XVECEXP (pat
, 0, i
);
1334 if (GET_CODE (tem
) == USE
1335 || GET_CODE (tem
) == CLOBBER
)
1338 if (GET_CODE (tem
) != SET
|| ! set_noop_p (tem
))
1348 /* Return the last thing that X was assigned from before *PINSN. If VALID_TO
1349 is not NULL_RTX then verify that the object is not modified up to VALID_TO.
1350 If the object was modified, if we hit a partial assignment to X, or hit a
1351 CODE_LABEL first, return X. If we found an assignment, update *PINSN to
1352 point to it. ALLOW_HWREG is set to 1 if hardware registers are allowed to
1356 find_last_value (rtx x
, rtx
*pinsn
, rtx valid_to
, int allow_hwreg
)
1360 for (p
= PREV_INSN (*pinsn
); p
&& !LABEL_P (p
);
1364 rtx set
= single_set (p
);
1365 rtx note
= find_reg_note (p
, REG_EQUAL
, NULL_RTX
);
1367 if (set
&& rtx_equal_p (x
, SET_DEST (set
)))
1369 rtx src
= SET_SRC (set
);
1371 if (note
&& GET_CODE (XEXP (note
, 0)) != EXPR_LIST
)
1372 src
= XEXP (note
, 0);
1374 if ((valid_to
== NULL_RTX
1375 || ! modified_between_p (src
, PREV_INSN (p
), valid_to
))
1376 /* Reject hard registers because we don't usually want
1377 to use them; we'd rather use a pseudo. */
1379 && REGNO (src
) < FIRST_PSEUDO_REGISTER
) || allow_hwreg
))
1386 /* If set in non-simple way, we don't have a value. */
1387 if (reg_set_p (x
, p
))
1394 /* Return nonzero if register in range [REGNO, ENDREGNO)
1395 appears either explicitly or implicitly in X
1396 other than being stored into.
1398 References contained within the substructure at LOC do not count.
1399 LOC may be zero, meaning don't ignore anything. */
1402 refers_to_regno_p (unsigned int regno
, unsigned int endregno
, rtx x
,
1406 unsigned int x_regno
;
1411 /* The contents of a REG_NONNEG note is always zero, so we must come here
1412 upon repeat in case the last REG_NOTE is a REG_NONNEG note. */
1416 code
= GET_CODE (x
);
1421 x_regno
= REGNO (x
);
1423 /* If we modifying the stack, frame, or argument pointer, it will
1424 clobber a virtual register. In fact, we could be more precise,
1425 but it isn't worth it. */
1426 if ((x_regno
== STACK_POINTER_REGNUM
1427 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
1428 || x_regno
== ARG_POINTER_REGNUM
1430 || x_regno
== FRAME_POINTER_REGNUM
)
1431 && regno
>= FIRST_VIRTUAL_REGISTER
&& regno
<= LAST_VIRTUAL_REGISTER
)
1434 return (endregno
> x_regno
1435 && regno
< x_regno
+ (x_regno
< FIRST_PSEUDO_REGISTER
1436 ? hard_regno_nregs
[x_regno
][GET_MODE (x
)]
1440 /* If this is a SUBREG of a hard reg, we can see exactly which
1441 registers are being modified. Otherwise, handle normally. */
1442 if (REG_P (SUBREG_REG (x
))
1443 && REGNO (SUBREG_REG (x
)) < FIRST_PSEUDO_REGISTER
)
1445 unsigned int inner_regno
= subreg_regno (x
);
1446 unsigned int inner_endregno
1447 = inner_regno
+ (inner_regno
< FIRST_PSEUDO_REGISTER
1448 ? hard_regno_nregs
[inner_regno
][GET_MODE (x
)] : 1);
1450 return endregno
> inner_regno
&& regno
< inner_endregno
;
1456 if (&SET_DEST (x
) != loc
1457 /* Note setting a SUBREG counts as referring to the REG it is in for
1458 a pseudo but not for hard registers since we can
1459 treat each word individually. */
1460 && ((GET_CODE (SET_DEST (x
)) == SUBREG
1461 && loc
!= &SUBREG_REG (SET_DEST (x
))
1462 && REG_P (SUBREG_REG (SET_DEST (x
)))
1463 && REGNO (SUBREG_REG (SET_DEST (x
))) >= FIRST_PSEUDO_REGISTER
1464 && refers_to_regno_p (regno
, endregno
,
1465 SUBREG_REG (SET_DEST (x
)), loc
))
1466 || (!REG_P (SET_DEST (x
))
1467 && refers_to_regno_p (regno
, endregno
, SET_DEST (x
), loc
))))
1470 if (code
== CLOBBER
|| loc
== &SET_SRC (x
))
1479 /* X does not match, so try its subexpressions. */
1481 fmt
= GET_RTX_FORMAT (code
);
1482 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
1484 if (fmt
[i
] == 'e' && loc
!= &XEXP (x
, i
))
1492 if (refers_to_regno_p (regno
, endregno
, XEXP (x
, i
), loc
))
1495 else if (fmt
[i
] == 'E')
1498 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
1499 if (loc
!= &XVECEXP (x
, i
, j
)
1500 && refers_to_regno_p (regno
, endregno
, XVECEXP (x
, i
, j
), loc
))
1507 /* Nonzero if modifying X will affect IN. If X is a register or a SUBREG,
1508 we check if any register number in X conflicts with the relevant register
1509 numbers. If X is a constant, return 0. If X is a MEM, return 1 iff IN
1510 contains a MEM (we don't bother checking for memory addresses that can't
1511 conflict because we expect this to be a rare case. */
1514 reg_overlap_mentioned_p (rtx x
, rtx in
)
1516 unsigned int regno
, endregno
;
1518 /* If either argument is a constant, then modifying X can not
1519 affect IN. Here we look at IN, we can profitably combine
1520 CONSTANT_P (x) with the switch statement below. */
1521 if (CONSTANT_P (in
))
1525 switch (GET_CODE (x
))
1527 case STRICT_LOW_PART
:
1530 /* Overly conservative. */
1535 regno
= REGNO (SUBREG_REG (x
));
1536 if (regno
< FIRST_PSEUDO_REGISTER
)
1537 regno
= subreg_regno (x
);
1543 endregno
= regno
+ (regno
< FIRST_PSEUDO_REGISTER
1544 ? hard_regno_nregs
[regno
][GET_MODE (x
)] : 1);
1545 return refers_to_regno_p (regno
, endregno
, in
, (rtx
*) 0);
1555 fmt
= GET_RTX_FORMAT (GET_CODE (in
));
1556 for (i
= GET_RTX_LENGTH (GET_CODE (in
)) - 1; i
>= 0; i
--)
1557 if (fmt
[i
] == 'e' && reg_overlap_mentioned_p (x
, XEXP (in
, i
)))
1566 return reg_mentioned_p (x
, in
);
1572 /* If any register in here refers to it we return true. */
1573 for (i
= XVECLEN (x
, 0) - 1; i
>= 0; i
--)
1574 if (XEXP (XVECEXP (x
, 0, i
), 0) != 0
1575 && reg_overlap_mentioned_p (XEXP (XVECEXP (x
, 0, i
), 0), in
))
1581 gcc_assert (CONSTANT_P (x
));
1586 /* Call FUN on each register or MEM that is stored into or clobbered by X.
1587 (X would be the pattern of an insn).
1588 FUN receives two arguments:
1589 the REG, MEM, CC0 or PC being stored in or clobbered,
1590 the SET or CLOBBER rtx that does the store.
1592 If the item being stored in or clobbered is a SUBREG of a hard register,
1593 the SUBREG will be passed. */
1596 note_stores (rtx x
, void (*fun
) (rtx
, rtx
, void *), void *data
)
1600 if (GET_CODE (x
) == COND_EXEC
)
1601 x
= COND_EXEC_CODE (x
);
1603 if (GET_CODE (x
) == SET
|| GET_CODE (x
) == CLOBBER
)
1605 rtx dest
= SET_DEST (x
);
1607 while ((GET_CODE (dest
) == SUBREG
1608 && (!REG_P (SUBREG_REG (dest
))
1609 || REGNO (SUBREG_REG (dest
)) >= FIRST_PSEUDO_REGISTER
))
1610 || GET_CODE (dest
) == ZERO_EXTRACT
1611 || GET_CODE (dest
) == SIGN_EXTRACT
1612 || GET_CODE (dest
) == STRICT_LOW_PART
)
1613 dest
= XEXP (dest
, 0);
1615 /* If we have a PARALLEL, SET_DEST is a list of EXPR_LIST expressions,
1616 each of whose first operand is a register. */
1617 if (GET_CODE (dest
) == PARALLEL
)
1619 for (i
= XVECLEN (dest
, 0) - 1; i
>= 0; i
--)
1620 if (XEXP (XVECEXP (dest
, 0, i
), 0) != 0)
1621 (*fun
) (XEXP (XVECEXP (dest
, 0, i
), 0), x
, data
);
1624 (*fun
) (dest
, x
, data
);
1627 else if (GET_CODE (x
) == PARALLEL
)
1628 for (i
= XVECLEN (x
, 0) - 1; i
>= 0; i
--)
1629 note_stores (XVECEXP (x
, 0, i
), fun
, data
);
1632 /* Like notes_stores, but call FUN for each expression that is being
1633 referenced in PBODY, a pointer to the PATTERN of an insn. We only call
1634 FUN for each expression, not any interior subexpressions. FUN receives a
1635 pointer to the expression and the DATA passed to this function.
1637 Note that this is not quite the same test as that done in reg_referenced_p
1638 since that considers something as being referenced if it is being
1639 partially set, while we do not. */
1642 note_uses (rtx
*pbody
, void (*fun
) (rtx
*, void *), void *data
)
1647 switch (GET_CODE (body
))
1650 (*fun
) (&COND_EXEC_TEST (body
), data
);
1651 note_uses (&COND_EXEC_CODE (body
), fun
, data
);
1655 for (i
= XVECLEN (body
, 0) - 1; i
>= 0; i
--)
1656 note_uses (&XVECEXP (body
, 0, i
), fun
, data
);
1660 (*fun
) (&XEXP (body
, 0), data
);
1664 for (i
= ASM_OPERANDS_INPUT_LENGTH (body
) - 1; i
>= 0; i
--)
1665 (*fun
) (&ASM_OPERANDS_INPUT (body
, i
), data
);
1669 (*fun
) (&TRAP_CONDITION (body
), data
);
1673 (*fun
) (&XEXP (body
, 0), data
);
1677 case UNSPEC_VOLATILE
:
1678 for (i
= XVECLEN (body
, 0) - 1; i
>= 0; i
--)
1679 (*fun
) (&XVECEXP (body
, 0, i
), data
);
1683 if (MEM_P (XEXP (body
, 0)))
1684 (*fun
) (&XEXP (XEXP (body
, 0), 0), data
);
1689 rtx dest
= SET_DEST (body
);
1691 /* For sets we replace everything in source plus registers in memory
1692 expression in store and operands of a ZERO_EXTRACT. */
1693 (*fun
) (&SET_SRC (body
), data
);
1695 if (GET_CODE (dest
) == ZERO_EXTRACT
)
1697 (*fun
) (&XEXP (dest
, 1), data
);
1698 (*fun
) (&XEXP (dest
, 2), data
);
1701 while (GET_CODE (dest
) == SUBREG
|| GET_CODE (dest
) == STRICT_LOW_PART
)
1702 dest
= XEXP (dest
, 0);
1705 (*fun
) (&XEXP (dest
, 0), data
);
1710 /* All the other possibilities never store. */
1711 (*fun
) (pbody
, data
);
1716 /* Return nonzero if X's old contents don't survive after INSN.
1717 This will be true if X is (cc0) or if X is a register and
1718 X dies in INSN or because INSN entirely sets X.
1720 "Entirely set" means set directly and not through a SUBREG,
1721 ZERO_EXTRACT or SIGN_EXTRACT, so no trace of the old contents remains.
1722 Likewise, REG_INC does not count.
1724 REG may be a hard or pseudo reg. Renumbering is not taken into account,
1725 but for this use that makes no difference, since regs don't overlap
1726 during their lifetimes. Therefore, this function may be used
1727 at any time after deaths have been computed (in flow.c).
1729 If REG is a hard reg that occupies multiple machine registers, this
1730 function will only return 1 if each of those registers will be replaced
1734 dead_or_set_p (rtx insn
, rtx x
)
1736 unsigned int regno
, last_regno
;
1739 /* Can't use cc0_rtx below since this file is used by genattrtab.c. */
1740 if (GET_CODE (x
) == CC0
)
1743 gcc_assert (REG_P (x
));
1746 last_regno
= (regno
>= FIRST_PSEUDO_REGISTER
? regno
1747 : regno
+ hard_regno_nregs
[regno
][GET_MODE (x
)] - 1);
1749 for (i
= regno
; i
<= last_regno
; i
++)
1750 if (! dead_or_set_regno_p (insn
, i
))
1756 /* Utility function for dead_or_set_p to check an individual register. Also
1757 called from flow.c. */
1760 dead_or_set_regno_p (rtx insn
, unsigned int test_regno
)
1762 unsigned int regno
, endregno
;
1765 /* See if there is a death note for something that includes TEST_REGNO. */
1766 if (find_regno_note (insn
, REG_DEAD
, test_regno
))
1770 && find_regno_fusage (insn
, CLOBBER
, test_regno
))
1773 pattern
= PATTERN (insn
);
1775 if (GET_CODE (pattern
) == COND_EXEC
)
1776 pattern
= COND_EXEC_CODE (pattern
);
1778 if (GET_CODE (pattern
) == SET
)
1780 rtx dest
= SET_DEST (pattern
);
1782 /* A value is totally replaced if it is the destination or the
1783 destination is a SUBREG of REGNO that does not change the number of
1785 if (GET_CODE (dest
) == SUBREG
1786 && (((GET_MODE_SIZE (GET_MODE (dest
))
1787 + UNITS_PER_WORD
- 1) / UNITS_PER_WORD
)
1788 == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest
)))
1789 + UNITS_PER_WORD
- 1) / UNITS_PER_WORD
)))
1790 dest
= SUBREG_REG (dest
);
1795 regno
= REGNO (dest
);
1796 endregno
= (regno
>= FIRST_PSEUDO_REGISTER
? regno
+ 1
1797 : regno
+ hard_regno_nregs
[regno
][GET_MODE (dest
)]);
1799 return (test_regno
>= regno
&& test_regno
< endregno
);
1801 else if (GET_CODE (pattern
) == PARALLEL
)
1805 for (i
= XVECLEN (pattern
, 0) - 1; i
>= 0; i
--)
1807 rtx body
= XVECEXP (pattern
, 0, i
);
1809 if (GET_CODE (body
) == COND_EXEC
)
1810 body
= COND_EXEC_CODE (body
);
1812 if (GET_CODE (body
) == SET
|| GET_CODE (body
) == CLOBBER
)
1814 rtx dest
= SET_DEST (body
);
1816 if (GET_CODE (dest
) == SUBREG
1817 && (((GET_MODE_SIZE (GET_MODE (dest
))
1818 + UNITS_PER_WORD
- 1) / UNITS_PER_WORD
)
1819 == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest
)))
1820 + UNITS_PER_WORD
- 1) / UNITS_PER_WORD
)))
1821 dest
= SUBREG_REG (dest
);
1826 regno
= REGNO (dest
);
1827 endregno
= (regno
>= FIRST_PSEUDO_REGISTER
? regno
+ 1
1828 : regno
+ hard_regno_nregs
[regno
][GET_MODE (dest
)]);
1830 if (test_regno
>= regno
&& test_regno
< endregno
)
1839 /* Return the reg-note of kind KIND in insn INSN, if there is one.
1840 If DATUM is nonzero, look for one whose datum is DATUM. */
1843 find_reg_note (rtx insn
, enum reg_note kind
, rtx datum
)
1847 /* Ignore anything that is not an INSN, JUMP_INSN or CALL_INSN. */
1848 if (! INSN_P (insn
))
1852 for (link
= REG_NOTES (insn
); link
; link
= XEXP (link
, 1))
1853 if (REG_NOTE_KIND (link
) == kind
)
1858 for (link
= REG_NOTES (insn
); link
; link
= XEXP (link
, 1))
1859 if (REG_NOTE_KIND (link
) == kind
&& datum
== XEXP (link
, 0))
1864 /* Return the reg-note of kind KIND in insn INSN which applies to register
1865 number REGNO, if any. Return 0 if there is no such reg-note. Note that
1866 the REGNO of this NOTE need not be REGNO if REGNO is a hard register;
1867 it might be the case that the note overlaps REGNO. */
1870 find_regno_note (rtx insn
, enum reg_note kind
, unsigned int regno
)
1874 /* Ignore anything that is not an INSN, JUMP_INSN or CALL_INSN. */
1875 if (! INSN_P (insn
))
1878 for (link
= REG_NOTES (insn
); link
; link
= XEXP (link
, 1))
1879 if (REG_NOTE_KIND (link
) == kind
1880 /* Verify that it is a register, so that scratch and MEM won't cause a
1882 && REG_P (XEXP (link
, 0))
1883 && REGNO (XEXP (link
, 0)) <= regno
1884 && ((REGNO (XEXP (link
, 0))
1885 + (REGNO (XEXP (link
, 0)) >= FIRST_PSEUDO_REGISTER
? 1
1886 : hard_regno_nregs
[REGNO (XEXP (link
, 0))]
1887 [GET_MODE (XEXP (link
, 0))]))
1893 /* Return a REG_EQUIV or REG_EQUAL note if insn has only a single set and
1897 find_reg_equal_equiv_note (rtx insn
)
1903 for (link
= REG_NOTES (insn
); link
; link
= XEXP (link
, 1))
1904 if (REG_NOTE_KIND (link
) == REG_EQUAL
1905 || REG_NOTE_KIND (link
) == REG_EQUIV
)
1907 if (single_set (insn
) == 0)
1914 /* Return true if DATUM, or any overlap of DATUM, of kind CODE is found
1915 in the CALL_INSN_FUNCTION_USAGE information of INSN. */
1918 find_reg_fusage (rtx insn
, enum rtx_code code
, rtx datum
)
1920 /* If it's not a CALL_INSN, it can't possibly have a
1921 CALL_INSN_FUNCTION_USAGE field, so don't bother checking. */
1931 for (link
= CALL_INSN_FUNCTION_USAGE (insn
);
1933 link
= XEXP (link
, 1))
1934 if (GET_CODE (XEXP (link
, 0)) == code
1935 && rtx_equal_p (datum
, XEXP (XEXP (link
, 0), 0)))
1940 unsigned int regno
= REGNO (datum
);
1942 /* CALL_INSN_FUNCTION_USAGE information cannot contain references
1943 to pseudo registers, so don't bother checking. */
1945 if (regno
< FIRST_PSEUDO_REGISTER
)
1947 unsigned int end_regno
1948 = regno
+ hard_regno_nregs
[regno
][GET_MODE (datum
)];
1951 for (i
= regno
; i
< end_regno
; i
++)
1952 if (find_regno_fusage (insn
, code
, i
))
1960 /* Return true if REGNO, or any overlap of REGNO, of kind CODE is found
1961 in the CALL_INSN_FUNCTION_USAGE information of INSN. */
1964 find_regno_fusage (rtx insn
, enum rtx_code code
, unsigned int regno
)
1968 /* CALL_INSN_FUNCTION_USAGE information cannot contain references
1969 to pseudo registers, so don't bother checking. */
1971 if (regno
>= FIRST_PSEUDO_REGISTER
1975 for (link
= CALL_INSN_FUNCTION_USAGE (insn
); link
; link
= XEXP (link
, 1))
1977 unsigned int regnote
;
1980 if (GET_CODE (op
= XEXP (link
, 0)) == code
1981 && REG_P (reg
= XEXP (op
, 0))
1982 && (regnote
= REGNO (reg
)) <= regno
1983 && regnote
+ hard_regno_nregs
[regnote
][GET_MODE (reg
)] > regno
)
1990 /* Return true if INSN is a call to a pure function. */
1993 pure_call_p (rtx insn
)
1997 if (!CALL_P (insn
) || ! CONST_OR_PURE_CALL_P (insn
))
2000 /* Look for the note that differentiates const and pure functions. */
2001 for (link
= CALL_INSN_FUNCTION_USAGE (insn
); link
; link
= XEXP (link
, 1))
2005 if (GET_CODE (u
= XEXP (link
, 0)) == USE
2006 && MEM_P (m
= XEXP (u
, 0)) && GET_MODE (m
) == BLKmode
2007 && GET_CODE (XEXP (m
, 0)) == SCRATCH
)
2014 /* Remove register note NOTE from the REG_NOTES of INSN. */
2017 remove_note (rtx insn
, rtx note
)
2021 if (note
== NULL_RTX
)
2024 if (REG_NOTES (insn
) == note
)
2026 REG_NOTES (insn
) = XEXP (note
, 1);
2030 for (link
= REG_NOTES (insn
); link
; link
= XEXP (link
, 1))
2031 if (XEXP (link
, 1) == note
)
2033 XEXP (link
, 1) = XEXP (note
, 1);
2040 /* Search LISTP (an EXPR_LIST) for an entry whose first operand is NODE and
2041 return 1 if it is found. A simple equality test is used to determine if
2045 in_expr_list_p (rtx listp
, rtx node
)
2049 for (x
= listp
; x
; x
= XEXP (x
, 1))
2050 if (node
== XEXP (x
, 0))
2056 /* Search LISTP (an EXPR_LIST) for an entry whose first operand is NODE and
2057 remove that entry from the list if it is found.
2059 A simple equality test is used to determine if NODE matches. */
2062 remove_node_from_expr_list (rtx node
, rtx
*listp
)
2065 rtx prev
= NULL_RTX
;
2069 if (node
== XEXP (temp
, 0))
2071 /* Splice the node out of the list. */
2073 XEXP (prev
, 1) = XEXP (temp
, 1);
2075 *listp
= XEXP (temp
, 1);
2081 temp
= XEXP (temp
, 1);
2085 /* Nonzero if X contains any volatile instructions. These are instructions
2086 which may cause unpredictable machine state instructions, and thus no
2087 instructions should be moved or combined across them. This includes
2088 only volatile asms and UNSPEC_VOLATILE instructions. */
2091 volatile_insn_p (rtx x
)
2095 code
= GET_CODE (x
);
2115 case UNSPEC_VOLATILE
:
2116 /* case TRAP_IF: This isn't clear yet. */
2121 if (MEM_VOLATILE_P (x
))
2128 /* Recursively scan the operands of this expression. */
2131 const char *fmt
= GET_RTX_FORMAT (code
);
2134 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
2138 if (volatile_insn_p (XEXP (x
, i
)))
2141 else if (fmt
[i
] == 'E')
2144 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
2145 if (volatile_insn_p (XVECEXP (x
, i
, j
)))
2153 /* Nonzero if X contains any volatile memory references
2154 UNSPEC_VOLATILE operations or volatile ASM_OPERANDS expressions. */
2157 volatile_refs_p (rtx x
)
2161 code
= GET_CODE (x
);
2179 case UNSPEC_VOLATILE
:
2185 if (MEM_VOLATILE_P (x
))
2192 /* Recursively scan the operands of this expression. */
2195 const char *fmt
= GET_RTX_FORMAT (code
);
2198 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
2202 if (volatile_refs_p (XEXP (x
, i
)))
2205 else if (fmt
[i
] == 'E')
2208 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
2209 if (volatile_refs_p (XVECEXP (x
, i
, j
)))
2217 /* Similar to above, except that it also rejects register pre- and post-
2221 side_effects_p (rtx x
)
2225 code
= GET_CODE (x
);
2243 /* Reject CLOBBER with a non-VOID mode. These are made by combine.c
2244 when some combination can't be done. If we see one, don't think
2245 that we can simplify the expression. */
2246 return (GET_MODE (x
) != VOIDmode
);
2255 case UNSPEC_VOLATILE
:
2256 /* case TRAP_IF: This isn't clear yet. */
2262 if (MEM_VOLATILE_P (x
))
2269 /* Recursively scan the operands of this expression. */
2272 const char *fmt
= GET_RTX_FORMAT (code
);
2275 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
2279 if (side_effects_p (XEXP (x
, i
)))
2282 else if (fmt
[i
] == 'E')
2285 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
2286 if (side_effects_p (XVECEXP (x
, i
, j
)))
2294 /* Return nonzero if evaluating rtx X might cause a trap. */
2305 code
= GET_CODE (x
);
2308 /* Handle these cases quickly. */
2322 case UNSPEC_VOLATILE
:
2327 return MEM_VOLATILE_P (x
);
2329 /* Memory ref can trap unless it's a static var or a stack slot. */
2331 if (MEM_NOTRAP_P (x
))
2333 return rtx_addr_can_trap_p (XEXP (x
, 0));
2335 /* Division by a non-constant might trap. */
2340 if (HONOR_SNANS (GET_MODE (x
)))
2342 if (! CONSTANT_P (XEXP (x
, 1))
2343 || (GET_MODE_CLASS (GET_MODE (x
)) == MODE_FLOAT
2344 && flag_trapping_math
))
2346 if (XEXP (x
, 1) == const0_rtx
)
2351 /* An EXPR_LIST is used to represent a function call. This
2352 certainly may trap. */
2361 /* Some floating point comparisons may trap. */
2362 if (!flag_trapping_math
)
2364 /* ??? There is no machine independent way to check for tests that trap
2365 when COMPARE is used, though many targets do make this distinction.
2366 For instance, sparc uses CCFPE for compares which generate exceptions
2367 and CCFP for compares which do not generate exceptions. */
2368 if (HONOR_NANS (GET_MODE (x
)))
2370 /* But often the compare has some CC mode, so check operand
2372 if (HONOR_NANS (GET_MODE (XEXP (x
, 0)))
2373 || HONOR_NANS (GET_MODE (XEXP (x
, 1))))
2379 if (HONOR_SNANS (GET_MODE (x
)))
2381 /* Often comparison is CC mode, so check operand modes. */
2382 if (HONOR_SNANS (GET_MODE (XEXP (x
, 0)))
2383 || HONOR_SNANS (GET_MODE (XEXP (x
, 1))))
2388 /* Conversion of floating point might trap. */
2389 if (flag_trapping_math
&& HONOR_NANS (GET_MODE (XEXP (x
, 0))))
2395 /* These operations don't trap even with floating point. */
2399 /* Any floating arithmetic may trap. */
2400 if (GET_MODE_CLASS (GET_MODE (x
)) == MODE_FLOAT
2401 && flag_trapping_math
)
2405 fmt
= GET_RTX_FORMAT (code
);
2406 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
2410 if (may_trap_p (XEXP (x
, i
)))
2413 else if (fmt
[i
] == 'E')
2416 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
2417 if (may_trap_p (XVECEXP (x
, i
, j
)))
2424 /* Return nonzero if X contains a comparison that is not either EQ or NE,
2425 i.e., an inequality. */
2428 inequality_comparisons_p (rtx x
)
2432 enum rtx_code code
= GET_CODE (x
);
2462 len
= GET_RTX_LENGTH (code
);
2463 fmt
= GET_RTX_FORMAT (code
);
2465 for (i
= 0; i
< len
; i
++)
2469 if (inequality_comparisons_p (XEXP (x
, i
)))
2472 else if (fmt
[i
] == 'E')
2475 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
2476 if (inequality_comparisons_p (XVECEXP (x
, i
, j
)))
2484 /* Replace any occurrence of FROM in X with TO. The function does
2485 not enter into CONST_DOUBLE for the replace.
2487 Note that copying is not done so X must not be shared unless all copies
2488 are to be modified. */
2491 replace_rtx (rtx x
, rtx from
, rtx to
)
2496 /* The following prevents loops occurrence when we change MEM in
2497 CONST_DOUBLE onto the same CONST_DOUBLE. */
2498 if (x
!= 0 && GET_CODE (x
) == CONST_DOUBLE
)
2504 /* Allow this function to make replacements in EXPR_LISTs. */
2508 if (GET_CODE (x
) == SUBREG
)
2510 rtx
new = replace_rtx (SUBREG_REG (x
), from
, to
);
2512 if (GET_CODE (new) == CONST_INT
)
2514 x
= simplify_subreg (GET_MODE (x
), new,
2515 GET_MODE (SUBREG_REG (x
)),
2520 SUBREG_REG (x
) = new;
2524 else if (GET_CODE (x
) == ZERO_EXTEND
)
2526 rtx
new = replace_rtx (XEXP (x
, 0), from
, to
);
2528 if (GET_CODE (new) == CONST_INT
)
2530 x
= simplify_unary_operation (ZERO_EXTEND
, GET_MODE (x
),
2531 new, GET_MODE (XEXP (x
, 0)));
2540 fmt
= GET_RTX_FORMAT (GET_CODE (x
));
2541 for (i
= GET_RTX_LENGTH (GET_CODE (x
)) - 1; i
>= 0; i
--)
2544 XEXP (x
, i
) = replace_rtx (XEXP (x
, i
), from
, to
);
2545 else if (fmt
[i
] == 'E')
2546 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
2547 XVECEXP (x
, i
, j
) = replace_rtx (XVECEXP (x
, i
, j
), from
, to
);
2553 /* Throughout the rtx X, replace many registers according to REG_MAP.
2554 Return the replacement for X (which may be X with altered contents).
2555 REG_MAP[R] is the replacement for register R, or 0 for don't replace.
2556 NREGS is the length of REG_MAP; regs >= NREGS are not mapped.
2558 We only support REG_MAP entries of REG or SUBREG. Also, hard registers
2559 should not be mapped to pseudos or vice versa since validate_change
2562 If REPLACE_DEST is 1, replacements are also done in destinations;
2563 otherwise, only sources are replaced. */
2566 replace_regs (rtx x
, rtx
*reg_map
, unsigned int nregs
, int replace_dest
)
2575 code
= GET_CODE (x
);
2590 /* Verify that the register has an entry before trying to access it. */
2591 if (REGNO (x
) < nregs
&& reg_map
[REGNO (x
)] != 0)
2593 /* SUBREGs can't be shared. Always return a copy to ensure that if
2594 this replacement occurs more than once then each instance will
2595 get distinct rtx. */
2596 if (GET_CODE (reg_map
[REGNO (x
)]) == SUBREG
)
2597 return copy_rtx (reg_map
[REGNO (x
)]);
2598 return reg_map
[REGNO (x
)];
2603 /* Prevent making nested SUBREGs. */
2604 if (REG_P (SUBREG_REG (x
)) && REGNO (SUBREG_REG (x
)) < nregs
2605 && reg_map
[REGNO (SUBREG_REG (x
))] != 0
2606 && GET_CODE (reg_map
[REGNO (SUBREG_REG (x
))]) == SUBREG
)
2608 rtx map_val
= reg_map
[REGNO (SUBREG_REG (x
))];
2609 return simplify_gen_subreg (GET_MODE (x
), map_val
,
2610 GET_MODE (SUBREG_REG (x
)),
2617 SET_DEST (x
) = replace_regs (SET_DEST (x
), reg_map
, nregs
, 0);
2619 else if (MEM_P (SET_DEST (x
))
2620 || GET_CODE (SET_DEST (x
)) == STRICT_LOW_PART
)
2621 /* Even if we are not to replace destinations, replace register if it
2622 is CONTAINED in destination (destination is memory or
2623 STRICT_LOW_PART). */
2624 XEXP (SET_DEST (x
), 0) = replace_regs (XEXP (SET_DEST (x
), 0),
2626 else if (GET_CODE (SET_DEST (x
)) == ZERO_EXTRACT
)
2627 /* Similarly, for ZERO_EXTRACT we replace all operands. */
2630 SET_SRC (x
) = replace_regs (SET_SRC (x
), reg_map
, nregs
, 0);
2637 fmt
= GET_RTX_FORMAT (code
);
2638 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
2641 XEXP (x
, i
) = replace_regs (XEXP (x
, i
), reg_map
, nregs
, replace_dest
);
2642 else if (fmt
[i
] == 'E')
2645 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
2646 XVECEXP (x
, i
, j
) = replace_regs (XVECEXP (x
, i
, j
), reg_map
,
2647 nregs
, replace_dest
);
2653 /* Replace occurrences of the old label in *X with the new one.
2654 DATA is a REPLACE_LABEL_DATA containing the old and new labels. */
2657 replace_label (rtx
*x
, void *data
)
2660 rtx old_label
= ((replace_label_data
*) data
)->r1
;
2661 rtx new_label
= ((replace_label_data
*) data
)->r2
;
2662 bool update_label_nuses
= ((replace_label_data
*) data
)->update_label_nuses
;
2667 if (GET_CODE (l
) == SYMBOL_REF
2668 && CONSTANT_POOL_ADDRESS_P (l
))
2670 rtx c
= get_pool_constant (l
);
2671 if (rtx_referenced_p (old_label
, c
))
2674 replace_label_data
*d
= (replace_label_data
*) data
;
2676 /* Create a copy of constant C; replace the label inside
2677 but do not update LABEL_NUSES because uses in constant pool
2679 new_c
= copy_rtx (c
);
2680 d
->update_label_nuses
= false;
2681 for_each_rtx (&new_c
, replace_label
, data
);
2682 d
->update_label_nuses
= update_label_nuses
;
2684 /* Add the new constant NEW_C to constant pool and replace
2685 the old reference to constant by new reference. */
2686 new_l
= XEXP (force_const_mem (get_pool_mode (l
), new_c
), 0);
2687 *x
= replace_rtx (l
, l
, new_l
);
2692 /* If this is a JUMP_INSN, then we also need to fix the JUMP_LABEL
2693 field. This is not handled by for_each_rtx because it doesn't
2694 handle unprinted ('0') fields. */
2695 if (JUMP_P (l
) && JUMP_LABEL (l
) == old_label
)
2696 JUMP_LABEL (l
) = new_label
;
2698 if ((GET_CODE (l
) == LABEL_REF
2699 || GET_CODE (l
) == INSN_LIST
)
2700 && XEXP (l
, 0) == old_label
)
2702 XEXP (l
, 0) = new_label
;
2703 if (update_label_nuses
)
2705 ++LABEL_NUSES (new_label
);
2706 --LABEL_NUSES (old_label
);
2714 /* When *BODY is equal to X or X is directly referenced by *BODY
2715 return nonzero, thus FOR_EACH_RTX stops traversing and returns nonzero
2716 too, otherwise FOR_EACH_RTX continues traversing *BODY. */
2719 rtx_referenced_p_1 (rtx
*body
, void *x
)
2723 if (*body
== NULL_RTX
)
2724 return y
== NULL_RTX
;
2726 /* Return true if a label_ref *BODY refers to label Y. */
2727 if (GET_CODE (*body
) == LABEL_REF
&& LABEL_P (y
))
2728 return XEXP (*body
, 0) == y
;
2730 /* If *BODY is a reference to pool constant traverse the constant. */
2731 if (GET_CODE (*body
) == SYMBOL_REF
2732 && CONSTANT_POOL_ADDRESS_P (*body
))
2733 return rtx_referenced_p (y
, get_pool_constant (*body
));
2735 /* By default, compare the RTL expressions. */
2736 return rtx_equal_p (*body
, y
);
2739 /* Return true if X is referenced in BODY. */
2742 rtx_referenced_p (rtx x
, rtx body
)
2744 return for_each_rtx (&body
, rtx_referenced_p_1
, x
);
2747 /* If INSN is a tablejump return true and store the label (before jump table) to
2748 *LABELP and the jump table to *TABLEP. LABELP and TABLEP may be NULL. */
2751 tablejump_p (rtx insn
, rtx
*labelp
, rtx
*tablep
)
2756 && (label
= JUMP_LABEL (insn
)) != NULL_RTX
2757 && (table
= next_active_insn (label
)) != NULL_RTX
2759 && (GET_CODE (PATTERN (table
)) == ADDR_VEC
2760 || GET_CODE (PATTERN (table
)) == ADDR_DIFF_VEC
))
2771 /* A subroutine of computed_jump_p, return 1 if X contains a REG or MEM or
2772 constant that is not in the constant pool and not in the condition
2773 of an IF_THEN_ELSE. */
2776 computed_jump_p_1 (rtx x
)
2778 enum rtx_code code
= GET_CODE (x
);
2797 return ! (GET_CODE (XEXP (x
, 0)) == SYMBOL_REF
2798 && CONSTANT_POOL_ADDRESS_P (XEXP (x
, 0)));
2801 return (computed_jump_p_1 (XEXP (x
, 1))
2802 || computed_jump_p_1 (XEXP (x
, 2)));
2808 fmt
= GET_RTX_FORMAT (code
);
2809 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
2812 && computed_jump_p_1 (XEXP (x
, i
)))
2815 else if (fmt
[i
] == 'E')
2816 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
2817 if (computed_jump_p_1 (XVECEXP (x
, i
, j
)))
2824 /* Return nonzero if INSN is an indirect jump (aka computed jump).
2826 Tablejumps and casesi insns are not considered indirect jumps;
2827 we can recognize them by a (use (label_ref)). */
2830 computed_jump_p (rtx insn
)
2835 rtx pat
= PATTERN (insn
);
2837 if (find_reg_note (insn
, REG_LABEL
, NULL_RTX
))
2839 else if (GET_CODE (pat
) == PARALLEL
)
2841 int len
= XVECLEN (pat
, 0);
2842 int has_use_labelref
= 0;
2844 for (i
= len
- 1; i
>= 0; i
--)
2845 if (GET_CODE (XVECEXP (pat
, 0, i
)) == USE
2846 && (GET_CODE (XEXP (XVECEXP (pat
, 0, i
), 0))
2848 has_use_labelref
= 1;
2850 if (! has_use_labelref
)
2851 for (i
= len
- 1; i
>= 0; i
--)
2852 if (GET_CODE (XVECEXP (pat
, 0, i
)) == SET
2853 && SET_DEST (XVECEXP (pat
, 0, i
)) == pc_rtx
2854 && computed_jump_p_1 (SET_SRC (XVECEXP (pat
, 0, i
))))
2857 else if (GET_CODE (pat
) == SET
2858 && SET_DEST (pat
) == pc_rtx
2859 && computed_jump_p_1 (SET_SRC (pat
)))
2865 /* Traverse X via depth-first search, calling F for each
2866 sub-expression (including X itself). F is also passed the DATA.
2867 If F returns -1, do not traverse sub-expressions, but continue
2868 traversing the rest of the tree. If F ever returns any other
2869 nonzero value, stop the traversal, and return the value returned
2870 by F. Otherwise, return 0. This function does not traverse inside
2871 tree structure that contains RTX_EXPRs, or into sub-expressions
2872 whose format code is `0' since it is not known whether or not those
2873 codes are actually RTL.
2875 This routine is very general, and could (should?) be used to
2876 implement many of the other routines in this file. */
2879 for_each_rtx (rtx
*x
, rtx_function f
, void *data
)
2887 result
= (*f
) (x
, data
);
2889 /* Do not traverse sub-expressions. */
2891 else if (result
!= 0)
2892 /* Stop the traversal. */
2896 /* There are no sub-expressions. */
2899 length
= GET_RTX_LENGTH (GET_CODE (*x
));
2900 format
= GET_RTX_FORMAT (GET_CODE (*x
));
2902 for (i
= 0; i
< length
; ++i
)
2907 result
= for_each_rtx (&XEXP (*x
, i
), f
, data
);
2914 if (XVEC (*x
, i
) != 0)
2917 for (j
= 0; j
< XVECLEN (*x
, i
); ++j
)
2919 result
= for_each_rtx (&XVECEXP (*x
, i
, j
), f
, data
);
2927 /* Nothing to do. */
2936 /* Searches X for any reference to REGNO, returning the rtx of the
2937 reference found if any. Otherwise, returns NULL_RTX. */
2940 regno_use_in (unsigned int regno
, rtx x
)
2946 if (REG_P (x
) && REGNO (x
) == regno
)
2949 fmt
= GET_RTX_FORMAT (GET_CODE (x
));
2950 for (i
= GET_RTX_LENGTH (GET_CODE (x
)) - 1; i
>= 0; i
--)
2954 if ((tem
= regno_use_in (regno
, XEXP (x
, i
))))
2957 else if (fmt
[i
] == 'E')
2958 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
2959 if ((tem
= regno_use_in (regno
, XVECEXP (x
, i
, j
))))
2966 /* Return a value indicating whether OP, an operand of a commutative
2967 operation, is preferred as the first or second operand. The higher
2968 the value, the stronger the preference for being the first operand.
2969 We use negative values to indicate a preference for the first operand
2970 and positive values for the second operand. */
2973 commutative_operand_precedence (rtx op
)
2975 enum rtx_code code
= GET_CODE (op
);
2977 /* Constants always come the second operand. Prefer "nice" constants. */
2978 if (code
== CONST_INT
)
2980 if (code
== CONST_DOUBLE
)
2982 op
= avoid_constant_pool_reference (op
);
2983 code
= GET_CODE (op
);
2985 switch (GET_RTX_CLASS (code
))
2988 if (code
== CONST_INT
)
2990 if (code
== CONST_DOUBLE
)
2995 /* SUBREGs of objects should come second. */
2996 if (code
== SUBREG
&& OBJECT_P (SUBREG_REG (op
)))
2999 if (!CONSTANT_P (op
))
3002 /* As for RTX_CONST_OBJ. */
3006 /* Complex expressions should be the first, so decrease priority
3010 case RTX_COMM_ARITH
:
3011 /* Prefer operands that are themselves commutative to be first.
3012 This helps to make things linear. In particular,
3013 (and (and (reg) (reg)) (not (reg))) is canonical. */
3017 /* If only one operand is a binary expression, it will be the first
3018 operand. In particular, (plus (minus (reg) (reg)) (neg (reg)))
3019 is canonical, although it will usually be further simplified. */
3023 /* Then prefer NEG and NOT. */
3024 if (code
== NEG
|| code
== NOT
)
3032 /* Return 1 iff it is necessary to swap operands of commutative operation
3033 in order to canonicalize expression. */
3036 swap_commutative_operands_p (rtx x
, rtx y
)
3038 return (commutative_operand_precedence (x
)
3039 < commutative_operand_precedence (y
));
3042 /* Return 1 if X is an autoincrement side effect and the register is
3043 not the stack pointer. */
3047 switch (GET_CODE (x
))
3055 /* There are no REG_INC notes for SP. */
3056 if (XEXP (x
, 0) != stack_pointer_rtx
)
3064 /* Return 1 if the sequence of instructions beginning with FROM and up
3065 to and including TO is safe to move. If NEW_TO is non-NULL, and
3066 the sequence is not already safe to move, but can be easily
3067 extended to a sequence which is safe, then NEW_TO will point to the
3068 end of the extended sequence.
3070 For now, this function only checks that the region contains whole
3071 exception regions, but it could be extended to check additional
3072 conditions as well. */
3075 insns_safe_to_move_p (rtx from
, rtx to
, rtx
*new_to
)
3077 int eh_region_count
= 0;
3081 /* By default, assume the end of the region will be what was
3090 switch (NOTE_LINE_NUMBER (r
))
3092 case NOTE_INSN_EH_REGION_BEG
:
3096 case NOTE_INSN_EH_REGION_END
:
3097 if (eh_region_count
== 0)
3098 /* This sequence of instructions contains the end of
3099 an exception region, but not he beginning. Moving
3100 it will cause chaos. */
3111 /* If we've passed TO, and we see a non-note instruction, we
3112 can't extend the sequence to a movable sequence. */
3118 /* It's OK to move the sequence if there were matched sets of
3119 exception region notes. */
3120 return eh_region_count
== 0;
3125 /* It's OK to move the sequence if there were matched sets of
3126 exception region notes. */
3127 if (past_to_p
&& eh_region_count
== 0)
3133 /* Go to the next instruction. */
3140 /* Return nonzero if IN contains a piece of rtl that has the address LOC. */
3142 loc_mentioned_in_p (rtx
*loc
, rtx in
)
3144 enum rtx_code code
= GET_CODE (in
);
3145 const char *fmt
= GET_RTX_FORMAT (code
);
3148 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
3150 if (loc
== &in
->u
.fld
[i
].rt_rtx
)
3154 if (loc_mentioned_in_p (loc
, XEXP (in
, i
)))
3157 else if (fmt
[i
] == 'E')
3158 for (j
= XVECLEN (in
, i
) - 1; j
>= 0; j
--)
3159 if (loc_mentioned_in_p (loc
, XVECEXP (in
, i
, j
)))
3165 /* Helper function for subreg_lsb. Given a subreg's OUTER_MODE, INNER_MODE,
3166 and SUBREG_BYTE, return the bit offset where the subreg begins
3167 (counting from the least significant bit of the operand). */
3170 subreg_lsb_1 (enum machine_mode outer_mode
,
3171 enum machine_mode inner_mode
,
3172 unsigned int subreg_byte
)
3174 unsigned int bitpos
;
3178 /* A paradoxical subreg begins at bit position 0. */
3179 if (GET_MODE_BITSIZE (outer_mode
) > GET_MODE_BITSIZE (inner_mode
))
3182 if (WORDS_BIG_ENDIAN
!= BYTES_BIG_ENDIAN
)
3183 /* If the subreg crosses a word boundary ensure that
3184 it also begins and ends on a word boundary. */
3185 gcc_assert (!((subreg_byte
% UNITS_PER_WORD
3186 + GET_MODE_SIZE (outer_mode
)) > UNITS_PER_WORD
3187 && (subreg_byte
% UNITS_PER_WORD
3188 || GET_MODE_SIZE (outer_mode
) % UNITS_PER_WORD
)));
3190 if (WORDS_BIG_ENDIAN
)
3191 word
= (GET_MODE_SIZE (inner_mode
)
3192 - (subreg_byte
+ GET_MODE_SIZE (outer_mode
))) / UNITS_PER_WORD
;
3194 word
= subreg_byte
/ UNITS_PER_WORD
;
3195 bitpos
= word
* BITS_PER_WORD
;
3197 if (BYTES_BIG_ENDIAN
)
3198 byte
= (GET_MODE_SIZE (inner_mode
)
3199 - (subreg_byte
+ GET_MODE_SIZE (outer_mode
))) % UNITS_PER_WORD
;
3201 byte
= subreg_byte
% UNITS_PER_WORD
;
3202 bitpos
+= byte
* BITS_PER_UNIT
;
3207 /* Given a subreg X, return the bit offset where the subreg begins
3208 (counting from the least significant bit of the reg). */
3213 return subreg_lsb_1 (GET_MODE (x
), GET_MODE (SUBREG_REG (x
)),
3217 /* This function returns the regno offset of a subreg expression.
3218 xregno - A regno of an inner hard subreg_reg (or what will become one).
3219 xmode - The mode of xregno.
3220 offset - The byte offset.
3221 ymode - The mode of a top level SUBREG (or what may become one).
3222 RETURN - The regno offset which would be used. */
3224 subreg_regno_offset (unsigned int xregno
, enum machine_mode xmode
,
3225 unsigned int offset
, enum machine_mode ymode
)
3227 int nregs_xmode
, nregs_ymode
;
3228 int mode_multiple
, nregs_multiple
;
3231 gcc_assert (xregno
< FIRST_PSEUDO_REGISTER
);
3233 nregs_xmode
= hard_regno_nregs
[xregno
][xmode
];
3234 nregs_ymode
= hard_regno_nregs
[xregno
][ymode
];
3236 /* If this is a big endian paradoxical subreg, which uses more actual
3237 hard registers than the original register, we must return a negative
3238 offset so that we find the proper highpart of the register. */
3240 && nregs_ymode
> nregs_xmode
3241 && (GET_MODE_SIZE (ymode
) > UNITS_PER_WORD
3242 ? WORDS_BIG_ENDIAN
: BYTES_BIG_ENDIAN
))
3243 return nregs_xmode
- nregs_ymode
;
3245 if (offset
== 0 || nregs_xmode
== nregs_ymode
)
3248 /* size of ymode must not be greater than the size of xmode. */
3249 mode_multiple
= GET_MODE_SIZE (xmode
) / GET_MODE_SIZE (ymode
);
3250 gcc_assert (mode_multiple
!= 0);
3252 y_offset
= offset
/ GET_MODE_SIZE (ymode
);
3253 nregs_multiple
= nregs_xmode
/ nregs_ymode
;
3254 return (y_offset
/ (mode_multiple
/ nregs_multiple
)) * nregs_ymode
;
3257 /* This function returns true when the offset is representable via
3258 subreg_offset in the given regno.
3259 xregno - A regno of an inner hard subreg_reg (or what will become one).
3260 xmode - The mode of xregno.
3261 offset - The byte offset.
3262 ymode - The mode of a top level SUBREG (or what may become one).
3263 RETURN - The regno offset which would be used. */
3265 subreg_offset_representable_p (unsigned int xregno
, enum machine_mode xmode
,
3266 unsigned int offset
, enum machine_mode ymode
)
3268 int nregs_xmode
, nregs_ymode
;
3269 int mode_multiple
, nregs_multiple
;
3272 gcc_assert (xregno
< FIRST_PSEUDO_REGISTER
);
3274 nregs_xmode
= hard_regno_nregs
[xregno
][xmode
];
3275 nregs_ymode
= hard_regno_nregs
[xregno
][ymode
];
3277 /* Paradoxical subregs are always valid. */
3279 && nregs_ymode
> nregs_xmode
3280 && (GET_MODE_SIZE (ymode
) > UNITS_PER_WORD
3281 ? WORDS_BIG_ENDIAN
: BYTES_BIG_ENDIAN
))
3284 /* Lowpart subregs are always valid. */
3285 if (offset
== subreg_lowpart_offset (ymode
, xmode
))
3288 /* This should always pass, otherwise we don't know how to verify the
3289 constraint. These conditions may be relaxed but subreg_offset would
3290 need to be redesigned. */
3291 gcc_assert ((GET_MODE_SIZE (xmode
) % GET_MODE_SIZE (ymode
)) == 0);
3292 gcc_assert ((GET_MODE_SIZE (ymode
) % nregs_ymode
) == 0);
3293 gcc_assert ((nregs_xmode
% nregs_ymode
) == 0);
3295 /* The XMODE value can be seen as a vector of NREGS_XMODE
3296 values. The subreg must represent a lowpart of given field.
3297 Compute what field it is. */
3298 offset
-= subreg_lowpart_offset (ymode
,
3299 mode_for_size (GET_MODE_BITSIZE (xmode
)
3303 /* size of ymode must not be greater than the size of xmode. */
3304 mode_multiple
= GET_MODE_SIZE (xmode
) / GET_MODE_SIZE (ymode
);
3305 gcc_assert (mode_multiple
!= 0);
3307 y_offset
= offset
/ GET_MODE_SIZE (ymode
);
3308 nregs_multiple
= nregs_xmode
/ nregs_ymode
;
3310 gcc_assert ((offset
% GET_MODE_SIZE (ymode
)) == 0);
3311 gcc_assert ((mode_multiple
% nregs_multiple
) == 0);
3313 return (!(y_offset
% (mode_multiple
/ nregs_multiple
)));
3316 /* Return the final regno that a subreg expression refers to. */
3318 subreg_regno (rtx x
)
3321 rtx subreg
= SUBREG_REG (x
);
3322 int regno
= REGNO (subreg
);
3324 ret
= regno
+ subreg_regno_offset (regno
,
3331 struct parms_set_data
3337 /* Helper function for noticing stores to parameter registers. */
3339 parms_set (rtx x
, rtx pat ATTRIBUTE_UNUSED
, void *data
)
3341 struct parms_set_data
*d
= data
;
3342 if (REG_P (x
) && REGNO (x
) < FIRST_PSEUDO_REGISTER
3343 && TEST_HARD_REG_BIT (d
->regs
, REGNO (x
)))
3345 CLEAR_HARD_REG_BIT (d
->regs
, REGNO (x
));
3350 /* Look backward for first parameter to be loaded.
3351 Do not skip BOUNDARY. */
3353 find_first_parameter_load (rtx call_insn
, rtx boundary
)
3355 struct parms_set_data parm
;
3358 /* Since different machines initialize their parameter registers
3359 in different orders, assume nothing. Collect the set of all
3360 parameter registers. */
3361 CLEAR_HARD_REG_SET (parm
.regs
);
3363 for (p
= CALL_INSN_FUNCTION_USAGE (call_insn
); p
; p
= XEXP (p
, 1))
3364 if (GET_CODE (XEXP (p
, 0)) == USE
3365 && REG_P (XEXP (XEXP (p
, 0), 0)))
3367 gcc_assert (REGNO (XEXP (XEXP (p
, 0), 0)) < FIRST_PSEUDO_REGISTER
);
3369 /* We only care about registers which can hold function
3371 if (!FUNCTION_ARG_REGNO_P (REGNO (XEXP (XEXP (p
, 0), 0))))
3374 SET_HARD_REG_BIT (parm
.regs
, REGNO (XEXP (XEXP (p
, 0), 0)));
3379 /* Search backward for the first set of a register in this set. */
3380 while (parm
.nregs
&& before
!= boundary
)
3382 before
= PREV_INSN (before
);
3384 /* It is possible that some loads got CSEed from one call to
3385 another. Stop in that case. */
3386 if (CALL_P (before
))
3389 /* Our caller needs either ensure that we will find all sets
3390 (in case code has not been optimized yet), or take care
3391 for possible labels in a way by setting boundary to preceding
3393 if (LABEL_P (before
))
3395 gcc_assert (before
== boundary
);
3399 if (INSN_P (before
))
3400 note_stores (PATTERN (before
), parms_set
, &parm
);
3405 /* Return true if we should avoid inserting code between INSN and preceding
3406 call instruction. */
3409 keep_with_call_p (rtx insn
)
3413 if (INSN_P (insn
) && (set
= single_set (insn
)) != NULL
)
3415 if (REG_P (SET_DEST (set
))
3416 && REGNO (SET_DEST (set
)) < FIRST_PSEUDO_REGISTER
3417 && fixed_regs
[REGNO (SET_DEST (set
))]
3418 && general_operand (SET_SRC (set
), VOIDmode
))
3420 if (REG_P (SET_SRC (set
))
3421 && FUNCTION_VALUE_REGNO_P (REGNO (SET_SRC (set
)))
3422 && REG_P (SET_DEST (set
))
3423 && REGNO (SET_DEST (set
)) >= FIRST_PSEUDO_REGISTER
)
3425 /* There may be a stack pop just after the call and before the store
3426 of the return register. Search for the actual store when deciding
3427 if we can break or not. */
3428 if (SET_DEST (set
) == stack_pointer_rtx
)
3430 rtx i2
= next_nonnote_insn (insn
);
3431 if (i2
&& keep_with_call_p (i2
))
3438 /* Return true when store to register X can be hoisted to the place
3439 with LIVE registers (can be NULL). Value VAL contains destination
3440 whose value will be used. */
3443 hoist_test_store (rtx x
, rtx val
, regset live
)
3445 if (GET_CODE (x
) == SCRATCH
)
3448 if (rtx_equal_p (x
, val
))
3451 /* Allow subreg of X in case it is not writing just part of multireg pseudo.
3452 Then we would need to update all users to care hoisting the store too.
3453 Caller may represent that by specifying whole subreg as val. */
3455 if (GET_CODE (x
) == SUBREG
&& rtx_equal_p (SUBREG_REG (x
), val
))
3457 if (GET_MODE_SIZE (GET_MODE (SUBREG_REG (x
))) > UNITS_PER_WORD
3458 && GET_MODE_BITSIZE (GET_MODE (x
)) <
3459 GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x
))))
3463 if (GET_CODE (x
) == SUBREG
)
3466 /* Anything except register store is not hoistable. This includes the
3467 partial stores to registers. */
3472 /* Pseudo registers can be always replaced by another pseudo to avoid
3473 the side effect, for hard register we must ensure that they are dead.
3474 Eventually we may want to add code to try turn pseudos to hards, but it
3475 is unlikely useful. */
3477 if (REGNO (x
) < FIRST_PSEUDO_REGISTER
)
3479 int regno
= REGNO (x
);
3480 int n
= hard_regno_nregs
[regno
][GET_MODE (x
)];
3484 if (REGNO_REG_SET_P (live
, regno
))
3487 if (REGNO_REG_SET_P (live
, regno
+ n
))
3494 /* Return true if INSN can be hoisted to place with LIVE hard registers
3495 (LIVE can be NULL when unknown). VAL is expected to be stored by the insn
3496 and used by the hoisting pass. */
3499 can_hoist_insn_p (rtx insn
, rtx val
, regset live
)
3501 rtx pat
= PATTERN (insn
);
3504 /* It probably does not worth the complexity to handle multiple
3506 if (!single_set (insn
))
3508 /* We can move CALL_INSN, but we need to check that all caller clobbered
3512 /* In future we will handle hoisting of libcall sequences, but
3514 if (find_reg_note (insn
, REG_RETVAL
, NULL_RTX
))
3516 switch (GET_CODE (pat
))
3519 if (!hoist_test_store (SET_DEST (pat
), val
, live
))
3523 /* USES do have sick semantics, so do not move them. */
3527 if (!hoist_test_store (XEXP (pat
, 0), val
, live
))
3531 for (i
= 0; i
< XVECLEN (pat
, 0); i
++)
3533 rtx x
= XVECEXP (pat
, 0, i
);
3534 switch (GET_CODE (x
))
3537 if (!hoist_test_store (SET_DEST (x
), val
, live
))
3541 /* We need to fix callers to really ensure availability
3542 of all values insn uses, but for now it is safe to prohibit
3543 hoisting of any insn having such a hidden uses. */
3547 if (!hoist_test_store (SET_DEST (x
), val
, live
))
3561 /* Update store after hoisting - replace all stores to pseudo registers
3562 by new ones to avoid clobbering of values except for store to VAL that will
3563 be updated to NEW. */
3566 hoist_update_store (rtx insn
, rtx
*xp
, rtx val
, rtx
new)
3570 if (GET_CODE (x
) == SCRATCH
)
3573 if (GET_CODE (x
) == SUBREG
&& SUBREG_REG (x
) == val
)
3574 validate_change (insn
, xp
,
3575 simplify_gen_subreg (GET_MODE (x
), new, GET_MODE (new),
3576 SUBREG_BYTE (x
)), 1);
3577 if (rtx_equal_p (x
, val
))
3579 validate_change (insn
, xp
, new, 1);
3582 if (GET_CODE (x
) == SUBREG
)
3584 xp
= &SUBREG_REG (x
);
3588 gcc_assert (REG_P (x
));
3590 /* We've verified that hard registers are dead, so we may keep the side
3591 effect. Otherwise replace it by new pseudo. */
3592 if (REGNO (x
) >= FIRST_PSEUDO_REGISTER
)
3593 validate_change (insn
, xp
, gen_reg_rtx (GET_MODE (x
)), 1);
3595 = alloc_EXPR_LIST (REG_UNUSED
, *xp
, REG_NOTES (insn
));
3598 /* Create a copy of INSN after AFTER replacing store of VAL to NEW
3599 and each other side effect to pseudo register by new pseudo register. */
3602 hoist_insn_after (rtx insn
, rtx after
, rtx val
, rtx
new)
3609 insn
= emit_copy_of_insn_after (insn
, after
);
3610 pat
= PATTERN (insn
);
3612 /* Remove REG_UNUSED notes as we will re-emit them. */
3613 while ((note
= find_reg_note (insn
, REG_UNUSED
, NULL_RTX
)))
3614 remove_note (insn
, note
);
3616 /* To get this working callers must ensure to move everything referenced
3617 by REG_EQUAL/REG_EQUIV notes too. Lets remove them, it is probably
3619 while ((note
= find_reg_note (insn
, REG_EQUAL
, NULL_RTX
)))
3620 remove_note (insn
, note
);
3621 while ((note
= find_reg_note (insn
, REG_EQUIV
, NULL_RTX
)))
3622 remove_note (insn
, note
);
3624 /* Remove REG_DEAD notes as they might not be valid anymore in case
3625 we create redundancy. */
3626 while ((note
= find_reg_note (insn
, REG_DEAD
, NULL_RTX
)))
3627 remove_note (insn
, note
);
3628 switch (GET_CODE (pat
))
3631 hoist_update_store (insn
, &SET_DEST (pat
), val
, new);
3636 hoist_update_store (insn
, &XEXP (pat
, 0), val
, new);
3639 for (i
= 0; i
< XVECLEN (pat
, 0); i
++)
3641 rtx x
= XVECEXP (pat
, 0, i
);
3642 switch (GET_CODE (x
))
3645 hoist_update_store (insn
, &SET_DEST (x
), val
, new);
3650 hoist_update_store (insn
, &SET_DEST (x
), val
, new);
3660 applied
= apply_change_group ();
3661 gcc_assert (applied
);
3667 hoist_insn_to_edge (rtx insn
, edge e
, rtx val
, rtx
new)
3671 /* We cannot insert instructions on an abnormal critical edge.
3672 It will be easier to find the culprit if we die now. */
3673 gcc_assert (!(e
->flags
& EDGE_ABNORMAL
) || !EDGE_CRITICAL_P (e
));
3675 /* Do not use emit_insn_on_edge as we want to preserve notes and similar
3676 stuff. We also emit CALL_INSNS and firends. */
3677 if (e
->insns
.r
== NULL_RTX
)
3680 emit_note (NOTE_INSN_DELETED
);
3683 push_to_sequence (e
->insns
.r
);
3685 new_insn
= hoist_insn_after (insn
, get_last_insn (), val
, new);
3687 e
->insns
.r
= get_insns ();
3692 /* Return true if LABEL is a target of JUMP_INSN. This applies only
3693 to non-complex jumps. That is, direct unconditional, conditional,
3694 and tablejumps, but not computed jumps or returns. It also does
3695 not apply to the fallthru case of a conditional jump. */
3698 label_is_jump_target_p (rtx label
, rtx jump_insn
)
3700 rtx tmp
= JUMP_LABEL (jump_insn
);
3705 if (tablejump_p (jump_insn
, NULL
, &tmp
))
3707 rtvec vec
= XVEC (PATTERN (tmp
),
3708 GET_CODE (PATTERN (tmp
)) == ADDR_DIFF_VEC
);
3709 int i
, veclen
= GET_NUM_ELEM (vec
);
3711 for (i
= 0; i
< veclen
; ++i
)
3712 if (XEXP (RTVEC_ELT (vec
, i
), 0) == label
)
3720 /* Return an estimate of the cost of computing rtx X.
3721 One use is in cse, to decide which expression to keep in the hash table.
3722 Another is in rtl generation, to pick the cheapest way to multiply.
3723 Other uses like the latter are expected in the future. */
3726 rtx_cost (rtx x
, enum rtx_code outer_code ATTRIBUTE_UNUSED
)
3736 /* Compute the default costs of certain things.
3737 Note that targetm.rtx_costs can override the defaults. */
3739 code
= GET_CODE (x
);
3743 total
= COSTS_N_INSNS (5);
3749 total
= COSTS_N_INSNS (7);
3752 /* Used in loop.c and combine.c as a marker. */
3756 total
= COSTS_N_INSNS (1);
3765 /* If we can't tie these modes, make this expensive. The larger
3766 the mode, the more expensive it is. */
3767 if (! MODES_TIEABLE_P (GET_MODE (x
), GET_MODE (SUBREG_REG (x
))))
3768 return COSTS_N_INSNS (2
3769 + GET_MODE_SIZE (GET_MODE (x
)) / UNITS_PER_WORD
);
3773 if (targetm
.rtx_costs (x
, code
, outer_code
, &total
))
3778 /* Sum the costs of the sub-rtx's, plus cost of this operation,
3779 which is already in total. */
3781 fmt
= GET_RTX_FORMAT (code
);
3782 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
3784 total
+= rtx_cost (XEXP (x
, i
), code
);
3785 else if (fmt
[i
] == 'E')
3786 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
3787 total
+= rtx_cost (XVECEXP (x
, i
, j
), code
);
3792 /* Return cost of address expression X.
3793 Expect that X is properly formed address reference. */
3796 address_cost (rtx x
, enum machine_mode mode
)
3798 /* We may be asked for cost of various unusual addresses, such as operands
3799 of push instruction. It is not worthwhile to complicate writing
3800 of the target hook by such cases. */
3802 if (!memory_address_p (mode
, x
))
3805 return targetm
.address_cost (x
);
3808 /* If the target doesn't override, compute the cost as with arithmetic. */
3811 default_address_cost (rtx x
)
3813 return rtx_cost (x
, MEM
);
3817 unsigned HOST_WIDE_INT
3818 nonzero_bits (rtx x
, enum machine_mode mode
)
3820 return cached_nonzero_bits (x
, mode
, NULL_RTX
, VOIDmode
, 0);
3824 num_sign_bit_copies (rtx x
, enum machine_mode mode
)
3826 return cached_num_sign_bit_copies (x
, mode
, NULL_RTX
, VOIDmode
, 0);
3829 /* The function cached_nonzero_bits is a wrapper around nonzero_bits1.
3830 It avoids exponential behavior in nonzero_bits1 when X has
3831 identical subexpressions on the first or the second level. */
3833 static unsigned HOST_WIDE_INT
3834 cached_nonzero_bits (rtx x
, enum machine_mode mode
, rtx known_x
,
3835 enum machine_mode known_mode
,
3836 unsigned HOST_WIDE_INT known_ret
)
3838 if (x
== known_x
&& mode
== known_mode
)
3841 /* Try to find identical subexpressions. If found call
3842 nonzero_bits1 on X with the subexpressions as KNOWN_X and the
3843 precomputed value for the subexpression as KNOWN_RET. */
3845 if (ARITHMETIC_P (x
))
3847 rtx x0
= XEXP (x
, 0);
3848 rtx x1
= XEXP (x
, 1);
3850 /* Check the first level. */
3852 return nonzero_bits1 (x
, mode
, x0
, mode
,
3853 cached_nonzero_bits (x0
, mode
, known_x
,
3854 known_mode
, known_ret
));
3856 /* Check the second level. */
3857 if (ARITHMETIC_P (x0
)
3858 && (x1
== XEXP (x0
, 0) || x1
== XEXP (x0
, 1)))
3859 return nonzero_bits1 (x
, mode
, x1
, mode
,
3860 cached_nonzero_bits (x1
, mode
, known_x
,
3861 known_mode
, known_ret
));
3863 if (ARITHMETIC_P (x1
)
3864 && (x0
== XEXP (x1
, 0) || x0
== XEXP (x1
, 1)))
3865 return nonzero_bits1 (x
, mode
, x0
, mode
,
3866 cached_nonzero_bits (x0
, mode
, known_x
,
3867 known_mode
, known_ret
));
3870 return nonzero_bits1 (x
, mode
, known_x
, known_mode
, known_ret
);
3873 /* We let num_sign_bit_copies recur into nonzero_bits as that is useful.
3874 We don't let nonzero_bits recur into num_sign_bit_copies, because that
3875 is less useful. We can't allow both, because that results in exponential
3876 run time recursion. There is a nullstone testcase that triggered
3877 this. This macro avoids accidental uses of num_sign_bit_copies. */
3878 #define cached_num_sign_bit_copies sorry_i_am_preventing_exponential_behavior
3880 /* Given an expression, X, compute which bits in X can be nonzero.
3881 We don't care about bits outside of those defined in MODE.
3883 For most X this is simply GET_MODE_MASK (GET_MODE (MODE)), but if X is
3884 an arithmetic operation, we can do better. */
3886 static unsigned HOST_WIDE_INT
3887 nonzero_bits1 (rtx x
, enum machine_mode mode
, rtx known_x
,
3888 enum machine_mode known_mode
,
3889 unsigned HOST_WIDE_INT known_ret
)
3891 unsigned HOST_WIDE_INT nonzero
= GET_MODE_MASK (mode
);
3892 unsigned HOST_WIDE_INT inner_nz
;
3894 unsigned int mode_width
= GET_MODE_BITSIZE (mode
);
3896 /* For floating-point values, assume all bits are needed. */
3897 if (FLOAT_MODE_P (GET_MODE (x
)) || FLOAT_MODE_P (mode
))
3900 /* If X is wider than MODE, use its mode instead. */
3901 if (GET_MODE_BITSIZE (GET_MODE (x
)) > mode_width
)
3903 mode
= GET_MODE (x
);
3904 nonzero
= GET_MODE_MASK (mode
);
3905 mode_width
= GET_MODE_BITSIZE (mode
);
3908 if (mode_width
> HOST_BITS_PER_WIDE_INT
)
3909 /* Our only callers in this case look for single bit values. So
3910 just return the mode mask. Those tests will then be false. */
3913 #ifndef WORD_REGISTER_OPERATIONS
3914 /* If MODE is wider than X, but both are a single word for both the host
3915 and target machines, we can compute this from which bits of the
3916 object might be nonzero in its own mode, taking into account the fact
3917 that on many CISC machines, accessing an object in a wider mode
3918 causes the high-order bits to become undefined. So they are
3919 not known to be zero. */
3921 if (GET_MODE (x
) != VOIDmode
&& GET_MODE (x
) != mode
3922 && GET_MODE_BITSIZE (GET_MODE (x
)) <= BITS_PER_WORD
3923 && GET_MODE_BITSIZE (GET_MODE (x
)) <= HOST_BITS_PER_WIDE_INT
3924 && GET_MODE_BITSIZE (mode
) > GET_MODE_BITSIZE (GET_MODE (x
)))
3926 nonzero
&= cached_nonzero_bits (x
, GET_MODE (x
),
3927 known_x
, known_mode
, known_ret
);
3928 nonzero
|= GET_MODE_MASK (mode
) & ~GET_MODE_MASK (GET_MODE (x
));
3933 code
= GET_CODE (x
);
3937 #if defined(POINTERS_EXTEND_UNSIGNED) && !defined(HAVE_ptr_extend)
3938 /* If pointers extend unsigned and this is a pointer in Pmode, say that
3939 all the bits above ptr_mode are known to be zero. */
3940 if (POINTERS_EXTEND_UNSIGNED
&& GET_MODE (x
) == Pmode
3942 nonzero
&= GET_MODE_MASK (ptr_mode
);
3945 /* Include declared information about alignment of pointers. */
3946 /* ??? We don't properly preserve REG_POINTER changes across
3947 pointer-to-integer casts, so we can't trust it except for
3948 things that we know must be pointers. See execute/960116-1.c. */
3949 if ((x
== stack_pointer_rtx
3950 || x
== frame_pointer_rtx
3951 || x
== arg_pointer_rtx
)
3952 && REGNO_POINTER_ALIGN (REGNO (x
)))
3954 unsigned HOST_WIDE_INT alignment
3955 = REGNO_POINTER_ALIGN (REGNO (x
)) / BITS_PER_UNIT
;
3957 #ifdef PUSH_ROUNDING
3958 /* If PUSH_ROUNDING is defined, it is possible for the
3959 stack to be momentarily aligned only to that amount,
3960 so we pick the least alignment. */
3961 if (x
== stack_pointer_rtx
&& PUSH_ARGS
)
3962 alignment
= MIN ((unsigned HOST_WIDE_INT
) PUSH_ROUNDING (1),
3966 nonzero
&= ~(alignment
- 1);
3970 unsigned HOST_WIDE_INT nonzero_for_hook
= nonzero
;
3971 rtx
new = rtl_hooks
.reg_nonzero_bits (x
, mode
, known_x
,
3972 known_mode
, known_ret
,
3976 nonzero_for_hook
&= cached_nonzero_bits (new, mode
, known_x
,
3977 known_mode
, known_ret
);
3979 return nonzero_for_hook
;
3983 #ifdef SHORT_IMMEDIATES_SIGN_EXTEND
3984 /* If X is negative in MODE, sign-extend the value. */
3985 if (INTVAL (x
) > 0 && mode_width
< BITS_PER_WORD
3986 && 0 != (INTVAL (x
) & ((HOST_WIDE_INT
) 1 << (mode_width
- 1))))
3987 return (INTVAL (x
) | ((HOST_WIDE_INT
) (-1) << mode_width
));
3993 #ifdef LOAD_EXTEND_OP
3994 /* In many, if not most, RISC machines, reading a byte from memory
3995 zeros the rest of the register. Noticing that fact saves a lot
3996 of extra zero-extends. */
3997 if (LOAD_EXTEND_OP (GET_MODE (x
)) == ZERO_EXTEND
)
3998 nonzero
&= GET_MODE_MASK (GET_MODE (x
));
4003 case UNEQ
: case LTGT
:
4004 case GT
: case GTU
: case UNGT
:
4005 case LT
: case LTU
: case UNLT
:
4006 case GE
: case GEU
: case UNGE
:
4007 case LE
: case LEU
: case UNLE
:
4008 case UNORDERED
: case ORDERED
:
4010 /* If this produces an integer result, we know which bits are set.
4011 Code here used to clear bits outside the mode of X, but that is
4014 if (GET_MODE_CLASS (mode
) == MODE_INT
4015 && mode_width
<= HOST_BITS_PER_WIDE_INT
)
4016 nonzero
= STORE_FLAG_VALUE
;
4021 /* Disabled to avoid exponential mutual recursion between nonzero_bits
4022 and num_sign_bit_copies. */
4023 if (num_sign_bit_copies (XEXP (x
, 0), GET_MODE (x
))
4024 == GET_MODE_BITSIZE (GET_MODE (x
)))
4028 if (GET_MODE_SIZE (GET_MODE (x
)) < mode_width
)
4029 nonzero
|= (GET_MODE_MASK (mode
) & ~GET_MODE_MASK (GET_MODE (x
)));
4034 /* Disabled to avoid exponential mutual recursion between nonzero_bits
4035 and num_sign_bit_copies. */
4036 if (num_sign_bit_copies (XEXP (x
, 0), GET_MODE (x
))
4037 == GET_MODE_BITSIZE (GET_MODE (x
)))
4043 nonzero
&= (cached_nonzero_bits (XEXP (x
, 0), mode
,
4044 known_x
, known_mode
, known_ret
)
4045 & GET_MODE_MASK (mode
));
4049 nonzero
&= cached_nonzero_bits (XEXP (x
, 0), mode
,
4050 known_x
, known_mode
, known_ret
);
4051 if (GET_MODE (XEXP (x
, 0)) != VOIDmode
)
4052 nonzero
&= GET_MODE_MASK (GET_MODE (XEXP (x
, 0)));
4056 /* If the sign bit is known clear, this is the same as ZERO_EXTEND.
4057 Otherwise, show all the bits in the outer mode but not the inner
4059 inner_nz
= cached_nonzero_bits (XEXP (x
, 0), mode
,
4060 known_x
, known_mode
, known_ret
);
4061 if (GET_MODE (XEXP (x
, 0)) != VOIDmode
)
4063 inner_nz
&= GET_MODE_MASK (GET_MODE (XEXP (x
, 0)));
4065 & (((HOST_WIDE_INT
) 1
4066 << (GET_MODE_BITSIZE (GET_MODE (XEXP (x
, 0))) - 1))))
4067 inner_nz
|= (GET_MODE_MASK (mode
)
4068 & ~GET_MODE_MASK (GET_MODE (XEXP (x
, 0))));
4071 nonzero
&= inner_nz
;
4075 nonzero
&= cached_nonzero_bits (XEXP (x
, 0), mode
,
4076 known_x
, known_mode
, known_ret
)
4077 & cached_nonzero_bits (XEXP (x
, 1), mode
,
4078 known_x
, known_mode
, known_ret
);
4082 case UMIN
: case UMAX
: case SMIN
: case SMAX
:
4084 unsigned HOST_WIDE_INT nonzero0
=
4085 cached_nonzero_bits (XEXP (x
, 0), mode
,
4086 known_x
, known_mode
, known_ret
);
4088 /* Don't call nonzero_bits for the second time if it cannot change
4090 if ((nonzero
& nonzero0
) != nonzero
)
4092 | cached_nonzero_bits (XEXP (x
, 1), mode
,
4093 known_x
, known_mode
, known_ret
);
4097 case PLUS
: case MINUS
:
4099 case DIV
: case UDIV
:
4100 case MOD
: case UMOD
:
4101 /* We can apply the rules of arithmetic to compute the number of
4102 high- and low-order zero bits of these operations. We start by
4103 computing the width (position of the highest-order nonzero bit)
4104 and the number of low-order zero bits for each value. */
4106 unsigned HOST_WIDE_INT nz0
=
4107 cached_nonzero_bits (XEXP (x
, 0), mode
,
4108 known_x
, known_mode
, known_ret
);
4109 unsigned HOST_WIDE_INT nz1
=
4110 cached_nonzero_bits (XEXP (x
, 1), mode
,
4111 known_x
, known_mode
, known_ret
);
4112 int sign_index
= GET_MODE_BITSIZE (GET_MODE (x
)) - 1;
4113 int width0
= floor_log2 (nz0
) + 1;
4114 int width1
= floor_log2 (nz1
) + 1;
4115 int low0
= floor_log2 (nz0
& -nz0
);
4116 int low1
= floor_log2 (nz1
& -nz1
);
4117 HOST_WIDE_INT op0_maybe_minusp
4118 = (nz0
& ((HOST_WIDE_INT
) 1 << sign_index
));
4119 HOST_WIDE_INT op1_maybe_minusp
4120 = (nz1
& ((HOST_WIDE_INT
) 1 << sign_index
));
4121 unsigned int result_width
= mode_width
;
4127 result_width
= MAX (width0
, width1
) + 1;
4128 result_low
= MIN (low0
, low1
);
4131 result_low
= MIN (low0
, low1
);
4134 result_width
= width0
+ width1
;
4135 result_low
= low0
+ low1
;
4140 if (! op0_maybe_minusp
&& ! op1_maybe_minusp
)
4141 result_width
= width0
;
4146 result_width
= width0
;
4151 if (! op0_maybe_minusp
&& ! op1_maybe_minusp
)
4152 result_width
= MIN (width0
, width1
);
4153 result_low
= MIN (low0
, low1
);
4158 result_width
= MIN (width0
, width1
);
4159 result_low
= MIN (low0
, low1
);
4165 if (result_width
< mode_width
)
4166 nonzero
&= ((HOST_WIDE_INT
) 1 << result_width
) - 1;
4169 nonzero
&= ~(((HOST_WIDE_INT
) 1 << result_low
) - 1);
4171 #ifdef POINTERS_EXTEND_UNSIGNED
4172 /* If pointers extend unsigned and this is an addition or subtraction
4173 to a pointer in Pmode, all the bits above ptr_mode are known to be
4175 if (POINTERS_EXTEND_UNSIGNED
> 0 && GET_MODE (x
) == Pmode
4176 && (code
== PLUS
|| code
== MINUS
)
4177 && REG_P (XEXP (x
, 0)) && REG_POINTER (XEXP (x
, 0)))
4178 nonzero
&= GET_MODE_MASK (ptr_mode
);
4184 if (GET_CODE (XEXP (x
, 1)) == CONST_INT
4185 && INTVAL (XEXP (x
, 1)) < HOST_BITS_PER_WIDE_INT
)
4186 nonzero
&= ((HOST_WIDE_INT
) 1 << INTVAL (XEXP (x
, 1))) - 1;
4190 /* If this is a SUBREG formed for a promoted variable that has
4191 been zero-extended, we know that at least the high-order bits
4192 are zero, though others might be too. */
4194 if (SUBREG_PROMOTED_VAR_P (x
) && SUBREG_PROMOTED_UNSIGNED_P (x
) > 0)
4195 nonzero
= GET_MODE_MASK (GET_MODE (x
))
4196 & cached_nonzero_bits (SUBREG_REG (x
), GET_MODE (x
),
4197 known_x
, known_mode
, known_ret
);
4199 /* If the inner mode is a single word for both the host and target
4200 machines, we can compute this from which bits of the inner
4201 object might be nonzero. */
4202 if (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x
))) <= BITS_PER_WORD
4203 && (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x
)))
4204 <= HOST_BITS_PER_WIDE_INT
))
4206 nonzero
&= cached_nonzero_bits (SUBREG_REG (x
), mode
,
4207 known_x
, known_mode
, known_ret
);
4209 #if defined (WORD_REGISTER_OPERATIONS) && defined (LOAD_EXTEND_OP)
4210 /* If this is a typical RISC machine, we only have to worry
4211 about the way loads are extended. */
4212 if ((LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (x
))) == SIGN_EXTEND
4214 & (((unsigned HOST_WIDE_INT
) 1
4215 << (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x
))) - 1))))
4217 : LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (x
))) != ZERO_EXTEND
)
4218 || !MEM_P (SUBREG_REG (x
)))
4221 /* On many CISC machines, accessing an object in a wider mode
4222 causes the high-order bits to become undefined. So they are
4223 not known to be zero. */
4224 if (GET_MODE_SIZE (GET_MODE (x
))
4225 > GET_MODE_SIZE (GET_MODE (SUBREG_REG (x
))))
4226 nonzero
|= (GET_MODE_MASK (GET_MODE (x
))
4227 & ~GET_MODE_MASK (GET_MODE (SUBREG_REG (x
))));
4236 /* The nonzero bits are in two classes: any bits within MODE
4237 that aren't in GET_MODE (x) are always significant. The rest of the
4238 nonzero bits are those that are significant in the operand of
4239 the shift when shifted the appropriate number of bits. This
4240 shows that high-order bits are cleared by the right shift and
4241 low-order bits by left shifts. */
4242 if (GET_CODE (XEXP (x
, 1)) == CONST_INT
4243 && INTVAL (XEXP (x
, 1)) >= 0
4244 && INTVAL (XEXP (x
, 1)) < HOST_BITS_PER_WIDE_INT
)
4246 enum machine_mode inner_mode
= GET_MODE (x
);
4247 unsigned int width
= GET_MODE_BITSIZE (inner_mode
);
4248 int count
= INTVAL (XEXP (x
, 1));
4249 unsigned HOST_WIDE_INT mode_mask
= GET_MODE_MASK (inner_mode
);
4250 unsigned HOST_WIDE_INT op_nonzero
=
4251 cached_nonzero_bits (XEXP (x
, 0), mode
,
4252 known_x
, known_mode
, known_ret
);
4253 unsigned HOST_WIDE_INT inner
= op_nonzero
& mode_mask
;
4254 unsigned HOST_WIDE_INT outer
= 0;
4256 if (mode_width
> width
)
4257 outer
= (op_nonzero
& nonzero
& ~mode_mask
);
4259 if (code
== LSHIFTRT
)
4261 else if (code
== ASHIFTRT
)
4265 /* If the sign bit may have been nonzero before the shift, we
4266 need to mark all the places it could have been copied to
4267 by the shift as possibly nonzero. */
4268 if (inner
& ((HOST_WIDE_INT
) 1 << (width
- 1 - count
)))
4269 inner
|= (((HOST_WIDE_INT
) 1 << count
) - 1) << (width
- count
);
4271 else if (code
== ASHIFT
)
4274 inner
= ((inner
<< (count
% width
)
4275 | (inner
>> (width
- (count
% width
)))) & mode_mask
);
4277 nonzero
&= (outer
| inner
);
4283 /* This is at most the number of bits in the mode. */
4284 nonzero
= ((HOST_WIDE_INT
) 2 << (floor_log2 (mode_width
))) - 1;
4288 /* If CLZ has a known value at zero, then the nonzero bits are
4289 that value, plus the number of bits in the mode minus one. */
4290 if (CLZ_DEFINED_VALUE_AT_ZERO (mode
, nonzero
))
4291 nonzero
|= ((HOST_WIDE_INT
) 1 << (floor_log2 (mode_width
))) - 1;
4297 /* If CTZ has a known value at zero, then the nonzero bits are
4298 that value, plus the number of bits in the mode minus one. */
4299 if (CTZ_DEFINED_VALUE_AT_ZERO (mode
, nonzero
))
4300 nonzero
|= ((HOST_WIDE_INT
) 1 << (floor_log2 (mode_width
))) - 1;
4311 unsigned HOST_WIDE_INT nonzero_true
=
4312 cached_nonzero_bits (XEXP (x
, 1), mode
,
4313 known_x
, known_mode
, known_ret
);
4315 /* Don't call nonzero_bits for the second time if it cannot change
4317 if ((nonzero
& nonzero_true
) != nonzero
)
4318 nonzero
&= nonzero_true
4319 | cached_nonzero_bits (XEXP (x
, 2), mode
,
4320 known_x
, known_mode
, known_ret
);
4331 /* See the macro definition above. */
4332 #undef cached_num_sign_bit_copies
4335 /* The function cached_num_sign_bit_copies is a wrapper around
4336 num_sign_bit_copies1. It avoids exponential behavior in
4337 num_sign_bit_copies1 when X has identical subexpressions on the
4338 first or the second level. */
4341 cached_num_sign_bit_copies (rtx x
, enum machine_mode mode
, rtx known_x
,
4342 enum machine_mode known_mode
,
4343 unsigned int known_ret
)
4345 if (x
== known_x
&& mode
== known_mode
)
4348 /* Try to find identical subexpressions. If found call
4349 num_sign_bit_copies1 on X with the subexpressions as KNOWN_X and
4350 the precomputed value for the subexpression as KNOWN_RET. */
4352 if (ARITHMETIC_P (x
))
4354 rtx x0
= XEXP (x
, 0);
4355 rtx x1
= XEXP (x
, 1);
4357 /* Check the first level. */
4360 num_sign_bit_copies1 (x
, mode
, x0
, mode
,
4361 cached_num_sign_bit_copies (x0
, mode
, known_x
,
4365 /* Check the second level. */
4366 if (ARITHMETIC_P (x0
)
4367 && (x1
== XEXP (x0
, 0) || x1
== XEXP (x0
, 1)))
4369 num_sign_bit_copies1 (x
, mode
, x1
, mode
,
4370 cached_num_sign_bit_copies (x1
, mode
, known_x
,
4374 if (ARITHMETIC_P (x1
)
4375 && (x0
== XEXP (x1
, 0) || x0
== XEXP (x1
, 1)))
4377 num_sign_bit_copies1 (x
, mode
, x0
, mode
,
4378 cached_num_sign_bit_copies (x0
, mode
, known_x
,
4383 return num_sign_bit_copies1 (x
, mode
, known_x
, known_mode
, known_ret
);
4386 /* Return the number of bits at the high-order end of X that are known to
4387 be equal to the sign bit. X will be used in mode MODE; if MODE is
4388 VOIDmode, X will be used in its own mode. The returned value will always
4389 be between 1 and the number of bits in MODE. */
4392 num_sign_bit_copies1 (rtx x
, enum machine_mode mode
, rtx known_x
,
4393 enum machine_mode known_mode
,
4394 unsigned int known_ret
)
4396 enum rtx_code code
= GET_CODE (x
);
4397 unsigned int bitwidth
= GET_MODE_BITSIZE (mode
);
4398 int num0
, num1
, result
;
4399 unsigned HOST_WIDE_INT nonzero
;
4401 /* If we weren't given a mode, use the mode of X. If the mode is still
4402 VOIDmode, we don't know anything. Likewise if one of the modes is
4405 if (mode
== VOIDmode
)
4406 mode
= GET_MODE (x
);
4408 if (mode
== VOIDmode
|| FLOAT_MODE_P (mode
) || FLOAT_MODE_P (GET_MODE (x
)))
4411 /* For a smaller object, just ignore the high bits. */
4412 if (bitwidth
< GET_MODE_BITSIZE (GET_MODE (x
)))
4414 num0
= cached_num_sign_bit_copies (x
, GET_MODE (x
),
4415 known_x
, known_mode
, known_ret
);
4417 num0
- (int) (GET_MODE_BITSIZE (GET_MODE (x
)) - bitwidth
));
4420 if (GET_MODE (x
) != VOIDmode
&& bitwidth
> GET_MODE_BITSIZE (GET_MODE (x
)))
4422 #ifndef WORD_REGISTER_OPERATIONS
4423 /* If this machine does not do all register operations on the entire
4424 register and MODE is wider than the mode of X, we can say nothing
4425 at all about the high-order bits. */
4428 /* Likewise on machines that do, if the mode of the object is smaller
4429 than a word and loads of that size don't sign extend, we can say
4430 nothing about the high order bits. */
4431 if (GET_MODE_BITSIZE (GET_MODE (x
)) < BITS_PER_WORD
4432 #ifdef LOAD_EXTEND_OP
4433 && LOAD_EXTEND_OP (GET_MODE (x
)) != SIGN_EXTEND
4444 #if defined(POINTERS_EXTEND_UNSIGNED) && !defined(HAVE_ptr_extend)
4445 /* If pointers extend signed and this is a pointer in Pmode, say that
4446 all the bits above ptr_mode are known to be sign bit copies. */
4447 if (! POINTERS_EXTEND_UNSIGNED
&& GET_MODE (x
) == Pmode
&& mode
== Pmode
4449 return GET_MODE_BITSIZE (Pmode
) - GET_MODE_BITSIZE (ptr_mode
) + 1;
4453 unsigned int copies_for_hook
= 1, copies
= 1;
4454 rtx
new = rtl_hooks
.reg_num_sign_bit_copies (x
, mode
, known_x
,
4455 known_mode
, known_ret
,
4459 copies
= cached_num_sign_bit_copies (new, mode
, known_x
,
4460 known_mode
, known_ret
);
4462 if (copies
> 1 || copies_for_hook
> 1)
4463 return MAX (copies
, copies_for_hook
);
4465 /* Else, use nonzero_bits to guess num_sign_bit_copies (see below). */
4470 #ifdef LOAD_EXTEND_OP
4471 /* Some RISC machines sign-extend all loads of smaller than a word. */
4472 if (LOAD_EXTEND_OP (GET_MODE (x
)) == SIGN_EXTEND
)
4473 return MAX (1, ((int) bitwidth
4474 - (int) GET_MODE_BITSIZE (GET_MODE (x
)) + 1));
4479 /* If the constant is negative, take its 1's complement and remask.
4480 Then see how many zero bits we have. */
4481 nonzero
= INTVAL (x
) & GET_MODE_MASK (mode
);
4482 if (bitwidth
<= HOST_BITS_PER_WIDE_INT
4483 && (nonzero
& ((HOST_WIDE_INT
) 1 << (bitwidth
- 1))) != 0)
4484 nonzero
= (~nonzero
) & GET_MODE_MASK (mode
);
4486 return (nonzero
== 0 ? bitwidth
: bitwidth
- floor_log2 (nonzero
) - 1);
4489 /* If this is a SUBREG for a promoted object that is sign-extended
4490 and we are looking at it in a wider mode, we know that at least the
4491 high-order bits are known to be sign bit copies. */
4493 if (SUBREG_PROMOTED_VAR_P (x
) && ! SUBREG_PROMOTED_UNSIGNED_P (x
))
4495 num0
= cached_num_sign_bit_copies (SUBREG_REG (x
), mode
,
4496 known_x
, known_mode
, known_ret
);
4497 return MAX ((int) bitwidth
4498 - (int) GET_MODE_BITSIZE (GET_MODE (x
)) + 1,
4502 /* For a smaller object, just ignore the high bits. */
4503 if (bitwidth
<= GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x
))))
4505 num0
= cached_num_sign_bit_copies (SUBREG_REG (x
), VOIDmode
,
4506 known_x
, known_mode
, known_ret
);
4507 return MAX (1, (num0
4508 - (int) (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x
)))
4512 #ifdef WORD_REGISTER_OPERATIONS
4513 #ifdef LOAD_EXTEND_OP
4514 /* For paradoxical SUBREGs on machines where all register operations
4515 affect the entire register, just look inside. Note that we are
4516 passing MODE to the recursive call, so the number of sign bit copies
4517 will remain relative to that mode, not the inner mode. */
4519 /* This works only if loads sign extend. Otherwise, if we get a
4520 reload for the inner part, it may be loaded from the stack, and
4521 then we lose all sign bit copies that existed before the store
4524 if ((GET_MODE_SIZE (GET_MODE (x
))
4525 > GET_MODE_SIZE (GET_MODE (SUBREG_REG (x
))))
4526 && LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (x
))) == SIGN_EXTEND
4527 && MEM_P (SUBREG_REG (x
)))
4528 return cached_num_sign_bit_copies (SUBREG_REG (x
), mode
,
4529 known_x
, known_mode
, known_ret
);
4535 if (GET_CODE (XEXP (x
, 1)) == CONST_INT
)
4536 return MAX (1, (int) bitwidth
- INTVAL (XEXP (x
, 1)));
4540 return (bitwidth
- GET_MODE_BITSIZE (GET_MODE (XEXP (x
, 0)))
4541 + cached_num_sign_bit_copies (XEXP (x
, 0), VOIDmode
,
4542 known_x
, known_mode
, known_ret
));
4545 /* For a smaller object, just ignore the high bits. */
4546 num0
= cached_num_sign_bit_copies (XEXP (x
, 0), VOIDmode
,
4547 known_x
, known_mode
, known_ret
);
4548 return MAX (1, (num0
- (int) (GET_MODE_BITSIZE (GET_MODE (XEXP (x
, 0)))
4552 return cached_num_sign_bit_copies (XEXP (x
, 0), mode
,
4553 known_x
, known_mode
, known_ret
);
4555 case ROTATE
: case ROTATERT
:
4556 /* If we are rotating left by a number of bits less than the number
4557 of sign bit copies, we can just subtract that amount from the
4559 if (GET_CODE (XEXP (x
, 1)) == CONST_INT
4560 && INTVAL (XEXP (x
, 1)) >= 0
4561 && INTVAL (XEXP (x
, 1)) < (int) bitwidth
)
4563 num0
= cached_num_sign_bit_copies (XEXP (x
, 0), mode
,
4564 known_x
, known_mode
, known_ret
);
4565 return MAX (1, num0
- (code
== ROTATE
? INTVAL (XEXP (x
, 1))
4566 : (int) bitwidth
- INTVAL (XEXP (x
, 1))));
4571 /* In general, this subtracts one sign bit copy. But if the value
4572 is known to be positive, the number of sign bit copies is the
4573 same as that of the input. Finally, if the input has just one bit
4574 that might be nonzero, all the bits are copies of the sign bit. */
4575 num0
= cached_num_sign_bit_copies (XEXP (x
, 0), mode
,
4576 known_x
, known_mode
, known_ret
);
4577 if (bitwidth
> HOST_BITS_PER_WIDE_INT
)
4578 return num0
> 1 ? num0
- 1 : 1;
4580 nonzero
= nonzero_bits (XEXP (x
, 0), mode
);
4585 && (((HOST_WIDE_INT
) 1 << (bitwidth
- 1)) & nonzero
))
4590 case IOR
: case AND
: case XOR
:
4591 case SMIN
: case SMAX
: case UMIN
: case UMAX
:
4592 /* Logical operations will preserve the number of sign-bit copies.
4593 MIN and MAX operations always return one of the operands. */
4594 num0
= cached_num_sign_bit_copies (XEXP (x
, 0), mode
,
4595 known_x
, known_mode
, known_ret
);
4596 num1
= cached_num_sign_bit_copies (XEXP (x
, 1), mode
,
4597 known_x
, known_mode
, known_ret
);
4598 return MIN (num0
, num1
);
4600 case PLUS
: case MINUS
:
4601 /* For addition and subtraction, we can have a 1-bit carry. However,
4602 if we are subtracting 1 from a positive number, there will not
4603 be such a carry. Furthermore, if the positive number is known to
4604 be 0 or 1, we know the result is either -1 or 0. */
4606 if (code
== PLUS
&& XEXP (x
, 1) == constm1_rtx
4607 && bitwidth
<= HOST_BITS_PER_WIDE_INT
)
4609 nonzero
= nonzero_bits (XEXP (x
, 0), mode
);
4610 if ((((HOST_WIDE_INT
) 1 << (bitwidth
- 1)) & nonzero
) == 0)
4611 return (nonzero
== 1 || nonzero
== 0 ? bitwidth
4612 : bitwidth
- floor_log2 (nonzero
) - 1);
4615 num0
= cached_num_sign_bit_copies (XEXP (x
, 0), mode
,
4616 known_x
, known_mode
, known_ret
);
4617 num1
= cached_num_sign_bit_copies (XEXP (x
, 1), mode
,
4618 known_x
, known_mode
, known_ret
);
4619 result
= MAX (1, MIN (num0
, num1
) - 1);
4621 #ifdef POINTERS_EXTEND_UNSIGNED
4622 /* If pointers extend signed and this is an addition or subtraction
4623 to a pointer in Pmode, all the bits above ptr_mode are known to be
4625 if (! POINTERS_EXTEND_UNSIGNED
&& GET_MODE (x
) == Pmode
4626 && (code
== PLUS
|| code
== MINUS
)
4627 && REG_P (XEXP (x
, 0)) && REG_POINTER (XEXP (x
, 0)))
4628 result
= MAX ((int) (GET_MODE_BITSIZE (Pmode
)
4629 - GET_MODE_BITSIZE (ptr_mode
) + 1),
4635 /* The number of bits of the product is the sum of the number of
4636 bits of both terms. However, unless one of the terms if known
4637 to be positive, we must allow for an additional bit since negating
4638 a negative number can remove one sign bit copy. */
4640 num0
= cached_num_sign_bit_copies (XEXP (x
, 0), mode
,
4641 known_x
, known_mode
, known_ret
);
4642 num1
= cached_num_sign_bit_copies (XEXP (x
, 1), mode
,
4643 known_x
, known_mode
, known_ret
);
4645 result
= bitwidth
- (bitwidth
- num0
) - (bitwidth
- num1
);
4647 && (bitwidth
> HOST_BITS_PER_WIDE_INT
4648 || (((nonzero_bits (XEXP (x
, 0), mode
)
4649 & ((HOST_WIDE_INT
) 1 << (bitwidth
- 1))) != 0)
4650 && ((nonzero_bits (XEXP (x
, 1), mode
)
4651 & ((HOST_WIDE_INT
) 1 << (bitwidth
- 1))) != 0))))
4654 return MAX (1, result
);
4657 /* The result must be <= the first operand. If the first operand
4658 has the high bit set, we know nothing about the number of sign
4660 if (bitwidth
> HOST_BITS_PER_WIDE_INT
)
4662 else if ((nonzero_bits (XEXP (x
, 0), mode
)
4663 & ((HOST_WIDE_INT
) 1 << (bitwidth
- 1))) != 0)
4666 return cached_num_sign_bit_copies (XEXP (x
, 0), mode
,
4667 known_x
, known_mode
, known_ret
);
4670 /* The result must be <= the second operand. */
4671 return cached_num_sign_bit_copies (XEXP (x
, 1), mode
,
4672 known_x
, known_mode
, known_ret
);
4675 /* Similar to unsigned division, except that we have to worry about
4676 the case where the divisor is negative, in which case we have
4678 result
= cached_num_sign_bit_copies (XEXP (x
, 0), mode
,
4679 known_x
, known_mode
, known_ret
);
4681 && (bitwidth
> HOST_BITS_PER_WIDE_INT
4682 || (nonzero_bits (XEXP (x
, 1), mode
)
4683 & ((HOST_WIDE_INT
) 1 << (bitwidth
- 1))) != 0))
4689 result
= cached_num_sign_bit_copies (XEXP (x
, 1), mode
,
4690 known_x
, known_mode
, known_ret
);
4692 && (bitwidth
> HOST_BITS_PER_WIDE_INT
4693 || (nonzero_bits (XEXP (x
, 1), mode
)
4694 & ((HOST_WIDE_INT
) 1 << (bitwidth
- 1))) != 0))
4700 /* Shifts by a constant add to the number of bits equal to the
4702 num0
= cached_num_sign_bit_copies (XEXP (x
, 0), mode
,
4703 known_x
, known_mode
, known_ret
);
4704 if (GET_CODE (XEXP (x
, 1)) == CONST_INT
4705 && INTVAL (XEXP (x
, 1)) > 0)
4706 num0
= MIN ((int) bitwidth
, num0
+ INTVAL (XEXP (x
, 1)));
4711 /* Left shifts destroy copies. */
4712 if (GET_CODE (XEXP (x
, 1)) != CONST_INT
4713 || INTVAL (XEXP (x
, 1)) < 0
4714 || INTVAL (XEXP (x
, 1)) >= (int) bitwidth
)
4717 num0
= cached_num_sign_bit_copies (XEXP (x
, 0), mode
,
4718 known_x
, known_mode
, known_ret
);
4719 return MAX (1, num0
- INTVAL (XEXP (x
, 1)));
4722 num0
= cached_num_sign_bit_copies (XEXP (x
, 1), mode
,
4723 known_x
, known_mode
, known_ret
);
4724 num1
= cached_num_sign_bit_copies (XEXP (x
, 2), mode
,
4725 known_x
, known_mode
, known_ret
);
4726 return MIN (num0
, num1
);
4728 case EQ
: case NE
: case GE
: case GT
: case LE
: case LT
:
4729 case UNEQ
: case LTGT
: case UNGE
: case UNGT
: case UNLE
: case UNLT
:
4730 case GEU
: case GTU
: case LEU
: case LTU
:
4731 case UNORDERED
: case ORDERED
:
4732 /* If the constant is negative, take its 1's complement and remask.
4733 Then see how many zero bits we have. */
4734 nonzero
= STORE_FLAG_VALUE
;
4735 if (bitwidth
<= HOST_BITS_PER_WIDE_INT
4736 && (nonzero
& ((HOST_WIDE_INT
) 1 << (bitwidth
- 1))) != 0)
4737 nonzero
= (~nonzero
) & GET_MODE_MASK (mode
);
4739 return (nonzero
== 0 ? bitwidth
: bitwidth
- floor_log2 (nonzero
) - 1);
4745 /* If we haven't been able to figure it out by one of the above rules,
4746 see if some of the high-order bits are known to be zero. If so,
4747 count those bits and return one less than that amount. If we can't
4748 safely compute the mask for this mode, always return BITWIDTH. */
4750 bitwidth
= GET_MODE_BITSIZE (mode
);
4751 if (bitwidth
> HOST_BITS_PER_WIDE_INT
)
4754 nonzero
= nonzero_bits (x
, mode
);
4755 return nonzero
& ((HOST_WIDE_INT
) 1 << (bitwidth
- 1))
4756 ? 1 : bitwidth
- floor_log2 (nonzero
) - 1;
4759 /* Calculate the rtx_cost of a single instruction. A return value of
4760 zero indicates an instruction pattern without a known cost. */
4763 insn_rtx_cost (rtx pat
)
4768 /* Extract the single set rtx from the instruction pattern.
4769 We can't use single_set since we only have the pattern. */
4770 if (GET_CODE (pat
) == SET
)
4772 else if (GET_CODE (pat
) == PARALLEL
)
4775 for (i
= 0; i
< XVECLEN (pat
, 0); i
++)
4777 rtx x
= XVECEXP (pat
, 0, i
);
4778 if (GET_CODE (x
) == SET
)
4791 cost
= rtx_cost (SET_SRC (set
), SET
);
4792 return cost
> 0 ? cost
: COSTS_N_INSNS (1);