* emit-rtl.c (adjust_address_1): Always copy address to avoid
[official-gcc.git] / gcc / rtlanal.c
blobc2de74b3cc8a1677b7bced8ca7ac438ee3d361d5
1 /* Analyze RTL for C-Compiler
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
23 #include "config.h"
24 #include "system.h"
25 #include "toplev.h"
26 #include "rtl.h"
27 #include "hard-reg-set.h"
28 #include "tm_p.h"
30 /* Forward declarations */
31 static void set_of_1 PARAMS ((rtx, rtx, void *));
32 static void insn_dependent_p_1 PARAMS ((rtx, rtx, void *));
33 static int computed_jump_p_1 PARAMS ((rtx));
34 static void parms_set PARAMS ((rtx, rtx, void *));
36 /* Bit flags that specify the machine subtype we are compiling for.
37 Bits are tested using macros TARGET_... defined in the tm.h file
38 and set by `-m...' switches. Must be defined in rtlanal.c. */
40 int target_flags;
42 /* Return 1 if the value of X is unstable
43 (would be different at a different point in the program).
44 The frame pointer, arg pointer, etc. are considered stable
45 (within one function) and so is anything marked `unchanging'. */
47 int
48 rtx_unstable_p (x)
49 rtx x;
51 RTX_CODE code = GET_CODE (x);
52 int i;
53 const char *fmt;
55 switch (code)
57 case MEM:
58 return ! RTX_UNCHANGING_P (x) || rtx_unstable_p (XEXP (x, 0));
60 case QUEUED:
61 return 1;
63 case ADDRESSOF:
64 case CONST:
65 case CONST_INT:
66 case CONST_DOUBLE:
67 case SYMBOL_REF:
68 case LABEL_REF:
69 return 0;
71 case REG:
72 /* As in rtx_varies_p, we have to use the actual rtx, not reg number. */
73 if (x == frame_pointer_rtx || x == hard_frame_pointer_rtx
74 /* The arg pointer varies if it is not a fixed register. */
75 || (x == arg_pointer_rtx && fixed_regs[ARG_POINTER_REGNUM])
76 || RTX_UNCHANGING_P (x))
77 return 0;
78 #ifndef PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
79 /* ??? When call-clobbered, the value is stable modulo the restore
80 that must happen after a call. This currently screws up local-alloc
81 into believing that the restore is not needed. */
82 if (x == pic_offset_table_rtx)
83 return 0;
84 #endif
85 return 1;
87 case ASM_OPERANDS:
88 if (MEM_VOLATILE_P (x))
89 return 1;
91 /* FALLTHROUGH */
93 default:
94 break;
97 fmt = GET_RTX_FORMAT (code);
98 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
99 if (fmt[i] == 'e')
101 if (rtx_unstable_p (XEXP (x, i)))
102 return 1;
104 else if (fmt[i] == 'E')
106 int j;
107 for (j = 0; j < XVECLEN (x, i); j++)
108 if (rtx_unstable_p (XVECEXP (x, i, j)))
109 return 1;
112 return 0;
115 /* Return 1 if X has a value that can vary even between two
116 executions of the program. 0 means X can be compared reliably
117 against certain constants or near-constants.
118 FOR_ALIAS is nonzero if we are called from alias analysis; if it is
119 zero, we are slightly more conservative.
120 The frame pointer and the arg pointer are considered constant. */
123 rtx_varies_p (x, for_alias)
124 rtx x;
125 int for_alias;
127 RTX_CODE code = GET_CODE (x);
128 int i;
129 const char *fmt;
131 switch (code)
133 case MEM:
134 return ! RTX_UNCHANGING_P (x) || rtx_varies_p (XEXP (x, 0), for_alias);
136 case QUEUED:
137 return 1;
139 case CONST:
140 case CONST_INT:
141 case CONST_DOUBLE:
142 case SYMBOL_REF:
143 case LABEL_REF:
144 return 0;
146 case REG:
147 /* Note that we have to test for the actual rtx used for the frame
148 and arg pointers and not just the register number in case we have
149 eliminated the frame and/or arg pointer and are using it
150 for pseudos. */
151 if (x == frame_pointer_rtx || x == hard_frame_pointer_rtx
152 /* The arg pointer varies if it is not a fixed register. */
153 || (x == arg_pointer_rtx && fixed_regs[ARG_POINTER_REGNUM]))
154 return 0;
155 if (x == pic_offset_table_rtx
156 #ifdef PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
157 /* ??? When call-clobbered, the value is stable modulo the restore
158 that must happen after a call. This currently screws up
159 local-alloc into believing that the restore is not needed, so we
160 must return 0 only if we are called from alias analysis. */
161 && for_alias
162 #endif
164 return 0;
165 return 1;
167 case LO_SUM:
168 /* The operand 0 of a LO_SUM is considered constant
169 (in fact it is related specifically to operand 1)
170 during alias analysis. */
171 return (! for_alias && rtx_varies_p (XEXP (x, 0), for_alias))
172 || rtx_varies_p (XEXP (x, 1), for_alias);
174 case ASM_OPERANDS:
175 if (MEM_VOLATILE_P (x))
176 return 1;
178 /* FALLTHROUGH */
180 default:
181 break;
184 fmt = GET_RTX_FORMAT (code);
185 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
186 if (fmt[i] == 'e')
188 if (rtx_varies_p (XEXP (x, i), for_alias))
189 return 1;
191 else if (fmt[i] == 'E')
193 int j;
194 for (j = 0; j < XVECLEN (x, i); j++)
195 if (rtx_varies_p (XVECEXP (x, i, j), for_alias))
196 return 1;
199 return 0;
202 /* Return 0 if the use of X as an address in a MEM can cause a trap. */
205 rtx_addr_can_trap_p (x)
206 rtx x;
208 enum rtx_code code = GET_CODE (x);
210 switch (code)
212 case SYMBOL_REF:
213 return SYMBOL_REF_WEAK (x);
215 case LABEL_REF:
216 return 0;
218 case REG:
219 /* As in rtx_varies_p, we have to use the actual rtx, not reg number. */
220 if (x == frame_pointer_rtx || x == hard_frame_pointer_rtx
221 || x == stack_pointer_rtx
222 /* The arg pointer varies if it is not a fixed register. */
223 || (x == arg_pointer_rtx && fixed_regs[ARG_POINTER_REGNUM]))
224 return 0;
225 /* All of the virtual frame registers are stack references. */
226 if (REGNO (x) >= FIRST_VIRTUAL_REGISTER
227 && REGNO (x) <= LAST_VIRTUAL_REGISTER)
228 return 0;
229 return 1;
231 case CONST:
232 return rtx_addr_can_trap_p (XEXP (x, 0));
234 case PLUS:
235 /* An address is assumed not to trap if it is an address that can't
236 trap plus a constant integer or it is the pic register plus a
237 constant. */
238 return ! ((! rtx_addr_can_trap_p (XEXP (x, 0))
239 && GET_CODE (XEXP (x, 1)) == CONST_INT)
240 || (XEXP (x, 0) == pic_offset_table_rtx
241 && CONSTANT_P (XEXP (x, 1))));
243 case LO_SUM:
244 case PRE_MODIFY:
245 return rtx_addr_can_trap_p (XEXP (x, 1));
247 case PRE_DEC:
248 case PRE_INC:
249 case POST_DEC:
250 case POST_INC:
251 case POST_MODIFY:
252 return rtx_addr_can_trap_p (XEXP (x, 0));
254 default:
255 break;
258 /* If it isn't one of the case above, it can cause a trap. */
259 return 1;
262 /* Return 1 if X refers to a memory location whose address
263 cannot be compared reliably with constant addresses,
264 or if X refers to a BLKmode memory object.
265 FOR_ALIAS is nonzero if we are called from alias analysis; if it is
266 zero, we are slightly more conservative. */
269 rtx_addr_varies_p (x, for_alias)
270 rtx x;
271 int for_alias;
273 enum rtx_code code;
274 int i;
275 const char *fmt;
277 if (x == 0)
278 return 0;
280 code = GET_CODE (x);
281 if (code == MEM)
282 return GET_MODE (x) == BLKmode || rtx_varies_p (XEXP (x, 0), for_alias);
284 fmt = GET_RTX_FORMAT (code);
285 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
286 if (fmt[i] == 'e')
288 if (rtx_addr_varies_p (XEXP (x, i), for_alias))
289 return 1;
291 else if (fmt[i] == 'E')
293 int j;
294 for (j = 0; j < XVECLEN (x, i); j++)
295 if (rtx_addr_varies_p (XVECEXP (x, i, j), for_alias))
296 return 1;
298 return 0;
301 /* Return the value of the integer term in X, if one is apparent;
302 otherwise return 0.
303 Only obvious integer terms are detected.
304 This is used in cse.c with the `related_value' field.*/
306 HOST_WIDE_INT
307 get_integer_term (x)
308 rtx x;
310 if (GET_CODE (x) == CONST)
311 x = XEXP (x, 0);
313 if (GET_CODE (x) == MINUS
314 && GET_CODE (XEXP (x, 1)) == CONST_INT)
315 return - INTVAL (XEXP (x, 1));
316 if (GET_CODE (x) == PLUS
317 && GET_CODE (XEXP (x, 1)) == CONST_INT)
318 return INTVAL (XEXP (x, 1));
319 return 0;
322 /* If X is a constant, return the value sans apparent integer term;
323 otherwise return 0.
324 Only obvious integer terms are detected. */
327 get_related_value (x)
328 rtx x;
330 if (GET_CODE (x) != CONST)
331 return 0;
332 x = XEXP (x, 0);
333 if (GET_CODE (x) == PLUS
334 && GET_CODE (XEXP (x, 1)) == CONST_INT)
335 return XEXP (x, 0);
336 else if (GET_CODE (x) == MINUS
337 && GET_CODE (XEXP (x, 1)) == CONST_INT)
338 return XEXP (x, 0);
339 return 0;
342 /* Given a tablejump insn INSN, return the RTL expression for the offset
343 into the jump table. If the offset cannot be determined, then return
344 NULL_RTX.
346 If EARLIEST is non-zero, it is a pointer to a place where the earliest
347 insn used in locating the offset was found. */
350 get_jump_table_offset (insn, earliest)
351 rtx insn;
352 rtx *earliest;
354 rtx label;
355 rtx table;
356 rtx set;
357 rtx old_insn;
358 rtx x;
359 rtx old_x;
360 rtx y;
361 rtx old_y;
362 int i;
364 if (GET_CODE (insn) != JUMP_INSN
365 || ! (label = JUMP_LABEL (insn))
366 || ! (table = NEXT_INSN (label))
367 || GET_CODE (table) != JUMP_INSN
368 || (GET_CODE (PATTERN (table)) != ADDR_VEC
369 && GET_CODE (PATTERN (table)) != ADDR_DIFF_VEC)
370 || ! (set = single_set (insn)))
371 return NULL_RTX;
373 x = SET_SRC (set);
375 /* Some targets (eg, ARM) emit a tablejump that also
376 contains the out-of-range target. */
377 if (GET_CODE (x) == IF_THEN_ELSE
378 && GET_CODE (XEXP (x, 2)) == LABEL_REF)
379 x = XEXP (x, 1);
381 /* Search backwards and locate the expression stored in X. */
382 for (old_x = NULL_RTX; GET_CODE (x) == REG && x != old_x;
383 old_x = x, x = find_last_value (x, &insn, NULL_RTX, 0))
386 /* If X is an expression using a relative address then strip
387 off the addition / subtraction of PC, PIC_OFFSET_TABLE_REGNUM,
388 or the jump table label. */
389 if (GET_CODE (PATTERN (table)) == ADDR_DIFF_VEC
390 && (GET_CODE (x) == PLUS || GET_CODE (x) == MINUS))
392 for (i = 0; i < 2; i++)
394 old_insn = insn;
395 y = XEXP (x, i);
397 if (y == pc_rtx || y == pic_offset_table_rtx)
398 break;
400 for (old_y = NULL_RTX; GET_CODE (y) == REG && y != old_y;
401 old_y = y, y = find_last_value (y, &old_insn, NULL_RTX, 0))
404 if ((GET_CODE (y) == LABEL_REF && XEXP (y, 0) == label))
405 break;
408 if (i >= 2)
409 return NULL_RTX;
411 x = XEXP (x, 1 - i);
413 for (old_x = NULL_RTX; GET_CODE (x) == REG && x != old_x;
414 old_x = x, x = find_last_value (x, &insn, NULL_RTX, 0))
418 /* Strip off any sign or zero extension. */
419 if (GET_CODE (x) == SIGN_EXTEND || GET_CODE (x) == ZERO_EXTEND)
421 x = XEXP (x, 0);
423 for (old_x = NULL_RTX; GET_CODE (x) == REG && x != old_x;
424 old_x = x, x = find_last_value (x, &insn, NULL_RTX, 0))
428 /* If X isn't a MEM then this isn't a tablejump we understand. */
429 if (GET_CODE (x) != MEM)
430 return NULL_RTX;
432 /* Strip off the MEM. */
433 x = XEXP (x, 0);
435 for (old_x = NULL_RTX; GET_CODE (x) == REG && x != old_x;
436 old_x = x, x = find_last_value (x, &insn, NULL_RTX, 0))
439 /* If X isn't a PLUS than this isn't a tablejump we understand. */
440 if (GET_CODE (x) != PLUS)
441 return NULL_RTX;
443 /* At this point we should have an expression representing the jump table
444 plus an offset. Examine each operand in order to determine which one
445 represents the jump table. Knowing that tells us that the other operand
446 must represent the offset. */
447 for (i = 0; i < 2; i++)
449 old_insn = insn;
450 y = XEXP (x, i);
452 for (old_y = NULL_RTX; GET_CODE (y) == REG && y != old_y;
453 old_y = y, y = find_last_value (y, &old_insn, NULL_RTX, 0))
456 if ((GET_CODE (y) == CONST || GET_CODE (y) == LABEL_REF)
457 && reg_mentioned_p (label, y))
458 break;
461 if (i >= 2)
462 return NULL_RTX;
464 x = XEXP (x, 1 - i);
466 /* Strip off the addition / subtraction of PIC_OFFSET_TABLE_REGNUM. */
467 if (GET_CODE (x) == PLUS || GET_CODE (x) == MINUS)
468 for (i = 0; i < 2; i++)
469 if (XEXP (x, i) == pic_offset_table_rtx)
471 x = XEXP (x, 1 - i);
472 break;
475 if (earliest)
476 *earliest = insn;
478 /* Return the RTL expression representing the offset. */
479 return x;
482 /* Return the number of places FIND appears within X. If COUNT_DEST is
483 zero, we do not count occurrences inside the destination of a SET. */
486 count_occurrences (x, find, count_dest)
487 rtx x, find;
488 int count_dest;
490 int i, j;
491 enum rtx_code code;
492 const char *format_ptr;
493 int count;
495 if (x == find)
496 return 1;
498 code = GET_CODE (x);
500 switch (code)
502 case REG:
503 case CONST_INT:
504 case CONST_DOUBLE:
505 case SYMBOL_REF:
506 case CODE_LABEL:
507 case PC:
508 case CC0:
509 return 0;
511 case MEM:
512 if (GET_CODE (find) == MEM && rtx_equal_p (x, find))
513 return 1;
514 break;
516 case SET:
517 if (SET_DEST (x) == find && ! count_dest)
518 return count_occurrences (SET_SRC (x), find, count_dest);
519 break;
521 default:
522 break;
525 format_ptr = GET_RTX_FORMAT (code);
526 count = 0;
528 for (i = 0; i < GET_RTX_LENGTH (code); i++)
530 switch (*format_ptr++)
532 case 'e':
533 count += count_occurrences (XEXP (x, i), find, count_dest);
534 break;
536 case 'E':
537 for (j = 0; j < XVECLEN (x, i); j++)
538 count += count_occurrences (XVECEXP (x, i, j), find, count_dest);
539 break;
542 return count;
545 /* Nonzero if register REG appears somewhere within IN.
546 Also works if REG is not a register; in this case it checks
547 for a subexpression of IN that is Lisp "equal" to REG. */
550 reg_mentioned_p (reg, in)
551 rtx reg, in;
553 const char *fmt;
554 int i;
555 enum rtx_code code;
557 if (in == 0)
558 return 0;
560 if (reg == in)
561 return 1;
563 if (GET_CODE (in) == LABEL_REF)
564 return reg == XEXP (in, 0);
566 code = GET_CODE (in);
568 switch (code)
570 /* Compare registers by number. */
571 case REG:
572 return GET_CODE (reg) == REG && REGNO (in) == REGNO (reg);
574 /* These codes have no constituent expressions
575 and are unique. */
576 case SCRATCH:
577 case CC0:
578 case PC:
579 return 0;
581 case CONST_INT:
582 return GET_CODE (reg) == CONST_INT && INTVAL (in) == INTVAL (reg);
584 case CONST_DOUBLE:
585 /* These are kept unique for a given value. */
586 return 0;
588 default:
589 break;
592 if (GET_CODE (reg) == code && rtx_equal_p (reg, in))
593 return 1;
595 fmt = GET_RTX_FORMAT (code);
597 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
599 if (fmt[i] == 'E')
601 int j;
602 for (j = XVECLEN (in, i) - 1; j >= 0; j--)
603 if (reg_mentioned_p (reg, XVECEXP (in, i, j)))
604 return 1;
606 else if (fmt[i] == 'e'
607 && reg_mentioned_p (reg, XEXP (in, i)))
608 return 1;
610 return 0;
613 /* Return 1 if in between BEG and END, exclusive of BEG and END, there is
614 no CODE_LABEL insn. */
617 no_labels_between_p (beg, end)
618 rtx beg, end;
620 rtx p;
621 if (beg == end)
622 return 0;
623 for (p = NEXT_INSN (beg); p != end; p = NEXT_INSN (p))
624 if (GET_CODE (p) == CODE_LABEL)
625 return 0;
626 return 1;
629 /* Return 1 if in between BEG and END, exclusive of BEG and END, there is
630 no JUMP_INSN insn. */
633 no_jumps_between_p (beg, end)
634 rtx beg, end;
636 rtx p;
637 for (p = NEXT_INSN (beg); p != end; p = NEXT_INSN (p))
638 if (GET_CODE (p) == JUMP_INSN)
639 return 0;
640 return 1;
643 /* Nonzero if register REG is used in an insn between
644 FROM_INSN and TO_INSN (exclusive of those two). */
647 reg_used_between_p (reg, from_insn, to_insn)
648 rtx reg, from_insn, to_insn;
650 rtx insn;
652 if (from_insn == to_insn)
653 return 0;
655 for (insn = NEXT_INSN (from_insn); insn != to_insn; insn = NEXT_INSN (insn))
656 if (INSN_P (insn)
657 && (reg_overlap_mentioned_p (reg, PATTERN (insn))
658 || (GET_CODE (insn) == CALL_INSN
659 && (find_reg_fusage (insn, USE, reg)
660 || find_reg_fusage (insn, CLOBBER, reg)))))
661 return 1;
662 return 0;
665 /* Nonzero if the old value of X, a register, is referenced in BODY. If X
666 is entirely replaced by a new value and the only use is as a SET_DEST,
667 we do not consider it a reference. */
670 reg_referenced_p (x, body)
671 rtx x;
672 rtx body;
674 int i;
676 switch (GET_CODE (body))
678 case SET:
679 if (reg_overlap_mentioned_p (x, SET_SRC (body)))
680 return 1;
682 /* If the destination is anything other than CC0, PC, a REG or a SUBREG
683 of a REG that occupies all of the REG, the insn references X if
684 it is mentioned in the destination. */
685 if (GET_CODE (SET_DEST (body)) != CC0
686 && GET_CODE (SET_DEST (body)) != PC
687 && GET_CODE (SET_DEST (body)) != REG
688 && ! (GET_CODE (SET_DEST (body)) == SUBREG
689 && GET_CODE (SUBREG_REG (SET_DEST (body))) == REG
690 && (((GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (body))))
691 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
692 == ((GET_MODE_SIZE (GET_MODE (SET_DEST (body)))
693 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)))
694 && reg_overlap_mentioned_p (x, SET_DEST (body)))
695 return 1;
696 return 0;
698 case ASM_OPERANDS:
699 for (i = ASM_OPERANDS_INPUT_LENGTH (body) - 1; i >= 0; i--)
700 if (reg_overlap_mentioned_p (x, ASM_OPERANDS_INPUT (body, i)))
701 return 1;
702 return 0;
704 case CALL:
705 case USE:
706 case IF_THEN_ELSE:
707 return reg_overlap_mentioned_p (x, body);
709 case TRAP_IF:
710 return reg_overlap_mentioned_p (x, TRAP_CONDITION (body));
712 case PREFETCH:
713 return reg_overlap_mentioned_p (x, XEXP (body, 0));
715 case UNSPEC:
716 case UNSPEC_VOLATILE:
717 for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
718 if (reg_overlap_mentioned_p (x, XVECEXP (body, 0, i)))
719 return 1;
720 return 0;
722 case PARALLEL:
723 for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
724 if (reg_referenced_p (x, XVECEXP (body, 0, i)))
725 return 1;
726 return 0;
728 case CLOBBER:
729 if (GET_CODE (XEXP (body, 0)) == MEM)
730 if (reg_overlap_mentioned_p (x, XEXP (XEXP (body, 0), 0)))
731 return 1;
732 return 0;
734 case COND_EXEC:
735 if (reg_overlap_mentioned_p (x, COND_EXEC_TEST (body)))
736 return 1;
737 return reg_referenced_p (x, COND_EXEC_CODE (body));
739 default:
740 return 0;
744 /* Nonzero if register REG is referenced in an insn between
745 FROM_INSN and TO_INSN (exclusive of those two). Sets of REG do
746 not count. */
749 reg_referenced_between_p (reg, from_insn, to_insn)
750 rtx reg, from_insn, to_insn;
752 rtx insn;
754 if (from_insn == to_insn)
755 return 0;
757 for (insn = NEXT_INSN (from_insn); insn != to_insn; insn = NEXT_INSN (insn))
758 if (INSN_P (insn)
759 && (reg_referenced_p (reg, PATTERN (insn))
760 || (GET_CODE (insn) == CALL_INSN
761 && find_reg_fusage (insn, USE, reg))))
762 return 1;
763 return 0;
766 /* Nonzero if register REG is set or clobbered in an insn between
767 FROM_INSN and TO_INSN (exclusive of those two). */
770 reg_set_between_p (reg, from_insn, to_insn)
771 rtx reg, from_insn, to_insn;
773 rtx insn;
775 if (from_insn == to_insn)
776 return 0;
778 for (insn = NEXT_INSN (from_insn); insn != to_insn; insn = NEXT_INSN (insn))
779 if (INSN_P (insn) && reg_set_p (reg, insn))
780 return 1;
781 return 0;
784 /* Internals of reg_set_between_p. */
786 reg_set_p (reg, insn)
787 rtx reg, insn;
789 rtx body = insn;
791 /* We can be passed an insn or part of one. If we are passed an insn,
792 check if a side-effect of the insn clobbers REG. */
793 if (INSN_P (insn))
795 if (FIND_REG_INC_NOTE (insn, reg)
796 || (GET_CODE (insn) == CALL_INSN
797 /* We'd like to test call_used_regs here, but rtlanal.c can't
798 reference that variable due to its use in genattrtab. So
799 we'll just be more conservative.
801 ??? Unless we could ensure that the CALL_INSN_FUNCTION_USAGE
802 information holds all clobbered registers. */
803 && ((GET_CODE (reg) == REG
804 && REGNO (reg) < FIRST_PSEUDO_REGISTER)
805 || GET_CODE (reg) == MEM
806 || find_reg_fusage (insn, CLOBBER, reg))))
807 return 1;
809 body = PATTERN (insn);
812 return set_of (reg, insn) != NULL_RTX;
815 /* Similar to reg_set_between_p, but check all registers in X. Return 0
816 only if none of them are modified between START and END. Do not
817 consider non-registers one way or the other. */
820 regs_set_between_p (x, start, end)
821 rtx x;
822 rtx start, end;
824 enum rtx_code code = GET_CODE (x);
825 const char *fmt;
826 int i, j;
828 switch (code)
830 case CONST_INT:
831 case CONST_DOUBLE:
832 case CONST:
833 case SYMBOL_REF:
834 case LABEL_REF:
835 case PC:
836 case CC0:
837 return 0;
839 case REG:
840 return reg_set_between_p (x, start, end);
842 default:
843 break;
846 fmt = GET_RTX_FORMAT (code);
847 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
849 if (fmt[i] == 'e' && regs_set_between_p (XEXP (x, i), start, end))
850 return 1;
852 else if (fmt[i] == 'E')
853 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
854 if (regs_set_between_p (XVECEXP (x, i, j), start, end))
855 return 1;
858 return 0;
861 /* Similar to reg_set_between_p, but check all registers in X. Return 0
862 only if none of them are modified between START and END. Return 1 if
863 X contains a MEM; this routine does not perform any memory aliasing. */
866 modified_between_p (x, start, end)
867 rtx x;
868 rtx start, end;
870 enum rtx_code code = GET_CODE (x);
871 const char *fmt;
872 int i, j;
874 switch (code)
876 case CONST_INT:
877 case CONST_DOUBLE:
878 case CONST:
879 case SYMBOL_REF:
880 case LABEL_REF:
881 return 0;
883 case PC:
884 case CC0:
885 return 1;
887 case MEM:
888 /* If the memory is not constant, assume it is modified. If it is
889 constant, we still have to check the address. */
890 if (! RTX_UNCHANGING_P (x))
891 return 1;
892 break;
894 case REG:
895 return reg_set_between_p (x, start, end);
897 default:
898 break;
901 fmt = GET_RTX_FORMAT (code);
902 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
904 if (fmt[i] == 'e' && modified_between_p (XEXP (x, i), start, end))
905 return 1;
907 else if (fmt[i] == 'E')
908 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
909 if (modified_between_p (XVECEXP (x, i, j), start, end))
910 return 1;
913 return 0;
916 /* Similar to reg_set_p, but check all registers in X. Return 0 only if none
917 of them are modified in INSN. Return 1 if X contains a MEM; this routine
918 does not perform any memory aliasing. */
921 modified_in_p (x, insn)
922 rtx x;
923 rtx insn;
925 enum rtx_code code = GET_CODE (x);
926 const char *fmt;
927 int i, j;
929 switch (code)
931 case CONST_INT:
932 case CONST_DOUBLE:
933 case CONST:
934 case SYMBOL_REF:
935 case LABEL_REF:
936 return 0;
938 case PC:
939 case CC0:
940 return 1;
942 case MEM:
943 /* If the memory is not constant, assume it is modified. If it is
944 constant, we still have to check the address. */
945 if (! RTX_UNCHANGING_P (x))
946 return 1;
947 break;
949 case REG:
950 return reg_set_p (x, insn);
952 default:
953 break;
956 fmt = GET_RTX_FORMAT (code);
957 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
959 if (fmt[i] == 'e' && modified_in_p (XEXP (x, i), insn))
960 return 1;
962 else if (fmt[i] == 'E')
963 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
964 if (modified_in_p (XVECEXP (x, i, j), insn))
965 return 1;
968 return 0;
971 /* Return true if anything in insn X is (anti,output,true) dependent on
972 anything in insn Y. */
975 insn_dependent_p (x, y)
976 rtx x, y;
978 rtx tmp;
980 if (! INSN_P (x) || ! INSN_P (y))
981 abort ();
983 tmp = PATTERN (y);
984 note_stores (PATTERN (x), insn_dependent_p_1, &tmp);
985 if (tmp == NULL_RTX)
986 return 1;
988 tmp = PATTERN (x);
989 note_stores (PATTERN (y), insn_dependent_p_1, &tmp);
990 if (tmp == NULL_RTX)
991 return 1;
993 return 0;
996 /* A helper routine for insn_dependent_p called through note_stores. */
998 static void
999 insn_dependent_p_1 (x, pat, data)
1000 rtx x;
1001 rtx pat ATTRIBUTE_UNUSED;
1002 void *data;
1004 rtx * pinsn = (rtx *) data;
1006 if (*pinsn && reg_mentioned_p (x, *pinsn))
1007 *pinsn = NULL_RTX;
1010 /* Helper function for set_of. */
1011 struct set_of_data
1013 rtx found;
1014 rtx pat;
1017 static void
1018 set_of_1 (x, pat, data1)
1019 rtx x;
1020 rtx pat;
1021 void *data1;
1023 struct set_of_data *data = (struct set_of_data *) (data1);
1024 if (rtx_equal_p (x, data->pat)
1025 || (GET_CODE (x) != MEM && reg_overlap_mentioned_p (data->pat, x)))
1026 data->found = pat;
1029 /* Give an INSN, return a SET or CLOBBER expression that does modify PAT
1030 (either directly or via STRICT_LOW_PART and similar modifiers). */
1032 set_of (pat, insn)
1033 rtx pat, insn;
1035 struct set_of_data data;
1036 data.found = NULL_RTX;
1037 data.pat = pat;
1038 note_stores (INSN_P (insn) ? PATTERN (insn) : insn, set_of_1, &data);
1039 return data.found;
1042 /* Given an INSN, return a SET expression if this insn has only a single SET.
1043 It may also have CLOBBERs, USEs, or SET whose output
1044 will not be used, which we ignore. */
1047 single_set_2 (insn, pat)
1048 rtx insn, pat;
1050 rtx set = NULL;
1051 int set_verified = 1;
1052 int i;
1054 if (GET_CODE (pat) == PARALLEL)
1056 for (i = 0; i < XVECLEN (pat, 0); i++)
1058 rtx sub = XVECEXP (pat, 0, i);
1059 switch (GET_CODE (sub))
1061 case USE:
1062 case CLOBBER:
1063 break;
1065 case SET:
1066 /* We can consider insns having multiple sets, where all
1067 but one are dead as single set insns. In common case
1068 only single set is present in the pattern so we want
1069 to avoid checking for REG_UNUSED notes unless necessary.
1071 When we reach set first time, we just expect this is
1072 the single set we are looking for and only when more
1073 sets are found in the insn, we check them. */
1074 if (!set_verified)
1076 if (find_reg_note (insn, REG_UNUSED, SET_DEST (set))
1077 && !side_effects_p (set))
1078 set = NULL;
1079 else
1080 set_verified = 1;
1082 if (!set)
1083 set = sub, set_verified = 0;
1084 else if (!find_reg_note (insn, REG_UNUSED, SET_DEST (sub))
1085 || side_effects_p (sub))
1086 return NULL_RTX;
1087 break;
1089 default:
1090 return NULL_RTX;
1094 return set;
1097 /* Given an INSN, return nonzero if it has more than one SET, else return
1098 zero. */
1101 multiple_sets (insn)
1102 rtx insn;
1104 int found;
1105 int i;
1107 /* INSN must be an insn. */
1108 if (! INSN_P (insn))
1109 return 0;
1111 /* Only a PARALLEL can have multiple SETs. */
1112 if (GET_CODE (PATTERN (insn)) == PARALLEL)
1114 for (i = 0, found = 0; i < XVECLEN (PATTERN (insn), 0); i++)
1115 if (GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == SET)
1117 /* If we have already found a SET, then return now. */
1118 if (found)
1119 return 1;
1120 else
1121 found = 1;
1125 /* Either zero or one SET. */
1126 return 0;
1129 /* Return nonzero if the destination of SET equals the source
1130 and there are no side effects. */
1133 set_noop_p (set)
1134 rtx set;
1136 rtx src = SET_SRC (set);
1137 rtx dst = SET_DEST (set);
1139 if (side_effects_p (src) || side_effects_p (dst))
1140 return 0;
1142 if (GET_CODE (dst) == MEM && GET_CODE (src) == MEM)
1143 return rtx_equal_p (dst, src);
1145 if (dst == pc_rtx && src == pc_rtx)
1146 return 1;
1148 if (GET_CODE (dst) == SIGN_EXTRACT
1149 || GET_CODE (dst) == ZERO_EXTRACT)
1150 return rtx_equal_p (XEXP (dst, 0), src)
1151 && ! BYTES_BIG_ENDIAN && XEXP (dst, 2) == const0_rtx;
1153 if (GET_CODE (dst) == STRICT_LOW_PART)
1154 dst = XEXP (dst, 0);
1156 if (GET_CODE (src) == SUBREG && GET_CODE (dst) == SUBREG)
1158 if (SUBREG_BYTE (src) != SUBREG_BYTE (dst))
1159 return 0;
1160 src = SUBREG_REG (src);
1161 dst = SUBREG_REG (dst);
1164 return (GET_CODE (src) == REG && GET_CODE (dst) == REG
1165 && REGNO (src) == REGNO (dst));
1168 /* Return nonzero if an insn consists only of SETs, each of which only sets a
1169 value to itself. */
1172 noop_move_p (insn)
1173 rtx insn;
1175 rtx pat = PATTERN (insn);
1177 if (INSN_CODE (insn) == NOOP_MOVE_INSN_CODE)
1178 return 1;
1180 /* Insns carrying these notes are useful later on. */
1181 if (find_reg_note (insn, REG_EQUAL, NULL_RTX))
1182 return 0;
1184 /* For now treat an insn with a REG_RETVAL note as a
1185 a special insn which should not be considered a no-op. */
1186 if (find_reg_note (insn, REG_RETVAL, NULL_RTX))
1187 return 0;
1189 if (GET_CODE (pat) == SET && set_noop_p (pat))
1190 return 1;
1192 if (GET_CODE (pat) == PARALLEL)
1194 int i;
1195 /* If nothing but SETs of registers to themselves,
1196 this insn can also be deleted. */
1197 for (i = 0; i < XVECLEN (pat, 0); i++)
1199 rtx tem = XVECEXP (pat, 0, i);
1201 if (GET_CODE (tem) == USE
1202 || GET_CODE (tem) == CLOBBER)
1203 continue;
1205 if (GET_CODE (tem) != SET || ! set_noop_p (tem))
1206 return 0;
1209 return 1;
1211 return 0;
1215 /* Return the last thing that X was assigned from before *PINSN. If VALID_TO
1216 is not NULL_RTX then verify that the object is not modified up to VALID_TO.
1217 If the object was modified, if we hit a partial assignment to X, or hit a
1218 CODE_LABEL first, return X. If we found an assignment, update *PINSN to
1219 point to it. ALLOW_HWREG is set to 1 if hardware registers are allowed to
1220 be the src. */
1223 find_last_value (x, pinsn, valid_to, allow_hwreg)
1224 rtx x;
1225 rtx *pinsn;
1226 rtx valid_to;
1227 int allow_hwreg;
1229 rtx p;
1231 for (p = PREV_INSN (*pinsn); p && GET_CODE (p) != CODE_LABEL;
1232 p = PREV_INSN (p))
1233 if (INSN_P (p))
1235 rtx set = single_set (p);
1236 rtx note = find_reg_note (p, REG_EQUAL, NULL_RTX);
1238 if (set && rtx_equal_p (x, SET_DEST (set)))
1240 rtx src = SET_SRC (set);
1242 if (note && GET_CODE (XEXP (note, 0)) != EXPR_LIST)
1243 src = XEXP (note, 0);
1245 if ((valid_to == NULL_RTX
1246 || ! modified_between_p (src, PREV_INSN (p), valid_to))
1247 /* Reject hard registers because we don't usually want
1248 to use them; we'd rather use a pseudo. */
1249 && (! (GET_CODE (src) == REG
1250 && REGNO (src) < FIRST_PSEUDO_REGISTER) || allow_hwreg))
1252 *pinsn = p;
1253 return src;
1257 /* If set in non-simple way, we don't have a value. */
1258 if (reg_set_p (x, p))
1259 break;
1262 return x;
1265 /* Return nonzero if register in range [REGNO, ENDREGNO)
1266 appears either explicitly or implicitly in X
1267 other than being stored into.
1269 References contained within the substructure at LOC do not count.
1270 LOC may be zero, meaning don't ignore anything. */
1273 refers_to_regno_p (regno, endregno, x, loc)
1274 unsigned int regno, endregno;
1275 rtx x;
1276 rtx *loc;
1278 int i;
1279 unsigned int x_regno;
1280 RTX_CODE code;
1281 const char *fmt;
1283 repeat:
1284 /* The contents of a REG_NONNEG note is always zero, so we must come here
1285 upon repeat in case the last REG_NOTE is a REG_NONNEG note. */
1286 if (x == 0)
1287 return 0;
1289 code = GET_CODE (x);
1291 switch (code)
1293 case REG:
1294 x_regno = REGNO (x);
1296 /* If we modifying the stack, frame, or argument pointer, it will
1297 clobber a virtual register. In fact, we could be more precise,
1298 but it isn't worth it. */
1299 if ((x_regno == STACK_POINTER_REGNUM
1300 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
1301 || x_regno == ARG_POINTER_REGNUM
1302 #endif
1303 || x_regno == FRAME_POINTER_REGNUM)
1304 && regno >= FIRST_VIRTUAL_REGISTER && regno <= LAST_VIRTUAL_REGISTER)
1305 return 1;
1307 return (endregno > x_regno
1308 && regno < x_regno + (x_regno < FIRST_PSEUDO_REGISTER
1309 ? HARD_REGNO_NREGS (x_regno, GET_MODE (x))
1310 : 1));
1312 case SUBREG:
1313 /* If this is a SUBREG of a hard reg, we can see exactly which
1314 registers are being modified. Otherwise, handle normally. */
1315 if (GET_CODE (SUBREG_REG (x)) == REG
1316 && REGNO (SUBREG_REG (x)) < FIRST_PSEUDO_REGISTER)
1318 unsigned int inner_regno = subreg_regno (x);
1319 unsigned int inner_endregno
1320 = inner_regno + (inner_regno < FIRST_PSEUDO_REGISTER
1321 ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
1323 return endregno > inner_regno && regno < inner_endregno;
1325 break;
1327 case CLOBBER:
1328 case SET:
1329 if (&SET_DEST (x) != loc
1330 /* Note setting a SUBREG counts as referring to the REG it is in for
1331 a pseudo but not for hard registers since we can
1332 treat each word individually. */
1333 && ((GET_CODE (SET_DEST (x)) == SUBREG
1334 && loc != &SUBREG_REG (SET_DEST (x))
1335 && GET_CODE (SUBREG_REG (SET_DEST (x))) == REG
1336 && REGNO (SUBREG_REG (SET_DEST (x))) >= FIRST_PSEUDO_REGISTER
1337 && refers_to_regno_p (regno, endregno,
1338 SUBREG_REG (SET_DEST (x)), loc))
1339 || (GET_CODE (SET_DEST (x)) != REG
1340 && refers_to_regno_p (regno, endregno, SET_DEST (x), loc))))
1341 return 1;
1343 if (code == CLOBBER || loc == &SET_SRC (x))
1344 return 0;
1345 x = SET_SRC (x);
1346 goto repeat;
1348 default:
1349 break;
1352 /* X does not match, so try its subexpressions. */
1354 fmt = GET_RTX_FORMAT (code);
1355 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1357 if (fmt[i] == 'e' && loc != &XEXP (x, i))
1359 if (i == 0)
1361 x = XEXP (x, 0);
1362 goto repeat;
1364 else
1365 if (refers_to_regno_p (regno, endregno, XEXP (x, i), loc))
1366 return 1;
1368 else if (fmt[i] == 'E')
1370 int j;
1371 for (j = XVECLEN (x, i) - 1; j >=0; j--)
1372 if (loc != &XVECEXP (x, i, j)
1373 && refers_to_regno_p (regno, endregno, XVECEXP (x, i, j), loc))
1374 return 1;
1377 return 0;
1380 /* Nonzero if modifying X will affect IN. If X is a register or a SUBREG,
1381 we check if any register number in X conflicts with the relevant register
1382 numbers. If X is a constant, return 0. If X is a MEM, return 1 iff IN
1383 contains a MEM (we don't bother checking for memory addresses that can't
1384 conflict because we expect this to be a rare case. */
1387 reg_overlap_mentioned_p (x, in)
1388 rtx x, in;
1390 unsigned int regno, endregno;
1392 /* Overly conservative. */
1393 if (GET_CODE (x) == STRICT_LOW_PART)
1394 x = XEXP (x, 0);
1396 /* If either argument is a constant, then modifying X can not affect IN. */
1397 if (CONSTANT_P (x) || CONSTANT_P (in))
1398 return 0;
1400 switch (GET_CODE (x))
1402 case SUBREG:
1403 regno = REGNO (SUBREG_REG (x));
1404 if (regno < FIRST_PSEUDO_REGISTER)
1405 regno = subreg_regno (x);
1406 goto do_reg;
1408 case REG:
1409 regno = REGNO (x);
1410 do_reg:
1411 endregno = regno + (regno < FIRST_PSEUDO_REGISTER
1412 ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
1413 return refers_to_regno_p (regno, endregno, in, (rtx*)0);
1415 case MEM:
1417 const char *fmt;
1418 int i;
1420 if (GET_CODE (in) == MEM)
1421 return 1;
1423 fmt = GET_RTX_FORMAT (GET_CODE (in));
1424 for (i = GET_RTX_LENGTH (GET_CODE (in)) - 1; i >= 0; i--)
1425 if (fmt[i] == 'e' && reg_overlap_mentioned_p (x, XEXP (in, i)))
1426 return 1;
1428 return 0;
1431 case SCRATCH:
1432 case PC:
1433 case CC0:
1434 return reg_mentioned_p (x, in);
1436 case PARALLEL:
1438 int i;
1440 /* If any register in here refers to it we return true. */
1441 for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
1442 if (XEXP (XVECEXP (x, 0, i), 0) != 0
1443 && reg_overlap_mentioned_p (XEXP (XVECEXP (x, 0, i), 0), in))
1444 return 1;
1445 return 0;
1448 default:
1449 break;
1452 abort ();
1455 /* Return the last value to which REG was set prior to INSN. If we can't
1456 find it easily, return 0.
1458 We only return a REG, SUBREG, or constant because it is too hard to
1459 check if a MEM remains unchanged. */
1462 reg_set_last (x, insn)
1463 rtx x;
1464 rtx insn;
1466 rtx orig_insn = insn;
1468 /* Scan backwards until reg_set_last_1 changed one of the above flags.
1469 Stop when we reach a label or X is a hard reg and we reach a
1470 CALL_INSN (if reg_set_last_last_regno is a hard reg).
1472 If we find a set of X, ensure that its SET_SRC remains unchanged. */
1474 /* We compare with <= here, because reg_set_last_last_regno
1475 is actually the number of the first reg *not* in X. */
1476 for (;
1477 insn && GET_CODE (insn) != CODE_LABEL
1478 && ! (GET_CODE (insn) == CALL_INSN
1479 && REGNO (x) <= FIRST_PSEUDO_REGISTER);
1480 insn = PREV_INSN (insn))
1481 if (INSN_P (insn))
1483 rtx set = set_of (x, insn);
1484 /* OK, this function modify our register. See if we understand it. */
1485 if (set)
1487 rtx last_value;
1488 if (GET_CODE (set) != SET || SET_DEST (set) != x)
1489 return 0;
1490 last_value = SET_SRC (x);
1491 if (CONSTANT_P (last_value)
1492 || ((GET_CODE (last_value) == REG
1493 || GET_CODE (last_value) == SUBREG)
1494 && ! reg_set_between_p (last_value,
1495 insn, orig_insn)))
1496 return last_value;
1497 else
1498 return 0;
1502 return 0;
1505 /* Call FUN on each register or MEM that is stored into or clobbered by X.
1506 (X would be the pattern of an insn).
1507 FUN receives two arguments:
1508 the REG, MEM, CC0 or PC being stored in or clobbered,
1509 the SET or CLOBBER rtx that does the store.
1511 If the item being stored in or clobbered is a SUBREG of a hard register,
1512 the SUBREG will be passed. */
1514 void
1515 note_stores (x, fun, data)
1516 rtx x;
1517 void (*fun) PARAMS ((rtx, rtx, void *));
1518 void *data;
1520 int i;
1522 if (GET_CODE (x) == COND_EXEC)
1523 x = COND_EXEC_CODE (x);
1525 if (GET_CODE (x) == SET || GET_CODE (x) == CLOBBER)
1527 rtx dest = SET_DEST (x);
1529 while ((GET_CODE (dest) == SUBREG
1530 && (GET_CODE (SUBREG_REG (dest)) != REG
1531 || REGNO (SUBREG_REG (dest)) >= FIRST_PSEUDO_REGISTER))
1532 || GET_CODE (dest) == ZERO_EXTRACT
1533 || GET_CODE (dest) == SIGN_EXTRACT
1534 || GET_CODE (dest) == STRICT_LOW_PART)
1535 dest = XEXP (dest, 0);
1537 /* If we have a PARALLEL, SET_DEST is a list of EXPR_LIST expressions,
1538 each of whose first operand is a register. We can't know what
1539 precisely is being set in these cases, so make up a CLOBBER to pass
1540 to the function. */
1541 if (GET_CODE (dest) == PARALLEL)
1543 for (i = XVECLEN (dest, 0) - 1; i >= 0; i--)
1544 if (XEXP (XVECEXP (dest, 0, i), 0) != 0)
1545 (*fun) (XEXP (XVECEXP (dest, 0, i), 0),
1546 gen_rtx_CLOBBER (VOIDmode,
1547 XEXP (XVECEXP (dest, 0, i), 0)),
1548 data);
1550 else
1551 (*fun) (dest, x, data);
1554 else if (GET_CODE (x) == PARALLEL)
1555 for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
1556 note_stores (XVECEXP (x, 0, i), fun, data);
1559 /* Like notes_stores, but call FUN for each expression that is being
1560 referenced in PBODY, a pointer to the PATTERN of an insn. We only call
1561 FUN for each expression, not any interior subexpressions. FUN receives a
1562 pointer to the expression and the DATA passed to this function.
1564 Note that this is not quite the same test as that done in reg_referenced_p
1565 since that considers something as being referenced if it is being
1566 partially set, while we do not. */
1568 void
1569 note_uses (pbody, fun, data)
1570 rtx *pbody;
1571 void (*fun) PARAMS ((rtx *, void *));
1572 void *data;
1574 rtx body = *pbody;
1575 int i;
1577 switch (GET_CODE (body))
1579 case COND_EXEC:
1580 (*fun) (&COND_EXEC_TEST (body), data);
1581 note_uses (&COND_EXEC_CODE (body), fun, data);
1582 return;
1584 case PARALLEL:
1585 for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
1586 note_uses (&XVECEXP (body, 0, i), fun, data);
1587 return;
1589 case USE:
1590 (*fun) (&XEXP (body, 0), data);
1591 return;
1593 case ASM_OPERANDS:
1594 for (i = ASM_OPERANDS_INPUT_LENGTH (body) - 1; i >= 0; i--)
1595 (*fun) (&ASM_OPERANDS_INPUT (body, i), data);
1596 return;
1598 case TRAP_IF:
1599 (*fun) (&TRAP_CONDITION (body), data);
1600 return;
1602 case PREFETCH:
1603 (*fun) (&XEXP (body, 0), data);
1604 return;
1606 case UNSPEC:
1607 case UNSPEC_VOLATILE:
1608 for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
1609 (*fun) (&XVECEXP (body, 0, i), data);
1610 return;
1612 case CLOBBER:
1613 if (GET_CODE (XEXP (body, 0)) == MEM)
1614 (*fun) (&XEXP (XEXP (body, 0), 0), data);
1615 return;
1617 case SET:
1619 rtx dest = SET_DEST (body);
1621 /* For sets we replace everything in source plus registers in memory
1622 expression in store and operands of a ZERO_EXTRACT. */
1623 (*fun) (&SET_SRC (body), data);
1625 if (GET_CODE (dest) == ZERO_EXTRACT)
1627 (*fun) (&XEXP (dest, 1), data);
1628 (*fun) (&XEXP (dest, 2), data);
1631 while (GET_CODE (dest) == SUBREG || GET_CODE (dest) == STRICT_LOW_PART)
1632 dest = XEXP (dest, 0);
1634 if (GET_CODE (dest) == MEM)
1635 (*fun) (&XEXP (dest, 0), data);
1637 return;
1639 default:
1640 /* All the other possibilities never store. */
1641 (*fun) (pbody, data);
1642 return;
1646 /* Return nonzero if X's old contents don't survive after INSN.
1647 This will be true if X is (cc0) or if X is a register and
1648 X dies in INSN or because INSN entirely sets X.
1650 "Entirely set" means set directly and not through a SUBREG,
1651 ZERO_EXTRACT or SIGN_EXTRACT, so no trace of the old contents remains.
1652 Likewise, REG_INC does not count.
1654 REG may be a hard or pseudo reg. Renumbering is not taken into account,
1655 but for this use that makes no difference, since regs don't overlap
1656 during their lifetimes. Therefore, this function may be used
1657 at any time after deaths have been computed (in flow.c).
1659 If REG is a hard reg that occupies multiple machine registers, this
1660 function will only return 1 if each of those registers will be replaced
1661 by INSN. */
1664 dead_or_set_p (insn, x)
1665 rtx insn;
1666 rtx x;
1668 unsigned int regno, last_regno;
1669 unsigned int i;
1671 /* Can't use cc0_rtx below since this file is used by genattrtab.c. */
1672 if (GET_CODE (x) == CC0)
1673 return 1;
1675 if (GET_CODE (x) != REG)
1676 abort ();
1678 regno = REGNO (x);
1679 last_regno = (regno >= FIRST_PSEUDO_REGISTER ? regno
1680 : regno + HARD_REGNO_NREGS (regno, GET_MODE (x)) - 1);
1682 for (i = regno; i <= last_regno; i++)
1683 if (! dead_or_set_regno_p (insn, i))
1684 return 0;
1686 return 1;
1689 /* Utility function for dead_or_set_p to check an individual register. Also
1690 called from flow.c. */
1693 dead_or_set_regno_p (insn, test_regno)
1694 rtx insn;
1695 unsigned int test_regno;
1697 unsigned int regno, endregno;
1698 rtx pattern;
1700 /* See if there is a death note for something that includes TEST_REGNO. */
1701 if (find_regno_note (insn, REG_DEAD, test_regno))
1702 return 1;
1704 if (GET_CODE (insn) == CALL_INSN
1705 && find_regno_fusage (insn, CLOBBER, test_regno))
1706 return 1;
1708 pattern = PATTERN (insn);
1710 if (GET_CODE (pattern) == COND_EXEC)
1711 pattern = COND_EXEC_CODE (pattern);
1713 if (GET_CODE (pattern) == SET)
1715 rtx dest = SET_DEST (PATTERN (insn));
1717 /* A value is totally replaced if it is the destination or the
1718 destination is a SUBREG of REGNO that does not change the number of
1719 words in it. */
1720 if (GET_CODE (dest) == SUBREG
1721 && (((GET_MODE_SIZE (GET_MODE (dest))
1722 + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
1723 == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest)))
1724 + UNITS_PER_WORD - 1) / UNITS_PER_WORD)))
1725 dest = SUBREG_REG (dest);
1727 if (GET_CODE (dest) != REG)
1728 return 0;
1730 regno = REGNO (dest);
1731 endregno = (regno >= FIRST_PSEUDO_REGISTER ? regno + 1
1732 : regno + HARD_REGNO_NREGS (regno, GET_MODE (dest)));
1734 return (test_regno >= regno && test_regno < endregno);
1736 else if (GET_CODE (pattern) == PARALLEL)
1738 int i;
1740 for (i = XVECLEN (pattern, 0) - 1; i >= 0; i--)
1742 rtx body = XVECEXP (pattern, 0, i);
1744 if (GET_CODE (body) == COND_EXEC)
1745 body = COND_EXEC_CODE (body);
1747 if (GET_CODE (body) == SET || GET_CODE (body) == CLOBBER)
1749 rtx dest = SET_DEST (body);
1751 if (GET_CODE (dest) == SUBREG
1752 && (((GET_MODE_SIZE (GET_MODE (dest))
1753 + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
1754 == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest)))
1755 + UNITS_PER_WORD - 1) / UNITS_PER_WORD)))
1756 dest = SUBREG_REG (dest);
1758 if (GET_CODE (dest) != REG)
1759 continue;
1761 regno = REGNO (dest);
1762 endregno = (regno >= FIRST_PSEUDO_REGISTER ? regno + 1
1763 : regno + HARD_REGNO_NREGS (regno, GET_MODE (dest)));
1765 if (test_regno >= regno && test_regno < endregno)
1766 return 1;
1771 return 0;
1774 /* Return the reg-note of kind KIND in insn INSN, if there is one.
1775 If DATUM is nonzero, look for one whose datum is DATUM. */
1778 find_reg_note (insn, kind, datum)
1779 rtx insn;
1780 enum reg_note kind;
1781 rtx datum;
1783 rtx link;
1785 /* Ignore anything that is not an INSN, JUMP_INSN or CALL_INSN. */
1786 if (! INSN_P (insn))
1787 return 0;
1789 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1790 if (REG_NOTE_KIND (link) == kind
1791 && (datum == 0 || datum == XEXP (link, 0)))
1792 return link;
1793 return 0;
1796 /* Return the reg-note of kind KIND in insn INSN which applies to register
1797 number REGNO, if any. Return 0 if there is no such reg-note. Note that
1798 the REGNO of this NOTE need not be REGNO if REGNO is a hard register;
1799 it might be the case that the note overlaps REGNO. */
1802 find_regno_note (insn, kind, regno)
1803 rtx insn;
1804 enum reg_note kind;
1805 unsigned int regno;
1807 rtx link;
1809 /* Ignore anything that is not an INSN, JUMP_INSN or CALL_INSN. */
1810 if (! INSN_P (insn))
1811 return 0;
1813 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1814 if (REG_NOTE_KIND (link) == kind
1815 /* Verify that it is a register, so that scratch and MEM won't cause a
1816 problem here. */
1817 && GET_CODE (XEXP (link, 0)) == REG
1818 && REGNO (XEXP (link, 0)) <= regno
1819 && ((REGNO (XEXP (link, 0))
1820 + (REGNO (XEXP (link, 0)) >= FIRST_PSEUDO_REGISTER ? 1
1821 : HARD_REGNO_NREGS (REGNO (XEXP (link, 0)),
1822 GET_MODE (XEXP (link, 0)))))
1823 > regno))
1824 return link;
1825 return 0;
1828 /* Return a REG_EQUIV or REG_EQUAL note if insn has only a single set and
1829 has such a note. */
1832 find_reg_equal_equiv_note (insn)
1833 rtx insn;
1835 rtx note;
1837 if (single_set (insn) == 0)
1838 return 0;
1839 else if ((note = find_reg_note (insn, REG_EQUIV, NULL_RTX)) != 0)
1840 return note;
1841 else
1842 return find_reg_note (insn, REG_EQUAL, NULL_RTX);
1845 /* Return true if DATUM, or any overlap of DATUM, of kind CODE is found
1846 in the CALL_INSN_FUNCTION_USAGE information of INSN. */
1849 find_reg_fusage (insn, code, datum)
1850 rtx insn;
1851 enum rtx_code code;
1852 rtx datum;
1854 /* If it's not a CALL_INSN, it can't possibly have a
1855 CALL_INSN_FUNCTION_USAGE field, so don't bother checking. */
1856 if (GET_CODE (insn) != CALL_INSN)
1857 return 0;
1859 if (! datum)
1860 abort();
1862 if (GET_CODE (datum) != REG)
1864 rtx link;
1866 for (link = CALL_INSN_FUNCTION_USAGE (insn);
1867 link;
1868 link = XEXP (link, 1))
1869 if (GET_CODE (XEXP (link, 0)) == code
1870 && rtx_equal_p (datum, SET_DEST (XEXP (link, 0))))
1871 return 1;
1873 else
1875 unsigned int regno = REGNO (datum);
1877 /* CALL_INSN_FUNCTION_USAGE information cannot contain references
1878 to pseudo registers, so don't bother checking. */
1880 if (regno < FIRST_PSEUDO_REGISTER)
1882 unsigned int end_regno
1883 = regno + HARD_REGNO_NREGS (regno, GET_MODE (datum));
1884 unsigned int i;
1886 for (i = regno; i < end_regno; i++)
1887 if (find_regno_fusage (insn, code, i))
1888 return 1;
1892 return 0;
1895 /* Return true if REGNO, or any overlap of REGNO, of kind CODE is found
1896 in the CALL_INSN_FUNCTION_USAGE information of INSN. */
1899 find_regno_fusage (insn, code, regno)
1900 rtx insn;
1901 enum rtx_code code;
1902 unsigned int regno;
1904 rtx link;
1906 /* CALL_INSN_FUNCTION_USAGE information cannot contain references
1907 to pseudo registers, so don't bother checking. */
1909 if (regno >= FIRST_PSEUDO_REGISTER
1910 || GET_CODE (insn) != CALL_INSN )
1911 return 0;
1913 for (link = CALL_INSN_FUNCTION_USAGE (insn); link; link = XEXP (link, 1))
1915 unsigned int regnote;
1916 rtx op, reg;
1918 if (GET_CODE (op = XEXP (link, 0)) == code
1919 && GET_CODE (reg = XEXP (op, 0)) == REG
1920 && (regnote = REGNO (reg)) <= regno
1921 && regnote + HARD_REGNO_NREGS (regnote, GET_MODE (reg)) > regno)
1922 return 1;
1925 return 0;
1928 /* Remove register note NOTE from the REG_NOTES of INSN. */
1930 void
1931 remove_note (insn, note)
1932 rtx insn;
1933 rtx note;
1935 rtx link;
1937 if (note == NULL_RTX)
1938 return;
1940 if (REG_NOTES (insn) == note)
1942 REG_NOTES (insn) = XEXP (note, 1);
1943 return;
1946 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1947 if (XEXP (link, 1) == note)
1949 XEXP (link, 1) = XEXP (note, 1);
1950 return;
1953 abort ();
1956 /* Search LISTP (an EXPR_LIST) for an entry whose first operand is NODE and
1957 remove that entry from the list if it is found.
1959 A simple equality test is used to determine if NODE matches. */
1961 void
1962 remove_node_from_expr_list (node, listp)
1963 rtx node;
1964 rtx *listp;
1966 rtx temp = *listp;
1967 rtx prev = NULL_RTX;
1969 while (temp)
1971 if (node == XEXP (temp, 0))
1973 /* Splice the node out of the list. */
1974 if (prev)
1975 XEXP (prev, 1) = XEXP (temp, 1);
1976 else
1977 *listp = XEXP (temp, 1);
1979 return;
1982 prev = temp;
1983 temp = XEXP (temp, 1);
1987 /* Nonzero if X contains any volatile instructions. These are instructions
1988 which may cause unpredictable machine state instructions, and thus no
1989 instructions should be moved or combined across them. This includes
1990 only volatile asms and UNSPEC_VOLATILE instructions. */
1993 volatile_insn_p (x)
1994 rtx x;
1996 RTX_CODE code;
1998 code = GET_CODE (x);
1999 switch (code)
2001 case LABEL_REF:
2002 case SYMBOL_REF:
2003 case CONST_INT:
2004 case CONST:
2005 case CONST_DOUBLE:
2006 case CC0:
2007 case PC:
2008 case REG:
2009 case SCRATCH:
2010 case CLOBBER:
2011 case ASM_INPUT:
2012 case ADDR_VEC:
2013 case ADDR_DIFF_VEC:
2014 case CALL:
2015 case MEM:
2016 return 0;
2018 case UNSPEC_VOLATILE:
2019 /* case TRAP_IF: This isn't clear yet. */
2020 return 1;
2022 case ASM_OPERANDS:
2023 if (MEM_VOLATILE_P (x))
2024 return 1;
2026 default:
2027 break;
2030 /* Recursively scan the operands of this expression. */
2033 const char *fmt = GET_RTX_FORMAT (code);
2034 int i;
2036 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2038 if (fmt[i] == 'e')
2040 if (volatile_insn_p (XEXP (x, i)))
2041 return 1;
2043 else if (fmt[i] == 'E')
2045 int j;
2046 for (j = 0; j < XVECLEN (x, i); j++)
2047 if (volatile_insn_p (XVECEXP (x, i, j)))
2048 return 1;
2052 return 0;
2055 /* Nonzero if X contains any volatile memory references
2056 UNSPEC_VOLATILE operations or volatile ASM_OPERANDS expressions. */
2059 volatile_refs_p (x)
2060 rtx x;
2062 RTX_CODE code;
2064 code = GET_CODE (x);
2065 switch (code)
2067 case LABEL_REF:
2068 case SYMBOL_REF:
2069 case CONST_INT:
2070 case CONST:
2071 case CONST_DOUBLE:
2072 case CC0:
2073 case PC:
2074 case REG:
2075 case SCRATCH:
2076 case CLOBBER:
2077 case ASM_INPUT:
2078 case ADDR_VEC:
2079 case ADDR_DIFF_VEC:
2080 return 0;
2082 case CALL:
2083 case UNSPEC_VOLATILE:
2084 /* case TRAP_IF: This isn't clear yet. */
2085 return 1;
2087 case MEM:
2088 case ASM_OPERANDS:
2089 if (MEM_VOLATILE_P (x))
2090 return 1;
2092 default:
2093 break;
2096 /* Recursively scan the operands of this expression. */
2099 const char *fmt = GET_RTX_FORMAT (code);
2100 int i;
2102 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2104 if (fmt[i] == 'e')
2106 if (volatile_refs_p (XEXP (x, i)))
2107 return 1;
2109 else if (fmt[i] == 'E')
2111 int j;
2112 for (j = 0; j < XVECLEN (x, i); j++)
2113 if (volatile_refs_p (XVECEXP (x, i, j)))
2114 return 1;
2118 return 0;
2121 /* Similar to above, except that it also rejects register pre- and post-
2122 incrementing. */
2125 side_effects_p (x)
2126 rtx x;
2128 RTX_CODE code;
2130 code = GET_CODE (x);
2131 switch (code)
2133 case LABEL_REF:
2134 case SYMBOL_REF:
2135 case CONST_INT:
2136 case CONST:
2137 case CONST_DOUBLE:
2138 case CC0:
2139 case PC:
2140 case REG:
2141 case SCRATCH:
2142 case ASM_INPUT:
2143 case ADDR_VEC:
2144 case ADDR_DIFF_VEC:
2145 return 0;
2147 case CLOBBER:
2148 /* Reject CLOBBER with a non-VOID mode. These are made by combine.c
2149 when some combination can't be done. If we see one, don't think
2150 that we can simplify the expression. */
2151 return (GET_MODE (x) != VOIDmode);
2153 case PRE_INC:
2154 case PRE_DEC:
2155 case POST_INC:
2156 case POST_DEC:
2157 case PRE_MODIFY:
2158 case POST_MODIFY:
2159 case CALL:
2160 case UNSPEC_VOLATILE:
2161 /* case TRAP_IF: This isn't clear yet. */
2162 return 1;
2164 case MEM:
2165 case ASM_OPERANDS:
2166 if (MEM_VOLATILE_P (x))
2167 return 1;
2169 default:
2170 break;
2173 /* Recursively scan the operands of this expression. */
2176 const char *fmt = GET_RTX_FORMAT (code);
2177 int i;
2179 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2181 if (fmt[i] == 'e')
2183 if (side_effects_p (XEXP (x, i)))
2184 return 1;
2186 else if (fmt[i] == 'E')
2188 int j;
2189 for (j = 0; j < XVECLEN (x, i); j++)
2190 if (side_effects_p (XVECEXP (x, i, j)))
2191 return 1;
2195 return 0;
2198 /* Return nonzero if evaluating rtx X might cause a trap. */
2201 may_trap_p (x)
2202 rtx x;
2204 int i;
2205 enum rtx_code code;
2206 const char *fmt;
2208 if (x == 0)
2209 return 0;
2210 code = GET_CODE (x);
2211 switch (code)
2213 /* Handle these cases quickly. */
2214 case CONST_INT:
2215 case CONST_DOUBLE:
2216 case SYMBOL_REF:
2217 case LABEL_REF:
2218 case CONST:
2219 case PC:
2220 case CC0:
2221 case REG:
2222 case SCRATCH:
2223 return 0;
2225 case ASM_INPUT:
2226 case UNSPEC_VOLATILE:
2227 case TRAP_IF:
2228 return 1;
2230 case ASM_OPERANDS:
2231 return MEM_VOLATILE_P (x);
2233 /* Memory ref can trap unless it's a static var or a stack slot. */
2234 case MEM:
2235 return rtx_addr_can_trap_p (XEXP (x, 0));
2237 /* Division by a non-constant might trap. */
2238 case DIV:
2239 case MOD:
2240 case UDIV:
2241 case UMOD:
2242 if (! CONSTANT_P (XEXP (x, 1))
2243 || GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
2244 return 1;
2245 /* This was const0_rtx, but by not using that,
2246 we can link this file into other programs. */
2247 if (GET_CODE (XEXP (x, 1)) == CONST_INT && INTVAL (XEXP (x, 1)) == 0)
2248 return 1;
2249 break;
2251 case EXPR_LIST:
2252 /* An EXPR_LIST is used to represent a function call. This
2253 certainly may trap. */
2254 return 1;
2256 case GE:
2257 case GT:
2258 case LE:
2259 case LT:
2260 case COMPARE:
2261 /* Some floating point comparisons may trap. */
2262 /* ??? There is no machine independent way to check for tests that trap
2263 when COMPARE is used, though many targets do make this distinction.
2264 For instance, sparc uses CCFPE for compares which generate exceptions
2265 and CCFP for compares which do not generate exceptions. */
2266 if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
2267 return 1;
2268 /* But often the compare has some CC mode, so check operand
2269 modes as well. */
2270 if (GET_MODE_CLASS (GET_MODE (XEXP (x, 0))) == MODE_FLOAT
2271 || GET_MODE_CLASS (GET_MODE (XEXP (x, 1))) == MODE_FLOAT)
2272 return 1;
2273 break;
2275 case NEG:
2276 case ABS:
2277 /* These operations don't trap even with floating point. */
2278 break;
2280 default:
2281 /* Any floating arithmetic may trap. */
2282 if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
2283 return 1;
2286 fmt = GET_RTX_FORMAT (code);
2287 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2289 if (fmt[i] == 'e')
2291 if (may_trap_p (XEXP (x, i)))
2292 return 1;
2294 else if (fmt[i] == 'E')
2296 int j;
2297 for (j = 0; j < XVECLEN (x, i); j++)
2298 if (may_trap_p (XVECEXP (x, i, j)))
2299 return 1;
2302 return 0;
2305 /* Return nonzero if X contains a comparison that is not either EQ or NE,
2306 i.e., an inequality. */
2309 inequality_comparisons_p (x)
2310 rtx x;
2312 const char *fmt;
2313 int len, i;
2314 enum rtx_code code = GET_CODE (x);
2316 switch (code)
2318 case REG:
2319 case SCRATCH:
2320 case PC:
2321 case CC0:
2322 case CONST_INT:
2323 case CONST_DOUBLE:
2324 case CONST:
2325 case LABEL_REF:
2326 case SYMBOL_REF:
2327 return 0;
2329 case LT:
2330 case LTU:
2331 case GT:
2332 case GTU:
2333 case LE:
2334 case LEU:
2335 case GE:
2336 case GEU:
2337 return 1;
2339 default:
2340 break;
2343 len = GET_RTX_LENGTH (code);
2344 fmt = GET_RTX_FORMAT (code);
2346 for (i = 0; i < len; i++)
2348 if (fmt[i] == 'e')
2350 if (inequality_comparisons_p (XEXP (x, i)))
2351 return 1;
2353 else if (fmt[i] == 'E')
2355 int j;
2356 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
2357 if (inequality_comparisons_p (XVECEXP (x, i, j)))
2358 return 1;
2362 return 0;
2365 /* Replace any occurrence of FROM in X with TO. The function does
2366 not enter into CONST_DOUBLE for the replace.
2368 Note that copying is not done so X must not be shared unless all copies
2369 are to be modified. */
2372 replace_rtx (x, from, to)
2373 rtx x, from, to;
2375 int i, j;
2376 const char *fmt;
2378 /* The following prevents loops occurrence when we change MEM in
2379 CONST_DOUBLE onto the same CONST_DOUBLE. */
2380 if (x != 0 && GET_CODE (x) == CONST_DOUBLE)
2381 return x;
2383 if (x == from)
2384 return to;
2386 /* Allow this function to make replacements in EXPR_LISTs. */
2387 if (x == 0)
2388 return 0;
2390 fmt = GET_RTX_FORMAT (GET_CODE (x));
2391 for (i = GET_RTX_LENGTH (GET_CODE (x)) - 1; i >= 0; i--)
2393 if (fmt[i] == 'e')
2394 XEXP (x, i) = replace_rtx (XEXP (x, i), from, to);
2395 else if (fmt[i] == 'E')
2396 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
2397 XVECEXP (x, i, j) = replace_rtx (XVECEXP (x, i, j), from, to);
2400 return x;
2403 /* Throughout the rtx X, replace many registers according to REG_MAP.
2404 Return the replacement for X (which may be X with altered contents).
2405 REG_MAP[R] is the replacement for register R, or 0 for don't replace.
2406 NREGS is the length of REG_MAP; regs >= NREGS are not mapped.
2408 We only support REG_MAP entries of REG or SUBREG. Also, hard registers
2409 should not be mapped to pseudos or vice versa since validate_change
2410 is not called.
2412 If REPLACE_DEST is 1, replacements are also done in destinations;
2413 otherwise, only sources are replaced. */
2416 replace_regs (x, reg_map, nregs, replace_dest)
2417 rtx x;
2418 rtx *reg_map;
2419 unsigned int nregs;
2420 int replace_dest;
2422 enum rtx_code code;
2423 int i;
2424 const char *fmt;
2426 if (x == 0)
2427 return x;
2429 code = GET_CODE (x);
2430 switch (code)
2432 case SCRATCH:
2433 case PC:
2434 case CC0:
2435 case CONST_INT:
2436 case CONST_DOUBLE:
2437 case CONST:
2438 case SYMBOL_REF:
2439 case LABEL_REF:
2440 return x;
2442 case REG:
2443 /* Verify that the register has an entry before trying to access it. */
2444 if (REGNO (x) < nregs && reg_map[REGNO (x)] != 0)
2446 /* SUBREGs can't be shared. Always return a copy to ensure that if
2447 this replacement occurs more than once then each instance will
2448 get distinct rtx. */
2449 if (GET_CODE (reg_map[REGNO (x)]) == SUBREG)
2450 return copy_rtx (reg_map[REGNO (x)]);
2451 return reg_map[REGNO (x)];
2453 return x;
2455 case SUBREG:
2456 /* Prevent making nested SUBREGs. */
2457 if (GET_CODE (SUBREG_REG (x)) == REG && REGNO (SUBREG_REG (x)) < nregs
2458 && reg_map[REGNO (SUBREG_REG (x))] != 0
2459 && GET_CODE (reg_map[REGNO (SUBREG_REG (x))]) == SUBREG)
2461 rtx map_val = reg_map[REGNO (SUBREG_REG (x))];
2462 return simplify_gen_subreg (GET_MODE (x), map_val,
2463 GET_MODE (SUBREG_REG (x)),
2464 SUBREG_BYTE (x));
2466 break;
2468 case SET:
2469 if (replace_dest)
2470 SET_DEST (x) = replace_regs (SET_DEST (x), reg_map, nregs, 0);
2472 else if (GET_CODE (SET_DEST (x)) == MEM
2473 || GET_CODE (SET_DEST (x)) == STRICT_LOW_PART)
2474 /* Even if we are not to replace destinations, replace register if it
2475 is CONTAINED in destination (destination is memory or
2476 STRICT_LOW_PART). */
2477 XEXP (SET_DEST (x), 0) = replace_regs (XEXP (SET_DEST (x), 0),
2478 reg_map, nregs, 0);
2479 else if (GET_CODE (SET_DEST (x)) == ZERO_EXTRACT)
2480 /* Similarly, for ZERO_EXTRACT we replace all operands. */
2481 break;
2483 SET_SRC (x) = replace_regs (SET_SRC (x), reg_map, nregs, 0);
2484 return x;
2486 default:
2487 break;
2490 fmt = GET_RTX_FORMAT (code);
2491 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2493 if (fmt[i] == 'e')
2494 XEXP (x, i) = replace_regs (XEXP (x, i), reg_map, nregs, replace_dest);
2495 else if (fmt[i] == 'E')
2497 int j;
2498 for (j = 0; j < XVECLEN (x, i); j++)
2499 XVECEXP (x, i, j) = replace_regs (XVECEXP (x, i, j), reg_map,
2500 nregs, replace_dest);
2503 return x;
2506 /* A subroutine of computed_jump_p, return 1 if X contains a REG or MEM or
2507 constant that is not in the constant pool and not in the condition
2508 of an IF_THEN_ELSE. */
2510 static int
2511 computed_jump_p_1 (x)
2512 rtx x;
2514 enum rtx_code code = GET_CODE (x);
2515 int i, j;
2516 const char *fmt;
2518 switch (code)
2520 case LABEL_REF:
2521 case PC:
2522 return 0;
2524 case CONST:
2525 case CONST_INT:
2526 case CONST_DOUBLE:
2527 case SYMBOL_REF:
2528 case REG:
2529 return 1;
2531 case MEM:
2532 return ! (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
2533 && CONSTANT_POOL_ADDRESS_P (XEXP (x, 0)));
2535 case IF_THEN_ELSE:
2536 return (computed_jump_p_1 (XEXP (x, 1))
2537 || computed_jump_p_1 (XEXP (x, 2)));
2539 default:
2540 break;
2543 fmt = GET_RTX_FORMAT (code);
2544 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2546 if (fmt[i] == 'e'
2547 && computed_jump_p_1 (XEXP (x, i)))
2548 return 1;
2550 else if (fmt[i] == 'E')
2551 for (j = 0; j < XVECLEN (x, i); j++)
2552 if (computed_jump_p_1 (XVECEXP (x, i, j)))
2553 return 1;
2556 return 0;
2559 /* Return nonzero if INSN is an indirect jump (aka computed jump).
2561 Tablejumps and casesi insns are not considered indirect jumps;
2562 we can recognize them by a (use (label_ref)). */
2565 computed_jump_p (insn)
2566 rtx insn;
2568 int i;
2569 if (GET_CODE (insn) == JUMP_INSN)
2571 rtx pat = PATTERN (insn);
2573 if (find_reg_note (insn, REG_LABEL, NULL_RTX))
2574 return 0;
2575 else if (GET_CODE (pat) == PARALLEL)
2577 int len = XVECLEN (pat, 0);
2578 int has_use_labelref = 0;
2580 for (i = len - 1; i >= 0; i--)
2581 if (GET_CODE (XVECEXP (pat, 0, i)) == USE
2582 && (GET_CODE (XEXP (XVECEXP (pat, 0, i), 0))
2583 == LABEL_REF))
2584 has_use_labelref = 1;
2586 if (! has_use_labelref)
2587 for (i = len - 1; i >= 0; i--)
2588 if (GET_CODE (XVECEXP (pat, 0, i)) == SET
2589 && SET_DEST (XVECEXP (pat, 0, i)) == pc_rtx
2590 && computed_jump_p_1 (SET_SRC (XVECEXP (pat, 0, i))))
2591 return 1;
2593 else if (GET_CODE (pat) == SET
2594 && SET_DEST (pat) == pc_rtx
2595 && computed_jump_p_1 (SET_SRC (pat)))
2596 return 1;
2598 return 0;
2601 /* Traverse X via depth-first search, calling F for each
2602 sub-expression (including X itself). F is also passed the DATA.
2603 If F returns -1, do not traverse sub-expressions, but continue
2604 traversing the rest of the tree. If F ever returns any other
2605 non-zero value, stop the traversal, and return the value returned
2606 by F. Otherwise, return 0. This function does not traverse inside
2607 tree structure that contains RTX_EXPRs, or into sub-expressions
2608 whose format code is `0' since it is not known whether or not those
2609 codes are actually RTL.
2611 This routine is very general, and could (should?) be used to
2612 implement many of the other routines in this file. */
2615 for_each_rtx (x, f, data)
2616 rtx *x;
2617 rtx_function f;
2618 void *data;
2620 int result;
2621 int length;
2622 const char *format;
2623 int i;
2625 /* Call F on X. */
2626 result = (*f) (x, data);
2627 if (result == -1)
2628 /* Do not traverse sub-expressions. */
2629 return 0;
2630 else if (result != 0)
2631 /* Stop the traversal. */
2632 return result;
2634 if (*x == NULL_RTX)
2635 /* There are no sub-expressions. */
2636 return 0;
2638 length = GET_RTX_LENGTH (GET_CODE (*x));
2639 format = GET_RTX_FORMAT (GET_CODE (*x));
2641 for (i = 0; i < length; ++i)
2643 switch (format[i])
2645 case 'e':
2646 result = for_each_rtx (&XEXP (*x, i), f, data);
2647 if (result != 0)
2648 return result;
2649 break;
2651 case 'V':
2652 case 'E':
2653 if (XVEC (*x, i) != 0)
2655 int j;
2656 for (j = 0; j < XVECLEN (*x, i); ++j)
2658 result = for_each_rtx (&XVECEXP (*x, i, j), f, data);
2659 if (result != 0)
2660 return result;
2663 break;
2665 default:
2666 /* Nothing to do. */
2667 break;
2672 return 0;
2675 /* Searches X for any reference to REGNO, returning the rtx of the
2676 reference found if any. Otherwise, returns NULL_RTX. */
2679 regno_use_in (regno, x)
2680 unsigned int regno;
2681 rtx x;
2683 const char *fmt;
2684 int i, j;
2685 rtx tem;
2687 if (GET_CODE (x) == REG && REGNO (x) == regno)
2688 return x;
2690 fmt = GET_RTX_FORMAT (GET_CODE (x));
2691 for (i = GET_RTX_LENGTH (GET_CODE (x)) - 1; i >= 0; i--)
2693 if (fmt[i] == 'e')
2695 if ((tem = regno_use_in (regno, XEXP (x, i))))
2696 return tem;
2698 else if (fmt[i] == 'E')
2699 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
2700 if ((tem = regno_use_in (regno , XVECEXP (x, i, j))))
2701 return tem;
2704 return NULL_RTX;
2707 /* Return a value indicating whether OP, an operand of a commutative
2708 operation, is preferred as the first or second operand. The higher
2709 the value, the stronger the preference for being the first operand.
2710 We use negative values to indicate a preference for the first operand
2711 and positive values for the second operand. */
2714 commutative_operand_precedence (op)
2715 rtx op;
2717 /* Constants always come the second operand. Prefer "nice" constants. */
2718 if (GET_CODE (op) == CONST_INT)
2719 return -5;
2720 if (GET_CODE (op) == CONST_DOUBLE)
2721 return -4;
2722 if (CONSTANT_P (op))
2723 return -3;
2725 /* SUBREGs of objects should come second. */
2726 if (GET_CODE (op) == SUBREG
2727 && GET_RTX_CLASS (GET_CODE (SUBREG_REG (op))) == 'o')
2728 return -2;
2730 /* If only one operand is a `neg', `not',
2731 `mult', `plus', or `minus' expression, it will be the first
2732 operand. */
2733 if (GET_CODE (op) == NEG || GET_CODE (op) == NOT
2734 || GET_CODE (op) == MULT || GET_CODE (op) == PLUS
2735 || GET_CODE (op) == MINUS)
2736 return 2;
2738 /* Complex expressions should be the first, so decrease priority
2739 of objects. */
2740 if (GET_RTX_CLASS (GET_CODE (op)) == 'o')
2741 return -1;
2742 return 0;
2745 /* Return 1 iff it is necessary to swap operands of commutative operation
2746 in order to canonicalize expression. */
2749 swap_commutative_operands_p (x, y)
2750 rtx x, y;
2752 return (commutative_operand_precedence (x)
2753 < commutative_operand_precedence (y));
2756 /* Return 1 if X is an autoincrement side effect and the register is
2757 not the stack pointer. */
2759 auto_inc_p (x)
2760 rtx x;
2762 switch (GET_CODE (x))
2764 case PRE_INC:
2765 case POST_INC:
2766 case PRE_DEC:
2767 case POST_DEC:
2768 case PRE_MODIFY:
2769 case POST_MODIFY:
2770 /* There are no REG_INC notes for SP. */
2771 if (XEXP (x, 0) != stack_pointer_rtx)
2772 return 1;
2773 default:
2774 break;
2776 return 0;
2779 /* Return 1 if the sequence of instructions beginning with FROM and up
2780 to and including TO is safe to move. If NEW_TO is non-NULL, and
2781 the sequence is not already safe to move, but can be easily
2782 extended to a sequence which is safe, then NEW_TO will point to the
2783 end of the extended sequence.
2785 For now, this function only checks that the region contains whole
2786 exception regions, but it could be extended to check additional
2787 conditions as well. */
2790 insns_safe_to_move_p (from, to, new_to)
2791 rtx from;
2792 rtx to;
2793 rtx *new_to;
2795 int eh_region_count = 0;
2796 int past_to_p = 0;
2797 rtx r = from;
2799 /* By default, assume the end of the region will be what was
2800 suggested. */
2801 if (new_to)
2802 *new_to = to;
2804 while (r)
2806 if (GET_CODE (r) == NOTE)
2808 switch (NOTE_LINE_NUMBER (r))
2810 case NOTE_INSN_EH_REGION_BEG:
2811 ++eh_region_count;
2812 break;
2814 case NOTE_INSN_EH_REGION_END:
2815 if (eh_region_count == 0)
2816 /* This sequence of instructions contains the end of
2817 an exception region, but not he beginning. Moving
2818 it will cause chaos. */
2819 return 0;
2821 --eh_region_count;
2822 break;
2824 default:
2825 break;
2828 else if (past_to_p)
2829 /* If we've passed TO, and we see a non-note instruction, we
2830 can't extend the sequence to a movable sequence. */
2831 return 0;
2833 if (r == to)
2835 if (!new_to)
2836 /* It's OK to move the sequence if there were matched sets of
2837 exception region notes. */
2838 return eh_region_count == 0;
2840 past_to_p = 1;
2843 /* It's OK to move the sequence if there were matched sets of
2844 exception region notes. */
2845 if (past_to_p && eh_region_count == 0)
2847 *new_to = r;
2848 return 1;
2851 /* Go to the next instruction. */
2852 r = NEXT_INSN (r);
2855 return 0;
2858 /* Return non-zero if IN contains a piece of rtl that has the address LOC */
2860 loc_mentioned_in_p (loc, in)
2861 rtx *loc, in;
2863 enum rtx_code code = GET_CODE (in);
2864 const char *fmt = GET_RTX_FORMAT (code);
2865 int i, j;
2867 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2869 if (loc == &in->fld[i].rtx)
2870 return 1;
2871 if (fmt[i] == 'e')
2873 if (loc_mentioned_in_p (loc, XEXP (in, i)))
2874 return 1;
2876 else if (fmt[i] == 'E')
2877 for (j = XVECLEN (in, i) - 1; j >= 0; j--)
2878 if (loc_mentioned_in_p (loc, XVECEXP (in, i, j)))
2879 return 1;
2881 return 0;
2884 /* This function returns the regno offset of a subreg expression.
2885 xregno - A regno of an inner hard subreg_reg (or what will become one).
2886 xmode - The mode of xregno.
2887 offset - The byte offset.
2888 ymode - The mode of a top level SUBREG (or what may become one).
2889 RETURN - The regno offset which would be used.
2890 This function can be overridden by defining SUBREG_REGNO_OFFSET,
2891 taking the same parameters. */
2892 unsigned int
2893 subreg_regno_offset (xregno, xmode, offset, ymode)
2894 unsigned int xregno;
2895 enum machine_mode xmode;
2896 unsigned int offset;
2897 enum machine_mode ymode;
2899 unsigned ret;
2900 int nregs_xmode, nregs_ymode;
2901 int mode_multiple, nregs_multiple;
2902 int y_offset;
2904 /* Check for an override, and use it instead. */
2905 #ifdef SUBREG_REGNO_OFFSET
2906 ret = SUBREG_REGNO_OFFSET (xregno, xmode, offset, ymode);
2907 #else
2908 if (xregno >= FIRST_PSEUDO_REGISTER)
2909 abort ();
2911 nregs_xmode = HARD_REGNO_NREGS (xregno, xmode);
2912 nregs_ymode = HARD_REGNO_NREGS (xregno, ymode);
2913 if (offset == 0 || nregs_xmode == nregs_ymode)
2914 return 0;
2916 /* size of ymode must not be greater than the size of xmode. */
2917 mode_multiple = GET_MODE_SIZE (xmode) / GET_MODE_SIZE (ymode);
2918 if (mode_multiple == 0)
2919 abort ();
2921 y_offset = offset / GET_MODE_SIZE (ymode);
2922 nregs_multiple = nregs_xmode / nregs_ymode;
2923 ret = (y_offset / (mode_multiple / nregs_multiple)) * nregs_ymode;
2924 #endif
2926 return ret;
2929 /* Return the final regno that a subreg expression refers to. */
2930 unsigned int
2931 subreg_regno (x)
2932 rtx x;
2934 unsigned int ret;
2935 rtx subreg = SUBREG_REG (x);
2936 int regno = REGNO (subreg);
2938 ret = regno + subreg_regno_offset (regno,
2939 GET_MODE (subreg),
2940 SUBREG_BYTE (x),
2941 GET_MODE (x));
2942 return ret;
2945 struct parms_set_data
2947 int nregs;
2948 HARD_REG_SET regs;
2951 /* Helper function for noticing stores to parameter registers. */
2952 static void
2953 parms_set (x, pat, data)
2954 rtx x, pat ATTRIBUTE_UNUSED;
2955 void *data;
2957 struct parms_set_data *d = data;
2958 if (REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER
2959 && TEST_HARD_REG_BIT (d->regs, REGNO (x)))
2961 CLEAR_HARD_REG_BIT (d->regs, REGNO (x));
2962 d->nregs--;
2966 /* Look backward for first parameter to be loaded.
2967 Do not skip BOUNDARY. */
2969 find_first_parameter_load (call_insn, boundary)
2970 rtx call_insn, boundary;
2972 struct parms_set_data parm;
2973 rtx p, before;
2975 /* Since different machines initialize their parameter registers
2976 in different orders, assume nothing. Collect the set of all
2977 parameter registers. */
2978 CLEAR_HARD_REG_SET (parm.regs);
2979 parm.nregs = 0;
2980 for (p = CALL_INSN_FUNCTION_USAGE (call_insn); p; p = XEXP (p, 1))
2981 if (GET_CODE (XEXP (p, 0)) == USE
2982 && GET_CODE (XEXP (XEXP (p, 0), 0)) == REG)
2984 if (REGNO (XEXP (XEXP (p, 0), 0)) >= FIRST_PSEUDO_REGISTER)
2985 abort ();
2987 /* We only care about registers which can hold function
2988 arguments. */
2989 if (!FUNCTION_ARG_REGNO_P (REGNO (XEXP (XEXP (p, 0), 0))))
2990 continue;
2992 SET_HARD_REG_BIT (parm.regs, REGNO (XEXP (XEXP (p, 0), 0)));
2993 parm.nregs++;
2995 before = call_insn;
2997 /* Search backward for the first set of a register in this set. */
2998 while (parm.nregs && before != boundary)
3000 before = PREV_INSN (before);
3002 /* It is possible that some loads got CSEed from one call to
3003 another. Stop in that case. */
3004 if (GET_CODE (before) == CALL_INSN)
3005 break;
3007 /* Our caller needs either ensure that we will find all sets
3008 (in case code has not been optimized yet), or take care
3009 for possible labels in a way by setting boundary to preceding
3010 CODE_LABEL. */
3011 if (GET_CODE (before) == CODE_LABEL)
3013 if (before != boundary)
3014 abort ();
3015 break;
3018 if (INSN_P (before))
3019 note_stores (PATTERN (before), parms_set, &parm);
3021 return before;