* configure.in (c-mbchar): Append, don't overwrite, `extra_c_flags'.
[official-gcc.git] / gcc / rtlanal.c
blob5512a43320f1ef6dbd4389ec627c73401d252b6d
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 const 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 const 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 const 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 const 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 for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
414 if (reg_overlap_mentioned_p (x, XVECEXP (body, 0, i)))
415 return 1;
416 return 0;
418 case PARALLEL:
419 for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
420 if (reg_referenced_p (x, XVECEXP (body, 0, i)))
421 return 1;
422 return 0;
424 default:
425 return 0;
429 /* Nonzero if register REG is referenced in an insn between
430 FROM_INSN and TO_INSN (exclusive of those two). Sets of REG do
431 not count. */
434 reg_referenced_between_p (reg, from_insn, to_insn)
435 rtx reg, from_insn, to_insn;
437 register rtx insn;
439 if (from_insn == to_insn)
440 return 0;
442 for (insn = NEXT_INSN (from_insn); insn != to_insn; insn = NEXT_INSN (insn))
443 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i'
444 && (reg_referenced_p (reg, PATTERN (insn))
445 || (GET_CODE (insn) == CALL_INSN
446 && find_reg_fusage (insn, USE, reg))))
447 return 1;
448 return 0;
451 /* Nonzero if register REG is set or clobbered in an insn between
452 FROM_INSN and TO_INSN (exclusive of those two). */
455 reg_set_between_p (reg, from_insn, to_insn)
456 rtx reg, from_insn, to_insn;
458 register rtx insn;
460 if (from_insn == to_insn)
461 return 0;
463 for (insn = NEXT_INSN (from_insn); insn != to_insn; insn = NEXT_INSN (insn))
464 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i'
465 && reg_set_p (reg, insn))
466 return 1;
467 return 0;
470 /* Internals of reg_set_between_p. */
472 static rtx reg_set_reg;
473 static int reg_set_flag;
475 static void
476 reg_set_p_1 (x, pat)
477 rtx x;
478 rtx pat ATTRIBUTE_UNUSED;
480 /* We don't want to return 1 if X is a MEM that contains a register
481 within REG_SET_REG. */
483 if ((GET_CODE (x) != MEM)
484 && reg_overlap_mentioned_p (reg_set_reg, x))
485 reg_set_flag = 1;
489 reg_set_p (reg, insn)
490 rtx reg, insn;
492 rtx body = insn;
494 /* We can be passed an insn or part of one. If we are passed an insn,
495 check if a side-effect of the insn clobbers REG. */
496 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
498 if (FIND_REG_INC_NOTE (insn, reg)
499 || (GET_CODE (insn) == CALL_INSN
500 /* We'd like to test call_used_regs here, but rtlanal.c can't
501 reference that variable due to its use in genattrtab. So
502 we'll just be more conservative.
504 ??? Unless we could ensure that the CALL_INSN_FUNCTION_USAGE
505 information holds all clobbered registers. */
506 && ((GET_CODE (reg) == REG
507 && REGNO (reg) < FIRST_PSEUDO_REGISTER)
508 || GET_CODE (reg) == MEM
509 || find_reg_fusage (insn, CLOBBER, reg))))
510 return 1;
512 body = PATTERN (insn);
515 reg_set_reg = reg;
516 reg_set_flag = 0;
517 note_stores (body, reg_set_p_1);
518 return reg_set_flag;
521 /* Similar to reg_set_between_p, but check all registers in X. Return 0
522 only if none of them are modified between START and END. Do not
523 consider non-registers one way or the other. */
526 regs_set_between_p (x, start, end)
527 rtx x;
528 rtx start, end;
530 enum rtx_code code = GET_CODE (x);
531 const char *fmt;
532 int i, j;
534 switch (code)
536 case CONST_INT:
537 case CONST_DOUBLE:
538 case CONST:
539 case SYMBOL_REF:
540 case LABEL_REF:
541 case PC:
542 case CC0:
543 return 0;
545 case REG:
546 return reg_set_between_p (x, start, end);
548 default:
549 break;
552 fmt = GET_RTX_FORMAT (code);
553 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
555 if (fmt[i] == 'e' && regs_set_between_p (XEXP (x, i), start, end))
556 return 1;
558 else if (fmt[i] == 'E')
559 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
560 if (regs_set_between_p (XVECEXP (x, i, j), start, end))
561 return 1;
564 return 0;
567 /* Similar to reg_set_between_p, but check all registers in X. Return 0
568 only if none of them are modified between START and END. Return 1 if
569 X contains a MEM; this routine does not perform any memory aliasing. */
572 modified_between_p (x, start, end)
573 rtx x;
574 rtx start, end;
576 enum rtx_code code = GET_CODE (x);
577 const char *fmt;
578 int i, j;
580 switch (code)
582 case CONST_INT:
583 case CONST_DOUBLE:
584 case CONST:
585 case SYMBOL_REF:
586 case LABEL_REF:
587 return 0;
589 case PC:
590 case CC0:
591 return 1;
593 case MEM:
594 /* If the memory is not constant, assume it is modified. If it is
595 constant, we still have to check the address. */
596 if (! RTX_UNCHANGING_P (x))
597 return 1;
598 break;
600 case REG:
601 return reg_set_between_p (x, start, end);
603 default:
604 break;
607 fmt = GET_RTX_FORMAT (code);
608 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
610 if (fmt[i] == 'e' && modified_between_p (XEXP (x, i), start, end))
611 return 1;
613 if (fmt[i] == 'E')
614 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
615 if (modified_between_p (XVECEXP (x, i, j), start, end))
616 return 1;
619 return 0;
622 /* Similar to reg_set_p, but check all registers in X. Return 0 only if none
623 of them are modified in INSN. Return 1 if X contains a MEM; this routine
624 does not perform any memory aliasing. */
627 modified_in_p (x, insn)
628 rtx x;
629 rtx insn;
631 enum rtx_code code = GET_CODE (x);
632 const char *fmt;
633 int i, j;
635 switch (code)
637 case CONST_INT:
638 case CONST_DOUBLE:
639 case CONST:
640 case SYMBOL_REF:
641 case LABEL_REF:
642 return 0;
644 case PC:
645 case CC0:
646 return 1;
648 case MEM:
649 /* If the memory is not constant, assume it is modified. If it is
650 constant, we still have to check the address. */
651 if (! RTX_UNCHANGING_P (x))
652 return 1;
653 break;
655 case REG:
656 return reg_set_p (x, insn);
658 default:
659 break;
662 fmt = GET_RTX_FORMAT (code);
663 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
665 if (fmt[i] == 'e' && modified_in_p (XEXP (x, i), insn))
666 return 1;
668 if (fmt[i] == 'E')
669 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
670 if (modified_in_p (XVECEXP (x, i, j), insn))
671 return 1;
674 return 0;
677 /* Given an INSN, return a SET expression if this insn has only a single SET.
678 It may also have CLOBBERs, USEs, or SET whose output
679 will not be used, which we ignore. */
682 single_set (insn)
683 rtx insn;
685 rtx set;
686 int i;
688 if (GET_RTX_CLASS (GET_CODE (insn)) != 'i')
689 return 0;
691 if (GET_CODE (PATTERN (insn)) == SET)
692 return PATTERN (insn);
694 else if (GET_CODE (PATTERN (insn)) == PARALLEL)
696 for (i = 0, set = 0; i < XVECLEN (PATTERN (insn), 0); i++)
697 if (GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == SET
698 && (! find_reg_note (insn, REG_UNUSED,
699 SET_DEST (XVECEXP (PATTERN (insn), 0, i)))
700 || side_effects_p (XVECEXP (PATTERN (insn), 0, i))))
702 if (set)
703 return 0;
704 else
705 set = XVECEXP (PATTERN (insn), 0, i);
707 return set;
710 return 0;
713 /* Given an INSN, return nonzero if it has more than one SET, else return
714 zero. */
717 multiple_sets (insn)
718 rtx insn;
720 int found;
721 int i;
723 /* INSN must be an insn. */
724 if (GET_RTX_CLASS (GET_CODE (insn)) != 'i')
725 return 0;
727 /* Only a PARALLEL can have multiple SETs. */
728 if (GET_CODE (PATTERN (insn)) == PARALLEL)
730 for (i = 0, found = 0; i < XVECLEN (PATTERN (insn), 0); i++)
731 if (GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == SET)
733 /* If we have already found a SET, then return now. */
734 if (found)
735 return 1;
736 else
737 found = 1;
741 /* Either zero or one SET. */
742 return 0;
745 /* Return the last thing that X was assigned from before *PINSN. Verify that
746 the object is not modified up to VALID_TO. If it was, if we hit
747 a partial assignment to X, or hit a CODE_LABEL first, return X. If we
748 found an assignment, update *PINSN to point to it.
749 ALLOW_HWREG is set to 1 if hardware registers are allowed to be the src. */
752 find_last_value (x, pinsn, valid_to, allow_hwreg)
753 rtx x;
754 rtx *pinsn;
755 rtx valid_to;
756 int allow_hwreg;
758 rtx p;
760 for (p = PREV_INSN (*pinsn); p && GET_CODE (p) != CODE_LABEL;
761 p = PREV_INSN (p))
762 if (GET_RTX_CLASS (GET_CODE (p)) == 'i')
764 rtx set = single_set (p);
765 rtx note = find_reg_note (p, REG_EQUAL, NULL_RTX);
767 if (set && rtx_equal_p (x, SET_DEST (set)))
769 rtx src = SET_SRC (set);
771 if (note && GET_CODE (XEXP (note, 0)) != EXPR_LIST)
772 src = XEXP (note, 0);
774 if (! modified_between_p (src, PREV_INSN (p), valid_to)
775 /* Reject hard registers because we don't usually want
776 to use them; we'd rather use a pseudo. */
777 && (! (GET_CODE (src) == REG
778 && REGNO (src) < FIRST_PSEUDO_REGISTER) || allow_hwreg))
780 *pinsn = p;
781 return src;
785 /* If set in non-simple way, we don't have a value. */
786 if (reg_set_p (x, p))
787 break;
790 return x;
793 /* Return nonzero if register in range [REGNO, ENDREGNO)
794 appears either explicitly or implicitly in X
795 other than being stored into.
797 References contained within the substructure at LOC do not count.
798 LOC may be zero, meaning don't ignore anything. */
801 refers_to_regno_p (regno, endregno, x, loc)
802 int regno, endregno;
803 rtx x;
804 rtx *loc;
806 register int i;
807 register RTX_CODE code;
808 register const char *fmt;
810 repeat:
811 /* The contents of a REG_NONNEG note is always zero, so we must come here
812 upon repeat in case the last REG_NOTE is a REG_NONNEG note. */
813 if (x == 0)
814 return 0;
816 code = GET_CODE (x);
818 switch (code)
820 case REG:
821 i = REGNO (x);
823 /* If we modifying the stack, frame, or argument pointer, it will
824 clobber a virtual register. In fact, we could be more precise,
825 but it isn't worth it. */
826 if ((i == STACK_POINTER_REGNUM
827 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
828 || i == ARG_POINTER_REGNUM
829 #endif
830 || i == FRAME_POINTER_REGNUM)
831 && regno >= FIRST_VIRTUAL_REGISTER && regno <= LAST_VIRTUAL_REGISTER)
832 return 1;
834 return (endregno > i
835 && regno < i + (i < FIRST_PSEUDO_REGISTER
836 ? HARD_REGNO_NREGS (i, GET_MODE (x))
837 : 1));
839 case SUBREG:
840 /* If this is a SUBREG of a hard reg, we can see exactly which
841 registers are being modified. Otherwise, handle normally. */
842 if (GET_CODE (SUBREG_REG (x)) == REG
843 && REGNO (SUBREG_REG (x)) < FIRST_PSEUDO_REGISTER)
845 int inner_regno = REGNO (SUBREG_REG (x)) + SUBREG_WORD (x);
846 int inner_endregno
847 = inner_regno + (inner_regno < FIRST_PSEUDO_REGISTER
848 ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
850 return endregno > inner_regno && regno < inner_endregno;
852 break;
854 case CLOBBER:
855 case SET:
856 if (&SET_DEST (x) != loc
857 /* Note setting a SUBREG counts as referring to the REG it is in for
858 a pseudo but not for hard registers since we can
859 treat each word individually. */
860 && ((GET_CODE (SET_DEST (x)) == SUBREG
861 && loc != &SUBREG_REG (SET_DEST (x))
862 && GET_CODE (SUBREG_REG (SET_DEST (x))) == REG
863 && REGNO (SUBREG_REG (SET_DEST (x))) >= FIRST_PSEUDO_REGISTER
864 && refers_to_regno_p (regno, endregno,
865 SUBREG_REG (SET_DEST (x)), loc))
866 || (GET_CODE (SET_DEST (x)) != REG
867 && refers_to_regno_p (regno, endregno, SET_DEST (x), loc))))
868 return 1;
870 if (code == CLOBBER || loc == &SET_SRC (x))
871 return 0;
872 x = SET_SRC (x);
873 goto repeat;
875 default:
876 break;
879 /* X does not match, so try its subexpressions. */
881 fmt = GET_RTX_FORMAT (code);
882 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
884 if (fmt[i] == 'e' && loc != &XEXP (x, i))
886 if (i == 0)
888 x = XEXP (x, 0);
889 goto repeat;
891 else
892 if (refers_to_regno_p (regno, endregno, XEXP (x, i), loc))
893 return 1;
895 else if (fmt[i] == 'E')
897 register int j;
898 for (j = XVECLEN (x, i) - 1; j >=0; j--)
899 if (loc != &XVECEXP (x, i, j)
900 && refers_to_regno_p (regno, endregno, XVECEXP (x, i, j), loc))
901 return 1;
904 return 0;
907 /* Nonzero if modifying X will affect IN. If X is a register or a SUBREG,
908 we check if any register number in X conflicts with the relevant register
909 numbers. If X is a constant, return 0. If X is a MEM, return 1 iff IN
910 contains a MEM (we don't bother checking for memory addresses that can't
911 conflict because we expect this to be a rare case. */
914 reg_overlap_mentioned_p (x, in)
915 rtx x, in;
917 int regno, endregno;
919 /* Overly conservative. */
920 if (GET_CODE (x) == STRICT_LOW_PART)
921 x = XEXP (x, 0);
923 /* If either argument is a constant, then modifying X can not affect IN. */
924 if (CONSTANT_P (x) || CONSTANT_P (in))
925 return 0;
926 else if (GET_CODE (x) == SUBREG)
928 regno = REGNO (SUBREG_REG (x));
929 if (regno < FIRST_PSEUDO_REGISTER)
930 regno += SUBREG_WORD (x);
932 else if (GET_CODE (x) == REG)
933 regno = REGNO (x);
934 else if (GET_CODE (x) == MEM)
936 const char *fmt;
937 int i;
939 if (GET_CODE (in) == MEM)
940 return 1;
942 fmt = GET_RTX_FORMAT (GET_CODE (in));
944 for (i = GET_RTX_LENGTH (GET_CODE (in)) - 1; i >= 0; i--)
945 if (fmt[i] == 'e' && reg_overlap_mentioned_p (x, XEXP (in, i)))
946 return 1;
948 return 0;
950 else if (GET_CODE (x) == SCRATCH || GET_CODE (x) == PC
951 || GET_CODE (x) == CC0)
952 return reg_mentioned_p (x, in);
953 else if (GET_CODE (x) == PARALLEL
954 && GET_MODE (x) == BLKmode)
956 register int i;
958 /* If any register in here refers to it
959 we return true. */
960 for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
961 if (reg_overlap_mentioned_p (SET_DEST (XVECEXP (x, 0, i)), in))
962 return 1;
963 return 0;
965 else
966 abort ();
968 endregno = regno + (regno < FIRST_PSEUDO_REGISTER
969 ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
971 return refers_to_regno_p (regno, endregno, in, NULL_PTR);
974 /* Used for communications between the next few functions. */
976 static int reg_set_last_unknown;
977 static rtx reg_set_last_value;
978 static int reg_set_last_first_regno, reg_set_last_last_regno;
980 /* Called via note_stores from reg_set_last. */
982 static void
983 reg_set_last_1 (x, pat)
984 rtx x;
985 rtx pat;
987 int first, last;
989 /* If X is not a register, or is not one in the range we care
990 about, ignore. */
991 if (GET_CODE (x) != REG)
992 return;
994 first = REGNO (x);
995 last = first + (first < FIRST_PSEUDO_REGISTER
996 ? HARD_REGNO_NREGS (first, GET_MODE (x)) : 1);
998 if (first >= reg_set_last_last_regno
999 || last <= reg_set_last_first_regno)
1000 return;
1002 /* If this is a CLOBBER or is some complex LHS, or doesn't modify
1003 exactly the registers we care about, show we don't know the value. */
1004 if (GET_CODE (pat) == CLOBBER || SET_DEST (pat) != x
1005 || first != reg_set_last_first_regno
1006 || last != reg_set_last_last_regno)
1007 reg_set_last_unknown = 1;
1008 else
1009 reg_set_last_value = SET_SRC (pat);
1012 /* Return the last value to which REG was set prior to INSN. If we can't
1013 find it easily, return 0.
1015 We only return a REG, SUBREG, or constant because it is too hard to
1016 check if a MEM remains unchanged. */
1019 reg_set_last (x, insn)
1020 rtx x;
1021 rtx insn;
1023 rtx orig_insn = insn;
1025 reg_set_last_first_regno = REGNO (x);
1027 reg_set_last_last_regno
1028 = reg_set_last_first_regno
1029 + (reg_set_last_first_regno < FIRST_PSEUDO_REGISTER
1030 ? HARD_REGNO_NREGS (reg_set_last_first_regno, GET_MODE (x)) : 1);
1032 reg_set_last_unknown = 0;
1033 reg_set_last_value = 0;
1035 /* Scan backwards until reg_set_last_1 changed one of the above flags.
1036 Stop when we reach a label or X is a hard reg and we reach a
1037 CALL_INSN (if reg_set_last_last_regno is a hard reg).
1039 If we find a set of X, ensure that its SET_SRC remains unchanged. */
1041 /* We compare with <= here, because reg_set_last_last_regno
1042 is actually the number of the first reg *not* in X. */
1043 for (;
1044 insn && GET_CODE (insn) != CODE_LABEL
1045 && ! (GET_CODE (insn) == CALL_INSN
1046 && reg_set_last_last_regno <= FIRST_PSEUDO_REGISTER);
1047 insn = PREV_INSN (insn))
1048 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
1050 note_stores (PATTERN (insn), reg_set_last_1);
1051 if (reg_set_last_unknown)
1052 return 0;
1053 else if (reg_set_last_value)
1055 if (CONSTANT_P (reg_set_last_value)
1056 || ((GET_CODE (reg_set_last_value) == REG
1057 || GET_CODE (reg_set_last_value) == SUBREG)
1058 && ! reg_set_between_p (reg_set_last_value,
1059 insn, orig_insn)))
1060 return reg_set_last_value;
1061 else
1062 return 0;
1066 return 0;
1069 /* This is 1 until after the rtl generation pass. */
1070 int rtx_equal_function_value_matters;
1072 /* Return 1 if X and Y are identical-looking rtx's.
1073 This is the Lisp function EQUAL for rtx arguments. */
1076 rtx_equal_p (x, y)
1077 rtx x, y;
1079 register int i;
1080 register int j;
1081 register enum rtx_code code;
1082 register const char *fmt;
1084 if (x == y)
1085 return 1;
1086 if (x == 0 || y == 0)
1087 return 0;
1089 code = GET_CODE (x);
1090 /* Rtx's of different codes cannot be equal. */
1091 if (code != GET_CODE (y))
1092 return 0;
1094 /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent.
1095 (REG:SI x) and (REG:HI x) are NOT equivalent. */
1097 if (GET_MODE (x) != GET_MODE (y))
1098 return 0;
1100 /* REG, LABEL_REF, and SYMBOL_REF can be compared nonrecursively. */
1102 if (code == REG)
1103 /* Until rtl generation is complete, don't consider a reference to the
1104 return register of the current function the same as the return from a
1105 called function. This eases the job of function integration. Once the
1106 distinction is no longer needed, they can be considered equivalent. */
1107 return (REGNO (x) == REGNO (y)
1108 && (! rtx_equal_function_value_matters
1109 || REG_FUNCTION_VALUE_P (x) == REG_FUNCTION_VALUE_P (y)));
1110 else if (code == LABEL_REF)
1111 return XEXP (x, 0) == XEXP (y, 0);
1112 else if (code == SYMBOL_REF)
1113 return XSTR (x, 0) == XSTR (y, 0);
1114 else if (code == SCRATCH || code == CONST_DOUBLE)
1115 return 0;
1117 /* Compare the elements. If any pair of corresponding elements
1118 fail to match, return 0 for the whole things. */
1120 fmt = GET_RTX_FORMAT (code);
1121 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1123 switch (fmt[i])
1125 case 'w':
1126 if (XWINT (x, i) != XWINT (y, i))
1127 return 0;
1128 break;
1130 case 'n':
1131 case 'i':
1132 if (XINT (x, i) != XINT (y, i))
1133 return 0;
1134 break;
1136 case 'V':
1137 case 'E':
1138 /* Two vectors must have the same length. */
1139 if (XVECLEN (x, i) != XVECLEN (y, i))
1140 return 0;
1142 /* And the corresponding elements must match. */
1143 for (j = 0; j < XVECLEN (x, i); j++)
1144 if (rtx_equal_p (XVECEXP (x, i, j), XVECEXP (y, i, j)) == 0)
1145 return 0;
1146 break;
1148 case 'e':
1149 if (rtx_equal_p (XEXP (x, i), XEXP (y, i)) == 0)
1150 return 0;
1151 break;
1153 case 'S':
1154 case 's':
1155 if (strcmp (XSTR (x, i), XSTR (y, i)))
1156 return 0;
1157 break;
1159 case 'u':
1160 /* These are just backpointers, so they don't matter. */
1161 break;
1163 case '0':
1164 case 't':
1165 break;
1167 /* It is believed that rtx's at this level will never
1168 contain anything but integers and other rtx's,
1169 except for within LABEL_REFs and SYMBOL_REFs. */
1170 default:
1171 abort ();
1174 return 1;
1177 /* Call FUN on each register or MEM that is stored into or clobbered by X.
1178 (X would be the pattern of an insn).
1179 FUN receives two arguments:
1180 the REG, MEM, CC0 or PC being stored in or clobbered,
1181 the SET or CLOBBER rtx that does the store.
1183 If the item being stored in or clobbered is a SUBREG of a hard register,
1184 the SUBREG will be passed. */
1186 void
1187 note_stores (x, fun)
1188 register rtx x;
1189 void (*fun) PROTO ((rtx, rtx));
1191 if ((GET_CODE (x) == SET || GET_CODE (x) == CLOBBER))
1193 register rtx dest = SET_DEST (x);
1194 while ((GET_CODE (dest) == SUBREG
1195 && (GET_CODE (SUBREG_REG (dest)) != REG
1196 || REGNO (SUBREG_REG (dest)) >= FIRST_PSEUDO_REGISTER))
1197 || GET_CODE (dest) == ZERO_EXTRACT
1198 || GET_CODE (dest) == SIGN_EXTRACT
1199 || GET_CODE (dest) == STRICT_LOW_PART)
1200 dest = XEXP (dest, 0);
1202 if (GET_CODE (dest) == PARALLEL
1203 && GET_MODE (dest) == BLKmode)
1205 register int i;
1206 for (i = XVECLEN (dest, 0) - 1; i >= 0; i--)
1207 (*fun) (SET_DEST (XVECEXP (dest, 0, i)), x);
1209 else
1210 (*fun) (dest, x);
1212 else if (GET_CODE (x) == PARALLEL)
1214 register int i;
1215 for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
1217 register rtx y = XVECEXP (x, 0, i);
1218 if (GET_CODE (y) == SET || GET_CODE (y) == CLOBBER)
1220 register rtx dest = SET_DEST (y);
1221 while ((GET_CODE (dest) == SUBREG
1222 && (GET_CODE (SUBREG_REG (dest)) != REG
1223 || (REGNO (SUBREG_REG (dest))
1224 >= FIRST_PSEUDO_REGISTER)))
1225 || GET_CODE (dest) == ZERO_EXTRACT
1226 || GET_CODE (dest) == SIGN_EXTRACT
1227 || GET_CODE (dest) == STRICT_LOW_PART)
1228 dest = XEXP (dest, 0);
1229 if (GET_CODE (dest) == PARALLEL
1230 && GET_MODE (dest) == BLKmode)
1232 register int i;
1233 for (i = XVECLEN (dest, 0) - 1; i >= 0; i--)
1234 (*fun) (SET_DEST (XVECEXP (dest, 0, i)), y);
1236 else
1237 (*fun) (dest, y);
1243 /* Return nonzero if X's old contents don't survive after INSN.
1244 This will be true if X is (cc0) or if X is a register and
1245 X dies in INSN or because INSN entirely sets X.
1247 "Entirely set" means set directly and not through a SUBREG,
1248 ZERO_EXTRACT or SIGN_EXTRACT, so no trace of the old contents remains.
1249 Likewise, REG_INC does not count.
1251 REG may be a hard or pseudo reg. Renumbering is not taken into account,
1252 but for this use that makes no difference, since regs don't overlap
1253 during their lifetimes. Therefore, this function may be used
1254 at any time after deaths have been computed (in flow.c).
1256 If REG is a hard reg that occupies multiple machine registers, this
1257 function will only return 1 if each of those registers will be replaced
1258 by INSN. */
1261 dead_or_set_p (insn, x)
1262 rtx insn;
1263 rtx x;
1265 register int regno, last_regno;
1266 register int i;
1268 /* Can't use cc0_rtx below since this file is used by genattrtab.c. */
1269 if (GET_CODE (x) == CC0)
1270 return 1;
1272 if (GET_CODE (x) != REG)
1273 abort ();
1275 regno = REGNO (x);
1276 last_regno = (regno >= FIRST_PSEUDO_REGISTER ? regno
1277 : regno + HARD_REGNO_NREGS (regno, GET_MODE (x)) - 1);
1279 for (i = regno; i <= last_regno; i++)
1280 if (! dead_or_set_regno_p (insn, i))
1281 return 0;
1283 return 1;
1286 /* Utility function for dead_or_set_p to check an individual register. Also
1287 called from flow.c. */
1290 dead_or_set_regno_p (insn, test_regno)
1291 rtx insn;
1292 int test_regno;
1294 int regno, endregno;
1295 rtx link;
1297 /* See if there is a death note for something that includes
1298 TEST_REGNO. */
1299 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1301 if (REG_NOTE_KIND (link) != REG_DEAD
1302 || GET_CODE (XEXP (link, 0)) != REG)
1303 continue;
1305 regno = REGNO (XEXP (link, 0));
1306 endregno = (regno >= FIRST_PSEUDO_REGISTER ? regno + 1
1307 : regno + HARD_REGNO_NREGS (regno,
1308 GET_MODE (XEXP (link, 0))));
1310 if (test_regno >= regno && test_regno < endregno)
1311 return 1;
1314 if (GET_CODE (insn) == CALL_INSN
1315 && find_regno_fusage (insn, CLOBBER, test_regno))
1316 return 1;
1318 if (GET_CODE (PATTERN (insn)) == SET)
1320 rtx dest = SET_DEST (PATTERN (insn));
1322 /* A value is totally replaced if it is the destination or the
1323 destination is a SUBREG of REGNO that does not change the number of
1324 words in it. */
1325 if (GET_CODE (dest) == SUBREG
1326 && (((GET_MODE_SIZE (GET_MODE (dest))
1327 + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
1328 == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest)))
1329 + UNITS_PER_WORD - 1) / UNITS_PER_WORD)))
1330 dest = SUBREG_REG (dest);
1332 if (GET_CODE (dest) != REG)
1333 return 0;
1335 regno = REGNO (dest);
1336 endregno = (regno >= FIRST_PSEUDO_REGISTER ? regno + 1
1337 : regno + HARD_REGNO_NREGS (regno, GET_MODE (dest)));
1339 return (test_regno >= regno && test_regno < endregno);
1341 else if (GET_CODE (PATTERN (insn)) == PARALLEL)
1343 register int i;
1345 for (i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
1347 rtx body = XVECEXP (PATTERN (insn), 0, i);
1349 if (GET_CODE (body) == SET || GET_CODE (body) == CLOBBER)
1351 rtx dest = SET_DEST (body);
1353 if (GET_CODE (dest) == SUBREG
1354 && (((GET_MODE_SIZE (GET_MODE (dest))
1355 + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
1356 == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest)))
1357 + UNITS_PER_WORD - 1) / UNITS_PER_WORD)))
1358 dest = SUBREG_REG (dest);
1360 if (GET_CODE (dest) != REG)
1361 continue;
1363 regno = REGNO (dest);
1364 endregno = (regno >= FIRST_PSEUDO_REGISTER ? regno + 1
1365 : regno + HARD_REGNO_NREGS (regno, GET_MODE (dest)));
1367 if (test_regno >= regno && test_regno < endregno)
1368 return 1;
1373 return 0;
1376 /* Return the reg-note of kind KIND in insn INSN, if there is one.
1377 If DATUM is nonzero, look for one whose datum is DATUM. */
1380 find_reg_note (insn, kind, datum)
1381 rtx insn;
1382 enum reg_note kind;
1383 rtx datum;
1385 register rtx link;
1387 /* Ignore anything that is not an INSN, JUMP_INSN or CALL_INSN. */
1388 if (GET_RTX_CLASS (GET_CODE (insn)) != 'i')
1389 return 0;
1391 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1392 if (REG_NOTE_KIND (link) == kind
1393 && (datum == 0 || datum == XEXP (link, 0)))
1394 return link;
1395 return 0;
1398 /* Return the reg-note of kind KIND in insn INSN which applies to register
1399 number REGNO, if any. Return 0 if there is no such reg-note. Note that
1400 the REGNO of this NOTE need not be REGNO if REGNO is a hard register;
1401 it might be the case that the note overlaps REGNO. */
1404 find_regno_note (insn, kind, regno)
1405 rtx insn;
1406 enum reg_note kind;
1407 int regno;
1409 register rtx link;
1411 /* Ignore anything that is not an INSN, JUMP_INSN or CALL_INSN. */
1412 if (GET_RTX_CLASS (GET_CODE (insn)) != 'i')
1413 return 0;
1415 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1416 if (REG_NOTE_KIND (link) == kind
1417 /* Verify that it is a register, so that scratch and MEM won't cause a
1418 problem here. */
1419 && GET_CODE (XEXP (link, 0)) == REG
1420 && REGNO (XEXP (link, 0)) <= regno
1421 && ((REGNO (XEXP (link, 0))
1422 + (REGNO (XEXP (link, 0)) >= FIRST_PSEUDO_REGISTER ? 1
1423 : HARD_REGNO_NREGS (REGNO (XEXP (link, 0)),
1424 GET_MODE (XEXP (link, 0)))))
1425 > regno))
1426 return link;
1427 return 0;
1430 /* Return true if DATUM, or any overlap of DATUM, of kind CODE is found
1431 in the CALL_INSN_FUNCTION_USAGE information of INSN. */
1434 find_reg_fusage (insn, code, datum)
1435 rtx insn;
1436 enum rtx_code code;
1437 rtx datum;
1439 /* If it's not a CALL_INSN, it can't possibly have a
1440 CALL_INSN_FUNCTION_USAGE field, so don't bother checking. */
1441 if (GET_CODE (insn) != CALL_INSN)
1442 return 0;
1444 if (! datum)
1445 abort();
1447 if (GET_CODE (datum) != REG)
1449 register rtx link;
1451 for (link = CALL_INSN_FUNCTION_USAGE (insn);
1452 link;
1453 link = XEXP (link, 1))
1454 if (GET_CODE (XEXP (link, 0)) == code
1455 && rtx_equal_p (datum, SET_DEST (XEXP (link, 0))))
1456 return 1;
1458 else
1460 register int regno = REGNO (datum);
1462 /* CALL_INSN_FUNCTION_USAGE information cannot contain references
1463 to pseudo registers, so don't bother checking. */
1465 if (regno < FIRST_PSEUDO_REGISTER)
1467 int end_regno = regno + HARD_REGNO_NREGS (regno, GET_MODE (datum));
1468 int i;
1470 for (i = regno; i < end_regno; i++)
1471 if (find_regno_fusage (insn, code, i))
1472 return 1;
1476 return 0;
1479 /* Return true if REGNO, or any overlap of REGNO, of kind CODE is found
1480 in the CALL_INSN_FUNCTION_USAGE information of INSN. */
1483 find_regno_fusage (insn, code, regno)
1484 rtx insn;
1485 enum rtx_code code;
1486 int regno;
1488 register rtx link;
1490 /* CALL_INSN_FUNCTION_USAGE information cannot contain references
1491 to pseudo registers, so don't bother checking. */
1493 if (regno >= FIRST_PSEUDO_REGISTER
1494 || GET_CODE (insn) != CALL_INSN )
1495 return 0;
1497 for (link = CALL_INSN_FUNCTION_USAGE (insn); link; link = XEXP (link, 1))
1499 register int regnote;
1500 register rtx op, reg;
1502 if (GET_CODE (op = XEXP (link, 0)) == code
1503 && GET_CODE (reg = XEXP (op, 0)) == REG
1504 && (regnote = REGNO (reg)) <= regno
1505 && regnote + HARD_REGNO_NREGS (regnote, GET_MODE (reg)) > regno)
1506 return 1;
1509 return 0;
1512 /* Remove register note NOTE from the REG_NOTES of INSN. */
1514 void
1515 remove_note (insn, note)
1516 register rtx note;
1517 register rtx insn;
1519 register rtx link;
1521 if (REG_NOTES (insn) == note)
1523 REG_NOTES (insn) = XEXP (note, 1);
1524 return;
1527 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1528 if (XEXP (link, 1) == note)
1530 XEXP (link, 1) = XEXP (note, 1);
1531 return;
1534 abort ();
1537 /* Search LISTP (an EXPR_LIST) for NODE and remove NODE from the list
1538 if it is found.
1540 A simple equality test is used to determine if NODE is on the
1541 EXPR_LIST. */
1543 void
1544 remove_node_from_expr_list (node, listp)
1545 rtx node;
1546 rtx *listp;
1548 rtx temp = *listp;
1549 rtx prev = NULL_RTX;
1551 while (temp)
1553 if (node == XEXP (temp, 0))
1555 /* Splice the node out of the list. */
1556 if (prev)
1557 XEXP (prev, 1) = XEXP (temp, 1);
1558 else
1559 *listp = XEXP (temp, 1);
1561 return;
1563 temp = XEXP (temp, 1);
1567 /* Nonzero if X contains any volatile instructions. These are instructions
1568 which may cause unpredictable machine state instructions, and thus no
1569 instructions should be moved or combined across them. This includes
1570 only volatile asms and UNSPEC_VOLATILE instructions. */
1573 volatile_insn_p (x)
1574 rtx x;
1576 register RTX_CODE code;
1578 code = GET_CODE (x);
1579 switch (code)
1581 case LABEL_REF:
1582 case SYMBOL_REF:
1583 case CONST_INT:
1584 case CONST:
1585 case CONST_DOUBLE:
1586 case CC0:
1587 case PC:
1588 case REG:
1589 case SCRATCH:
1590 case CLOBBER:
1591 case ASM_INPUT:
1592 case ADDR_VEC:
1593 case ADDR_DIFF_VEC:
1594 case CALL:
1595 case MEM:
1596 return 0;
1598 case UNSPEC_VOLATILE:
1599 /* case TRAP_IF: This isn't clear yet. */
1600 return 1;
1602 case ASM_OPERANDS:
1603 if (MEM_VOLATILE_P (x))
1604 return 1;
1606 default:
1607 break;
1610 /* Recursively scan the operands of this expression. */
1613 register const char *fmt = GET_RTX_FORMAT (code);
1614 register int i;
1616 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1618 if (fmt[i] == 'e')
1620 if (volatile_insn_p (XEXP (x, i)))
1621 return 1;
1623 if (fmt[i] == 'E')
1625 register int j;
1626 for (j = 0; j < XVECLEN (x, i); j++)
1627 if (volatile_insn_p (XVECEXP (x, i, j)))
1628 return 1;
1632 return 0;
1635 /* Nonzero if X contains any volatile memory references
1636 UNSPEC_VOLATILE operations or volatile ASM_OPERANDS expressions. */
1639 volatile_refs_p (x)
1640 rtx x;
1642 register RTX_CODE code;
1644 code = GET_CODE (x);
1645 switch (code)
1647 case LABEL_REF:
1648 case SYMBOL_REF:
1649 case CONST_INT:
1650 case CONST:
1651 case CONST_DOUBLE:
1652 case CC0:
1653 case PC:
1654 case REG:
1655 case SCRATCH:
1656 case CLOBBER:
1657 case ASM_INPUT:
1658 case ADDR_VEC:
1659 case ADDR_DIFF_VEC:
1660 return 0;
1662 case CALL:
1663 case UNSPEC_VOLATILE:
1664 /* case TRAP_IF: This isn't clear yet. */
1665 return 1;
1667 case MEM:
1668 case ASM_OPERANDS:
1669 if (MEM_VOLATILE_P (x))
1670 return 1;
1672 default:
1673 break;
1676 /* Recursively scan the operands of this expression. */
1679 register const char *fmt = GET_RTX_FORMAT (code);
1680 register int i;
1682 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1684 if (fmt[i] == 'e')
1686 if (volatile_refs_p (XEXP (x, i)))
1687 return 1;
1689 if (fmt[i] == 'E')
1691 register int j;
1692 for (j = 0; j < XVECLEN (x, i); j++)
1693 if (volatile_refs_p (XVECEXP (x, i, j)))
1694 return 1;
1698 return 0;
1701 /* Similar to above, except that it also rejects register pre- and post-
1702 incrementing. */
1705 side_effects_p (x)
1706 rtx x;
1708 register RTX_CODE code;
1710 code = GET_CODE (x);
1711 switch (code)
1713 case LABEL_REF:
1714 case SYMBOL_REF:
1715 case CONST_INT:
1716 case CONST:
1717 case CONST_DOUBLE:
1718 case CC0:
1719 case PC:
1720 case REG:
1721 case SCRATCH:
1722 case ASM_INPUT:
1723 case ADDR_VEC:
1724 case ADDR_DIFF_VEC:
1725 return 0;
1727 case CLOBBER:
1728 /* Reject CLOBBER with a non-VOID mode. These are made by combine.c
1729 when some combination can't be done. If we see one, don't think
1730 that we can simplify the expression. */
1731 return (GET_MODE (x) != VOIDmode);
1733 case PRE_INC:
1734 case PRE_DEC:
1735 case POST_INC:
1736 case POST_DEC:
1737 case CALL:
1738 case UNSPEC_VOLATILE:
1739 /* case TRAP_IF: This isn't clear yet. */
1740 return 1;
1742 case MEM:
1743 case ASM_OPERANDS:
1744 if (MEM_VOLATILE_P (x))
1745 return 1;
1747 default:
1748 break;
1751 /* Recursively scan the operands of this expression. */
1754 register const char *fmt = GET_RTX_FORMAT (code);
1755 register int i;
1757 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1759 if (fmt[i] == 'e')
1761 if (side_effects_p (XEXP (x, i)))
1762 return 1;
1764 if (fmt[i] == 'E')
1766 register int j;
1767 for (j = 0; j < XVECLEN (x, i); j++)
1768 if (side_effects_p (XVECEXP (x, i, j)))
1769 return 1;
1773 return 0;
1776 /* Return nonzero if evaluating rtx X might cause a trap. */
1779 may_trap_p (x)
1780 rtx x;
1782 int i;
1783 enum rtx_code code;
1784 const char *fmt;
1786 if (x == 0)
1787 return 0;
1788 code = GET_CODE (x);
1789 switch (code)
1791 /* Handle these cases quickly. */
1792 case CONST_INT:
1793 case CONST_DOUBLE:
1794 case SYMBOL_REF:
1795 case LABEL_REF:
1796 case CONST:
1797 case PC:
1798 case CC0:
1799 case REG:
1800 case SCRATCH:
1801 return 0;
1803 /* Conditional trap can trap! */
1804 case UNSPEC_VOLATILE:
1805 case TRAP_IF:
1806 return 1;
1808 /* Memory ref can trap unless it's a static var or a stack slot. */
1809 case MEM:
1810 return rtx_addr_can_trap_p (XEXP (x, 0));
1812 /* Division by a non-constant might trap. */
1813 case DIV:
1814 case MOD:
1815 case UDIV:
1816 case UMOD:
1817 if (! CONSTANT_P (XEXP (x, 1))
1818 || GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
1819 return 1;
1820 /* This was const0_rtx, but by not using that,
1821 we can link this file into other programs. */
1822 if (GET_CODE (XEXP (x, 1)) == CONST_INT && INTVAL (XEXP (x, 1)) == 0)
1823 return 1;
1824 break;
1826 case EXPR_LIST:
1827 /* An EXPR_LIST is used to represent a function call. This
1828 certainly may trap. */
1829 return 1;
1831 default:
1832 /* Any floating arithmetic may trap. */
1833 if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
1834 return 1;
1837 fmt = GET_RTX_FORMAT (code);
1838 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1840 if (fmt[i] == 'e')
1842 if (may_trap_p (XEXP (x, i)))
1843 return 1;
1845 else if (fmt[i] == 'E')
1847 register int j;
1848 for (j = 0; j < XVECLEN (x, i); j++)
1849 if (may_trap_p (XVECEXP (x, i, j)))
1850 return 1;
1853 return 0;
1856 /* Return nonzero if X contains a comparison that is not either EQ or NE,
1857 i.e., an inequality. */
1860 inequality_comparisons_p (x)
1861 rtx x;
1863 register const char *fmt;
1864 register int len, i;
1865 register enum rtx_code code = GET_CODE (x);
1867 switch (code)
1869 case REG:
1870 case SCRATCH:
1871 case PC:
1872 case CC0:
1873 case CONST_INT:
1874 case CONST_DOUBLE:
1875 case CONST:
1876 case LABEL_REF:
1877 case SYMBOL_REF:
1878 return 0;
1880 case LT:
1881 case LTU:
1882 case GT:
1883 case GTU:
1884 case LE:
1885 case LEU:
1886 case GE:
1887 case GEU:
1888 return 1;
1890 default:
1891 break;
1894 len = GET_RTX_LENGTH (code);
1895 fmt = GET_RTX_FORMAT (code);
1897 for (i = 0; i < len; i++)
1899 if (fmt[i] == 'e')
1901 if (inequality_comparisons_p (XEXP (x, i)))
1902 return 1;
1904 else if (fmt[i] == 'E')
1906 register int j;
1907 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
1908 if (inequality_comparisons_p (XVECEXP (x, i, j)))
1909 return 1;
1913 return 0;
1916 /* Replace any occurrence of FROM in X with TO. The function does
1917 not enter into CONST_DOUBLE for the replace.
1919 Note that copying is not done so X must not be shared unless all copies
1920 are to be modified. */
1923 replace_rtx (x, from, to)
1924 rtx x, from, to;
1926 register int i, j;
1927 register const char *fmt;
1929 /* The following prevents loops occurrence when we change MEM in
1930 CONST_DOUBLE onto the same CONST_DOUBLE. */
1931 if (x != 0 && GET_CODE (x) == CONST_DOUBLE)
1932 return x;
1934 if (x == from)
1935 return to;
1937 /* Allow this function to make replacements in EXPR_LISTs. */
1938 if (x == 0)
1939 return 0;
1941 fmt = GET_RTX_FORMAT (GET_CODE (x));
1942 for (i = GET_RTX_LENGTH (GET_CODE (x)) - 1; i >= 0; i--)
1944 if (fmt[i] == 'e')
1945 XEXP (x, i) = replace_rtx (XEXP (x, i), from, to);
1946 else if (fmt[i] == 'E')
1947 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
1948 XVECEXP (x, i, j) = replace_rtx (XVECEXP (x, i, j), from, to);
1951 return x;
1954 /* Throughout the rtx X, replace many registers according to REG_MAP.
1955 Return the replacement for X (which may be X with altered contents).
1956 REG_MAP[R] is the replacement for register R, or 0 for don't replace.
1957 NREGS is the length of REG_MAP; regs >= NREGS are not mapped.
1959 We only support REG_MAP entries of REG or SUBREG. Also, hard registers
1960 should not be mapped to pseudos or vice versa since validate_change
1961 is not called.
1963 If REPLACE_DEST is 1, replacements are also done in destinations;
1964 otherwise, only sources are replaced. */
1967 replace_regs (x, reg_map, nregs, replace_dest)
1968 rtx x;
1969 rtx *reg_map;
1970 int nregs;
1971 int replace_dest;
1973 register enum rtx_code code;
1974 register int i;
1975 register const char *fmt;
1977 if (x == 0)
1978 return x;
1980 code = GET_CODE (x);
1981 switch (code)
1983 case SCRATCH:
1984 case PC:
1985 case CC0:
1986 case CONST_INT:
1987 case CONST_DOUBLE:
1988 case CONST:
1989 case SYMBOL_REF:
1990 case LABEL_REF:
1991 return x;
1993 case REG:
1994 /* Verify that the register has an entry before trying to access it. */
1995 if (REGNO (x) < nregs && reg_map[REGNO (x)] != 0)
1997 /* SUBREGs can't be shared. Always return a copy to ensure that if
1998 this replacement occurs more than once then each instance will
1999 get distinct rtx. */
2000 if (GET_CODE (reg_map[REGNO (x)]) == SUBREG)
2001 return copy_rtx (reg_map[REGNO (x)]);
2002 return reg_map[REGNO (x)];
2004 return x;
2006 case SUBREG:
2007 /* Prevent making nested SUBREGs. */
2008 if (GET_CODE (SUBREG_REG (x)) == REG && REGNO (SUBREG_REG (x)) < nregs
2009 && reg_map[REGNO (SUBREG_REG (x))] != 0
2010 && GET_CODE (reg_map[REGNO (SUBREG_REG (x))]) == SUBREG)
2012 rtx map_val = reg_map[REGNO (SUBREG_REG (x))];
2013 rtx map_inner = SUBREG_REG (map_val);
2015 if (GET_MODE (x) == GET_MODE (map_inner))
2016 return map_inner;
2017 else
2019 /* We cannot call gen_rtx here since we may be linked with
2020 genattrtab.c. */
2021 /* Let's try clobbering the incoming SUBREG and see
2022 if this is really safe. */
2023 SUBREG_REG (x) = map_inner;
2024 SUBREG_WORD (x) += SUBREG_WORD (map_val);
2025 return x;
2026 #if 0
2027 rtx new = rtx_alloc (SUBREG);
2028 PUT_MODE (new, GET_MODE (x));
2029 SUBREG_REG (new) = map_inner;
2030 SUBREG_WORD (new) = SUBREG_WORD (x) + SUBREG_WORD (map_val);
2031 #endif
2034 break;
2036 case SET:
2037 if (replace_dest)
2038 SET_DEST (x) = replace_regs (SET_DEST (x), reg_map, nregs, 0);
2040 else if (GET_CODE (SET_DEST (x)) == MEM
2041 || GET_CODE (SET_DEST (x)) == STRICT_LOW_PART)
2042 /* Even if we are not to replace destinations, replace register if it
2043 is CONTAINED in destination (destination is memory or
2044 STRICT_LOW_PART). */
2045 XEXP (SET_DEST (x), 0) = replace_regs (XEXP (SET_DEST (x), 0),
2046 reg_map, nregs, 0);
2047 else if (GET_CODE (SET_DEST (x)) == ZERO_EXTRACT)
2048 /* Similarly, for ZERO_EXTRACT we replace all operands. */
2049 break;
2051 SET_SRC (x) = replace_regs (SET_SRC (x), reg_map, nregs, 0);
2052 return x;
2054 default:
2055 break;
2058 fmt = GET_RTX_FORMAT (code);
2059 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2061 if (fmt[i] == 'e')
2062 XEXP (x, i) = replace_regs (XEXP (x, i), reg_map, nregs, replace_dest);
2063 if (fmt[i] == 'E')
2065 register int j;
2066 for (j = 0; j < XVECLEN (x, i); j++)
2067 XVECEXP (x, i, j) = replace_regs (XVECEXP (x, i, j), reg_map,
2068 nregs, replace_dest);
2071 return x;
2074 /* Return 1 if X, the SRC_SRC of SET of (pc) contain a REG or MEM that is
2075 not in the constant pool and not in the condition of an IF_THEN_ELSE. */
2077 static int
2078 jmp_uses_reg_or_mem (x)
2079 rtx x;
2081 enum rtx_code code = GET_CODE (x);
2082 int i, j;
2083 const char *fmt;
2085 switch (code)
2087 case CONST:
2088 case LABEL_REF:
2089 case PC:
2090 return 0;
2092 case REG:
2093 return 1;
2095 case MEM:
2096 return ! (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
2097 && CONSTANT_POOL_ADDRESS_P (XEXP (x, 0)));
2099 case IF_THEN_ELSE:
2100 return (jmp_uses_reg_or_mem (XEXP (x, 1))
2101 || jmp_uses_reg_or_mem (XEXP (x, 2)));
2103 case PLUS: case MINUS: case MULT:
2104 return (jmp_uses_reg_or_mem (XEXP (x, 0))
2105 || jmp_uses_reg_or_mem (XEXP (x, 1)));
2107 default:
2108 break;
2111 fmt = GET_RTX_FORMAT (code);
2112 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2114 if (fmt[i] == 'e'
2115 && jmp_uses_reg_or_mem (XEXP (x, i)))
2116 return 1;
2118 if (fmt[i] == 'E')
2119 for (j = 0; j < XVECLEN (x, i); j++)
2120 if (jmp_uses_reg_or_mem (XVECEXP (x, i, j)))
2121 return 1;
2124 return 0;
2127 /* Return nonzero if INSN is an indirect jump (aka computed jump).
2129 Tablejumps and casesi insns are not considered indirect jumps;
2130 we can recognize them by a (use (lael_ref)). */
2133 computed_jump_p (insn)
2134 rtx insn;
2136 int i;
2137 if (GET_CODE (insn) == JUMP_INSN)
2139 rtx pat = PATTERN (insn);
2141 if (GET_CODE (pat) == PARALLEL)
2143 int len = XVECLEN (pat, 0);
2144 int has_use_labelref = 0;
2146 for (i = len - 1; i >= 0; i--)
2147 if (GET_CODE (XVECEXP (pat, 0, i)) == USE
2148 && (GET_CODE (XEXP (XVECEXP (pat, 0, i), 0))
2149 == LABEL_REF))
2150 has_use_labelref = 1;
2152 if (! has_use_labelref)
2153 for (i = len - 1; i >= 0; i--)
2154 if (GET_CODE (XVECEXP (pat, 0, i)) == SET
2155 && SET_DEST (XVECEXP (pat, 0, i)) == pc_rtx
2156 && jmp_uses_reg_or_mem (SET_SRC (XVECEXP (pat, 0, i))))
2157 return 1;
2159 else if (GET_CODE (pat) == SET
2160 && SET_DEST (pat) == pc_rtx
2161 && jmp_uses_reg_or_mem (SET_SRC (pat)))
2162 return 1;
2164 return 0;
2167 /* Traverse X via depth-first search, calling F for each
2168 sub-expression (including X itself). F is also passed the DATA.
2169 If F returns -1, do not traverse sub-expressions, but continue
2170 traversing the rest of the tree. If F ever returns any other
2171 non-zero value, stop the traversal, and return the value returned
2172 by F. Otherwise, return 0. This function does not traverse inside
2173 tree structure that contains RTX_EXPRs, or into sub-expressions
2174 whose format code is `0' since it is not known whether or not those
2175 codes are actually RTL.
2177 This routine is very general, and could (should?) be used to
2178 implement many of the other routines in this file. */
2181 for_each_rtx (x, f, data)
2182 rtx *x;
2183 rtx_function f;
2184 void *data;
2186 int result;
2187 int length;
2188 const char* format;
2189 int i;
2191 /* Call F on X. */
2192 result = (*f)(x, data);
2193 if (result == -1)
2194 /* Do not traverse sub-expressions. */
2195 return 0;
2196 else if (result != 0)
2197 /* Stop the traversal. */
2198 return result;
2200 if (*x == NULL_RTX)
2201 /* There are no sub-expressions. */
2202 return 0;
2204 length = GET_RTX_LENGTH (GET_CODE (*x));
2205 format = GET_RTX_FORMAT (GET_CODE (*x));
2207 for (i = 0; i < length; ++i)
2209 switch (format[i])
2211 case 'e':
2212 result = for_each_rtx (&XEXP (*x, i), f, data);
2213 if (result != 0)
2214 return result;
2215 break;
2217 case 'V':
2218 case 'E':
2219 if (XVEC (*x, i) != 0)
2221 int j;
2222 for (j = 0; j < XVECLEN (*x, i); ++j)
2224 result = for_each_rtx (&XVECEXP (*x, i, j), f, data);
2225 if (result != 0)
2226 return result;
2229 break;
2231 default:
2232 /* Nothing to do. */
2233 break;
2238 return 0;
2241 /* Searches X for any reference to REGNO, returning the rtx of the
2242 reference found if any. Otherwise, returns NULL_RTX. */
2245 regno_use_in (regno, x)
2246 int regno;
2247 rtx x;
2249 register const char *fmt;
2250 int i, j;
2251 rtx tem;
2253 if (GET_CODE (x) == REG && REGNO (x) == regno)
2254 return x;
2256 fmt = GET_RTX_FORMAT (GET_CODE (x));
2257 for (i = GET_RTX_LENGTH (GET_CODE (x)) - 1; i >= 0; i--)
2259 if (fmt[i] == 'e')
2261 if ((tem = regno_use_in (regno, XEXP (x, i))))
2262 return tem;
2264 else if (fmt[i] == 'E')
2265 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
2266 if ((tem = regno_use_in (regno , XVECEXP (x, i, j))))
2267 return tem;
2270 return NULL_RTX;
2274 /* Return 1 if X is an autoincrement side effect and the register is
2275 not the stack pointer. */
2277 auto_inc_p (x)
2278 rtx x;
2280 switch (GET_CODE (x))
2282 case PRE_INC:
2283 case POST_INC:
2284 case PRE_DEC:
2285 case POST_DEC:
2286 case PRE_MODIFY:
2287 case POST_MODIFY:
2288 /* There are no REG_INC notes for SP. */
2289 if (XEXP (x, 0) != stack_pointer_rtx)
2290 return 1;
2291 default:
2292 break;
2294 return 0;
2297 /* Return 1 if the sequence of instructions beginning with FROM and up
2298 to and including TO is safe to move. If NEW_TO is non-NULL, and
2299 the sequence is not already safe to move, but can be easily
2300 extended to a sequence which is safe, then NEW_TO will point to the
2301 end of the extended sequence.
2303 For now, this function only checks that the region contains whole
2304 exception regiongs, but it could be extended to check additional
2305 conditions as well. */
2308 insns_safe_to_move_p (from, to, new_to)
2309 rtx from;
2310 rtx to;
2311 rtx *new_to;
2313 int eh_region_count = 0;
2314 int past_to_p = 0;
2315 rtx r = from;
2317 /* By default, assume the end of the region will be what was
2318 suggested. */
2319 if (new_to)
2320 *new_to = to;
2322 while (r)
2324 if (GET_CODE (r) == NOTE)
2326 switch (NOTE_LINE_NUMBER (r))
2328 case NOTE_INSN_EH_REGION_BEG:
2329 ++eh_region_count;
2330 break;
2332 case NOTE_INSN_EH_REGION_END:
2333 if (eh_region_count == 0)
2334 /* This sequence of instructions contains the end of
2335 an exception region, but not he beginning. Moving
2336 it will cause chaos. */
2337 return 0;
2339 --eh_region_count;
2340 break;
2342 default:
2343 break;
2346 else if (past_to_p)
2347 /* If we've passed TO, and we see a non-note instruction, we
2348 can't extend the sequence to a movable sequence. */
2349 return 0;
2351 if (r == to)
2353 if (!new_to)
2354 /* It's OK to move the sequence if there were matched sets of
2355 exception region notes. */
2356 return eh_region_count == 0;
2358 past_to_p = 1;
2361 /* It's OK to move the sequence if there were matched sets of
2362 exception region notes. */
2363 if (past_to_p && eh_region_count == 0)
2365 *new_to = r;
2366 return 1;
2369 /* Go to the next instruction. */
2370 r = NEXT_INSN (r);
2373 return 0;