1 /* Optimize jump instructions, for GNU compiler.
2 Copyright (C) 1987, 88, 89, 91-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)
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 /* This is the jump-optimization pass of the compiler.
23 It is run two or three times: once before cse, sometimes once after cse,
24 and once after reload (before final).
26 jump_optimize deletes unreachable code and labels that are not used.
27 It also deletes jumps that jump to the following insn,
28 and simplifies jumps around unconditional jumps and jumps
29 to unconditional jumps.
31 Each CODE_LABEL has a count of the times it is used
32 stored in the LABEL_NUSES internal field, and each JUMP_INSN
33 has one label that it refers to stored in the
34 JUMP_LABEL internal field. With this we can detect labels that
35 become unused because of the deletion of all the jumps that
36 formerly used them. The JUMP_LABEL info is sometimes looked
39 Optionally, cross-jumping can be done. Currently it is done
40 only the last time (when after reload and before final).
41 In fact, the code for cross-jumping now assumes that register
42 allocation has been done, since it uses `rtx_renumbered_equal_p'.
44 Jump optimization is done after cse when cse's constant-propagation
45 causes jumps to become unconditional or to be deleted.
47 Unreachable loops are not detected here, because the labels
48 have references and the insns appear reachable from the labels.
49 find_basic_blocks in flow.c finds and deletes such loops.
51 The subroutines delete_insn, redirect_jump, and invert_jump are used
52 from other passes as well. */
58 #include "hard-reg-set.h"
60 #include "insn-config.h"
61 #include "insn-flags.h"
62 #include "insn-attr.h"
69 /* ??? Eventually must record somehow the labels used by jumps
70 from nested functions. */
71 /* Pre-record the next or previous real insn for each label?
72 No, this pass is very fast anyway. */
73 /* Condense consecutive labels?
74 This would make life analysis faster, maybe. */
75 /* Optimize jump y; x: ... y: jumpif... x?
76 Don't know if it is worth bothering with. */
77 /* Optimize two cases of conditional jump to conditional jump?
78 This can never delete any instruction or make anything dead,
79 or even change what is live at any point.
80 So perhaps let combiner do it. */
82 /* Vector indexed by uid.
83 For each CODE_LABEL, index by its uid to get first unconditional jump
84 that jumps to the label.
85 For each JUMP_INSN, index by its uid to get the next unconditional jump
86 that jumps to the same label.
87 Element 0 is the start of a chain of all return insns.
88 (It is safe to use element 0 because insn uid 0 is not used. */
90 static rtx
*jump_chain
;
92 /* List of labels referred to from initializers.
93 These can never be deleted. */
96 /* Maximum index in jump_chain. */
98 static int max_jump_chain
;
100 /* Set nonzero by jump_optimize if control can fall through
101 to the end of the function. */
104 /* Indicates whether death notes are significant in cross jump analysis.
105 Normally they are not significant, because of A and B jump to C,
106 and R dies in A, it must die in B. But this might not be true after
107 stack register conversion, and we must compare death notes in that
110 static int cross_jump_death_matters
= 0;
112 static int init_label_info
PROTO((rtx
));
113 static void delete_barrier_successors
PROTO((rtx
));
114 static void mark_all_labels
PROTO((rtx
, int));
115 static rtx delete_unreferenced_labels
PROTO((rtx
));
116 static void delete_noop_moves
PROTO((rtx
));
117 static int calculate_can_reach_end
PROTO((rtx
, int, int));
118 static int duplicate_loop_exit_test
PROTO((rtx
));
119 static void find_cross_jump
PROTO((rtx
, rtx
, int, rtx
*, rtx
*));
120 static void do_cross_jump
PROTO((rtx
, rtx
, rtx
));
121 static int jump_back_p
PROTO((rtx
, rtx
));
122 static int tension_vector_labels
PROTO((rtx
, int));
123 static void mark_jump_label
PROTO((rtx
, rtx
, int));
124 static void delete_computation
PROTO((rtx
));
125 static void delete_from_jump_chain
PROTO((rtx
));
126 static int delete_labelref_insn
PROTO((rtx
, rtx
, int));
127 static void mark_modified_reg
PROTO((rtx
, rtx
));
128 static void redirect_tablejump
PROTO((rtx
, rtx
));
130 static rtx find_insert_position
PROTO((rtx
, rtx
));
133 /* Delete no-op jumps and optimize jumps to jumps
134 and jumps around jumps.
135 Delete unused labels and unreachable code.
137 If CROSS_JUMP is 1, detect matching code
138 before a jump and its destination and unify them.
139 If CROSS_JUMP is 2, do cross-jumping, but pay attention to death notes.
141 If NOOP_MOVES is nonzero, delete no-op move insns.
143 If AFTER_REGSCAN is nonzero, then this jump pass is being run immediately
144 after regscan, and it is safe to use regno_first_uid and regno_last_uid.
146 If `optimize' is zero, don't change any code,
147 just determine whether control drops off the end of the function.
148 This case occurs when we have -W and not -O.
149 It works because `delete_insn' checks the value of `optimize'
150 and refrains from actually deleting when that is 0. */
153 jump_optimize (f
, cross_jump
, noop_moves
, after_regscan
)
159 register rtx insn
, next
;
166 cross_jump_death_matters
= (cross_jump
== 2);
167 max_uid
= init_label_info (f
) + 1;
169 /* If we are performing cross jump optimizations, then initialize
170 tables mapping UIDs to EH regions to avoid incorrect movement
171 of insns from one EH region to another. */
172 if (flag_exceptions
&& cross_jump
)
173 init_insn_eh_region (f
, max_uid
);
175 delete_barrier_successors (f
);
177 /* Leave some extra room for labels and duplicate exit test insns
179 max_jump_chain
= max_uid
* 14 / 10;
180 jump_chain
= (rtx
*) alloca (max_jump_chain
* sizeof (rtx
));
181 bzero ((char *) jump_chain
, max_jump_chain
* sizeof (rtx
));
183 mark_all_labels (f
, cross_jump
);
185 /* Keep track of labels used from static data;
186 they cannot ever be deleted. */
188 for (insn
= forced_labels
; insn
; insn
= XEXP (insn
, 1))
189 LABEL_NUSES (XEXP (insn
, 0))++;
191 check_exception_handler_labels ();
193 /* Keep track of labels used for marking handlers for exception
194 regions; they cannot usually be deleted. */
196 for (insn
= exception_handler_labels
; insn
; insn
= XEXP (insn
, 1))
197 LABEL_NUSES (XEXP (insn
, 0))++;
199 exception_optimize ();
201 last_insn
= delete_unreferenced_labels (f
);
205 can_reach_end
= calculate_can_reach_end (last_insn
, 1, 0);
207 /* Zero the "deleted" flag of all the "deleted" insns. */
208 for (insn
= f
; insn
; insn
= NEXT_INSN (insn
))
209 INSN_DELETED_P (insn
) = 0;
211 /* Show that the jump chain is not valid. */
219 /* If we fall through to the epilogue, see if we can insert a RETURN insn
220 in front of it. If the machine allows it at this point (we might be
221 after reload for a leaf routine), it will improve optimization for it
223 insn
= get_last_insn ();
224 while (insn
&& GET_CODE (insn
) == NOTE
)
225 insn
= PREV_INSN (insn
);
227 if (insn
&& GET_CODE (insn
) != BARRIER
)
229 emit_jump_insn (gen_return ());
236 delete_noop_moves (f
);
238 /* If we haven't yet gotten to reload and we have just run regscan,
239 delete any insn that sets a register that isn't used elsewhere.
240 This helps some of the optimizations below by having less insns
241 being jumped around. */
243 if (! reload_completed
&& after_regscan
)
244 for (insn
= f
; insn
; insn
= next
)
246 rtx set
= single_set (insn
);
248 next
= NEXT_INSN (insn
);
250 if (set
&& GET_CODE (SET_DEST (set
)) == REG
251 && REGNO (SET_DEST (set
)) >= FIRST_PSEUDO_REGISTER
252 && REGNO_FIRST_UID (REGNO (SET_DEST (set
))) == INSN_UID (insn
)
253 /* We use regno_last_note_uid so as not to delete the setting
254 of a reg that's used in notes. A subsequent optimization
255 might arrange to use that reg for real. */
256 && REGNO_LAST_NOTE_UID (REGNO (SET_DEST (set
))) == INSN_UID (insn
)
257 && ! side_effects_p (SET_SRC (set
))
258 && ! find_reg_note (insn
, REG_RETVAL
, 0))
262 /* Now iterate optimizing jumps until nothing changes over one pass. */
264 old_max_reg
= max_reg_num ();
269 for (insn
= f
; insn
; insn
= next
)
272 rtx temp
, temp1
, temp2
, temp3
, temp4
, temp5
, temp6
;
274 int this_is_simplejump
, this_is_condjump
, reversep
= 0;
275 int this_is_condjump_in_parallel
;
278 /* If NOT the first iteration, if this is the last jump pass
279 (just before final), do the special peephole optimizations.
280 Avoiding the first iteration gives ordinary jump opts
281 a chance to work before peephole opts. */
283 if (reload_completed
&& !first
&& !flag_no_peephole
)
284 if (GET_CODE (insn
) == INSN
|| GET_CODE (insn
) == JUMP_INSN
)
288 /* That could have deleted some insns after INSN, so check now
289 what the following insn is. */
291 next
= NEXT_INSN (insn
);
293 /* See if this is a NOTE_INSN_LOOP_BEG followed by an unconditional
294 jump. Try to optimize by duplicating the loop exit test if so.
295 This is only safe immediately after regscan, because it uses
296 the values of regno_first_uid and regno_last_uid. */
297 if (after_regscan
&& GET_CODE (insn
) == NOTE
298 && NOTE_LINE_NUMBER (insn
) == NOTE_INSN_LOOP_BEG
299 && (temp1
= next_nonnote_insn (insn
)) != 0
300 && simplejump_p (temp1
))
302 temp
= PREV_INSN (insn
);
303 if (duplicate_loop_exit_test (insn
))
306 next
= NEXT_INSN (temp
);
311 if (GET_CODE (insn
) != JUMP_INSN
)
314 this_is_simplejump
= simplejump_p (insn
);
315 this_is_condjump
= condjump_p (insn
);
316 this_is_condjump_in_parallel
= condjump_in_parallel_p (insn
);
318 /* Tension the labels in dispatch tables. */
320 if (GET_CODE (PATTERN (insn
)) == ADDR_VEC
)
321 changed
|= tension_vector_labels (PATTERN (insn
), 0);
322 if (GET_CODE (PATTERN (insn
)) == ADDR_DIFF_VEC
)
323 changed
|= tension_vector_labels (PATTERN (insn
), 1);
325 /* If a dispatch table always goes to the same place,
326 get rid of it and replace the insn that uses it. */
328 if (GET_CODE (PATTERN (insn
)) == ADDR_VEC
329 || GET_CODE (PATTERN (insn
)) == ADDR_DIFF_VEC
)
332 rtx pat
= PATTERN (insn
);
333 int diff_vec_p
= GET_CODE (PATTERN (insn
)) == ADDR_DIFF_VEC
;
334 int len
= XVECLEN (pat
, diff_vec_p
);
335 rtx dispatch
= prev_real_insn (insn
);
337 for (i
= 0; i
< len
; i
++)
338 if (XEXP (XVECEXP (pat
, diff_vec_p
, i
), 0)
339 != XEXP (XVECEXP (pat
, diff_vec_p
, 0), 0))
343 && GET_CODE (dispatch
) == JUMP_INSN
344 && JUMP_LABEL (dispatch
) != 0
345 /* Don't mess with a casesi insn. */
346 && !(GET_CODE (PATTERN (dispatch
)) == SET
347 && (GET_CODE (SET_SRC (PATTERN (dispatch
)))
349 && next_real_insn (JUMP_LABEL (dispatch
)) == insn
)
351 redirect_tablejump (dispatch
,
352 XEXP (XVECEXP (pat
, diff_vec_p
, 0), 0));
357 reallabelprev
= prev_active_insn (JUMP_LABEL (insn
));
359 /* If a jump references the end of the function, try to turn
360 it into a RETURN insn, possibly a conditional one. */
361 if (JUMP_LABEL (insn
)
362 && (next_active_insn (JUMP_LABEL (insn
)) == 0
363 || GET_CODE (PATTERN (next_active_insn (JUMP_LABEL (insn
))))
365 changed
|= redirect_jump (insn
, NULL_RTX
);
367 /* Detect jump to following insn. */
368 if (reallabelprev
== insn
&& condjump_p (insn
))
370 next
= next_real_insn (JUMP_LABEL (insn
));
376 /* If we have an unconditional jump preceded by a USE, try to put
377 the USE before the target and jump there. This simplifies many
378 of the optimizations below since we don't have to worry about
379 dealing with these USE insns. We only do this if the label
380 being branch to already has the identical USE or if code
381 never falls through to that label. */
383 if (this_is_simplejump
384 && (temp
= prev_nonnote_insn (insn
)) != 0
385 && GET_CODE (temp
) == INSN
&& GET_CODE (PATTERN (temp
)) == USE
386 && (temp1
= prev_nonnote_insn (JUMP_LABEL (insn
))) != 0
387 && (GET_CODE (temp1
) == BARRIER
388 || (GET_CODE (temp1
) == INSN
389 && rtx_equal_p (PATTERN (temp
), PATTERN (temp1
))))
390 /* Don't do this optimization if we have a loop containing only
391 the USE instruction, and the loop start label has a usage
392 count of 1. This is because we will redo this optimization
393 everytime through the outer loop, and jump opt will never
395 && ! ((temp2
= prev_nonnote_insn (temp
)) != 0
396 && temp2
== JUMP_LABEL (insn
)
397 && LABEL_NUSES (temp2
) == 1))
399 if (GET_CODE (temp1
) == BARRIER
)
401 emit_insn_after (PATTERN (temp
), temp1
);
402 temp1
= NEXT_INSN (temp1
);
406 redirect_jump (insn
, get_label_before (temp1
));
407 reallabelprev
= prev_real_insn (temp1
);
411 /* Simplify if (...) x = a; else x = b; by converting it
412 to x = b; if (...) x = a;
413 if B is sufficiently simple, the test doesn't involve X,
414 and nothing in the test modifies B or X.
416 If we have small register classes, we also can't do this if X
419 If the "x = b;" insn has any REG_NOTES, we don't do this because
420 of the possibility that we are running after CSE and there is a
421 REG_EQUAL note that is only valid if the branch has already been
422 taken. If we move the insn with the REG_EQUAL note, we may
423 fold the comparison to always be false in a later CSE pass.
424 (We could also delete the REG_NOTES when moving the insn, but it
425 seems simpler to not move it.) An exception is that we can move
426 the insn if the only note is a REG_EQUAL or REG_EQUIV whose
427 value is the same as "b".
429 INSN is the branch over the `else' part.
433 TEMP to the jump insn preceding "x = a;"
435 TEMP2 to the insn that sets "x = b;"
436 TEMP3 to the insn that sets "x = a;"
437 TEMP4 to the set of "x = b"; */
439 if (this_is_simplejump
440 && (temp3
= prev_active_insn (insn
)) != 0
441 && GET_CODE (temp3
) == INSN
442 && (temp4
= single_set (temp3
)) != 0
443 && GET_CODE (temp1
= SET_DEST (temp4
)) == REG
444 && (! SMALL_REGISTER_CLASSES
445 || REGNO (temp1
) >= FIRST_PSEUDO_REGISTER
)
446 && (temp2
= next_active_insn (insn
)) != 0
447 && GET_CODE (temp2
) == INSN
448 && (temp4
= single_set (temp2
)) != 0
449 && rtx_equal_p (SET_DEST (temp4
), temp1
)
450 && ! side_effects_p (SET_SRC (temp4
))
451 && ! may_trap_p (SET_SRC (temp4
))
452 && (REG_NOTES (temp2
) == 0
453 || ((REG_NOTE_KIND (REG_NOTES (temp2
)) == REG_EQUAL
454 || REG_NOTE_KIND (REG_NOTES (temp2
)) == REG_EQUIV
)
455 && XEXP (REG_NOTES (temp2
), 1) == 0
456 && rtx_equal_p (XEXP (REG_NOTES (temp2
), 0),
458 && (temp
= prev_active_insn (temp3
)) != 0
459 && condjump_p (temp
) && ! simplejump_p (temp
)
460 /* TEMP must skip over the "x = a;" insn */
461 && prev_real_insn (JUMP_LABEL (temp
)) == insn
462 && no_labels_between_p (insn
, JUMP_LABEL (temp
))
463 /* There must be no other entries to the "x = b;" insn. */
464 && no_labels_between_p (JUMP_LABEL (temp
), temp2
)
465 /* INSN must either branch to the insn after TEMP2 or the insn
466 after TEMP2 must branch to the same place as INSN. */
467 && (reallabelprev
== temp2
468 || ((temp5
= next_active_insn (temp2
)) != 0
469 && simplejump_p (temp5
)
470 && JUMP_LABEL (temp5
) == JUMP_LABEL (insn
))))
472 /* The test expression, X, may be a complicated test with
473 multiple branches. See if we can find all the uses of
474 the label that TEMP branches to without hitting a CALL_INSN
475 or a jump to somewhere else. */
476 rtx target
= JUMP_LABEL (temp
);
477 int nuses
= LABEL_NUSES (target
);
483 /* Set P to the first jump insn that goes around "x = a;". */
484 for (p
= temp
; nuses
&& p
; p
= prev_nonnote_insn (p
))
486 if (GET_CODE (p
) == JUMP_INSN
)
488 if (condjump_p (p
) && ! simplejump_p (p
)
489 && JUMP_LABEL (p
) == target
)
498 else if (GET_CODE (p
) == CALL_INSN
)
503 /* We cannot insert anything between a set of cc and its use
504 so if P uses cc0, we must back up to the previous insn. */
505 q
= prev_nonnote_insn (p
);
506 if (q
&& GET_RTX_CLASS (GET_CODE (q
)) == 'i'
507 && sets_cc0_p (PATTERN (q
)))
514 /* If we found all the uses and there was no data conflict, we
515 can move the assignment unless we can branch into the middle
518 && no_labels_between_p (p
, insn
)
519 && ! reg_referenced_between_p (temp1
, p
, NEXT_INSN (temp3
))
520 && ! reg_set_between_p (temp1
, p
, temp3
)
521 && (GET_CODE (SET_SRC (temp4
)) == CONST_INT
522 || ! modified_between_p (SET_SRC (temp4
), p
, temp2
))
523 /* Verify that registers used by the jump are not clobbered
524 by the instruction being moved. */
525 && ! regs_set_between_p (PATTERN (temp
),
529 emit_insn_after_with_line_notes (PATTERN (temp2
), p
, temp2
);
532 /* Set NEXT to an insn that we know won't go away. */
533 next
= next_active_insn (insn
);
535 /* Delete the jump around the set. Note that we must do
536 this before we redirect the test jumps so that it won't
537 delete the code immediately following the assignment
538 we moved (which might be a jump). */
542 /* We either have two consecutive labels or a jump to
543 a jump, so adjust all the JUMP_INSNs to branch to where
545 for (p
= NEXT_INSN (p
); p
!= next
; p
= NEXT_INSN (p
))
546 if (GET_CODE (p
) == JUMP_INSN
)
547 redirect_jump (p
, target
);
554 /* Simplify if (...) { x = a; goto l; } x = b; by converting it
555 to x = a; if (...) goto l; x = b;
556 if A is sufficiently simple, the test doesn't involve X,
557 and nothing in the test modifies A or X.
559 If we have small register classes, we also can't do this if X
562 If the "x = a;" insn has any REG_NOTES, we don't do this because
563 of the possibility that we are running after CSE and there is a
564 REG_EQUAL note that is only valid if the branch has already been
565 taken. If we move the insn with the REG_EQUAL note, we may
566 fold the comparison to always be false in a later CSE pass.
567 (We could also delete the REG_NOTES when moving the insn, but it
568 seems simpler to not move it.) An exception is that we can move
569 the insn if the only note is a REG_EQUAL or REG_EQUIV whose
570 value is the same as "a".
576 TEMP to the jump insn preceding "x = a;"
578 TEMP2 to the insn that sets "x = b;"
579 TEMP3 to the insn that sets "x = a;"
580 TEMP4 to the set of "x = a"; */
582 if (this_is_simplejump
583 && (temp2
= next_active_insn (insn
)) != 0
584 && GET_CODE (temp2
) == INSN
585 && (temp4
= single_set (temp2
)) != 0
586 && GET_CODE (temp1
= SET_DEST (temp4
)) == REG
587 && (! SMALL_REGISTER_CLASSES
588 || REGNO (temp1
) >= FIRST_PSEUDO_REGISTER
)
589 && (temp3
= prev_active_insn (insn
)) != 0
590 && GET_CODE (temp3
) == INSN
591 && (temp4
= single_set (temp3
)) != 0
592 && rtx_equal_p (SET_DEST (temp4
), temp1
)
593 && ! side_effects_p (SET_SRC (temp4
))
594 && ! may_trap_p (SET_SRC (temp4
))
595 && (REG_NOTES (temp3
) == 0
596 || ((REG_NOTE_KIND (REG_NOTES (temp3
)) == REG_EQUAL
597 || REG_NOTE_KIND (REG_NOTES (temp3
)) == REG_EQUIV
)
598 && XEXP (REG_NOTES (temp3
), 1) == 0
599 && rtx_equal_p (XEXP (REG_NOTES (temp3
), 0),
601 && (temp
= prev_active_insn (temp3
)) != 0
602 && condjump_p (temp
) && ! simplejump_p (temp
)
603 /* TEMP must skip over the "x = a;" insn */
604 && prev_real_insn (JUMP_LABEL (temp
)) == insn
605 && no_labels_between_p (temp
, insn
))
607 rtx prev_label
= JUMP_LABEL (temp
);
608 rtx insert_after
= prev_nonnote_insn (temp
);
611 /* We cannot insert anything between a set of cc and its use. */
612 if (insert_after
&& GET_RTX_CLASS (GET_CODE (insert_after
)) == 'i'
613 && sets_cc0_p (PATTERN (insert_after
)))
614 insert_after
= prev_nonnote_insn (insert_after
);
616 ++LABEL_NUSES (prev_label
);
619 && no_labels_between_p (insert_after
, temp
)
620 && ! reg_referenced_between_p (temp1
, insert_after
, temp3
)
621 && ! reg_referenced_between_p (temp1
, temp3
,
623 && ! reg_set_between_p (temp1
, insert_after
, temp
)
624 && ! modified_between_p (SET_SRC (temp4
), insert_after
, temp
)
625 /* Verify that registers used by the jump are not clobbered
626 by the instruction being moved. */
627 && ! regs_set_between_p (PATTERN (temp
),
630 && invert_jump (temp
, JUMP_LABEL (insn
)))
632 emit_insn_after_with_line_notes (PATTERN (temp3
),
633 insert_after
, temp3
);
636 /* Set NEXT to an insn that we know won't go away. */
640 if (prev_label
&& --LABEL_NUSES (prev_label
) == 0)
641 delete_insn (prev_label
);
647 /* If we have if (...) x = exp; and branches are expensive,
648 EXP is a single insn, does not have any side effects, cannot
649 trap, and is not too costly, convert this to
650 t = exp; if (...) x = t;
652 Don't do this when we have CC0 because it is unlikely to help
653 and we'd need to worry about where to place the new insn and
654 the potential for conflicts. We also can't do this when we have
655 notes on the insn for the same reason as above.
659 TEMP to the "x = exp;" insn.
660 TEMP1 to the single set in the "x = exp;" insn.
663 if (! reload_completed
664 && this_is_condjump
&& ! this_is_simplejump
666 && (temp
= next_nonnote_insn (insn
)) != 0
667 && GET_CODE (temp
) == INSN
668 && REG_NOTES (temp
) == 0
669 && (reallabelprev
== temp
670 || ((temp2
= next_active_insn (temp
)) != 0
671 && simplejump_p (temp2
)
672 && JUMP_LABEL (temp2
) == JUMP_LABEL (insn
)))
673 && (temp1
= single_set (temp
)) != 0
674 && (temp2
= SET_DEST (temp1
), GET_CODE (temp2
) == REG
)
675 && (! SMALL_REGISTER_CLASSES
676 || REGNO (temp2
) >= FIRST_PSEUDO_REGISTER
)
677 && GET_CODE (SET_SRC (temp1
)) != REG
678 && GET_CODE (SET_SRC (temp1
)) != SUBREG
679 && GET_CODE (SET_SRC (temp1
)) != CONST_INT
680 && ! side_effects_p (SET_SRC (temp1
))
681 && ! may_trap_p (SET_SRC (temp1
))
682 && rtx_cost (SET_SRC (temp1
), SET
) < 10)
684 rtx
new = gen_reg_rtx (GET_MODE (temp2
));
686 if ((temp3
= find_insert_position (insn
, temp
))
687 && validate_change (temp
, &SET_DEST (temp1
), new, 0))
689 next
= emit_insn_after (gen_move_insn (temp2
, new), insn
);
690 emit_insn_after_with_line_notes (PATTERN (temp
),
691 PREV_INSN (temp3
), temp
);
693 reallabelprev
= prev_active_insn (JUMP_LABEL (insn
));
697 reg_scan_update (temp3
, NEXT_INSN (next
), old_max_reg
);
698 old_max_reg
= max_reg_num ();
703 /* Similarly, if it takes two insns to compute EXP but they
704 have the same destination. Here TEMP3 will be the second
705 insn and TEMP4 the SET from that insn. */
707 if (! reload_completed
708 && this_is_condjump
&& ! this_is_simplejump
710 && (temp
= next_nonnote_insn (insn
)) != 0
711 && GET_CODE (temp
) == INSN
712 && REG_NOTES (temp
) == 0
713 && (temp3
= next_nonnote_insn (temp
)) != 0
714 && GET_CODE (temp3
) == INSN
715 && REG_NOTES (temp3
) == 0
716 && (reallabelprev
== temp3
717 || ((temp2
= next_active_insn (temp3
)) != 0
718 && simplejump_p (temp2
)
719 && JUMP_LABEL (temp2
) == JUMP_LABEL (insn
)))
720 && (temp1
= single_set (temp
)) != 0
721 && (temp2
= SET_DEST (temp1
), GET_CODE (temp2
) == REG
)
722 && GET_MODE_CLASS (GET_MODE (temp2
)) == MODE_INT
723 && (! SMALL_REGISTER_CLASSES
724 || REGNO (temp2
) >= FIRST_PSEUDO_REGISTER
)
725 && ! side_effects_p (SET_SRC (temp1
))
726 && ! may_trap_p (SET_SRC (temp1
))
727 && rtx_cost (SET_SRC (temp1
), SET
) < 10
728 && (temp4
= single_set (temp3
)) != 0
729 && rtx_equal_p (SET_DEST (temp4
), temp2
)
730 && ! side_effects_p (SET_SRC (temp4
))
731 && ! may_trap_p (SET_SRC (temp4
))
732 && rtx_cost (SET_SRC (temp4
), SET
) < 10)
734 rtx
new = gen_reg_rtx (GET_MODE (temp2
));
736 if ((temp5
= find_insert_position (insn
, temp
))
737 && (temp6
= find_insert_position (insn
, temp3
))
738 && validate_change (temp
, &SET_DEST (temp1
), new, 0))
740 /* Use the earliest of temp5 and temp6. */
743 next
= emit_insn_after (gen_move_insn (temp2
, new), insn
);
744 emit_insn_after_with_line_notes (PATTERN (temp
),
745 PREV_INSN (temp6
), temp
);
746 emit_insn_after_with_line_notes
747 (replace_rtx (PATTERN (temp3
), temp2
, new),
748 PREV_INSN (temp6
), temp3
);
751 reallabelprev
= prev_active_insn (JUMP_LABEL (insn
));
755 reg_scan_update (temp6
, NEXT_INSN (next
), old_max_reg
);
756 old_max_reg
= max_reg_num ();
761 /* Finally, handle the case where two insns are used to
762 compute EXP but a temporary register is used. Here we must
763 ensure that the temporary register is not used anywhere else. */
765 if (! reload_completed
767 && this_is_condjump
&& ! this_is_simplejump
769 && (temp
= next_nonnote_insn (insn
)) != 0
770 && GET_CODE (temp
) == INSN
771 && REG_NOTES (temp
) == 0
772 && (temp3
= next_nonnote_insn (temp
)) != 0
773 && GET_CODE (temp3
) == INSN
774 && REG_NOTES (temp3
) == 0
775 && (reallabelprev
== temp3
776 || ((temp2
= next_active_insn (temp3
)) != 0
777 && simplejump_p (temp2
)
778 && JUMP_LABEL (temp2
) == JUMP_LABEL (insn
)))
779 && (temp1
= single_set (temp
)) != 0
780 && (temp5
= SET_DEST (temp1
),
781 (GET_CODE (temp5
) == REG
782 || (GET_CODE (temp5
) == SUBREG
783 && (temp5
= SUBREG_REG (temp5
),
784 GET_CODE (temp5
) == REG
))))
785 && REGNO (temp5
) >= FIRST_PSEUDO_REGISTER
786 && REGNO_FIRST_UID (REGNO (temp5
)) == INSN_UID (temp
)
787 && REGNO_LAST_UID (REGNO (temp5
)) == INSN_UID (temp3
)
788 && ! side_effects_p (SET_SRC (temp1
))
789 && ! may_trap_p (SET_SRC (temp1
))
790 && rtx_cost (SET_SRC (temp1
), SET
) < 10
791 && (temp4
= single_set (temp3
)) != 0
792 && (temp2
= SET_DEST (temp4
), GET_CODE (temp2
) == REG
)
793 && GET_MODE_CLASS (GET_MODE (temp2
)) == MODE_INT
794 && (! SMALL_REGISTER_CLASSES
795 || REGNO (temp2
) >= FIRST_PSEUDO_REGISTER
)
796 && rtx_equal_p (SET_DEST (temp4
), temp2
)
797 && ! side_effects_p (SET_SRC (temp4
))
798 && ! may_trap_p (SET_SRC (temp4
))
799 && rtx_cost (SET_SRC (temp4
), SET
) < 10)
801 rtx
new = gen_reg_rtx (GET_MODE (temp2
));
803 if ((temp5
= find_insert_position (insn
, temp
))
804 && (temp6
= find_insert_position (insn
, temp3
))
805 && validate_change (temp3
, &SET_DEST (temp4
), new, 0))
807 /* Use the earliest of temp5 and temp6. */
810 next
= emit_insn_after (gen_move_insn (temp2
, new), insn
);
811 emit_insn_after_with_line_notes (PATTERN (temp
),
812 PREV_INSN (temp6
), temp
);
813 emit_insn_after_with_line_notes (PATTERN (temp3
),
814 PREV_INSN (temp6
), temp3
);
817 reallabelprev
= prev_active_insn (JUMP_LABEL (insn
));
821 reg_scan_update (temp6
, NEXT_INSN (next
), old_max_reg
);
822 old_max_reg
= max_reg_num ();
826 #endif /* HAVE_cc0 */
828 /* Try to use a conditional move (if the target has them), or a
829 store-flag insn. The general case is:
831 1) x = a; if (...) x = b; and
834 If the jump would be faster, the machine should not have defined
835 the movcc or scc insns!. These cases are often made by the
836 previous optimization.
838 The second case is treated as x = x; if (...) x = b;.
840 INSN here is the jump around the store. We set:
842 TEMP to the "x = b;" insn.
845 TEMP3 to A (X in the second case).
846 TEMP4 to the condition being tested.
847 TEMP5 to the earliest insn used to find the condition. */
849 if (/* We can't do this after reload has completed. */
851 && this_is_condjump
&& ! this_is_simplejump
852 /* Set TEMP to the "x = b;" insn. */
853 && (temp
= next_nonnote_insn (insn
)) != 0
854 && GET_CODE (temp
) == INSN
855 && GET_CODE (PATTERN (temp
)) == SET
856 && GET_CODE (temp1
= SET_DEST (PATTERN (temp
))) == REG
857 && (! SMALL_REGISTER_CLASSES
858 || REGNO (temp1
) >= FIRST_PSEUDO_REGISTER
)
859 && ! side_effects_p (temp2
= SET_SRC (PATTERN (temp
)))
860 && ! may_trap_p (temp2
)
861 /* Allow either form, but prefer the former if both apply.
862 There is no point in using the old value of TEMP1 if
863 it is a register, since cse will alias them. It can
864 lose if the old value were a hard register since CSE
865 won't replace hard registers. Avoid using TEMP3 if
866 small register classes and it is a hard register. */
867 && (((temp3
= reg_set_last (temp1
, insn
)) != 0
868 && ! (SMALL_REGISTER_CLASSES
&& GET_CODE (temp3
) == REG
869 && REGNO (temp3
) < FIRST_PSEUDO_REGISTER
))
870 /* Make the latter case look like x = x; if (...) x = b; */
871 || (temp3
= temp1
, 1))
872 /* INSN must either branch to the insn after TEMP or the insn
873 after TEMP must branch to the same place as INSN. */
874 && (reallabelprev
== temp
875 || ((temp4
= next_active_insn (temp
)) != 0
876 && simplejump_p (temp4
)
877 && JUMP_LABEL (temp4
) == JUMP_LABEL (insn
)))
878 && (temp4
= get_condition (insn
, &temp5
)) != 0
879 /* We must be comparing objects whose modes imply the size.
880 We could handle BLKmode if (1) emit_store_flag could
881 and (2) we could find the size reliably. */
882 && GET_MODE (XEXP (temp4
, 0)) != BLKmode
883 /* Even if branches are cheap, the store_flag optimization
884 can win when the operation to be performed can be
885 expressed directly. */
887 /* If the previous insn sets CC0 and something else, we can't
888 do this since we are going to delete that insn. */
890 && ! ((temp6
= prev_nonnote_insn (insn
)) != 0
891 && GET_CODE (temp6
) == INSN
892 && (sets_cc0_p (PATTERN (temp6
)) == -1
893 || (sets_cc0_p (PATTERN (temp6
)) == 1
894 && FIND_REG_INC_NOTE (temp6
, NULL_RTX
))))
898 #ifdef HAVE_conditional_move
899 /* First try a conditional move. */
901 enum rtx_code code
= GET_CODE (temp4
);
903 rtx cond0
, cond1
, aval
, bval
;
906 /* Copy the compared variables into cond0 and cond1, so that
907 any side effects performed in or after the old comparison,
908 will not affect our compare which will come later. */
909 /* ??? Is it possible to just use the comparison in the jump
910 insn? After all, we're going to delete it. We'd have
911 to modify emit_conditional_move to take a comparison rtx
912 instead or write a new function. */
913 cond0
= gen_reg_rtx (GET_MODE (XEXP (temp4
, 0)));
914 /* We want the target to be able to simplify comparisons with
915 zero (and maybe other constants as well), so don't create
916 pseudos for them. There's no need to either. */
917 if (GET_CODE (XEXP (temp4
, 1)) == CONST_INT
918 || GET_CODE (XEXP (temp4
, 1)) == CONST_DOUBLE
)
919 cond1
= XEXP (temp4
, 1);
921 cond1
= gen_reg_rtx (GET_MODE (XEXP (temp4
, 1)));
927 target
= emit_conditional_move (var
, code
,
928 cond0
, cond1
, VOIDmode
,
929 aval
, bval
, GET_MODE (var
),
930 (code
== LTU
|| code
== GEU
931 || code
== LEU
|| code
== GTU
));
937 /* Save the conditional move sequence but don't emit it
938 yet. On some machines, like the alpha, it is possible
939 that temp5 == insn, so next generate the sequence that
940 saves the compared values and then emit both
941 sequences ensuring seq1 occurs before seq2. */
945 /* Now that we can't fail, generate the copy insns that
946 preserve the compared values. */
948 emit_move_insn (cond0
, XEXP (temp4
, 0));
949 if (cond1
!= XEXP (temp4
, 1))
950 emit_move_insn (cond1
, XEXP (temp4
, 1));
954 emit_insns_before (seq1
, temp5
);
955 /* Insert conditional move after insn, to be sure that
956 the jump and a possible compare won't be separated */
957 last
= emit_insns_after (seq2
, insn
);
959 /* ??? We can also delete the insn that sets X to A.
960 Flow will do it too though. */
962 next
= NEXT_INSN (insn
);
967 reg_scan_update (seq1
, NEXT_INSN (last
), old_max_reg
);
968 old_max_reg
= max_reg_num ();
979 /* That didn't work, try a store-flag insn.
981 We further divide the cases into:
983 1) x = a; if (...) x = b; and either A or B is zero,
984 2) if (...) x = 0; and jumps are expensive,
985 3) x = a; if (...) x = b; and A and B are constants where all
986 the set bits in A are also set in B and jumps are expensive,
987 4) x = a; if (...) x = b; and A and B non-zero, and jumps are
989 5) if (...) x = b; if jumps are even more expensive. */
991 if (GET_MODE_CLASS (GET_MODE (temp1
)) == MODE_INT
992 && ((GET_CODE (temp3
) == CONST_INT
)
993 /* Make the latter case look like
994 x = x; if (...) x = 0; */
997 && temp2
== const0_rtx
)
998 || BRANCH_COST
>= 3)))
999 /* If B is zero, OK; if A is zero, can only do (1) if we
1000 can reverse the condition. See if (3) applies possibly
1001 by reversing the condition. Prefer reversing to (4) when
1002 branches are very expensive. */
1003 && (((BRANCH_COST
>= 2
1004 || STORE_FLAG_VALUE
== -1
1005 || (STORE_FLAG_VALUE
== 1
1006 /* Check that the mask is a power of two,
1007 so that it can probably be generated
1009 && GET_CODE (temp3
) == CONST_INT
1010 && exact_log2 (INTVAL (temp3
)) >= 0))
1011 && (reversep
= 0, temp2
== const0_rtx
))
1012 || ((BRANCH_COST
>= 2
1013 || STORE_FLAG_VALUE
== -1
1014 || (STORE_FLAG_VALUE
== 1
1015 && GET_CODE (temp2
) == CONST_INT
1016 && exact_log2 (INTVAL (temp2
)) >= 0))
1017 && temp3
== const0_rtx
1018 && (reversep
= can_reverse_comparison_p (temp4
, insn
)))
1019 || (BRANCH_COST
>= 2
1020 && GET_CODE (temp2
) == CONST_INT
1021 && GET_CODE (temp3
) == CONST_INT
1022 && ((INTVAL (temp2
) & INTVAL (temp3
)) == INTVAL (temp2
)
1023 || ((INTVAL (temp2
) & INTVAL (temp3
)) == INTVAL (temp3
)
1024 && (reversep
= can_reverse_comparison_p (temp4
,
1026 || BRANCH_COST
>= 3)
1029 enum rtx_code code
= GET_CODE (temp4
);
1030 rtx uval
, cval
, var
= temp1
;
1034 /* If necessary, reverse the condition. */
1036 code
= reverse_condition (code
), uval
= temp2
, cval
= temp3
;
1038 uval
= temp3
, cval
= temp2
;
1040 /* If CVAL is non-zero, normalize to -1. Otherwise, if UVAL
1041 is the constant 1, it is best to just compute the result
1042 directly. If UVAL is constant and STORE_FLAG_VALUE
1043 includes all of its bits, it is best to compute the flag
1044 value unnormalized and `and' it with UVAL. Otherwise,
1045 normalize to -1 and `and' with UVAL. */
1046 normalizep
= (cval
!= const0_rtx
? -1
1047 : (uval
== const1_rtx
? 1
1048 : (GET_CODE (uval
) == CONST_INT
1049 && (INTVAL (uval
) & ~STORE_FLAG_VALUE
) == 0)
1052 /* We will be putting the store-flag insn immediately in
1053 front of the comparison that was originally being done,
1054 so we know all the variables in TEMP4 will be valid.
1055 However, this might be in front of the assignment of
1056 A to VAR. If it is, it would clobber the store-flag
1057 we will be emitting.
1059 Therefore, emit into a temporary which will be copied to
1060 VAR immediately after TEMP. */
1063 target
= emit_store_flag (gen_reg_rtx (GET_MODE (var
)), code
,
1064 XEXP (temp4
, 0), XEXP (temp4
, 1),
1066 (code
== LTU
|| code
== LEU
1067 || code
== GEU
|| code
== GTU
),
1077 /* Put the store-flag insns in front of the first insn
1078 used to compute the condition to ensure that we
1079 use the same values of them as the current
1080 comparison. However, the remainder of the insns we
1081 generate will be placed directly in front of the
1082 jump insn, in case any of the pseudos we use
1083 are modified earlier. */
1085 emit_insns_before (seq
, temp5
);
1089 /* Both CVAL and UVAL are non-zero. */
1090 if (cval
!= const0_rtx
&& uval
!= const0_rtx
)
1094 tem1
= expand_and (uval
, target
, NULL_RTX
);
1095 if (GET_CODE (cval
) == CONST_INT
1096 && GET_CODE (uval
) == CONST_INT
1097 && (INTVAL (cval
) & INTVAL (uval
)) == INTVAL (cval
))
1101 tem2
= expand_unop (GET_MODE (var
), one_cmpl_optab
,
1102 target
, NULL_RTX
, 0);
1103 tem2
= expand_and (cval
, tem2
,
1104 (GET_CODE (tem2
) == REG
1108 /* If we usually make new pseudos, do so here. This
1109 turns out to help machines that have conditional
1111 /* ??? Conditional moves have already been handled.
1112 This may be obsolete. */
1114 if (flag_expensive_optimizations
)
1117 target
= expand_binop (GET_MODE (var
), ior_optab
,
1121 else if (normalizep
!= 1)
1123 /* We know that either CVAL or UVAL is zero. If
1124 UVAL is zero, negate TARGET and `and' with CVAL.
1125 Otherwise, `and' with UVAL. */
1126 if (uval
== const0_rtx
)
1128 target
= expand_unop (GET_MODE (var
), one_cmpl_optab
,
1129 target
, NULL_RTX
, 0);
1133 target
= expand_and (uval
, target
,
1134 (GET_CODE (target
) == REG
1135 && ! preserve_subexpressions_p ()
1136 ? target
: NULL_RTX
));
1139 emit_move_insn (var
, target
);
1143 /* If INSN uses CC0, we must not separate it from the
1144 insn that sets cc0. */
1145 if (reg_mentioned_p (cc0_rtx
, PATTERN (before
)))
1146 before
= prev_nonnote_insn (before
);
1148 emit_insns_before (seq
, before
);
1151 next
= NEXT_INSN (insn
);
1156 reg_scan_update (seq
, NEXT_INSN (next
), old_max_reg
);
1157 old_max_reg
= max_reg_num ();
1168 /* If branches are expensive, convert
1169 if (foo) bar++; to bar += (foo != 0);
1170 and similarly for "bar--;"
1172 INSN is the conditional branch around the arithmetic. We set:
1174 TEMP is the arithmetic insn.
1175 TEMP1 is the SET doing the arithmetic.
1176 TEMP2 is the operand being incremented or decremented.
1177 TEMP3 to the condition being tested.
1178 TEMP4 to the earliest insn used to find the condition. */
1180 if ((BRANCH_COST
>= 2
1188 && ! reload_completed
1189 && this_is_condjump
&& ! this_is_simplejump
1190 && (temp
= next_nonnote_insn (insn
)) != 0
1191 && (temp1
= single_set (temp
)) != 0
1192 && (temp2
= SET_DEST (temp1
),
1193 GET_MODE_CLASS (GET_MODE (temp2
)) == MODE_INT
)
1194 && GET_CODE (SET_SRC (temp1
)) == PLUS
1195 && (XEXP (SET_SRC (temp1
), 1) == const1_rtx
1196 || XEXP (SET_SRC (temp1
), 1) == constm1_rtx
)
1197 && rtx_equal_p (temp2
, XEXP (SET_SRC (temp1
), 0))
1198 && ! side_effects_p (temp2
)
1199 && ! may_trap_p (temp2
)
1200 /* INSN must either branch to the insn after TEMP or the insn
1201 after TEMP must branch to the same place as INSN. */
1202 && (reallabelprev
== temp
1203 || ((temp3
= next_active_insn (temp
)) != 0
1204 && simplejump_p (temp3
)
1205 && JUMP_LABEL (temp3
) == JUMP_LABEL (insn
)))
1206 && (temp3
= get_condition (insn
, &temp4
)) != 0
1207 /* We must be comparing objects whose modes imply the size.
1208 We could handle BLKmode if (1) emit_store_flag could
1209 and (2) we could find the size reliably. */
1210 && GET_MODE (XEXP (temp3
, 0)) != BLKmode
1211 && can_reverse_comparison_p (temp3
, insn
))
1213 rtx temp6
, target
= 0, seq
, init_insn
= 0, init
= temp2
;
1214 enum rtx_code code
= reverse_condition (GET_CODE (temp3
));
1218 /* It must be the case that TEMP2 is not modified in the range
1219 [TEMP4, INSN). The one exception we make is if the insn
1220 before INSN sets TEMP2 to something which is also unchanged
1221 in that range. In that case, we can move the initialization
1222 into our sequence. */
1224 if ((temp5
= prev_active_insn (insn
)) != 0
1225 && no_labels_between_p (temp5
, insn
)
1226 && GET_CODE (temp5
) == INSN
1227 && (temp6
= single_set (temp5
)) != 0
1228 && rtx_equal_p (temp2
, SET_DEST (temp6
))
1229 && (CONSTANT_P (SET_SRC (temp6
))
1230 || GET_CODE (SET_SRC (temp6
)) == REG
1231 || GET_CODE (SET_SRC (temp6
)) == SUBREG
))
1233 emit_insn (PATTERN (temp5
));
1235 init
= SET_SRC (temp6
);
1238 if (CONSTANT_P (init
)
1239 || ! reg_set_between_p (init
, PREV_INSN (temp4
), insn
))
1240 target
= emit_store_flag (gen_reg_rtx (GET_MODE (temp2
)), code
,
1241 XEXP (temp3
, 0), XEXP (temp3
, 1),
1243 (code
== LTU
|| code
== LEU
1244 || code
== GTU
|| code
== GEU
), 1);
1246 /* If we can do the store-flag, do the addition or
1250 target
= expand_binop (GET_MODE (temp2
),
1251 (XEXP (SET_SRC (temp1
), 1) == const1_rtx
1252 ? add_optab
: sub_optab
),
1253 temp2
, target
, temp2
, 0, OPTAB_WIDEN
);
1257 /* Put the result back in temp2 in case it isn't already.
1258 Then replace the jump, possible a CC0-setting insn in
1259 front of the jump, and TEMP, with the sequence we have
1262 if (target
!= temp2
)
1263 emit_move_insn (temp2
, target
);
1268 emit_insns_before (seq
, temp4
);
1272 delete_insn (init_insn
);
1274 next
= NEXT_INSN (insn
);
1276 delete_insn (prev_nonnote_insn (insn
));
1282 reg_scan_update (seq
, NEXT_INSN (next
), old_max_reg
);
1283 old_max_reg
= max_reg_num ();
1293 /* Simplify if (...) x = 1; else {...} if (x) ...
1294 We recognize this case scanning backwards as well.
1296 TEMP is the assignment to x;
1297 TEMP1 is the label at the head of the second if. */
1298 /* ?? This should call get_condition to find the values being
1299 compared, instead of looking for a COMPARE insn when HAVE_cc0
1300 is not defined. This would allow it to work on the m88k. */
1301 /* ?? This optimization is only safe before cse is run if HAVE_cc0
1302 is not defined and the condition is tested by a separate compare
1303 insn. This is because the code below assumes that the result
1304 of the compare dies in the following branch.
1306 Not only that, but there might be other insns between the
1307 compare and branch whose results are live. Those insns need
1310 A way to fix this is to move the insns at JUMP_LABEL (insn)
1311 to before INSN. If we are running before flow, they will
1312 be deleted if they aren't needed. But this doesn't work
1315 This is really a special-case of jump threading, anyway. The
1316 right thing to do is to replace this and jump threading with
1317 much simpler code in cse.
1319 This code has been turned off in the non-cc0 case in the
1323 else if (this_is_simplejump
1324 /* Safe to skip USE and CLOBBER insns here
1325 since they will not be deleted. */
1326 && (temp
= prev_active_insn (insn
))
1327 && no_labels_between_p (temp
, insn
)
1328 && GET_CODE (temp
) == INSN
1329 && GET_CODE (PATTERN (temp
)) == SET
1330 && GET_CODE (SET_DEST (PATTERN (temp
))) == REG
1331 && CONSTANT_P (SET_SRC (PATTERN (temp
)))
1332 && (temp1
= next_active_insn (JUMP_LABEL (insn
)))
1333 /* If we find that the next value tested is `x'
1334 (TEMP1 is the insn where this happens), win. */
1335 && GET_CODE (temp1
) == INSN
1336 && GET_CODE (PATTERN (temp1
)) == SET
1338 /* Does temp1 `tst' the value of x? */
1339 && SET_SRC (PATTERN (temp1
)) == SET_DEST (PATTERN (temp
))
1340 && SET_DEST (PATTERN (temp1
)) == cc0_rtx
1341 && (temp1
= next_nonnote_insn (temp1
))
1343 /* Does temp1 compare the value of x against zero? */
1344 && GET_CODE (SET_SRC (PATTERN (temp1
))) == COMPARE
1345 && XEXP (SET_SRC (PATTERN (temp1
)), 1) == const0_rtx
1346 && (XEXP (SET_SRC (PATTERN (temp1
)), 0)
1347 == SET_DEST (PATTERN (temp
)))
1348 && GET_CODE (SET_DEST (PATTERN (temp1
))) == REG
1349 && (temp1
= find_next_ref (SET_DEST (PATTERN (temp1
)), temp1
))
1351 && condjump_p (temp1
))
1353 /* Get the if_then_else from the condjump. */
1354 rtx choice
= SET_SRC (PATTERN (temp1
));
1355 if (GET_CODE (choice
) == IF_THEN_ELSE
)
1357 enum rtx_code code
= GET_CODE (XEXP (choice
, 0));
1358 rtx val
= SET_SRC (PATTERN (temp
));
1360 = simplify_relational_operation (code
, GET_MODE (SET_DEST (PATTERN (temp
))),
1364 if (cond
== const_true_rtx
)
1365 ultimate
= XEXP (choice
, 1);
1366 else if (cond
== const0_rtx
)
1367 ultimate
= XEXP (choice
, 2);
1371 if (ultimate
== pc_rtx
)
1372 ultimate
= get_label_after (temp1
);
1373 else if (ultimate
&& GET_CODE (ultimate
) != RETURN
)
1374 ultimate
= XEXP (ultimate
, 0);
1376 if (ultimate
&& JUMP_LABEL(insn
) != ultimate
)
1377 changed
|= redirect_jump (insn
, ultimate
);
1383 /* @@ This needs a bit of work before it will be right.
1385 Any type of comparison can be accepted for the first and
1386 second compare. When rewriting the first jump, we must
1387 compute the what conditions can reach label3, and use the
1388 appropriate code. We can not simply reverse/swap the code
1389 of the first jump. In some cases, the second jump must be
1393 < == converts to > ==
1394 < != converts to == >
1397 If the code is written to only accept an '==' test for the second
1398 compare, then all that needs to be done is to swap the condition
1399 of the first branch.
1401 It is questionable whether we want this optimization anyways,
1402 since if the user wrote code like this because he/she knew that
1403 the jump to label1 is taken most of the time, then rewriting
1404 this gives slower code. */
1405 /* @@ This should call get_condition to find the values being
1406 compared, instead of looking for a COMPARE insn when HAVE_cc0
1407 is not defined. This would allow it to work on the m88k. */
1408 /* @@ This optimization is only safe before cse is run if HAVE_cc0
1409 is not defined and the condition is tested by a separate compare
1410 insn. This is because the code below assumes that the result
1411 of the compare dies in the following branch. */
1413 /* Simplify test a ~= b
1427 where ~= is an inequality, e.g. >, and ~~= is the swapped
1430 We recognize this case scanning backwards.
1432 TEMP is the conditional jump to `label2';
1433 TEMP1 is the test for `a == b';
1434 TEMP2 is the conditional jump to `label1';
1435 TEMP3 is the test for `a ~= b'. */
1436 else if (this_is_simplejump
1437 && (temp
= prev_active_insn (insn
))
1438 && no_labels_between_p (temp
, insn
)
1439 && condjump_p (temp
)
1440 && (temp1
= prev_active_insn (temp
))
1441 && no_labels_between_p (temp1
, temp
)
1442 && GET_CODE (temp1
) == INSN
1443 && GET_CODE (PATTERN (temp1
)) == SET
1445 && sets_cc0_p (PATTERN (temp1
)) == 1
1447 && GET_CODE (SET_SRC (PATTERN (temp1
))) == COMPARE
1448 && GET_CODE (SET_DEST (PATTERN (temp1
))) == REG
1449 && (temp
== find_next_ref (SET_DEST (PATTERN (temp1
)), temp1
))
1451 && (temp2
= prev_active_insn (temp1
))
1452 && no_labels_between_p (temp2
, temp1
)
1453 && condjump_p (temp2
)
1454 && JUMP_LABEL (temp2
) == next_nonnote_insn (NEXT_INSN (insn
))
1455 && (temp3
= prev_active_insn (temp2
))
1456 && no_labels_between_p (temp3
, temp2
)
1457 && GET_CODE (PATTERN (temp3
)) == SET
1458 && rtx_equal_p (SET_DEST (PATTERN (temp3
)),
1459 SET_DEST (PATTERN (temp1
)))
1460 && rtx_equal_p (SET_SRC (PATTERN (temp1
)),
1461 SET_SRC (PATTERN (temp3
)))
1462 && ! inequality_comparisons_p (PATTERN (temp
))
1463 && inequality_comparisons_p (PATTERN (temp2
)))
1465 rtx fallthrough_label
= JUMP_LABEL (temp2
);
1467 ++LABEL_NUSES (fallthrough_label
);
1468 if (swap_jump (temp2
, JUMP_LABEL (insn
)))
1474 if (--LABEL_NUSES (fallthrough_label
) == 0)
1475 delete_insn (fallthrough_label
);
1478 /* Simplify if (...) {... x = 1;} if (x) ...
1480 We recognize this case backwards.
1482 TEMP is the test of `x';
1483 TEMP1 is the assignment to `x' at the end of the
1484 previous statement. */
1485 /* @@ This should call get_condition to find the values being
1486 compared, instead of looking for a COMPARE insn when HAVE_cc0
1487 is not defined. This would allow it to work on the m88k. */
1488 /* @@ This optimization is only safe before cse is run if HAVE_cc0
1489 is not defined and the condition is tested by a separate compare
1490 insn. This is because the code below assumes that the result
1491 of the compare dies in the following branch. */
1493 /* ??? This has to be turned off. The problem is that the
1494 unconditional jump might indirectly end up branching to the
1495 label between TEMP1 and TEMP. We can't detect this, in general,
1496 since it may become a jump to there after further optimizations.
1497 If that jump is done, it will be deleted, so we will retry
1498 this optimization in the next pass, thus an infinite loop.
1500 The present code prevents this by putting the jump after the
1501 label, but this is not logically correct. */
1503 else if (this_is_condjump
1504 /* Safe to skip USE and CLOBBER insns here
1505 since they will not be deleted. */
1506 && (temp
= prev_active_insn (insn
))
1507 && no_labels_between_p (temp
, insn
)
1508 && GET_CODE (temp
) == INSN
1509 && GET_CODE (PATTERN (temp
)) == SET
1511 && sets_cc0_p (PATTERN (temp
)) == 1
1512 && GET_CODE (SET_SRC (PATTERN (temp
))) == REG
1514 /* Temp must be a compare insn, we can not accept a register
1515 to register move here, since it may not be simply a
1517 && GET_CODE (SET_SRC (PATTERN (temp
))) == COMPARE
1518 && XEXP (SET_SRC (PATTERN (temp
)), 1) == const0_rtx
1519 && GET_CODE (XEXP (SET_SRC (PATTERN (temp
)), 0)) == REG
1520 && GET_CODE (SET_DEST (PATTERN (temp
))) == REG
1521 && insn
== find_next_ref (SET_DEST (PATTERN (temp
)), temp
)
1523 /* May skip USE or CLOBBER insns here
1524 for checking for opportunity, since we
1525 take care of them later. */
1526 && (temp1
= prev_active_insn (temp
))
1527 && GET_CODE (temp1
) == INSN
1528 && GET_CODE (PATTERN (temp1
)) == SET
1530 && SET_SRC (PATTERN (temp
)) == SET_DEST (PATTERN (temp1
))
1532 && (XEXP (SET_SRC (PATTERN (temp
)), 0)
1533 == SET_DEST (PATTERN (temp1
)))
1535 && CONSTANT_P (SET_SRC (PATTERN (temp1
)))
1536 /* If this isn't true, cse will do the job. */
1537 && ! no_labels_between_p (temp1
, temp
))
1539 /* Get the if_then_else from the condjump. */
1540 rtx choice
= SET_SRC (PATTERN (insn
));
1541 if (GET_CODE (choice
) == IF_THEN_ELSE
1542 && (GET_CODE (XEXP (choice
, 0)) == EQ
1543 || GET_CODE (XEXP (choice
, 0)) == NE
))
1545 int want_nonzero
= (GET_CODE (XEXP (choice
, 0)) == NE
);
1550 /* Get the place that condjump will jump to
1551 if it is reached from here. */
1552 if ((SET_SRC (PATTERN (temp1
)) != const0_rtx
)
1554 ultimate
= XEXP (choice
, 1);
1556 ultimate
= XEXP (choice
, 2);
1557 /* Get it as a CODE_LABEL. */
1558 if (ultimate
== pc_rtx
)
1559 ultimate
= get_label_after (insn
);
1561 /* Get the label out of the LABEL_REF. */
1562 ultimate
= XEXP (ultimate
, 0);
1564 /* Insert the jump immediately before TEMP, specifically
1565 after the label that is between TEMP1 and TEMP. */
1566 last_insn
= PREV_INSN (temp
);
1568 /* If we would be branching to the next insn, the jump
1569 would immediately be deleted and the re-inserted in
1570 a subsequent pass over the code. So don't do anything
1572 if (next_active_insn (last_insn
)
1573 != next_active_insn (ultimate
))
1575 emit_barrier_after (last_insn
);
1576 p
= emit_jump_insn_after (gen_jump (ultimate
),
1578 JUMP_LABEL (p
) = ultimate
;
1579 ++LABEL_NUSES (ultimate
);
1580 if (INSN_UID (ultimate
) < max_jump_chain
1581 && INSN_CODE (p
) < max_jump_chain
)
1583 jump_chain
[INSN_UID (p
)]
1584 = jump_chain
[INSN_UID (ultimate
)];
1585 jump_chain
[INSN_UID (ultimate
)] = p
;
1593 /* Detect a conditional jump going to the same place
1594 as an immediately following unconditional jump. */
1595 else if (this_is_condjump
1596 && (temp
= next_active_insn (insn
)) != 0
1597 && simplejump_p (temp
)
1598 && (next_active_insn (JUMP_LABEL (insn
))
1599 == next_active_insn (JUMP_LABEL (temp
))))
1603 /* ??? Optional. Disables some optimizations, but makes
1604 gcov output more accurate with -O. */
1605 if (flag_test_coverage
&& !reload_completed
)
1606 for (tem
= insn
; tem
!= temp
; tem
= NEXT_INSN (tem
))
1607 if (GET_CODE (tem
) == NOTE
&& NOTE_LINE_NUMBER (tem
) > 0)
1618 /* Detect a conditional jump jumping over an unconditional trap. */
1620 && this_is_condjump
&& ! this_is_simplejump
1621 && reallabelprev
!= 0
1622 && GET_CODE (reallabelprev
) == INSN
1623 && GET_CODE (PATTERN (reallabelprev
)) == TRAP_IF
1624 && TRAP_CONDITION (PATTERN (reallabelprev
)) == const_true_rtx
1625 && prev_active_insn (reallabelprev
) == insn
1626 && no_labels_between_p (insn
, reallabelprev
)
1627 && (temp2
= get_condition (insn
, &temp4
))
1628 && can_reverse_comparison_p (temp2
, insn
))
1630 rtx
new = gen_cond_trap (reverse_condition (GET_CODE (temp2
)),
1631 XEXP (temp2
, 0), XEXP (temp2
, 1),
1632 TRAP_CODE (PATTERN (reallabelprev
)));
1636 emit_insn_before (new, temp4
);
1637 delete_insn (reallabelprev
);
1643 /* Detect a jump jumping to an unconditional trap. */
1644 else if (HAVE_trap
&& this_is_condjump
1645 && (temp
= next_active_insn (JUMP_LABEL (insn
)))
1646 && GET_CODE (temp
) == INSN
1647 && GET_CODE (PATTERN (temp
)) == TRAP_IF
1648 && (this_is_simplejump
1649 || (temp2
= get_condition (insn
, &temp4
))))
1651 rtx tc
= TRAP_CONDITION (PATTERN (temp
));
1653 if (tc
== const_true_rtx
1654 || (! this_is_simplejump
&& rtx_equal_p (temp2
, tc
)))
1657 /* Replace an unconditional jump to a trap with a trap. */
1658 if (this_is_simplejump
)
1660 emit_barrier_after (emit_insn_before (gen_trap (), insn
));
1665 new = gen_cond_trap (GET_CODE (temp2
), XEXP (temp2
, 0),
1667 TRAP_CODE (PATTERN (temp
)));
1670 emit_insn_before (new, temp4
);
1676 /* If the trap condition and jump condition are mutually
1677 exclusive, redirect the jump to the following insn. */
1678 else if (GET_RTX_CLASS (GET_CODE (tc
)) == '<'
1679 && ! this_is_simplejump
1680 && swap_condition (GET_CODE (temp2
)) == GET_CODE (tc
)
1681 && rtx_equal_p (XEXP (tc
, 0), XEXP (temp2
, 0))
1682 && rtx_equal_p (XEXP (tc
, 1), XEXP (temp2
, 1))
1683 && redirect_jump (insn
, get_label_after (temp
)))
1691 /* Detect a conditional jump jumping over an unconditional jump. */
1693 else if ((this_is_condjump
|| this_is_condjump_in_parallel
)
1694 && ! this_is_simplejump
1695 && reallabelprev
!= 0
1696 && GET_CODE (reallabelprev
) == JUMP_INSN
1697 && prev_active_insn (reallabelprev
) == insn
1698 && no_labels_between_p (insn
, reallabelprev
)
1699 && simplejump_p (reallabelprev
))
1701 /* When we invert the unconditional jump, we will be
1702 decrementing the usage count of its old label.
1703 Make sure that we don't delete it now because that
1704 might cause the following code to be deleted. */
1705 rtx prev_uses
= prev_nonnote_insn (reallabelprev
);
1706 rtx prev_label
= JUMP_LABEL (insn
);
1709 ++LABEL_NUSES (prev_label
);
1711 if (invert_jump (insn
, JUMP_LABEL (reallabelprev
)))
1713 /* It is very likely that if there are USE insns before
1714 this jump, they hold REG_DEAD notes. These REG_DEAD
1715 notes are no longer valid due to this optimization,
1716 and will cause the life-analysis that following passes
1717 (notably delayed-branch scheduling) to think that
1718 these registers are dead when they are not.
1720 To prevent this trouble, we just remove the USE insns
1721 from the insn chain. */
1723 while (prev_uses
&& GET_CODE (prev_uses
) == INSN
1724 && GET_CODE (PATTERN (prev_uses
)) == USE
)
1726 rtx useless
= prev_uses
;
1727 prev_uses
= prev_nonnote_insn (prev_uses
);
1728 delete_insn (useless
);
1731 delete_insn (reallabelprev
);
1736 /* We can now safely delete the label if it is unreferenced
1737 since the delete_insn above has deleted the BARRIER. */
1738 if (prev_label
&& --LABEL_NUSES (prev_label
) == 0)
1739 delete_insn (prev_label
);
1744 /* Detect a jump to a jump. */
1746 nlabel
= follow_jumps (JUMP_LABEL (insn
));
1747 if (nlabel
!= JUMP_LABEL (insn
)
1748 && redirect_jump (insn
, nlabel
))
1754 /* Look for if (foo) bar; else break; */
1755 /* The insns look like this:
1756 insn = condjump label1;
1757 ...range1 (some insns)...
1760 ...range2 (some insns)...
1761 jump somewhere unconditionally
1764 rtx label1
= next_label (insn
);
1765 rtx range1end
= label1
? prev_active_insn (label1
) : 0;
1766 /* Don't do this optimization on the first round, so that
1767 jump-around-a-jump gets simplified before we ask here
1768 whether a jump is unconditional.
1770 Also don't do it when we are called after reload since
1771 it will confuse reorg. */
1773 && (reload_completed
? ! flag_delayed_branch
: 1)
1774 /* Make sure INSN is something we can invert. */
1775 && condjump_p (insn
)
1777 && JUMP_LABEL (insn
) == label1
1778 && LABEL_NUSES (label1
) == 1
1779 && GET_CODE (range1end
) == JUMP_INSN
1780 && simplejump_p (range1end
))
1782 rtx label2
= next_label (label1
);
1783 rtx range2end
= label2
? prev_active_insn (label2
) : 0;
1784 if (range1end
!= range2end
1785 && JUMP_LABEL (range1end
) == label2
1786 && GET_CODE (range2end
) == JUMP_INSN
1787 && GET_CODE (NEXT_INSN (range2end
)) == BARRIER
1788 /* Invert the jump condition, so we
1789 still execute the same insns in each case. */
1790 && invert_jump (insn
, label1
))
1792 rtx range1beg
= next_active_insn (insn
);
1793 rtx range2beg
= next_active_insn (label1
);
1794 rtx range1after
, range2after
;
1795 rtx range1before
, range2before
;
1798 /* Include in each range any notes before it, to be
1799 sure that we get the line number note if any, even
1800 if there are other notes here. */
1801 while (PREV_INSN (range1beg
)
1802 && GET_CODE (PREV_INSN (range1beg
)) == NOTE
)
1803 range1beg
= PREV_INSN (range1beg
);
1805 while (PREV_INSN (range2beg
)
1806 && GET_CODE (PREV_INSN (range2beg
)) == NOTE
)
1807 range2beg
= PREV_INSN (range2beg
);
1809 /* Don't move NOTEs for blocks or loops; shift them
1810 outside the ranges, where they'll stay put. */
1811 range1beg
= squeeze_notes (range1beg
, range1end
);
1812 range2beg
= squeeze_notes (range2beg
, range2end
);
1814 /* Get current surrounds of the 2 ranges. */
1815 range1before
= PREV_INSN (range1beg
);
1816 range2before
= PREV_INSN (range2beg
);
1817 range1after
= NEXT_INSN (range1end
);
1818 range2after
= NEXT_INSN (range2end
);
1820 /* Splice range2 where range1 was. */
1821 NEXT_INSN (range1before
) = range2beg
;
1822 PREV_INSN (range2beg
) = range1before
;
1823 NEXT_INSN (range2end
) = range1after
;
1824 PREV_INSN (range1after
) = range2end
;
1825 /* Splice range1 where range2 was. */
1826 NEXT_INSN (range2before
) = range1beg
;
1827 PREV_INSN (range1beg
) = range2before
;
1828 NEXT_INSN (range1end
) = range2after
;
1829 PREV_INSN (range2after
) = range1end
;
1831 /* Check for a loop end note between the end of
1832 range2, and the next code label. If there is one,
1833 then what we have really seen is
1834 if (foo) break; end_of_loop;
1835 and moved the break sequence outside the loop.
1836 We must move the LOOP_END note to where the
1837 loop really ends now, or we will confuse loop
1838 optimization. Stop if we find a LOOP_BEG note
1839 first, since we don't want to move the LOOP_END
1840 note in that case. */
1841 for (;range2after
!= label2
; range2after
= rangenext
)
1843 rangenext
= NEXT_INSN (range2after
);
1844 if (GET_CODE (range2after
) == NOTE
)
1846 if (NOTE_LINE_NUMBER (range2after
)
1847 == NOTE_INSN_LOOP_END
)
1849 NEXT_INSN (PREV_INSN (range2after
))
1851 PREV_INSN (rangenext
)
1852 = PREV_INSN (range2after
);
1853 PREV_INSN (range2after
)
1854 = PREV_INSN (range1beg
);
1855 NEXT_INSN (range2after
) = range1beg
;
1856 NEXT_INSN (PREV_INSN (range1beg
))
1858 PREV_INSN (range1beg
) = range2after
;
1860 else if (NOTE_LINE_NUMBER (range2after
)
1861 == NOTE_INSN_LOOP_BEG
)
1871 /* Now that the jump has been tensioned,
1872 try cross jumping: check for identical code
1873 before the jump and before its target label. */
1875 /* First, cross jumping of conditional jumps: */
1877 if (cross_jump
&& condjump_p (insn
))
1879 rtx newjpos
, newlpos
;
1880 rtx x
= prev_real_insn (JUMP_LABEL (insn
));
1882 /* A conditional jump may be crossjumped
1883 only if the place it jumps to follows
1884 an opposing jump that comes back here. */
1886 if (x
!= 0 && ! jump_back_p (x
, insn
))
1887 /* We have no opposing jump;
1888 cannot cross jump this insn. */
1892 /* TARGET is nonzero if it is ok to cross jump
1893 to code before TARGET. If so, see if matches. */
1895 find_cross_jump (insn
, x
, 2,
1896 &newjpos
, &newlpos
);
1900 do_cross_jump (insn
, newjpos
, newlpos
);
1901 /* Make the old conditional jump
1902 into an unconditional one. */
1903 SET_SRC (PATTERN (insn
))
1904 = gen_rtx_LABEL_REF (VOIDmode
, JUMP_LABEL (insn
));
1905 INSN_CODE (insn
) = -1;
1906 emit_barrier_after (insn
);
1907 /* Add to jump_chain unless this is a new label
1908 whose UID is too large. */
1909 if (INSN_UID (JUMP_LABEL (insn
)) < max_jump_chain
)
1911 jump_chain
[INSN_UID (insn
)]
1912 = jump_chain
[INSN_UID (JUMP_LABEL (insn
))];
1913 jump_chain
[INSN_UID (JUMP_LABEL (insn
))] = insn
;
1920 /* Cross jumping of unconditional jumps:
1921 a few differences. */
1923 if (cross_jump
&& simplejump_p (insn
))
1925 rtx newjpos
, newlpos
;
1930 /* TARGET is nonzero if it is ok to cross jump
1931 to code before TARGET. If so, see if matches. */
1932 find_cross_jump (insn
, JUMP_LABEL (insn
), 1,
1933 &newjpos
, &newlpos
);
1935 /* If cannot cross jump to code before the label,
1936 see if we can cross jump to another jump to
1938 /* Try each other jump to this label. */
1939 if (INSN_UID (JUMP_LABEL (insn
)) < max_uid
)
1940 for (target
= jump_chain
[INSN_UID (JUMP_LABEL (insn
))];
1941 target
!= 0 && newjpos
== 0;
1942 target
= jump_chain
[INSN_UID (target
)])
1944 && JUMP_LABEL (target
) == JUMP_LABEL (insn
)
1945 /* Ignore TARGET if it's deleted. */
1946 && ! INSN_DELETED_P (target
))
1947 find_cross_jump (insn
, target
, 2,
1948 &newjpos
, &newlpos
);
1952 do_cross_jump (insn
, newjpos
, newlpos
);
1958 /* This code was dead in the previous jump.c! */
1959 if (cross_jump
&& GET_CODE (PATTERN (insn
)) == RETURN
)
1961 /* Return insns all "jump to the same place"
1962 so we can cross-jump between any two of them. */
1964 rtx newjpos
, newlpos
, target
;
1968 /* If cannot cross jump to code before the label,
1969 see if we can cross jump to another jump to
1971 /* Try each other jump to this label. */
1972 for (target
= jump_chain
[0];
1973 target
!= 0 && newjpos
== 0;
1974 target
= jump_chain
[INSN_UID (target
)])
1976 && ! INSN_DELETED_P (target
)
1977 && GET_CODE (PATTERN (target
)) == RETURN
)
1978 find_cross_jump (insn
, target
, 2,
1979 &newjpos
, &newlpos
);
1983 do_cross_jump (insn
, newjpos
, newlpos
);
1994 /* Delete extraneous line number notes.
1995 Note that two consecutive notes for different lines are not really
1996 extraneous. There should be some indication where that line belonged,
1997 even if it became empty. */
2002 for (insn
= f
; insn
; insn
= NEXT_INSN (insn
))
2003 if (GET_CODE (insn
) == NOTE
&& NOTE_LINE_NUMBER (insn
) >= 0)
2005 /* Delete this note if it is identical to previous note. */
2007 && NOTE_SOURCE_FILE (insn
) == NOTE_SOURCE_FILE (last_note
)
2008 && NOTE_LINE_NUMBER (insn
) == NOTE_LINE_NUMBER (last_note
))
2021 /* If we fall through to the epilogue, see if we can insert a RETURN insn
2022 in front of it. If the machine allows it at this point (we might be
2023 after reload for a leaf routine), it will improve optimization for it
2024 to be there. We do this both here and at the start of this pass since
2025 the RETURN might have been deleted by some of our optimizations. */
2026 insn
= get_last_insn ();
2027 while (insn
&& GET_CODE (insn
) == NOTE
)
2028 insn
= PREV_INSN (insn
);
2030 if (insn
&& GET_CODE (insn
) != BARRIER
)
2032 emit_jump_insn (gen_return ());
2038 can_reach_end
= calculate_can_reach_end (last_insn
, 0, 1);
2040 /* Show JUMP_CHAIN no longer valid. */
2044 /* Initialize LABEL_NUSES and JUMP_LABEL fields. Delete any REG_LABEL
2045 notes whose labels don't occur in the insn any more. Returns the
2046 largest INSN_UID found. */
2051 int largest_uid
= 0;
2054 for (insn
= f
; insn
; insn
= NEXT_INSN (insn
))
2056 if (GET_CODE (insn
) == CODE_LABEL
)
2057 LABEL_NUSES (insn
) = (LABEL_PRESERVE_P (insn
) != 0);
2058 else if (GET_CODE (insn
) == JUMP_INSN
)
2059 JUMP_LABEL (insn
) = 0;
2060 else if (GET_CODE (insn
) == INSN
|| GET_CODE (insn
) == CALL_INSN
)
2064 for (note
= REG_NOTES (insn
); note
; note
= next
)
2066 next
= XEXP (note
, 1);
2067 if (REG_NOTE_KIND (note
) == REG_LABEL
2068 && ! reg_mentioned_p (XEXP (note
, 0), PATTERN (insn
)))
2069 remove_note (insn
, note
);
2072 if (INSN_UID (insn
) > largest_uid
)
2073 largest_uid
= INSN_UID (insn
);
2079 /* Delete insns following barriers, up to next label.
2081 Also delete no-op jumps created by gcse. */
2083 delete_barrier_successors (f
)
2088 for (insn
= f
; insn
;)
2090 if (GET_CODE (insn
) == BARRIER
)
2092 insn
= NEXT_INSN (insn
);
2093 while (insn
!= 0 && GET_CODE (insn
) != CODE_LABEL
)
2095 if (GET_CODE (insn
) == NOTE
2096 && NOTE_LINE_NUMBER (insn
) != NOTE_INSN_FUNCTION_END
)
2097 insn
= NEXT_INSN (insn
);
2099 insn
= delete_insn (insn
);
2101 /* INSN is now the code_label. */
2103 /* Also remove (set (pc) (pc)) insns which can be created by
2104 gcse. We eliminate such insns now to avoid having them
2105 cause problems later. */
2106 else if (GET_CODE (insn
) == JUMP_INSN
2107 && SET_SRC (PATTERN (insn
)) == pc_rtx
2108 && SET_DEST (PATTERN (insn
)) == pc_rtx
)
2109 insn
= delete_insn (insn
);
2112 insn
= NEXT_INSN (insn
);
2116 /* Mark the label each jump jumps to.
2117 Combine consecutive labels, and count uses of labels.
2119 For each label, make a chain (using `jump_chain')
2120 of all the *unconditional* jumps that jump to it;
2121 also make a chain of all returns.
2123 CROSS_JUMP indicates whether we are doing cross jumping
2124 and if we are whether we will be paying attention to
2125 death notes or not. */
2128 mark_all_labels (f
, cross_jump
)
2134 for (insn
= f
; insn
; insn
= NEXT_INSN (insn
))
2135 if (GET_RTX_CLASS (GET_CODE (insn
)) == 'i')
2137 mark_jump_label (PATTERN (insn
), insn
, cross_jump
);
2138 if (! INSN_DELETED_P (insn
) && GET_CODE (insn
) == JUMP_INSN
)
2140 if (JUMP_LABEL (insn
) != 0 && simplejump_p (insn
))
2142 jump_chain
[INSN_UID (insn
)]
2143 = jump_chain
[INSN_UID (JUMP_LABEL (insn
))];
2144 jump_chain
[INSN_UID (JUMP_LABEL (insn
))] = insn
;
2146 if (GET_CODE (PATTERN (insn
)) == RETURN
)
2148 jump_chain
[INSN_UID (insn
)] = jump_chain
[0];
2149 jump_chain
[0] = insn
;
2155 /* Delete all labels already not referenced.
2156 Also find and return the last insn. */
2159 delete_unreferenced_labels (f
)
2162 rtx final
= NULL_RTX
;
2165 for (insn
= f
; insn
; )
2167 if (GET_CODE (insn
) == CODE_LABEL
&& LABEL_NUSES (insn
) == 0)
2168 insn
= delete_insn (insn
);
2172 insn
= NEXT_INSN (insn
);
2179 /* Delete various simple forms of moves which have no necessary
2183 delete_noop_moves (f
)
2188 for (insn
= f
; insn
; )
2190 next
= NEXT_INSN (insn
);
2192 if (GET_CODE (insn
) == INSN
)
2194 register rtx body
= PATTERN (insn
);
2196 /* Combine stack_adjusts with following push_insns. */
2197 #ifdef PUSH_ROUNDING
2198 if (GET_CODE (body
) == SET
2199 && SET_DEST (body
) == stack_pointer_rtx
2200 && GET_CODE (SET_SRC (body
)) == PLUS
2201 && XEXP (SET_SRC (body
), 0) == stack_pointer_rtx
2202 && GET_CODE (XEXP (SET_SRC (body
), 1)) == CONST_INT
2203 && INTVAL (XEXP (SET_SRC (body
), 1)) > 0)
2206 rtx stack_adjust_insn
= insn
;
2207 int stack_adjust_amount
= INTVAL (XEXP (SET_SRC (body
), 1));
2208 int total_pushed
= 0;
2211 /* Find all successive push insns. */
2213 /* Don't convert more than three pushes;
2214 that starts adding too many displaced addresses
2215 and the whole thing starts becoming a losing
2220 p
= next_nonnote_insn (p
);
2221 if (p
== 0 || GET_CODE (p
) != INSN
)
2223 pbody
= PATTERN (p
);
2224 if (GET_CODE (pbody
) != SET
)
2226 dest
= SET_DEST (pbody
);
2227 /* Allow a no-op move between the adjust and the push. */
2228 if (GET_CODE (dest
) == REG
2229 && GET_CODE (SET_SRC (pbody
)) == REG
2230 && REGNO (dest
) == REGNO (SET_SRC (pbody
)))
2232 if (! (GET_CODE (dest
) == MEM
2233 && GET_CODE (XEXP (dest
, 0)) == POST_INC
2234 && XEXP (XEXP (dest
, 0), 0) == stack_pointer_rtx
))
2237 if (total_pushed
+ GET_MODE_SIZE (GET_MODE (SET_DEST (pbody
)))
2238 > stack_adjust_amount
)
2240 total_pushed
+= GET_MODE_SIZE (GET_MODE (SET_DEST (pbody
)));
2243 /* Discard the amount pushed from the stack adjust;
2244 maybe eliminate it entirely. */
2245 if (total_pushed
>= stack_adjust_amount
)
2247 delete_computation (stack_adjust_insn
);
2248 total_pushed
= stack_adjust_amount
;
2251 XEXP (SET_SRC (PATTERN (stack_adjust_insn
)), 1)
2252 = GEN_INT (stack_adjust_amount
- total_pushed
);
2254 /* Change the appropriate push insns to ordinary stores. */
2256 while (total_pushed
> 0)
2259 p
= next_nonnote_insn (p
);
2260 if (GET_CODE (p
) != INSN
)
2262 pbody
= PATTERN (p
);
2263 if (GET_CODE (pbody
) != SET
)
2265 dest
= SET_DEST (pbody
);
2266 /* Allow a no-op move between the adjust and the push. */
2267 if (GET_CODE (dest
) == REG
2268 && GET_CODE (SET_SRC (pbody
)) == REG
2269 && REGNO (dest
) == REGNO (SET_SRC (pbody
)))
2271 if (! (GET_CODE (dest
) == MEM
2272 && GET_CODE (XEXP (dest
, 0)) == POST_INC
2273 && XEXP (XEXP (dest
, 0), 0) == stack_pointer_rtx
))
2275 total_pushed
-= GET_MODE_SIZE (GET_MODE (SET_DEST (pbody
)));
2276 /* If this push doesn't fully fit in the space
2277 of the stack adjust that we deleted,
2278 make another stack adjust here for what we
2279 didn't use up. There should be peepholes
2280 to recognize the resulting sequence of insns. */
2281 if (total_pushed
< 0)
2283 emit_insn_before (gen_add2_insn (stack_pointer_rtx
,
2284 GEN_INT (- total_pushed
)),
2289 = plus_constant (stack_pointer_rtx
, total_pushed
);
2294 /* Detect and delete no-op move instructions
2295 resulting from not allocating a parameter in a register. */
2297 if (GET_CODE (body
) == SET
2298 && (SET_DEST (body
) == SET_SRC (body
)
2299 || (GET_CODE (SET_DEST (body
)) == MEM
2300 && GET_CODE (SET_SRC (body
)) == MEM
2301 && rtx_equal_p (SET_SRC (body
), SET_DEST (body
))))
2302 && ! (GET_CODE (SET_DEST (body
)) == MEM
2303 && MEM_VOLATILE_P (SET_DEST (body
)))
2304 && ! (GET_CODE (SET_SRC (body
)) == MEM
2305 && MEM_VOLATILE_P (SET_SRC (body
))))
2306 delete_computation (insn
);
2308 /* Detect and ignore no-op move instructions
2309 resulting from smart or fortuitous register allocation. */
2311 else if (GET_CODE (body
) == SET
)
2313 int sreg
= true_regnum (SET_SRC (body
));
2314 int dreg
= true_regnum (SET_DEST (body
));
2316 if (sreg
== dreg
&& sreg
>= 0)
2318 else if (sreg
>= 0 && dreg
>= 0)
2321 rtx tem
= find_equiv_reg (NULL_RTX
, insn
, 0,
2322 sreg
, NULL_PTR
, dreg
,
2323 GET_MODE (SET_SRC (body
)));
2326 && GET_MODE (tem
) == GET_MODE (SET_DEST (body
)))
2328 /* DREG may have been the target of a REG_DEAD note in
2329 the insn which makes INSN redundant. If so, reorg
2330 would still think it is dead. So search for such a
2331 note and delete it if we find it. */
2332 if (! find_regno_note (insn
, REG_UNUSED
, dreg
))
2333 for (trial
= prev_nonnote_insn (insn
);
2334 trial
&& GET_CODE (trial
) != CODE_LABEL
;
2335 trial
= prev_nonnote_insn (trial
))
2336 if (find_regno_note (trial
, REG_DEAD
, dreg
))
2338 remove_death (dreg
, trial
);
2342 /* Deleting insn could lose a death-note for SREG. */
2343 if ((trial
= find_regno_note (insn
, REG_DEAD
, sreg
)))
2345 /* Change this into a USE so that we won't emit
2346 code for it, but still can keep the note. */
2348 = gen_rtx_USE (VOIDmode
, XEXP (trial
, 0));
2349 INSN_CODE (insn
) = -1;
2350 /* Remove all reg notes but the REG_DEAD one. */
2351 REG_NOTES (insn
) = trial
;
2352 XEXP (trial
, 1) = NULL_RTX
;
2358 else if (dreg
>= 0 && CONSTANT_P (SET_SRC (body
))
2359 && find_equiv_reg (SET_SRC (body
), insn
, 0, dreg
,
2361 GET_MODE (SET_DEST (body
))))
2363 /* This handles the case where we have two consecutive
2364 assignments of the same constant to pseudos that didn't
2365 get a hard reg. Each SET from the constant will be
2366 converted into a SET of the spill register and an
2367 output reload will be made following it. This produces
2368 two loads of the same constant into the same spill
2373 /* Look back for a death note for the first reg.
2374 If there is one, it is no longer accurate. */
2375 while (in_insn
&& GET_CODE (in_insn
) != CODE_LABEL
)
2377 if ((GET_CODE (in_insn
) == INSN
2378 || GET_CODE (in_insn
) == JUMP_INSN
)
2379 && find_regno_note (in_insn
, REG_DEAD
, dreg
))
2381 remove_death (dreg
, in_insn
);
2384 in_insn
= PREV_INSN (in_insn
);
2387 /* Delete the second load of the value. */
2391 else if (GET_CODE (body
) == PARALLEL
)
2393 /* If each part is a set between two identical registers or
2394 a USE or CLOBBER, delete the insn. */
2398 for (i
= XVECLEN (body
, 0) - 1; i
>= 0; i
--)
2400 tem
= XVECEXP (body
, 0, i
);
2401 if (GET_CODE (tem
) == USE
|| GET_CODE (tem
) == CLOBBER
)
2404 if (GET_CODE (tem
) != SET
2405 || (sreg
= true_regnum (SET_SRC (tem
))) < 0
2406 || (dreg
= true_regnum (SET_DEST (tem
))) < 0
2414 /* Also delete insns to store bit fields if they are no-ops. */
2415 /* Not worth the hair to detect this in the big-endian case. */
2416 else if (! BYTES_BIG_ENDIAN
2417 && GET_CODE (body
) == SET
2418 && GET_CODE (SET_DEST (body
)) == ZERO_EXTRACT
2419 && XEXP (SET_DEST (body
), 2) == const0_rtx
2420 && XEXP (SET_DEST (body
), 0) == SET_SRC (body
)
2421 && ! (GET_CODE (SET_SRC (body
)) == MEM
2422 && MEM_VOLATILE_P (SET_SRC (body
))))
2429 /* See if there is still a NOTE_INSN_FUNCTION_END in this function.
2430 If so indicate that this function can drop off the end by returning
2433 CHECK_DELETED indicates whether we must check if the note being
2434 searched for has the deleted flag set.
2436 DELETE_FINAL_NOTE indicates whether we should delete the note
2440 calculate_can_reach_end (last
, check_deleted
, delete_final_note
)
2443 int delete_final_note
;
2448 while (insn
!= NULL_RTX
)
2452 /* One label can follow the end-note: the return label. */
2453 if (GET_CODE (insn
) == CODE_LABEL
&& n_labels
-- > 0)
2455 /* Ordinary insns can follow it if returning a structure. */
2456 else if (GET_CODE (insn
) == INSN
)
2458 /* If machine uses explicit RETURN insns, no epilogue,
2459 then one of them follows the note. */
2460 else if (GET_CODE (insn
) == JUMP_INSN
2461 && GET_CODE (PATTERN (insn
)) == RETURN
)
2463 /* A barrier can follow the return insn. */
2464 else if (GET_CODE (insn
) == BARRIER
)
2466 /* Other kinds of notes can follow also. */
2467 else if (GET_CODE (insn
) == NOTE
2468 && NOTE_LINE_NUMBER (insn
) != NOTE_INSN_FUNCTION_END
)
2474 insn
= PREV_INSN (insn
);
2477 /* See if we backed up to the appropriate type of note. */
2478 if (insn
!= NULL_RTX
2479 && GET_CODE (insn
) == NOTE
2480 && NOTE_LINE_NUMBER (insn
) == NOTE_INSN_FUNCTION_END
2481 && (check_deleted
== 0
2482 || ! INSN_DELETED_P (insn
)))
2484 if (delete_final_note
)
2492 /* LOOP_START is a NOTE_INSN_LOOP_BEG note that is followed by an unconditional
2493 jump. Assume that this unconditional jump is to the exit test code. If
2494 the code is sufficiently simple, make a copy of it before INSN,
2495 followed by a jump to the exit of the loop. Then delete the unconditional
2498 Return 1 if we made the change, else 0.
2500 This is only safe immediately after a regscan pass because it uses the
2501 values of regno_first_uid and regno_last_uid. */
2504 duplicate_loop_exit_test (loop_start
)
2507 rtx insn
, set
, reg
, p
, link
;
2510 rtx exitcode
= NEXT_INSN (JUMP_LABEL (next_nonnote_insn (loop_start
)));
2512 int max_reg
= max_reg_num ();
2515 /* Scan the exit code. We do not perform this optimization if any insn:
2519 has a REG_RETVAL or REG_LIBCALL note (hard to adjust)
2520 is a NOTE_INSN_LOOP_BEG because this means we have a nested loop
2521 is a NOTE_INSN_BLOCK_{BEG,END} because duplicating these notes
2524 We also do not do this if we find an insn with ASM_OPERANDS. While
2525 this restriction should not be necessary, copying an insn with
2526 ASM_OPERANDS can confuse asm_noperands in some cases.
2528 Also, don't do this if the exit code is more than 20 insns. */
2530 for (insn
= exitcode
;
2532 && ! (GET_CODE (insn
) == NOTE
2533 && NOTE_LINE_NUMBER (insn
) == NOTE_INSN_LOOP_END
);
2534 insn
= NEXT_INSN (insn
))
2536 switch (GET_CODE (insn
))
2542 /* We could be in front of the wrong NOTE_INSN_LOOP_END if there is
2543 a jump immediately after the loop start that branches outside
2544 the loop but within an outer loop, near the exit test.
2545 If we copied this exit test and created a phony
2546 NOTE_INSN_LOOP_VTOP, this could make instructions immediately
2547 before the exit test look like these could be safely moved
2548 out of the loop even if they actually may be never executed.
2549 This can be avoided by checking here for NOTE_INSN_LOOP_CONT. */
2551 if (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_LOOP_BEG
2552 || NOTE_LINE_NUMBER (insn
) == NOTE_INSN_LOOP_CONT
)
2556 && (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_BLOCK_BEG
2557 || NOTE_LINE_NUMBER (insn
) == NOTE_INSN_BLOCK_END
))
2558 /* If we were to duplicate this code, we would not move
2559 the BLOCK notes, and so debugging the moved code would
2560 be difficult. Thus, we only move the code with -O2 or
2567 /* The code below would grossly mishandle REG_WAS_0 notes,
2568 so get rid of them here. */
2569 while ((p
= find_reg_note (insn
, REG_WAS_0
, NULL_RTX
)) != 0)
2570 remove_note (insn
, p
);
2571 if (++num_insns
> 20
2572 || find_reg_note (insn
, REG_RETVAL
, NULL_RTX
)
2573 || find_reg_note (insn
, REG_LIBCALL
, NULL_RTX
)
2574 || asm_noperands (PATTERN (insn
)) > 0)
2582 /* Unless INSN is zero, we can do the optimization. */
2588 /* See if any insn sets a register only used in the loop exit code and
2589 not a user variable. If so, replace it with a new register. */
2590 for (insn
= exitcode
; insn
!= lastexit
; insn
= NEXT_INSN (insn
))
2591 if (GET_CODE (insn
) == INSN
2592 && (set
= single_set (insn
)) != 0
2593 && ((reg
= SET_DEST (set
), GET_CODE (reg
) == REG
)
2594 || (GET_CODE (reg
) == SUBREG
2595 && (reg
= SUBREG_REG (reg
), GET_CODE (reg
) == REG
)))
2596 && REGNO (reg
) >= FIRST_PSEUDO_REGISTER
2597 && REGNO_FIRST_UID (REGNO (reg
)) == INSN_UID (insn
))
2599 for (p
= NEXT_INSN (insn
); p
!= lastexit
; p
= NEXT_INSN (p
))
2600 if (REGNO_LAST_UID (REGNO (reg
)) == INSN_UID (p
))
2605 /* We can do the replacement. Allocate reg_map if this is the
2606 first replacement we found. */
2609 reg_map
= (rtx
*) alloca (max_reg
* sizeof (rtx
));
2610 bzero ((char *) reg_map
, max_reg
* sizeof (rtx
));
2613 REG_LOOP_TEST_P (reg
) = 1;
2615 reg_map
[REGNO (reg
)] = gen_reg_rtx (GET_MODE (reg
));
2619 /* Now copy each insn. */
2620 for (insn
= exitcode
; insn
!= lastexit
; insn
= NEXT_INSN (insn
))
2621 switch (GET_CODE (insn
))
2624 copy
= emit_barrier_before (loop_start
);
2627 /* Only copy line-number notes. */
2628 if (NOTE_LINE_NUMBER (insn
) >= 0)
2630 copy
= emit_note_before (NOTE_LINE_NUMBER (insn
), loop_start
);
2631 NOTE_SOURCE_FILE (copy
) = NOTE_SOURCE_FILE (insn
);
2636 copy
= emit_insn_before (copy_rtx (PATTERN (insn
)), loop_start
);
2638 replace_regs (PATTERN (copy
), reg_map
, max_reg
, 1);
2640 mark_jump_label (PATTERN (copy
), copy
, 0);
2642 /* Copy all REG_NOTES except REG_LABEL since mark_jump_label will
2644 for (link
= REG_NOTES (insn
); link
; link
= XEXP (link
, 1))
2645 if (REG_NOTE_KIND (link
) != REG_LABEL
)
2647 = copy_rtx (gen_rtx_EXPR_LIST (REG_NOTE_KIND (link
),
2650 if (reg_map
&& REG_NOTES (copy
))
2651 replace_regs (REG_NOTES (copy
), reg_map
, max_reg
, 1);
2655 copy
= emit_jump_insn_before (copy_rtx (PATTERN (insn
)), loop_start
);
2657 replace_regs (PATTERN (copy
), reg_map
, max_reg
, 1);
2658 mark_jump_label (PATTERN (copy
), copy
, 0);
2659 if (REG_NOTES (insn
))
2661 REG_NOTES (copy
) = copy_rtx (REG_NOTES (insn
));
2663 replace_regs (REG_NOTES (copy
), reg_map
, max_reg
, 1);
2666 /* If this is a simple jump, add it to the jump chain. */
2668 if (INSN_UID (copy
) < max_jump_chain
&& JUMP_LABEL (copy
)
2669 && simplejump_p (copy
))
2671 jump_chain
[INSN_UID (copy
)]
2672 = jump_chain
[INSN_UID (JUMP_LABEL (copy
))];
2673 jump_chain
[INSN_UID (JUMP_LABEL (copy
))] = copy
;
2681 /* Now clean up by emitting a jump to the end label and deleting the jump
2682 at the start of the loop. */
2683 if (! copy
|| GET_CODE (copy
) != BARRIER
)
2685 copy
= emit_jump_insn_before (gen_jump (get_label_after (insn
)),
2687 mark_jump_label (PATTERN (copy
), copy
, 0);
2688 if (INSN_UID (copy
) < max_jump_chain
2689 && INSN_UID (JUMP_LABEL (copy
)) < max_jump_chain
)
2691 jump_chain
[INSN_UID (copy
)]
2692 = jump_chain
[INSN_UID (JUMP_LABEL (copy
))];
2693 jump_chain
[INSN_UID (JUMP_LABEL (copy
))] = copy
;
2695 emit_barrier_before (loop_start
);
2698 /* Mark the exit code as the virtual top of the converted loop. */
2699 emit_note_before (NOTE_INSN_LOOP_VTOP
, exitcode
);
2701 delete_insn (next_nonnote_insn (loop_start
));
2706 /* Move all block-beg, block-end, loop-beg, loop-cont, loop-vtop, and
2707 loop-end notes between START and END out before START. Assume that
2708 END is not such a note. START may be such a note. Returns the value
2709 of the new starting insn, which may be different if the original start
2713 squeeze_notes (start
, end
)
2719 for (insn
= start
; insn
!= end
; insn
= next
)
2721 next
= NEXT_INSN (insn
);
2722 if (GET_CODE (insn
) == NOTE
2723 && (NOTE_LINE_NUMBER (insn
) == NOTE_INSN_BLOCK_END
2724 || NOTE_LINE_NUMBER (insn
) == NOTE_INSN_BLOCK_BEG
2725 || NOTE_LINE_NUMBER (insn
) == NOTE_INSN_LOOP_BEG
2726 || NOTE_LINE_NUMBER (insn
) == NOTE_INSN_LOOP_END
2727 || NOTE_LINE_NUMBER (insn
) == NOTE_INSN_LOOP_CONT
2728 || NOTE_LINE_NUMBER (insn
) == NOTE_INSN_LOOP_VTOP
))
2734 rtx prev
= PREV_INSN (insn
);
2735 PREV_INSN (insn
) = PREV_INSN (start
);
2736 NEXT_INSN (insn
) = start
;
2737 NEXT_INSN (PREV_INSN (insn
)) = insn
;
2738 PREV_INSN (NEXT_INSN (insn
)) = insn
;
2739 NEXT_INSN (prev
) = next
;
2740 PREV_INSN (next
) = prev
;
2748 /* Compare the instructions before insn E1 with those before E2
2749 to find an opportunity for cross jumping.
2750 (This means detecting identical sequences of insns followed by
2751 jumps to the same place, or followed by a label and a jump
2752 to that label, and replacing one with a jump to the other.)
2754 Assume E1 is a jump that jumps to label E2
2755 (that is not always true but it might as well be).
2756 Find the longest possible equivalent sequences
2757 and store the first insns of those sequences into *F1 and *F2.
2758 Store zero there if no equivalent preceding instructions are found.
2760 We give up if we find a label in stream 1.
2761 Actually we could transfer that label into stream 2. */
2764 find_cross_jump (e1
, e2
, minimum
, f1
, f2
)
2769 register rtx i1
= e1
, i2
= e2
;
2770 register rtx p1
, p2
;
2773 rtx last1
= 0, last2
= 0;
2774 rtx afterlast1
= 0, afterlast2
= 0;
2781 i1
= prev_nonnote_insn (i1
);
2783 i2
= PREV_INSN (i2
);
2784 while (i2
&& (GET_CODE (i2
) == NOTE
|| GET_CODE (i2
) == CODE_LABEL
))
2785 i2
= PREV_INSN (i2
);
2790 /* Don't allow the range of insns preceding E1 or E2
2791 to include the other (E2 or E1). */
2792 if (i2
== e1
|| i1
== e2
)
2795 /* If we will get to this code by jumping, those jumps will be
2796 tensioned to go directly to the new label (before I2),
2797 so this cross-jumping won't cost extra. So reduce the minimum. */
2798 if (GET_CODE (i1
) == CODE_LABEL
)
2804 if (i2
== 0 || GET_CODE (i1
) != GET_CODE (i2
))
2807 /* Avoid moving insns across EH regions if either of the insns
2810 && (asynchronous_exceptions
|| GET_CODE (i1
) == CALL_INSN
)
2811 && !in_same_eh_region (i1
, i2
))
2817 /* If this is a CALL_INSN, compare register usage information.
2818 If we don't check this on stack register machines, the two
2819 CALL_INSNs might be merged leaving reg-stack.c with mismatching
2820 numbers of stack registers in the same basic block.
2821 If we don't check this on machines with delay slots, a delay slot may
2822 be filled that clobbers a parameter expected by the subroutine.
2824 ??? We take the simple route for now and assume that if they're
2825 equal, they were constructed identically. */
2827 if (GET_CODE (i1
) == CALL_INSN
2828 && ! rtx_equal_p (CALL_INSN_FUNCTION_USAGE (i1
),
2829 CALL_INSN_FUNCTION_USAGE (i2
)))
2833 /* If cross_jump_death_matters is not 0, the insn's mode
2834 indicates whether or not the insn contains any stack-like
2837 if (!lose
&& cross_jump_death_matters
&& GET_MODE (i1
) == QImode
)
2839 /* If register stack conversion has already been done, then
2840 death notes must also be compared before it is certain that
2841 the two instruction streams match. */
2844 HARD_REG_SET i1_regset
, i2_regset
;
2846 CLEAR_HARD_REG_SET (i1_regset
);
2847 CLEAR_HARD_REG_SET (i2_regset
);
2849 for (note
= REG_NOTES (i1
); note
; note
= XEXP (note
, 1))
2850 if (REG_NOTE_KIND (note
) == REG_DEAD
2851 && STACK_REG_P (XEXP (note
, 0)))
2852 SET_HARD_REG_BIT (i1_regset
, REGNO (XEXP (note
, 0)));
2854 for (note
= REG_NOTES (i2
); note
; note
= XEXP (note
, 1))
2855 if (REG_NOTE_KIND (note
) == REG_DEAD
2856 && STACK_REG_P (XEXP (note
, 0)))
2857 SET_HARD_REG_BIT (i2_regset
, REGNO (XEXP (note
, 0)));
2859 GO_IF_HARD_REG_EQUAL (i1_regset
, i2_regset
, done
);
2868 /* Don't allow old-style asm or volatile extended asms to be accepted
2869 for cross jumping purposes. It is conceptually correct to allow
2870 them, since cross-jumping preserves the dynamic instruction order
2871 even though it is changing the static instruction order. However,
2872 if an asm is being used to emit an assembler pseudo-op, such as
2873 the MIPS `.set reorder' pseudo-op, then the static instruction order
2874 matters and it must be preserved. */
2875 if (GET_CODE (p1
) == ASM_INPUT
|| GET_CODE (p2
) == ASM_INPUT
2876 || (GET_CODE (p1
) == ASM_OPERANDS
&& MEM_VOLATILE_P (p1
))
2877 || (GET_CODE (p2
) == ASM_OPERANDS
&& MEM_VOLATILE_P (p2
)))
2880 if (lose
|| GET_CODE (p1
) != GET_CODE (p2
)
2881 || ! rtx_renumbered_equal_p (p1
, p2
))
2883 /* The following code helps take care of G++ cleanups. */
2887 if (!lose
&& GET_CODE (p1
) == GET_CODE (p2
)
2888 && ((equiv1
= find_reg_note (i1
, REG_EQUAL
, NULL_RTX
)) != 0
2889 || (equiv1
= find_reg_note (i1
, REG_EQUIV
, NULL_RTX
)) != 0)
2890 && ((equiv2
= find_reg_note (i2
, REG_EQUAL
, NULL_RTX
)) != 0
2891 || (equiv2
= find_reg_note (i2
, REG_EQUIV
, NULL_RTX
)) != 0)
2892 /* If the equivalences are not to a constant, they may
2893 reference pseudos that no longer exist, so we can't
2895 && CONSTANT_P (XEXP (equiv1
, 0))
2896 && rtx_equal_p (XEXP (equiv1
, 0), XEXP (equiv2
, 0)))
2898 rtx s1
= single_set (i1
);
2899 rtx s2
= single_set (i2
);
2900 if (s1
!= 0 && s2
!= 0
2901 && rtx_renumbered_equal_p (SET_DEST (s1
), SET_DEST (s2
)))
2903 validate_change (i1
, &SET_SRC (s1
), XEXP (equiv1
, 0), 1);
2904 validate_change (i2
, &SET_SRC (s2
), XEXP (equiv2
, 0), 1);
2905 if (! rtx_renumbered_equal_p (p1
, p2
))
2907 else if (apply_change_group ())
2912 /* Insns fail to match; cross jumping is limited to the following
2916 /* Don't allow the insn after a compare to be shared by
2917 cross-jumping unless the compare is also shared.
2918 Here, if either of these non-matching insns is a compare,
2919 exclude the following insn from possible cross-jumping. */
2920 if (sets_cc0_p (p1
) || sets_cc0_p (p2
))
2921 last1
= afterlast1
, last2
= afterlast2
, ++minimum
;
2924 /* If cross-jumping here will feed a jump-around-jump
2925 optimization, this jump won't cost extra, so reduce
2927 if (GET_CODE (i1
) == JUMP_INSN
2929 && prev_real_insn (JUMP_LABEL (i1
)) == e1
)
2935 if (GET_CODE (p1
) != USE
&& GET_CODE (p1
) != CLOBBER
)
2937 /* Ok, this insn is potentially includable in a cross-jump here. */
2938 afterlast1
= last1
, afterlast2
= last2
;
2939 last1
= i1
, last2
= i2
, --minimum
;
2943 if (minimum
<= 0 && last1
!= 0 && last1
!= e1
)
2944 *f1
= last1
, *f2
= last2
;
2948 do_cross_jump (insn
, newjpos
, newlpos
)
2949 rtx insn
, newjpos
, newlpos
;
2951 /* Find an existing label at this point
2952 or make a new one if there is none. */
2953 register rtx label
= get_label_before (newlpos
);
2955 /* Make the same jump insn jump to the new point. */
2956 if (GET_CODE (PATTERN (insn
)) == RETURN
)
2958 /* Remove from jump chain of returns. */
2959 delete_from_jump_chain (insn
);
2960 /* Change the insn. */
2961 PATTERN (insn
) = gen_jump (label
);
2962 INSN_CODE (insn
) = -1;
2963 JUMP_LABEL (insn
) = label
;
2964 LABEL_NUSES (label
)++;
2965 /* Add to new the jump chain. */
2966 if (INSN_UID (label
) < max_jump_chain
2967 && INSN_UID (insn
) < max_jump_chain
)
2969 jump_chain
[INSN_UID (insn
)] = jump_chain
[INSN_UID (label
)];
2970 jump_chain
[INSN_UID (label
)] = insn
;
2974 redirect_jump (insn
, label
);
2976 /* Delete the matching insns before the jump. Also, remove any REG_EQUAL
2977 or REG_EQUIV note in the NEWLPOS stream that isn't also present in
2978 the NEWJPOS stream. */
2980 while (newjpos
!= insn
)
2984 for (lnote
= REG_NOTES (newlpos
); lnote
; lnote
= XEXP (lnote
, 1))
2985 if ((REG_NOTE_KIND (lnote
) == REG_EQUAL
2986 || REG_NOTE_KIND (lnote
) == REG_EQUIV
)
2987 && ! find_reg_note (newjpos
, REG_EQUAL
, XEXP (lnote
, 0))
2988 && ! find_reg_note (newjpos
, REG_EQUIV
, XEXP (lnote
, 0)))
2989 remove_note (newlpos
, lnote
);
2991 delete_insn (newjpos
);
2992 newjpos
= next_real_insn (newjpos
);
2993 newlpos
= next_real_insn (newlpos
);
2997 /* Return the label before INSN, or put a new label there. */
3000 get_label_before (insn
)
3005 /* Find an existing label at this point
3006 or make a new one if there is none. */
3007 label
= prev_nonnote_insn (insn
);
3009 if (label
== 0 || GET_CODE (label
) != CODE_LABEL
)
3011 rtx prev
= PREV_INSN (insn
);
3013 label
= gen_label_rtx ();
3014 emit_label_after (label
, prev
);
3015 LABEL_NUSES (label
) = 0;
3020 /* Return the label after INSN, or put a new label there. */
3023 get_label_after (insn
)
3028 /* Find an existing label at this point
3029 or make a new one if there is none. */
3030 label
= next_nonnote_insn (insn
);
3032 if (label
== 0 || GET_CODE (label
) != CODE_LABEL
)
3034 label
= gen_label_rtx ();
3035 emit_label_after (label
, insn
);
3036 LABEL_NUSES (label
) = 0;
3041 /* Return 1 if INSN is a jump that jumps to right after TARGET
3042 only on the condition that TARGET itself would drop through.
3043 Assumes that TARGET is a conditional jump. */
3046 jump_back_p (insn
, target
)
3050 enum rtx_code codei
, codet
;
3052 if (simplejump_p (insn
) || ! condjump_p (insn
)
3053 || simplejump_p (target
)
3054 || target
!= prev_real_insn (JUMP_LABEL (insn
)))
3057 cinsn
= XEXP (SET_SRC (PATTERN (insn
)), 0);
3058 ctarget
= XEXP (SET_SRC (PATTERN (target
)), 0);
3060 codei
= GET_CODE (cinsn
);
3061 codet
= GET_CODE (ctarget
);
3063 if (XEXP (SET_SRC (PATTERN (insn
)), 1) == pc_rtx
)
3065 if (! can_reverse_comparison_p (cinsn
, insn
))
3067 codei
= reverse_condition (codei
);
3070 if (XEXP (SET_SRC (PATTERN (target
)), 2) == pc_rtx
)
3072 if (! can_reverse_comparison_p (ctarget
, target
))
3074 codet
= reverse_condition (codet
);
3077 return (codei
== codet
3078 && rtx_renumbered_equal_p (XEXP (cinsn
, 0), XEXP (ctarget
, 0))
3079 && rtx_renumbered_equal_p (XEXP (cinsn
, 1), XEXP (ctarget
, 1)));
3082 /* Given a comparison, COMPARISON, inside a conditional jump insn, INSN,
3083 return non-zero if it is safe to reverse this comparison. It is if our
3084 floating-point is not IEEE, if this is an NE or EQ comparison, or if
3085 this is known to be an integer comparison. */
3088 can_reverse_comparison_p (comparison
, insn
)
3094 /* If this is not actually a comparison, we can't reverse it. */
3095 if (GET_RTX_CLASS (GET_CODE (comparison
)) != '<')
3098 if (TARGET_FLOAT_FORMAT
!= IEEE_FLOAT_FORMAT
3099 /* If this is an NE comparison, it is safe to reverse it to an EQ
3100 comparison and vice versa, even for floating point. If no operands
3101 are NaNs, the reversal is valid. If some operand is a NaN, EQ is
3102 always false and NE is always true, so the reversal is also valid. */
3104 || GET_CODE (comparison
) == NE
3105 || GET_CODE (comparison
) == EQ
)
3108 arg0
= XEXP (comparison
, 0);
3110 /* Make sure ARG0 is one of the actual objects being compared. If we
3111 can't do this, we can't be sure the comparison can be reversed.
3113 Handle cc0 and a MODE_CC register. */
3114 if ((GET_CODE (arg0
) == REG
&& GET_MODE_CLASS (GET_MODE (arg0
)) == MODE_CC
)
3120 rtx prev
= prev_nonnote_insn (insn
);
3121 rtx set
= single_set (prev
);
3123 if (set
== 0 || SET_DEST (set
) != arg0
)
3126 arg0
= SET_SRC (set
);
3128 if (GET_CODE (arg0
) == COMPARE
)
3129 arg0
= XEXP (arg0
, 0);
3132 /* We can reverse this if ARG0 is a CONST_INT or if its mode is
3133 not VOIDmode and neither a MODE_CC nor MODE_FLOAT type. */
3134 return (GET_CODE (arg0
) == CONST_INT
3135 || (GET_MODE (arg0
) != VOIDmode
3136 && GET_MODE_CLASS (GET_MODE (arg0
)) != MODE_CC
3137 && GET_MODE_CLASS (GET_MODE (arg0
)) != MODE_FLOAT
));
3140 /* Given an rtx-code for a comparison, return the code
3141 for the negated comparison.
3142 WATCH OUT! reverse_condition is not safe to use on a jump
3143 that might be acting on the results of an IEEE floating point comparison,
3144 because of the special treatment of non-signaling nans in comparisons.
3145 Use can_reverse_comparison_p to be sure. */
3148 reverse_condition (code
)
3189 /* Similar, but return the code when two operands of a comparison are swapped.
3190 This IS safe for IEEE floating-point. */
3193 swap_condition (code
)
3232 /* Given a comparison CODE, return the corresponding unsigned comparison.
3233 If CODE is an equality comparison or already an unsigned comparison,
3234 CODE is returned. */
3237 unsigned_condition (code
)
3267 /* Similarly, return the signed version of a comparison. */
3270 signed_condition (code
)
3300 /* Return non-zero if CODE1 is more strict than CODE2, i.e., if the
3301 truth of CODE1 implies the truth of CODE2. */
3304 comparison_dominates_p (code1
, code2
)
3305 enum rtx_code code1
, code2
;
3313 if (code2
== LE
|| code2
== LEU
|| code2
== GE
|| code2
== GEU
)
3318 if (code2
== LE
|| code2
== NE
)
3323 if (code2
== GE
|| code2
== NE
)
3328 if (code2
== LEU
|| code2
== NE
)
3333 if (code2
== GEU
|| code2
== NE
)
3344 /* Return 1 if INSN is an unconditional jump and nothing else. */
3350 return (GET_CODE (insn
) == JUMP_INSN
3351 && GET_CODE (PATTERN (insn
)) == SET
3352 && GET_CODE (SET_DEST (PATTERN (insn
))) == PC
3353 && GET_CODE (SET_SRC (PATTERN (insn
))) == LABEL_REF
);
3356 /* Return nonzero if INSN is a (possibly) conditional jump
3357 and nothing more. */
3363 register rtx x
= PATTERN (insn
);
3364 if (GET_CODE (x
) != SET
)
3366 if (GET_CODE (SET_DEST (x
)) != PC
)
3368 if (GET_CODE (SET_SRC (x
)) == LABEL_REF
)
3370 if (GET_CODE (SET_SRC (x
)) != IF_THEN_ELSE
)
3372 if (XEXP (SET_SRC (x
), 2) == pc_rtx
3373 && (GET_CODE (XEXP (SET_SRC (x
), 1)) == LABEL_REF
3374 || GET_CODE (XEXP (SET_SRC (x
), 1)) == RETURN
))
3376 if (XEXP (SET_SRC (x
), 1) == pc_rtx
3377 && (GET_CODE (XEXP (SET_SRC (x
), 2)) == LABEL_REF
3378 || GET_CODE (XEXP (SET_SRC (x
), 2)) == RETURN
))
3383 /* Return nonzero if INSN is a (possibly) conditional jump
3384 and nothing more. */
3387 condjump_in_parallel_p (insn
)
3390 register rtx x
= PATTERN (insn
);
3392 if (GET_CODE (x
) != PARALLEL
)
3395 x
= XVECEXP (x
, 0, 0);
3397 if (GET_CODE (x
) != SET
)
3399 if (GET_CODE (SET_DEST (x
)) != PC
)
3401 if (GET_CODE (SET_SRC (x
)) == LABEL_REF
)
3403 if (GET_CODE (SET_SRC (x
)) != IF_THEN_ELSE
)
3405 if (XEXP (SET_SRC (x
), 2) == pc_rtx
3406 && (GET_CODE (XEXP (SET_SRC (x
), 1)) == LABEL_REF
3407 || GET_CODE (XEXP (SET_SRC (x
), 1)) == RETURN
))
3409 if (XEXP (SET_SRC (x
), 1) == pc_rtx
3410 && (GET_CODE (XEXP (SET_SRC (x
), 2)) == LABEL_REF
3411 || GET_CODE (XEXP (SET_SRC (x
), 2)) == RETURN
))
3416 /* Return the label of a conditional jump. */
3419 condjump_label (insn
)
3422 register rtx x
= PATTERN (insn
);
3424 if (GET_CODE (x
) == PARALLEL
)
3425 x
= XVECEXP (x
, 0, 0);
3426 if (GET_CODE (x
) != SET
)
3428 if (GET_CODE (SET_DEST (x
)) != PC
)
3431 if (GET_CODE (x
) == LABEL_REF
)
3433 if (GET_CODE (x
) != IF_THEN_ELSE
)
3435 if (XEXP (x
, 2) == pc_rtx
&& GET_CODE (XEXP (x
, 1)) == LABEL_REF
)
3437 if (XEXP (x
, 1) == pc_rtx
&& GET_CODE (XEXP (x
, 2)) == LABEL_REF
)
3442 /* Return true if INSN is a (possibly conditional) return insn. */
3445 returnjump_p_1 (loc
, data
)
3447 void *data ATTRIBUTE_UNUSED
;
3450 return GET_CODE (x
) == RETURN
;
3457 return for_each_rtx (&PATTERN (insn
), returnjump_p_1
, NULL
);
3462 /* Return 1 if X is an RTX that does nothing but set the condition codes
3463 and CLOBBER or USE registers.
3464 Return -1 if X does explicitly set the condition codes,
3465 but also does other things. */
3469 rtx x ATTRIBUTE_UNUSED
;
3471 if (GET_CODE (x
) == SET
&& SET_DEST (x
) == cc0_rtx
)
3473 if (GET_CODE (x
) == PARALLEL
)
3477 int other_things
= 0;
3478 for (i
= XVECLEN (x
, 0) - 1; i
>= 0; i
--)
3480 if (GET_CODE (XVECEXP (x
, 0, i
)) == SET
3481 && SET_DEST (XVECEXP (x
, 0, i
)) == cc0_rtx
)
3483 else if (GET_CODE (XVECEXP (x
, 0, i
)) == SET
)
3486 return ! sets_cc0
? 0 : other_things
? -1 : 1;
3492 /* Follow any unconditional jump at LABEL;
3493 return the ultimate label reached by any such chain of jumps.
3494 If LABEL is not followed by a jump, return LABEL.
3495 If the chain loops or we can't find end, return LABEL,
3496 since that tells caller to avoid changing the insn.
3498 If RELOAD_COMPLETED is 0, we do not chain across a NOTE_INSN_LOOP_BEG or
3499 a USE or CLOBBER. */
3502 follow_jumps (label
)
3507 register rtx value
= label
;
3512 && (insn
= next_active_insn (value
)) != 0
3513 && GET_CODE (insn
) == JUMP_INSN
3514 && ((JUMP_LABEL (insn
) != 0 && simplejump_p (insn
))
3515 || GET_CODE (PATTERN (insn
)) == RETURN
)
3516 && (next
= NEXT_INSN (insn
))
3517 && GET_CODE (next
) == BARRIER
);
3520 /* Don't chain through the insn that jumps into a loop
3521 from outside the loop,
3522 since that would create multiple loop entry jumps
3523 and prevent loop optimization. */
3525 if (!reload_completed
)
3526 for (tem
= value
; tem
!= insn
; tem
= NEXT_INSN (tem
))
3527 if (GET_CODE (tem
) == NOTE
3528 && (NOTE_LINE_NUMBER (tem
) == NOTE_INSN_LOOP_BEG
3529 /* ??? Optional. Disables some optimizations, but makes
3530 gcov output more accurate with -O. */
3531 || (flag_test_coverage
&& NOTE_LINE_NUMBER (tem
) > 0)))
3534 /* If we have found a cycle, make the insn jump to itself. */
3535 if (JUMP_LABEL (insn
) == label
)
3538 tem
= next_active_insn (JUMP_LABEL (insn
));
3539 if (tem
&& (GET_CODE (PATTERN (tem
)) == ADDR_VEC
3540 || GET_CODE (PATTERN (tem
)) == ADDR_DIFF_VEC
))
3543 value
= JUMP_LABEL (insn
);
3550 /* Assuming that field IDX of X is a vector of label_refs,
3551 replace each of them by the ultimate label reached by it.
3552 Return nonzero if a change is made.
3553 If IGNORE_LOOPS is 0, we do not chain across a NOTE_INSN_LOOP_BEG. */
3556 tension_vector_labels (x
, idx
)
3562 for (i
= XVECLEN (x
, idx
) - 1; i
>= 0; i
--)
3564 register rtx olabel
= XEXP (XVECEXP (x
, idx
, i
), 0);
3565 register rtx nlabel
= follow_jumps (olabel
);
3566 if (nlabel
&& nlabel
!= olabel
)
3568 XEXP (XVECEXP (x
, idx
, i
), 0) = nlabel
;
3569 ++LABEL_NUSES (nlabel
);
3570 if (--LABEL_NUSES (olabel
) == 0)
3571 delete_insn (olabel
);
3578 /* Find all CODE_LABELs referred to in X, and increment their use counts.
3579 If INSN is a JUMP_INSN and there is at least one CODE_LABEL referenced
3580 in INSN, then store one of them in JUMP_LABEL (INSN).
3581 If INSN is an INSN or a CALL_INSN and there is at least one CODE_LABEL
3582 referenced in INSN, add a REG_LABEL note containing that label to INSN.
3583 Also, when there are consecutive labels, canonicalize on the last of them.
3585 Note that two labels separated by a loop-beginning note
3586 must be kept distinct if we have not yet done loop-optimization,
3587 because the gap between them is where loop-optimize
3588 will want to move invariant code to. CROSS_JUMP tells us
3589 that loop-optimization is done with.
3591 Once reload has completed (CROSS_JUMP non-zero), we need not consider
3592 two labels distinct if they are separated by only USE or CLOBBER insns. */
3595 mark_jump_label (x
, insn
, cross_jump
)
3600 register RTX_CODE code
= GET_CODE (x
);
3618 /* If this is a constant-pool reference, see if it is a label. */
3619 if (GET_CODE (XEXP (x
, 0)) == SYMBOL_REF
3620 && CONSTANT_POOL_ADDRESS_P (XEXP (x
, 0)))
3621 mark_jump_label (get_pool_constant (XEXP (x
, 0)), insn
, cross_jump
);
3626 rtx label
= XEXP (x
, 0);
3631 if (GET_CODE (label
) != CODE_LABEL
)
3634 /* Ignore references to labels of containing functions. */
3635 if (LABEL_REF_NONLOCAL_P (x
))
3638 /* If there are other labels following this one,
3639 replace it with the last of the consecutive labels. */
3640 for (next
= NEXT_INSN (label
); next
; next
= NEXT_INSN (next
))
3642 if (GET_CODE (next
) == CODE_LABEL
)
3644 else if (cross_jump
&& GET_CODE (next
) == INSN
3645 && (GET_CODE (PATTERN (next
)) == USE
3646 || GET_CODE (PATTERN (next
)) == CLOBBER
))
3648 else if (GET_CODE (next
) != NOTE
)
3650 else if (! cross_jump
3651 && (NOTE_LINE_NUMBER (next
) == NOTE_INSN_LOOP_BEG
3652 || NOTE_LINE_NUMBER (next
) == NOTE_INSN_FUNCTION_END
3653 /* ??? Optional. Disables some optimizations, but
3654 makes gcov output more accurate with -O. */
3655 || (flag_test_coverage
&& NOTE_LINE_NUMBER (next
) > 0)))
3659 XEXP (x
, 0) = label
;
3660 if (! insn
|| ! INSN_DELETED_P (insn
))
3661 ++LABEL_NUSES (label
);
3665 if (GET_CODE (insn
) == JUMP_INSN
)
3666 JUMP_LABEL (insn
) = label
;
3668 /* If we've changed OLABEL and we had a REG_LABEL note
3669 for it, update it as well. */
3670 else if (label
!= olabel
3671 && (note
= find_reg_note (insn
, REG_LABEL
, olabel
)) != 0)
3672 XEXP (note
, 0) = label
;
3674 /* Otherwise, add a REG_LABEL note for LABEL unless there already
3676 else if (! find_reg_note (insn
, REG_LABEL
, label
))
3678 /* This code used to ignore labels which refered to dispatch
3679 tables to avoid flow.c generating worse code.
3681 However, in the presense of global optimizations like
3682 gcse which call find_basic_blocks without calling
3683 life_analysis, not recording such labels will lead
3684 to compiler aborts because of inconsistencies in the
3685 flow graph. So we go ahead and record the label.
3687 It may also be the case that the optimization argument
3688 is no longer valid because of the more accurate cfg
3689 we build in find_basic_blocks -- it no longer pessimizes
3690 code when it finds a REG_LABEL note. */
3691 REG_NOTES (insn
) = gen_rtx_EXPR_LIST (REG_LABEL
, label
,
3698 /* Do walk the labels in a vector, but not the first operand of an
3699 ADDR_DIFF_VEC. Don't set the JUMP_LABEL of a vector. */
3702 if (! INSN_DELETED_P (insn
))
3704 int eltnum
= code
== ADDR_DIFF_VEC
? 1 : 0;
3706 for (i
= 0; i
< XVECLEN (x
, eltnum
); i
++)
3707 mark_jump_label (XVECEXP (x
, eltnum
, i
), NULL_RTX
, cross_jump
);
3715 fmt
= GET_RTX_FORMAT (code
);
3716 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
3719 mark_jump_label (XEXP (x
, i
), insn
, cross_jump
);
3720 else if (fmt
[i
] == 'E')
3723 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
3724 mark_jump_label (XVECEXP (x
, i
, j
), insn
, cross_jump
);
3729 /* If all INSN does is set the pc, delete it,
3730 and delete the insn that set the condition codes for it
3731 if that's what the previous thing was. */
3737 register rtx set
= single_set (insn
);
3739 if (set
&& GET_CODE (SET_DEST (set
)) == PC
)
3740 delete_computation (insn
);
3743 /* Delete INSN and recursively delete insns that compute values used only
3744 by INSN. This uses the REG_DEAD notes computed during flow analysis.
3745 If we are running before flow.c, we need do nothing since flow.c will
3746 delete dead code. We also can't know if the registers being used are
3747 dead or not at this point.
3749 Otherwise, look at all our REG_DEAD notes. If a previous insn does
3750 nothing other than set a register that dies in this insn, we can delete
3753 On machines with CC0, if CC0 is used in this insn, we may be able to
3754 delete the insn that set it. */
3757 delete_computation (insn
)
3763 if (reg_referenced_p (cc0_rtx
, PATTERN (insn
)))
3765 rtx prev
= prev_nonnote_insn (insn
);
3766 /* We assume that at this stage
3767 CC's are always set explicitly
3768 and always immediately before the jump that
3769 will use them. So if the previous insn
3770 exists to set the CC's, delete it
3771 (unless it performs auto-increments, etc.). */
3772 if (prev
&& GET_CODE (prev
) == INSN
3773 && sets_cc0_p (PATTERN (prev
)))
3775 if (sets_cc0_p (PATTERN (prev
)) > 0
3776 && !FIND_REG_INC_NOTE (prev
, NULL_RTX
))
3777 delete_computation (prev
);
3779 /* Otherwise, show that cc0 won't be used. */
3780 REG_NOTES (prev
) = gen_rtx_EXPR_LIST (REG_UNUSED
,
3781 cc0_rtx
, REG_NOTES (prev
));
3786 #ifdef INSN_SCHEDULING
3787 /* ?!? The schedulers do not keep REG_DEAD notes accurate after
3788 reload has completed. The schedulers need to be fixed. Until
3789 they are, we must not rely on the death notes here. */
3790 if (reload_completed
&& flag_schedule_insns_after_reload
)
3797 for (note
= REG_NOTES (insn
); note
; note
= next
)
3801 next
= XEXP (note
, 1);
3803 if (REG_NOTE_KIND (note
) != REG_DEAD
3804 /* Verify that the REG_NOTE is legitimate. */
3805 || GET_CODE (XEXP (note
, 0)) != REG
)
3808 for (our_prev
= prev_nonnote_insn (insn
);
3809 our_prev
&& GET_CODE (our_prev
) == INSN
;
3810 our_prev
= prev_nonnote_insn (our_prev
))
3812 /* If we reach a SEQUENCE, it is too complex to try to
3813 do anything with it, so give up. */
3814 if (GET_CODE (PATTERN (our_prev
)) == SEQUENCE
)
3817 if (GET_CODE (PATTERN (our_prev
)) == USE
3818 && GET_CODE (XEXP (PATTERN (our_prev
), 0)) == INSN
)
3819 /* reorg creates USEs that look like this. We leave them
3820 alone because reorg needs them for its own purposes. */
3823 if (reg_set_p (XEXP (note
, 0), PATTERN (our_prev
)))
3825 if (FIND_REG_INC_NOTE (our_prev
, NULL_RTX
))
3828 if (GET_CODE (PATTERN (our_prev
)) == PARALLEL
)
3830 /* If we find a SET of something else, we can't
3835 for (i
= 0; i
< XVECLEN (PATTERN (our_prev
), 0); i
++)
3837 rtx part
= XVECEXP (PATTERN (our_prev
), 0, i
);
3839 if (GET_CODE (part
) == SET
3840 && SET_DEST (part
) != XEXP (note
, 0))
3844 if (i
== XVECLEN (PATTERN (our_prev
), 0))
3845 delete_computation (our_prev
);
3847 else if (GET_CODE (PATTERN (our_prev
)) == SET
3848 && SET_DEST (PATTERN (our_prev
)) == XEXP (note
, 0))
3849 delete_computation (our_prev
);
3854 /* If OUR_PREV references the register that dies here, it is an
3855 additional use. Hence any prior SET isn't dead. However, this
3856 insn becomes the new place for the REG_DEAD note. */
3857 if (reg_overlap_mentioned_p (XEXP (note
, 0),
3858 PATTERN (our_prev
)))
3860 XEXP (note
, 1) = REG_NOTES (our_prev
);
3861 REG_NOTES (our_prev
) = note
;
3870 /* Delete insn INSN from the chain of insns and update label ref counts.
3871 May delete some following insns as a consequence; may even delete
3872 a label elsewhere and insns that follow it.
3874 Returns the first insn after INSN that was not deleted. */
3880 register rtx next
= NEXT_INSN (insn
);
3881 register rtx prev
= PREV_INSN (insn
);
3882 register int was_code_label
= (GET_CODE (insn
) == CODE_LABEL
);
3883 register int dont_really_delete
= 0;
3885 while (next
&& INSN_DELETED_P (next
))
3886 next
= NEXT_INSN (next
);
3888 /* This insn is already deleted => return first following nondeleted. */
3889 if (INSN_DELETED_P (insn
))
3892 /* Don't delete user-declared labels. Convert them to special NOTEs
3894 if (was_code_label
&& LABEL_NAME (insn
) != 0
3895 && optimize
&& ! dont_really_delete
)
3897 PUT_CODE (insn
, NOTE
);
3898 NOTE_LINE_NUMBER (insn
) = NOTE_INSN_DELETED_LABEL
;
3899 NOTE_SOURCE_FILE (insn
) = 0;
3900 dont_really_delete
= 1;
3903 /* Mark this insn as deleted. */
3904 INSN_DELETED_P (insn
) = 1;
3906 /* If this is an unconditional jump, delete it from the jump chain. */
3907 if (simplejump_p (insn
))
3908 delete_from_jump_chain (insn
);
3910 /* If instruction is followed by a barrier,
3911 delete the barrier too. */
3913 if (next
!= 0 && GET_CODE (next
) == BARRIER
)
3915 INSN_DELETED_P (next
) = 1;
3916 next
= NEXT_INSN (next
);
3919 /* Patch out INSN (and the barrier if any) */
3921 if (optimize
&& ! dont_really_delete
)
3925 NEXT_INSN (prev
) = next
;
3926 if (GET_CODE (prev
) == INSN
&& GET_CODE (PATTERN (prev
)) == SEQUENCE
)
3927 NEXT_INSN (XVECEXP (PATTERN (prev
), 0,
3928 XVECLEN (PATTERN (prev
), 0) - 1)) = next
;
3933 PREV_INSN (next
) = prev
;
3934 if (GET_CODE (next
) == INSN
&& GET_CODE (PATTERN (next
)) == SEQUENCE
)
3935 PREV_INSN (XVECEXP (PATTERN (next
), 0, 0)) = prev
;
3938 if (prev
&& NEXT_INSN (prev
) == 0)
3939 set_last_insn (prev
);
3942 /* If deleting a jump, decrement the count of the label,
3943 and delete the label if it is now unused. */
3945 if (GET_CODE (insn
) == JUMP_INSN
&& JUMP_LABEL (insn
))
3946 if (--LABEL_NUSES (JUMP_LABEL (insn
)) == 0)
3948 /* This can delete NEXT or PREV,
3949 either directly if NEXT is JUMP_LABEL (INSN),
3950 or indirectly through more levels of jumps. */
3951 delete_insn (JUMP_LABEL (insn
));
3952 /* I feel a little doubtful about this loop,
3953 but I see no clean and sure alternative way
3954 to find the first insn after INSN that is not now deleted.
3955 I hope this works. */
3956 while (next
&& INSN_DELETED_P (next
))
3957 next
= NEXT_INSN (next
);
3961 /* Likewise if we're deleting a dispatch table. */
3963 if (GET_CODE (insn
) == JUMP_INSN
3964 && (GET_CODE (PATTERN (insn
)) == ADDR_VEC
3965 || GET_CODE (PATTERN (insn
)) == ADDR_DIFF_VEC
))
3967 rtx pat
= PATTERN (insn
);
3968 int i
, diff_vec_p
= GET_CODE (pat
) == ADDR_DIFF_VEC
;
3969 int len
= XVECLEN (pat
, diff_vec_p
);
3971 for (i
= 0; i
< len
; i
++)
3972 if (--LABEL_NUSES (XEXP (XVECEXP (pat
, diff_vec_p
, i
), 0)) == 0)
3973 delete_insn (XEXP (XVECEXP (pat
, diff_vec_p
, i
), 0));
3974 while (next
&& INSN_DELETED_P (next
))
3975 next
= NEXT_INSN (next
);
3979 while (prev
&& (INSN_DELETED_P (prev
) || GET_CODE (prev
) == NOTE
))
3980 prev
= PREV_INSN (prev
);
3982 /* If INSN was a label and a dispatch table follows it,
3983 delete the dispatch table. The tablejump must have gone already.
3984 It isn't useful to fall through into a table. */
3987 && NEXT_INSN (insn
) != 0
3988 && GET_CODE (NEXT_INSN (insn
)) == JUMP_INSN
3989 && (GET_CODE (PATTERN (NEXT_INSN (insn
))) == ADDR_VEC
3990 || GET_CODE (PATTERN (NEXT_INSN (insn
))) == ADDR_DIFF_VEC
))
3991 next
= delete_insn (NEXT_INSN (insn
));
3993 /* If INSN was a label, delete insns following it if now unreachable. */
3995 if (was_code_label
&& prev
&& GET_CODE (prev
) == BARRIER
)
3997 register RTX_CODE code
;
3999 && (GET_RTX_CLASS (code
= GET_CODE (next
)) == 'i'
4000 || code
== NOTE
|| code
== BARRIER
4001 || (code
== CODE_LABEL
&& INSN_DELETED_P (next
))))
4004 && NOTE_LINE_NUMBER (next
) != NOTE_INSN_FUNCTION_END
)
4005 next
= NEXT_INSN (next
);
4006 /* Keep going past other deleted labels to delete what follows. */
4007 else if (code
== CODE_LABEL
&& INSN_DELETED_P (next
))
4008 next
= NEXT_INSN (next
);
4010 /* Note: if this deletes a jump, it can cause more
4011 deletion of unreachable code, after a different label.
4012 As long as the value from this recursive call is correct,
4013 this invocation functions correctly. */
4014 next
= delete_insn (next
);
4021 /* Advance from INSN till reaching something not deleted
4022 then return that. May return INSN itself. */
4025 next_nondeleted_insn (insn
)
4028 while (INSN_DELETED_P (insn
))
4029 insn
= NEXT_INSN (insn
);
4033 /* Delete a range of insns from FROM to TO, inclusive.
4034 This is for the sake of peephole optimization, so assume
4035 that whatever these insns do will still be done by a new
4036 peephole insn that will replace them. */
4039 delete_for_peephole (from
, to
)
4040 register rtx from
, to
;
4042 register rtx insn
= from
;
4046 register rtx next
= NEXT_INSN (insn
);
4047 register rtx prev
= PREV_INSN (insn
);
4049 if (GET_CODE (insn
) != NOTE
)
4051 INSN_DELETED_P (insn
) = 1;
4053 /* Patch this insn out of the chain. */
4054 /* We don't do this all at once, because we
4055 must preserve all NOTEs. */
4057 NEXT_INSN (prev
) = next
;
4060 PREV_INSN (next
) = prev
;
4068 /* Note that if TO is an unconditional jump
4069 we *do not* delete the BARRIER that follows,
4070 since the peephole that replaces this sequence
4071 is also an unconditional jump in that case. */
4074 /* Invert the condition of the jump JUMP, and make it jump
4075 to label NLABEL instead of where it jumps now. */
4078 invert_jump (jump
, nlabel
)
4081 /* We have to either invert the condition and change the label or
4082 do neither. Either operation could fail. We first try to invert
4083 the jump. If that succeeds, we try changing the label. If that fails,
4084 we invert the jump back to what it was. */
4086 if (! invert_exp (PATTERN (jump
), jump
))
4089 if (redirect_jump (jump
, nlabel
))
4091 if (flag_branch_probabilities
)
4093 rtx note
= find_reg_note (jump
, REG_BR_PROB
, 0);
4095 /* An inverted jump means that a probability taken becomes a
4096 probability not taken. Subtract the branch probability from the
4097 probability base to convert it back to a taken probability.
4098 (We don't flip the probability on a branch that's never taken. */
4099 if (note
&& XINT (XEXP (note
, 0), 0) >= 0)
4100 XINT (XEXP (note
, 0), 0) = REG_BR_PROB_BASE
- XINT (XEXP (note
, 0), 0);
4106 if (! invert_exp (PATTERN (jump
), jump
))
4107 /* This should just be putting it back the way it was. */
4113 /* Invert the jump condition of rtx X contained in jump insn, INSN.
4115 Return 1 if we can do so, 0 if we cannot find a way to do so that
4116 matches a pattern. */
4119 invert_exp (x
, insn
)
4123 register RTX_CODE code
;
4127 code
= GET_CODE (x
);
4129 if (code
== IF_THEN_ELSE
)
4131 register rtx comp
= XEXP (x
, 0);
4134 /* We can do this in two ways: The preferable way, which can only
4135 be done if this is not an integer comparison, is to reverse
4136 the comparison code. Otherwise, swap the THEN-part and ELSE-part
4137 of the IF_THEN_ELSE. If we can't do either, fail. */
4139 if (can_reverse_comparison_p (comp
, insn
)
4140 && validate_change (insn
, &XEXP (x
, 0),
4141 gen_rtx_fmt_ee (reverse_condition (GET_CODE (comp
)),
4142 GET_MODE (comp
), XEXP (comp
, 0),
4143 XEXP (comp
, 1)), 0))
4147 validate_change (insn
, &XEXP (x
, 1), XEXP (x
, 2), 1);
4148 validate_change (insn
, &XEXP (x
, 2), tem
, 1);
4149 return apply_change_group ();
4152 fmt
= GET_RTX_FORMAT (code
);
4153 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
4156 if (! invert_exp (XEXP (x
, i
), insn
))
4161 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
4162 if (!invert_exp (XVECEXP (x
, i
, j
), insn
))
4170 /* Make jump JUMP jump to label NLABEL instead of where it jumps now.
4171 If the old jump target label is unused as a result,
4172 it and the code following it may be deleted.
4174 If NLABEL is zero, we are to turn the jump into a (possibly conditional)
4177 The return value will be 1 if the change was made, 0 if it wasn't (this
4178 can only occur for NLABEL == 0). */
4181 redirect_jump (jump
, nlabel
)
4184 register rtx olabel
= JUMP_LABEL (jump
);
4186 if (nlabel
== olabel
)
4189 if (! redirect_exp (&PATTERN (jump
), olabel
, nlabel
, jump
))
4192 /* If this is an unconditional branch, delete it from the jump_chain of
4193 OLABEL and add it to the jump_chain of NLABEL (assuming both labels
4194 have UID's in range and JUMP_CHAIN is valid). */
4195 if (jump_chain
&& (simplejump_p (jump
)
4196 || GET_CODE (PATTERN (jump
)) == RETURN
))
4198 int label_index
= nlabel
? INSN_UID (nlabel
) : 0;
4200 delete_from_jump_chain (jump
);
4201 if (label_index
< max_jump_chain
4202 && INSN_UID (jump
) < max_jump_chain
)
4204 jump_chain
[INSN_UID (jump
)] = jump_chain
[label_index
];
4205 jump_chain
[label_index
] = jump
;
4209 JUMP_LABEL (jump
) = nlabel
;
4211 ++LABEL_NUSES (nlabel
);
4213 if (olabel
&& --LABEL_NUSES (olabel
) == 0)
4214 delete_insn (olabel
);
4219 /* Delete the instruction JUMP from any jump chain it might be on. */
4222 delete_from_jump_chain (jump
)
4226 rtx olabel
= JUMP_LABEL (jump
);
4228 /* Handle unconditional jumps. */
4229 if (jump_chain
&& olabel
!= 0
4230 && INSN_UID (olabel
) < max_jump_chain
4231 && simplejump_p (jump
))
4232 index
= INSN_UID (olabel
);
4233 /* Handle return insns. */
4234 else if (jump_chain
&& GET_CODE (PATTERN (jump
)) == RETURN
)
4238 if (jump_chain
[index
] == jump
)
4239 jump_chain
[index
] = jump_chain
[INSN_UID (jump
)];
4244 for (insn
= jump_chain
[index
];
4246 insn
= jump_chain
[INSN_UID (insn
)])
4247 if (jump_chain
[INSN_UID (insn
)] == jump
)
4249 jump_chain
[INSN_UID (insn
)] = jump_chain
[INSN_UID (jump
)];
4255 /* If NLABEL is nonzero, throughout the rtx at LOC,
4256 alter (LABEL_REF OLABEL) to (LABEL_REF NLABEL). If OLABEL is
4257 zero, alter (RETURN) to (LABEL_REF NLABEL).
4259 If NLABEL is zero, alter (LABEL_REF OLABEL) to (RETURN) and check
4260 validity with validate_change. Convert (set (pc) (label_ref olabel))
4263 Return 0 if we found a change we would like to make but it is invalid.
4264 Otherwise, return 1. */
4267 redirect_exp (loc
, olabel
, nlabel
, insn
)
4272 register rtx x
= *loc
;
4273 register RTX_CODE code
= GET_CODE (x
);
4277 if (code
== LABEL_REF
)
4279 if (XEXP (x
, 0) == olabel
)
4282 XEXP (x
, 0) = nlabel
;
4284 return validate_change (insn
, loc
, gen_rtx_RETURN (VOIDmode
), 0);
4288 else if (code
== RETURN
&& olabel
== 0)
4290 x
= gen_rtx_LABEL_REF (VOIDmode
, nlabel
);
4291 if (loc
== &PATTERN (insn
))
4292 x
= gen_rtx_SET (VOIDmode
, pc_rtx
, x
);
4293 return validate_change (insn
, loc
, x
, 0);
4296 if (code
== SET
&& nlabel
== 0 && SET_DEST (x
) == pc_rtx
4297 && GET_CODE (SET_SRC (x
)) == LABEL_REF
4298 && XEXP (SET_SRC (x
), 0) == olabel
)
4299 return validate_change (insn
, loc
, gen_rtx_RETURN (VOIDmode
), 0);
4301 fmt
= GET_RTX_FORMAT (code
);
4302 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
4305 if (! redirect_exp (&XEXP (x
, i
), olabel
, nlabel
, insn
))
4310 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
4311 if (! redirect_exp (&XVECEXP (x
, i
, j
), olabel
, nlabel
, insn
))
4319 /* Make jump JUMP jump to label NLABEL, assuming it used to be a tablejump.
4321 If the old jump target label (before the dispatch table) becomes unused,
4322 it and the dispatch table may be deleted. In that case, find the insn
4323 before the jump references that label and delete it and logical successors
4327 redirect_tablejump (jump
, nlabel
)
4330 register rtx olabel
= JUMP_LABEL (jump
);
4332 /* Add this jump to the jump_chain of NLABEL. */
4333 if (jump_chain
&& INSN_UID (nlabel
) < max_jump_chain
4334 && INSN_UID (jump
) < max_jump_chain
)
4336 jump_chain
[INSN_UID (jump
)] = jump_chain
[INSN_UID (nlabel
)];
4337 jump_chain
[INSN_UID (nlabel
)] = jump
;
4340 PATTERN (jump
) = gen_jump (nlabel
);
4341 JUMP_LABEL (jump
) = nlabel
;
4342 ++LABEL_NUSES (nlabel
);
4343 INSN_CODE (jump
) = -1;
4345 if (--LABEL_NUSES (olabel
) == 0)
4347 delete_labelref_insn (jump
, olabel
, 0);
4348 delete_insn (olabel
);
4352 /* Find the insn referencing LABEL that is a logical predecessor of INSN.
4353 If we found one, delete it and then delete this insn if DELETE_THIS is
4354 non-zero. Return non-zero if INSN or a predecessor references LABEL. */
4357 delete_labelref_insn (insn
, label
, delete_this
)
4364 if (GET_CODE (insn
) != NOTE
4365 && reg_mentioned_p (label
, PATTERN (insn
)))
4376 for (link
= LOG_LINKS (insn
); link
; link
= XEXP (link
, 1))
4377 if (delete_labelref_insn (XEXP (link
, 0), label
, 1))
4391 /* Like rtx_equal_p except that it considers two REGs as equal
4392 if they renumber to the same value and considers two commutative
4393 operations to be the same if the order of the operands has been
4396 ??? Addition is not commutative on the PA due to the weird implicit
4397 space register selection rules for memory addresses. Therefore, we
4398 don't consider a + b == b + a.
4400 We could/should make this test a little tighter. Possibly only
4401 disabling it on the PA via some backend macro or only disabling this
4402 case when the PLUS is inside a MEM. */
4405 rtx_renumbered_equal_p (x
, y
)
4409 register RTX_CODE code
= GET_CODE (x
);
4415 if ((code
== REG
|| (code
== SUBREG
&& GET_CODE (SUBREG_REG (x
)) == REG
))
4416 && (GET_CODE (y
) == REG
|| (GET_CODE (y
) == SUBREG
4417 && GET_CODE (SUBREG_REG (y
)) == REG
)))
4419 int reg_x
= -1, reg_y
= -1;
4420 int word_x
= 0, word_y
= 0;
4422 if (GET_MODE (x
) != GET_MODE (y
))
4425 /* If we haven't done any renumbering, don't
4426 make any assumptions. */
4427 if (reg_renumber
== 0)
4428 return rtx_equal_p (x
, y
);
4432 reg_x
= REGNO (SUBREG_REG (x
));
4433 word_x
= SUBREG_WORD (x
);
4435 if (reg_renumber
[reg_x
] >= 0)
4437 reg_x
= reg_renumber
[reg_x
] + word_x
;
4445 if (reg_renumber
[reg_x
] >= 0)
4446 reg_x
= reg_renumber
[reg_x
];
4449 if (GET_CODE (y
) == SUBREG
)
4451 reg_y
= REGNO (SUBREG_REG (y
));
4452 word_y
= SUBREG_WORD (y
);
4454 if (reg_renumber
[reg_y
] >= 0)
4456 reg_y
= reg_renumber
[reg_y
];
4464 if (reg_renumber
[reg_y
] >= 0)
4465 reg_y
= reg_renumber
[reg_y
];
4468 return reg_x
>= 0 && reg_x
== reg_y
&& word_x
== word_y
;
4471 /* Now we have disposed of all the cases
4472 in which different rtx codes can match. */
4473 if (code
!= GET_CODE (y
))
4485 return INTVAL (x
) == INTVAL (y
);
4488 /* We can't assume nonlocal labels have their following insns yet. */
4489 if (LABEL_REF_NONLOCAL_P (x
) || LABEL_REF_NONLOCAL_P (y
))
4490 return XEXP (x
, 0) == XEXP (y
, 0);
4492 /* Two label-refs are equivalent if they point at labels
4493 in the same position in the instruction stream. */
4494 return (next_real_insn (XEXP (x
, 0))
4495 == next_real_insn (XEXP (y
, 0)));
4498 return XSTR (x
, 0) == XSTR (y
, 0);
4501 /* If we didn't match EQ equality above, they aren't the same. */
4508 /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent. */
4510 if (GET_MODE (x
) != GET_MODE (y
))
4513 /* For commutative operations, the RTX match if the operand match in any
4514 order. Also handle the simple binary and unary cases without a loop.
4516 ??? Don't consider PLUS a commutative operator; see comments above. */
4517 if ((code
== EQ
|| code
== NE
|| GET_RTX_CLASS (code
) == 'c')
4519 return ((rtx_renumbered_equal_p (XEXP (x
, 0), XEXP (y
, 0))
4520 && rtx_renumbered_equal_p (XEXP (x
, 1), XEXP (y
, 1)))
4521 || (rtx_renumbered_equal_p (XEXP (x
, 0), XEXP (y
, 1))
4522 && rtx_renumbered_equal_p (XEXP (x
, 1), XEXP (y
, 0))));
4523 else if (GET_RTX_CLASS (code
) == '<' || GET_RTX_CLASS (code
) == '2')
4524 return (rtx_renumbered_equal_p (XEXP (x
, 0), XEXP (y
, 0))
4525 && rtx_renumbered_equal_p (XEXP (x
, 1), XEXP (y
, 1)));
4526 else if (GET_RTX_CLASS (code
) == '1')
4527 return rtx_renumbered_equal_p (XEXP (x
, 0), XEXP (y
, 0));
4529 /* Compare the elements. If any pair of corresponding elements
4530 fail to match, return 0 for the whole things. */
4532 fmt
= GET_RTX_FORMAT (code
);
4533 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
4539 if (XWINT (x
, i
) != XWINT (y
, i
))
4544 if (XINT (x
, i
) != XINT (y
, i
))
4549 if (strcmp (XSTR (x
, i
), XSTR (y
, i
)))
4554 if (! rtx_renumbered_equal_p (XEXP (x
, i
), XEXP (y
, i
)))
4559 if (XEXP (x
, i
) != XEXP (y
, i
))
4566 if (XVECLEN (x
, i
) != XVECLEN (y
, i
))
4568 for (j
= XVECLEN (x
, i
) - 1; j
>= 0; j
--)
4569 if (!rtx_renumbered_equal_p (XVECEXP (x
, i
, j
), XVECEXP (y
, i
, j
)))
4580 /* If X is a hard register or equivalent to one or a subregister of one,
4581 return the hard register number. If X is a pseudo register that was not
4582 assigned a hard register, return the pseudo register number. Otherwise,
4583 return -1. Any rtx is valid for X. */
4589 if (GET_CODE (x
) == REG
)
4591 if (REGNO (x
) >= FIRST_PSEUDO_REGISTER
&& reg_renumber
[REGNO (x
)] >= 0)
4592 return reg_renumber
[REGNO (x
)];
4595 if (GET_CODE (x
) == SUBREG
)
4597 int base
= true_regnum (SUBREG_REG (x
));
4598 if (base
>= 0 && base
< FIRST_PSEUDO_REGISTER
)
4599 return SUBREG_WORD (x
) + base
;
4604 /* Optimize code of the form:
4606 for (x = a[i]; x; ...)
4608 for (x = a[i]; x; ...)
4612 Loop optimize will change the above code into
4616 { ...; if (! (x = ...)) break; }
4619 { ...; if (! (x = ...)) break; }
4622 In general, if the first test fails, the program can branch
4623 directly to `foo' and skip the second try which is doomed to fail.
4624 We run this after loop optimization and before flow analysis. */
4626 /* When comparing the insn patterns, we track the fact that different
4627 pseudo-register numbers may have been used in each computation.
4628 The following array stores an equivalence -- same_regs[I] == J means
4629 that pseudo register I was used in the first set of tests in a context
4630 where J was used in the second set. We also count the number of such
4631 pending equivalences. If nonzero, the expressions really aren't the
4634 static int *same_regs
;
4636 static int num_same_regs
;
4638 /* Track any registers modified between the target of the first jump and
4639 the second jump. They never compare equal. */
4641 static char *modified_regs
;
4643 /* Record if memory was modified. */
4645 static int modified_mem
;
4647 /* Called via note_stores on each insn between the target of the first
4648 branch and the second branch. It marks any changed registers. */
4651 mark_modified_reg (dest
, x
)
4653 rtx x ATTRIBUTE_UNUSED
;
4657 if (GET_CODE (dest
) == SUBREG
)
4658 dest
= SUBREG_REG (dest
);
4660 if (GET_CODE (dest
) == MEM
)
4663 if (GET_CODE (dest
) != REG
)
4666 regno
= REGNO (dest
);
4667 if (regno
>= FIRST_PSEUDO_REGISTER
)
4668 modified_regs
[regno
] = 1;
4670 for (i
= 0; i
< HARD_REGNO_NREGS (regno
, GET_MODE (dest
)); i
++)
4671 modified_regs
[regno
+ i
] = 1;
4674 /* F is the first insn in the chain of insns. */
4677 thread_jumps (f
, max_reg
, flag_before_loop
)
4680 int flag_before_loop
;
4682 /* Basic algorithm is to find a conditional branch,
4683 the label it may branch to, and the branch after
4684 that label. If the two branches test the same condition,
4685 walk back from both branch paths until the insn patterns
4686 differ, or code labels are hit. If we make it back to
4687 the target of the first branch, then we know that the first branch
4688 will either always succeed or always fail depending on the relative
4689 senses of the two branches. So adjust the first branch accordingly
4692 rtx label
, b1
, b2
, t1
, t2
;
4693 enum rtx_code code1
, code2
;
4694 rtx b1op0
, b1op1
, b2op0
, b2op1
;
4699 /* Allocate register tables and quick-reset table. */
4700 modified_regs
= (char *) alloca (max_reg
* sizeof (char));
4701 same_regs
= (int *) alloca (max_reg
* sizeof (int));
4702 all_reset
= (int *) alloca (max_reg
* sizeof (int));
4703 for (i
= 0; i
< max_reg
; i
++)
4710 for (b1
= f
; b1
; b1
= NEXT_INSN (b1
))
4712 /* Get to a candidate branch insn. */
4713 if (GET_CODE (b1
) != JUMP_INSN
4714 || ! condjump_p (b1
) || simplejump_p (b1
)
4715 || JUMP_LABEL (b1
) == 0)
4718 bzero (modified_regs
, max_reg
* sizeof (char));
4721 bcopy ((char *) all_reset
, (char *) same_regs
,
4722 max_reg
* sizeof (int));
4725 label
= JUMP_LABEL (b1
);
4727 /* Look for a branch after the target. Record any registers and
4728 memory modified between the target and the branch. Stop when we
4729 get to a label since we can't know what was changed there. */
4730 for (b2
= NEXT_INSN (label
); b2
; b2
= NEXT_INSN (b2
))
4732 if (GET_CODE (b2
) == CODE_LABEL
)
4735 else if (GET_CODE (b2
) == JUMP_INSN
)
4737 /* If this is an unconditional jump and is the only use of
4738 its target label, we can follow it. */
4739 if (simplejump_p (b2
)
4740 && JUMP_LABEL (b2
) != 0
4741 && LABEL_NUSES (JUMP_LABEL (b2
)) == 1)
4743 b2
= JUMP_LABEL (b2
);
4750 if (GET_CODE (b2
) != CALL_INSN
&& GET_CODE (b2
) != INSN
)
4753 if (GET_CODE (b2
) == CALL_INSN
)
4756 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
4757 if (call_used_regs
[i
] && ! fixed_regs
[i
]
4758 && i
!= STACK_POINTER_REGNUM
4759 && i
!= FRAME_POINTER_REGNUM
4760 && i
!= HARD_FRAME_POINTER_REGNUM
4761 && i
!= ARG_POINTER_REGNUM
)
4762 modified_regs
[i
] = 1;
4765 note_stores (PATTERN (b2
), mark_modified_reg
);
4768 /* Check the next candidate branch insn from the label
4771 || GET_CODE (b2
) != JUMP_INSN
4773 || ! condjump_p (b2
)
4774 || simplejump_p (b2
))
4777 /* Get the comparison codes and operands, reversing the
4778 codes if appropriate. If we don't have comparison codes,
4779 we can't do anything. */
4780 b1op0
= XEXP (XEXP (SET_SRC (PATTERN (b1
)), 0), 0);
4781 b1op1
= XEXP (XEXP (SET_SRC (PATTERN (b1
)), 0), 1);
4782 code1
= GET_CODE (XEXP (SET_SRC (PATTERN (b1
)), 0));
4783 if (XEXP (SET_SRC (PATTERN (b1
)), 1) == pc_rtx
)
4784 code1
= reverse_condition (code1
);
4786 b2op0
= XEXP (XEXP (SET_SRC (PATTERN (b2
)), 0), 0);
4787 b2op1
= XEXP (XEXP (SET_SRC (PATTERN (b2
)), 0), 1);
4788 code2
= GET_CODE (XEXP (SET_SRC (PATTERN (b2
)), 0));
4789 if (XEXP (SET_SRC (PATTERN (b2
)), 1) == pc_rtx
)
4790 code2
= reverse_condition (code2
);
4792 /* If they test the same things and knowing that B1 branches
4793 tells us whether or not B2 branches, check if we
4794 can thread the branch. */
4795 if (rtx_equal_for_thread_p (b1op0
, b2op0
, b2
)
4796 && rtx_equal_for_thread_p (b1op1
, b2op1
, b2
)
4797 && (comparison_dominates_p (code1
, code2
)
4798 || (comparison_dominates_p (code1
, reverse_condition (code2
))
4799 && can_reverse_comparison_p (XEXP (SET_SRC (PATTERN (b1
)),
4803 t1
= prev_nonnote_insn (b1
);
4804 t2
= prev_nonnote_insn (b2
);
4806 while (t1
!= 0 && t2
!= 0)
4810 /* We have reached the target of the first branch.
4811 If there are no pending register equivalents,
4812 we know that this branch will either always
4813 succeed (if the senses of the two branches are
4814 the same) or always fail (if not). */
4817 if (num_same_regs
!= 0)
4820 if (comparison_dominates_p (code1
, code2
))
4821 new_label
= JUMP_LABEL (b2
);
4823 new_label
= get_label_after (b2
);
4825 if (JUMP_LABEL (b1
) != new_label
)
4827 rtx prev
= PREV_INSN (new_label
);
4829 if (flag_before_loop
4830 && GET_CODE (prev
) == NOTE
4831 && NOTE_LINE_NUMBER (prev
) == NOTE_INSN_LOOP_BEG
)
4833 /* Don't thread to the loop label. If a loop
4834 label is reused, loop optimization will
4835 be disabled for that loop. */
4836 new_label
= gen_label_rtx ();
4837 emit_label_after (new_label
, PREV_INSN (prev
));
4839 changed
|= redirect_jump (b1
, new_label
);
4844 /* If either of these is not a normal insn (it might be
4845 a JUMP_INSN, CALL_INSN, or CODE_LABEL) we fail. (NOTEs
4846 have already been skipped above.) Similarly, fail
4847 if the insns are different. */
4848 if (GET_CODE (t1
) != INSN
|| GET_CODE (t2
) != INSN
4849 || recog_memoized (t1
) != recog_memoized (t2
)
4850 || ! rtx_equal_for_thread_p (PATTERN (t1
),
4854 t1
= prev_nonnote_insn (t1
);
4855 t2
= prev_nonnote_insn (t2
);
4862 /* This is like RTX_EQUAL_P except that it knows about our handling of
4863 possibly equivalent registers and knows to consider volatile and
4864 modified objects as not equal.
4866 YINSN is the insn containing Y. */
4869 rtx_equal_for_thread_p (x
, y
, yinsn
)
4875 register enum rtx_code code
;
4878 code
= GET_CODE (x
);
4879 /* Rtx's of different codes cannot be equal. */
4880 if (code
!= GET_CODE (y
))
4883 /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent.
4884 (REG:SI x) and (REG:HI x) are NOT equivalent. */
4886 if (GET_MODE (x
) != GET_MODE (y
))
4889 /* For floating-point, consider everything unequal. This is a bit
4890 pessimistic, but this pass would only rarely do anything for FP
4892 if (TARGET_FLOAT_FORMAT
== IEEE_FLOAT_FORMAT
4893 && FLOAT_MODE_P (GET_MODE (x
)) && ! flag_fast_math
)
4896 /* For commutative operations, the RTX match if the operand match in any
4897 order. Also handle the simple binary and unary cases without a loop. */
4898 if (code
== EQ
|| code
== NE
|| GET_RTX_CLASS (code
) == 'c')
4899 return ((rtx_equal_for_thread_p (XEXP (x
, 0), XEXP (y
, 0), yinsn
)
4900 && rtx_equal_for_thread_p (XEXP (x
, 1), XEXP (y
, 1), yinsn
))
4901 || (rtx_equal_for_thread_p (XEXP (x
, 0), XEXP (y
, 1), yinsn
)
4902 && rtx_equal_for_thread_p (XEXP (x
, 1), XEXP (y
, 0), yinsn
)));
4903 else if (GET_RTX_CLASS (code
) == '<' || GET_RTX_CLASS (code
) == '2')
4904 return (rtx_equal_for_thread_p (XEXP (x
, 0), XEXP (y
, 0), yinsn
)
4905 && rtx_equal_for_thread_p (XEXP (x
, 1), XEXP (y
, 1), yinsn
));
4906 else if (GET_RTX_CLASS (code
) == '1')
4907 return rtx_equal_for_thread_p (XEXP (x
, 0), XEXP (y
, 0), yinsn
);
4909 /* Handle special-cases first. */
4913 if (REGNO (x
) == REGNO (y
) && ! modified_regs
[REGNO (x
)])
4916 /* If neither is user variable or hard register, check for possible
4918 if (REG_USERVAR_P (x
) || REG_USERVAR_P (y
)
4919 || REGNO (x
) < FIRST_PSEUDO_REGISTER
4920 || REGNO (y
) < FIRST_PSEUDO_REGISTER
)
4923 if (same_regs
[REGNO (x
)] == -1)
4925 same_regs
[REGNO (x
)] = REGNO (y
);
4928 /* If this is the first time we are seeing a register on the `Y'
4929 side, see if it is the last use. If not, we can't thread the
4930 jump, so mark it as not equivalent. */
4931 if (REGNO_LAST_UID (REGNO (y
)) != INSN_UID (yinsn
))
4937 return (same_regs
[REGNO (x
)] == REGNO (y
));
4942 /* If memory modified or either volatile, not equivalent.
4943 Else, check address. */
4944 if (modified_mem
|| MEM_VOLATILE_P (x
) || MEM_VOLATILE_P (y
))
4947 return rtx_equal_for_thread_p (XEXP (x
, 0), XEXP (y
, 0), yinsn
);
4950 if (MEM_VOLATILE_P (x
) || MEM_VOLATILE_P (y
))
4956 /* Cancel a pending `same_regs' if setting equivalenced registers.
4957 Then process source. */
4958 if (GET_CODE (SET_DEST (x
)) == REG
4959 && GET_CODE (SET_DEST (y
)) == REG
)
4961 if (same_regs
[REGNO (SET_DEST (x
))] == REGNO (SET_DEST (y
)))
4963 same_regs
[REGNO (SET_DEST (x
))] = -1;
4966 else if (REGNO (SET_DEST (x
)) != REGNO (SET_DEST (y
)))
4970 if (rtx_equal_for_thread_p (SET_DEST (x
), SET_DEST (y
), yinsn
) == 0)
4973 return rtx_equal_for_thread_p (SET_SRC (x
), SET_SRC (y
), yinsn
);
4976 return XEXP (x
, 0) == XEXP (y
, 0);
4979 return XSTR (x
, 0) == XSTR (y
, 0);
4988 fmt
= GET_RTX_FORMAT (code
);
4989 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
4994 if (XWINT (x
, i
) != XWINT (y
, i
))
5000 if (XINT (x
, i
) != XINT (y
, i
))
5006 /* Two vectors must have the same length. */
5007 if (XVECLEN (x
, i
) != XVECLEN (y
, i
))
5010 /* And the corresponding elements must match. */
5011 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
5012 if (rtx_equal_for_thread_p (XVECEXP (x
, i
, j
),
5013 XVECEXP (y
, i
, j
), yinsn
) == 0)
5018 if (rtx_equal_for_thread_p (XEXP (x
, i
), XEXP (y
, i
), yinsn
) == 0)
5024 if (strcmp (XSTR (x
, i
), XSTR (y
, i
)))
5029 /* These are just backpointers, so they don't matter. */
5035 /* It is believed that rtx's at this level will never
5036 contain anything but integers and other rtx's,
5037 except for within LABEL_REFs and SYMBOL_REFs. */
5047 /* Return the insn that NEW can be safely inserted in front of starting at
5048 the jump insn INSN. Return 0 if it is not safe to do this jump
5049 optimization. Note that NEW must contain a single set. */
5052 find_insert_position (insn
, new)
5059 /* If NEW does not clobber, it is safe to insert NEW before INSN. */
5060 if (GET_CODE (PATTERN (new)) != PARALLEL
)
5063 for (i
= XVECLEN (PATTERN (new), 0) - 1; i
>= 0; i
--)
5064 if (GET_CODE (XVECEXP (PATTERN (new), 0, i
)) == CLOBBER
5065 && reg_overlap_mentioned_p (XEXP (XVECEXP (PATTERN (new), 0, i
), 0),
5072 /* There is a good chance that the previous insn PREV sets the thing
5073 being clobbered (often the CC in a hard reg). If PREV does not
5074 use what NEW sets, we can insert NEW before PREV. */
5076 prev
= prev_active_insn (insn
);
5077 for (i
= XVECLEN (PATTERN (new), 0) - 1; i
>= 0; i
--)
5078 if (GET_CODE (XVECEXP (PATTERN (new), 0, i
)) == CLOBBER
5079 && reg_overlap_mentioned_p (XEXP (XVECEXP (PATTERN (new), 0, i
), 0),
5081 && ! modified_in_p (XEXP (XVECEXP (PATTERN (new), 0, i
), 0),
5085 return reg_mentioned_p (SET_DEST (single_set (new)), prev
) ? 0 : prev
;
5087 #endif /* !HAVE_cc0 */