* config/sparc/sparc.c (load_pic_register): Emit the appropriate
[official-gcc.git] / gcc / rtlanal.c
blob607f74cad55551c32dccc4dfb07d3a9c702afd26
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, 2005 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
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
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
20 02111-1307, USA. */
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "toplev.h"
28 #include "rtl.h"
29 #include "hard-reg-set.h"
30 #include "insn-config.h"
31 #include "recog.h"
32 #include "target.h"
33 #include "output.h"
34 #include "tm_p.h"
35 #include "flags.h"
36 #include "real.h"
37 #include "regs.h"
38 #include "function.h"
40 /* Forward declarations */
41 static int global_reg_mentioned_p_1 (rtx *, void *);
42 static void set_of_1 (rtx, rtx, void *);
43 static bool covers_regno_p (rtx, unsigned int);
44 static bool covers_regno_no_parallel_p (rtx, unsigned int);
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 *);
49 static unsigned HOST_WIDE_INT cached_nonzero_bits (rtx, enum machine_mode,
50 rtx, enum machine_mode,
51 unsigned HOST_WIDE_INT);
52 static unsigned HOST_WIDE_INT nonzero_bits1 (rtx, enum machine_mode, rtx,
53 enum machine_mode,
54 unsigned HOST_WIDE_INT);
55 static unsigned int cached_num_sign_bit_copies (rtx, enum machine_mode, rtx,
56 enum machine_mode,
57 unsigned int);
58 static unsigned int num_sign_bit_copies1 (rtx, enum machine_mode, rtx,
59 enum machine_mode, unsigned int);
61 /* Bit flags that specify the machine subtype we are compiling for.
62 Bits are tested using macros TARGET_... defined in the tm.h file
63 and set by `-m...' switches. Must be defined in rtlanal.c. */
65 int target_flags;
67 /* Return 1 if the value of X is unstable
68 (would be different at a different point in the program).
69 The frame pointer, arg pointer, etc. are considered stable
70 (within one function) and so is anything marked `unchanging'. */
72 int
73 rtx_unstable_p (rtx x)
75 RTX_CODE code = GET_CODE (x);
76 int i;
77 const char *fmt;
79 switch (code)
81 case MEM:
82 return !MEM_READONLY_P (x) || rtx_unstable_p (XEXP (x, 0));
84 case CONST:
85 case CONST_INT:
86 case CONST_DOUBLE:
87 case CONST_VECTOR:
88 case SYMBOL_REF:
89 case LABEL_REF:
90 return 0;
92 case REG:
93 /* As in rtx_varies_p, we have to use the actual rtx, not reg number. */
94 if (x == frame_pointer_rtx || x == hard_frame_pointer_rtx
95 /* The arg pointer varies if it is not a fixed register. */
96 || (x == arg_pointer_rtx && fixed_regs[ARG_POINTER_REGNUM]))
97 return 0;
98 #ifndef PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
99 /* ??? When call-clobbered, the value is stable modulo the restore
100 that must happen after a call. This currently screws up local-alloc
101 into believing that the restore is not needed. */
102 if (x == pic_offset_table_rtx)
103 return 0;
104 #endif
105 return 1;
107 case ASM_OPERANDS:
108 if (MEM_VOLATILE_P (x))
109 return 1;
111 /* Fall through. */
113 default:
114 break;
117 fmt = GET_RTX_FORMAT (code);
118 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
119 if (fmt[i] == 'e')
121 if (rtx_unstable_p (XEXP (x, i)))
122 return 1;
124 else if (fmt[i] == 'E')
126 int j;
127 for (j = 0; j < XVECLEN (x, i); j++)
128 if (rtx_unstable_p (XVECEXP (x, i, j)))
129 return 1;
132 return 0;
135 /* Return 1 if X has a value that can vary even between two
136 executions of the program. 0 means X can be compared reliably
137 against certain constants or near-constants.
138 FOR_ALIAS is nonzero if we are called from alias analysis; if it is
139 zero, we are slightly more conservative.
140 The frame pointer and the arg pointer are considered constant. */
143 rtx_varies_p (rtx x, int for_alias)
145 RTX_CODE code;
146 int i;
147 const char *fmt;
149 if (!x)
150 return 0;
152 code = GET_CODE (x);
153 switch (code)
155 case MEM:
156 return !MEM_READONLY_P (x) || rtx_varies_p (XEXP (x, 0), for_alias);
158 case CONST:
159 case CONST_INT:
160 case CONST_DOUBLE:
161 case CONST_VECTOR:
162 case SYMBOL_REF:
163 case LABEL_REF:
164 return 0;
166 case REG:
167 /* Note that we have to test for the actual rtx used for the frame
168 and arg pointers and not just the register number in case we have
169 eliminated the frame and/or arg pointer and are using it
170 for pseudos. */
171 if (x == frame_pointer_rtx || x == hard_frame_pointer_rtx
172 /* The arg pointer varies if it is not a fixed register. */
173 || (x == arg_pointer_rtx && fixed_regs[ARG_POINTER_REGNUM]))
174 return 0;
175 if (x == pic_offset_table_rtx
176 #ifdef PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
177 /* ??? When call-clobbered, the value is stable modulo the restore
178 that must happen after a call. This currently screws up
179 local-alloc into believing that the restore is not needed, so we
180 must return 0 only if we are called from alias analysis. */
181 && for_alias
182 #endif
184 return 0;
185 return 1;
187 case LO_SUM:
188 /* The operand 0 of a LO_SUM is considered constant
189 (in fact it is related specifically to operand 1)
190 during alias analysis. */
191 return (! for_alias && rtx_varies_p (XEXP (x, 0), for_alias))
192 || rtx_varies_p (XEXP (x, 1), for_alias);
194 case ASM_OPERANDS:
195 if (MEM_VOLATILE_P (x))
196 return 1;
198 /* Fall through. */
200 default:
201 break;
204 fmt = GET_RTX_FORMAT (code);
205 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
206 if (fmt[i] == 'e')
208 if (rtx_varies_p (XEXP (x, i), for_alias))
209 return 1;
211 else if (fmt[i] == 'E')
213 int j;
214 for (j = 0; j < XVECLEN (x, i); j++)
215 if (rtx_varies_p (XVECEXP (x, i, j), for_alias))
216 return 1;
219 return 0;
222 /* Return 0 if the use of X as an address in a MEM can cause a trap. */
225 rtx_addr_can_trap_p (rtx x)
227 enum rtx_code code = GET_CODE (x);
229 switch (code)
231 case SYMBOL_REF:
232 return SYMBOL_REF_WEAK (x);
234 case LABEL_REF:
235 return 0;
237 case REG:
238 /* As in rtx_varies_p, we have to use the actual rtx, not reg number. */
239 if (x == frame_pointer_rtx || x == hard_frame_pointer_rtx
240 || x == stack_pointer_rtx
241 /* The arg pointer varies if it is not a fixed register. */
242 || (x == arg_pointer_rtx && fixed_regs[ARG_POINTER_REGNUM]))
243 return 0;
244 /* All of the virtual frame registers are stack references. */
245 if (REGNO (x) >= FIRST_VIRTUAL_REGISTER
246 && REGNO (x) <= LAST_VIRTUAL_REGISTER)
247 return 0;
248 return 1;
250 case CONST:
251 return rtx_addr_can_trap_p (XEXP (x, 0));
253 case PLUS:
254 /* An address is assumed not to trap if it is an address that can't
255 trap plus a constant integer or it is the pic register plus a
256 constant. */
257 return ! ((! rtx_addr_can_trap_p (XEXP (x, 0))
258 && GET_CODE (XEXP (x, 1)) == CONST_INT)
259 || (XEXP (x, 0) == pic_offset_table_rtx
260 && CONSTANT_P (XEXP (x, 1))));
262 case LO_SUM:
263 case PRE_MODIFY:
264 return rtx_addr_can_trap_p (XEXP (x, 1));
266 case PRE_DEC:
267 case PRE_INC:
268 case POST_DEC:
269 case POST_INC:
270 case POST_MODIFY:
271 return rtx_addr_can_trap_p (XEXP (x, 0));
273 default:
274 break;
277 /* If it isn't one of the case above, it can cause a trap. */
278 return 1;
281 /* Return true if X is an address that is known to not be zero. */
283 bool
284 nonzero_address_p (rtx x)
286 enum rtx_code code = GET_CODE (x);
288 switch (code)
290 case SYMBOL_REF:
291 return !SYMBOL_REF_WEAK (x);
293 case LABEL_REF:
294 return true;
296 case REG:
297 /* As in rtx_varies_p, we have to use the actual rtx, not reg number. */
298 if (x == frame_pointer_rtx || x == hard_frame_pointer_rtx
299 || x == stack_pointer_rtx
300 || (x == arg_pointer_rtx && fixed_regs[ARG_POINTER_REGNUM]))
301 return true;
302 /* All of the virtual frame registers are stack references. */
303 if (REGNO (x) >= FIRST_VIRTUAL_REGISTER
304 && REGNO (x) <= LAST_VIRTUAL_REGISTER)
305 return true;
306 return false;
308 case CONST:
309 return nonzero_address_p (XEXP (x, 0));
311 case PLUS:
312 if (GET_CODE (XEXP (x, 1)) == CONST_INT)
314 /* Pointers aren't allowed to wrap. If we've got a register
315 that is known to be a pointer, and a positive offset, then
316 the composite can't be zero. */
317 if (INTVAL (XEXP (x, 1)) > 0
318 && REG_P (XEXP (x, 0))
319 && REG_POINTER (XEXP (x, 0)))
320 return true;
322 return nonzero_address_p (XEXP (x, 0));
324 /* Handle PIC references. */
325 else if (XEXP (x, 0) == pic_offset_table_rtx
326 && CONSTANT_P (XEXP (x, 1)))
327 return true;
328 return false;
330 case PRE_MODIFY:
331 /* Similar to the above; allow positive offsets. Further, since
332 auto-inc is only allowed in memories, the register must be a
333 pointer. */
334 if (GET_CODE (XEXP (x, 1)) == CONST_INT
335 && INTVAL (XEXP (x, 1)) > 0)
336 return true;
337 return nonzero_address_p (XEXP (x, 0));
339 case PRE_INC:
340 /* Similarly. Further, the offset is always positive. */
341 return true;
343 case PRE_DEC:
344 case POST_DEC:
345 case POST_INC:
346 case POST_MODIFY:
347 return nonzero_address_p (XEXP (x, 0));
349 case LO_SUM:
350 return nonzero_address_p (XEXP (x, 1));
352 default:
353 break;
356 /* If it isn't one of the case above, might be zero. */
357 return false;
360 /* Return 1 if X refers to a memory location whose address
361 cannot be compared reliably with constant addresses,
362 or if X refers to a BLKmode memory object.
363 FOR_ALIAS is nonzero if we are called from alias analysis; if it is
364 zero, we are slightly more conservative. */
367 rtx_addr_varies_p (rtx x, int for_alias)
369 enum rtx_code code;
370 int i;
371 const char *fmt;
373 if (x == 0)
374 return 0;
376 code = GET_CODE (x);
377 if (code == MEM)
378 return GET_MODE (x) == BLKmode || rtx_varies_p (XEXP (x, 0), for_alias);
380 fmt = GET_RTX_FORMAT (code);
381 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
382 if (fmt[i] == 'e')
384 if (rtx_addr_varies_p (XEXP (x, i), for_alias))
385 return 1;
387 else if (fmt[i] == 'E')
389 int j;
390 for (j = 0; j < XVECLEN (x, i); j++)
391 if (rtx_addr_varies_p (XVECEXP (x, i, j), for_alias))
392 return 1;
394 return 0;
397 /* Return the value of the integer term in X, if one is apparent;
398 otherwise return 0.
399 Only obvious integer terms are detected.
400 This is used in cse.c with the `related_value' field. */
402 HOST_WIDE_INT
403 get_integer_term (rtx x)
405 if (GET_CODE (x) == CONST)
406 x = XEXP (x, 0);
408 if (GET_CODE (x) == MINUS
409 && GET_CODE (XEXP (x, 1)) == CONST_INT)
410 return - INTVAL (XEXP (x, 1));
411 if (GET_CODE (x) == PLUS
412 && GET_CODE (XEXP (x, 1)) == CONST_INT)
413 return INTVAL (XEXP (x, 1));
414 return 0;
417 /* If X is a constant, return the value sans apparent integer term;
418 otherwise return 0.
419 Only obvious integer terms are detected. */
422 get_related_value (rtx x)
424 if (GET_CODE (x) != CONST)
425 return 0;
426 x = XEXP (x, 0);
427 if (GET_CODE (x) == PLUS
428 && GET_CODE (XEXP (x, 1)) == CONST_INT)
429 return XEXP (x, 0);
430 else if (GET_CODE (x) == MINUS
431 && GET_CODE (XEXP (x, 1)) == CONST_INT)
432 return XEXP (x, 0);
433 return 0;
436 /* A subroutine of global_reg_mentioned_p, returns 1 if *LOC mentions
437 a global register. */
439 static int
440 global_reg_mentioned_p_1 (rtx *loc, void *data ATTRIBUTE_UNUSED)
442 int regno;
443 rtx x = *loc;
445 if (! x)
446 return 0;
448 switch (GET_CODE (x))
450 case SUBREG:
451 if (REG_P (SUBREG_REG (x)))
453 if (REGNO (SUBREG_REG (x)) < FIRST_PSEUDO_REGISTER
454 && global_regs[subreg_regno (x)])
455 return 1;
456 return 0;
458 break;
460 case REG:
461 regno = REGNO (x);
462 if (regno < FIRST_PSEUDO_REGISTER && global_regs[regno])
463 return 1;
464 return 0;
466 case SCRATCH:
467 case PC:
468 case CC0:
469 case CONST_INT:
470 case CONST_DOUBLE:
471 case CONST:
472 case LABEL_REF:
473 return 0;
475 case CALL:
476 /* A non-constant call might use a global register. */
477 return 1;
479 default:
480 break;
483 return 0;
486 /* Returns nonzero if X mentions a global register. */
489 global_reg_mentioned_p (rtx x)
491 if (INSN_P (x))
493 if (CALL_P (x))
495 if (! CONST_OR_PURE_CALL_P (x))
496 return 1;
497 x = CALL_INSN_FUNCTION_USAGE (x);
498 if (x == 0)
499 return 0;
501 else
502 x = PATTERN (x);
505 return for_each_rtx (&x, global_reg_mentioned_p_1, NULL);
508 /* Return the number of places FIND appears within X. If COUNT_DEST is
509 zero, we do not count occurrences inside the destination of a SET. */
512 count_occurrences (rtx x, rtx find, int count_dest)
514 int i, j;
515 enum rtx_code code;
516 const char *format_ptr;
517 int count;
519 if (x == find)
520 return 1;
522 code = GET_CODE (x);
524 switch (code)
526 case REG:
527 case CONST_INT:
528 case CONST_DOUBLE:
529 case CONST_VECTOR:
530 case SYMBOL_REF:
531 case CODE_LABEL:
532 case PC:
533 case CC0:
534 return 0;
536 case MEM:
537 if (MEM_P (find) && rtx_equal_p (x, find))
538 return 1;
539 break;
541 case SET:
542 if (SET_DEST (x) == find && ! count_dest)
543 return count_occurrences (SET_SRC (x), find, count_dest);
544 break;
546 default:
547 break;
550 format_ptr = GET_RTX_FORMAT (code);
551 count = 0;
553 for (i = 0; i < GET_RTX_LENGTH (code); i++)
555 switch (*format_ptr++)
557 case 'e':
558 count += count_occurrences (XEXP (x, i), find, count_dest);
559 break;
561 case 'E':
562 for (j = 0; j < XVECLEN (x, i); j++)
563 count += count_occurrences (XVECEXP (x, i, j), find, count_dest);
564 break;
567 return count;
570 /* Nonzero if register REG appears somewhere within IN.
571 Also works if REG is not a register; in this case it checks
572 for a subexpression of IN that is Lisp "equal" to REG. */
575 reg_mentioned_p (rtx reg, rtx in)
577 const char *fmt;
578 int i;
579 enum rtx_code code;
581 if (in == 0)
582 return 0;
584 if (reg == in)
585 return 1;
587 if (GET_CODE (in) == LABEL_REF)
588 return reg == XEXP (in, 0);
590 code = GET_CODE (in);
592 switch (code)
594 /* Compare registers by number. */
595 case REG:
596 return REG_P (reg) && REGNO (in) == REGNO (reg);
598 /* These codes have no constituent expressions
599 and are unique. */
600 case SCRATCH:
601 case CC0:
602 case PC:
603 return 0;
605 case CONST_INT:
606 case CONST_VECTOR:
607 case CONST_DOUBLE:
608 /* These are kept unique for a given value. */
609 return 0;
611 default:
612 break;
615 if (GET_CODE (reg) == code && rtx_equal_p (reg, in))
616 return 1;
618 fmt = GET_RTX_FORMAT (code);
620 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
622 if (fmt[i] == 'E')
624 int j;
625 for (j = XVECLEN (in, i) - 1; j >= 0; j--)
626 if (reg_mentioned_p (reg, XVECEXP (in, i, j)))
627 return 1;
629 else if (fmt[i] == 'e'
630 && reg_mentioned_p (reg, XEXP (in, i)))
631 return 1;
633 return 0;
636 /* Return 1 if in between BEG and END, exclusive of BEG and END, there is
637 no CODE_LABEL insn. */
640 no_labels_between_p (rtx beg, rtx end)
642 rtx p;
643 if (beg == end)
644 return 0;
645 for (p = NEXT_INSN (beg); p != end; p = NEXT_INSN (p))
646 if (LABEL_P (p))
647 return 0;
648 return 1;
651 /* Nonzero if register REG is used in an insn between
652 FROM_INSN and TO_INSN (exclusive of those two). */
655 reg_used_between_p (rtx reg, rtx from_insn, rtx to_insn)
657 rtx insn;
659 if (from_insn == to_insn)
660 return 0;
662 for (insn = NEXT_INSN (from_insn); insn != to_insn; insn = NEXT_INSN (insn))
663 if (INSN_P (insn)
664 && (reg_overlap_mentioned_p (reg, PATTERN (insn))
665 || (CALL_P (insn)
666 && (find_reg_fusage (insn, USE, reg)
667 || find_reg_fusage (insn, CLOBBER, reg)))))
668 return 1;
669 return 0;
672 /* Nonzero if the old value of X, a register, is referenced in BODY. If X
673 is entirely replaced by a new value and the only use is as a SET_DEST,
674 we do not consider it a reference. */
677 reg_referenced_p (rtx x, rtx body)
679 int i;
681 switch (GET_CODE (body))
683 case SET:
684 if (reg_overlap_mentioned_p (x, SET_SRC (body)))
685 return 1;
687 /* If the destination is anything other than CC0, PC, a REG or a SUBREG
688 of a REG that occupies all of the REG, the insn references X if
689 it is mentioned in the destination. */
690 if (GET_CODE (SET_DEST (body)) != CC0
691 && GET_CODE (SET_DEST (body)) != PC
692 && !REG_P (SET_DEST (body))
693 && ! (GET_CODE (SET_DEST (body)) == SUBREG
694 && REG_P (SUBREG_REG (SET_DEST (body)))
695 && (((GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (body))))
696 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
697 == ((GET_MODE_SIZE (GET_MODE (SET_DEST (body)))
698 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)))
699 && reg_overlap_mentioned_p (x, SET_DEST (body)))
700 return 1;
701 return 0;
703 case ASM_OPERANDS:
704 for (i = ASM_OPERANDS_INPUT_LENGTH (body) - 1; i >= 0; i--)
705 if (reg_overlap_mentioned_p (x, ASM_OPERANDS_INPUT (body, i)))
706 return 1;
707 return 0;
709 case CALL:
710 case USE:
711 case IF_THEN_ELSE:
712 return reg_overlap_mentioned_p (x, body);
714 case TRAP_IF:
715 return reg_overlap_mentioned_p (x, TRAP_CONDITION (body));
717 case PREFETCH:
718 return reg_overlap_mentioned_p (x, XEXP (body, 0));
720 case UNSPEC:
721 case UNSPEC_VOLATILE:
722 for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
723 if (reg_overlap_mentioned_p (x, XVECEXP (body, 0, i)))
724 return 1;
725 return 0;
727 case PARALLEL:
728 for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
729 if (reg_referenced_p (x, XVECEXP (body, 0, i)))
730 return 1;
731 return 0;
733 case CLOBBER:
734 if (MEM_P (XEXP (body, 0)))
735 if (reg_overlap_mentioned_p (x, XEXP (XEXP (body, 0), 0)))
736 return 1;
737 return 0;
739 case COND_EXEC:
740 if (reg_overlap_mentioned_p (x, COND_EXEC_TEST (body)))
741 return 1;
742 return reg_referenced_p (x, COND_EXEC_CODE (body));
744 default:
745 return 0;
749 /* Nonzero if register REG is set or clobbered in an insn between
750 FROM_INSN and TO_INSN (exclusive of those two). */
753 reg_set_between_p (rtx reg, rtx from_insn, rtx to_insn)
755 rtx insn;
757 if (from_insn == to_insn)
758 return 0;
760 for (insn = NEXT_INSN (from_insn); insn != to_insn; insn = NEXT_INSN (insn))
761 if (INSN_P (insn) && reg_set_p (reg, insn))
762 return 1;
763 return 0;
766 /* Internals of reg_set_between_p. */
768 reg_set_p (rtx reg, rtx insn)
770 /* We can be passed an insn or part of one. If we are passed an insn,
771 check if a side-effect of the insn clobbers REG. */
772 if (INSN_P (insn)
773 && (FIND_REG_INC_NOTE (insn, reg)
774 || (CALL_P (insn)
775 && ((REG_P (reg)
776 && REGNO (reg) < FIRST_PSEUDO_REGISTER
777 && TEST_HARD_REG_BIT (regs_invalidated_by_call,
778 REGNO (reg)))
779 || MEM_P (reg)
780 || find_reg_fusage (insn, CLOBBER, reg)))))
781 return 1;
783 return set_of (reg, insn) != NULL_RTX;
786 /* Similar to reg_set_between_p, but check all registers in X. Return 0
787 only if none of them are modified between START and END. Return 1 if
788 X contains a MEM; this routine does usememory aliasing. */
791 modified_between_p (rtx x, rtx start, rtx end)
793 enum rtx_code code = GET_CODE (x);
794 const char *fmt;
795 int i, j;
796 rtx insn;
798 if (start == end)
799 return 0;
801 switch (code)
803 case CONST_INT:
804 case CONST_DOUBLE:
805 case CONST_VECTOR:
806 case CONST:
807 case SYMBOL_REF:
808 case LABEL_REF:
809 return 0;
811 case PC:
812 case CC0:
813 return 1;
815 case MEM:
816 if (MEM_READONLY_P (x))
817 return 0;
818 if (modified_between_p (XEXP (x, 0), start, end))
819 return 1;
820 for (insn = NEXT_INSN (start); insn != end; insn = NEXT_INSN (insn))
821 if (memory_modified_in_insn_p (x, insn))
822 return 1;
823 return 0;
824 break;
826 case REG:
827 return reg_set_between_p (x, start, end);
829 default:
830 break;
833 fmt = GET_RTX_FORMAT (code);
834 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
836 if (fmt[i] == 'e' && modified_between_p (XEXP (x, i), start, end))
837 return 1;
839 else if (fmt[i] == 'E')
840 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
841 if (modified_between_p (XVECEXP (x, i, j), start, end))
842 return 1;
845 return 0;
848 /* Similar to reg_set_p, but check all registers in X. Return 0 only if none
849 of them are modified in INSN. Return 1 if X contains a MEM; this routine
850 does use memory aliasing. */
853 modified_in_p (rtx x, rtx insn)
855 enum rtx_code code = GET_CODE (x);
856 const char *fmt;
857 int i, j;
859 switch (code)
861 case CONST_INT:
862 case CONST_DOUBLE:
863 case CONST_VECTOR:
864 case CONST:
865 case SYMBOL_REF:
866 case LABEL_REF:
867 return 0;
869 case PC:
870 case CC0:
871 return 1;
873 case MEM:
874 if (MEM_READONLY_P (x))
875 return 0;
876 if (modified_in_p (XEXP (x, 0), insn))
877 return 1;
878 if (memory_modified_in_insn_p (x, insn))
879 return 1;
880 return 0;
881 break;
883 case REG:
884 return reg_set_p (x, insn);
886 default:
887 break;
890 fmt = GET_RTX_FORMAT (code);
891 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
893 if (fmt[i] == 'e' && modified_in_p (XEXP (x, i), insn))
894 return 1;
896 else if (fmt[i] == 'E')
897 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
898 if (modified_in_p (XVECEXP (x, i, j), insn))
899 return 1;
902 return 0;
905 /* Helper function for set_of. */
906 struct set_of_data
908 rtx found;
909 rtx pat;
912 static void
913 set_of_1 (rtx x, rtx pat, void *data1)
915 struct set_of_data *data = (struct set_of_data *) (data1);
916 if (rtx_equal_p (x, data->pat)
917 || (!MEM_P (x) && reg_overlap_mentioned_p (data->pat, x)))
918 data->found = pat;
921 /* Give an INSN, return a SET or CLOBBER expression that does modify PAT
922 (either directly or via STRICT_LOW_PART and similar modifiers). */
924 set_of (rtx pat, rtx insn)
926 struct set_of_data data;
927 data.found = NULL_RTX;
928 data.pat = pat;
929 note_stores (INSN_P (insn) ? PATTERN (insn) : insn, set_of_1, &data);
930 return data.found;
933 /* Given an INSN, return a SET expression if this insn has only a single SET.
934 It may also have CLOBBERs, USEs, or SET whose output
935 will not be used, which we ignore. */
938 single_set_2 (rtx insn, rtx pat)
940 rtx set = NULL;
941 int set_verified = 1;
942 int i;
944 if (GET_CODE (pat) == PARALLEL)
946 for (i = 0; i < XVECLEN (pat, 0); i++)
948 rtx sub = XVECEXP (pat, 0, i);
949 switch (GET_CODE (sub))
951 case USE:
952 case CLOBBER:
953 break;
955 case SET:
956 /* We can consider insns having multiple sets, where all
957 but one are dead as single set insns. In common case
958 only single set is present in the pattern so we want
959 to avoid checking for REG_UNUSED notes unless necessary.
961 When we reach set first time, we just expect this is
962 the single set we are looking for and only when more
963 sets are found in the insn, we check them. */
964 if (!set_verified)
966 if (find_reg_note (insn, REG_UNUSED, SET_DEST (set))
967 && !side_effects_p (set))
968 set = NULL;
969 else
970 set_verified = 1;
972 if (!set)
973 set = sub, set_verified = 0;
974 else if (!find_reg_note (insn, REG_UNUSED, SET_DEST (sub))
975 || side_effects_p (sub))
976 return NULL_RTX;
977 break;
979 default:
980 return NULL_RTX;
984 return set;
987 /* Given an INSN, return nonzero if it has more than one SET, else return
988 zero. */
991 multiple_sets (rtx insn)
993 int found;
994 int i;
996 /* INSN must be an insn. */
997 if (! INSN_P (insn))
998 return 0;
1000 /* Only a PARALLEL can have multiple SETs. */
1001 if (GET_CODE (PATTERN (insn)) == PARALLEL)
1003 for (i = 0, found = 0; i < XVECLEN (PATTERN (insn), 0); i++)
1004 if (GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == SET)
1006 /* If we have already found a SET, then return now. */
1007 if (found)
1008 return 1;
1009 else
1010 found = 1;
1014 /* Either zero or one SET. */
1015 return 0;
1018 /* Return nonzero if the destination of SET equals the source
1019 and there are no side effects. */
1022 set_noop_p (rtx set)
1024 rtx src = SET_SRC (set);
1025 rtx dst = SET_DEST (set);
1027 if (dst == pc_rtx && src == pc_rtx)
1028 return 1;
1030 if (MEM_P (dst) && MEM_P (src))
1031 return rtx_equal_p (dst, src) && !side_effects_p (dst);
1033 if (GET_CODE (dst) == ZERO_EXTRACT)
1034 return rtx_equal_p (XEXP (dst, 0), src)
1035 && ! BYTES_BIG_ENDIAN && XEXP (dst, 2) == const0_rtx
1036 && !side_effects_p (src);
1038 if (GET_CODE (dst) == STRICT_LOW_PART)
1039 dst = XEXP (dst, 0);
1041 if (GET_CODE (src) == SUBREG && GET_CODE (dst) == SUBREG)
1043 if (SUBREG_BYTE (src) != SUBREG_BYTE (dst))
1044 return 0;
1045 src = SUBREG_REG (src);
1046 dst = SUBREG_REG (dst);
1049 return (REG_P (src) && REG_P (dst)
1050 && REGNO (src) == REGNO (dst));
1053 /* Return nonzero if an insn consists only of SETs, each of which only sets a
1054 value to itself. */
1057 noop_move_p (rtx insn)
1059 rtx pat = PATTERN (insn);
1061 if (INSN_CODE (insn) == NOOP_MOVE_INSN_CODE)
1062 return 1;
1064 /* Insns carrying these notes are useful later on. */
1065 if (find_reg_note (insn, REG_EQUAL, NULL_RTX))
1066 return 0;
1068 /* For now treat an insn with a REG_RETVAL note as a
1069 a special insn which should not be considered a no-op. */
1070 if (find_reg_note (insn, REG_RETVAL, NULL_RTX))
1071 return 0;
1073 if (GET_CODE (pat) == SET && set_noop_p (pat))
1074 return 1;
1076 if (GET_CODE (pat) == PARALLEL)
1078 int i;
1079 /* If nothing but SETs of registers to themselves,
1080 this insn can also be deleted. */
1081 for (i = 0; i < XVECLEN (pat, 0); i++)
1083 rtx tem = XVECEXP (pat, 0, i);
1085 if (GET_CODE (tem) == USE
1086 || GET_CODE (tem) == CLOBBER)
1087 continue;
1089 if (GET_CODE (tem) != SET || ! set_noop_p (tem))
1090 return 0;
1093 return 1;
1095 return 0;
1099 /* Return the last thing that X was assigned from before *PINSN. If VALID_TO
1100 is not NULL_RTX then verify that the object is not modified up to VALID_TO.
1101 If the object was modified, if we hit a partial assignment to X, or hit a
1102 CODE_LABEL first, return X. If we found an assignment, update *PINSN to
1103 point to it. ALLOW_HWREG is set to 1 if hardware registers are allowed to
1104 be the src. */
1107 find_last_value (rtx x, rtx *pinsn, rtx valid_to, int allow_hwreg)
1109 rtx p;
1111 for (p = PREV_INSN (*pinsn); p && !LABEL_P (p);
1112 p = PREV_INSN (p))
1113 if (INSN_P (p))
1115 rtx set = single_set (p);
1116 rtx note = find_reg_note (p, REG_EQUAL, NULL_RTX);
1118 if (set && rtx_equal_p (x, SET_DEST (set)))
1120 rtx src = SET_SRC (set);
1122 if (note && GET_CODE (XEXP (note, 0)) != EXPR_LIST)
1123 src = XEXP (note, 0);
1125 if ((valid_to == NULL_RTX
1126 || ! modified_between_p (src, PREV_INSN (p), valid_to))
1127 /* Reject hard registers because we don't usually want
1128 to use them; we'd rather use a pseudo. */
1129 && (! (REG_P (src)
1130 && REGNO (src) < FIRST_PSEUDO_REGISTER) || allow_hwreg))
1132 *pinsn = p;
1133 return src;
1137 /* If set in non-simple way, we don't have a value. */
1138 if (reg_set_p (x, p))
1139 break;
1142 return x;
1145 /* Return nonzero if register in range [REGNO, ENDREGNO)
1146 appears either explicitly or implicitly in X
1147 other than being stored into.
1149 References contained within the substructure at LOC do not count.
1150 LOC may be zero, meaning don't ignore anything. */
1153 refers_to_regno_p (unsigned int regno, unsigned int endregno, rtx x,
1154 rtx *loc)
1156 int i;
1157 unsigned int x_regno;
1158 RTX_CODE code;
1159 const char *fmt;
1161 repeat:
1162 /* The contents of a REG_NONNEG note is always zero, so we must come here
1163 upon repeat in case the last REG_NOTE is a REG_NONNEG note. */
1164 if (x == 0)
1165 return 0;
1167 code = GET_CODE (x);
1169 switch (code)
1171 case REG:
1172 x_regno = REGNO (x);
1174 /* If we modifying the stack, frame, or argument pointer, it will
1175 clobber a virtual register. In fact, we could be more precise,
1176 but it isn't worth it. */
1177 if ((x_regno == STACK_POINTER_REGNUM
1178 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
1179 || x_regno == ARG_POINTER_REGNUM
1180 #endif
1181 || x_regno == FRAME_POINTER_REGNUM)
1182 && regno >= FIRST_VIRTUAL_REGISTER && regno <= LAST_VIRTUAL_REGISTER)
1183 return 1;
1185 return (endregno > x_regno
1186 && regno < x_regno + (x_regno < FIRST_PSEUDO_REGISTER
1187 ? hard_regno_nregs[x_regno][GET_MODE (x)]
1188 : 1));
1190 case SUBREG:
1191 /* If this is a SUBREG of a hard reg, we can see exactly which
1192 registers are being modified. Otherwise, handle normally. */
1193 if (REG_P (SUBREG_REG (x))
1194 && REGNO (SUBREG_REG (x)) < FIRST_PSEUDO_REGISTER)
1196 unsigned int inner_regno = subreg_regno (x);
1197 unsigned int inner_endregno
1198 = inner_regno + (inner_regno < FIRST_PSEUDO_REGISTER
1199 ? hard_regno_nregs[inner_regno][GET_MODE (x)] : 1);
1201 return endregno > inner_regno && regno < inner_endregno;
1203 break;
1205 case CLOBBER:
1206 case SET:
1207 if (&SET_DEST (x) != loc
1208 /* Note setting a SUBREG counts as referring to the REG it is in for
1209 a pseudo but not for hard registers since we can
1210 treat each word individually. */
1211 && ((GET_CODE (SET_DEST (x)) == SUBREG
1212 && loc != &SUBREG_REG (SET_DEST (x))
1213 && REG_P (SUBREG_REG (SET_DEST (x)))
1214 && REGNO (SUBREG_REG (SET_DEST (x))) >= FIRST_PSEUDO_REGISTER
1215 && refers_to_regno_p (regno, endregno,
1216 SUBREG_REG (SET_DEST (x)), loc))
1217 || (!REG_P (SET_DEST (x))
1218 && refers_to_regno_p (regno, endregno, SET_DEST (x), loc))))
1219 return 1;
1221 if (code == CLOBBER || loc == &SET_SRC (x))
1222 return 0;
1223 x = SET_SRC (x);
1224 goto repeat;
1226 default:
1227 break;
1230 /* X does not match, so try its subexpressions. */
1232 fmt = GET_RTX_FORMAT (code);
1233 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1235 if (fmt[i] == 'e' && loc != &XEXP (x, i))
1237 if (i == 0)
1239 x = XEXP (x, 0);
1240 goto repeat;
1242 else
1243 if (refers_to_regno_p (regno, endregno, XEXP (x, i), loc))
1244 return 1;
1246 else if (fmt[i] == 'E')
1248 int j;
1249 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
1250 if (loc != &XVECEXP (x, i, j)
1251 && refers_to_regno_p (regno, endregno, XVECEXP (x, i, j), loc))
1252 return 1;
1255 return 0;
1258 /* Nonzero if modifying X will affect IN. If X is a register or a SUBREG,
1259 we check if any register number in X conflicts with the relevant register
1260 numbers. If X is a constant, return 0. If X is a MEM, return 1 iff IN
1261 contains a MEM (we don't bother checking for memory addresses that can't
1262 conflict because we expect this to be a rare case. */
1265 reg_overlap_mentioned_p (rtx x, rtx in)
1267 unsigned int regno, endregno;
1269 /* If either argument is a constant, then modifying X can not
1270 affect IN. Here we look at IN, we can profitably combine
1271 CONSTANT_P (x) with the switch statement below. */
1272 if (CONSTANT_P (in))
1273 return 0;
1275 recurse:
1276 switch (GET_CODE (x))
1278 case STRICT_LOW_PART:
1279 case ZERO_EXTRACT:
1280 case SIGN_EXTRACT:
1281 /* Overly conservative. */
1282 x = XEXP (x, 0);
1283 goto recurse;
1285 case SUBREG:
1286 regno = REGNO (SUBREG_REG (x));
1287 if (regno < FIRST_PSEUDO_REGISTER)
1288 regno = subreg_regno (x);
1289 goto do_reg;
1291 case REG:
1292 regno = REGNO (x);
1293 do_reg:
1294 endregno = regno + (regno < FIRST_PSEUDO_REGISTER
1295 ? hard_regno_nregs[regno][GET_MODE (x)] : 1);
1296 return refers_to_regno_p (regno, endregno, in, (rtx*) 0);
1298 case MEM:
1300 const char *fmt;
1301 int i;
1303 if (MEM_P (in))
1304 return 1;
1306 fmt = GET_RTX_FORMAT (GET_CODE (in));
1307 for (i = GET_RTX_LENGTH (GET_CODE (in)) - 1; i >= 0; i--)
1308 if (fmt[i] == 'e' && reg_overlap_mentioned_p (x, XEXP (in, i)))
1309 return 1;
1311 return 0;
1314 case SCRATCH:
1315 case PC:
1316 case CC0:
1317 return reg_mentioned_p (x, in);
1319 case PARALLEL:
1321 int i;
1323 /* If any register in here refers to it we return true. */
1324 for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
1325 if (XEXP (XVECEXP (x, 0, i), 0) != 0
1326 && reg_overlap_mentioned_p (XEXP (XVECEXP (x, 0, i), 0), in))
1327 return 1;
1328 return 0;
1331 default:
1332 gcc_assert (CONSTANT_P (x));
1333 return 0;
1337 /* Call FUN on each register or MEM that is stored into or clobbered by X.
1338 (X would be the pattern of an insn).
1339 FUN receives two arguments:
1340 the REG, MEM, CC0 or PC being stored in or clobbered,
1341 the SET or CLOBBER rtx that does the store.
1343 If the item being stored in or clobbered is a SUBREG of a hard register,
1344 the SUBREG will be passed. */
1346 void
1347 note_stores (rtx x, void (*fun) (rtx, rtx, void *), void *data)
1349 int i;
1351 if (GET_CODE (x) == COND_EXEC)
1352 x = COND_EXEC_CODE (x);
1354 if (GET_CODE (x) == SET || GET_CODE (x) == CLOBBER)
1356 rtx dest = SET_DEST (x);
1358 while ((GET_CODE (dest) == SUBREG
1359 && (!REG_P (SUBREG_REG (dest))
1360 || REGNO (SUBREG_REG (dest)) >= FIRST_PSEUDO_REGISTER))
1361 || GET_CODE (dest) == ZERO_EXTRACT
1362 || GET_CODE (dest) == STRICT_LOW_PART)
1363 dest = XEXP (dest, 0);
1365 /* If we have a PARALLEL, SET_DEST is a list of EXPR_LIST expressions,
1366 each of whose first operand is a register. */
1367 if (GET_CODE (dest) == PARALLEL)
1369 for (i = XVECLEN (dest, 0) - 1; i >= 0; i--)
1370 if (XEXP (XVECEXP (dest, 0, i), 0) != 0)
1371 (*fun) (XEXP (XVECEXP (dest, 0, i), 0), x, data);
1373 else
1374 (*fun) (dest, x, data);
1377 else if (GET_CODE (x) == PARALLEL)
1378 for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
1379 note_stores (XVECEXP (x, 0, i), fun, data);
1382 /* Like notes_stores, but call FUN for each expression that is being
1383 referenced in PBODY, a pointer to the PATTERN of an insn. We only call
1384 FUN for each expression, not any interior subexpressions. FUN receives a
1385 pointer to the expression and the DATA passed to this function.
1387 Note that this is not quite the same test as that done in reg_referenced_p
1388 since that considers something as being referenced if it is being
1389 partially set, while we do not. */
1391 void
1392 note_uses (rtx *pbody, void (*fun) (rtx *, void *), void *data)
1394 rtx body = *pbody;
1395 int i;
1397 switch (GET_CODE (body))
1399 case COND_EXEC:
1400 (*fun) (&COND_EXEC_TEST (body), data);
1401 note_uses (&COND_EXEC_CODE (body), fun, data);
1402 return;
1404 case PARALLEL:
1405 for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
1406 note_uses (&XVECEXP (body, 0, i), fun, data);
1407 return;
1409 case USE:
1410 (*fun) (&XEXP (body, 0), data);
1411 return;
1413 case ASM_OPERANDS:
1414 for (i = ASM_OPERANDS_INPUT_LENGTH (body) - 1; i >= 0; i--)
1415 (*fun) (&ASM_OPERANDS_INPUT (body, i), data);
1416 return;
1418 case TRAP_IF:
1419 (*fun) (&TRAP_CONDITION (body), data);
1420 return;
1422 case PREFETCH:
1423 (*fun) (&XEXP (body, 0), data);
1424 return;
1426 case UNSPEC:
1427 case UNSPEC_VOLATILE:
1428 for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
1429 (*fun) (&XVECEXP (body, 0, i), data);
1430 return;
1432 case CLOBBER:
1433 if (MEM_P (XEXP (body, 0)))
1434 (*fun) (&XEXP (XEXP (body, 0), 0), data);
1435 return;
1437 case SET:
1439 rtx dest = SET_DEST (body);
1441 /* For sets we replace everything in source plus registers in memory
1442 expression in store and operands of a ZERO_EXTRACT. */
1443 (*fun) (&SET_SRC (body), data);
1445 if (GET_CODE (dest) == ZERO_EXTRACT)
1447 (*fun) (&XEXP (dest, 1), data);
1448 (*fun) (&XEXP (dest, 2), data);
1451 while (GET_CODE (dest) == SUBREG || GET_CODE (dest) == STRICT_LOW_PART)
1452 dest = XEXP (dest, 0);
1454 if (MEM_P (dest))
1455 (*fun) (&XEXP (dest, 0), data);
1457 return;
1459 default:
1460 /* All the other possibilities never store. */
1461 (*fun) (pbody, data);
1462 return;
1466 /* Return nonzero if X's old contents don't survive after INSN.
1467 This will be true if X is (cc0) or if X is a register and
1468 X dies in INSN or because INSN entirely sets X.
1470 "Entirely set" means set directly and not through a SUBREG, or
1471 ZERO_EXTRACT, so no trace of the old contents remains.
1472 Likewise, REG_INC does not count.
1474 REG may be a hard or pseudo reg. Renumbering is not taken into account,
1475 but for this use that makes no difference, since regs don't overlap
1476 during their lifetimes. Therefore, this function may be used
1477 at any time after deaths have been computed (in flow.c).
1479 If REG is a hard reg that occupies multiple machine registers, this
1480 function will only return 1 if each of those registers will be replaced
1481 by INSN. */
1484 dead_or_set_p (rtx insn, rtx x)
1486 unsigned int regno, last_regno;
1487 unsigned int i;
1489 /* Can't use cc0_rtx below since this file is used by genattrtab.c. */
1490 if (GET_CODE (x) == CC0)
1491 return 1;
1493 gcc_assert (REG_P (x));
1495 regno = REGNO (x);
1496 last_regno = (regno >= FIRST_PSEUDO_REGISTER ? regno
1497 : regno + hard_regno_nregs[regno][GET_MODE (x)] - 1);
1499 for (i = regno; i <= last_regno; i++)
1500 if (! dead_or_set_regno_p (insn, i))
1501 return 0;
1503 return 1;
1506 /* Return TRUE iff DEST is a register or subreg of a register and
1507 doesn't change the number of words of the inner register, and any
1508 part of the register is TEST_REGNO. */
1510 static bool
1511 covers_regno_no_parallel_p (rtx dest, unsigned int test_regno)
1513 unsigned int regno, endregno;
1515 if (GET_CODE (dest) == SUBREG
1516 && (((GET_MODE_SIZE (GET_MODE (dest))
1517 + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
1518 == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest)))
1519 + UNITS_PER_WORD - 1) / UNITS_PER_WORD)))
1520 dest = SUBREG_REG (dest);
1522 if (!REG_P (dest))
1523 return false;
1525 regno = REGNO (dest);
1526 endregno = (regno >= FIRST_PSEUDO_REGISTER ? regno + 1
1527 : regno + hard_regno_nregs[regno][GET_MODE (dest)]);
1528 return (test_regno >= regno && test_regno < endregno);
1531 /* Like covers_regno_no_parallel_p, but also handles PARALLELs where
1532 any member matches the covers_regno_no_parallel_p criteria. */
1534 static bool
1535 covers_regno_p (rtx dest, unsigned int test_regno)
1537 if (GET_CODE (dest) == PARALLEL)
1539 /* Some targets place small structures in registers for return
1540 values of functions, and those registers are wrapped in
1541 PARALLELs that we may see as the destination of a SET. */
1542 int i;
1544 for (i = XVECLEN (dest, 0) - 1; i >= 0; i--)
1546 rtx inner = XEXP (XVECEXP (dest, 0, i), 0);
1547 if (inner != NULL_RTX
1548 && covers_regno_no_parallel_p (inner, test_regno))
1549 return true;
1552 return false;
1554 else
1555 return covers_regno_no_parallel_p (dest, test_regno);
1558 /* Utility function for dead_or_set_p to check an individual register. Also
1559 called from flow.c. */
1562 dead_or_set_regno_p (rtx insn, unsigned int test_regno)
1564 rtx pattern;
1566 /* See if there is a death note for something that includes TEST_REGNO. */
1567 if (find_regno_note (insn, REG_DEAD, test_regno))
1568 return 1;
1570 if (CALL_P (insn)
1571 && find_regno_fusage (insn, CLOBBER, test_regno))
1572 return 1;
1574 pattern = PATTERN (insn);
1576 if (GET_CODE (pattern) == COND_EXEC)
1577 pattern = COND_EXEC_CODE (pattern);
1579 if (GET_CODE (pattern) == SET)
1580 return covers_regno_p (SET_DEST (pattern), test_regno);
1581 else if (GET_CODE (pattern) == PARALLEL)
1583 int i;
1585 for (i = XVECLEN (pattern, 0) - 1; i >= 0; i--)
1587 rtx body = XVECEXP (pattern, 0, i);
1589 if (GET_CODE (body) == COND_EXEC)
1590 body = COND_EXEC_CODE (body);
1592 if ((GET_CODE (body) == SET || GET_CODE (body) == CLOBBER)
1593 && covers_regno_p (SET_DEST (body), test_regno))
1594 return 1;
1598 return 0;
1601 /* Return the reg-note of kind KIND in insn INSN, if there is one.
1602 If DATUM is nonzero, look for one whose datum is DATUM. */
1605 find_reg_note (rtx insn, enum reg_note kind, rtx datum)
1607 rtx link;
1609 /* Ignore anything that is not an INSN, JUMP_INSN or CALL_INSN. */
1610 if (! INSN_P (insn))
1611 return 0;
1612 if (datum == 0)
1614 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1615 if (REG_NOTE_KIND (link) == kind)
1616 return link;
1617 return 0;
1620 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1621 if (REG_NOTE_KIND (link) == kind && datum == XEXP (link, 0))
1622 return link;
1623 return 0;
1626 /* Return the reg-note of kind KIND in insn INSN which applies to register
1627 number REGNO, if any. Return 0 if there is no such reg-note. Note that
1628 the REGNO of this NOTE need not be REGNO if REGNO is a hard register;
1629 it might be the case that the note overlaps REGNO. */
1632 find_regno_note (rtx insn, enum reg_note kind, unsigned int regno)
1634 rtx link;
1636 /* Ignore anything that is not an INSN, JUMP_INSN or CALL_INSN. */
1637 if (! INSN_P (insn))
1638 return 0;
1640 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1641 if (REG_NOTE_KIND (link) == kind
1642 /* Verify that it is a register, so that scratch and MEM won't cause a
1643 problem here. */
1644 && REG_P (XEXP (link, 0))
1645 && REGNO (XEXP (link, 0)) <= regno
1646 && ((REGNO (XEXP (link, 0))
1647 + (REGNO (XEXP (link, 0)) >= FIRST_PSEUDO_REGISTER ? 1
1648 : hard_regno_nregs[REGNO (XEXP (link, 0))]
1649 [GET_MODE (XEXP (link, 0))]))
1650 > regno))
1651 return link;
1652 return 0;
1655 /* Return a REG_EQUIV or REG_EQUAL note if insn has only a single set and
1656 has such a note. */
1659 find_reg_equal_equiv_note (rtx insn)
1661 rtx link;
1663 if (!INSN_P (insn))
1664 return 0;
1665 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1666 if (REG_NOTE_KIND (link) == REG_EQUAL
1667 || REG_NOTE_KIND (link) == REG_EQUIV)
1669 if (single_set (insn) == 0)
1670 return 0;
1671 return link;
1673 return NULL;
1676 /* Return true if DATUM, or any overlap of DATUM, of kind CODE is found
1677 in the CALL_INSN_FUNCTION_USAGE information of INSN. */
1680 find_reg_fusage (rtx insn, enum rtx_code code, rtx datum)
1682 /* If it's not a CALL_INSN, it can't possibly have a
1683 CALL_INSN_FUNCTION_USAGE field, so don't bother checking. */
1684 if (!CALL_P (insn))
1685 return 0;
1687 gcc_assert (datum);
1689 if (!REG_P (datum))
1691 rtx link;
1693 for (link = CALL_INSN_FUNCTION_USAGE (insn);
1694 link;
1695 link = XEXP (link, 1))
1696 if (GET_CODE (XEXP (link, 0)) == code
1697 && rtx_equal_p (datum, XEXP (XEXP (link, 0), 0)))
1698 return 1;
1700 else
1702 unsigned int regno = REGNO (datum);
1704 /* CALL_INSN_FUNCTION_USAGE information cannot contain references
1705 to pseudo registers, so don't bother checking. */
1707 if (regno < FIRST_PSEUDO_REGISTER)
1709 unsigned int end_regno
1710 = regno + hard_regno_nregs[regno][GET_MODE (datum)];
1711 unsigned int i;
1713 for (i = regno; i < end_regno; i++)
1714 if (find_regno_fusage (insn, code, i))
1715 return 1;
1719 return 0;
1722 /* Return true if REGNO, or any overlap of REGNO, of kind CODE is found
1723 in the CALL_INSN_FUNCTION_USAGE information of INSN. */
1726 find_regno_fusage (rtx insn, enum rtx_code code, unsigned int regno)
1728 rtx link;
1730 /* CALL_INSN_FUNCTION_USAGE information cannot contain references
1731 to pseudo registers, so don't bother checking. */
1733 if (regno >= FIRST_PSEUDO_REGISTER
1734 || !CALL_P (insn) )
1735 return 0;
1737 for (link = CALL_INSN_FUNCTION_USAGE (insn); link; link = XEXP (link, 1))
1739 unsigned int regnote;
1740 rtx op, reg;
1742 if (GET_CODE (op = XEXP (link, 0)) == code
1743 && REG_P (reg = XEXP (op, 0))
1744 && (regnote = REGNO (reg)) <= regno
1745 && regnote + hard_regno_nregs[regnote][GET_MODE (reg)] > regno)
1746 return 1;
1749 return 0;
1752 /* Return true if INSN is a call to a pure function. */
1755 pure_call_p (rtx insn)
1757 rtx link;
1759 if (!CALL_P (insn) || ! CONST_OR_PURE_CALL_P (insn))
1760 return 0;
1762 /* Look for the note that differentiates const and pure functions. */
1763 for (link = CALL_INSN_FUNCTION_USAGE (insn); link; link = XEXP (link, 1))
1765 rtx u, m;
1767 if (GET_CODE (u = XEXP (link, 0)) == USE
1768 && MEM_P (m = XEXP (u, 0)) && GET_MODE (m) == BLKmode
1769 && GET_CODE (XEXP (m, 0)) == SCRATCH)
1770 return 1;
1773 return 0;
1776 /* Remove register note NOTE from the REG_NOTES of INSN. */
1778 void
1779 remove_note (rtx insn, rtx note)
1781 rtx link;
1783 if (note == NULL_RTX)
1784 return;
1786 if (REG_NOTES (insn) == note)
1788 REG_NOTES (insn) = XEXP (note, 1);
1789 return;
1792 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1793 if (XEXP (link, 1) == note)
1795 XEXP (link, 1) = XEXP (note, 1);
1796 return;
1799 gcc_unreachable ();
1802 /* Search LISTP (an EXPR_LIST) for an entry whose first operand is NODE and
1803 return 1 if it is found. A simple equality test is used to determine if
1804 NODE matches. */
1807 in_expr_list_p (rtx listp, rtx node)
1809 rtx x;
1811 for (x = listp; x; x = XEXP (x, 1))
1812 if (node == XEXP (x, 0))
1813 return 1;
1815 return 0;
1818 /* Search LISTP (an EXPR_LIST) for an entry whose first operand is NODE and
1819 remove that entry from the list if it is found.
1821 A simple equality test is used to determine if NODE matches. */
1823 void
1824 remove_node_from_expr_list (rtx node, rtx *listp)
1826 rtx temp = *listp;
1827 rtx prev = NULL_RTX;
1829 while (temp)
1831 if (node == XEXP (temp, 0))
1833 /* Splice the node out of the list. */
1834 if (prev)
1835 XEXP (prev, 1) = XEXP (temp, 1);
1836 else
1837 *listp = XEXP (temp, 1);
1839 return;
1842 prev = temp;
1843 temp = XEXP (temp, 1);
1847 /* Nonzero if X contains any volatile instructions. These are instructions
1848 which may cause unpredictable machine state instructions, and thus no
1849 instructions should be moved or combined across them. This includes
1850 only volatile asms and UNSPEC_VOLATILE instructions. */
1853 volatile_insn_p (rtx x)
1855 RTX_CODE code;
1857 code = GET_CODE (x);
1858 switch (code)
1860 case LABEL_REF:
1861 case SYMBOL_REF:
1862 case CONST_INT:
1863 case CONST:
1864 case CONST_DOUBLE:
1865 case CONST_VECTOR:
1866 case CC0:
1867 case PC:
1868 case REG:
1869 case SCRATCH:
1870 case CLOBBER:
1871 case ADDR_VEC:
1872 case ADDR_DIFF_VEC:
1873 case CALL:
1874 case MEM:
1875 return 0;
1877 case UNSPEC_VOLATILE:
1878 /* case TRAP_IF: This isn't clear yet. */
1879 return 1;
1881 case ASM_INPUT:
1882 case ASM_OPERANDS:
1883 if (MEM_VOLATILE_P (x))
1884 return 1;
1886 default:
1887 break;
1890 /* Recursively scan the operands of this expression. */
1893 const char *fmt = GET_RTX_FORMAT (code);
1894 int i;
1896 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1898 if (fmt[i] == 'e')
1900 if (volatile_insn_p (XEXP (x, i)))
1901 return 1;
1903 else if (fmt[i] == 'E')
1905 int j;
1906 for (j = 0; j < XVECLEN (x, i); j++)
1907 if (volatile_insn_p (XVECEXP (x, i, j)))
1908 return 1;
1912 return 0;
1915 /* Nonzero if X contains any volatile memory references
1916 UNSPEC_VOLATILE operations or volatile ASM_OPERANDS expressions. */
1919 volatile_refs_p (rtx x)
1921 RTX_CODE code;
1923 code = GET_CODE (x);
1924 switch (code)
1926 case LABEL_REF:
1927 case SYMBOL_REF:
1928 case CONST_INT:
1929 case CONST:
1930 case CONST_DOUBLE:
1931 case CONST_VECTOR:
1932 case CC0:
1933 case PC:
1934 case REG:
1935 case SCRATCH:
1936 case CLOBBER:
1937 case ADDR_VEC:
1938 case ADDR_DIFF_VEC:
1939 return 0;
1941 case UNSPEC_VOLATILE:
1942 return 1;
1944 case MEM:
1945 case ASM_INPUT:
1946 case ASM_OPERANDS:
1947 if (MEM_VOLATILE_P (x))
1948 return 1;
1950 default:
1951 break;
1954 /* Recursively scan the operands of this expression. */
1957 const char *fmt = GET_RTX_FORMAT (code);
1958 int i;
1960 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1962 if (fmt[i] == 'e')
1964 if (volatile_refs_p (XEXP (x, i)))
1965 return 1;
1967 else if (fmt[i] == 'E')
1969 int j;
1970 for (j = 0; j < XVECLEN (x, i); j++)
1971 if (volatile_refs_p (XVECEXP (x, i, j)))
1972 return 1;
1976 return 0;
1979 /* Similar to above, except that it also rejects register pre- and post-
1980 incrementing. */
1983 side_effects_p (rtx x)
1985 RTX_CODE code;
1987 code = GET_CODE (x);
1988 switch (code)
1990 case LABEL_REF:
1991 case SYMBOL_REF:
1992 case CONST_INT:
1993 case CONST:
1994 case CONST_DOUBLE:
1995 case CONST_VECTOR:
1996 case CC0:
1997 case PC:
1998 case REG:
1999 case SCRATCH:
2000 case ADDR_VEC:
2001 case ADDR_DIFF_VEC:
2002 return 0;
2004 case CLOBBER:
2005 /* Reject CLOBBER with a non-VOID mode. These are made by combine.c
2006 when some combination can't be done. If we see one, don't think
2007 that we can simplify the expression. */
2008 return (GET_MODE (x) != VOIDmode);
2010 case PRE_INC:
2011 case PRE_DEC:
2012 case POST_INC:
2013 case POST_DEC:
2014 case PRE_MODIFY:
2015 case POST_MODIFY:
2016 case CALL:
2017 case UNSPEC_VOLATILE:
2018 /* case TRAP_IF: This isn't clear yet. */
2019 return 1;
2021 case MEM:
2022 case ASM_INPUT:
2023 case ASM_OPERANDS:
2024 if (MEM_VOLATILE_P (x))
2025 return 1;
2027 default:
2028 break;
2031 /* Recursively scan the operands of this expression. */
2034 const char *fmt = GET_RTX_FORMAT (code);
2035 int i;
2037 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2039 if (fmt[i] == 'e')
2041 if (side_effects_p (XEXP (x, i)))
2042 return 1;
2044 else if (fmt[i] == 'E')
2046 int j;
2047 for (j = 0; j < XVECLEN (x, i); j++)
2048 if (side_effects_p (XVECEXP (x, i, j)))
2049 return 1;
2053 return 0;
2056 /* Return nonzero if evaluating rtx X might cause a trap. */
2059 may_trap_p (rtx x)
2061 int i;
2062 enum rtx_code code;
2063 const char *fmt;
2065 if (x == 0)
2066 return 0;
2067 code = GET_CODE (x);
2068 switch (code)
2070 /* Handle these cases quickly. */
2071 case CONST_INT:
2072 case CONST_DOUBLE:
2073 case CONST_VECTOR:
2074 case SYMBOL_REF:
2075 case LABEL_REF:
2076 case CONST:
2077 case PC:
2078 case CC0:
2079 case REG:
2080 case SCRATCH:
2081 return 0;
2083 case ASM_INPUT:
2084 case UNSPEC_VOLATILE:
2085 case TRAP_IF:
2086 return 1;
2088 case ASM_OPERANDS:
2089 return MEM_VOLATILE_P (x);
2091 /* Memory ref can trap unless it's a static var or a stack slot. */
2092 case MEM:
2093 if (MEM_NOTRAP_P (x))
2094 return 0;
2095 return rtx_addr_can_trap_p (XEXP (x, 0));
2097 /* Division by a non-constant might trap. */
2098 case DIV:
2099 case MOD:
2100 case UDIV:
2101 case UMOD:
2102 if (HONOR_SNANS (GET_MODE (x)))
2103 return 1;
2104 if (! CONSTANT_P (XEXP (x, 1))
2105 || (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT
2106 && flag_trapping_math))
2107 return 1;
2108 if (XEXP (x, 1) == const0_rtx)
2109 return 1;
2110 break;
2112 case EXPR_LIST:
2113 /* An EXPR_LIST is used to represent a function call. This
2114 certainly may trap. */
2115 return 1;
2117 case GE:
2118 case GT:
2119 case LE:
2120 case LT:
2121 case LTGT:
2122 case COMPARE:
2123 /* Some floating point comparisons may trap. */
2124 if (!flag_trapping_math)
2125 break;
2126 /* ??? There is no machine independent way to check for tests that trap
2127 when COMPARE is used, though many targets do make this distinction.
2128 For instance, sparc uses CCFPE for compares which generate exceptions
2129 and CCFP for compares which do not generate exceptions. */
2130 if (HONOR_NANS (GET_MODE (x)))
2131 return 1;
2132 /* But often the compare has some CC mode, so check operand
2133 modes as well. */
2134 if (HONOR_NANS (GET_MODE (XEXP (x, 0)))
2135 || HONOR_NANS (GET_MODE (XEXP (x, 1))))
2136 return 1;
2137 break;
2139 case EQ:
2140 case NE:
2141 if (HONOR_SNANS (GET_MODE (x)))
2142 return 1;
2143 /* Often comparison is CC mode, so check operand modes. */
2144 if (HONOR_SNANS (GET_MODE (XEXP (x, 0)))
2145 || HONOR_SNANS (GET_MODE (XEXP (x, 1))))
2146 return 1;
2147 break;
2149 case FIX:
2150 /* Conversion of floating point might trap. */
2151 if (flag_trapping_math && HONOR_NANS (GET_MODE (XEXP (x, 0))))
2152 return 1;
2153 break;
2155 case NEG:
2156 case ABS:
2157 /* These operations don't trap even with floating point. */
2158 break;
2160 default:
2161 /* Any floating arithmetic may trap. */
2162 if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT
2163 && flag_trapping_math)
2164 return 1;
2167 fmt = GET_RTX_FORMAT (code);
2168 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2170 if (fmt[i] == 'e')
2172 if (may_trap_p (XEXP (x, i)))
2173 return 1;
2175 else if (fmt[i] == 'E')
2177 int j;
2178 for (j = 0; j < XVECLEN (x, i); j++)
2179 if (may_trap_p (XVECEXP (x, i, j)))
2180 return 1;
2183 return 0;
2186 /* Return nonzero if X contains a comparison that is not either EQ or NE,
2187 i.e., an inequality. */
2190 inequality_comparisons_p (rtx x)
2192 const char *fmt;
2193 int len, i;
2194 enum rtx_code code = GET_CODE (x);
2196 switch (code)
2198 case REG:
2199 case SCRATCH:
2200 case PC:
2201 case CC0:
2202 case CONST_INT:
2203 case CONST_DOUBLE:
2204 case CONST_VECTOR:
2205 case CONST:
2206 case LABEL_REF:
2207 case SYMBOL_REF:
2208 return 0;
2210 case LT:
2211 case LTU:
2212 case GT:
2213 case GTU:
2214 case LE:
2215 case LEU:
2216 case GE:
2217 case GEU:
2218 return 1;
2220 default:
2221 break;
2224 len = GET_RTX_LENGTH (code);
2225 fmt = GET_RTX_FORMAT (code);
2227 for (i = 0; i < len; i++)
2229 if (fmt[i] == 'e')
2231 if (inequality_comparisons_p (XEXP (x, i)))
2232 return 1;
2234 else if (fmt[i] == 'E')
2236 int j;
2237 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
2238 if (inequality_comparisons_p (XVECEXP (x, i, j)))
2239 return 1;
2243 return 0;
2246 /* Replace any occurrence of FROM in X with TO. The function does
2247 not enter into CONST_DOUBLE for the replace.
2249 Note that copying is not done so X must not be shared unless all copies
2250 are to be modified. */
2253 replace_rtx (rtx x, rtx from, rtx to)
2255 int i, j;
2256 const char *fmt;
2258 /* The following prevents loops occurrence when we change MEM in
2259 CONST_DOUBLE onto the same CONST_DOUBLE. */
2260 if (x != 0 && GET_CODE (x) == CONST_DOUBLE)
2261 return x;
2263 if (x == from)
2264 return to;
2266 /* Allow this function to make replacements in EXPR_LISTs. */
2267 if (x == 0)
2268 return 0;
2270 if (GET_CODE (x) == SUBREG)
2272 rtx new = replace_rtx (SUBREG_REG (x), from, to);
2274 if (GET_CODE (new) == CONST_INT)
2276 x = simplify_subreg (GET_MODE (x), new,
2277 GET_MODE (SUBREG_REG (x)),
2278 SUBREG_BYTE (x));
2279 gcc_assert (x);
2281 else
2282 SUBREG_REG (x) = new;
2284 return x;
2286 else if (GET_CODE (x) == ZERO_EXTEND)
2288 rtx new = replace_rtx (XEXP (x, 0), from, to);
2290 if (GET_CODE (new) == CONST_INT)
2292 x = simplify_unary_operation (ZERO_EXTEND, GET_MODE (x),
2293 new, GET_MODE (XEXP (x, 0)));
2294 gcc_assert (x);
2296 else
2297 XEXP (x, 0) = new;
2299 return x;
2302 fmt = GET_RTX_FORMAT (GET_CODE (x));
2303 for (i = GET_RTX_LENGTH (GET_CODE (x)) - 1; i >= 0; i--)
2305 if (fmt[i] == 'e')
2306 XEXP (x, i) = replace_rtx (XEXP (x, i), from, to);
2307 else if (fmt[i] == 'E')
2308 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
2309 XVECEXP (x, i, j) = replace_rtx (XVECEXP (x, i, j), from, to);
2312 return x;
2315 /* Throughout the rtx X, replace many registers according to REG_MAP.
2316 Return the replacement for X (which may be X with altered contents).
2317 REG_MAP[R] is the replacement for register R, or 0 for don't replace.
2318 NREGS is the length of REG_MAP; regs >= NREGS are not mapped.
2320 We only support REG_MAP entries of REG or SUBREG. Also, hard registers
2321 should not be mapped to pseudos or vice versa since validate_change
2322 is not called.
2324 If REPLACE_DEST is 1, replacements are also done in destinations;
2325 otherwise, only sources are replaced. */
2328 replace_regs (rtx x, rtx *reg_map, unsigned int nregs, int replace_dest)
2330 enum rtx_code code;
2331 int i;
2332 const char *fmt;
2334 if (x == 0)
2335 return x;
2337 code = GET_CODE (x);
2338 switch (code)
2340 case SCRATCH:
2341 case PC:
2342 case CC0:
2343 case CONST_INT:
2344 case CONST_DOUBLE:
2345 case CONST_VECTOR:
2346 case CONST:
2347 case SYMBOL_REF:
2348 case LABEL_REF:
2349 return x;
2351 case REG:
2352 /* Verify that the register has an entry before trying to access it. */
2353 if (REGNO (x) < nregs && reg_map[REGNO (x)] != 0)
2355 /* SUBREGs can't be shared. Always return a copy to ensure that if
2356 this replacement occurs more than once then each instance will
2357 get distinct rtx. */
2358 if (GET_CODE (reg_map[REGNO (x)]) == SUBREG)
2359 return copy_rtx (reg_map[REGNO (x)]);
2360 return reg_map[REGNO (x)];
2362 return x;
2364 case SUBREG:
2365 /* Prevent making nested SUBREGs. */
2366 if (REG_P (SUBREG_REG (x)) && REGNO (SUBREG_REG (x)) < nregs
2367 && reg_map[REGNO (SUBREG_REG (x))] != 0
2368 && GET_CODE (reg_map[REGNO (SUBREG_REG (x))]) == SUBREG)
2370 rtx map_val = reg_map[REGNO (SUBREG_REG (x))];
2371 return simplify_gen_subreg (GET_MODE (x), map_val,
2372 GET_MODE (SUBREG_REG (x)),
2373 SUBREG_BYTE (x));
2375 break;
2377 case SET:
2378 if (replace_dest)
2379 SET_DEST (x) = replace_regs (SET_DEST (x), reg_map, nregs, 0);
2381 else if (MEM_P (SET_DEST (x))
2382 || GET_CODE (SET_DEST (x)) == STRICT_LOW_PART)
2383 /* Even if we are not to replace destinations, replace register if it
2384 is CONTAINED in destination (destination is memory or
2385 STRICT_LOW_PART). */
2386 XEXP (SET_DEST (x), 0) = replace_regs (XEXP (SET_DEST (x), 0),
2387 reg_map, nregs, 0);
2388 else if (GET_CODE (SET_DEST (x)) == ZERO_EXTRACT)
2389 /* Similarly, for ZERO_EXTRACT we replace all operands. */
2390 break;
2392 SET_SRC (x) = replace_regs (SET_SRC (x), reg_map, nregs, 0);
2393 return x;
2395 default:
2396 break;
2399 fmt = GET_RTX_FORMAT (code);
2400 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2402 if (fmt[i] == 'e')
2403 XEXP (x, i) = replace_regs (XEXP (x, i), reg_map, nregs, replace_dest);
2404 else if (fmt[i] == 'E')
2406 int j;
2407 for (j = 0; j < XVECLEN (x, i); j++)
2408 XVECEXP (x, i, j) = replace_regs (XVECEXP (x, i, j), reg_map,
2409 nregs, replace_dest);
2412 return x;
2415 /* Replace occurrences of the old label in *X with the new one.
2416 DATA is a REPLACE_LABEL_DATA containing the old and new labels. */
2419 replace_label (rtx *x, void *data)
2421 rtx l = *x;
2422 rtx old_label = ((replace_label_data *) data)->r1;
2423 rtx new_label = ((replace_label_data *) data)->r2;
2424 bool update_label_nuses = ((replace_label_data *) data)->update_label_nuses;
2426 if (l == NULL_RTX)
2427 return 0;
2429 if (GET_CODE (l) == SYMBOL_REF
2430 && CONSTANT_POOL_ADDRESS_P (l))
2432 rtx c = get_pool_constant (l);
2433 if (rtx_referenced_p (old_label, c))
2435 rtx new_c, new_l;
2436 replace_label_data *d = (replace_label_data *) data;
2438 /* Create a copy of constant C; replace the label inside
2439 but do not update LABEL_NUSES because uses in constant pool
2440 are not counted. */
2441 new_c = copy_rtx (c);
2442 d->update_label_nuses = false;
2443 for_each_rtx (&new_c, replace_label, data);
2444 d->update_label_nuses = update_label_nuses;
2446 /* Add the new constant NEW_C to constant pool and replace
2447 the old reference to constant by new reference. */
2448 new_l = XEXP (force_const_mem (get_pool_mode (l), new_c), 0);
2449 *x = replace_rtx (l, l, new_l);
2451 return 0;
2454 /* If this is a JUMP_INSN, then we also need to fix the JUMP_LABEL
2455 field. This is not handled by for_each_rtx because it doesn't
2456 handle unprinted ('0') fields. */
2457 if (JUMP_P (l) && JUMP_LABEL (l) == old_label)
2458 JUMP_LABEL (l) = new_label;
2460 if ((GET_CODE (l) == LABEL_REF
2461 || GET_CODE (l) == INSN_LIST)
2462 && XEXP (l, 0) == old_label)
2464 XEXP (l, 0) = new_label;
2465 if (update_label_nuses)
2467 ++LABEL_NUSES (new_label);
2468 --LABEL_NUSES (old_label);
2470 return 0;
2473 return 0;
2476 /* When *BODY is equal to X or X is directly referenced by *BODY
2477 return nonzero, thus FOR_EACH_RTX stops traversing and returns nonzero
2478 too, otherwise FOR_EACH_RTX continues traversing *BODY. */
2480 static int
2481 rtx_referenced_p_1 (rtx *body, void *x)
2483 rtx y = (rtx) x;
2485 if (*body == NULL_RTX)
2486 return y == NULL_RTX;
2488 /* Return true if a label_ref *BODY refers to label Y. */
2489 if (GET_CODE (*body) == LABEL_REF && LABEL_P (y))
2490 return XEXP (*body, 0) == y;
2492 /* If *BODY is a reference to pool constant traverse the constant. */
2493 if (GET_CODE (*body) == SYMBOL_REF
2494 && CONSTANT_POOL_ADDRESS_P (*body))
2495 return rtx_referenced_p (y, get_pool_constant (*body));
2497 /* By default, compare the RTL expressions. */
2498 return rtx_equal_p (*body, y);
2501 /* Return true if X is referenced in BODY. */
2504 rtx_referenced_p (rtx x, rtx body)
2506 return for_each_rtx (&body, rtx_referenced_p_1, x);
2509 /* If INSN is a tablejump return true and store the label (before jump table) to
2510 *LABELP and the jump table to *TABLEP. LABELP and TABLEP may be NULL. */
2512 bool
2513 tablejump_p (rtx insn, rtx *labelp, rtx *tablep)
2515 rtx label, table;
2517 if (JUMP_P (insn)
2518 && (label = JUMP_LABEL (insn)) != NULL_RTX
2519 && (table = next_active_insn (label)) != NULL_RTX
2520 && JUMP_P (table)
2521 && (GET_CODE (PATTERN (table)) == ADDR_VEC
2522 || GET_CODE (PATTERN (table)) == ADDR_DIFF_VEC))
2524 if (labelp)
2525 *labelp = label;
2526 if (tablep)
2527 *tablep = table;
2528 return true;
2530 return false;
2533 /* A subroutine of computed_jump_p, return 1 if X contains a REG or MEM or
2534 constant that is not in the constant pool and not in the condition
2535 of an IF_THEN_ELSE. */
2537 static int
2538 computed_jump_p_1 (rtx x)
2540 enum rtx_code code = GET_CODE (x);
2541 int i, j;
2542 const char *fmt;
2544 switch (code)
2546 case LABEL_REF:
2547 case PC:
2548 return 0;
2550 case CONST:
2551 case CONST_INT:
2552 case CONST_DOUBLE:
2553 case CONST_VECTOR:
2554 case SYMBOL_REF:
2555 case REG:
2556 return 1;
2558 case MEM:
2559 return ! (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
2560 && CONSTANT_POOL_ADDRESS_P (XEXP (x, 0)));
2562 case IF_THEN_ELSE:
2563 return (computed_jump_p_1 (XEXP (x, 1))
2564 || computed_jump_p_1 (XEXP (x, 2)));
2566 default:
2567 break;
2570 fmt = GET_RTX_FORMAT (code);
2571 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2573 if (fmt[i] == 'e'
2574 && computed_jump_p_1 (XEXP (x, i)))
2575 return 1;
2577 else if (fmt[i] == 'E')
2578 for (j = 0; j < XVECLEN (x, i); j++)
2579 if (computed_jump_p_1 (XVECEXP (x, i, j)))
2580 return 1;
2583 return 0;
2586 /* Return nonzero if INSN is an indirect jump (aka computed jump).
2588 Tablejumps and casesi insns are not considered indirect jumps;
2589 we can recognize them by a (use (label_ref)). */
2592 computed_jump_p (rtx insn)
2594 int i;
2595 if (JUMP_P (insn))
2597 rtx pat = PATTERN (insn);
2599 if (find_reg_note (insn, REG_LABEL, NULL_RTX))
2600 return 0;
2601 else if (GET_CODE (pat) == PARALLEL)
2603 int len = XVECLEN (pat, 0);
2604 int has_use_labelref = 0;
2606 for (i = len - 1; i >= 0; i--)
2607 if (GET_CODE (XVECEXP (pat, 0, i)) == USE
2608 && (GET_CODE (XEXP (XVECEXP (pat, 0, i), 0))
2609 == LABEL_REF))
2610 has_use_labelref = 1;
2612 if (! has_use_labelref)
2613 for (i = len - 1; i >= 0; i--)
2614 if (GET_CODE (XVECEXP (pat, 0, i)) == SET
2615 && SET_DEST (XVECEXP (pat, 0, i)) == pc_rtx
2616 && computed_jump_p_1 (SET_SRC (XVECEXP (pat, 0, i))))
2617 return 1;
2619 else if (GET_CODE (pat) == SET
2620 && SET_DEST (pat) == pc_rtx
2621 && computed_jump_p_1 (SET_SRC (pat)))
2622 return 1;
2624 return 0;
2627 /* Traverse X via depth-first search, calling F for each
2628 sub-expression (including X itself). F is also passed the DATA.
2629 If F returns -1, do not traverse sub-expressions, but continue
2630 traversing the rest of the tree. If F ever returns any other
2631 nonzero value, stop the traversal, and return the value returned
2632 by F. Otherwise, return 0. This function does not traverse inside
2633 tree structure that contains RTX_EXPRs, or into sub-expressions
2634 whose format code is `0' since it is not known whether or not those
2635 codes are actually RTL.
2637 This routine is very general, and could (should?) be used to
2638 implement many of the other routines in this file. */
2641 for_each_rtx (rtx *x, rtx_function f, void *data)
2643 int result;
2644 int length;
2645 const char *format;
2646 int i;
2648 /* Call F on X. */
2649 result = (*f) (x, data);
2650 if (result == -1)
2651 /* Do not traverse sub-expressions. */
2652 return 0;
2653 else if (result != 0)
2654 /* Stop the traversal. */
2655 return result;
2657 if (*x == NULL_RTX)
2658 /* There are no sub-expressions. */
2659 return 0;
2661 length = GET_RTX_LENGTH (GET_CODE (*x));
2662 format = GET_RTX_FORMAT (GET_CODE (*x));
2664 for (i = 0; i < length; ++i)
2666 switch (format[i])
2668 case 'e':
2669 result = for_each_rtx (&XEXP (*x, i), f, data);
2670 if (result != 0)
2671 return result;
2672 break;
2674 case 'V':
2675 case 'E':
2676 if (XVEC (*x, i) != 0)
2678 int j;
2679 for (j = 0; j < XVECLEN (*x, i); ++j)
2681 result = for_each_rtx (&XVECEXP (*x, i, j), f, data);
2682 if (result != 0)
2683 return result;
2686 break;
2688 default:
2689 /* Nothing to do. */
2690 break;
2695 return 0;
2698 /* Searches X for any reference to REGNO, returning the rtx of the
2699 reference found if any. Otherwise, returns NULL_RTX. */
2702 regno_use_in (unsigned int regno, rtx x)
2704 const char *fmt;
2705 int i, j;
2706 rtx tem;
2708 if (REG_P (x) && REGNO (x) == regno)
2709 return x;
2711 fmt = GET_RTX_FORMAT (GET_CODE (x));
2712 for (i = GET_RTX_LENGTH (GET_CODE (x)) - 1; i >= 0; i--)
2714 if (fmt[i] == 'e')
2716 if ((tem = regno_use_in (regno, XEXP (x, i))))
2717 return tem;
2719 else if (fmt[i] == 'E')
2720 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
2721 if ((tem = regno_use_in (regno , XVECEXP (x, i, j))))
2722 return tem;
2725 return NULL_RTX;
2728 /* Return a value indicating whether OP, an operand of a commutative
2729 operation, is preferred as the first or second operand. The higher
2730 the value, the stronger the preference for being the first operand.
2731 We use negative values to indicate a preference for the first operand
2732 and positive values for the second operand. */
2735 commutative_operand_precedence (rtx op)
2737 enum rtx_code code = GET_CODE (op);
2739 /* Constants always come the second operand. Prefer "nice" constants. */
2740 if (code == CONST_INT)
2741 return -7;
2742 if (code == CONST_DOUBLE)
2743 return -6;
2744 op = avoid_constant_pool_reference (op);
2745 code = GET_CODE (op);
2747 switch (GET_RTX_CLASS (code))
2749 case RTX_CONST_OBJ:
2750 if (code == CONST_INT)
2751 return -5;
2752 if (code == CONST_DOUBLE)
2753 return -4;
2754 return -3;
2756 case RTX_EXTRA:
2757 /* SUBREGs of objects should come second. */
2758 if (code == SUBREG && OBJECT_P (SUBREG_REG (op)))
2759 return -2;
2761 if (!CONSTANT_P (op))
2762 return 0;
2763 else
2764 /* As for RTX_CONST_OBJ. */
2765 return -3;
2767 case RTX_OBJ:
2768 /* Complex expressions should be the first, so decrease priority
2769 of objects. */
2770 return -1;
2772 case RTX_COMM_ARITH:
2773 /* Prefer operands that are themselves commutative to be first.
2774 This helps to make things linear. In particular,
2775 (and (and (reg) (reg)) (not (reg))) is canonical. */
2776 return 4;
2778 case RTX_BIN_ARITH:
2779 /* If only one operand is a binary expression, it will be the first
2780 operand. In particular, (plus (minus (reg) (reg)) (neg (reg)))
2781 is canonical, although it will usually be further simplified. */
2782 return 2;
2784 case RTX_UNARY:
2785 /* Then prefer NEG and NOT. */
2786 if (code == NEG || code == NOT)
2787 return 1;
2789 default:
2790 return 0;
2794 /* Return 1 iff it is necessary to swap operands of commutative operation
2795 in order to canonicalize expression. */
2798 swap_commutative_operands_p (rtx x, rtx y)
2800 return (commutative_operand_precedence (x)
2801 < commutative_operand_precedence (y));
2804 /* Return 1 if X is an autoincrement side effect and the register is
2805 not the stack pointer. */
2807 auto_inc_p (rtx x)
2809 switch (GET_CODE (x))
2811 case PRE_INC:
2812 case POST_INC:
2813 case PRE_DEC:
2814 case POST_DEC:
2815 case PRE_MODIFY:
2816 case POST_MODIFY:
2817 /* There are no REG_INC notes for SP. */
2818 if (XEXP (x, 0) != stack_pointer_rtx)
2819 return 1;
2820 default:
2821 break;
2823 return 0;
2826 /* Return 1 if the sequence of instructions beginning with FROM and up
2827 to and including TO is safe to move. If NEW_TO is non-NULL, and
2828 the sequence is not already safe to move, but can be easily
2829 extended to a sequence which is safe, then NEW_TO will point to the
2830 end of the extended sequence.
2832 For now, this function only checks that the region contains whole
2833 exception regions, but it could be extended to check additional
2834 conditions as well. */
2837 insns_safe_to_move_p (rtx from, rtx to, rtx *new_to)
2839 int eh_region_count = 0;
2840 int past_to_p = 0;
2841 rtx r = from;
2843 /* By default, assume the end of the region will be what was
2844 suggested. */
2845 if (new_to)
2846 *new_to = to;
2848 while (r)
2850 if (NOTE_P (r))
2852 switch (NOTE_LINE_NUMBER (r))
2854 case NOTE_INSN_EH_REGION_BEG:
2855 ++eh_region_count;
2856 break;
2858 case NOTE_INSN_EH_REGION_END:
2859 if (eh_region_count == 0)
2860 /* This sequence of instructions contains the end of
2861 an exception region, but not he beginning. Moving
2862 it will cause chaos. */
2863 return 0;
2865 --eh_region_count;
2866 break;
2868 default:
2869 break;
2872 else if (past_to_p)
2873 /* If we've passed TO, and we see a non-note instruction, we
2874 can't extend the sequence to a movable sequence. */
2875 return 0;
2877 if (r == to)
2879 if (!new_to)
2880 /* It's OK to move the sequence if there were matched sets of
2881 exception region notes. */
2882 return eh_region_count == 0;
2884 past_to_p = 1;
2887 /* It's OK to move the sequence if there were matched sets of
2888 exception region notes. */
2889 if (past_to_p && eh_region_count == 0)
2891 *new_to = r;
2892 return 1;
2895 /* Go to the next instruction. */
2896 r = NEXT_INSN (r);
2899 return 0;
2902 /* Return nonzero if IN contains a piece of rtl that has the address LOC. */
2904 loc_mentioned_in_p (rtx *loc, rtx in)
2906 enum rtx_code code = GET_CODE (in);
2907 const char *fmt = GET_RTX_FORMAT (code);
2908 int i, j;
2910 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2912 if (loc == &in->u.fld[i].rt_rtx)
2913 return 1;
2914 if (fmt[i] == 'e')
2916 if (loc_mentioned_in_p (loc, XEXP (in, i)))
2917 return 1;
2919 else if (fmt[i] == 'E')
2920 for (j = XVECLEN (in, i) - 1; j >= 0; j--)
2921 if (loc_mentioned_in_p (loc, XVECEXP (in, i, j)))
2922 return 1;
2924 return 0;
2927 /* Helper function for subreg_lsb. Given a subreg's OUTER_MODE, INNER_MODE,
2928 and SUBREG_BYTE, return the bit offset where the subreg begins
2929 (counting from the least significant bit of the operand). */
2931 unsigned int
2932 subreg_lsb_1 (enum machine_mode outer_mode,
2933 enum machine_mode inner_mode,
2934 unsigned int subreg_byte)
2936 unsigned int bitpos;
2937 unsigned int byte;
2938 unsigned int word;
2940 /* A paradoxical subreg begins at bit position 0. */
2941 if (GET_MODE_BITSIZE (outer_mode) > GET_MODE_BITSIZE (inner_mode))
2942 return 0;
2944 if (WORDS_BIG_ENDIAN != BYTES_BIG_ENDIAN)
2945 /* If the subreg crosses a word boundary ensure that
2946 it also begins and ends on a word boundary. */
2947 gcc_assert (!((subreg_byte % UNITS_PER_WORD
2948 + GET_MODE_SIZE (outer_mode)) > UNITS_PER_WORD
2949 && (subreg_byte % UNITS_PER_WORD
2950 || GET_MODE_SIZE (outer_mode) % UNITS_PER_WORD)));
2952 if (WORDS_BIG_ENDIAN)
2953 word = (GET_MODE_SIZE (inner_mode)
2954 - (subreg_byte + GET_MODE_SIZE (outer_mode))) / UNITS_PER_WORD;
2955 else
2956 word = subreg_byte / UNITS_PER_WORD;
2957 bitpos = word * BITS_PER_WORD;
2959 if (BYTES_BIG_ENDIAN)
2960 byte = (GET_MODE_SIZE (inner_mode)
2961 - (subreg_byte + GET_MODE_SIZE (outer_mode))) % UNITS_PER_WORD;
2962 else
2963 byte = subreg_byte % UNITS_PER_WORD;
2964 bitpos += byte * BITS_PER_UNIT;
2966 return bitpos;
2969 /* Given a subreg X, return the bit offset where the subreg begins
2970 (counting from the least significant bit of the reg). */
2972 unsigned int
2973 subreg_lsb (rtx x)
2975 return subreg_lsb_1 (GET_MODE (x), GET_MODE (SUBREG_REG (x)),
2976 SUBREG_BYTE (x));
2979 /* This function returns the regno offset of a subreg expression.
2980 xregno - A regno of an inner hard subreg_reg (or what will become one).
2981 xmode - The mode of xregno.
2982 offset - The byte offset.
2983 ymode - The mode of a top level SUBREG (or what may become one).
2984 RETURN - The regno offset which would be used. */
2985 unsigned int
2986 subreg_regno_offset (unsigned int xregno, enum machine_mode xmode,
2987 unsigned int offset, enum machine_mode ymode)
2989 int nregs_xmode, nregs_ymode;
2990 int mode_multiple, nregs_multiple;
2991 int y_offset;
2993 gcc_assert (xregno < FIRST_PSEUDO_REGISTER);
2995 nregs_xmode = hard_regno_nregs[xregno][xmode];
2996 nregs_ymode = hard_regno_nregs[xregno][ymode];
2998 /* If this is a big endian paradoxical subreg, which uses more actual
2999 hard registers than the original register, we must return a negative
3000 offset so that we find the proper highpart of the register. */
3001 if (offset == 0
3002 && nregs_ymode > nregs_xmode
3003 && (GET_MODE_SIZE (ymode) > UNITS_PER_WORD
3004 ? WORDS_BIG_ENDIAN : BYTES_BIG_ENDIAN))
3005 return nregs_xmode - nregs_ymode;
3007 if (offset == 0 || nregs_xmode == nregs_ymode)
3008 return 0;
3010 /* size of ymode must not be greater than the size of xmode. */
3011 mode_multiple = GET_MODE_SIZE (xmode) / GET_MODE_SIZE (ymode);
3012 gcc_assert (mode_multiple != 0);
3014 y_offset = offset / GET_MODE_SIZE (ymode);
3015 nregs_multiple = nregs_xmode / nregs_ymode;
3016 return (y_offset / (mode_multiple / nregs_multiple)) * nregs_ymode;
3019 /* This function returns true when the offset is representable via
3020 subreg_offset in the given regno.
3021 xregno - A regno of an inner hard subreg_reg (or what will become one).
3022 xmode - The mode of xregno.
3023 offset - The byte offset.
3024 ymode - The mode of a top level SUBREG (or what may become one).
3025 RETURN - The regno offset which would be used. */
3026 bool
3027 subreg_offset_representable_p (unsigned int xregno, enum machine_mode xmode,
3028 unsigned int offset, enum machine_mode ymode)
3030 int nregs_xmode, nregs_ymode;
3031 int mode_multiple, nregs_multiple;
3032 int y_offset;
3034 gcc_assert (xregno < FIRST_PSEUDO_REGISTER);
3036 nregs_xmode = hard_regno_nregs[xregno][xmode];
3037 nregs_ymode = hard_regno_nregs[xregno][ymode];
3039 /* Paradoxical subregs are always valid. */
3040 if (offset == 0
3041 && nregs_ymode > nregs_xmode
3042 && (GET_MODE_SIZE (ymode) > UNITS_PER_WORD
3043 ? WORDS_BIG_ENDIAN : BYTES_BIG_ENDIAN))
3044 return true;
3046 /* Lowpart subregs are always valid. */
3047 if (offset == subreg_lowpart_offset (ymode, xmode))
3048 return true;
3050 /* This should always pass, otherwise we don't know how to verify the
3051 constraint. These conditions may be relaxed but subreg_offset would
3052 need to be redesigned. */
3053 gcc_assert ((GET_MODE_SIZE (xmode) % GET_MODE_SIZE (ymode)) == 0);
3054 gcc_assert ((GET_MODE_SIZE (ymode) % nregs_ymode) == 0);
3055 gcc_assert ((nregs_xmode % nregs_ymode) == 0);
3057 /* The XMODE value can be seen as a vector of NREGS_XMODE
3058 values. The subreg must represent a lowpart of given field.
3059 Compute what field it is. */
3060 offset -= subreg_lowpart_offset (ymode,
3061 mode_for_size (GET_MODE_BITSIZE (xmode)
3062 / nregs_xmode,
3063 MODE_INT, 0));
3065 /* size of ymode must not be greater than the size of xmode. */
3066 mode_multiple = GET_MODE_SIZE (xmode) / GET_MODE_SIZE (ymode);
3067 gcc_assert (mode_multiple != 0);
3069 y_offset = offset / GET_MODE_SIZE (ymode);
3070 nregs_multiple = nregs_xmode / nregs_ymode;
3072 gcc_assert ((offset % GET_MODE_SIZE (ymode)) == 0);
3073 gcc_assert ((mode_multiple % nregs_multiple) == 0);
3075 return (!(y_offset % (mode_multiple / nregs_multiple)));
3078 /* Return the final regno that a subreg expression refers to. */
3079 unsigned int
3080 subreg_regno (rtx x)
3082 unsigned int ret;
3083 rtx subreg = SUBREG_REG (x);
3084 int regno = REGNO (subreg);
3086 ret = regno + subreg_regno_offset (regno,
3087 GET_MODE (subreg),
3088 SUBREG_BYTE (x),
3089 GET_MODE (x));
3090 return ret;
3093 struct parms_set_data
3095 int nregs;
3096 HARD_REG_SET regs;
3099 /* Helper function for noticing stores to parameter registers. */
3100 static void
3101 parms_set (rtx x, rtx pat ATTRIBUTE_UNUSED, void *data)
3103 struct parms_set_data *d = data;
3104 if (REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER
3105 && TEST_HARD_REG_BIT (d->regs, REGNO (x)))
3107 CLEAR_HARD_REG_BIT (d->regs, REGNO (x));
3108 d->nregs--;
3112 /* Look backward for first parameter to be loaded.
3113 Do not skip BOUNDARY. */
3115 find_first_parameter_load (rtx call_insn, rtx boundary)
3117 struct parms_set_data parm;
3118 rtx p, before;
3120 /* Since different machines initialize their parameter registers
3121 in different orders, assume nothing. Collect the set of all
3122 parameter registers. */
3123 CLEAR_HARD_REG_SET (parm.regs);
3124 parm.nregs = 0;
3125 for (p = CALL_INSN_FUNCTION_USAGE (call_insn); p; p = XEXP (p, 1))
3126 if (GET_CODE (XEXP (p, 0)) == USE
3127 && REG_P (XEXP (XEXP (p, 0), 0)))
3129 gcc_assert (REGNO (XEXP (XEXP (p, 0), 0)) < FIRST_PSEUDO_REGISTER);
3131 /* We only care about registers which can hold function
3132 arguments. */
3133 if (!FUNCTION_ARG_REGNO_P (REGNO (XEXP (XEXP (p, 0), 0))))
3134 continue;
3136 SET_HARD_REG_BIT (parm.regs, REGNO (XEXP (XEXP (p, 0), 0)));
3137 parm.nregs++;
3139 before = call_insn;
3141 /* Search backward for the first set of a register in this set. */
3142 while (parm.nregs && before != boundary)
3144 before = PREV_INSN (before);
3146 /* It is possible that some loads got CSEed from one call to
3147 another. Stop in that case. */
3148 if (CALL_P (before))
3149 break;
3151 /* Our caller needs either ensure that we will find all sets
3152 (in case code has not been optimized yet), or take care
3153 for possible labels in a way by setting boundary to preceding
3154 CODE_LABEL. */
3155 if (LABEL_P (before))
3157 gcc_assert (before == boundary);
3158 break;
3161 if (INSN_P (before))
3162 note_stores (PATTERN (before), parms_set, &parm);
3164 return before;
3167 /* Return true if we should avoid inserting code between INSN and preceding
3168 call instruction. */
3170 bool
3171 keep_with_call_p (rtx insn)
3173 rtx set;
3175 if (INSN_P (insn) && (set = single_set (insn)) != NULL)
3177 if (REG_P (SET_DEST (set))
3178 && REGNO (SET_DEST (set)) < FIRST_PSEUDO_REGISTER
3179 && fixed_regs[REGNO (SET_DEST (set))]
3180 && general_operand (SET_SRC (set), VOIDmode))
3181 return true;
3182 if (REG_P (SET_SRC (set))
3183 && FUNCTION_VALUE_REGNO_P (REGNO (SET_SRC (set)))
3184 && REG_P (SET_DEST (set))
3185 && REGNO (SET_DEST (set)) >= FIRST_PSEUDO_REGISTER)
3186 return true;
3187 /* There may be a stack pop just after the call and before the store
3188 of the return register. Search for the actual store when deciding
3189 if we can break or not. */
3190 if (SET_DEST (set) == stack_pointer_rtx)
3192 rtx i2 = next_nonnote_insn (insn);
3193 if (i2 && keep_with_call_p (i2))
3194 return true;
3197 return false;
3200 /* Return true if LABEL is a target of JUMP_INSN. This applies only
3201 to non-complex jumps. That is, direct unconditional, conditional,
3202 and tablejumps, but not computed jumps or returns. It also does
3203 not apply to the fallthru case of a conditional jump. */
3205 bool
3206 label_is_jump_target_p (rtx label, rtx jump_insn)
3208 rtx tmp = JUMP_LABEL (jump_insn);
3210 if (label == tmp)
3211 return true;
3213 if (tablejump_p (jump_insn, NULL, &tmp))
3215 rtvec vec = XVEC (PATTERN (tmp),
3216 GET_CODE (PATTERN (tmp)) == ADDR_DIFF_VEC);
3217 int i, veclen = GET_NUM_ELEM (vec);
3219 for (i = 0; i < veclen; ++i)
3220 if (XEXP (RTVEC_ELT (vec, i), 0) == label)
3221 return true;
3224 return false;
3228 /* Return an estimate of the cost of computing rtx X.
3229 One use is in cse, to decide which expression to keep in the hash table.
3230 Another is in rtl generation, to pick the cheapest way to multiply.
3231 Other uses like the latter are expected in the future. */
3234 rtx_cost (rtx x, enum rtx_code outer_code ATTRIBUTE_UNUSED)
3236 int i, j;
3237 enum rtx_code code;
3238 const char *fmt;
3239 int total;
3241 if (x == 0)
3242 return 0;
3244 /* Compute the default costs of certain things.
3245 Note that targetm.rtx_costs can override the defaults. */
3247 code = GET_CODE (x);
3248 switch (code)
3250 case MULT:
3251 total = COSTS_N_INSNS (5);
3252 break;
3253 case DIV:
3254 case UDIV:
3255 case MOD:
3256 case UMOD:
3257 total = COSTS_N_INSNS (7);
3258 break;
3259 case USE:
3260 /* Used in loop.c and combine.c as a marker. */
3261 total = 0;
3262 break;
3263 default:
3264 total = COSTS_N_INSNS (1);
3267 switch (code)
3269 case REG:
3270 return 0;
3272 case SUBREG:
3273 total = 0;
3274 /* If we can't tie these modes, make this expensive. The larger
3275 the mode, the more expensive it is. */
3276 if (! MODES_TIEABLE_P (GET_MODE (x), GET_MODE (SUBREG_REG (x))))
3277 return COSTS_N_INSNS (2
3278 + GET_MODE_SIZE (GET_MODE (x)) / UNITS_PER_WORD);
3279 break;
3281 default:
3282 if (targetm.rtx_costs (x, code, outer_code, &total))
3283 return total;
3284 break;
3287 /* Sum the costs of the sub-rtx's, plus cost of this operation,
3288 which is already in total. */
3290 fmt = GET_RTX_FORMAT (code);
3291 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
3292 if (fmt[i] == 'e')
3293 total += rtx_cost (XEXP (x, i), code);
3294 else if (fmt[i] == 'E')
3295 for (j = 0; j < XVECLEN (x, i); j++)
3296 total += rtx_cost (XVECEXP (x, i, j), code);
3298 return total;
3301 /* Return cost of address expression X.
3302 Expect that X is properly formed address reference. */
3305 address_cost (rtx x, enum machine_mode mode)
3307 /* We may be asked for cost of various unusual addresses, such as operands
3308 of push instruction. It is not worthwhile to complicate writing
3309 of the target hook by such cases. */
3311 if (!memory_address_p (mode, x))
3312 return 1000;
3314 return targetm.address_cost (x);
3317 /* If the target doesn't override, compute the cost as with arithmetic. */
3320 default_address_cost (rtx x)
3322 return rtx_cost (x, MEM);
3326 unsigned HOST_WIDE_INT
3327 nonzero_bits (rtx x, enum machine_mode mode)
3329 return cached_nonzero_bits (x, mode, NULL_RTX, VOIDmode, 0);
3332 unsigned int
3333 num_sign_bit_copies (rtx x, enum machine_mode mode)
3335 return cached_num_sign_bit_copies (x, mode, NULL_RTX, VOIDmode, 0);
3338 /* The function cached_nonzero_bits is a wrapper around nonzero_bits1.
3339 It avoids exponential behavior in nonzero_bits1 when X has
3340 identical subexpressions on the first or the second level. */
3342 static unsigned HOST_WIDE_INT
3343 cached_nonzero_bits (rtx x, enum machine_mode mode, rtx known_x,
3344 enum machine_mode known_mode,
3345 unsigned HOST_WIDE_INT known_ret)
3347 if (x == known_x && mode == known_mode)
3348 return known_ret;
3350 /* Try to find identical subexpressions. If found call
3351 nonzero_bits1 on X with the subexpressions as KNOWN_X and the
3352 precomputed value for the subexpression as KNOWN_RET. */
3354 if (ARITHMETIC_P (x))
3356 rtx x0 = XEXP (x, 0);
3357 rtx x1 = XEXP (x, 1);
3359 /* Check the first level. */
3360 if (x0 == x1)
3361 return nonzero_bits1 (x, mode, x0, mode,
3362 cached_nonzero_bits (x0, mode, known_x,
3363 known_mode, known_ret));
3365 /* Check the second level. */
3366 if (ARITHMETIC_P (x0)
3367 && (x1 == XEXP (x0, 0) || x1 == XEXP (x0, 1)))
3368 return nonzero_bits1 (x, mode, x1, mode,
3369 cached_nonzero_bits (x1, mode, known_x,
3370 known_mode, known_ret));
3372 if (ARITHMETIC_P (x1)
3373 && (x0 == XEXP (x1, 0) || x0 == XEXP (x1, 1)))
3374 return nonzero_bits1 (x, mode, x0, mode,
3375 cached_nonzero_bits (x0, mode, known_x,
3376 known_mode, known_ret));
3379 return nonzero_bits1 (x, mode, known_x, known_mode, known_ret);
3382 /* We let num_sign_bit_copies recur into nonzero_bits as that is useful.
3383 We don't let nonzero_bits recur into num_sign_bit_copies, because that
3384 is less useful. We can't allow both, because that results in exponential
3385 run time recursion. There is a nullstone testcase that triggered
3386 this. This macro avoids accidental uses of num_sign_bit_copies. */
3387 #define cached_num_sign_bit_copies sorry_i_am_preventing_exponential_behavior
3389 /* Given an expression, X, compute which bits in X can be nonzero.
3390 We don't care about bits outside of those defined in MODE.
3392 For most X this is simply GET_MODE_MASK (GET_MODE (MODE)), but if X is
3393 an arithmetic operation, we can do better. */
3395 static unsigned HOST_WIDE_INT
3396 nonzero_bits1 (rtx x, enum machine_mode mode, rtx known_x,
3397 enum machine_mode known_mode,
3398 unsigned HOST_WIDE_INT known_ret)
3400 unsigned HOST_WIDE_INT nonzero = GET_MODE_MASK (mode);
3401 unsigned HOST_WIDE_INT inner_nz;
3402 enum rtx_code code;
3403 unsigned int mode_width = GET_MODE_BITSIZE (mode);
3405 /* For floating-point values, assume all bits are needed. */
3406 if (FLOAT_MODE_P (GET_MODE (x)) || FLOAT_MODE_P (mode))
3407 return nonzero;
3409 /* If X is wider than MODE, use its mode instead. */
3410 if (GET_MODE_BITSIZE (GET_MODE (x)) > mode_width)
3412 mode = GET_MODE (x);
3413 nonzero = GET_MODE_MASK (mode);
3414 mode_width = GET_MODE_BITSIZE (mode);
3417 if (mode_width > HOST_BITS_PER_WIDE_INT)
3418 /* Our only callers in this case look for single bit values. So
3419 just return the mode mask. Those tests will then be false. */
3420 return nonzero;
3422 #ifndef WORD_REGISTER_OPERATIONS
3423 /* If MODE is wider than X, but both are a single word for both the host
3424 and target machines, we can compute this from which bits of the
3425 object might be nonzero in its own mode, taking into account the fact
3426 that on many CISC machines, accessing an object in a wider mode
3427 causes the high-order bits to become undefined. So they are
3428 not known to be zero. */
3430 if (GET_MODE (x) != VOIDmode && GET_MODE (x) != mode
3431 && GET_MODE_BITSIZE (GET_MODE (x)) <= BITS_PER_WORD
3432 && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
3433 && GET_MODE_BITSIZE (mode) > GET_MODE_BITSIZE (GET_MODE (x)))
3435 nonzero &= cached_nonzero_bits (x, GET_MODE (x),
3436 known_x, known_mode, known_ret);
3437 nonzero |= GET_MODE_MASK (mode) & ~GET_MODE_MASK (GET_MODE (x));
3438 return nonzero;
3440 #endif
3442 code = GET_CODE (x);
3443 switch (code)
3445 case REG:
3446 #if defined(POINTERS_EXTEND_UNSIGNED) && !defined(HAVE_ptr_extend)
3447 /* If pointers extend unsigned and this is a pointer in Pmode, say that
3448 all the bits above ptr_mode are known to be zero. */
3449 if (POINTERS_EXTEND_UNSIGNED && GET_MODE (x) == Pmode
3450 && REG_POINTER (x))
3451 nonzero &= GET_MODE_MASK (ptr_mode);
3452 #endif
3454 /* Include declared information about alignment of pointers. */
3455 /* ??? We don't properly preserve REG_POINTER changes across
3456 pointer-to-integer casts, so we can't trust it except for
3457 things that we know must be pointers. See execute/960116-1.c. */
3458 if ((x == stack_pointer_rtx
3459 || x == frame_pointer_rtx
3460 || x == arg_pointer_rtx)
3461 && REGNO_POINTER_ALIGN (REGNO (x)))
3463 unsigned HOST_WIDE_INT alignment
3464 = REGNO_POINTER_ALIGN (REGNO (x)) / BITS_PER_UNIT;
3466 #ifdef PUSH_ROUNDING
3467 /* If PUSH_ROUNDING is defined, it is possible for the
3468 stack to be momentarily aligned only to that amount,
3469 so we pick the least alignment. */
3470 if (x == stack_pointer_rtx && PUSH_ARGS)
3471 alignment = MIN ((unsigned HOST_WIDE_INT) PUSH_ROUNDING (1),
3472 alignment);
3473 #endif
3475 nonzero &= ~(alignment - 1);
3479 unsigned HOST_WIDE_INT nonzero_for_hook = nonzero;
3480 rtx new = rtl_hooks.reg_nonzero_bits (x, mode, known_x,
3481 known_mode, known_ret,
3482 &nonzero_for_hook);
3484 if (new)
3485 nonzero_for_hook &= cached_nonzero_bits (new, mode, known_x,
3486 known_mode, known_ret);
3488 return nonzero_for_hook;
3491 case CONST_INT:
3492 #ifdef SHORT_IMMEDIATES_SIGN_EXTEND
3493 /* If X is negative in MODE, sign-extend the value. */
3494 if (INTVAL (x) > 0 && mode_width < BITS_PER_WORD
3495 && 0 != (INTVAL (x) & ((HOST_WIDE_INT) 1 << (mode_width - 1))))
3496 return (INTVAL (x) | ((HOST_WIDE_INT) (-1) << mode_width));
3497 #endif
3499 return INTVAL (x);
3501 case MEM:
3502 #ifdef LOAD_EXTEND_OP
3503 /* In many, if not most, RISC machines, reading a byte from memory
3504 zeros the rest of the register. Noticing that fact saves a lot
3505 of extra zero-extends. */
3506 if (LOAD_EXTEND_OP (GET_MODE (x)) == ZERO_EXTEND)
3507 nonzero &= GET_MODE_MASK (GET_MODE (x));
3508 #endif
3509 break;
3511 case EQ: case NE:
3512 case UNEQ: case LTGT:
3513 case GT: case GTU: case UNGT:
3514 case LT: case LTU: case UNLT:
3515 case GE: case GEU: case UNGE:
3516 case LE: case LEU: case UNLE:
3517 case UNORDERED: case ORDERED:
3519 /* If this produces an integer result, we know which bits are set.
3520 Code here used to clear bits outside the mode of X, but that is
3521 now done above. */
3523 if (GET_MODE_CLASS (mode) == MODE_INT
3524 && mode_width <= HOST_BITS_PER_WIDE_INT)
3525 nonzero = STORE_FLAG_VALUE;
3526 break;
3528 case NEG:
3529 #if 0
3530 /* Disabled to avoid exponential mutual recursion between nonzero_bits
3531 and num_sign_bit_copies. */
3532 if (num_sign_bit_copies (XEXP (x, 0), GET_MODE (x))
3533 == GET_MODE_BITSIZE (GET_MODE (x)))
3534 nonzero = 1;
3535 #endif
3537 if (GET_MODE_SIZE (GET_MODE (x)) < mode_width)
3538 nonzero |= (GET_MODE_MASK (mode) & ~GET_MODE_MASK (GET_MODE (x)));
3539 break;
3541 case ABS:
3542 #if 0
3543 /* Disabled to avoid exponential mutual recursion between nonzero_bits
3544 and num_sign_bit_copies. */
3545 if (num_sign_bit_copies (XEXP (x, 0), GET_MODE (x))
3546 == GET_MODE_BITSIZE (GET_MODE (x)))
3547 nonzero = 1;
3548 #endif
3549 break;
3551 case TRUNCATE:
3552 nonzero &= (cached_nonzero_bits (XEXP (x, 0), mode,
3553 known_x, known_mode, known_ret)
3554 & GET_MODE_MASK (mode));
3555 break;
3557 case ZERO_EXTEND:
3558 nonzero &= cached_nonzero_bits (XEXP (x, 0), mode,
3559 known_x, known_mode, known_ret);
3560 if (GET_MODE (XEXP (x, 0)) != VOIDmode)
3561 nonzero &= GET_MODE_MASK (GET_MODE (XEXP (x, 0)));
3562 break;
3564 case SIGN_EXTEND:
3565 /* If the sign bit is known clear, this is the same as ZERO_EXTEND.
3566 Otherwise, show all the bits in the outer mode but not the inner
3567 may be nonzero. */
3568 inner_nz = cached_nonzero_bits (XEXP (x, 0), mode,
3569 known_x, known_mode, known_ret);
3570 if (GET_MODE (XEXP (x, 0)) != VOIDmode)
3572 inner_nz &= GET_MODE_MASK (GET_MODE (XEXP (x, 0)));
3573 if (inner_nz
3574 & (((HOST_WIDE_INT) 1
3575 << (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))) - 1))))
3576 inner_nz |= (GET_MODE_MASK (mode)
3577 & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0))));
3580 nonzero &= inner_nz;
3581 break;
3583 case AND:
3584 nonzero &= cached_nonzero_bits (XEXP (x, 0), mode,
3585 known_x, known_mode, known_ret)
3586 & cached_nonzero_bits (XEXP (x, 1), mode,
3587 known_x, known_mode, known_ret);
3588 break;
3590 case XOR: case IOR:
3591 case UMIN: case UMAX: case SMIN: case SMAX:
3593 unsigned HOST_WIDE_INT nonzero0 =
3594 cached_nonzero_bits (XEXP (x, 0), mode,
3595 known_x, known_mode, known_ret);
3597 /* Don't call nonzero_bits for the second time if it cannot change
3598 anything. */
3599 if ((nonzero & nonzero0) != nonzero)
3600 nonzero &= nonzero0
3601 | cached_nonzero_bits (XEXP (x, 1), mode,
3602 known_x, known_mode, known_ret);
3604 break;
3606 case PLUS: case MINUS:
3607 case MULT:
3608 case DIV: case UDIV:
3609 case MOD: case UMOD:
3610 /* We can apply the rules of arithmetic to compute the number of
3611 high- and low-order zero bits of these operations. We start by
3612 computing the width (position of the highest-order nonzero bit)
3613 and the number of low-order zero bits for each value. */
3615 unsigned HOST_WIDE_INT nz0 =
3616 cached_nonzero_bits (XEXP (x, 0), mode,
3617 known_x, known_mode, known_ret);
3618 unsigned HOST_WIDE_INT nz1 =
3619 cached_nonzero_bits (XEXP (x, 1), mode,
3620 known_x, known_mode, known_ret);
3621 int sign_index = GET_MODE_BITSIZE (GET_MODE (x)) - 1;
3622 int width0 = floor_log2 (nz0) + 1;
3623 int width1 = floor_log2 (nz1) + 1;
3624 int low0 = floor_log2 (nz0 & -nz0);
3625 int low1 = floor_log2 (nz1 & -nz1);
3626 HOST_WIDE_INT op0_maybe_minusp
3627 = (nz0 & ((HOST_WIDE_INT) 1 << sign_index));
3628 HOST_WIDE_INT op1_maybe_minusp
3629 = (nz1 & ((HOST_WIDE_INT) 1 << sign_index));
3630 unsigned int result_width = mode_width;
3631 int result_low = 0;
3633 switch (code)
3635 case PLUS:
3636 result_width = MAX (width0, width1) + 1;
3637 result_low = MIN (low0, low1);
3638 break;
3639 case MINUS:
3640 result_low = MIN (low0, low1);
3641 break;
3642 case MULT:
3643 result_width = width0 + width1;
3644 result_low = low0 + low1;
3645 break;
3646 case DIV:
3647 if (width1 == 0)
3648 break;
3649 if (! op0_maybe_minusp && ! op1_maybe_minusp)
3650 result_width = width0;
3651 break;
3652 case UDIV:
3653 if (width1 == 0)
3654 break;
3655 result_width = width0;
3656 break;
3657 case MOD:
3658 if (width1 == 0)
3659 break;
3660 if (! op0_maybe_minusp && ! op1_maybe_minusp)
3661 result_width = MIN (width0, width1);
3662 result_low = MIN (low0, low1);
3663 break;
3664 case UMOD:
3665 if (width1 == 0)
3666 break;
3667 result_width = MIN (width0, width1);
3668 result_low = MIN (low0, low1);
3669 break;
3670 default:
3671 gcc_unreachable ();
3674 if (result_width < mode_width)
3675 nonzero &= ((HOST_WIDE_INT) 1 << result_width) - 1;
3677 if (result_low > 0)
3678 nonzero &= ~(((HOST_WIDE_INT) 1 << result_low) - 1);
3680 #ifdef POINTERS_EXTEND_UNSIGNED
3681 /* If pointers extend unsigned and this is an addition or subtraction
3682 to a pointer in Pmode, all the bits above ptr_mode are known to be
3683 zero. */
3684 if (POINTERS_EXTEND_UNSIGNED > 0 && GET_MODE (x) == Pmode
3685 && (code == PLUS || code == MINUS)
3686 && REG_P (XEXP (x, 0)) && REG_POINTER (XEXP (x, 0)))
3687 nonzero &= GET_MODE_MASK (ptr_mode);
3688 #endif
3690 break;
3692 case ZERO_EXTRACT:
3693 if (GET_CODE (XEXP (x, 1)) == CONST_INT
3694 && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT)
3695 nonzero &= ((HOST_WIDE_INT) 1 << INTVAL (XEXP (x, 1))) - 1;
3696 break;
3698 case SUBREG:
3699 /* If this is a SUBREG formed for a promoted variable that has
3700 been zero-extended, we know that at least the high-order bits
3701 are zero, though others might be too. */
3703 if (SUBREG_PROMOTED_VAR_P (x) && SUBREG_PROMOTED_UNSIGNED_P (x) > 0)
3704 nonzero = GET_MODE_MASK (GET_MODE (x))
3705 & cached_nonzero_bits (SUBREG_REG (x), GET_MODE (x),
3706 known_x, known_mode, known_ret);
3708 /* If the inner mode is a single word for both the host and target
3709 machines, we can compute this from which bits of the inner
3710 object might be nonzero. */
3711 if (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x))) <= BITS_PER_WORD
3712 && (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x)))
3713 <= HOST_BITS_PER_WIDE_INT))
3715 nonzero &= cached_nonzero_bits (SUBREG_REG (x), mode,
3716 known_x, known_mode, known_ret);
3718 #if defined (WORD_REGISTER_OPERATIONS) && defined (LOAD_EXTEND_OP)
3719 /* If this is a typical RISC machine, we only have to worry
3720 about the way loads are extended. */
3721 if ((LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (x))) == SIGN_EXTEND
3722 ? (((nonzero
3723 & (((unsigned HOST_WIDE_INT) 1
3724 << (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x))) - 1))))
3725 != 0))
3726 : LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (x))) != ZERO_EXTEND)
3727 || !MEM_P (SUBREG_REG (x)))
3728 #endif
3730 /* On many CISC machines, accessing an object in a wider mode
3731 causes the high-order bits to become undefined. So they are
3732 not known to be zero. */
3733 if (GET_MODE_SIZE (GET_MODE (x))
3734 > GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
3735 nonzero |= (GET_MODE_MASK (GET_MODE (x))
3736 & ~GET_MODE_MASK (GET_MODE (SUBREG_REG (x))));
3739 break;
3741 case ASHIFTRT:
3742 case LSHIFTRT:
3743 case ASHIFT:
3744 case ROTATE:
3745 /* The nonzero bits are in two classes: any bits within MODE
3746 that aren't in GET_MODE (x) are always significant. The rest of the
3747 nonzero bits are those that are significant in the operand of
3748 the shift when shifted the appropriate number of bits. This
3749 shows that high-order bits are cleared by the right shift and
3750 low-order bits by left shifts. */
3751 if (GET_CODE (XEXP (x, 1)) == CONST_INT
3752 && INTVAL (XEXP (x, 1)) >= 0
3753 && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT)
3755 enum machine_mode inner_mode = GET_MODE (x);
3756 unsigned int width = GET_MODE_BITSIZE (inner_mode);
3757 int count = INTVAL (XEXP (x, 1));
3758 unsigned HOST_WIDE_INT mode_mask = GET_MODE_MASK (inner_mode);
3759 unsigned HOST_WIDE_INT op_nonzero =
3760 cached_nonzero_bits (XEXP (x, 0), mode,
3761 known_x, known_mode, known_ret);
3762 unsigned HOST_WIDE_INT inner = op_nonzero & mode_mask;
3763 unsigned HOST_WIDE_INT outer = 0;
3765 if (mode_width > width)
3766 outer = (op_nonzero & nonzero & ~mode_mask);
3768 if (code == LSHIFTRT)
3769 inner >>= count;
3770 else if (code == ASHIFTRT)
3772 inner >>= count;
3774 /* If the sign bit may have been nonzero before the shift, we
3775 need to mark all the places it could have been copied to
3776 by the shift as possibly nonzero. */
3777 if (inner & ((HOST_WIDE_INT) 1 << (width - 1 - count)))
3778 inner |= (((HOST_WIDE_INT) 1 << count) - 1) << (width - count);
3780 else if (code == ASHIFT)
3781 inner <<= count;
3782 else
3783 inner = ((inner << (count % width)
3784 | (inner >> (width - (count % width)))) & mode_mask);
3786 nonzero &= (outer | inner);
3788 break;
3790 case FFS:
3791 case POPCOUNT:
3792 /* This is at most the number of bits in the mode. */
3793 nonzero = ((HOST_WIDE_INT) 2 << (floor_log2 (mode_width))) - 1;
3794 break;
3796 case CLZ:
3797 /* If CLZ has a known value at zero, then the nonzero bits are
3798 that value, plus the number of bits in the mode minus one. */
3799 if (CLZ_DEFINED_VALUE_AT_ZERO (mode, nonzero))
3800 nonzero |= ((HOST_WIDE_INT) 1 << (floor_log2 (mode_width))) - 1;
3801 else
3802 nonzero = -1;
3803 break;
3805 case CTZ:
3806 /* If CTZ has a known value at zero, then the nonzero bits are
3807 that value, plus the number of bits in the mode minus one. */
3808 if (CTZ_DEFINED_VALUE_AT_ZERO (mode, nonzero))
3809 nonzero |= ((HOST_WIDE_INT) 1 << (floor_log2 (mode_width))) - 1;
3810 else
3811 nonzero = -1;
3812 break;
3814 case PARITY:
3815 nonzero = 1;
3816 break;
3818 case IF_THEN_ELSE:
3820 unsigned HOST_WIDE_INT nonzero_true =
3821 cached_nonzero_bits (XEXP (x, 1), mode,
3822 known_x, known_mode, known_ret);
3824 /* Don't call nonzero_bits for the second time if it cannot change
3825 anything. */
3826 if ((nonzero & nonzero_true) != nonzero)
3827 nonzero &= nonzero_true
3828 | cached_nonzero_bits (XEXP (x, 2), mode,
3829 known_x, known_mode, known_ret);
3831 break;
3833 default:
3834 break;
3837 return nonzero;
3840 /* See the macro definition above. */
3841 #undef cached_num_sign_bit_copies
3844 /* The function cached_num_sign_bit_copies is a wrapper around
3845 num_sign_bit_copies1. It avoids exponential behavior in
3846 num_sign_bit_copies1 when X has identical subexpressions on the
3847 first or the second level. */
3849 static unsigned int
3850 cached_num_sign_bit_copies (rtx x, enum machine_mode mode, rtx known_x,
3851 enum machine_mode known_mode,
3852 unsigned int known_ret)
3854 if (x == known_x && mode == known_mode)
3855 return known_ret;
3857 /* Try to find identical subexpressions. If found call
3858 num_sign_bit_copies1 on X with the subexpressions as KNOWN_X and
3859 the precomputed value for the subexpression as KNOWN_RET. */
3861 if (ARITHMETIC_P (x))
3863 rtx x0 = XEXP (x, 0);
3864 rtx x1 = XEXP (x, 1);
3866 /* Check the first level. */
3867 if (x0 == x1)
3868 return
3869 num_sign_bit_copies1 (x, mode, x0, mode,
3870 cached_num_sign_bit_copies (x0, mode, known_x,
3871 known_mode,
3872 known_ret));
3874 /* Check the second level. */
3875 if (ARITHMETIC_P (x0)
3876 && (x1 == XEXP (x0, 0) || x1 == XEXP (x0, 1)))
3877 return
3878 num_sign_bit_copies1 (x, mode, x1, mode,
3879 cached_num_sign_bit_copies (x1, mode, known_x,
3880 known_mode,
3881 known_ret));
3883 if (ARITHMETIC_P (x1)
3884 && (x0 == XEXP (x1, 0) || x0 == XEXP (x1, 1)))
3885 return
3886 num_sign_bit_copies1 (x, mode, x0, mode,
3887 cached_num_sign_bit_copies (x0, mode, known_x,
3888 known_mode,
3889 known_ret));
3892 return num_sign_bit_copies1 (x, mode, known_x, known_mode, known_ret);
3895 /* Return the number of bits at the high-order end of X that are known to
3896 be equal to the sign bit. X will be used in mode MODE; if MODE is
3897 VOIDmode, X will be used in its own mode. The returned value will always
3898 be between 1 and the number of bits in MODE. */
3900 static unsigned int
3901 num_sign_bit_copies1 (rtx x, enum machine_mode mode, rtx known_x,
3902 enum machine_mode known_mode,
3903 unsigned int known_ret)
3905 enum rtx_code code = GET_CODE (x);
3906 unsigned int bitwidth = GET_MODE_BITSIZE (mode);
3907 int num0, num1, result;
3908 unsigned HOST_WIDE_INT nonzero;
3910 /* If we weren't given a mode, use the mode of X. If the mode is still
3911 VOIDmode, we don't know anything. Likewise if one of the modes is
3912 floating-point. */
3914 if (mode == VOIDmode)
3915 mode = GET_MODE (x);
3917 if (mode == VOIDmode || FLOAT_MODE_P (mode) || FLOAT_MODE_P (GET_MODE (x)))
3918 return 1;
3920 /* For a smaller object, just ignore the high bits. */
3921 if (bitwidth < GET_MODE_BITSIZE (GET_MODE (x)))
3923 num0 = cached_num_sign_bit_copies (x, GET_MODE (x),
3924 known_x, known_mode, known_ret);
3925 return MAX (1,
3926 num0 - (int) (GET_MODE_BITSIZE (GET_MODE (x)) - bitwidth));
3929 if (GET_MODE (x) != VOIDmode && bitwidth > GET_MODE_BITSIZE (GET_MODE (x)))
3931 #ifndef WORD_REGISTER_OPERATIONS
3932 /* If this machine does not do all register operations on the entire
3933 register and MODE is wider than the mode of X, we can say nothing
3934 at all about the high-order bits. */
3935 return 1;
3936 #else
3937 /* Likewise on machines that do, if the mode of the object is smaller
3938 than a word and loads of that size don't sign extend, we can say
3939 nothing about the high order bits. */
3940 if (GET_MODE_BITSIZE (GET_MODE (x)) < BITS_PER_WORD
3941 #ifdef LOAD_EXTEND_OP
3942 && LOAD_EXTEND_OP (GET_MODE (x)) != SIGN_EXTEND
3943 #endif
3945 return 1;
3946 #endif
3949 switch (code)
3951 case REG:
3953 #if defined(POINTERS_EXTEND_UNSIGNED) && !defined(HAVE_ptr_extend)
3954 /* If pointers extend signed and this is a pointer in Pmode, say that
3955 all the bits above ptr_mode are known to be sign bit copies. */
3956 if (! POINTERS_EXTEND_UNSIGNED && GET_MODE (x) == Pmode && mode == Pmode
3957 && REG_POINTER (x))
3958 return GET_MODE_BITSIZE (Pmode) - GET_MODE_BITSIZE (ptr_mode) + 1;
3959 #endif
3962 unsigned int copies_for_hook = 1, copies = 1;
3963 rtx new = rtl_hooks.reg_num_sign_bit_copies (x, mode, known_x,
3964 known_mode, known_ret,
3965 &copies_for_hook);
3967 if (new)
3968 copies = cached_num_sign_bit_copies (new, mode, known_x,
3969 known_mode, known_ret);
3971 if (copies > 1 || copies_for_hook > 1)
3972 return MAX (copies, copies_for_hook);
3974 /* Else, use nonzero_bits to guess num_sign_bit_copies (see below). */
3976 break;
3978 case MEM:
3979 #ifdef LOAD_EXTEND_OP
3980 /* Some RISC machines sign-extend all loads of smaller than a word. */
3981 if (LOAD_EXTEND_OP (GET_MODE (x)) == SIGN_EXTEND)
3982 return MAX (1, ((int) bitwidth
3983 - (int) GET_MODE_BITSIZE (GET_MODE (x)) + 1));
3984 #endif
3985 break;
3987 case CONST_INT:
3988 /* If the constant is negative, take its 1's complement and remask.
3989 Then see how many zero bits we have. */
3990 nonzero = INTVAL (x) & GET_MODE_MASK (mode);
3991 if (bitwidth <= HOST_BITS_PER_WIDE_INT
3992 && (nonzero & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
3993 nonzero = (~nonzero) & GET_MODE_MASK (mode);
3995 return (nonzero == 0 ? bitwidth : bitwidth - floor_log2 (nonzero) - 1);
3997 case SUBREG:
3998 /* If this is a SUBREG for a promoted object that is sign-extended
3999 and we are looking at it in a wider mode, we know that at least the
4000 high-order bits are known to be sign bit copies. */
4002 if (SUBREG_PROMOTED_VAR_P (x) && ! SUBREG_PROMOTED_UNSIGNED_P (x))
4004 num0 = cached_num_sign_bit_copies (SUBREG_REG (x), mode,
4005 known_x, known_mode, known_ret);
4006 return MAX ((int) bitwidth
4007 - (int) GET_MODE_BITSIZE (GET_MODE (x)) + 1,
4008 num0);
4011 /* For a smaller object, just ignore the high bits. */
4012 if (bitwidth <= GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x))))
4014 num0 = cached_num_sign_bit_copies (SUBREG_REG (x), VOIDmode,
4015 known_x, known_mode, known_ret);
4016 return MAX (1, (num0
4017 - (int) (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x)))
4018 - bitwidth)));
4021 #ifdef WORD_REGISTER_OPERATIONS
4022 #ifdef LOAD_EXTEND_OP
4023 /* For paradoxical SUBREGs on machines where all register operations
4024 affect the entire register, just look inside. Note that we are
4025 passing MODE to the recursive call, so the number of sign bit copies
4026 will remain relative to that mode, not the inner mode. */
4028 /* This works only if loads sign extend. Otherwise, if we get a
4029 reload for the inner part, it may be loaded from the stack, and
4030 then we lose all sign bit copies that existed before the store
4031 to the stack. */
4033 if ((GET_MODE_SIZE (GET_MODE (x))
4034 > GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
4035 && LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (x))) == SIGN_EXTEND
4036 && MEM_P (SUBREG_REG (x)))
4037 return cached_num_sign_bit_copies (SUBREG_REG (x), mode,
4038 known_x, known_mode, known_ret);
4039 #endif
4040 #endif
4041 break;
4043 case SIGN_EXTRACT:
4044 if (GET_CODE (XEXP (x, 1)) == CONST_INT)
4045 return MAX (1, (int) bitwidth - INTVAL (XEXP (x, 1)));
4046 break;
4048 case SIGN_EXTEND:
4049 return (bitwidth - GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
4050 + cached_num_sign_bit_copies (XEXP (x, 0), VOIDmode,
4051 known_x, known_mode, known_ret));
4053 case TRUNCATE:
4054 /* For a smaller object, just ignore the high bits. */
4055 num0 = cached_num_sign_bit_copies (XEXP (x, 0), VOIDmode,
4056 known_x, known_mode, known_ret);
4057 return MAX (1, (num0 - (int) (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
4058 - bitwidth)));
4060 case NOT:
4061 return cached_num_sign_bit_copies (XEXP (x, 0), mode,
4062 known_x, known_mode, known_ret);
4064 case ROTATE: case ROTATERT:
4065 /* If we are rotating left by a number of bits less than the number
4066 of sign bit copies, we can just subtract that amount from the
4067 number. */
4068 if (GET_CODE (XEXP (x, 1)) == CONST_INT
4069 && INTVAL (XEXP (x, 1)) >= 0
4070 && INTVAL (XEXP (x, 1)) < (int) bitwidth)
4072 num0 = cached_num_sign_bit_copies (XEXP (x, 0), mode,
4073 known_x, known_mode, known_ret);
4074 return MAX (1, num0 - (code == ROTATE ? INTVAL (XEXP (x, 1))
4075 : (int) bitwidth - INTVAL (XEXP (x, 1))));
4077 break;
4079 case NEG:
4080 /* In general, this subtracts one sign bit copy. But if the value
4081 is known to be positive, the number of sign bit copies is the
4082 same as that of the input. Finally, if the input has just one bit
4083 that might be nonzero, all the bits are copies of the sign bit. */
4084 num0 = cached_num_sign_bit_copies (XEXP (x, 0), mode,
4085 known_x, known_mode, known_ret);
4086 if (bitwidth > HOST_BITS_PER_WIDE_INT)
4087 return num0 > 1 ? num0 - 1 : 1;
4089 nonzero = nonzero_bits (XEXP (x, 0), mode);
4090 if (nonzero == 1)
4091 return bitwidth;
4093 if (num0 > 1
4094 && (((HOST_WIDE_INT) 1 << (bitwidth - 1)) & nonzero))
4095 num0--;
4097 return num0;
4099 case IOR: case AND: case XOR:
4100 case SMIN: case SMAX: case UMIN: case UMAX:
4101 /* Logical operations will preserve the number of sign-bit copies.
4102 MIN and MAX operations always return one of the operands. */
4103 num0 = cached_num_sign_bit_copies (XEXP (x, 0), mode,
4104 known_x, known_mode, known_ret);
4105 num1 = cached_num_sign_bit_copies (XEXP (x, 1), mode,
4106 known_x, known_mode, known_ret);
4107 return MIN (num0, num1);
4109 case PLUS: case MINUS:
4110 /* For addition and subtraction, we can have a 1-bit carry. However,
4111 if we are subtracting 1 from a positive number, there will not
4112 be such a carry. Furthermore, if the positive number is known to
4113 be 0 or 1, we know the result is either -1 or 0. */
4115 if (code == PLUS && XEXP (x, 1) == constm1_rtx
4116 && bitwidth <= HOST_BITS_PER_WIDE_INT)
4118 nonzero = nonzero_bits (XEXP (x, 0), mode);
4119 if ((((HOST_WIDE_INT) 1 << (bitwidth - 1)) & nonzero) == 0)
4120 return (nonzero == 1 || nonzero == 0 ? bitwidth
4121 : bitwidth - floor_log2 (nonzero) - 1);
4124 num0 = cached_num_sign_bit_copies (XEXP (x, 0), mode,
4125 known_x, known_mode, known_ret);
4126 num1 = cached_num_sign_bit_copies (XEXP (x, 1), mode,
4127 known_x, known_mode, known_ret);
4128 result = MAX (1, MIN (num0, num1) - 1);
4130 #ifdef POINTERS_EXTEND_UNSIGNED
4131 /* If pointers extend signed and this is an addition or subtraction
4132 to a pointer in Pmode, all the bits above ptr_mode are known to be
4133 sign bit copies. */
4134 if (! POINTERS_EXTEND_UNSIGNED && GET_MODE (x) == Pmode
4135 && (code == PLUS || code == MINUS)
4136 && REG_P (XEXP (x, 0)) && REG_POINTER (XEXP (x, 0)))
4137 result = MAX ((int) (GET_MODE_BITSIZE (Pmode)
4138 - GET_MODE_BITSIZE (ptr_mode) + 1),
4139 result);
4140 #endif
4141 return result;
4143 case MULT:
4144 /* The number of bits of the product is the sum of the number of
4145 bits of both terms. However, unless one of the terms if known
4146 to be positive, we must allow for an additional bit since negating
4147 a negative number can remove one sign bit copy. */
4149 num0 = cached_num_sign_bit_copies (XEXP (x, 0), mode,
4150 known_x, known_mode, known_ret);
4151 num1 = cached_num_sign_bit_copies (XEXP (x, 1), mode,
4152 known_x, known_mode, known_ret);
4154 result = bitwidth - (bitwidth - num0) - (bitwidth - num1);
4155 if (result > 0
4156 && (bitwidth > HOST_BITS_PER_WIDE_INT
4157 || (((nonzero_bits (XEXP (x, 0), mode)
4158 & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
4159 && ((nonzero_bits (XEXP (x, 1), mode)
4160 & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0))))
4161 result--;
4163 return MAX (1, result);
4165 case UDIV:
4166 /* The result must be <= the first operand. If the first operand
4167 has the high bit set, we know nothing about the number of sign
4168 bit copies. */
4169 if (bitwidth > HOST_BITS_PER_WIDE_INT)
4170 return 1;
4171 else if ((nonzero_bits (XEXP (x, 0), mode)
4172 & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
4173 return 1;
4174 else
4175 return cached_num_sign_bit_copies (XEXP (x, 0), mode,
4176 known_x, known_mode, known_ret);
4178 case UMOD:
4179 /* The result must be <= the second operand. */
4180 return cached_num_sign_bit_copies (XEXP (x, 1), mode,
4181 known_x, known_mode, known_ret);
4183 case DIV:
4184 /* Similar to unsigned division, except that we have to worry about
4185 the case where the divisor is negative, in which case we have
4186 to add 1. */
4187 result = cached_num_sign_bit_copies (XEXP (x, 0), mode,
4188 known_x, known_mode, known_ret);
4189 if (result > 1
4190 && (bitwidth > HOST_BITS_PER_WIDE_INT
4191 || (nonzero_bits (XEXP (x, 1), mode)
4192 & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0))
4193 result--;
4195 return result;
4197 case MOD:
4198 result = cached_num_sign_bit_copies (XEXP (x, 1), mode,
4199 known_x, known_mode, known_ret);
4200 if (result > 1
4201 && (bitwidth > HOST_BITS_PER_WIDE_INT
4202 || (nonzero_bits (XEXP (x, 1), mode)
4203 & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0))
4204 result--;
4206 return result;
4208 case ASHIFTRT:
4209 /* Shifts by a constant add to the number of bits equal to the
4210 sign bit. */
4211 num0 = cached_num_sign_bit_copies (XEXP (x, 0), mode,
4212 known_x, known_mode, known_ret);
4213 if (GET_CODE (XEXP (x, 1)) == CONST_INT
4214 && INTVAL (XEXP (x, 1)) > 0)
4215 num0 = MIN ((int) bitwidth, num0 + INTVAL (XEXP (x, 1)));
4217 return num0;
4219 case ASHIFT:
4220 /* Left shifts destroy copies. */
4221 if (GET_CODE (XEXP (x, 1)) != CONST_INT
4222 || INTVAL (XEXP (x, 1)) < 0
4223 || INTVAL (XEXP (x, 1)) >= (int) bitwidth)
4224 return 1;
4226 num0 = cached_num_sign_bit_copies (XEXP (x, 0), mode,
4227 known_x, known_mode, known_ret);
4228 return MAX (1, num0 - INTVAL (XEXP (x, 1)));
4230 case IF_THEN_ELSE:
4231 num0 = cached_num_sign_bit_copies (XEXP (x, 1), mode,
4232 known_x, known_mode, known_ret);
4233 num1 = cached_num_sign_bit_copies (XEXP (x, 2), mode,
4234 known_x, known_mode, known_ret);
4235 return MIN (num0, num1);
4237 case EQ: case NE: case GE: case GT: case LE: case LT:
4238 case UNEQ: case LTGT: case UNGE: case UNGT: case UNLE: case UNLT:
4239 case GEU: case GTU: case LEU: case LTU:
4240 case UNORDERED: case ORDERED:
4241 /* If the constant is negative, take its 1's complement and remask.
4242 Then see how many zero bits we have. */
4243 nonzero = STORE_FLAG_VALUE;
4244 if (bitwidth <= HOST_BITS_PER_WIDE_INT
4245 && (nonzero & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
4246 nonzero = (~nonzero) & GET_MODE_MASK (mode);
4248 return (nonzero == 0 ? bitwidth : bitwidth - floor_log2 (nonzero) - 1);
4250 default:
4251 break;
4254 /* If we haven't been able to figure it out by one of the above rules,
4255 see if some of the high-order bits are known to be zero. If so,
4256 count those bits and return one less than that amount. If we can't
4257 safely compute the mask for this mode, always return BITWIDTH. */
4259 bitwidth = GET_MODE_BITSIZE (mode);
4260 if (bitwidth > HOST_BITS_PER_WIDE_INT)
4261 return 1;
4263 nonzero = nonzero_bits (x, mode);
4264 return nonzero & ((HOST_WIDE_INT) 1 << (bitwidth - 1))
4265 ? 1 : bitwidth - floor_log2 (nonzero) - 1;
4268 /* Calculate the rtx_cost of a single instruction. A return value of
4269 zero indicates an instruction pattern without a known cost. */
4272 insn_rtx_cost (rtx pat)
4274 int i, cost;
4275 rtx set;
4277 /* Extract the single set rtx from the instruction pattern.
4278 We can't use single_set since we only have the pattern. */
4279 if (GET_CODE (pat) == SET)
4280 set = pat;
4281 else if (GET_CODE (pat) == PARALLEL)
4283 set = NULL_RTX;
4284 for (i = 0; i < XVECLEN (pat, 0); i++)
4286 rtx x = XVECEXP (pat, 0, i);
4287 if (GET_CODE (x) == SET)
4289 if (set)
4290 return 0;
4291 set = x;
4294 if (!set)
4295 return 0;
4297 else
4298 return 0;
4300 cost = rtx_cost (SET_SRC (set), SET);
4301 return cost > 0 ? cost : COSTS_N_INSNS (1);
4304 /* Given an insn INSN and condition COND, return the condition in a
4305 canonical form to simplify testing by callers. Specifically:
4307 (1) The code will always be a comparison operation (EQ, NE, GT, etc.).
4308 (2) Both operands will be machine operands; (cc0) will have been replaced.
4309 (3) If an operand is a constant, it will be the second operand.
4310 (4) (LE x const) will be replaced with (LT x <const+1>) and similarly
4311 for GE, GEU, and LEU.
4313 If the condition cannot be understood, or is an inequality floating-point
4314 comparison which needs to be reversed, 0 will be returned.
4316 If REVERSE is nonzero, then reverse the condition prior to canonizing it.
4318 If EARLIEST is nonzero, it is a pointer to a place where the earliest
4319 insn used in locating the condition was found. If a replacement test
4320 of the condition is desired, it should be placed in front of that
4321 insn and we will be sure that the inputs are still valid.
4323 If WANT_REG is nonzero, we wish the condition to be relative to that
4324 register, if possible. Therefore, do not canonicalize the condition
4325 further. If ALLOW_CC_MODE is nonzero, allow the condition returned
4326 to be a compare to a CC mode register.
4328 If VALID_AT_INSN_P, the condition must be valid at both *EARLIEST
4329 and at INSN. */
4332 canonicalize_condition (rtx insn, rtx cond, int reverse, rtx *earliest,
4333 rtx want_reg, int allow_cc_mode, int valid_at_insn_p)
4335 enum rtx_code code;
4336 rtx prev = insn;
4337 rtx set;
4338 rtx tem;
4339 rtx op0, op1;
4340 int reverse_code = 0;
4341 enum machine_mode mode;
4343 code = GET_CODE (cond);
4344 mode = GET_MODE (cond);
4345 op0 = XEXP (cond, 0);
4346 op1 = XEXP (cond, 1);
4348 if (reverse)
4349 code = reversed_comparison_code (cond, insn);
4350 if (code == UNKNOWN)
4351 return 0;
4353 if (earliest)
4354 *earliest = insn;
4356 /* If we are comparing a register with zero, see if the register is set
4357 in the previous insn to a COMPARE or a comparison operation. Perform
4358 the same tests as a function of STORE_FLAG_VALUE as find_comparison_args
4359 in cse.c */
4361 while ((GET_RTX_CLASS (code) == RTX_COMPARE
4362 || GET_RTX_CLASS (code) == RTX_COMM_COMPARE)
4363 && op1 == CONST0_RTX (GET_MODE (op0))
4364 && op0 != want_reg)
4366 /* Set nonzero when we find something of interest. */
4367 rtx x = 0;
4369 #ifdef HAVE_cc0
4370 /* If comparison with cc0, import actual comparison from compare
4371 insn. */
4372 if (op0 == cc0_rtx)
4374 if ((prev = prev_nonnote_insn (prev)) == 0
4375 || !NONJUMP_INSN_P (prev)
4376 || (set = single_set (prev)) == 0
4377 || SET_DEST (set) != cc0_rtx)
4378 return 0;
4380 op0 = SET_SRC (set);
4381 op1 = CONST0_RTX (GET_MODE (op0));
4382 if (earliest)
4383 *earliest = prev;
4385 #endif
4387 /* If this is a COMPARE, pick up the two things being compared. */
4388 if (GET_CODE (op0) == COMPARE)
4390 op1 = XEXP (op0, 1);
4391 op0 = XEXP (op0, 0);
4392 continue;
4394 else if (!REG_P (op0))
4395 break;
4397 /* Go back to the previous insn. Stop if it is not an INSN. We also
4398 stop if it isn't a single set or if it has a REG_INC note because
4399 we don't want to bother dealing with it. */
4401 if ((prev = prev_nonnote_insn (prev)) == 0
4402 || !NONJUMP_INSN_P (prev)
4403 || FIND_REG_INC_NOTE (prev, NULL_RTX))
4404 break;
4406 set = set_of (op0, prev);
4408 if (set
4409 && (GET_CODE (set) != SET
4410 || !rtx_equal_p (SET_DEST (set), op0)))
4411 break;
4413 /* If this is setting OP0, get what it sets it to if it looks
4414 relevant. */
4415 if (set)
4417 enum machine_mode inner_mode = GET_MODE (SET_DEST (set));
4418 #ifdef FLOAT_STORE_FLAG_VALUE
4419 REAL_VALUE_TYPE fsfv;
4420 #endif
4422 /* ??? We may not combine comparisons done in a CCmode with
4423 comparisons not done in a CCmode. This is to aid targets
4424 like Alpha that have an IEEE compliant EQ instruction, and
4425 a non-IEEE compliant BEQ instruction. The use of CCmode is
4426 actually artificial, simply to prevent the combination, but
4427 should not affect other platforms.
4429 However, we must allow VOIDmode comparisons to match either
4430 CCmode or non-CCmode comparison, because some ports have
4431 modeless comparisons inside branch patterns.
4433 ??? This mode check should perhaps look more like the mode check
4434 in simplify_comparison in combine. */
4436 if ((GET_CODE (SET_SRC (set)) == COMPARE
4437 || (((code == NE
4438 || (code == LT
4439 && GET_MODE_CLASS (inner_mode) == MODE_INT
4440 && (GET_MODE_BITSIZE (inner_mode)
4441 <= HOST_BITS_PER_WIDE_INT)
4442 && (STORE_FLAG_VALUE
4443 & ((HOST_WIDE_INT) 1
4444 << (GET_MODE_BITSIZE (inner_mode) - 1))))
4445 #ifdef FLOAT_STORE_FLAG_VALUE
4446 || (code == LT
4447 && GET_MODE_CLASS (inner_mode) == MODE_FLOAT
4448 && (fsfv = FLOAT_STORE_FLAG_VALUE (inner_mode),
4449 REAL_VALUE_NEGATIVE (fsfv)))
4450 #endif
4452 && COMPARISON_P (SET_SRC (set))))
4453 && (((GET_MODE_CLASS (mode) == MODE_CC)
4454 == (GET_MODE_CLASS (inner_mode) == MODE_CC))
4455 || mode == VOIDmode || inner_mode == VOIDmode))
4456 x = SET_SRC (set);
4457 else if (((code == EQ
4458 || (code == GE
4459 && (GET_MODE_BITSIZE (inner_mode)
4460 <= HOST_BITS_PER_WIDE_INT)
4461 && GET_MODE_CLASS (inner_mode) == MODE_INT
4462 && (STORE_FLAG_VALUE
4463 & ((HOST_WIDE_INT) 1
4464 << (GET_MODE_BITSIZE (inner_mode) - 1))))
4465 #ifdef FLOAT_STORE_FLAG_VALUE
4466 || (code == GE
4467 && GET_MODE_CLASS (inner_mode) == MODE_FLOAT
4468 && (fsfv = FLOAT_STORE_FLAG_VALUE (inner_mode),
4469 REAL_VALUE_NEGATIVE (fsfv)))
4470 #endif
4472 && COMPARISON_P (SET_SRC (set))
4473 && (((GET_MODE_CLASS (mode) == MODE_CC)
4474 == (GET_MODE_CLASS (inner_mode) == MODE_CC))
4475 || mode == VOIDmode || inner_mode == VOIDmode))
4478 reverse_code = 1;
4479 x = SET_SRC (set);
4481 else
4482 break;
4485 else if (reg_set_p (op0, prev))
4486 /* If this sets OP0, but not directly, we have to give up. */
4487 break;
4489 if (x)
4491 /* If the caller is expecting the condition to be valid at INSN,
4492 make sure X doesn't change before INSN. */
4493 if (valid_at_insn_p)
4494 if (modified_in_p (x, prev) || modified_between_p (x, prev, insn))
4495 break;
4496 if (COMPARISON_P (x))
4497 code = GET_CODE (x);
4498 if (reverse_code)
4500 code = reversed_comparison_code (x, prev);
4501 if (code == UNKNOWN)
4502 return 0;
4503 reverse_code = 0;
4506 op0 = XEXP (x, 0), op1 = XEXP (x, 1);
4507 if (earliest)
4508 *earliest = prev;
4512 /* If constant is first, put it last. */
4513 if (CONSTANT_P (op0))
4514 code = swap_condition (code), tem = op0, op0 = op1, op1 = tem;
4516 /* If OP0 is the result of a comparison, we weren't able to find what
4517 was really being compared, so fail. */
4518 if (!allow_cc_mode
4519 && GET_MODE_CLASS (GET_MODE (op0)) == MODE_CC)
4520 return 0;
4522 /* Canonicalize any ordered comparison with integers involving equality
4523 if we can do computations in the relevant mode and we do not
4524 overflow. */
4526 if (GET_MODE_CLASS (GET_MODE (op0)) != MODE_CC
4527 && GET_CODE (op1) == CONST_INT
4528 && GET_MODE (op0) != VOIDmode
4529 && GET_MODE_BITSIZE (GET_MODE (op0)) <= HOST_BITS_PER_WIDE_INT)
4531 HOST_WIDE_INT const_val = INTVAL (op1);
4532 unsigned HOST_WIDE_INT uconst_val = const_val;
4533 unsigned HOST_WIDE_INT max_val
4534 = (unsigned HOST_WIDE_INT) GET_MODE_MASK (GET_MODE (op0));
4536 switch (code)
4538 case LE:
4539 if ((unsigned HOST_WIDE_INT) const_val != max_val >> 1)
4540 code = LT, op1 = gen_int_mode (const_val + 1, GET_MODE (op0));
4541 break;
4543 /* When cross-compiling, const_val might be sign-extended from
4544 BITS_PER_WORD to HOST_BITS_PER_WIDE_INT */
4545 case GE:
4546 if ((HOST_WIDE_INT) (const_val & max_val)
4547 != (((HOST_WIDE_INT) 1
4548 << (GET_MODE_BITSIZE (GET_MODE (op0)) - 1))))
4549 code = GT, op1 = gen_int_mode (const_val - 1, GET_MODE (op0));
4550 break;
4552 case LEU:
4553 if (uconst_val < max_val)
4554 code = LTU, op1 = gen_int_mode (uconst_val + 1, GET_MODE (op0));
4555 break;
4557 case GEU:
4558 if (uconst_val != 0)
4559 code = GTU, op1 = gen_int_mode (uconst_val - 1, GET_MODE (op0));
4560 break;
4562 default:
4563 break;
4567 /* Never return CC0; return zero instead. */
4568 if (CC0_P (op0))
4569 return 0;
4571 return gen_rtx_fmt_ee (code, VOIDmode, op0, op1);
4574 /* Given a jump insn JUMP, return the condition that will cause it to branch
4575 to its JUMP_LABEL. If the condition cannot be understood, or is an
4576 inequality floating-point comparison which needs to be reversed, 0 will
4577 be returned.
4579 If EARLIEST is nonzero, it is a pointer to a place where the earliest
4580 insn used in locating the condition was found. If a replacement test
4581 of the condition is desired, it should be placed in front of that
4582 insn and we will be sure that the inputs are still valid. If EARLIEST
4583 is null, the returned condition will be valid at INSN.
4585 If ALLOW_CC_MODE is nonzero, allow the condition returned to be a
4586 compare CC mode register.
4588 VALID_AT_INSN_P is the same as for canonicalize_condition. */
4591 get_condition (rtx jump, rtx *earliest, int allow_cc_mode, int valid_at_insn_p)
4593 rtx cond;
4594 int reverse;
4595 rtx set;
4597 /* If this is not a standard conditional jump, we can't parse it. */
4598 if (!JUMP_P (jump)
4599 || ! any_condjump_p (jump))
4600 return 0;
4601 set = pc_set (jump);
4603 cond = XEXP (SET_SRC (set), 0);
4605 /* If this branches to JUMP_LABEL when the condition is false, reverse
4606 the condition. */
4607 reverse
4608 = GET_CODE (XEXP (SET_SRC (set), 2)) == LABEL_REF
4609 && XEXP (XEXP (SET_SRC (set), 2), 0) == JUMP_LABEL (jump);
4611 return canonicalize_condition (jump, cond, reverse, earliest, NULL_RTX,
4612 allow_cc_mode, valid_at_insn_p);