Initial revision
[official-gcc.git] / gcc / rtlanal.c
blobd39071bf959cd888f0a7b405421477f7e71b8a56
1 /* Analyze RTL for C-Compiler
2 Copyright (C) 1987, 88, 92-98, 1999 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
22 #include "config.h"
23 #include "system.h"
24 #include "rtl.h"
26 static int rtx_addr_can_trap_p PROTO((rtx));
27 static void reg_set_p_1 PROTO((rtx, rtx));
28 static void reg_set_last_1 PROTO((rtx, rtx));
31 /* Forward declarations */
32 static int jmp_uses_reg_or_mem PROTO((rtx));
34 /* Bit flags that specify the machine subtype we are compiling for.
35 Bits are tested using macros TARGET_... defined in the tm.h file
36 and set by `-m...' switches. Must be defined in rtlanal.c. */
38 int target_flags;
40 /* Return 1 if the value of X is unstable
41 (would be different at a different point in the program).
42 The frame pointer, arg pointer, etc. are considered stable
43 (within one function) and so is anything marked `unchanging'. */
45 int
46 rtx_unstable_p (x)
47 rtx x;
49 register RTX_CODE code = GET_CODE (x);
50 register int i;
51 register char *fmt;
53 if (code == MEM)
54 return ! RTX_UNCHANGING_P (x);
56 if (code == QUEUED)
57 return 1;
59 if (code == CONST || code == CONST_INT)
60 return 0;
62 if (code == REG)
63 return ! (REGNO (x) == FRAME_POINTER_REGNUM
64 || REGNO (x) == HARD_FRAME_POINTER_REGNUM
65 || REGNO (x) == ARG_POINTER_REGNUM
66 || RTX_UNCHANGING_P (x));
68 fmt = GET_RTX_FORMAT (code);
69 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
70 if (fmt[i] == 'e')
71 if (rtx_unstable_p (XEXP (x, i)))
72 return 1;
73 return 0;
76 /* Return 1 if X has a value that can vary even between two
77 executions of the program. 0 means X can be compared reliably
78 against certain constants or near-constants.
79 The frame pointer and the arg pointer are considered constant. */
81 int
82 rtx_varies_p (x)
83 rtx x;
85 register RTX_CODE code = GET_CODE (x);
86 register int i;
87 register char *fmt;
89 switch (code)
91 case MEM:
92 case QUEUED:
93 return 1;
95 case CONST:
96 case CONST_INT:
97 case CONST_DOUBLE:
98 case SYMBOL_REF:
99 case LABEL_REF:
100 return 0;
102 case REG:
103 /* Note that we have to test for the actual rtx used for the frame
104 and arg pointers and not just the register number in case we have
105 eliminated the frame and/or arg pointer and are using it
106 for pseudos. */
107 return ! (x == frame_pointer_rtx || x == hard_frame_pointer_rtx
108 || x == arg_pointer_rtx || x == pic_offset_table_rtx);
110 case LO_SUM:
111 /* The operand 0 of a LO_SUM is considered constant
112 (in fact is it related specifically to operand 1). */
113 return rtx_varies_p (XEXP (x, 1));
115 default:
116 break;
119 fmt = GET_RTX_FORMAT (code);
120 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
121 if (fmt[i] == 'e')
122 if (rtx_varies_p (XEXP (x, i)))
123 return 1;
124 return 0;
127 /* Return 0 if the use of X as an address in a MEM can cause a trap. */
129 static int
130 rtx_addr_can_trap_p (x)
131 register rtx x;
133 register enum rtx_code code = GET_CODE (x);
135 switch (code)
137 case SYMBOL_REF:
138 case LABEL_REF:
139 /* SYMBOL_REF is problematic due to the possible presence of
140 a #pragma weak, but to say that loads from symbols can trap is
141 *very* costly. It's not at all clear what's best here. For
142 now, we ignore the impact of #pragma weak. */
143 return 0;
145 case REG:
146 /* As in rtx_varies_p, we have to use the actual rtx, not reg number. */
147 return ! (x == frame_pointer_rtx || x == hard_frame_pointer_rtx
148 || x == stack_pointer_rtx || x == arg_pointer_rtx);
150 case CONST:
151 return rtx_addr_can_trap_p (XEXP (x, 0));
153 case PLUS:
154 /* An address is assumed not to trap if it is an address that can't
155 trap plus a constant integer. */
156 return (rtx_addr_can_trap_p (XEXP (x, 0))
157 || GET_CODE (XEXP (x, 1)) != CONST_INT);
159 case LO_SUM:
160 return rtx_addr_can_trap_p (XEXP (x, 1));
162 default:
163 break;
166 /* If it isn't one of the case above, it can cause a trap. */
167 return 1;
170 /* Return 1 if X refers to a memory location whose address
171 cannot be compared reliably with constant addresses,
172 or if X refers to a BLKmode memory object. */
175 rtx_addr_varies_p (x)
176 rtx x;
178 register enum rtx_code code;
179 register int i;
180 register char *fmt;
182 if (x == 0)
183 return 0;
185 code = GET_CODE (x);
186 if (code == MEM)
187 return GET_MODE (x) == BLKmode || rtx_varies_p (XEXP (x, 0));
189 fmt = GET_RTX_FORMAT (code);
190 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
191 if (fmt[i] == 'e')
193 if (rtx_addr_varies_p (XEXP (x, i)))
194 return 1;
196 else if (fmt[i] == 'E')
198 int j;
199 for (j = 0; j < XVECLEN (x, i); j++)
200 if (rtx_addr_varies_p (XVECEXP (x, i, j)))
201 return 1;
203 return 0;
206 /* Return the value of the integer term in X, if one is apparent;
207 otherwise return 0.
208 Only obvious integer terms are detected.
209 This is used in cse.c with the `related_value' field.*/
211 HOST_WIDE_INT
212 get_integer_term (x)
213 rtx x;
215 if (GET_CODE (x) == CONST)
216 x = XEXP (x, 0);
218 if (GET_CODE (x) == MINUS
219 && GET_CODE (XEXP (x, 1)) == CONST_INT)
220 return - INTVAL (XEXP (x, 1));
221 if (GET_CODE (x) == PLUS
222 && GET_CODE (XEXP (x, 1)) == CONST_INT)
223 return INTVAL (XEXP (x, 1));
224 return 0;
227 /* If X is a constant, return the value sans apparent integer term;
228 otherwise return 0.
229 Only obvious integer terms are detected. */
232 get_related_value (x)
233 rtx x;
235 if (GET_CODE (x) != CONST)
236 return 0;
237 x = XEXP (x, 0);
238 if (GET_CODE (x) == PLUS
239 && GET_CODE (XEXP (x, 1)) == CONST_INT)
240 return XEXP (x, 0);
241 else if (GET_CODE (x) == MINUS
242 && GET_CODE (XEXP (x, 1)) == CONST_INT)
243 return XEXP (x, 0);
244 return 0;
247 /* Nonzero if register REG appears somewhere within IN.
248 Also works if REG is not a register; in this case it checks
249 for a subexpression of IN that is Lisp "equal" to REG. */
252 reg_mentioned_p (reg, in)
253 register rtx reg, in;
255 register char *fmt;
256 register int i;
257 register enum rtx_code code;
259 if (in == 0)
260 return 0;
262 if (reg == in)
263 return 1;
265 if (GET_CODE (in) == LABEL_REF)
266 return reg == XEXP (in, 0);
268 code = GET_CODE (in);
270 switch (code)
272 /* Compare registers by number. */
273 case REG:
274 return GET_CODE (reg) == REG && REGNO (in) == REGNO (reg);
276 /* These codes have no constituent expressions
277 and are unique. */
278 case SCRATCH:
279 case CC0:
280 case PC:
281 return 0;
283 case CONST_INT:
284 return GET_CODE (reg) == CONST_INT && INTVAL (in) == INTVAL (reg);
286 case CONST_DOUBLE:
287 /* These are kept unique for a given value. */
288 return 0;
290 default:
291 break;
294 if (GET_CODE (reg) == code && rtx_equal_p (reg, in))
295 return 1;
297 fmt = GET_RTX_FORMAT (code);
299 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
301 if (fmt[i] == 'E')
303 register int j;
304 for (j = XVECLEN (in, i) - 1; j >= 0; j--)
305 if (reg_mentioned_p (reg, XVECEXP (in, i, j)))
306 return 1;
308 else if (fmt[i] == 'e'
309 && reg_mentioned_p (reg, XEXP (in, i)))
310 return 1;
312 return 0;
315 /* Return 1 if in between BEG and END, exclusive of BEG and END, there is
316 no CODE_LABEL insn. */
319 no_labels_between_p (beg, end)
320 rtx beg, end;
322 register rtx p;
323 for (p = NEXT_INSN (beg); p != end; p = NEXT_INSN (p))
324 if (GET_CODE (p) == CODE_LABEL)
325 return 0;
326 return 1;
329 /* Return 1 if in between BEG and END, exclusive of BEG and END, there is
330 no JUMP_INSN insn. */
333 no_jumps_between_p (beg, end)
334 rtx beg, end;
336 register rtx p;
337 for (p = NEXT_INSN (beg); p != end; p = NEXT_INSN (p))
338 if (GET_CODE (p) == JUMP_INSN)
339 return 0;
340 return 1;
343 /* Nonzero if register REG is used in an insn between
344 FROM_INSN and TO_INSN (exclusive of those two). */
347 reg_used_between_p (reg, from_insn, to_insn)
348 rtx reg, from_insn, to_insn;
350 register rtx insn;
352 if (from_insn == to_insn)
353 return 0;
355 for (insn = NEXT_INSN (from_insn); insn != to_insn; insn = NEXT_INSN (insn))
356 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i'
357 && (reg_overlap_mentioned_p (reg, PATTERN (insn))
358 || (GET_CODE (insn) == CALL_INSN
359 && (find_reg_fusage (insn, USE, reg)
360 || find_reg_fusage (insn, CLOBBER, reg)))))
361 return 1;
362 return 0;
365 /* Nonzero if the old value of X, a register, is referenced in BODY. If X
366 is entirely replaced by a new value and the only use is as a SET_DEST,
367 we do not consider it a reference. */
370 reg_referenced_p (x, body)
371 rtx x;
372 rtx body;
374 int i;
376 switch (GET_CODE (body))
378 case SET:
379 if (reg_overlap_mentioned_p (x, SET_SRC (body)))
380 return 1;
382 /* If the destination is anything other than CC0, PC, a REG or a SUBREG
383 of a REG that occupies all of the REG, the insn references X if
384 it is mentioned in the destination. */
385 if (GET_CODE (SET_DEST (body)) != CC0
386 && GET_CODE (SET_DEST (body)) != PC
387 && GET_CODE (SET_DEST (body)) != REG
388 && ! (GET_CODE (SET_DEST (body)) == SUBREG
389 && GET_CODE (SUBREG_REG (SET_DEST (body))) == REG
390 && (((GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (body))))
391 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
392 == ((GET_MODE_SIZE (GET_MODE (SET_DEST (body)))
393 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)))
394 && reg_overlap_mentioned_p (x, SET_DEST (body)))
395 return 1;
396 return 0;
398 case ASM_OPERANDS:
399 for (i = ASM_OPERANDS_INPUT_LENGTH (body) - 1; i >= 0; i--)
400 if (reg_overlap_mentioned_p (x, ASM_OPERANDS_INPUT (body, i)))
401 return 1;
402 return 0;
404 case CALL:
405 case USE:
406 return reg_overlap_mentioned_p (x, body);
408 case TRAP_IF:
409 return reg_overlap_mentioned_p (x, TRAP_CONDITION (body));
411 case UNSPEC:
412 case UNSPEC_VOLATILE:
413 case PARALLEL:
414 for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
415 if (reg_referenced_p (x, XVECEXP (body, 0, i)))
416 return 1;
417 return 0;
419 default:
420 return 0;
424 /* Nonzero if register REG is referenced in an insn between
425 FROM_INSN and TO_INSN (exclusive of those two). Sets of REG do
426 not count. */
429 reg_referenced_between_p (reg, from_insn, to_insn)
430 rtx reg, from_insn, to_insn;
432 register rtx insn;
434 if (from_insn == to_insn)
435 return 0;
437 for (insn = NEXT_INSN (from_insn); insn != to_insn; insn = NEXT_INSN (insn))
438 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i'
439 && (reg_referenced_p (reg, PATTERN (insn))
440 || (GET_CODE (insn) == CALL_INSN
441 && find_reg_fusage (insn, USE, reg))))
442 return 1;
443 return 0;
446 /* Nonzero if register REG is set or clobbered in an insn between
447 FROM_INSN and TO_INSN (exclusive of those two). */
450 reg_set_between_p (reg, from_insn, to_insn)
451 rtx reg, from_insn, to_insn;
453 register rtx insn;
455 if (from_insn == to_insn)
456 return 0;
458 for (insn = NEXT_INSN (from_insn); insn != to_insn; insn = NEXT_INSN (insn))
459 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i'
460 && reg_set_p (reg, insn))
461 return 1;
462 return 0;
465 /* Internals of reg_set_between_p. */
467 static rtx reg_set_reg;
468 static int reg_set_flag;
470 static void
471 reg_set_p_1 (x, pat)
472 rtx x;
473 rtx pat ATTRIBUTE_UNUSED;
475 /* We don't want to return 1 if X is a MEM that contains a register
476 within REG_SET_REG. */
478 if ((GET_CODE (x) != MEM)
479 && reg_overlap_mentioned_p (reg_set_reg, x))
480 reg_set_flag = 1;
484 reg_set_p (reg, insn)
485 rtx reg, insn;
487 rtx body = insn;
489 /* We can be passed an insn or part of one. If we are passed an insn,
490 check if a side-effect of the insn clobbers REG. */
491 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
493 if (FIND_REG_INC_NOTE (insn, reg)
494 || (GET_CODE (insn) == CALL_INSN
495 /* We'd like to test call_used_regs here, but rtlanal.c can't
496 reference that variable due to its use in genattrtab. So
497 we'll just be more conservative.
499 ??? Unless we could ensure that the CALL_INSN_FUNCTION_USAGE
500 information holds all clobbered registers. */
501 && ((GET_CODE (reg) == REG
502 && REGNO (reg) < FIRST_PSEUDO_REGISTER)
503 || GET_CODE (reg) == MEM
504 || find_reg_fusage (insn, CLOBBER, reg))))
505 return 1;
507 body = PATTERN (insn);
510 reg_set_reg = reg;
511 reg_set_flag = 0;
512 note_stores (body, reg_set_p_1);
513 return reg_set_flag;
516 /* Similar to reg_set_between_p, but check all registers in X. Return 0
517 only if none of them are modified between START and END. Do not
518 consider non-registers one way or the other. */
521 regs_set_between_p (x, start, end)
522 rtx x;
523 rtx start, end;
525 enum rtx_code code = GET_CODE (x);
526 char *fmt;
527 int i, j;
529 switch (code)
531 case CONST_INT:
532 case CONST_DOUBLE:
533 case CONST:
534 case SYMBOL_REF:
535 case LABEL_REF:
536 case PC:
537 case CC0:
538 return 0;
540 case REG:
541 return reg_set_between_p (x, start, end);
543 default:
544 break;
547 fmt = GET_RTX_FORMAT (code);
548 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
550 if (fmt[i] == 'e' && regs_set_between_p (XEXP (x, i), start, end))
551 return 1;
553 else if (fmt[i] == 'E')
554 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
555 if (regs_set_between_p (XVECEXP (x, i, j), start, end))
556 return 1;
559 return 0;
562 /* Similar to reg_set_between_p, but check all registers in X. Return 0
563 only if none of them are modified between START and END. Return 1 if
564 X contains a MEM; this routine does not perform any memory aliasing. */
567 modified_between_p (x, start, end)
568 rtx x;
569 rtx start, end;
571 enum rtx_code code = GET_CODE (x);
572 char *fmt;
573 int i, j;
575 switch (code)
577 case CONST_INT:
578 case CONST_DOUBLE:
579 case CONST:
580 case SYMBOL_REF:
581 case LABEL_REF:
582 return 0;
584 case PC:
585 case CC0:
586 return 1;
588 case MEM:
589 /* If the memory is not constant, assume it is modified. If it is
590 constant, we still have to check the address. */
591 if (! RTX_UNCHANGING_P (x))
592 return 1;
593 break;
595 case REG:
596 return reg_set_between_p (x, start, end);
598 default:
599 break;
602 fmt = GET_RTX_FORMAT (code);
603 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
605 if (fmt[i] == 'e' && modified_between_p (XEXP (x, i), start, end))
606 return 1;
608 if (fmt[i] == 'E')
609 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
610 if (modified_between_p (XVECEXP (x, i, j), start, end))
611 return 1;
614 return 0;
617 /* Similar to reg_set_p, but check all registers in X. Return 0 only if none
618 of them are modified in INSN. Return 1 if X contains a MEM; this routine
619 does not perform any memory aliasing. */
622 modified_in_p (x, insn)
623 rtx x;
624 rtx insn;
626 enum rtx_code code = GET_CODE (x);
627 char *fmt;
628 int i, j;
630 switch (code)
632 case CONST_INT:
633 case CONST_DOUBLE:
634 case CONST:
635 case SYMBOL_REF:
636 case LABEL_REF:
637 return 0;
639 case PC:
640 case CC0:
641 return 1;
643 case MEM:
644 /* If the memory is not constant, assume it is modified. If it is
645 constant, we still have to check the address. */
646 if (! RTX_UNCHANGING_P (x))
647 return 1;
648 break;
650 case REG:
651 return reg_set_p (x, insn);
653 default:
654 break;
657 fmt = GET_RTX_FORMAT (code);
658 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
660 if (fmt[i] == 'e' && modified_in_p (XEXP (x, i), insn))
661 return 1;
663 if (fmt[i] == 'E')
664 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
665 if (modified_in_p (XVECEXP (x, i, j), insn))
666 return 1;
669 return 0;
672 /* Given an INSN, return a SET expression if this insn has only a single SET.
673 It may also have CLOBBERs, USEs, or SET whose output
674 will not be used, which we ignore. */
677 single_set (insn)
678 rtx insn;
680 rtx set;
681 int i;
683 if (GET_RTX_CLASS (GET_CODE (insn)) != 'i')
684 return 0;
686 if (GET_CODE (PATTERN (insn)) == SET)
687 return PATTERN (insn);
689 else if (GET_CODE (PATTERN (insn)) == PARALLEL)
691 for (i = 0, set = 0; i < XVECLEN (PATTERN (insn), 0); i++)
692 if (GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == SET
693 && (! find_reg_note (insn, REG_UNUSED,
694 SET_DEST (XVECEXP (PATTERN (insn), 0, i)))
695 || side_effects_p (XVECEXP (PATTERN (insn), 0, i))))
697 if (set)
698 return 0;
699 else
700 set = XVECEXP (PATTERN (insn), 0, i);
702 return set;
705 return 0;
708 /* Given an INSN, return nonzero if it has more than one SET, else return
709 zero. */
712 multiple_sets (insn)
713 rtx insn;
715 int found;
716 int i;
718 /* INSN must be an insn. */
719 if (GET_RTX_CLASS (GET_CODE (insn)) != 'i')
720 return 0;
722 /* Only a PARALLEL can have multiple SETs. */
723 if (GET_CODE (PATTERN (insn)) == PARALLEL)
725 for (i = 0, found = 0; i < XVECLEN (PATTERN (insn), 0); i++)
726 if (GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == SET)
728 /* If we have already found a SET, then return now. */
729 if (found)
730 return 1;
731 else
732 found = 1;
736 /* Either zero or one SET. */
737 return 0;
740 /* Return the last thing that X was assigned from before *PINSN. Verify that
741 the object is not modified up to VALID_TO. If it was, if we hit
742 a partial assignment to X, or hit a CODE_LABEL first, return X. If we
743 found an assignment, update *PINSN to point to it.
744 ALLOW_HWREG is set to 1 if hardware registers are allowed to be the src. */
747 find_last_value (x, pinsn, valid_to, allow_hwreg)
748 rtx x;
749 rtx *pinsn;
750 rtx valid_to;
751 int allow_hwreg;
753 rtx p;
755 for (p = PREV_INSN (*pinsn); p && GET_CODE (p) != CODE_LABEL;
756 p = PREV_INSN (p))
757 if (GET_RTX_CLASS (GET_CODE (p)) == 'i')
759 rtx set = single_set (p);
760 rtx note = find_reg_note (p, REG_EQUAL, NULL_RTX);
762 if (set && rtx_equal_p (x, SET_DEST (set)))
764 rtx src = SET_SRC (set);
766 if (note && GET_CODE (XEXP (note, 0)) != EXPR_LIST)
767 src = XEXP (note, 0);
769 if (! modified_between_p (src, PREV_INSN (p), valid_to)
770 /* Reject hard registers because we don't usually want
771 to use them; we'd rather use a pseudo. */
772 && (! (GET_CODE (src) == REG
773 && REGNO (src) < FIRST_PSEUDO_REGISTER) || allow_hwreg))
775 *pinsn = p;
776 return src;
780 /* If set in non-simple way, we don't have a value. */
781 if (reg_set_p (x, p))
782 break;
785 return x;
788 /* Return nonzero if register in range [REGNO, ENDREGNO)
789 appears either explicitly or implicitly in X
790 other than being stored into.
792 References contained within the substructure at LOC do not count.
793 LOC may be zero, meaning don't ignore anything. */
796 refers_to_regno_p (regno, endregno, x, loc)
797 int regno, endregno;
798 rtx x;
799 rtx *loc;
801 register int i;
802 register RTX_CODE code;
803 register char *fmt;
805 repeat:
806 /* The contents of a REG_NONNEG note is always zero, so we must come here
807 upon repeat in case the last REG_NOTE is a REG_NONNEG note. */
808 if (x == 0)
809 return 0;
811 code = GET_CODE (x);
813 switch (code)
815 case REG:
816 i = REGNO (x);
818 /* If we modifying the stack, frame, or argument pointer, it will
819 clobber a virtual register. In fact, we could be more precise,
820 but it isn't worth it. */
821 if ((i == STACK_POINTER_REGNUM
822 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
823 || i == ARG_POINTER_REGNUM
824 #endif
825 || i == FRAME_POINTER_REGNUM)
826 && regno >= FIRST_VIRTUAL_REGISTER && regno <= LAST_VIRTUAL_REGISTER)
827 return 1;
829 return (endregno > i
830 && regno < i + (i < FIRST_PSEUDO_REGISTER
831 ? HARD_REGNO_NREGS (i, GET_MODE (x))
832 : 1));
834 case SUBREG:
835 /* If this is a SUBREG of a hard reg, we can see exactly which
836 registers are being modified. Otherwise, handle normally. */
837 if (GET_CODE (SUBREG_REG (x)) == REG
838 && REGNO (SUBREG_REG (x)) < FIRST_PSEUDO_REGISTER)
840 int inner_regno = REGNO (SUBREG_REG (x)) + SUBREG_WORD (x);
841 int inner_endregno
842 = inner_regno + (inner_regno < FIRST_PSEUDO_REGISTER
843 ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
845 return endregno > inner_regno && regno < inner_endregno;
847 break;
849 case CLOBBER:
850 case SET:
851 if (&SET_DEST (x) != loc
852 /* Note setting a SUBREG counts as referring to the REG it is in for
853 a pseudo but not for hard registers since we can
854 treat each word individually. */
855 && ((GET_CODE (SET_DEST (x)) == SUBREG
856 && loc != &SUBREG_REG (SET_DEST (x))
857 && GET_CODE (SUBREG_REG (SET_DEST (x))) == REG
858 && REGNO (SUBREG_REG (SET_DEST (x))) >= FIRST_PSEUDO_REGISTER
859 && refers_to_regno_p (regno, endregno,
860 SUBREG_REG (SET_DEST (x)), loc))
861 || (GET_CODE (SET_DEST (x)) != REG
862 && refers_to_regno_p (regno, endregno, SET_DEST (x), loc))))
863 return 1;
865 if (code == CLOBBER || loc == &SET_SRC (x))
866 return 0;
867 x = SET_SRC (x);
868 goto repeat;
870 default:
871 break;
874 /* X does not match, so try its subexpressions. */
876 fmt = GET_RTX_FORMAT (code);
877 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
879 if (fmt[i] == 'e' && loc != &XEXP (x, i))
881 if (i == 0)
883 x = XEXP (x, 0);
884 goto repeat;
886 else
887 if (refers_to_regno_p (regno, endregno, XEXP (x, i), loc))
888 return 1;
890 else if (fmt[i] == 'E')
892 register int j;
893 for (j = XVECLEN (x, i) - 1; j >=0; j--)
894 if (loc != &XVECEXP (x, i, j)
895 && refers_to_regno_p (regno, endregno, XVECEXP (x, i, j), loc))
896 return 1;
899 return 0;
902 /* Nonzero if modifying X will affect IN. If X is a register or a SUBREG,
903 we check if any register number in X conflicts with the relevant register
904 numbers. If X is a constant, return 0. If X is a MEM, return 1 iff IN
905 contains a MEM (we don't bother checking for memory addresses that can't
906 conflict because we expect this to be a rare case. */
909 reg_overlap_mentioned_p (x, in)
910 rtx x, in;
912 int regno, endregno;
914 /* Overly conservative. */
915 if (GET_CODE (x) == STRICT_LOW_PART)
916 x = XEXP (x, 0);
918 /* If either argument is a constant, then modifying X can not affect IN. */
919 if (CONSTANT_P (x) || CONSTANT_P (in))
920 return 0;
921 else if (GET_CODE (x) == SUBREG)
923 regno = REGNO (SUBREG_REG (x));
924 if (regno < FIRST_PSEUDO_REGISTER)
925 regno += SUBREG_WORD (x);
927 else if (GET_CODE (x) == REG)
928 regno = REGNO (x);
929 else if (GET_CODE (x) == MEM)
931 char *fmt;
932 int i;
934 if (GET_CODE (in) == MEM)
935 return 1;
937 fmt = GET_RTX_FORMAT (GET_CODE (in));
939 for (i = GET_RTX_LENGTH (GET_CODE (in)) - 1; i >= 0; i--)
940 if (fmt[i] == 'e' && reg_overlap_mentioned_p (x, XEXP (in, i)))
941 return 1;
943 return 0;
945 else if (GET_CODE (x) == SCRATCH || GET_CODE (x) == PC
946 || GET_CODE (x) == CC0)
947 return reg_mentioned_p (x, in);
948 else if (GET_CODE (x) == PARALLEL
949 && GET_MODE (x) == BLKmode)
951 register int i;
953 /* If any register in here refers to it
954 we return true. */
955 for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
956 if (reg_overlap_mentioned_p (SET_DEST (XVECEXP (x, 0, i)), in))
957 return 1;
958 return 0;
960 else
961 abort ();
963 endregno = regno + (regno < FIRST_PSEUDO_REGISTER
964 ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
966 return refers_to_regno_p (regno, endregno, in, NULL_PTR);
969 /* Used for communications between the next few functions. */
971 static int reg_set_last_unknown;
972 static rtx reg_set_last_value;
973 static int reg_set_last_first_regno, reg_set_last_last_regno;
975 /* Called via note_stores from reg_set_last. */
977 static void
978 reg_set_last_1 (x, pat)
979 rtx x;
980 rtx pat;
982 int first, last;
984 /* If X is not a register, or is not one in the range we care
985 about, ignore. */
986 if (GET_CODE (x) != REG)
987 return;
989 first = REGNO (x);
990 last = first + (first < FIRST_PSEUDO_REGISTER
991 ? HARD_REGNO_NREGS (first, GET_MODE (x)) : 1);
993 if (first >= reg_set_last_last_regno
994 || last <= reg_set_last_first_regno)
995 return;
997 /* If this is a CLOBBER or is some complex LHS, or doesn't modify
998 exactly the registers we care about, show we don't know the value. */
999 if (GET_CODE (pat) == CLOBBER || SET_DEST (pat) != x
1000 || first != reg_set_last_first_regno
1001 || last != reg_set_last_last_regno)
1002 reg_set_last_unknown = 1;
1003 else
1004 reg_set_last_value = SET_SRC (pat);
1007 /* Return the last value to which REG was set prior to INSN. If we can't
1008 find it easily, return 0.
1010 We only return a REG, SUBREG, or constant because it is too hard to
1011 check if a MEM remains unchanged. */
1014 reg_set_last (x, insn)
1015 rtx x;
1016 rtx insn;
1018 rtx orig_insn = insn;
1020 reg_set_last_first_regno = REGNO (x);
1022 reg_set_last_last_regno
1023 = reg_set_last_first_regno
1024 + (reg_set_last_first_regno < FIRST_PSEUDO_REGISTER
1025 ? HARD_REGNO_NREGS (reg_set_last_first_regno, GET_MODE (x)) : 1);
1027 reg_set_last_unknown = 0;
1028 reg_set_last_value = 0;
1030 /* Scan backwards until reg_set_last_1 changed one of the above flags.
1031 Stop when we reach a label or X is a hard reg and we reach a
1032 CALL_INSN (if reg_set_last_last_regno is a hard reg).
1034 If we find a set of X, ensure that its SET_SRC remains unchanged. */
1036 /* We compare with <= here, because reg_set_last_last_regno
1037 is actually the number of the first reg *not* in X. */
1038 for (;
1039 insn && GET_CODE (insn) != CODE_LABEL
1040 && ! (GET_CODE (insn) == CALL_INSN
1041 && reg_set_last_last_regno <= FIRST_PSEUDO_REGISTER);
1042 insn = PREV_INSN (insn))
1043 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
1045 note_stores (PATTERN (insn), reg_set_last_1);
1046 if (reg_set_last_unknown)
1047 return 0;
1048 else if (reg_set_last_value)
1050 if (CONSTANT_P (reg_set_last_value)
1051 || ((GET_CODE (reg_set_last_value) == REG
1052 || GET_CODE (reg_set_last_value) == SUBREG)
1053 && ! reg_set_between_p (reg_set_last_value,
1054 insn, orig_insn)))
1055 return reg_set_last_value;
1056 else
1057 return 0;
1061 return 0;
1064 /* This is 1 until after the rtl generation pass. */
1065 int rtx_equal_function_value_matters;
1067 /* Return 1 if X and Y are identical-looking rtx's.
1068 This is the Lisp function EQUAL for rtx arguments. */
1071 rtx_equal_p (x, y)
1072 rtx x, y;
1074 register int i;
1075 register int j;
1076 register enum rtx_code code;
1077 register char *fmt;
1079 if (x == y)
1080 return 1;
1081 if (x == 0 || y == 0)
1082 return 0;
1084 code = GET_CODE (x);
1085 /* Rtx's of different codes cannot be equal. */
1086 if (code != GET_CODE (y))
1087 return 0;
1089 /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent.
1090 (REG:SI x) and (REG:HI x) are NOT equivalent. */
1092 if (GET_MODE (x) != GET_MODE (y))
1093 return 0;
1095 /* REG, LABEL_REF, and SYMBOL_REF can be compared nonrecursively. */
1097 if (code == REG)
1098 /* Until rtl generation is complete, don't consider a reference to the
1099 return register of the current function the same as the return from a
1100 called function. This eases the job of function integration. Once the
1101 distinction is no longer needed, they can be considered equivalent. */
1102 return (REGNO (x) == REGNO (y)
1103 && (! rtx_equal_function_value_matters
1104 || REG_FUNCTION_VALUE_P (x) == REG_FUNCTION_VALUE_P (y)));
1105 else if (code == LABEL_REF)
1106 return XEXP (x, 0) == XEXP (y, 0);
1107 else if (code == SYMBOL_REF)
1108 return XSTR (x, 0) == XSTR (y, 0);
1109 else if (code == SCRATCH || code == CONST_DOUBLE)
1110 return 0;
1112 /* Compare the elements. If any pair of corresponding elements
1113 fail to match, return 0 for the whole things. */
1115 fmt = GET_RTX_FORMAT (code);
1116 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1118 switch (fmt[i])
1120 case 'w':
1121 if (XWINT (x, i) != XWINT (y, i))
1122 return 0;
1123 break;
1125 case 'n':
1126 case 'i':
1127 if (XINT (x, i) != XINT (y, i))
1128 return 0;
1129 break;
1131 case 'V':
1132 case 'E':
1133 /* Two vectors must have the same length. */
1134 if (XVECLEN (x, i) != XVECLEN (y, i))
1135 return 0;
1137 /* And the corresponding elements must match. */
1138 for (j = 0; j < XVECLEN (x, i); j++)
1139 if (rtx_equal_p (XVECEXP (x, i, j), XVECEXP (y, i, j)) == 0)
1140 return 0;
1141 break;
1143 case 'e':
1144 if (rtx_equal_p (XEXP (x, i), XEXP (y, i)) == 0)
1145 return 0;
1146 break;
1148 case 'S':
1149 case 's':
1150 if (strcmp (XSTR (x, i), XSTR (y, i)))
1151 return 0;
1152 break;
1154 case 'u':
1155 /* These are just backpointers, so they don't matter. */
1156 break;
1158 case '0':
1159 break;
1161 /* It is believed that rtx's at this level will never
1162 contain anything but integers and other rtx's,
1163 except for within LABEL_REFs and SYMBOL_REFs. */
1164 default:
1165 abort ();
1168 return 1;
1171 /* Call FUN on each register or MEM that is stored into or clobbered by X.
1172 (X would be the pattern of an insn).
1173 FUN receives two arguments:
1174 the REG, MEM, CC0 or PC being stored in or clobbered,
1175 the SET or CLOBBER rtx that does the store.
1177 If the item being stored in or clobbered is a SUBREG of a hard register,
1178 the SUBREG will be passed. */
1180 void
1181 note_stores (x, fun)
1182 register rtx x;
1183 void (*fun) PROTO ((rtx, rtx));
1185 if ((GET_CODE (x) == SET || GET_CODE (x) == CLOBBER))
1187 register rtx dest = SET_DEST (x);
1188 while ((GET_CODE (dest) == SUBREG
1189 && (GET_CODE (SUBREG_REG (dest)) != REG
1190 || REGNO (SUBREG_REG (dest)) >= FIRST_PSEUDO_REGISTER))
1191 || GET_CODE (dest) == ZERO_EXTRACT
1192 || GET_CODE (dest) == SIGN_EXTRACT
1193 || GET_CODE (dest) == STRICT_LOW_PART)
1194 dest = XEXP (dest, 0);
1196 if (GET_CODE (dest) == PARALLEL
1197 && GET_MODE (dest) == BLKmode)
1199 register int i;
1200 for (i = XVECLEN (dest, 0) - 1; i >= 0; i--)
1201 (*fun) (SET_DEST (XVECEXP (dest, 0, i)), x);
1203 else
1204 (*fun) (dest, x);
1206 else if (GET_CODE (x) == PARALLEL)
1208 register int i;
1209 for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
1211 register rtx y = XVECEXP (x, 0, i);
1212 if (GET_CODE (y) == SET || GET_CODE (y) == CLOBBER)
1214 register rtx dest = SET_DEST (y);
1215 while ((GET_CODE (dest) == SUBREG
1216 && (GET_CODE (SUBREG_REG (dest)) != REG
1217 || (REGNO (SUBREG_REG (dest))
1218 >= FIRST_PSEUDO_REGISTER)))
1219 || GET_CODE (dest) == ZERO_EXTRACT
1220 || GET_CODE (dest) == SIGN_EXTRACT
1221 || GET_CODE (dest) == STRICT_LOW_PART)
1222 dest = XEXP (dest, 0);
1223 if (GET_CODE (dest) == PARALLEL
1224 && GET_MODE (dest) == BLKmode)
1226 register int i;
1227 for (i = XVECLEN (dest, 0) - 1; i >= 0; i--)
1228 (*fun) (SET_DEST (XVECEXP (dest, 0, i)), y);
1230 else
1231 (*fun) (dest, y);
1237 /* Return nonzero if X's old contents don't survive after INSN.
1238 This will be true if X is (cc0) or if X is a register and
1239 X dies in INSN or because INSN entirely sets X.
1241 "Entirely set" means set directly and not through a SUBREG,
1242 ZERO_EXTRACT or SIGN_EXTRACT, so no trace of the old contents remains.
1243 Likewise, REG_INC does not count.
1245 REG may be a hard or pseudo reg. Renumbering is not taken into account,
1246 but for this use that makes no difference, since regs don't overlap
1247 during their lifetimes. Therefore, this function may be used
1248 at any time after deaths have been computed (in flow.c).
1250 If REG is a hard reg that occupies multiple machine registers, this
1251 function will only return 1 if each of those registers will be replaced
1252 by INSN. */
1255 dead_or_set_p (insn, x)
1256 rtx insn;
1257 rtx x;
1259 register int regno, last_regno;
1260 register int i;
1262 /* Can't use cc0_rtx below since this file is used by genattrtab.c. */
1263 if (GET_CODE (x) == CC0)
1264 return 1;
1266 if (GET_CODE (x) != REG)
1267 abort ();
1269 regno = REGNO (x);
1270 last_regno = (regno >= FIRST_PSEUDO_REGISTER ? regno
1271 : regno + HARD_REGNO_NREGS (regno, GET_MODE (x)) - 1);
1273 for (i = regno; i <= last_regno; i++)
1274 if (! dead_or_set_regno_p (insn, i))
1275 return 0;
1277 return 1;
1280 /* Utility function for dead_or_set_p to check an individual register. Also
1281 called from flow.c. */
1284 dead_or_set_regno_p (insn, test_regno)
1285 rtx insn;
1286 int test_regno;
1288 int regno, endregno;
1289 rtx link;
1291 /* See if there is a death note for something that includes
1292 TEST_REGNO. */
1293 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1295 if (REG_NOTE_KIND (link) != REG_DEAD
1296 || GET_CODE (XEXP (link, 0)) != REG)
1297 continue;
1299 regno = REGNO (XEXP (link, 0));
1300 endregno = (regno >= FIRST_PSEUDO_REGISTER ? regno + 1
1301 : regno + HARD_REGNO_NREGS (regno,
1302 GET_MODE (XEXP (link, 0))));
1304 if (test_regno >= regno && test_regno < endregno)
1305 return 1;
1308 if (GET_CODE (insn) == CALL_INSN
1309 && find_regno_fusage (insn, CLOBBER, test_regno))
1310 return 1;
1312 if (GET_CODE (PATTERN (insn)) == SET)
1314 rtx dest = SET_DEST (PATTERN (insn));
1316 /* A value is totally replaced if it is the destination or the
1317 destination is a SUBREG of REGNO that does not change the number of
1318 words in it. */
1319 if (GET_CODE (dest) == SUBREG
1320 && (((GET_MODE_SIZE (GET_MODE (dest))
1321 + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
1322 == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest)))
1323 + UNITS_PER_WORD - 1) / UNITS_PER_WORD)))
1324 dest = SUBREG_REG (dest);
1326 if (GET_CODE (dest) != REG)
1327 return 0;
1329 regno = REGNO (dest);
1330 endregno = (regno >= FIRST_PSEUDO_REGISTER ? regno + 1
1331 : regno + HARD_REGNO_NREGS (regno, GET_MODE (dest)));
1333 return (test_regno >= regno && test_regno < endregno);
1335 else if (GET_CODE (PATTERN (insn)) == PARALLEL)
1337 register int i;
1339 for (i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
1341 rtx body = XVECEXP (PATTERN (insn), 0, i);
1343 if (GET_CODE (body) == SET || GET_CODE (body) == CLOBBER)
1345 rtx dest = SET_DEST (body);
1347 if (GET_CODE (dest) == SUBREG
1348 && (((GET_MODE_SIZE (GET_MODE (dest))
1349 + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
1350 == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest)))
1351 + UNITS_PER_WORD - 1) / UNITS_PER_WORD)))
1352 dest = SUBREG_REG (dest);
1354 if (GET_CODE (dest) != REG)
1355 continue;
1357 regno = REGNO (dest);
1358 endregno = (regno >= FIRST_PSEUDO_REGISTER ? regno + 1
1359 : regno + HARD_REGNO_NREGS (regno, GET_MODE (dest)));
1361 if (test_regno >= regno && test_regno < endregno)
1362 return 1;
1367 return 0;
1370 /* Return the reg-note of kind KIND in insn INSN, if there is one.
1371 If DATUM is nonzero, look for one whose datum is DATUM. */
1374 find_reg_note (insn, kind, datum)
1375 rtx insn;
1376 enum reg_note kind;
1377 rtx datum;
1379 register rtx link;
1381 /* Ignore anything that is not an INSN, JUMP_INSN or CALL_INSN. */
1382 if (GET_RTX_CLASS (GET_CODE (insn)) != 'i')
1383 return 0;
1385 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1386 if (REG_NOTE_KIND (link) == kind
1387 && (datum == 0 || datum == XEXP (link, 0)))
1388 return link;
1389 return 0;
1392 /* Return the reg-note of kind KIND in insn INSN which applies to register
1393 number REGNO, if any. Return 0 if there is no such reg-note. Note that
1394 the REGNO of this NOTE need not be REGNO if REGNO is a hard register;
1395 it might be the case that the note overlaps REGNO. */
1398 find_regno_note (insn, kind, regno)
1399 rtx insn;
1400 enum reg_note kind;
1401 int regno;
1403 register rtx link;
1405 /* Ignore anything that is not an INSN, JUMP_INSN or CALL_INSN. */
1406 if (GET_RTX_CLASS (GET_CODE (insn)) != 'i')
1407 return 0;
1409 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1410 if (REG_NOTE_KIND (link) == kind
1411 /* Verify that it is a register, so that scratch and MEM won't cause a
1412 problem here. */
1413 && GET_CODE (XEXP (link, 0)) == REG
1414 && REGNO (XEXP (link, 0)) <= regno
1415 && ((REGNO (XEXP (link, 0))
1416 + (REGNO (XEXP (link, 0)) >= FIRST_PSEUDO_REGISTER ? 1
1417 : HARD_REGNO_NREGS (REGNO (XEXP (link, 0)),
1418 GET_MODE (XEXP (link, 0)))))
1419 > regno))
1420 return link;
1421 return 0;
1424 /* Return true if DATUM, or any overlap of DATUM, of kind CODE is found
1425 in the CALL_INSN_FUNCTION_USAGE information of INSN. */
1428 find_reg_fusage (insn, code, datum)
1429 rtx insn;
1430 enum rtx_code code;
1431 rtx datum;
1433 /* If it's not a CALL_INSN, it can't possibly have a
1434 CALL_INSN_FUNCTION_USAGE field, so don't bother checking. */
1435 if (GET_CODE (insn) != CALL_INSN)
1436 return 0;
1438 if (! datum)
1439 abort();
1441 if (GET_CODE (datum) != REG)
1443 register rtx link;
1445 for (link = CALL_INSN_FUNCTION_USAGE (insn);
1446 link;
1447 link = XEXP (link, 1))
1448 if (GET_CODE (XEXP (link, 0)) == code
1449 && rtx_equal_p (datum, SET_DEST (XEXP (link, 0))))
1450 return 1;
1452 else
1454 register int regno = REGNO (datum);
1456 /* CALL_INSN_FUNCTION_USAGE information cannot contain references
1457 to pseudo registers, so don't bother checking. */
1459 if (regno < FIRST_PSEUDO_REGISTER)
1461 int end_regno = regno + HARD_REGNO_NREGS (regno, GET_MODE (datum));
1462 int i;
1464 for (i = regno; i < end_regno; i++)
1465 if (find_regno_fusage (insn, code, i))
1466 return 1;
1470 return 0;
1473 /* Return true if REGNO, or any overlap of REGNO, of kind CODE is found
1474 in the CALL_INSN_FUNCTION_USAGE information of INSN. */
1477 find_regno_fusage (insn, code, regno)
1478 rtx insn;
1479 enum rtx_code code;
1480 int regno;
1482 register rtx link;
1484 /* CALL_INSN_FUNCTION_USAGE information cannot contain references
1485 to pseudo registers, so don't bother checking. */
1487 if (regno >= FIRST_PSEUDO_REGISTER
1488 || GET_CODE (insn) != CALL_INSN )
1489 return 0;
1491 for (link = CALL_INSN_FUNCTION_USAGE (insn); link; link = XEXP (link, 1))
1493 register int regnote;
1494 register rtx op;
1496 if (GET_CODE (op = XEXP (link, 0)) == code
1497 && GET_CODE (SET_DEST (op)) == REG
1498 && (regnote = REGNO (SET_DEST (op))) <= regno
1499 && regnote
1500 + HARD_REGNO_NREGS (regnote, GET_MODE (SET_DEST (op)))
1501 > regno)
1502 return 1;
1505 return 0;
1508 /* Remove register note NOTE from the REG_NOTES of INSN. */
1510 void
1511 remove_note (insn, note)
1512 register rtx note;
1513 register rtx insn;
1515 register rtx link;
1517 if (REG_NOTES (insn) == note)
1519 REG_NOTES (insn) = XEXP (note, 1);
1520 return;
1523 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1524 if (XEXP (link, 1) == note)
1526 XEXP (link, 1) = XEXP (note, 1);
1527 return;
1530 abort ();
1533 /* Nonzero if X contains any volatile instructions. These are instructions
1534 which may cause unpredictable machine state instructions, and thus no
1535 instructions should be moved or combined across them. This includes
1536 only volatile asms and UNSPEC_VOLATILE instructions. */
1539 volatile_insn_p (x)
1540 rtx x;
1542 register RTX_CODE code;
1544 code = GET_CODE (x);
1545 switch (code)
1547 case LABEL_REF:
1548 case SYMBOL_REF:
1549 case CONST_INT:
1550 case CONST:
1551 case CONST_DOUBLE:
1552 case CC0:
1553 case PC:
1554 case REG:
1555 case SCRATCH:
1556 case CLOBBER:
1557 case ASM_INPUT:
1558 case ADDR_VEC:
1559 case ADDR_DIFF_VEC:
1560 case CALL:
1561 case MEM:
1562 return 0;
1564 case UNSPEC_VOLATILE:
1565 /* case TRAP_IF: This isn't clear yet. */
1566 return 1;
1568 case ASM_OPERANDS:
1569 if (MEM_VOLATILE_P (x))
1570 return 1;
1572 default:
1573 break;
1576 /* Recursively scan the operands of this expression. */
1579 register char *fmt = GET_RTX_FORMAT (code);
1580 register int i;
1582 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1584 if (fmt[i] == 'e')
1586 if (volatile_insn_p (XEXP (x, i)))
1587 return 1;
1589 if (fmt[i] == 'E')
1591 register int j;
1592 for (j = 0; j < XVECLEN (x, i); j++)
1593 if (volatile_insn_p (XVECEXP (x, i, j)))
1594 return 1;
1598 return 0;
1601 /* Nonzero if X contains any volatile memory references
1602 UNSPEC_VOLATILE operations or volatile ASM_OPERANDS expressions. */
1605 volatile_refs_p (x)
1606 rtx x;
1608 register RTX_CODE code;
1610 code = GET_CODE (x);
1611 switch (code)
1613 case LABEL_REF:
1614 case SYMBOL_REF:
1615 case CONST_INT:
1616 case CONST:
1617 case CONST_DOUBLE:
1618 case CC0:
1619 case PC:
1620 case REG:
1621 case SCRATCH:
1622 case CLOBBER:
1623 case ASM_INPUT:
1624 case ADDR_VEC:
1625 case ADDR_DIFF_VEC:
1626 return 0;
1628 case CALL:
1629 case UNSPEC_VOLATILE:
1630 /* case TRAP_IF: This isn't clear yet. */
1631 return 1;
1633 case MEM:
1634 case ASM_OPERANDS:
1635 if (MEM_VOLATILE_P (x))
1636 return 1;
1638 default:
1639 break;
1642 /* Recursively scan the operands of this expression. */
1645 register char *fmt = GET_RTX_FORMAT (code);
1646 register int i;
1648 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1650 if (fmt[i] == 'e')
1652 if (volatile_refs_p (XEXP (x, i)))
1653 return 1;
1655 if (fmt[i] == 'E')
1657 register int j;
1658 for (j = 0; j < XVECLEN (x, i); j++)
1659 if (volatile_refs_p (XVECEXP (x, i, j)))
1660 return 1;
1664 return 0;
1667 /* Similar to above, except that it also rejects register pre- and post-
1668 incrementing. */
1671 side_effects_p (x)
1672 rtx x;
1674 register RTX_CODE code;
1676 code = GET_CODE (x);
1677 switch (code)
1679 case LABEL_REF:
1680 case SYMBOL_REF:
1681 case CONST_INT:
1682 case CONST:
1683 case CONST_DOUBLE:
1684 case CC0:
1685 case PC:
1686 case REG:
1687 case SCRATCH:
1688 case ASM_INPUT:
1689 case ADDR_VEC:
1690 case ADDR_DIFF_VEC:
1691 return 0;
1693 case CLOBBER:
1694 /* Reject CLOBBER with a non-VOID mode. These are made by combine.c
1695 when some combination can't be done. If we see one, don't think
1696 that we can simplify the expression. */
1697 return (GET_MODE (x) != VOIDmode);
1699 case PRE_INC:
1700 case PRE_DEC:
1701 case POST_INC:
1702 case POST_DEC:
1703 case CALL:
1704 case UNSPEC_VOLATILE:
1705 /* case TRAP_IF: This isn't clear yet. */
1706 return 1;
1708 case MEM:
1709 case ASM_OPERANDS:
1710 if (MEM_VOLATILE_P (x))
1711 return 1;
1713 default:
1714 break;
1717 /* Recursively scan the operands of this expression. */
1720 register char *fmt = GET_RTX_FORMAT (code);
1721 register int i;
1723 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1725 if (fmt[i] == 'e')
1727 if (side_effects_p (XEXP (x, i)))
1728 return 1;
1730 if (fmt[i] == 'E')
1732 register int j;
1733 for (j = 0; j < XVECLEN (x, i); j++)
1734 if (side_effects_p (XVECEXP (x, i, j)))
1735 return 1;
1739 return 0;
1742 /* Return nonzero if evaluating rtx X might cause a trap. */
1745 may_trap_p (x)
1746 rtx x;
1748 int i;
1749 enum rtx_code code;
1750 char *fmt;
1752 if (x == 0)
1753 return 0;
1754 code = GET_CODE (x);
1755 switch (code)
1757 /* Handle these cases quickly. */
1758 case CONST_INT:
1759 case CONST_DOUBLE:
1760 case SYMBOL_REF:
1761 case LABEL_REF:
1762 case CONST:
1763 case PC:
1764 case CC0:
1765 case REG:
1766 case SCRATCH:
1767 return 0;
1769 /* Conditional trap can trap! */
1770 case UNSPEC_VOLATILE:
1771 case TRAP_IF:
1772 return 1;
1774 /* Memory ref can trap unless it's a static var or a stack slot. */
1775 case MEM:
1776 return rtx_addr_can_trap_p (XEXP (x, 0));
1778 /* Division by a non-constant might trap. */
1779 case DIV:
1780 case MOD:
1781 case UDIV:
1782 case UMOD:
1783 if (! CONSTANT_P (XEXP (x, 1))
1784 || GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
1785 return 1;
1786 /* This was const0_rtx, but by not using that,
1787 we can link this file into other programs. */
1788 if (GET_CODE (XEXP (x, 1)) == CONST_INT && INTVAL (XEXP (x, 1)) == 0)
1789 return 1;
1790 break;
1792 case EXPR_LIST:
1793 /* An EXPR_LIST is used to represent a function call. This
1794 certainly may trap. */
1795 return 1;
1797 default:
1798 /* Any floating arithmetic may trap. */
1799 if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
1800 return 1;
1803 fmt = GET_RTX_FORMAT (code);
1804 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1806 if (fmt[i] == 'e')
1808 if (may_trap_p (XEXP (x, i)))
1809 return 1;
1811 else if (fmt[i] == 'E')
1813 register int j;
1814 for (j = 0; j < XVECLEN (x, i); j++)
1815 if (may_trap_p (XVECEXP (x, i, j)))
1816 return 1;
1819 return 0;
1822 /* Return nonzero if X contains a comparison that is not either EQ or NE,
1823 i.e., an inequality. */
1826 inequality_comparisons_p (x)
1827 rtx x;
1829 register char *fmt;
1830 register int len, i;
1831 register enum rtx_code code = GET_CODE (x);
1833 switch (code)
1835 case REG:
1836 case SCRATCH:
1837 case PC:
1838 case CC0:
1839 case CONST_INT:
1840 case CONST_DOUBLE:
1841 case CONST:
1842 case LABEL_REF:
1843 case SYMBOL_REF:
1844 return 0;
1846 case LT:
1847 case LTU:
1848 case GT:
1849 case GTU:
1850 case LE:
1851 case LEU:
1852 case GE:
1853 case GEU:
1854 return 1;
1856 default:
1857 break;
1860 len = GET_RTX_LENGTH (code);
1861 fmt = GET_RTX_FORMAT (code);
1863 for (i = 0; i < len; i++)
1865 if (fmt[i] == 'e')
1867 if (inequality_comparisons_p (XEXP (x, i)))
1868 return 1;
1870 else if (fmt[i] == 'E')
1872 register int j;
1873 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
1874 if (inequality_comparisons_p (XVECEXP (x, i, j)))
1875 return 1;
1879 return 0;
1882 /* Replace any occurrence of FROM in X with TO. The function does
1883 not enter into CONST_DOUBLE for the replace.
1885 Note that copying is not done so X must not be shared unless all copies
1886 are to be modified. */
1889 replace_rtx (x, from, to)
1890 rtx x, from, to;
1892 register int i, j;
1893 register char *fmt;
1895 /* The following prevents loops occurrence when we change MEM in
1896 CONST_DOUBLE onto the same CONST_DOUBLE. */
1897 if (x != 0 && GET_CODE (x) == CONST_DOUBLE)
1898 return x;
1900 if (x == from)
1901 return to;
1903 /* Allow this function to make replacements in EXPR_LISTs. */
1904 if (x == 0)
1905 return 0;
1907 fmt = GET_RTX_FORMAT (GET_CODE (x));
1908 for (i = GET_RTX_LENGTH (GET_CODE (x)) - 1; i >= 0; i--)
1910 if (fmt[i] == 'e')
1911 XEXP (x, i) = replace_rtx (XEXP (x, i), from, to);
1912 else if (fmt[i] == 'E')
1913 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
1914 XVECEXP (x, i, j) = replace_rtx (XVECEXP (x, i, j), from, to);
1917 return x;
1920 /* Throughout the rtx X, replace many registers according to REG_MAP.
1921 Return the replacement for X (which may be X with altered contents).
1922 REG_MAP[R] is the replacement for register R, or 0 for don't replace.
1923 NREGS is the length of REG_MAP; regs >= NREGS are not mapped.
1925 We only support REG_MAP entries of REG or SUBREG. Also, hard registers
1926 should not be mapped to pseudos or vice versa since validate_change
1927 is not called.
1929 If REPLACE_DEST is 1, replacements are also done in destinations;
1930 otherwise, only sources are replaced. */
1933 replace_regs (x, reg_map, nregs, replace_dest)
1934 rtx x;
1935 rtx *reg_map;
1936 int nregs;
1937 int replace_dest;
1939 register enum rtx_code code;
1940 register int i;
1941 register char *fmt;
1943 if (x == 0)
1944 return x;
1946 code = GET_CODE (x);
1947 switch (code)
1949 case SCRATCH:
1950 case PC:
1951 case CC0:
1952 case CONST_INT:
1953 case CONST_DOUBLE:
1954 case CONST:
1955 case SYMBOL_REF:
1956 case LABEL_REF:
1957 return x;
1959 case REG:
1960 /* Verify that the register has an entry before trying to access it. */
1961 if (REGNO (x) < nregs && reg_map[REGNO (x)] != 0)
1963 /* SUBREGs can't be shared. Always return a copy to ensure that if
1964 this replacement occurs more than once then each instance will
1965 get distinct rtx. */
1966 if (GET_CODE (reg_map[REGNO (x)]) == SUBREG)
1967 return copy_rtx (reg_map[REGNO (x)]);
1968 return reg_map[REGNO (x)];
1970 return x;
1972 case SUBREG:
1973 /* Prevent making nested SUBREGs. */
1974 if (GET_CODE (SUBREG_REG (x)) == REG && REGNO (SUBREG_REG (x)) < nregs
1975 && reg_map[REGNO (SUBREG_REG (x))] != 0
1976 && GET_CODE (reg_map[REGNO (SUBREG_REG (x))]) == SUBREG)
1978 rtx map_val = reg_map[REGNO (SUBREG_REG (x))];
1979 rtx map_inner = SUBREG_REG (map_val);
1981 if (GET_MODE (x) == GET_MODE (map_inner))
1982 return map_inner;
1983 else
1985 /* We cannot call gen_rtx here since we may be linked with
1986 genattrtab.c. */
1987 /* Let's try clobbering the incoming SUBREG and see
1988 if this is really safe. */
1989 SUBREG_REG (x) = map_inner;
1990 SUBREG_WORD (x) += SUBREG_WORD (map_val);
1991 return x;
1992 #if 0
1993 rtx new = rtx_alloc (SUBREG);
1994 PUT_MODE (new, GET_MODE (x));
1995 SUBREG_REG (new) = map_inner;
1996 SUBREG_WORD (new) = SUBREG_WORD (x) + SUBREG_WORD (map_val);
1997 #endif
2000 break;
2002 case SET:
2003 if (replace_dest)
2004 SET_DEST (x) = replace_regs (SET_DEST (x), reg_map, nregs, 0);
2006 else if (GET_CODE (SET_DEST (x)) == MEM
2007 || GET_CODE (SET_DEST (x)) == STRICT_LOW_PART)
2008 /* Even if we are not to replace destinations, replace register if it
2009 is CONTAINED in destination (destination is memory or
2010 STRICT_LOW_PART). */
2011 XEXP (SET_DEST (x), 0) = replace_regs (XEXP (SET_DEST (x), 0),
2012 reg_map, nregs, 0);
2013 else if (GET_CODE (SET_DEST (x)) == ZERO_EXTRACT)
2014 /* Similarly, for ZERO_EXTRACT we replace all operands. */
2015 break;
2017 SET_SRC (x) = replace_regs (SET_SRC (x), reg_map, nregs, 0);
2018 return x;
2020 default:
2021 break;
2024 fmt = GET_RTX_FORMAT (code);
2025 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2027 if (fmt[i] == 'e')
2028 XEXP (x, i) = replace_regs (XEXP (x, i), reg_map, nregs, replace_dest);
2029 if (fmt[i] == 'E')
2031 register int j;
2032 for (j = 0; j < XVECLEN (x, i); j++)
2033 XVECEXP (x, i, j) = replace_regs (XVECEXP (x, i, j), reg_map,
2034 nregs, replace_dest);
2037 return x;
2040 /* Return 1 if X, the SRC_SRC of SET of (pc) contain a REG or MEM that is
2041 not in the constant pool and not in the condition of an IF_THEN_ELSE. */
2043 static int
2044 jmp_uses_reg_or_mem (x)
2045 rtx x;
2047 enum rtx_code code = GET_CODE (x);
2048 int i, j;
2049 char *fmt;
2051 switch (code)
2053 case CONST:
2054 case LABEL_REF:
2055 case PC:
2056 return 0;
2058 case REG:
2059 return 1;
2061 case MEM:
2062 return ! (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
2063 && CONSTANT_POOL_ADDRESS_P (XEXP (x, 0)));
2065 case IF_THEN_ELSE:
2066 return (jmp_uses_reg_or_mem (XEXP (x, 1))
2067 || jmp_uses_reg_or_mem (XEXP (x, 2)));
2069 case PLUS: case MINUS: case MULT:
2070 return (jmp_uses_reg_or_mem (XEXP (x, 0))
2071 || jmp_uses_reg_or_mem (XEXP (x, 1)));
2073 default:
2074 break;
2077 fmt = GET_RTX_FORMAT (code);
2078 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2080 if (fmt[i] == 'e'
2081 && jmp_uses_reg_or_mem (XEXP (x, i)))
2082 return 1;
2084 if (fmt[i] == 'E')
2085 for (j = 0; j < XVECLEN (x, i); j++)
2086 if (jmp_uses_reg_or_mem (XVECEXP (x, i, j)))
2087 return 1;
2090 return 0;
2093 /* Return nonzero if INSN is an indirect jump (aka computed jump).
2095 Tablejumps and casesi insns are not considered indirect jumps;
2096 we can recognize them by a (use (lael_ref)). */
2099 computed_jump_p (insn)
2100 rtx insn;
2102 int i;
2103 if (GET_CODE (insn) == JUMP_INSN)
2105 rtx pat = PATTERN (insn);
2107 if (GET_CODE (pat) == PARALLEL)
2109 int len = XVECLEN (pat, 0);
2110 int has_use_labelref = 0;
2112 for (i = len - 1; i >= 0; i--)
2113 if (GET_CODE (XVECEXP (pat, 0, i)) == USE
2114 && (GET_CODE (XEXP (XVECEXP (pat, 0, i), 0))
2115 == LABEL_REF))
2116 has_use_labelref = 1;
2118 if (! has_use_labelref)
2119 for (i = len - 1; i >= 0; i--)
2120 if (GET_CODE (XVECEXP (pat, 0, i)) == SET
2121 && SET_DEST (XVECEXP (pat, 0, i)) == pc_rtx
2122 && jmp_uses_reg_or_mem (SET_SRC (XVECEXP (pat, 0, i))))
2123 return 1;
2125 else if (GET_CODE (pat) == SET
2126 && SET_DEST (pat) == pc_rtx
2127 && jmp_uses_reg_or_mem (SET_SRC (pat)))
2128 return 1;
2130 return 0;
2133 /* Traverse X via depth-first search, calling F for each
2134 sub-expression (including X itself). F is also passed the DATA.
2135 If F returns -1, do not traverse sub-expressions, but continue
2136 traversing the rest of the tree. If F ever returns any other
2137 non-zero value, stop the traversal, and return the value returned
2138 by F. Otherwise, return 0. This function does not traverse inside
2139 tree structure that contains RTX_EXPRs, or into sub-expressions
2140 whose format code is `0' since it is not known whether or not those
2141 codes are actually RTL.
2143 This routine is very general, and could (should?) be used to
2144 implement many of the other routines in this file. */
2147 for_each_rtx (x, f, data)
2148 rtx *x;
2149 rtx_function f;
2150 void *data;
2152 int result;
2153 int length;
2154 char* format;
2155 int i;
2157 /* Call F on X. */
2158 result = (*f)(x, data);
2159 if (result == -1)
2160 /* Do not traverse sub-expressions. */
2161 return 0;
2162 else if (result != 0)
2163 /* Stop the traversal. */
2164 return result;
2166 if (*x == NULL_RTX)
2167 /* There are no sub-expressions. */
2168 return 0;
2170 length = GET_RTX_LENGTH (GET_CODE (*x));
2171 format = GET_RTX_FORMAT (GET_CODE (*x));
2173 for (i = 0; i < length; ++i)
2175 switch (format[i])
2177 case 'e':
2178 result = for_each_rtx (&XEXP (*x, i), f, data);
2179 if (result != 0)
2180 return result;
2181 break;
2183 case 'V':
2184 case 'E':
2185 if (XVEC (*x, i) != 0)
2187 int j;
2188 for (j = 0; j < XVECLEN (*x, i); ++j)
2190 result = for_each_rtx (&XVECEXP (*x, i, j), f, data);
2191 if (result != 0)
2192 return result;
2195 break;
2197 default:
2198 /* Nothing to do. */
2199 break;
2204 return 0;
2207 /* Searches X for any reference to REGNO, returning the rtx of the
2208 reference found if any. Otherwise, returns NULL_RTX. */
2211 regno_use_in (regno, x)
2212 int regno;
2213 rtx x;
2215 register char *fmt;
2216 int i, j;
2217 rtx tem;
2219 if (GET_CODE (x) == REG && REGNO (x) == regno)
2220 return x;
2222 fmt = GET_RTX_FORMAT (GET_CODE (x));
2223 for (i = GET_RTX_LENGTH (GET_CODE (x)) - 1; i >= 0; i--)
2225 if (fmt[i] == 'e')
2227 if ((tem = regno_use_in (regno, XEXP (x, i))))
2228 return tem;
2230 else if (fmt[i] == 'E')
2231 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
2232 if ((tem = regno_use_in (regno , XVECEXP (x, i, j))))
2233 return tem;
2236 return NULL_RTX;
2240 /* Return 1 if X is an autoincrement side effect and the register is
2241 not the stack pointer. */
2243 auto_inc_p (x)
2244 rtx x;
2246 switch (GET_CODE (x))
2248 case PRE_INC:
2249 case POST_INC:
2250 case PRE_DEC:
2251 case POST_DEC:
2252 case PRE_MODIFY:
2253 case POST_MODIFY:
2254 /* There are no REG_INC notes for SP. */
2255 if (XEXP (x, 0) != stack_pointer_rtx)
2256 return 1;
2257 default:
2258 break;
2260 return 0;