* jcf-path.c (add_entry): Don't add trailing separator if entry is
[official-gcc.git] / gcc / jump.c
blob9748fb230467e76b53327920050deca8b81e888d
1 /* Optimize jump instructions, for GNU compiler.
2 Copyright (C) 1987, 88, 89, 91-97, 1998 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
22 /* 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
37 at by later passes.
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. */
54 #include "config.h"
55 #include "system.h"
56 #include "rtl.h"
57 #include "flags.h"
58 #include "hard-reg-set.h"
59 #include "regs.h"
60 #include "insn-config.h"
61 #include "insn-flags.h"
62 #include "recog.h"
63 #include "expr.h"
64 #include "real.h"
65 #include "except.h"
66 #include "toplev.h"
68 /* ??? Eventually must record somehow the labels used by jumps
69 from nested functions. */
70 /* Pre-record the next or previous real insn for each label?
71 No, this pass is very fast anyway. */
72 /* Condense consecutive labels?
73 This would make life analysis faster, maybe. */
74 /* Optimize jump y; x: ... y: jumpif... x?
75 Don't know if it is worth bothering with. */
76 /* Optimize two cases of conditional jump to conditional jump?
77 This can never delete any instruction or make anything dead,
78 or even change what is live at any point.
79 So perhaps let combiner do it. */
81 /* Vector indexed by uid.
82 For each CODE_LABEL, index by its uid to get first unconditional jump
83 that jumps to the label.
84 For each JUMP_INSN, index by its uid to get the next unconditional jump
85 that jumps to the same label.
86 Element 0 is the start of a chain of all return insns.
87 (It is safe to use element 0 because insn uid 0 is not used. */
89 static rtx *jump_chain;
91 /* List of labels referred to from initializers.
92 These can never be deleted. */
93 rtx forced_labels;
95 /* Maximum index in jump_chain. */
97 static int max_jump_chain;
99 /* Set nonzero by jump_optimize if control can fall through
100 to the end of the function. */
101 int can_reach_end;
103 /* Indicates whether death notes are significant in cross jump analysis.
104 Normally they are not significant, because of A and B jump to C,
105 and R dies in A, it must die in B. But this might not be true after
106 stack register conversion, and we must compare death notes in that
107 case. */
109 static int cross_jump_death_matters = 0;
111 static int duplicate_loop_exit_test PROTO((rtx));
112 static void find_cross_jump PROTO((rtx, rtx, int, rtx *, rtx *));
113 static void do_cross_jump PROTO((rtx, rtx, rtx));
114 static int jump_back_p PROTO((rtx, rtx));
115 static int tension_vector_labels PROTO((rtx, int));
116 static void mark_jump_label PROTO((rtx, rtx, int));
117 static void delete_computation PROTO((rtx));
118 static void delete_from_jump_chain PROTO((rtx));
119 static int delete_labelref_insn PROTO((rtx, rtx, int));
120 static void mark_modified_reg PROTO((rtx, rtx));
121 static void redirect_tablejump PROTO((rtx, rtx));
122 #ifndef HAVE_cc0
123 static rtx find_insert_position PROTO((rtx, rtx));
124 #endif
126 /* Delete no-op jumps and optimize jumps to jumps
127 and jumps around jumps.
128 Delete unused labels and unreachable code.
130 If CROSS_JUMP is 1, detect matching code
131 before a jump and its destination and unify them.
132 If CROSS_JUMP is 2, do cross-jumping, but pay attention to death notes.
134 If NOOP_MOVES is nonzero, delete no-op move insns.
136 If AFTER_REGSCAN is nonzero, then this jump pass is being run immediately
137 after regscan, and it is safe to use regno_first_uid and regno_last_uid.
139 If `optimize' is zero, don't change any code,
140 just determine whether control drops off the end of the function.
141 This case occurs when we have -W and not -O.
142 It works because `delete_insn' checks the value of `optimize'
143 and refrains from actually deleting when that is 0. */
145 void
146 jump_optimize (f, cross_jump, noop_moves, after_regscan)
147 rtx f;
148 int cross_jump;
149 int noop_moves;
150 int after_regscan;
152 register rtx insn, next, note;
153 int changed;
154 int old_max_reg;
155 int first = 1;
156 int max_uid = 0;
157 rtx last_insn;
159 cross_jump_death_matters = (cross_jump == 2);
161 /* Initialize LABEL_NUSES and JUMP_LABEL fields. Delete any REG_LABEL
162 notes whose labels don't occur in the insn any more. */
164 for (insn = f; insn; insn = NEXT_INSN (insn))
166 if (GET_CODE (insn) == CODE_LABEL)
167 LABEL_NUSES (insn) = (LABEL_PRESERVE_P (insn) != 0);
168 else if (GET_CODE (insn) == JUMP_INSN)
169 JUMP_LABEL (insn) = 0;
170 else if (GET_CODE (insn) == INSN || GET_CODE (insn) == CALL_INSN)
171 for (note = REG_NOTES (insn); note; note = next)
173 next = XEXP (note, 1);
174 if (REG_NOTE_KIND (note) == REG_LABEL
175 && ! reg_mentioned_p (XEXP (note, 0), PATTERN (insn)))
176 remove_note (insn, note);
179 if (INSN_UID (insn) > max_uid)
180 max_uid = INSN_UID (insn);
183 max_uid++;
185 /* Delete insns following barriers, up to next label. */
187 for (insn = f; insn;)
189 if (GET_CODE (insn) == BARRIER)
191 insn = NEXT_INSN (insn);
192 while (insn != 0 && GET_CODE (insn) != CODE_LABEL)
194 if (GET_CODE (insn) == NOTE
195 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_FUNCTION_END)
196 insn = NEXT_INSN (insn);
197 else
198 insn = delete_insn (insn);
200 /* INSN is now the code_label. */
202 else
203 insn = NEXT_INSN (insn);
206 /* Leave some extra room for labels and duplicate exit test insns
207 we make. */
208 max_jump_chain = max_uid * 14 / 10;
209 jump_chain = (rtx *) alloca (max_jump_chain * sizeof (rtx));
210 bzero ((char *) jump_chain, max_jump_chain * sizeof (rtx));
212 /* Mark the label each jump jumps to.
213 Combine consecutive labels, and count uses of labels.
215 For each label, make a chain (using `jump_chain')
216 of all the *unconditional* jumps that jump to it;
217 also make a chain of all returns. */
219 for (insn = f; insn; insn = NEXT_INSN (insn))
220 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
222 mark_jump_label (PATTERN (insn), insn, cross_jump);
223 if (! INSN_DELETED_P (insn) && GET_CODE (insn) == JUMP_INSN)
225 if (JUMP_LABEL (insn) != 0 && simplejump_p (insn))
227 jump_chain[INSN_UID (insn)]
228 = jump_chain[INSN_UID (JUMP_LABEL (insn))];
229 jump_chain[INSN_UID (JUMP_LABEL (insn))] = insn;
231 if (GET_CODE (PATTERN (insn)) == RETURN)
233 jump_chain[INSN_UID (insn)] = jump_chain[0];
234 jump_chain[0] = insn;
239 /* Keep track of labels used from static data;
240 they cannot ever be deleted. */
242 for (insn = forced_labels; insn; insn = XEXP (insn, 1))
243 LABEL_NUSES (XEXP (insn, 0))++;
245 check_exception_handler_labels ();
247 /* Keep track of labels used for marking handlers for exception
248 regions; they cannot usually be deleted. */
250 for (insn = exception_handler_labels; insn; insn = XEXP (insn, 1))
251 LABEL_NUSES (XEXP (insn, 0))++;
253 exception_optimize ();
255 /* Delete all labels already not referenced.
256 Also find the last insn. */
258 last_insn = 0;
259 for (insn = f; insn; )
261 if (GET_CODE (insn) == CODE_LABEL && LABEL_NUSES (insn) == 0)
262 insn = delete_insn (insn);
263 else
265 last_insn = insn;
266 insn = NEXT_INSN (insn);
270 if (!optimize)
272 /* See if there is still a NOTE_INSN_FUNCTION_END in this function.
273 If so record that this function can drop off the end. */
275 insn = last_insn;
277 int n_labels = 1;
278 while (insn
279 /* One label can follow the end-note: the return label. */
280 && ((GET_CODE (insn) == CODE_LABEL && n_labels-- > 0)
281 /* Ordinary insns can follow it if returning a structure. */
282 || GET_CODE (insn) == INSN
283 /* If machine uses explicit RETURN insns, no epilogue,
284 then one of them follows the note. */
285 || (GET_CODE (insn) == JUMP_INSN
286 && GET_CODE (PATTERN (insn)) == RETURN)
287 /* A barrier can follow the return insn. */
288 || GET_CODE (insn) == BARRIER
289 /* Other kinds of notes can follow also. */
290 || (GET_CODE (insn) == NOTE
291 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_FUNCTION_END)))
292 insn = PREV_INSN (insn);
295 /* Report if control can fall through at the end of the function. */
296 if (insn && GET_CODE (insn) == NOTE
297 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_FUNCTION_END
298 && ! INSN_DELETED_P (insn))
299 can_reach_end = 1;
301 /* Zero the "deleted" flag of all the "deleted" insns. */
302 for (insn = f; insn; insn = NEXT_INSN (insn))
303 INSN_DELETED_P (insn) = 0;
305 /* Show that the jump chain is not valid. */
306 jump_chain = 0;
307 return;
310 #ifdef HAVE_return
311 if (HAVE_return)
313 /* If we fall through to the epilogue, see if we can insert a RETURN insn
314 in front of it. If the machine allows it at this point (we might be
315 after reload for a leaf routine), it will improve optimization for it
316 to be there. */
317 insn = get_last_insn ();
318 while (insn && GET_CODE (insn) == NOTE)
319 insn = PREV_INSN (insn);
321 if (insn && GET_CODE (insn) != BARRIER)
323 emit_jump_insn (gen_return ());
324 emit_barrier ();
327 #endif
329 if (noop_moves)
330 for (insn = f; insn; )
332 next = NEXT_INSN (insn);
334 if (GET_CODE (insn) == INSN)
336 register rtx body = PATTERN (insn);
338 /* Combine stack_adjusts with following push_insns. */
339 #ifdef PUSH_ROUNDING
340 if (GET_CODE (body) == SET
341 && SET_DEST (body) == stack_pointer_rtx
342 && GET_CODE (SET_SRC (body)) == PLUS
343 && XEXP (SET_SRC (body), 0) == stack_pointer_rtx
344 && GET_CODE (XEXP (SET_SRC (body), 1)) == CONST_INT
345 && INTVAL (XEXP (SET_SRC (body), 1)) > 0)
347 rtx p;
348 rtx stack_adjust_insn = insn;
349 int stack_adjust_amount = INTVAL (XEXP (SET_SRC (body), 1));
350 int total_pushed = 0;
351 int pushes = 0;
353 /* Find all successive push insns. */
354 p = insn;
355 /* Don't convert more than three pushes;
356 that starts adding too many displaced addresses
357 and the whole thing starts becoming a losing
358 proposition. */
359 while (pushes < 3)
361 rtx pbody, dest;
362 p = next_nonnote_insn (p);
363 if (p == 0 || GET_CODE (p) != INSN)
364 break;
365 pbody = PATTERN (p);
366 if (GET_CODE (pbody) != SET)
367 break;
368 dest = SET_DEST (pbody);
369 /* Allow a no-op move between the adjust and the push. */
370 if (GET_CODE (dest) == REG
371 && GET_CODE (SET_SRC (pbody)) == REG
372 && REGNO (dest) == REGNO (SET_SRC (pbody)))
373 continue;
374 if (! (GET_CODE (dest) == MEM
375 && GET_CODE (XEXP (dest, 0)) == POST_INC
376 && XEXP (XEXP (dest, 0), 0) == stack_pointer_rtx))
377 break;
378 pushes++;
379 if (total_pushed + GET_MODE_SIZE (GET_MODE (SET_DEST (pbody)))
380 > stack_adjust_amount)
381 break;
382 total_pushed += GET_MODE_SIZE (GET_MODE (SET_DEST (pbody)));
385 /* Discard the amount pushed from the stack adjust;
386 maybe eliminate it entirely. */
387 if (total_pushed >= stack_adjust_amount)
389 delete_computation (stack_adjust_insn);
390 total_pushed = stack_adjust_amount;
392 else
393 XEXP (SET_SRC (PATTERN (stack_adjust_insn)), 1)
394 = GEN_INT (stack_adjust_amount - total_pushed);
396 /* Change the appropriate push insns to ordinary stores. */
397 p = insn;
398 while (total_pushed > 0)
400 rtx pbody, dest;
401 p = next_nonnote_insn (p);
402 if (GET_CODE (p) != INSN)
403 break;
404 pbody = PATTERN (p);
405 if (GET_CODE (pbody) != SET)
406 break;
407 dest = SET_DEST (pbody);
408 /* Allow a no-op move between the adjust and the push. */
409 if (GET_CODE (dest) == REG
410 && GET_CODE (SET_SRC (pbody)) == REG
411 && REGNO (dest) == REGNO (SET_SRC (pbody)))
412 continue;
413 if (! (GET_CODE (dest) == MEM
414 && GET_CODE (XEXP (dest, 0)) == POST_INC
415 && XEXP (XEXP (dest, 0), 0) == stack_pointer_rtx))
416 break;
417 total_pushed -= GET_MODE_SIZE (GET_MODE (SET_DEST (pbody)));
418 /* If this push doesn't fully fit in the space
419 of the stack adjust that we deleted,
420 make another stack adjust here for what we
421 didn't use up. There should be peepholes
422 to recognize the resulting sequence of insns. */
423 if (total_pushed < 0)
425 emit_insn_before (gen_add2_insn (stack_pointer_rtx,
426 GEN_INT (- total_pushed)),
428 break;
430 XEXP (dest, 0)
431 = plus_constant (stack_pointer_rtx, total_pushed);
434 #endif
436 /* Detect and delete no-op move instructions
437 resulting from not allocating a parameter in a register. */
439 if (GET_CODE (body) == SET
440 && (SET_DEST (body) == SET_SRC (body)
441 || (GET_CODE (SET_DEST (body)) == MEM
442 && GET_CODE (SET_SRC (body)) == MEM
443 && rtx_equal_p (SET_SRC (body), SET_DEST (body))))
444 && ! (GET_CODE (SET_DEST (body)) == MEM
445 && MEM_VOLATILE_P (SET_DEST (body)))
446 && ! (GET_CODE (SET_SRC (body)) == MEM
447 && MEM_VOLATILE_P (SET_SRC (body))))
448 delete_computation (insn);
450 /* Detect and ignore no-op move instructions
451 resulting from smart or fortuitous register allocation. */
453 else if (GET_CODE (body) == SET)
455 int sreg = true_regnum (SET_SRC (body));
456 int dreg = true_regnum (SET_DEST (body));
458 if (sreg == dreg && sreg >= 0)
459 delete_insn (insn);
460 else if (sreg >= 0 && dreg >= 0)
462 rtx trial;
463 rtx tem = find_equiv_reg (NULL_RTX, insn, 0,
464 sreg, NULL_PTR, dreg,
465 GET_MODE (SET_SRC (body)));
467 if (tem != 0
468 && GET_MODE (tem) == GET_MODE (SET_DEST (body)))
470 /* DREG may have been the target of a REG_DEAD note in
471 the insn which makes INSN redundant. If so, reorg
472 would still think it is dead. So search for such a
473 note and delete it if we find it. */
474 if (! find_regno_note (insn, REG_UNUSED, dreg))
475 for (trial = prev_nonnote_insn (insn);
476 trial && GET_CODE (trial) != CODE_LABEL;
477 trial = prev_nonnote_insn (trial))
478 if (find_regno_note (trial, REG_DEAD, dreg))
480 remove_death (dreg, trial);
481 break;
484 /* Deleting insn could lose a death-note for SREG. */
485 if ((trial = find_regno_note (insn, REG_DEAD, sreg)))
487 /* Change this into a USE so that we won't emit
488 code for it, but still can keep the note. */
489 PATTERN (insn)
490 = gen_rtx_USE (VOIDmode, XEXP (trial, 0));
491 INSN_CODE (insn) = -1;
492 /* Remove all reg notes but the REG_DEAD one. */
493 REG_NOTES (insn) = trial;
494 XEXP (trial, 1) = NULL_RTX;
496 else
497 delete_insn (insn);
500 else if (dreg >= 0 && CONSTANT_P (SET_SRC (body))
501 && find_equiv_reg (SET_SRC (body), insn, 0, dreg,
502 NULL_PTR, 0,
503 GET_MODE (SET_DEST (body))))
505 /* This handles the case where we have two consecutive
506 assignments of the same constant to pseudos that didn't
507 get a hard reg. Each SET from the constant will be
508 converted into a SET of the spill register and an
509 output reload will be made following it. This produces
510 two loads of the same constant into the same spill
511 register. */
513 rtx in_insn = insn;
515 /* Look back for a death note for the first reg.
516 If there is one, it is no longer accurate. */
517 while (in_insn && GET_CODE (in_insn) != CODE_LABEL)
519 if ((GET_CODE (in_insn) == INSN
520 || GET_CODE (in_insn) == JUMP_INSN)
521 && find_regno_note (in_insn, REG_DEAD, dreg))
523 remove_death (dreg, in_insn);
524 break;
526 in_insn = PREV_INSN (in_insn);
529 /* Delete the second load of the value. */
530 delete_insn (insn);
533 else if (GET_CODE (body) == PARALLEL)
535 /* If each part is a set between two identical registers or
536 a USE or CLOBBER, delete the insn. */
537 int i, sreg, dreg;
538 rtx tem;
540 for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
542 tem = XVECEXP (body, 0, i);
543 if (GET_CODE (tem) == USE || GET_CODE (tem) == CLOBBER)
544 continue;
546 if (GET_CODE (tem) != SET
547 || (sreg = true_regnum (SET_SRC (tem))) < 0
548 || (dreg = true_regnum (SET_DEST (tem))) < 0
549 || dreg != sreg)
550 break;
553 if (i < 0)
554 delete_insn (insn);
556 /* Also delete insns to store bit fields if they are no-ops. */
557 /* Not worth the hair to detect this in the big-endian case. */
558 else if (! BYTES_BIG_ENDIAN
559 && GET_CODE (body) == SET
560 && GET_CODE (SET_DEST (body)) == ZERO_EXTRACT
561 && XEXP (SET_DEST (body), 2) == const0_rtx
562 && XEXP (SET_DEST (body), 0) == SET_SRC (body)
563 && ! (GET_CODE (SET_SRC (body)) == MEM
564 && MEM_VOLATILE_P (SET_SRC (body))))
565 delete_insn (insn);
567 insn = next;
570 /* If we haven't yet gotten to reload and we have just run regscan,
571 delete any insn that sets a register that isn't used elsewhere.
572 This helps some of the optimizations below by having less insns
573 being jumped around. */
575 if (! reload_completed && after_regscan)
576 for (insn = f; insn; insn = next)
578 rtx set = single_set (insn);
580 next = NEXT_INSN (insn);
582 if (set && GET_CODE (SET_DEST (set)) == REG
583 && REGNO (SET_DEST (set)) >= FIRST_PSEUDO_REGISTER
584 && REGNO_FIRST_UID (REGNO (SET_DEST (set))) == INSN_UID (insn)
585 /* We use regno_last_note_uid so as not to delete the setting
586 of a reg that's used in notes. A subsequent optimization
587 might arrange to use that reg for real. */
588 && REGNO_LAST_NOTE_UID (REGNO (SET_DEST (set))) == INSN_UID (insn)
589 && ! side_effects_p (SET_SRC (set))
590 && ! find_reg_note (insn, REG_RETVAL, 0))
591 delete_insn (insn);
594 /* Now iterate optimizing jumps until nothing changes over one pass. */
595 changed = 1;
596 old_max_reg = max_reg_num ();
597 while (changed)
599 changed = 0;
601 for (insn = f; insn; insn = next)
603 rtx reallabelprev;
604 rtx temp, temp1, temp2, temp3, temp4, temp5, temp6;
605 rtx nlabel;
606 int this_is_simplejump, this_is_condjump, reversep = 0;
607 int this_is_condjump_in_parallel;
609 #if 0
610 /* If NOT the first iteration, if this is the last jump pass
611 (just before final), do the special peephole optimizations.
612 Avoiding the first iteration gives ordinary jump opts
613 a chance to work before peephole opts. */
615 if (reload_completed && !first && !flag_no_peephole)
616 if (GET_CODE (insn) == INSN || GET_CODE (insn) == JUMP_INSN)
617 peephole (insn);
618 #endif
620 /* That could have deleted some insns after INSN, so check now
621 what the following insn is. */
623 next = NEXT_INSN (insn);
625 /* See if this is a NOTE_INSN_LOOP_BEG followed by an unconditional
626 jump. Try to optimize by duplicating the loop exit test if so.
627 This is only safe immediately after regscan, because it uses
628 the values of regno_first_uid and regno_last_uid. */
629 if (after_regscan && GET_CODE (insn) == NOTE
630 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG
631 && (temp1 = next_nonnote_insn (insn)) != 0
632 && simplejump_p (temp1))
634 temp = PREV_INSN (insn);
635 if (duplicate_loop_exit_test (insn))
637 changed = 1;
638 next = NEXT_INSN (temp);
639 continue;
643 if (GET_CODE (insn) != JUMP_INSN)
644 continue;
646 this_is_simplejump = simplejump_p (insn);
647 this_is_condjump = condjump_p (insn);
648 this_is_condjump_in_parallel = condjump_in_parallel_p (insn);
650 /* Tension the labels in dispatch tables. */
652 if (GET_CODE (PATTERN (insn)) == ADDR_VEC)
653 changed |= tension_vector_labels (PATTERN (insn), 0);
654 if (GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC)
655 changed |= tension_vector_labels (PATTERN (insn), 1);
657 /* If a dispatch table always goes to the same place,
658 get rid of it and replace the insn that uses it. */
660 if (GET_CODE (PATTERN (insn)) == ADDR_VEC
661 || GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC)
663 int i;
664 rtx pat = PATTERN (insn);
665 int diff_vec_p = GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC;
666 int len = XVECLEN (pat, diff_vec_p);
667 rtx dispatch = prev_real_insn (insn);
669 for (i = 0; i < len; i++)
670 if (XEXP (XVECEXP (pat, diff_vec_p, i), 0)
671 != XEXP (XVECEXP (pat, diff_vec_p, 0), 0))
672 break;
673 if (i == len
674 && dispatch != 0
675 && GET_CODE (dispatch) == JUMP_INSN
676 && JUMP_LABEL (dispatch) != 0
677 /* Don't mess with a casesi insn. */
678 && !(GET_CODE (PATTERN (dispatch)) == SET
679 && (GET_CODE (SET_SRC (PATTERN (dispatch)))
680 == IF_THEN_ELSE))
681 && next_real_insn (JUMP_LABEL (dispatch)) == insn)
683 redirect_tablejump (dispatch,
684 XEXP (XVECEXP (pat, diff_vec_p, 0), 0));
685 changed = 1;
689 reallabelprev = prev_active_insn (JUMP_LABEL (insn));
691 /* If a jump references the end of the function, try to turn
692 it into a RETURN insn, possibly a conditional one. */
693 if (JUMP_LABEL (insn)
694 && (next_active_insn (JUMP_LABEL (insn)) == 0
695 || GET_CODE (PATTERN (next_active_insn (JUMP_LABEL (insn))))
696 == RETURN))
697 changed |= redirect_jump (insn, NULL_RTX);
699 /* Detect jump to following insn. */
700 if (reallabelprev == insn && condjump_p (insn))
702 next = next_real_insn (JUMP_LABEL (insn));
703 delete_jump (insn);
704 changed = 1;
705 continue;
708 /* If we have an unconditional jump preceded by a USE, try to put
709 the USE before the target and jump there. This simplifies many
710 of the optimizations below since we don't have to worry about
711 dealing with these USE insns. We only do this if the label
712 being branch to already has the identical USE or if code
713 never falls through to that label. */
715 if (this_is_simplejump
716 && (temp = prev_nonnote_insn (insn)) != 0
717 && GET_CODE (temp) == INSN && GET_CODE (PATTERN (temp)) == USE
718 && (temp1 = prev_nonnote_insn (JUMP_LABEL (insn))) != 0
719 && (GET_CODE (temp1) == BARRIER
720 || (GET_CODE (temp1) == INSN
721 && rtx_equal_p (PATTERN (temp), PATTERN (temp1))))
722 /* Don't do this optimization if we have a loop containing only
723 the USE instruction, and the loop start label has a usage
724 count of 1. This is because we will redo this optimization
725 everytime through the outer loop, and jump opt will never
726 exit. */
727 && ! ((temp2 = prev_nonnote_insn (temp)) != 0
728 && temp2 == JUMP_LABEL (insn)
729 && LABEL_NUSES (temp2) == 1))
731 if (GET_CODE (temp1) == BARRIER)
733 emit_insn_after (PATTERN (temp), temp1);
734 temp1 = NEXT_INSN (temp1);
737 delete_insn (temp);
738 redirect_jump (insn, get_label_before (temp1));
739 reallabelprev = prev_real_insn (temp1);
740 changed = 1;
743 /* Simplify if (...) x = a; else x = b; by converting it
744 to x = b; if (...) x = a;
745 if B is sufficiently simple, the test doesn't involve X,
746 and nothing in the test modifies B or X.
748 If we have small register classes, we also can't do this if X
749 is a hard register.
751 If the "x = b;" insn has any REG_NOTES, we don't do this because
752 of the possibility that we are running after CSE and there is a
753 REG_EQUAL note that is only valid if the branch has already been
754 taken. If we move the insn with the REG_EQUAL note, we may
755 fold the comparison to always be false in a later CSE pass.
756 (We could also delete the REG_NOTES when moving the insn, but it
757 seems simpler to not move it.) An exception is that we can move
758 the insn if the only note is a REG_EQUAL or REG_EQUIV whose
759 value is the same as "b".
761 INSN is the branch over the `else' part.
763 We set:
765 TEMP to the jump insn preceding "x = a;"
766 TEMP1 to X
767 TEMP2 to the insn that sets "x = b;"
768 TEMP3 to the insn that sets "x = a;"
769 TEMP4 to the set of "x = b"; */
771 if (this_is_simplejump
772 && (temp3 = prev_active_insn (insn)) != 0
773 && GET_CODE (temp3) == INSN
774 && (temp4 = single_set (temp3)) != 0
775 && GET_CODE (temp1 = SET_DEST (temp4)) == REG
776 && (! SMALL_REGISTER_CLASSES
777 || REGNO (temp1) >= FIRST_PSEUDO_REGISTER)
778 && (temp2 = next_active_insn (insn)) != 0
779 && GET_CODE (temp2) == INSN
780 && (temp4 = single_set (temp2)) != 0
781 && rtx_equal_p (SET_DEST (temp4), temp1)
782 && ! side_effects_p (SET_SRC (temp4))
783 && ! may_trap_p (SET_SRC (temp4))
784 && (REG_NOTES (temp2) == 0
785 || ((REG_NOTE_KIND (REG_NOTES (temp2)) == REG_EQUAL
786 || REG_NOTE_KIND (REG_NOTES (temp2)) == REG_EQUIV)
787 && XEXP (REG_NOTES (temp2), 1) == 0
788 && rtx_equal_p (XEXP (REG_NOTES (temp2), 0),
789 SET_SRC (temp4))))
790 && (temp = prev_active_insn (temp3)) != 0
791 && condjump_p (temp) && ! simplejump_p (temp)
792 /* TEMP must skip over the "x = a;" insn */
793 && prev_real_insn (JUMP_LABEL (temp)) == insn
794 && no_labels_between_p (insn, JUMP_LABEL (temp))
795 /* There must be no other entries to the "x = b;" insn. */
796 && no_labels_between_p (JUMP_LABEL (temp), temp2)
797 /* INSN must either branch to the insn after TEMP2 or the insn
798 after TEMP2 must branch to the same place as INSN. */
799 && (reallabelprev == temp2
800 || ((temp5 = next_active_insn (temp2)) != 0
801 && simplejump_p (temp5)
802 && JUMP_LABEL (temp5) == JUMP_LABEL (insn))))
804 /* The test expression, X, may be a complicated test with
805 multiple branches. See if we can find all the uses of
806 the label that TEMP branches to without hitting a CALL_INSN
807 or a jump to somewhere else. */
808 rtx target = JUMP_LABEL (temp);
809 int nuses = LABEL_NUSES (target);
810 rtx p;
811 #ifdef HAVE_cc0
812 rtx q;
813 #endif
815 /* Set P to the first jump insn that goes around "x = a;". */
816 for (p = temp; nuses && p; p = prev_nonnote_insn (p))
818 if (GET_CODE (p) == JUMP_INSN)
820 if (condjump_p (p) && ! simplejump_p (p)
821 && JUMP_LABEL (p) == target)
823 nuses--;
824 if (nuses == 0)
825 break;
827 else
828 break;
830 else if (GET_CODE (p) == CALL_INSN)
831 break;
834 #ifdef HAVE_cc0
835 /* We cannot insert anything between a set of cc and its use
836 so if P uses cc0, we must back up to the previous insn. */
837 q = prev_nonnote_insn (p);
838 if (q && GET_RTX_CLASS (GET_CODE (q)) == 'i'
839 && sets_cc0_p (PATTERN (q)))
840 p = q;
841 #endif
843 if (p)
844 p = PREV_INSN (p);
846 /* If we found all the uses and there was no data conflict, we
847 can move the assignment unless we can branch into the middle
848 from somewhere. */
849 if (nuses == 0 && p
850 && no_labels_between_p (p, insn)
851 && ! reg_referenced_between_p (temp1, p, NEXT_INSN (temp3))
852 && ! reg_set_between_p (temp1, p, temp3)
853 && (GET_CODE (SET_SRC (temp4)) == CONST_INT
854 || ! modified_between_p (SET_SRC (temp4), p, temp2))
855 /* Verify that registers used by the jump are not clobbered
856 by the instruction being moved. */
857 && ! modified_between_p (PATTERN (temp), temp2,
858 NEXT_INSN (temp2)))
860 emit_insn_after_with_line_notes (PATTERN (temp2), p, temp2);
861 delete_insn (temp2);
863 /* Set NEXT to an insn that we know won't go away. */
864 next = next_active_insn (insn);
866 /* Delete the jump around the set. Note that we must do
867 this before we redirect the test jumps so that it won't
868 delete the code immediately following the assignment
869 we moved (which might be a jump). */
871 delete_insn (insn);
873 /* We either have two consecutive labels or a jump to
874 a jump, so adjust all the JUMP_INSNs to branch to where
875 INSN branches to. */
876 for (p = NEXT_INSN (p); p != next; p = NEXT_INSN (p))
877 if (GET_CODE (p) == JUMP_INSN)
878 redirect_jump (p, target);
880 changed = 1;
881 continue;
885 /* Simplify if (...) { x = a; goto l; } x = b; by converting it
886 to x = a; if (...) goto l; x = b;
887 if A is sufficiently simple, the test doesn't involve X,
888 and nothing in the test modifies A or X.
890 If we have small register classes, we also can't do this if X
891 is a hard register.
893 If the "x = a;" insn has any REG_NOTES, we don't do this because
894 of the possibility that we are running after CSE and there is a
895 REG_EQUAL note that is only valid if the branch has already been
896 taken. If we move the insn with the REG_EQUAL note, we may
897 fold the comparison to always be false in a later CSE pass.
898 (We could also delete the REG_NOTES when moving the insn, but it
899 seems simpler to not move it.) An exception is that we can move
900 the insn if the only note is a REG_EQUAL or REG_EQUIV whose
901 value is the same as "a".
903 INSN is the goto.
905 We set:
907 TEMP to the jump insn preceding "x = a;"
908 TEMP1 to X
909 TEMP2 to the insn that sets "x = b;"
910 TEMP3 to the insn that sets "x = a;"
911 TEMP4 to the set of "x = a"; */
913 if (this_is_simplejump
914 && (temp2 = next_active_insn (insn)) != 0
915 && GET_CODE (temp2) == INSN
916 && (temp4 = single_set (temp2)) != 0
917 && GET_CODE (temp1 = SET_DEST (temp4)) == REG
918 && (! SMALL_REGISTER_CLASSES
919 || REGNO (temp1) >= FIRST_PSEUDO_REGISTER)
920 && (temp3 = prev_active_insn (insn)) != 0
921 && GET_CODE (temp3) == INSN
922 && (temp4 = single_set (temp3)) != 0
923 && rtx_equal_p (SET_DEST (temp4), temp1)
924 && ! side_effects_p (SET_SRC (temp4))
925 && ! may_trap_p (SET_SRC (temp4))
926 && (REG_NOTES (temp3) == 0
927 || ((REG_NOTE_KIND (REG_NOTES (temp3)) == REG_EQUAL
928 || REG_NOTE_KIND (REG_NOTES (temp3)) == REG_EQUIV)
929 && XEXP (REG_NOTES (temp3), 1) == 0
930 && rtx_equal_p (XEXP (REG_NOTES (temp3), 0),
931 SET_SRC (temp4))))
932 && (temp = prev_active_insn (temp3)) != 0
933 && condjump_p (temp) && ! simplejump_p (temp)
934 /* TEMP must skip over the "x = a;" insn */
935 && prev_real_insn (JUMP_LABEL (temp)) == insn
936 && no_labels_between_p (temp, insn))
938 rtx prev_label = JUMP_LABEL (temp);
939 rtx insert_after = prev_nonnote_insn (temp);
941 #ifdef HAVE_cc0
942 /* We cannot insert anything between a set of cc and its use. */
943 if (insert_after && GET_RTX_CLASS (GET_CODE (insert_after)) == 'i'
944 && sets_cc0_p (PATTERN (insert_after)))
945 insert_after = prev_nonnote_insn (insert_after);
946 #endif
947 ++LABEL_NUSES (prev_label);
949 if (insert_after
950 && no_labels_between_p (insert_after, temp)
951 && ! reg_referenced_between_p (temp1, insert_after, temp3)
952 && ! reg_referenced_between_p (temp1, temp3,
953 NEXT_INSN (temp2))
954 && ! reg_set_between_p (temp1, insert_after, temp)
955 && ! modified_between_p (SET_SRC (temp4), insert_after, temp)
956 /* Verify that registers used by the jump are not clobbered
957 by the instruction being moved. */
958 && ! modified_between_p (PATTERN (temp), temp3,
959 NEXT_INSN (temp3))
960 && invert_jump (temp, JUMP_LABEL (insn)))
962 emit_insn_after_with_line_notes (PATTERN (temp3),
963 insert_after, temp3);
964 delete_insn (temp3);
965 delete_insn (insn);
966 /* Set NEXT to an insn that we know won't go away. */
967 next = temp2;
968 changed = 1;
970 if (prev_label && --LABEL_NUSES (prev_label) == 0)
971 delete_insn (prev_label);
972 if (changed)
973 continue;
976 #ifndef HAVE_cc0
977 /* If we have if (...) x = exp; and branches are expensive,
978 EXP is a single insn, does not have any side effects, cannot
979 trap, and is not too costly, convert this to
980 t = exp; if (...) x = t;
982 Don't do this when we have CC0 because it is unlikely to help
983 and we'd need to worry about where to place the new insn and
984 the potential for conflicts. We also can't do this when we have
985 notes on the insn for the same reason as above.
987 We set:
989 TEMP to the "x = exp;" insn.
990 TEMP1 to the single set in the "x = exp;" insn.
991 TEMP2 to "x". */
993 if (! reload_completed
994 && this_is_condjump && ! this_is_simplejump
995 && BRANCH_COST >= 3
996 && (temp = next_nonnote_insn (insn)) != 0
997 && GET_CODE (temp) == INSN
998 && REG_NOTES (temp) == 0
999 && (reallabelprev == temp
1000 || ((temp2 = next_active_insn (temp)) != 0
1001 && simplejump_p (temp2)
1002 && JUMP_LABEL (temp2) == JUMP_LABEL (insn)))
1003 && (temp1 = single_set (temp)) != 0
1004 && (temp2 = SET_DEST (temp1), GET_CODE (temp2) == REG)
1005 && (! SMALL_REGISTER_CLASSES
1006 || REGNO (temp2) >= FIRST_PSEUDO_REGISTER)
1007 && GET_CODE (SET_SRC (temp1)) != REG
1008 && GET_CODE (SET_SRC (temp1)) != SUBREG
1009 && GET_CODE (SET_SRC (temp1)) != CONST_INT
1010 && ! side_effects_p (SET_SRC (temp1))
1011 && ! may_trap_p (SET_SRC (temp1))
1012 && rtx_cost (SET_SRC (temp1), SET) < 10)
1014 rtx new = gen_reg_rtx (GET_MODE (temp2));
1016 if ((temp3 = find_insert_position (insn, temp))
1017 && validate_change (temp, &SET_DEST (temp1), new, 0))
1019 next = emit_insn_after (gen_move_insn (temp2, new), insn);
1020 emit_insn_after_with_line_notes (PATTERN (temp),
1021 PREV_INSN (temp3), temp);
1022 delete_insn (temp);
1023 reallabelprev = prev_active_insn (JUMP_LABEL (insn));
1025 if (after_regscan)
1027 reg_scan_update (temp3, NEXT_INSN (next), old_max_reg);
1028 old_max_reg = max_reg_num ();
1033 /* Similarly, if it takes two insns to compute EXP but they
1034 have the same destination. Here TEMP3 will be the second
1035 insn and TEMP4 the SET from that insn. */
1037 if (! reload_completed
1038 && this_is_condjump && ! this_is_simplejump
1039 && BRANCH_COST >= 4
1040 && (temp = next_nonnote_insn (insn)) != 0
1041 && GET_CODE (temp) == INSN
1042 && REG_NOTES (temp) == 0
1043 && (temp3 = next_nonnote_insn (temp)) != 0
1044 && GET_CODE (temp3) == INSN
1045 && REG_NOTES (temp3) == 0
1046 && (reallabelprev == temp3
1047 || ((temp2 = next_active_insn (temp3)) != 0
1048 && simplejump_p (temp2)
1049 && JUMP_LABEL (temp2) == JUMP_LABEL (insn)))
1050 && (temp1 = single_set (temp)) != 0
1051 && (temp2 = SET_DEST (temp1), GET_CODE (temp2) == REG)
1052 && GET_MODE_CLASS (GET_MODE (temp2)) == MODE_INT
1053 && (! SMALL_REGISTER_CLASSES
1054 || REGNO (temp2) >= FIRST_PSEUDO_REGISTER)
1055 && ! side_effects_p (SET_SRC (temp1))
1056 && ! may_trap_p (SET_SRC (temp1))
1057 && rtx_cost (SET_SRC (temp1), SET) < 10
1058 && (temp4 = single_set (temp3)) != 0
1059 && rtx_equal_p (SET_DEST (temp4), temp2)
1060 && ! side_effects_p (SET_SRC (temp4))
1061 && ! may_trap_p (SET_SRC (temp4))
1062 && rtx_cost (SET_SRC (temp4), SET) < 10)
1064 rtx new = gen_reg_rtx (GET_MODE (temp2));
1066 if ((temp5 = find_insert_position (insn, temp))
1067 && (temp6 = find_insert_position (insn, temp3))
1068 && validate_change (temp, &SET_DEST (temp1), new, 0))
1070 /* Use the earliest of temp5 and temp6. */
1071 if (temp5 != insn)
1072 temp6 = temp5;
1073 next = emit_insn_after (gen_move_insn (temp2, new), insn);
1074 emit_insn_after_with_line_notes (PATTERN (temp),
1075 PREV_INSN (temp6), temp);
1076 emit_insn_after_with_line_notes
1077 (replace_rtx (PATTERN (temp3), temp2, new),
1078 PREV_INSN (temp6), temp3);
1079 delete_insn (temp);
1080 delete_insn (temp3);
1081 reallabelprev = prev_active_insn (JUMP_LABEL (insn));
1083 if (after_regscan)
1085 reg_scan_update (temp6, NEXT_INSN (next), old_max_reg);
1086 old_max_reg = max_reg_num ();
1091 /* Finally, handle the case where two insns are used to
1092 compute EXP but a temporary register is used. Here we must
1093 ensure that the temporary register is not used anywhere else. */
1095 if (! reload_completed
1096 && after_regscan
1097 && this_is_condjump && ! this_is_simplejump
1098 && BRANCH_COST >= 4
1099 && (temp = next_nonnote_insn (insn)) != 0
1100 && GET_CODE (temp) == INSN
1101 && REG_NOTES (temp) == 0
1102 && (temp3 = next_nonnote_insn (temp)) != 0
1103 && GET_CODE (temp3) == INSN
1104 && REG_NOTES (temp3) == 0
1105 && (reallabelprev == temp3
1106 || ((temp2 = next_active_insn (temp3)) != 0
1107 && simplejump_p (temp2)
1108 && JUMP_LABEL (temp2) == JUMP_LABEL (insn)))
1109 && (temp1 = single_set (temp)) != 0
1110 && (temp5 = SET_DEST (temp1),
1111 (GET_CODE (temp5) == REG
1112 || (GET_CODE (temp5) == SUBREG
1113 && (temp5 = SUBREG_REG (temp5),
1114 GET_CODE (temp5) == REG))))
1115 && REGNO (temp5) >= FIRST_PSEUDO_REGISTER
1116 && REGNO_FIRST_UID (REGNO (temp5)) == INSN_UID (temp)
1117 && REGNO_LAST_UID (REGNO (temp5)) == INSN_UID (temp3)
1118 && ! side_effects_p (SET_SRC (temp1))
1119 && ! may_trap_p (SET_SRC (temp1))
1120 && rtx_cost (SET_SRC (temp1), SET) < 10
1121 && (temp4 = single_set (temp3)) != 0
1122 && (temp2 = SET_DEST (temp4), GET_CODE (temp2) == REG)
1123 && GET_MODE_CLASS (GET_MODE (temp2)) == MODE_INT
1124 && (! SMALL_REGISTER_CLASSES
1125 || REGNO (temp2) >= FIRST_PSEUDO_REGISTER)
1126 && rtx_equal_p (SET_DEST (temp4), temp2)
1127 && ! side_effects_p (SET_SRC (temp4))
1128 && ! may_trap_p (SET_SRC (temp4))
1129 && rtx_cost (SET_SRC (temp4), SET) < 10)
1131 rtx new = gen_reg_rtx (GET_MODE (temp2));
1133 if ((temp5 = find_insert_position (insn, temp))
1134 && (temp6 = find_insert_position (insn, temp3))
1135 && validate_change (temp3, &SET_DEST (temp4), new, 0))
1137 /* Use the earliest of temp5 and temp6. */
1138 if (temp5 != insn)
1139 temp6 = temp5;
1140 next = emit_insn_after (gen_move_insn (temp2, new), insn);
1141 emit_insn_after_with_line_notes (PATTERN (temp),
1142 PREV_INSN (temp6), temp);
1143 emit_insn_after_with_line_notes (PATTERN (temp3),
1144 PREV_INSN (temp6), temp3);
1145 delete_insn (temp);
1146 delete_insn (temp3);
1147 reallabelprev = prev_active_insn (JUMP_LABEL (insn));
1149 if (after_regscan)
1151 reg_scan_update (temp6, NEXT_INSN (next), old_max_reg);
1152 old_max_reg = max_reg_num ();
1156 #endif /* HAVE_cc0 */
1158 /* Try to use a conditional move (if the target has them), or a
1159 store-flag insn. The general case is:
1161 1) x = a; if (...) x = b; and
1162 2) if (...) x = b;
1164 If the jump would be faster, the machine should not have defined
1165 the movcc or scc insns!. These cases are often made by the
1166 previous optimization.
1168 The second case is treated as x = x; if (...) x = b;.
1170 INSN here is the jump around the store. We set:
1172 TEMP to the "x = b;" insn.
1173 TEMP1 to X.
1174 TEMP2 to B.
1175 TEMP3 to A (X in the second case).
1176 TEMP4 to the condition being tested.
1177 TEMP5 to the earliest insn used to find the condition. */
1179 if (/* We can't do this after reload has completed. */
1180 ! reload_completed
1181 && this_is_condjump && ! this_is_simplejump
1182 /* Set TEMP to the "x = b;" insn. */
1183 && (temp = next_nonnote_insn (insn)) != 0
1184 && GET_CODE (temp) == INSN
1185 && GET_CODE (PATTERN (temp)) == SET
1186 && GET_CODE (temp1 = SET_DEST (PATTERN (temp))) == REG
1187 && (! SMALL_REGISTER_CLASSES
1188 || REGNO (temp1) >= FIRST_PSEUDO_REGISTER)
1189 && ! side_effects_p (temp2 = SET_SRC (PATTERN (temp)))
1190 && ! may_trap_p (temp2)
1191 /* Allow either form, but prefer the former if both apply.
1192 There is no point in using the old value of TEMP1 if
1193 it is a register, since cse will alias them. It can
1194 lose if the old value were a hard register since CSE
1195 won't replace hard registers. Avoid using TEMP3 if
1196 small register classes and it is a hard register. */
1197 && (((temp3 = reg_set_last (temp1, insn)) != 0
1198 && ! (SMALL_REGISTER_CLASSES && GET_CODE (temp3) == REG
1199 && REGNO (temp3) < FIRST_PSEUDO_REGISTER))
1200 /* Make the latter case look like x = x; if (...) x = b; */
1201 || (temp3 = temp1, 1))
1202 /* INSN must either branch to the insn after TEMP or the insn
1203 after TEMP must branch to the same place as INSN. */
1204 && (reallabelprev == temp
1205 || ((temp4 = next_active_insn (temp)) != 0
1206 && simplejump_p (temp4)
1207 && JUMP_LABEL (temp4) == JUMP_LABEL (insn)))
1208 && (temp4 = get_condition (insn, &temp5)) != 0
1209 /* We must be comparing objects whose modes imply the size.
1210 We could handle BLKmode if (1) emit_store_flag could
1211 and (2) we could find the size reliably. */
1212 && GET_MODE (XEXP (temp4, 0)) != BLKmode
1213 /* Even if branches are cheap, the store_flag optimization
1214 can win when the operation to be performed can be
1215 expressed directly. */
1216 #ifdef HAVE_cc0
1217 /* If the previous insn sets CC0 and something else, we can't
1218 do this since we are going to delete that insn. */
1220 && ! ((temp6 = prev_nonnote_insn (insn)) != 0
1221 && GET_CODE (temp6) == INSN
1222 && (sets_cc0_p (PATTERN (temp6)) == -1
1223 || (sets_cc0_p (PATTERN (temp6)) == 1
1224 && FIND_REG_INC_NOTE (temp6, NULL_RTX))))
1225 #endif
1228 #ifdef HAVE_conditional_move
1229 /* First try a conditional move. */
1231 enum rtx_code code = GET_CODE (temp4);
1232 rtx var = temp1;
1233 rtx cond0, cond1, aval, bval;
1234 rtx target;
1236 /* Copy the compared variables into cond0 and cond1, so that
1237 any side effects performed in or after the old comparison,
1238 will not affect our compare which will come later. */
1239 /* ??? Is it possible to just use the comparison in the jump
1240 insn? After all, we're going to delete it. We'd have
1241 to modify emit_conditional_move to take a comparison rtx
1242 instead or write a new function. */
1243 cond0 = gen_reg_rtx (GET_MODE (XEXP (temp4, 0)));
1244 /* We want the target to be able to simplify comparisons with
1245 zero (and maybe other constants as well), so don't create
1246 pseudos for them. There's no need to either. */
1247 if (GET_CODE (XEXP (temp4, 1)) == CONST_INT
1248 || GET_CODE (XEXP (temp4, 1)) == CONST_DOUBLE)
1249 cond1 = XEXP (temp4, 1);
1250 else
1251 cond1 = gen_reg_rtx (GET_MODE (XEXP (temp4, 1)));
1253 aval = temp3;
1254 bval = temp2;
1256 start_sequence ();
1257 target = emit_conditional_move (var, code,
1258 cond0, cond1, VOIDmode,
1259 aval, bval, GET_MODE (var),
1260 (code == LTU || code == GEU
1261 || code == LEU || code == GTU));
1263 if (target)
1265 rtx seq1,seq2,last;
1267 /* Save the conditional move sequence but don't emit it
1268 yet. On some machines, like the alpha, it is possible
1269 that temp5 == insn, so next generate the sequence that
1270 saves the compared values and then emit both
1271 sequences ensuring seq1 occurs before seq2. */
1272 seq2 = get_insns ();
1273 end_sequence ();
1275 /* Now that we can't fail, generate the copy insns that
1276 preserve the compared values. */
1277 start_sequence ();
1278 emit_move_insn (cond0, XEXP (temp4, 0));
1279 if (cond1 != XEXP (temp4, 1))
1280 emit_move_insn (cond1, XEXP (temp4, 1));
1281 seq1 = get_insns ();
1282 end_sequence ();
1284 emit_insns_before (seq1, temp5);
1285 /* Insert conditional move after insn, to be sure that
1286 the jump and a possible compare won't be separated */
1287 last = emit_insns_after (seq2, insn);
1289 /* ??? We can also delete the insn that sets X to A.
1290 Flow will do it too though. */
1291 delete_insn (temp);
1292 next = NEXT_INSN (insn);
1293 delete_jump (insn);
1295 if (after_regscan)
1297 reg_scan_update (seq1, NEXT_INSN (last), old_max_reg);
1298 old_max_reg = max_reg_num ();
1301 changed = 1;
1302 continue;
1304 else
1305 end_sequence ();
1307 #endif
1309 /* That didn't work, try a store-flag insn.
1311 We further divide the cases into:
1313 1) x = a; if (...) x = b; and either A or B is zero,
1314 2) if (...) x = 0; and jumps are expensive,
1315 3) x = a; if (...) x = b; and A and B are constants where all
1316 the set bits in A are also set in B and jumps are expensive,
1317 4) x = a; if (...) x = b; and A and B non-zero, and jumps are
1318 more expensive, and
1319 5) if (...) x = b; if jumps are even more expensive. */
1321 if (GET_MODE_CLASS (GET_MODE (temp1)) == MODE_INT
1322 && ((GET_CODE (temp3) == CONST_INT)
1323 /* Make the latter case look like
1324 x = x; if (...) x = 0; */
1325 || (temp3 = temp1,
1326 ((BRANCH_COST >= 2
1327 && temp2 == const0_rtx)
1328 || BRANCH_COST >= 3)))
1329 /* If B is zero, OK; if A is zero, can only do (1) if we
1330 can reverse the condition. See if (3) applies possibly
1331 by reversing the condition. Prefer reversing to (4) when
1332 branches are very expensive. */
1333 && (((BRANCH_COST >= 2
1334 || STORE_FLAG_VALUE == -1
1335 || (STORE_FLAG_VALUE == 1
1336 /* Check that the mask is a power of two,
1337 so that it can probably be generated
1338 with a shift. */
1339 && GET_CODE (temp3) == CONST_INT
1340 && exact_log2 (INTVAL (temp3)) >= 0))
1341 && (reversep = 0, temp2 == const0_rtx))
1342 || ((BRANCH_COST >= 2
1343 || STORE_FLAG_VALUE == -1
1344 || (STORE_FLAG_VALUE == 1
1345 && GET_CODE (temp2) == CONST_INT
1346 && exact_log2 (INTVAL (temp2)) >= 0))
1347 && temp3 == const0_rtx
1348 && (reversep = can_reverse_comparison_p (temp4, insn)))
1349 || (BRANCH_COST >= 2
1350 && GET_CODE (temp2) == CONST_INT
1351 && GET_CODE (temp3) == CONST_INT
1352 && ((INTVAL (temp2) & INTVAL (temp3)) == INTVAL (temp2)
1353 || ((INTVAL (temp2) & INTVAL (temp3)) == INTVAL (temp3)
1354 && (reversep = can_reverse_comparison_p (temp4,
1355 insn)))))
1356 || BRANCH_COST >= 3)
1359 enum rtx_code code = GET_CODE (temp4);
1360 rtx uval, cval, var = temp1;
1361 int normalizep;
1362 rtx target;
1364 /* If necessary, reverse the condition. */
1365 if (reversep)
1366 code = reverse_condition (code), uval = temp2, cval = temp3;
1367 else
1368 uval = temp3, cval = temp2;
1370 /* If CVAL is non-zero, normalize to -1. Otherwise, if UVAL
1371 is the constant 1, it is best to just compute the result
1372 directly. If UVAL is constant and STORE_FLAG_VALUE
1373 includes all of its bits, it is best to compute the flag
1374 value unnormalized and `and' it with UVAL. Otherwise,
1375 normalize to -1 and `and' with UVAL. */
1376 normalizep = (cval != const0_rtx ? -1
1377 : (uval == const1_rtx ? 1
1378 : (GET_CODE (uval) == CONST_INT
1379 && (INTVAL (uval) & ~STORE_FLAG_VALUE) == 0)
1380 ? 0 : -1));
1382 /* We will be putting the store-flag insn immediately in
1383 front of the comparison that was originally being done,
1384 so we know all the variables in TEMP4 will be valid.
1385 However, this might be in front of the assignment of
1386 A to VAR. If it is, it would clobber the store-flag
1387 we will be emitting.
1389 Therefore, emit into a temporary which will be copied to
1390 VAR immediately after TEMP. */
1392 start_sequence ();
1393 target = emit_store_flag (gen_reg_rtx (GET_MODE (var)), code,
1394 XEXP (temp4, 0), XEXP (temp4, 1),
1395 VOIDmode,
1396 (code == LTU || code == LEU
1397 || code == GEU || code == GTU),
1398 normalizep);
1399 if (target)
1401 rtx seq;
1402 rtx before = insn;
1404 seq = get_insns ();
1405 end_sequence ();
1407 /* Put the store-flag insns in front of the first insn
1408 used to compute the condition to ensure that we
1409 use the same values of them as the current
1410 comparison. However, the remainder of the insns we
1411 generate will be placed directly in front of the
1412 jump insn, in case any of the pseudos we use
1413 are modified earlier. */
1415 emit_insns_before (seq, temp5);
1417 start_sequence ();
1419 /* Both CVAL and UVAL are non-zero. */
1420 if (cval != const0_rtx && uval != const0_rtx)
1422 rtx tem1, tem2;
1424 tem1 = expand_and (uval, target, NULL_RTX);
1425 if (GET_CODE (cval) == CONST_INT
1426 && GET_CODE (uval) == CONST_INT
1427 && (INTVAL (cval) & INTVAL (uval)) == INTVAL (cval))
1428 tem2 = cval;
1429 else
1431 tem2 = expand_unop (GET_MODE (var), one_cmpl_optab,
1432 target, NULL_RTX, 0);
1433 tem2 = expand_and (cval, tem2,
1434 (GET_CODE (tem2) == REG
1435 ? tem2 : 0));
1438 /* If we usually make new pseudos, do so here. This
1439 turns out to help machines that have conditional
1440 move insns. */
1441 /* ??? Conditional moves have already been handled.
1442 This may be obsolete. */
1444 if (flag_expensive_optimizations)
1445 target = 0;
1447 target = expand_binop (GET_MODE (var), ior_optab,
1448 tem1, tem2, target,
1449 1, OPTAB_WIDEN);
1451 else if (normalizep != 1)
1453 /* We know that either CVAL or UVAL is zero. If
1454 UVAL is zero, negate TARGET and `and' with CVAL.
1455 Otherwise, `and' with UVAL. */
1456 if (uval == const0_rtx)
1458 target = expand_unop (GET_MODE (var), one_cmpl_optab,
1459 target, NULL_RTX, 0);
1460 uval = cval;
1463 target = expand_and (uval, target,
1464 (GET_CODE (target) == REG
1465 && ! preserve_subexpressions_p ()
1466 ? target : NULL_RTX));
1469 emit_move_insn (var, target);
1470 seq = get_insns ();
1471 end_sequence ();
1472 #ifdef HAVE_cc0
1473 /* If INSN uses CC0, we must not separate it from the
1474 insn that sets cc0. */
1475 if (reg_mentioned_p (cc0_rtx, PATTERN (before)))
1476 before = prev_nonnote_insn (before);
1477 #endif
1478 emit_insns_before (seq, before);
1480 delete_insn (temp);
1481 next = NEXT_INSN (insn);
1482 delete_jump (insn);
1484 if (after_regscan)
1486 reg_scan_update (seq, NEXT_INSN (next), old_max_reg);
1487 old_max_reg = max_reg_num ();
1490 changed = 1;
1491 continue;
1493 else
1494 end_sequence ();
1498 /* If branches are expensive, convert
1499 if (foo) bar++; to bar += (foo != 0);
1500 and similarly for "bar--;"
1502 INSN is the conditional branch around the arithmetic. We set:
1504 TEMP is the arithmetic insn.
1505 TEMP1 is the SET doing the arithmetic.
1506 TEMP2 is the operand being incremented or decremented.
1507 TEMP3 to the condition being tested.
1508 TEMP4 to the earliest insn used to find the condition. */
1510 if ((BRANCH_COST >= 2
1511 #ifdef HAVE_incscc
1512 || HAVE_incscc
1513 #endif
1514 #ifdef HAVE_decscc
1515 || HAVE_decscc
1516 #endif
1518 && ! reload_completed
1519 && this_is_condjump && ! this_is_simplejump
1520 && (temp = next_nonnote_insn (insn)) != 0
1521 && (temp1 = single_set (temp)) != 0
1522 && (temp2 = SET_DEST (temp1),
1523 GET_MODE_CLASS (GET_MODE (temp2)) == MODE_INT)
1524 && GET_CODE (SET_SRC (temp1)) == PLUS
1525 && (XEXP (SET_SRC (temp1), 1) == const1_rtx
1526 || XEXP (SET_SRC (temp1), 1) == constm1_rtx)
1527 && rtx_equal_p (temp2, XEXP (SET_SRC (temp1), 0))
1528 && ! side_effects_p (temp2)
1529 && ! may_trap_p (temp2)
1530 /* INSN must either branch to the insn after TEMP or the insn
1531 after TEMP must branch to the same place as INSN. */
1532 && (reallabelprev == temp
1533 || ((temp3 = next_active_insn (temp)) != 0
1534 && simplejump_p (temp3)
1535 && JUMP_LABEL (temp3) == JUMP_LABEL (insn)))
1536 && (temp3 = get_condition (insn, &temp4)) != 0
1537 /* We must be comparing objects whose modes imply the size.
1538 We could handle BLKmode if (1) emit_store_flag could
1539 and (2) we could find the size reliably. */
1540 && GET_MODE (XEXP (temp3, 0)) != BLKmode
1541 && can_reverse_comparison_p (temp3, insn))
1543 rtx temp6, target = 0, seq, init_insn = 0, init = temp2;
1544 enum rtx_code code = reverse_condition (GET_CODE (temp3));
1546 start_sequence ();
1548 /* It must be the case that TEMP2 is not modified in the range
1549 [TEMP4, INSN). The one exception we make is if the insn
1550 before INSN sets TEMP2 to something which is also unchanged
1551 in that range. In that case, we can move the initialization
1552 into our sequence. */
1554 if ((temp5 = prev_active_insn (insn)) != 0
1555 && no_labels_between_p (temp5, insn)
1556 && GET_CODE (temp5) == INSN
1557 && (temp6 = single_set (temp5)) != 0
1558 && rtx_equal_p (temp2, SET_DEST (temp6))
1559 && (CONSTANT_P (SET_SRC (temp6))
1560 || GET_CODE (SET_SRC (temp6)) == REG
1561 || GET_CODE (SET_SRC (temp6)) == SUBREG))
1563 emit_insn (PATTERN (temp5));
1564 init_insn = temp5;
1565 init = SET_SRC (temp6);
1568 if (CONSTANT_P (init)
1569 || ! reg_set_between_p (init, PREV_INSN (temp4), insn))
1570 target = emit_store_flag (gen_reg_rtx (GET_MODE (temp2)), code,
1571 XEXP (temp3, 0), XEXP (temp3, 1),
1572 VOIDmode,
1573 (code == LTU || code == LEU
1574 || code == GTU || code == GEU), 1);
1576 /* If we can do the store-flag, do the addition or
1577 subtraction. */
1579 if (target)
1580 target = expand_binop (GET_MODE (temp2),
1581 (XEXP (SET_SRC (temp1), 1) == const1_rtx
1582 ? add_optab : sub_optab),
1583 temp2, target, temp2, 0, OPTAB_WIDEN);
1585 if (target != 0)
1587 /* Put the result back in temp2 in case it isn't already.
1588 Then replace the jump, possible a CC0-setting insn in
1589 front of the jump, and TEMP, with the sequence we have
1590 made. */
1592 if (target != temp2)
1593 emit_move_insn (temp2, target);
1595 seq = get_insns ();
1596 end_sequence ();
1598 emit_insns_before (seq, temp4);
1599 delete_insn (temp);
1601 if (init_insn)
1602 delete_insn (init_insn);
1604 next = NEXT_INSN (insn);
1605 #ifdef HAVE_cc0
1606 delete_insn (prev_nonnote_insn (insn));
1607 #endif
1608 delete_insn (insn);
1610 if (after_regscan)
1612 reg_scan_update (seq, NEXT_INSN (next), old_max_reg);
1613 old_max_reg = max_reg_num ();
1616 changed = 1;
1617 continue;
1619 else
1620 end_sequence ();
1623 /* Simplify if (...) x = 1; else {...} if (x) ...
1624 We recognize this case scanning backwards as well.
1626 TEMP is the assignment to x;
1627 TEMP1 is the label at the head of the second if. */
1628 /* ?? This should call get_condition to find the values being
1629 compared, instead of looking for a COMPARE insn when HAVE_cc0
1630 is not defined. This would allow it to work on the m88k. */
1631 /* ?? This optimization is only safe before cse is run if HAVE_cc0
1632 is not defined and the condition is tested by a separate compare
1633 insn. This is because the code below assumes that the result
1634 of the compare dies in the following branch.
1636 Not only that, but there might be other insns between the
1637 compare and branch whose results are live. Those insns need
1638 to be executed.
1640 A way to fix this is to move the insns at JUMP_LABEL (insn)
1641 to before INSN. If we are running before flow, they will
1642 be deleted if they aren't needed. But this doesn't work
1643 well after flow.
1645 This is really a special-case of jump threading, anyway. The
1646 right thing to do is to replace this and jump threading with
1647 much simpler code in cse.
1649 This code has been turned off in the non-cc0 case in the
1650 meantime. */
1652 #ifdef HAVE_cc0
1653 else if (this_is_simplejump
1654 /* Safe to skip USE and CLOBBER insns here
1655 since they will not be deleted. */
1656 && (temp = prev_active_insn (insn))
1657 && no_labels_between_p (temp, insn)
1658 && GET_CODE (temp) == INSN
1659 && GET_CODE (PATTERN (temp)) == SET
1660 && GET_CODE (SET_DEST (PATTERN (temp))) == REG
1661 && CONSTANT_P (SET_SRC (PATTERN (temp)))
1662 && (temp1 = next_active_insn (JUMP_LABEL (insn)))
1663 /* If we find that the next value tested is `x'
1664 (TEMP1 is the insn where this happens), win. */
1665 && GET_CODE (temp1) == INSN
1666 && GET_CODE (PATTERN (temp1)) == SET
1667 #ifdef HAVE_cc0
1668 /* Does temp1 `tst' the value of x? */
1669 && SET_SRC (PATTERN (temp1)) == SET_DEST (PATTERN (temp))
1670 && SET_DEST (PATTERN (temp1)) == cc0_rtx
1671 && (temp1 = next_nonnote_insn (temp1))
1672 #else
1673 /* Does temp1 compare the value of x against zero? */
1674 && GET_CODE (SET_SRC (PATTERN (temp1))) == COMPARE
1675 && XEXP (SET_SRC (PATTERN (temp1)), 1) == const0_rtx
1676 && (XEXP (SET_SRC (PATTERN (temp1)), 0)
1677 == SET_DEST (PATTERN (temp)))
1678 && GET_CODE (SET_DEST (PATTERN (temp1))) == REG
1679 && (temp1 = find_next_ref (SET_DEST (PATTERN (temp1)), temp1))
1680 #endif
1681 && condjump_p (temp1))
1683 /* Get the if_then_else from the condjump. */
1684 rtx choice = SET_SRC (PATTERN (temp1));
1685 if (GET_CODE (choice) == IF_THEN_ELSE)
1687 enum rtx_code code = GET_CODE (XEXP (choice, 0));
1688 rtx val = SET_SRC (PATTERN (temp));
1689 rtx cond
1690 = simplify_relational_operation (code, GET_MODE (SET_DEST (PATTERN (temp))),
1691 val, const0_rtx);
1692 rtx ultimate;
1694 if (cond == const_true_rtx)
1695 ultimate = XEXP (choice, 1);
1696 else if (cond == const0_rtx)
1697 ultimate = XEXP (choice, 2);
1698 else
1699 ultimate = 0;
1701 if (ultimate == pc_rtx)
1702 ultimate = get_label_after (temp1);
1703 else if (ultimate && GET_CODE (ultimate) != RETURN)
1704 ultimate = XEXP (ultimate, 0);
1706 if (ultimate && JUMP_LABEL(insn) != ultimate)
1707 changed |= redirect_jump (insn, ultimate);
1710 #endif
1712 #if 0
1713 /* @@ This needs a bit of work before it will be right.
1715 Any type of comparison can be accepted for the first and
1716 second compare. When rewriting the first jump, we must
1717 compute the what conditions can reach label3, and use the
1718 appropriate code. We can not simply reverse/swap the code
1719 of the first jump. In some cases, the second jump must be
1720 rewritten also.
1722 For example,
1723 < == converts to > ==
1724 < != converts to == >
1725 etc.
1727 If the code is written to only accept an '==' test for the second
1728 compare, then all that needs to be done is to swap the condition
1729 of the first branch.
1731 It is questionable whether we want this optimization anyways,
1732 since if the user wrote code like this because he/she knew that
1733 the jump to label1 is taken most of the time, then rewriting
1734 this gives slower code. */
1735 /* @@ This should call get_condition to find the values being
1736 compared, instead of looking for a COMPARE insn when HAVE_cc0
1737 is not defined. This would allow it to work on the m88k. */
1738 /* @@ This optimization is only safe before cse is run if HAVE_cc0
1739 is not defined and the condition is tested by a separate compare
1740 insn. This is because the code below assumes that the result
1741 of the compare dies in the following branch. */
1743 /* Simplify test a ~= b
1744 condjump label1;
1745 test a == b
1746 condjump label2;
1747 jump label3;
1748 label1:
1750 rewriting as
1751 test a ~~= b
1752 condjump label3
1753 test a == b
1754 condjump label2
1755 label1:
1757 where ~= is an inequality, e.g. >, and ~~= is the swapped
1758 inequality, e.g. <.
1760 We recognize this case scanning backwards.
1762 TEMP is the conditional jump to `label2';
1763 TEMP1 is the test for `a == b';
1764 TEMP2 is the conditional jump to `label1';
1765 TEMP3 is the test for `a ~= b'. */
1766 else if (this_is_simplejump
1767 && (temp = prev_active_insn (insn))
1768 && no_labels_between_p (temp, insn)
1769 && condjump_p (temp)
1770 && (temp1 = prev_active_insn (temp))
1771 && no_labels_between_p (temp1, temp)
1772 && GET_CODE (temp1) == INSN
1773 && GET_CODE (PATTERN (temp1)) == SET
1774 #ifdef HAVE_cc0
1775 && sets_cc0_p (PATTERN (temp1)) == 1
1776 #else
1777 && GET_CODE (SET_SRC (PATTERN (temp1))) == COMPARE
1778 && GET_CODE (SET_DEST (PATTERN (temp1))) == REG
1779 && (temp == find_next_ref (SET_DEST (PATTERN (temp1)), temp1))
1780 #endif
1781 && (temp2 = prev_active_insn (temp1))
1782 && no_labels_between_p (temp2, temp1)
1783 && condjump_p (temp2)
1784 && JUMP_LABEL (temp2) == next_nonnote_insn (NEXT_INSN (insn))
1785 && (temp3 = prev_active_insn (temp2))
1786 && no_labels_between_p (temp3, temp2)
1787 && GET_CODE (PATTERN (temp3)) == SET
1788 && rtx_equal_p (SET_DEST (PATTERN (temp3)),
1789 SET_DEST (PATTERN (temp1)))
1790 && rtx_equal_p (SET_SRC (PATTERN (temp1)),
1791 SET_SRC (PATTERN (temp3)))
1792 && ! inequality_comparisons_p (PATTERN (temp))
1793 && inequality_comparisons_p (PATTERN (temp2)))
1795 rtx fallthrough_label = JUMP_LABEL (temp2);
1797 ++LABEL_NUSES (fallthrough_label);
1798 if (swap_jump (temp2, JUMP_LABEL (insn)))
1800 delete_insn (insn);
1801 changed = 1;
1804 if (--LABEL_NUSES (fallthrough_label) == 0)
1805 delete_insn (fallthrough_label);
1807 #endif
1808 /* Simplify if (...) {... x = 1;} if (x) ...
1810 We recognize this case backwards.
1812 TEMP is the test of `x';
1813 TEMP1 is the assignment to `x' at the end of the
1814 previous statement. */
1815 /* @@ This should call get_condition to find the values being
1816 compared, instead of looking for a COMPARE insn when HAVE_cc0
1817 is not defined. This would allow it to work on the m88k. */
1818 /* @@ This optimization is only safe before cse is run if HAVE_cc0
1819 is not defined and the condition is tested by a separate compare
1820 insn. This is because the code below assumes that the result
1821 of the compare dies in the following branch. */
1823 /* ??? This has to be turned off. The problem is that the
1824 unconditional jump might indirectly end up branching to the
1825 label between TEMP1 and TEMP. We can't detect this, in general,
1826 since it may become a jump to there after further optimizations.
1827 If that jump is done, it will be deleted, so we will retry
1828 this optimization in the next pass, thus an infinite loop.
1830 The present code prevents this by putting the jump after the
1831 label, but this is not logically correct. */
1832 #if 0
1833 else if (this_is_condjump
1834 /* Safe to skip USE and CLOBBER insns here
1835 since they will not be deleted. */
1836 && (temp = prev_active_insn (insn))
1837 && no_labels_between_p (temp, insn)
1838 && GET_CODE (temp) == INSN
1839 && GET_CODE (PATTERN (temp)) == SET
1840 #ifdef HAVE_cc0
1841 && sets_cc0_p (PATTERN (temp)) == 1
1842 && GET_CODE (SET_SRC (PATTERN (temp))) == REG
1843 #else
1844 /* Temp must be a compare insn, we can not accept a register
1845 to register move here, since it may not be simply a
1846 tst insn. */
1847 && GET_CODE (SET_SRC (PATTERN (temp))) == COMPARE
1848 && XEXP (SET_SRC (PATTERN (temp)), 1) == const0_rtx
1849 && GET_CODE (XEXP (SET_SRC (PATTERN (temp)), 0)) == REG
1850 && GET_CODE (SET_DEST (PATTERN (temp))) == REG
1851 && insn == find_next_ref (SET_DEST (PATTERN (temp)), temp)
1852 #endif
1853 /* May skip USE or CLOBBER insns here
1854 for checking for opportunity, since we
1855 take care of them later. */
1856 && (temp1 = prev_active_insn (temp))
1857 && GET_CODE (temp1) == INSN
1858 && GET_CODE (PATTERN (temp1)) == SET
1859 #ifdef HAVE_cc0
1860 && SET_SRC (PATTERN (temp)) == SET_DEST (PATTERN (temp1))
1861 #else
1862 && (XEXP (SET_SRC (PATTERN (temp)), 0)
1863 == SET_DEST (PATTERN (temp1)))
1864 #endif
1865 && CONSTANT_P (SET_SRC (PATTERN (temp1)))
1866 /* If this isn't true, cse will do the job. */
1867 && ! no_labels_between_p (temp1, temp))
1869 /* Get the if_then_else from the condjump. */
1870 rtx choice = SET_SRC (PATTERN (insn));
1871 if (GET_CODE (choice) == IF_THEN_ELSE
1872 && (GET_CODE (XEXP (choice, 0)) == EQ
1873 || GET_CODE (XEXP (choice, 0)) == NE))
1875 int want_nonzero = (GET_CODE (XEXP (choice, 0)) == NE);
1876 rtx last_insn;
1877 rtx ultimate;
1878 rtx p;
1880 /* Get the place that condjump will jump to
1881 if it is reached from here. */
1882 if ((SET_SRC (PATTERN (temp1)) != const0_rtx)
1883 == want_nonzero)
1884 ultimate = XEXP (choice, 1);
1885 else
1886 ultimate = XEXP (choice, 2);
1887 /* Get it as a CODE_LABEL. */
1888 if (ultimate == pc_rtx)
1889 ultimate = get_label_after (insn);
1890 else
1891 /* Get the label out of the LABEL_REF. */
1892 ultimate = XEXP (ultimate, 0);
1894 /* Insert the jump immediately before TEMP, specifically
1895 after the label that is between TEMP1 and TEMP. */
1896 last_insn = PREV_INSN (temp);
1898 /* If we would be branching to the next insn, the jump
1899 would immediately be deleted and the re-inserted in
1900 a subsequent pass over the code. So don't do anything
1901 in that case. */
1902 if (next_active_insn (last_insn)
1903 != next_active_insn (ultimate))
1905 emit_barrier_after (last_insn);
1906 p = emit_jump_insn_after (gen_jump (ultimate),
1907 last_insn);
1908 JUMP_LABEL (p) = ultimate;
1909 ++LABEL_NUSES (ultimate);
1910 if (INSN_UID (ultimate) < max_jump_chain
1911 && INSN_CODE (p) < max_jump_chain)
1913 jump_chain[INSN_UID (p)]
1914 = jump_chain[INSN_UID (ultimate)];
1915 jump_chain[INSN_UID (ultimate)] = p;
1917 changed = 1;
1918 continue;
1922 #endif
1923 /* Detect a conditional jump going to the same place
1924 as an immediately following unconditional jump. */
1925 else if (this_is_condjump
1926 && (temp = next_active_insn (insn)) != 0
1927 && simplejump_p (temp)
1928 && (next_active_insn (JUMP_LABEL (insn))
1929 == next_active_insn (JUMP_LABEL (temp))))
1931 rtx tem = temp;
1933 /* ??? Optional. Disables some optimizations, but makes
1934 gcov output more accurate with -O. */
1935 if (flag_test_coverage && !reload_completed)
1936 for (tem = insn; tem != temp; tem = NEXT_INSN (tem))
1937 if (GET_CODE (tem) == NOTE && NOTE_LINE_NUMBER (tem) > 0)
1938 break;
1940 if (tem == temp)
1942 delete_jump (insn);
1943 changed = 1;
1944 continue;
1947 #ifdef HAVE_trap
1948 /* Detect a conditional jump jumping over an unconditional trap. */
1949 else if (HAVE_trap
1950 && this_is_condjump && ! this_is_simplejump
1951 && reallabelprev != 0
1952 && GET_CODE (reallabelprev) == INSN
1953 && GET_CODE (PATTERN (reallabelprev)) == TRAP_IF
1954 && TRAP_CONDITION (PATTERN (reallabelprev)) == const_true_rtx
1955 && prev_active_insn (reallabelprev) == insn
1956 && no_labels_between_p (insn, reallabelprev)
1957 && (temp2 = get_condition (insn, &temp4))
1958 && can_reverse_comparison_p (temp2, insn))
1960 rtx new = gen_cond_trap (reverse_condition (GET_CODE (temp2)),
1961 XEXP (temp2, 0), XEXP (temp2, 1),
1962 TRAP_CODE (PATTERN (reallabelprev)));
1964 if (new)
1966 emit_insn_before (new, temp4);
1967 delete_insn (reallabelprev);
1968 delete_jump (insn);
1969 changed = 1;
1970 continue;
1973 /* Detect a jump jumping to an unconditional trap. */
1974 else if (HAVE_trap && this_is_condjump
1975 && (temp = next_active_insn (JUMP_LABEL (insn)))
1976 && GET_CODE (temp) == INSN
1977 && GET_CODE (PATTERN (temp)) == TRAP_IF
1978 && (this_is_simplejump
1979 || (temp2 = get_condition (insn, &temp4))))
1981 rtx tc = TRAP_CONDITION (PATTERN (temp));
1983 if (tc == const_true_rtx
1984 || (! this_is_simplejump && rtx_equal_p (temp2, tc)))
1986 rtx new;
1987 /* Replace an unconditional jump to a trap with a trap. */
1988 if (this_is_simplejump)
1990 emit_barrier_after (emit_insn_before (gen_trap (), insn));
1991 delete_jump (insn);
1992 changed = 1;
1993 continue;
1995 new = gen_cond_trap (GET_CODE (temp2), XEXP (temp2, 0),
1996 XEXP (temp2, 1),
1997 TRAP_CODE (PATTERN (temp)));
1998 if (new)
2000 emit_insn_before (new, temp4);
2001 delete_jump (insn);
2002 changed = 1;
2003 continue;
2006 /* If the trap condition and jump condition are mutually
2007 exclusive, redirect the jump to the following insn. */
2008 else if (GET_RTX_CLASS (GET_CODE (tc)) == '<'
2009 && ! this_is_simplejump
2010 && swap_condition (GET_CODE (temp2)) == GET_CODE (tc)
2011 && rtx_equal_p (XEXP (tc, 0), XEXP (temp2, 0))
2012 && rtx_equal_p (XEXP (tc, 1), XEXP (temp2, 1))
2013 && redirect_jump (insn, get_label_after (temp)))
2015 changed = 1;
2016 continue;
2019 #endif
2021 /* Detect a conditional jump jumping over an unconditional jump. */
2023 else if ((this_is_condjump || this_is_condjump_in_parallel)
2024 && ! this_is_simplejump
2025 && reallabelprev != 0
2026 && GET_CODE (reallabelprev) == JUMP_INSN
2027 && prev_active_insn (reallabelprev) == insn
2028 && no_labels_between_p (insn, reallabelprev)
2029 && simplejump_p (reallabelprev))
2031 /* When we invert the unconditional jump, we will be
2032 decrementing the usage count of its old label.
2033 Make sure that we don't delete it now because that
2034 might cause the following code to be deleted. */
2035 rtx prev_uses = prev_nonnote_insn (reallabelprev);
2036 rtx prev_label = JUMP_LABEL (insn);
2038 if (prev_label)
2039 ++LABEL_NUSES (prev_label);
2041 if (invert_jump (insn, JUMP_LABEL (reallabelprev)))
2043 /* It is very likely that if there are USE insns before
2044 this jump, they hold REG_DEAD notes. These REG_DEAD
2045 notes are no longer valid due to this optimization,
2046 and will cause the life-analysis that following passes
2047 (notably delayed-branch scheduling) to think that
2048 these registers are dead when they are not.
2050 To prevent this trouble, we just remove the USE insns
2051 from the insn chain. */
2053 while (prev_uses && GET_CODE (prev_uses) == INSN
2054 && GET_CODE (PATTERN (prev_uses)) == USE)
2056 rtx useless = prev_uses;
2057 prev_uses = prev_nonnote_insn (prev_uses);
2058 delete_insn (useless);
2061 delete_insn (reallabelprev);
2062 next = insn;
2063 changed = 1;
2066 /* We can now safely delete the label if it is unreferenced
2067 since the delete_insn above has deleted the BARRIER. */
2068 if (prev_label && --LABEL_NUSES (prev_label) == 0)
2069 delete_insn (prev_label);
2070 continue;
2072 else
2074 /* Detect a jump to a jump. */
2076 nlabel = follow_jumps (JUMP_LABEL (insn));
2077 if (nlabel != JUMP_LABEL (insn)
2078 && redirect_jump (insn, nlabel))
2080 changed = 1;
2081 next = insn;
2084 /* Look for if (foo) bar; else break; */
2085 /* The insns look like this:
2086 insn = condjump label1;
2087 ...range1 (some insns)...
2088 jump label2;
2089 label1:
2090 ...range2 (some insns)...
2091 jump somewhere unconditionally
2092 label2: */
2094 rtx label1 = next_label (insn);
2095 rtx range1end = label1 ? prev_active_insn (label1) : 0;
2096 /* Don't do this optimization on the first round, so that
2097 jump-around-a-jump gets simplified before we ask here
2098 whether a jump is unconditional.
2100 Also don't do it when we are called after reload since
2101 it will confuse reorg. */
2102 if (! first
2103 && (reload_completed ? ! flag_delayed_branch : 1)
2104 /* Make sure INSN is something we can invert. */
2105 && condjump_p (insn)
2106 && label1 != 0
2107 && JUMP_LABEL (insn) == label1
2108 && LABEL_NUSES (label1) == 1
2109 && GET_CODE (range1end) == JUMP_INSN
2110 && simplejump_p (range1end))
2112 rtx label2 = next_label (label1);
2113 rtx range2end = label2 ? prev_active_insn (label2) : 0;
2114 if (range1end != range2end
2115 && JUMP_LABEL (range1end) == label2
2116 && GET_CODE (range2end) == JUMP_INSN
2117 && GET_CODE (NEXT_INSN (range2end)) == BARRIER
2118 /* Invert the jump condition, so we
2119 still execute the same insns in each case. */
2120 && invert_jump (insn, label1))
2122 rtx range1beg = next_active_insn (insn);
2123 rtx range2beg = next_active_insn (label1);
2124 rtx range1after, range2after;
2125 rtx range1before, range2before;
2126 rtx rangenext;
2128 /* Include in each range any notes before it, to be
2129 sure that we get the line number note if any, even
2130 if there are other notes here. */
2131 while (PREV_INSN (range1beg)
2132 && GET_CODE (PREV_INSN (range1beg)) == NOTE)
2133 range1beg = PREV_INSN (range1beg);
2135 while (PREV_INSN (range2beg)
2136 && GET_CODE (PREV_INSN (range2beg)) == NOTE)
2137 range2beg = PREV_INSN (range2beg);
2139 /* Don't move NOTEs for blocks or loops; shift them
2140 outside the ranges, where they'll stay put. */
2141 range1beg = squeeze_notes (range1beg, range1end);
2142 range2beg = squeeze_notes (range2beg, range2end);
2144 /* Get current surrounds of the 2 ranges. */
2145 range1before = PREV_INSN (range1beg);
2146 range2before = PREV_INSN (range2beg);
2147 range1after = NEXT_INSN (range1end);
2148 range2after = NEXT_INSN (range2end);
2150 /* Splice range2 where range1 was. */
2151 NEXT_INSN (range1before) = range2beg;
2152 PREV_INSN (range2beg) = range1before;
2153 NEXT_INSN (range2end) = range1after;
2154 PREV_INSN (range1after) = range2end;
2155 /* Splice range1 where range2 was. */
2156 NEXT_INSN (range2before) = range1beg;
2157 PREV_INSN (range1beg) = range2before;
2158 NEXT_INSN (range1end) = range2after;
2159 PREV_INSN (range2after) = range1end;
2161 /* Check for a loop end note between the end of
2162 range2, and the next code label. If there is one,
2163 then what we have really seen is
2164 if (foo) break; end_of_loop;
2165 and moved the break sequence outside the loop.
2166 We must move the LOOP_END note to where the
2167 loop really ends now, or we will confuse loop
2168 optimization. Stop if we find a LOOP_BEG note
2169 first, since we don't want to move the LOOP_END
2170 note in that case. */
2171 for (;range2after != label2; range2after = rangenext)
2173 rangenext = NEXT_INSN (range2after);
2174 if (GET_CODE (range2after) == NOTE)
2176 if (NOTE_LINE_NUMBER (range2after)
2177 == NOTE_INSN_LOOP_END)
2179 NEXT_INSN (PREV_INSN (range2after))
2180 = rangenext;
2181 PREV_INSN (rangenext)
2182 = PREV_INSN (range2after);
2183 PREV_INSN (range2after)
2184 = PREV_INSN (range1beg);
2185 NEXT_INSN (range2after) = range1beg;
2186 NEXT_INSN (PREV_INSN (range1beg))
2187 = range2after;
2188 PREV_INSN (range1beg) = range2after;
2190 else if (NOTE_LINE_NUMBER (range2after)
2191 == NOTE_INSN_LOOP_BEG)
2192 break;
2195 changed = 1;
2196 continue;
2201 /* Now that the jump has been tensioned,
2202 try cross jumping: check for identical code
2203 before the jump and before its target label. */
2205 /* First, cross jumping of conditional jumps: */
2207 if (cross_jump && condjump_p (insn))
2209 rtx newjpos, newlpos;
2210 rtx x = prev_real_insn (JUMP_LABEL (insn));
2212 /* A conditional jump may be crossjumped
2213 only if the place it jumps to follows
2214 an opposing jump that comes back here. */
2216 if (x != 0 && ! jump_back_p (x, insn))
2217 /* We have no opposing jump;
2218 cannot cross jump this insn. */
2219 x = 0;
2221 newjpos = 0;
2222 /* TARGET is nonzero if it is ok to cross jump
2223 to code before TARGET. If so, see if matches. */
2224 if (x != 0)
2225 find_cross_jump (insn, x, 2,
2226 &newjpos, &newlpos);
2228 if (newjpos != 0)
2230 do_cross_jump (insn, newjpos, newlpos);
2231 /* Make the old conditional jump
2232 into an unconditional one. */
2233 SET_SRC (PATTERN (insn))
2234 = gen_rtx_LABEL_REF (VOIDmode, JUMP_LABEL (insn));
2235 INSN_CODE (insn) = -1;
2236 emit_barrier_after (insn);
2237 /* Add to jump_chain unless this is a new label
2238 whose UID is too large. */
2239 if (INSN_UID (JUMP_LABEL (insn)) < max_jump_chain)
2241 jump_chain[INSN_UID (insn)]
2242 = jump_chain[INSN_UID (JUMP_LABEL (insn))];
2243 jump_chain[INSN_UID (JUMP_LABEL (insn))] = insn;
2245 changed = 1;
2246 next = insn;
2250 /* Cross jumping of unconditional jumps:
2251 a few differences. */
2253 if (cross_jump && simplejump_p (insn))
2255 rtx newjpos, newlpos;
2256 rtx target;
2258 newjpos = 0;
2260 /* TARGET is nonzero if it is ok to cross jump
2261 to code before TARGET. If so, see if matches. */
2262 find_cross_jump (insn, JUMP_LABEL (insn), 1,
2263 &newjpos, &newlpos);
2265 /* If cannot cross jump to code before the label,
2266 see if we can cross jump to another jump to
2267 the same label. */
2268 /* Try each other jump to this label. */
2269 if (INSN_UID (JUMP_LABEL (insn)) < max_uid)
2270 for (target = jump_chain[INSN_UID (JUMP_LABEL (insn))];
2271 target != 0 && newjpos == 0;
2272 target = jump_chain[INSN_UID (target)])
2273 if (target != insn
2274 && JUMP_LABEL (target) == JUMP_LABEL (insn)
2275 /* Ignore TARGET if it's deleted. */
2276 && ! INSN_DELETED_P (target))
2277 find_cross_jump (insn, target, 2,
2278 &newjpos, &newlpos);
2280 if (newjpos != 0)
2282 do_cross_jump (insn, newjpos, newlpos);
2283 changed = 1;
2284 next = insn;
2288 /* This code was dead in the previous jump.c! */
2289 if (cross_jump && GET_CODE (PATTERN (insn)) == RETURN)
2291 /* Return insns all "jump to the same place"
2292 so we can cross-jump between any two of them. */
2294 rtx newjpos, newlpos, target;
2296 newjpos = 0;
2298 /* If cannot cross jump to code before the label,
2299 see if we can cross jump to another jump to
2300 the same label. */
2301 /* Try each other jump to this label. */
2302 for (target = jump_chain[0];
2303 target != 0 && newjpos == 0;
2304 target = jump_chain[INSN_UID (target)])
2305 if (target != insn
2306 && ! INSN_DELETED_P (target)
2307 && GET_CODE (PATTERN (target)) == RETURN)
2308 find_cross_jump (insn, target, 2,
2309 &newjpos, &newlpos);
2311 if (newjpos != 0)
2313 do_cross_jump (insn, newjpos, newlpos);
2314 changed = 1;
2315 next = insn;
2321 first = 0;
2324 /* Delete extraneous line number notes.
2325 Note that two consecutive notes for different lines are not really
2326 extraneous. There should be some indication where that line belonged,
2327 even if it became empty. */
2330 rtx last_note = 0;
2332 for (insn = f; insn; insn = NEXT_INSN (insn))
2333 if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) >= 0)
2335 /* Delete this note if it is identical to previous note. */
2336 if (last_note
2337 && NOTE_SOURCE_FILE (insn) == NOTE_SOURCE_FILE (last_note)
2338 && NOTE_LINE_NUMBER (insn) == NOTE_LINE_NUMBER (last_note))
2340 delete_insn (insn);
2341 continue;
2344 last_note = insn;
2348 #ifdef HAVE_return
2349 if (HAVE_return)
2351 /* If we fall through to the epilogue, see if we can insert a RETURN insn
2352 in front of it. If the machine allows it at this point (we might be
2353 after reload for a leaf routine), it will improve optimization for it
2354 to be there. We do this both here and at the start of this pass since
2355 the RETURN might have been deleted by some of our optimizations. */
2356 insn = get_last_insn ();
2357 while (insn && GET_CODE (insn) == NOTE)
2358 insn = PREV_INSN (insn);
2360 if (insn && GET_CODE (insn) != BARRIER)
2362 emit_jump_insn (gen_return ());
2363 emit_barrier ();
2366 #endif
2368 /* See if there is still a NOTE_INSN_FUNCTION_END in this function.
2369 If so, delete it, and record that this function can drop off the end. */
2371 insn = last_insn;
2373 int n_labels = 1;
2374 while (insn
2375 /* One label can follow the end-note: the return label. */
2376 && ((GET_CODE (insn) == CODE_LABEL && n_labels-- > 0)
2377 /* Ordinary insns can follow it if returning a structure. */
2378 || GET_CODE (insn) == INSN
2379 /* If machine uses explicit RETURN insns, no epilogue,
2380 then one of them follows the note. */
2381 || (GET_CODE (insn) == JUMP_INSN
2382 && GET_CODE (PATTERN (insn)) == RETURN)
2383 /* A barrier can follow the return insn. */
2384 || GET_CODE (insn) == BARRIER
2385 /* Other kinds of notes can follow also. */
2386 || (GET_CODE (insn) == NOTE
2387 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_FUNCTION_END)))
2388 insn = PREV_INSN (insn);
2391 /* Report if control can fall through at the end of the function. */
2392 if (insn && GET_CODE (insn) == NOTE
2393 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_FUNCTION_END)
2395 can_reach_end = 1;
2396 delete_insn (insn);
2399 /* Show JUMP_CHAIN no longer valid. */
2400 jump_chain = 0;
2403 /* LOOP_START is a NOTE_INSN_LOOP_BEG note that is followed by an unconditional
2404 jump. Assume that this unconditional jump is to the exit test code. If
2405 the code is sufficiently simple, make a copy of it before INSN,
2406 followed by a jump to the exit of the loop. Then delete the unconditional
2407 jump after INSN.
2409 Return 1 if we made the change, else 0.
2411 This is only safe immediately after a regscan pass because it uses the
2412 values of regno_first_uid and regno_last_uid. */
2414 static int
2415 duplicate_loop_exit_test (loop_start)
2416 rtx loop_start;
2418 rtx insn, set, reg, p, link;
2419 rtx copy = 0;
2420 int num_insns = 0;
2421 rtx exitcode = NEXT_INSN (JUMP_LABEL (next_nonnote_insn (loop_start)));
2422 rtx lastexit;
2423 int max_reg = max_reg_num ();
2424 rtx *reg_map = 0;
2426 /* Scan the exit code. We do not perform this optimization if any insn:
2428 is a CALL_INSN
2429 is a CODE_LABEL
2430 has a REG_RETVAL or REG_LIBCALL note (hard to adjust)
2431 is a NOTE_INSN_LOOP_BEG because this means we have a nested loop
2432 is a NOTE_INSN_BLOCK_{BEG,END} because duplicating these notes
2433 is not valid.
2435 We also do not do this if we find an insn with ASM_OPERANDS. While
2436 this restriction should not be necessary, copying an insn with
2437 ASM_OPERANDS can confuse asm_noperands in some cases.
2439 Also, don't do this if the exit code is more than 20 insns. */
2441 for (insn = exitcode;
2442 insn
2443 && ! (GET_CODE (insn) == NOTE
2444 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END);
2445 insn = NEXT_INSN (insn))
2447 switch (GET_CODE (insn))
2449 case CODE_LABEL:
2450 case CALL_INSN:
2451 return 0;
2452 case NOTE:
2453 /* We could be in front of the wrong NOTE_INSN_LOOP_END if there is
2454 a jump immediately after the loop start that branches outside
2455 the loop but within an outer loop, near the exit test.
2456 If we copied this exit test and created a phony
2457 NOTE_INSN_LOOP_VTOP, this could make instructions immediately
2458 before the exit test look like these could be safely moved
2459 out of the loop even if they actually may be never executed.
2460 This can be avoided by checking here for NOTE_INSN_LOOP_CONT. */
2462 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG
2463 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_CONT)
2464 return 0;
2466 if (optimize < 2
2467 && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
2468 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END))
2469 /* If we were to duplicate this code, we would not move
2470 the BLOCK notes, and so debugging the moved code would
2471 be difficult. Thus, we only move the code with -O2 or
2472 higher. */
2473 return 0;
2475 break;
2476 case JUMP_INSN:
2477 case INSN:
2478 /* The code below would grossly mishandle REG_WAS_0 notes,
2479 so get rid of them here. */
2480 while ((p = find_reg_note (insn, REG_WAS_0, NULL_RTX)) != 0)
2481 remove_note (insn, p);
2482 if (++num_insns > 20
2483 || find_reg_note (insn, REG_RETVAL, NULL_RTX)
2484 || find_reg_note (insn, REG_LIBCALL, NULL_RTX)
2485 || asm_noperands (PATTERN (insn)) > 0)
2486 return 0;
2487 break;
2488 default:
2489 break;
2493 /* Unless INSN is zero, we can do the optimization. */
2494 if (insn == 0)
2495 return 0;
2497 lastexit = insn;
2499 /* See if any insn sets a register only used in the loop exit code and
2500 not a user variable. If so, replace it with a new register. */
2501 for (insn = exitcode; insn != lastexit; insn = NEXT_INSN (insn))
2502 if (GET_CODE (insn) == INSN
2503 && (set = single_set (insn)) != 0
2504 && ((reg = SET_DEST (set), GET_CODE (reg) == REG)
2505 || (GET_CODE (reg) == SUBREG
2506 && (reg = SUBREG_REG (reg), GET_CODE (reg) == REG)))
2507 && REGNO (reg) >= FIRST_PSEUDO_REGISTER
2508 && REGNO_FIRST_UID (REGNO (reg)) == INSN_UID (insn))
2510 for (p = NEXT_INSN (insn); p != lastexit; p = NEXT_INSN (p))
2511 if (REGNO_LAST_UID (REGNO (reg)) == INSN_UID (p))
2512 break;
2514 if (p != lastexit)
2516 /* We can do the replacement. Allocate reg_map if this is the
2517 first replacement we found. */
2518 if (reg_map == 0)
2520 reg_map = (rtx *) alloca (max_reg * sizeof (rtx));
2521 bzero ((char *) reg_map, max_reg * sizeof (rtx));
2524 REG_LOOP_TEST_P (reg) = 1;
2526 reg_map[REGNO (reg)] = gen_reg_rtx (GET_MODE (reg));
2530 /* Now copy each insn. */
2531 for (insn = exitcode; insn != lastexit; insn = NEXT_INSN (insn))
2532 switch (GET_CODE (insn))
2534 case BARRIER:
2535 copy = emit_barrier_before (loop_start);
2536 break;
2537 case NOTE:
2538 /* Only copy line-number notes. */
2539 if (NOTE_LINE_NUMBER (insn) >= 0)
2541 copy = emit_note_before (NOTE_LINE_NUMBER (insn), loop_start);
2542 NOTE_SOURCE_FILE (copy) = NOTE_SOURCE_FILE (insn);
2544 break;
2546 case INSN:
2547 copy = emit_insn_before (copy_rtx (PATTERN (insn)), loop_start);
2548 if (reg_map)
2549 replace_regs (PATTERN (copy), reg_map, max_reg, 1);
2551 mark_jump_label (PATTERN (copy), copy, 0);
2553 /* Copy all REG_NOTES except REG_LABEL since mark_jump_label will
2554 make them. */
2555 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
2556 if (REG_NOTE_KIND (link) != REG_LABEL)
2557 REG_NOTES (copy)
2558 = copy_rtx (gen_rtx_EXPR_LIST (REG_NOTE_KIND (link),
2559 XEXP (link, 0),
2560 REG_NOTES (copy)));
2561 if (reg_map && REG_NOTES (copy))
2562 replace_regs (REG_NOTES (copy), reg_map, max_reg, 1);
2563 break;
2565 case JUMP_INSN:
2566 copy = emit_jump_insn_before (copy_rtx (PATTERN (insn)), loop_start);
2567 if (reg_map)
2568 replace_regs (PATTERN (copy), reg_map, max_reg, 1);
2569 mark_jump_label (PATTERN (copy), copy, 0);
2570 if (REG_NOTES (insn))
2572 REG_NOTES (copy) = copy_rtx (REG_NOTES (insn));
2573 if (reg_map)
2574 replace_regs (REG_NOTES (copy), reg_map, max_reg, 1);
2577 /* If this is a simple jump, add it to the jump chain. */
2579 if (INSN_UID (copy) < max_jump_chain && JUMP_LABEL (copy)
2580 && simplejump_p (copy))
2582 jump_chain[INSN_UID (copy)]
2583 = jump_chain[INSN_UID (JUMP_LABEL (copy))];
2584 jump_chain[INSN_UID (JUMP_LABEL (copy))] = copy;
2586 break;
2588 default:
2589 abort ();
2592 /* Now clean up by emitting a jump to the end label and deleting the jump
2593 at the start of the loop. */
2594 if (! copy || GET_CODE (copy) != BARRIER)
2596 copy = emit_jump_insn_before (gen_jump (get_label_after (insn)),
2597 loop_start);
2598 mark_jump_label (PATTERN (copy), copy, 0);
2599 if (INSN_UID (copy) < max_jump_chain
2600 && INSN_UID (JUMP_LABEL (copy)) < max_jump_chain)
2602 jump_chain[INSN_UID (copy)]
2603 = jump_chain[INSN_UID (JUMP_LABEL (copy))];
2604 jump_chain[INSN_UID (JUMP_LABEL (copy))] = copy;
2606 emit_barrier_before (loop_start);
2609 /* Mark the exit code as the virtual top of the converted loop. */
2610 emit_note_before (NOTE_INSN_LOOP_VTOP, exitcode);
2612 delete_insn (next_nonnote_insn (loop_start));
2614 return 1;
2617 /* Move all block-beg, block-end, loop-beg, loop-cont, loop-vtop, and
2618 loop-end notes between START and END out before START. Assume that
2619 END is not such a note. START may be such a note. Returns the value
2620 of the new starting insn, which may be different if the original start
2621 was such a note. */
2624 squeeze_notes (start, end)
2625 rtx start, end;
2627 rtx insn;
2628 rtx next;
2630 for (insn = start; insn != end; insn = next)
2632 next = NEXT_INSN (insn);
2633 if (GET_CODE (insn) == NOTE
2634 && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END
2635 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
2636 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG
2637 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END
2638 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_CONT
2639 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_VTOP))
2641 if (insn == start)
2642 start = next;
2643 else
2645 rtx prev = PREV_INSN (insn);
2646 PREV_INSN (insn) = PREV_INSN (start);
2647 NEXT_INSN (insn) = start;
2648 NEXT_INSN (PREV_INSN (insn)) = insn;
2649 PREV_INSN (NEXT_INSN (insn)) = insn;
2650 NEXT_INSN (prev) = next;
2651 PREV_INSN (next) = prev;
2656 return start;
2659 /* Compare the instructions before insn E1 with those before E2
2660 to find an opportunity for cross jumping.
2661 (This means detecting identical sequences of insns followed by
2662 jumps to the same place, or followed by a label and a jump
2663 to that label, and replacing one with a jump to the other.)
2665 Assume E1 is a jump that jumps to label E2
2666 (that is not always true but it might as well be).
2667 Find the longest possible equivalent sequences
2668 and store the first insns of those sequences into *F1 and *F2.
2669 Store zero there if no equivalent preceding instructions are found.
2671 We give up if we find a label in stream 1.
2672 Actually we could transfer that label into stream 2. */
2674 static void
2675 find_cross_jump (e1, e2, minimum, f1, f2)
2676 rtx e1, e2;
2677 int minimum;
2678 rtx *f1, *f2;
2680 register rtx i1 = e1, i2 = e2;
2681 register rtx p1, p2;
2682 int lose = 0;
2684 rtx last1 = 0, last2 = 0;
2685 rtx afterlast1 = 0, afterlast2 = 0;
2687 *f1 = 0;
2688 *f2 = 0;
2690 while (1)
2692 i1 = prev_nonnote_insn (i1);
2694 i2 = PREV_INSN (i2);
2695 while (i2 && (GET_CODE (i2) == NOTE || GET_CODE (i2) == CODE_LABEL))
2696 i2 = PREV_INSN (i2);
2698 if (i1 == 0)
2699 break;
2701 /* Don't allow the range of insns preceding E1 or E2
2702 to include the other (E2 or E1). */
2703 if (i2 == e1 || i1 == e2)
2704 break;
2706 /* If we will get to this code by jumping, those jumps will be
2707 tensioned to go directly to the new label (before I2),
2708 so this cross-jumping won't cost extra. So reduce the minimum. */
2709 if (GET_CODE (i1) == CODE_LABEL)
2711 --minimum;
2712 break;
2715 if (i2 == 0 || GET_CODE (i1) != GET_CODE (i2))
2716 break;
2718 p1 = PATTERN (i1);
2719 p2 = PATTERN (i2);
2721 /* If this is a CALL_INSN, compare register usage information.
2722 If we don't check this on stack register machines, the two
2723 CALL_INSNs might be merged leaving reg-stack.c with mismatching
2724 numbers of stack registers in the same basic block.
2725 If we don't check this on machines with delay slots, a delay slot may
2726 be filled that clobbers a parameter expected by the subroutine.
2728 ??? We take the simple route for now and assume that if they're
2729 equal, they were constructed identically. */
2731 if (GET_CODE (i1) == CALL_INSN
2732 && ! rtx_equal_p (CALL_INSN_FUNCTION_USAGE (i1),
2733 CALL_INSN_FUNCTION_USAGE (i2)))
2734 lose = 1;
2736 #ifdef STACK_REGS
2737 /* If cross_jump_death_matters is not 0, the insn's mode
2738 indicates whether or not the insn contains any stack-like
2739 regs. */
2741 if (!lose && cross_jump_death_matters && GET_MODE (i1) == QImode)
2743 /* If register stack conversion has already been done, then
2744 death notes must also be compared before it is certain that
2745 the two instruction streams match. */
2747 rtx note;
2748 HARD_REG_SET i1_regset, i2_regset;
2750 CLEAR_HARD_REG_SET (i1_regset);
2751 CLEAR_HARD_REG_SET (i2_regset);
2753 for (note = REG_NOTES (i1); note; note = XEXP (note, 1))
2754 if (REG_NOTE_KIND (note) == REG_DEAD
2755 && STACK_REG_P (XEXP (note, 0)))
2756 SET_HARD_REG_BIT (i1_regset, REGNO (XEXP (note, 0)));
2758 for (note = REG_NOTES (i2); note; note = XEXP (note, 1))
2759 if (REG_NOTE_KIND (note) == REG_DEAD
2760 && STACK_REG_P (XEXP (note, 0)))
2761 SET_HARD_REG_BIT (i2_regset, REGNO (XEXP (note, 0)));
2763 GO_IF_HARD_REG_EQUAL (i1_regset, i2_regset, done);
2765 lose = 1;
2767 done:
2770 #endif
2772 /* Don't allow old-style asm or volatile extended asms to be accepted
2773 for cross jumping purposes. It is conceptually correct to allow
2774 them, since cross-jumping preserves the dynamic instruction order
2775 even though it is changing the static instruction order. However,
2776 if an asm is being used to emit an assembler pseudo-op, such as
2777 the MIPS `.set reorder' pseudo-op, then the static instruction order
2778 matters and it must be preserved. */
2779 if (GET_CODE (p1) == ASM_INPUT || GET_CODE (p2) == ASM_INPUT
2780 || (GET_CODE (p1) == ASM_OPERANDS && MEM_VOLATILE_P (p1))
2781 || (GET_CODE (p2) == ASM_OPERANDS && MEM_VOLATILE_P (p2)))
2782 lose = 1;
2784 if (lose || GET_CODE (p1) != GET_CODE (p2)
2785 || ! rtx_renumbered_equal_p (p1, p2))
2787 /* The following code helps take care of G++ cleanups. */
2788 rtx equiv1;
2789 rtx equiv2;
2791 if (!lose && GET_CODE (p1) == GET_CODE (p2)
2792 && ((equiv1 = find_reg_note (i1, REG_EQUAL, NULL_RTX)) != 0
2793 || (equiv1 = find_reg_note (i1, REG_EQUIV, NULL_RTX)) != 0)
2794 && ((equiv2 = find_reg_note (i2, REG_EQUAL, NULL_RTX)) != 0
2795 || (equiv2 = find_reg_note (i2, REG_EQUIV, NULL_RTX)) != 0)
2796 /* If the equivalences are not to a constant, they may
2797 reference pseudos that no longer exist, so we can't
2798 use them. */
2799 && CONSTANT_P (XEXP (equiv1, 0))
2800 && rtx_equal_p (XEXP (equiv1, 0), XEXP (equiv2, 0)))
2802 rtx s1 = single_set (i1);
2803 rtx s2 = single_set (i2);
2804 if (s1 != 0 && s2 != 0
2805 && rtx_renumbered_equal_p (SET_DEST (s1), SET_DEST (s2)))
2807 validate_change (i1, &SET_SRC (s1), XEXP (equiv1, 0), 1);
2808 validate_change (i2, &SET_SRC (s2), XEXP (equiv2, 0), 1);
2809 if (! rtx_renumbered_equal_p (p1, p2))
2810 cancel_changes (0);
2811 else if (apply_change_group ())
2812 goto win;
2816 /* Insns fail to match; cross jumping is limited to the following
2817 insns. */
2819 #ifdef HAVE_cc0
2820 /* Don't allow the insn after a compare to be shared by
2821 cross-jumping unless the compare is also shared.
2822 Here, if either of these non-matching insns is a compare,
2823 exclude the following insn from possible cross-jumping. */
2824 if (sets_cc0_p (p1) || sets_cc0_p (p2))
2825 last1 = afterlast1, last2 = afterlast2, ++minimum;
2826 #endif
2828 /* If cross-jumping here will feed a jump-around-jump
2829 optimization, this jump won't cost extra, so reduce
2830 the minimum. */
2831 if (GET_CODE (i1) == JUMP_INSN
2832 && JUMP_LABEL (i1)
2833 && prev_real_insn (JUMP_LABEL (i1)) == e1)
2834 --minimum;
2835 break;
2838 win:
2839 if (GET_CODE (p1) != USE && GET_CODE (p1) != CLOBBER)
2841 /* Ok, this insn is potentially includable in a cross-jump here. */
2842 afterlast1 = last1, afterlast2 = last2;
2843 last1 = i1, last2 = i2, --minimum;
2847 if (minimum <= 0 && last1 != 0 && last1 != e1)
2848 *f1 = last1, *f2 = last2;
2851 static void
2852 do_cross_jump (insn, newjpos, newlpos)
2853 rtx insn, newjpos, newlpos;
2855 /* Find an existing label at this point
2856 or make a new one if there is none. */
2857 register rtx label = get_label_before (newlpos);
2859 /* Make the same jump insn jump to the new point. */
2860 if (GET_CODE (PATTERN (insn)) == RETURN)
2862 /* Remove from jump chain of returns. */
2863 delete_from_jump_chain (insn);
2864 /* Change the insn. */
2865 PATTERN (insn) = gen_jump (label);
2866 INSN_CODE (insn) = -1;
2867 JUMP_LABEL (insn) = label;
2868 LABEL_NUSES (label)++;
2869 /* Add to new the jump chain. */
2870 if (INSN_UID (label) < max_jump_chain
2871 && INSN_UID (insn) < max_jump_chain)
2873 jump_chain[INSN_UID (insn)] = jump_chain[INSN_UID (label)];
2874 jump_chain[INSN_UID (label)] = insn;
2877 else
2878 redirect_jump (insn, label);
2880 /* Delete the matching insns before the jump. Also, remove any REG_EQUAL
2881 or REG_EQUIV note in the NEWLPOS stream that isn't also present in
2882 the NEWJPOS stream. */
2884 while (newjpos != insn)
2886 rtx lnote;
2888 for (lnote = REG_NOTES (newlpos); lnote; lnote = XEXP (lnote, 1))
2889 if ((REG_NOTE_KIND (lnote) == REG_EQUAL
2890 || REG_NOTE_KIND (lnote) == REG_EQUIV)
2891 && ! find_reg_note (newjpos, REG_EQUAL, XEXP (lnote, 0))
2892 && ! find_reg_note (newjpos, REG_EQUIV, XEXP (lnote, 0)))
2893 remove_note (newlpos, lnote);
2895 delete_insn (newjpos);
2896 newjpos = next_real_insn (newjpos);
2897 newlpos = next_real_insn (newlpos);
2901 /* Return the label before INSN, or put a new label there. */
2904 get_label_before (insn)
2905 rtx insn;
2907 rtx label;
2909 /* Find an existing label at this point
2910 or make a new one if there is none. */
2911 label = prev_nonnote_insn (insn);
2913 if (label == 0 || GET_CODE (label) != CODE_LABEL)
2915 rtx prev = PREV_INSN (insn);
2917 label = gen_label_rtx ();
2918 emit_label_after (label, prev);
2919 LABEL_NUSES (label) = 0;
2921 return label;
2924 /* Return the label after INSN, or put a new label there. */
2927 get_label_after (insn)
2928 rtx insn;
2930 rtx label;
2932 /* Find an existing label at this point
2933 or make a new one if there is none. */
2934 label = next_nonnote_insn (insn);
2936 if (label == 0 || GET_CODE (label) != CODE_LABEL)
2938 label = gen_label_rtx ();
2939 emit_label_after (label, insn);
2940 LABEL_NUSES (label) = 0;
2942 return label;
2945 /* Return 1 if INSN is a jump that jumps to right after TARGET
2946 only on the condition that TARGET itself would drop through.
2947 Assumes that TARGET is a conditional jump. */
2949 static int
2950 jump_back_p (insn, target)
2951 rtx insn, target;
2953 rtx cinsn, ctarget;
2954 enum rtx_code codei, codet;
2956 if (simplejump_p (insn) || ! condjump_p (insn)
2957 || simplejump_p (target)
2958 || target != prev_real_insn (JUMP_LABEL (insn)))
2959 return 0;
2961 cinsn = XEXP (SET_SRC (PATTERN (insn)), 0);
2962 ctarget = XEXP (SET_SRC (PATTERN (target)), 0);
2964 codei = GET_CODE (cinsn);
2965 codet = GET_CODE (ctarget);
2967 if (XEXP (SET_SRC (PATTERN (insn)), 1) == pc_rtx)
2969 if (! can_reverse_comparison_p (cinsn, insn))
2970 return 0;
2971 codei = reverse_condition (codei);
2974 if (XEXP (SET_SRC (PATTERN (target)), 2) == pc_rtx)
2976 if (! can_reverse_comparison_p (ctarget, target))
2977 return 0;
2978 codet = reverse_condition (codet);
2981 return (codei == codet
2982 && rtx_renumbered_equal_p (XEXP (cinsn, 0), XEXP (ctarget, 0))
2983 && rtx_renumbered_equal_p (XEXP (cinsn, 1), XEXP (ctarget, 1)));
2986 /* Given a comparison, COMPARISON, inside a conditional jump insn, INSN,
2987 return non-zero if it is safe to reverse this comparison. It is if our
2988 floating-point is not IEEE, if this is an NE or EQ comparison, or if
2989 this is known to be an integer comparison. */
2992 can_reverse_comparison_p (comparison, insn)
2993 rtx comparison;
2994 rtx insn;
2996 rtx arg0;
2998 /* If this is not actually a comparison, we can't reverse it. */
2999 if (GET_RTX_CLASS (GET_CODE (comparison)) != '<')
3000 return 0;
3002 if (TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
3003 /* If this is an NE comparison, it is safe to reverse it to an EQ
3004 comparison and vice versa, even for floating point. If no operands
3005 are NaNs, the reversal is valid. If some operand is a NaN, EQ is
3006 always false and NE is always true, so the reversal is also valid. */
3007 || flag_fast_math
3008 || GET_CODE (comparison) == NE
3009 || GET_CODE (comparison) == EQ)
3010 return 1;
3012 arg0 = XEXP (comparison, 0);
3014 /* Make sure ARG0 is one of the actual objects being compared. If we
3015 can't do this, we can't be sure the comparison can be reversed.
3017 Handle cc0 and a MODE_CC register. */
3018 if ((GET_CODE (arg0) == REG && GET_MODE_CLASS (GET_MODE (arg0)) == MODE_CC)
3019 #ifdef HAVE_cc0
3020 || arg0 == cc0_rtx
3021 #endif
3024 rtx prev = prev_nonnote_insn (insn);
3025 rtx set = single_set (prev);
3027 if (set == 0 || SET_DEST (set) != arg0)
3028 return 0;
3030 arg0 = SET_SRC (set);
3032 if (GET_CODE (arg0) == COMPARE)
3033 arg0 = XEXP (arg0, 0);
3036 /* We can reverse this if ARG0 is a CONST_INT or if its mode is
3037 not VOIDmode and neither a MODE_CC nor MODE_FLOAT type. */
3038 return (GET_CODE (arg0) == CONST_INT
3039 || (GET_MODE (arg0) != VOIDmode
3040 && GET_MODE_CLASS (GET_MODE (arg0)) != MODE_CC
3041 && GET_MODE_CLASS (GET_MODE (arg0)) != MODE_FLOAT));
3044 /* Given an rtx-code for a comparison, return the code
3045 for the negated comparison.
3046 WATCH OUT! reverse_condition is not safe to use on a jump
3047 that might be acting on the results of an IEEE floating point comparison,
3048 because of the special treatment of non-signaling nans in comparisons.
3049 Use can_reverse_comparison_p to be sure. */
3051 enum rtx_code
3052 reverse_condition (code)
3053 enum rtx_code code;
3055 switch (code)
3057 case EQ:
3058 return NE;
3060 case NE:
3061 return EQ;
3063 case GT:
3064 return LE;
3066 case GE:
3067 return LT;
3069 case LT:
3070 return GE;
3072 case LE:
3073 return GT;
3075 case GTU:
3076 return LEU;
3078 case GEU:
3079 return LTU;
3081 case LTU:
3082 return GEU;
3084 case LEU:
3085 return GTU;
3087 default:
3088 abort ();
3089 return UNKNOWN;
3093 /* Similar, but return the code when two operands of a comparison are swapped.
3094 This IS safe for IEEE floating-point. */
3096 enum rtx_code
3097 swap_condition (code)
3098 enum rtx_code code;
3100 switch (code)
3102 case EQ:
3103 case NE:
3104 return code;
3106 case GT:
3107 return LT;
3109 case GE:
3110 return LE;
3112 case LT:
3113 return GT;
3115 case LE:
3116 return GE;
3118 case GTU:
3119 return LTU;
3121 case GEU:
3122 return LEU;
3124 case LTU:
3125 return GTU;
3127 case LEU:
3128 return GEU;
3130 default:
3131 abort ();
3132 return UNKNOWN;
3136 /* Given a comparison CODE, return the corresponding unsigned comparison.
3137 If CODE is an equality comparison or already an unsigned comparison,
3138 CODE is returned. */
3140 enum rtx_code
3141 unsigned_condition (code)
3142 enum rtx_code code;
3144 switch (code)
3146 case EQ:
3147 case NE:
3148 case GTU:
3149 case GEU:
3150 case LTU:
3151 case LEU:
3152 return code;
3154 case GT:
3155 return GTU;
3157 case GE:
3158 return GEU;
3160 case LT:
3161 return LTU;
3163 case LE:
3164 return LEU;
3166 default:
3167 abort ();
3171 /* Similarly, return the signed version of a comparison. */
3173 enum rtx_code
3174 signed_condition (code)
3175 enum rtx_code code;
3177 switch (code)
3179 case EQ:
3180 case NE:
3181 case GT:
3182 case GE:
3183 case LT:
3184 case LE:
3185 return code;
3187 case GTU:
3188 return GT;
3190 case GEU:
3191 return GE;
3193 case LTU:
3194 return LT;
3196 case LEU:
3197 return LE;
3199 default:
3200 abort ();
3204 /* Return non-zero if CODE1 is more strict than CODE2, i.e., if the
3205 truth of CODE1 implies the truth of CODE2. */
3208 comparison_dominates_p (code1, code2)
3209 enum rtx_code code1, code2;
3211 if (code1 == code2)
3212 return 1;
3214 switch (code1)
3216 case EQ:
3217 if (code2 == LE || code2 == LEU || code2 == GE || code2 == GEU)
3218 return 1;
3219 break;
3221 case LT:
3222 if (code2 == LE || code2 == NE)
3223 return 1;
3224 break;
3226 case GT:
3227 if (code2 == GE || code2 == NE)
3228 return 1;
3229 break;
3231 case LTU:
3232 if (code2 == LEU || code2 == NE)
3233 return 1;
3234 break;
3236 case GTU:
3237 if (code2 == GEU || code2 == NE)
3238 return 1;
3239 break;
3241 default:
3242 break;
3245 return 0;
3248 /* Return 1 if INSN is an unconditional jump and nothing else. */
3251 simplejump_p (insn)
3252 rtx insn;
3254 return (GET_CODE (insn) == JUMP_INSN
3255 && GET_CODE (PATTERN (insn)) == SET
3256 && GET_CODE (SET_DEST (PATTERN (insn))) == PC
3257 && GET_CODE (SET_SRC (PATTERN (insn))) == LABEL_REF);
3260 /* Return nonzero if INSN is a (possibly) conditional jump
3261 and nothing more. */
3264 condjump_p (insn)
3265 rtx insn;
3267 register rtx x = PATTERN (insn);
3268 if (GET_CODE (x) != SET)
3269 return 0;
3270 if (GET_CODE (SET_DEST (x)) != PC)
3271 return 0;
3272 if (GET_CODE (SET_SRC (x)) == LABEL_REF)
3273 return 1;
3274 if (GET_CODE (SET_SRC (x)) != IF_THEN_ELSE)
3275 return 0;
3276 if (XEXP (SET_SRC (x), 2) == pc_rtx
3277 && (GET_CODE (XEXP (SET_SRC (x), 1)) == LABEL_REF
3278 || GET_CODE (XEXP (SET_SRC (x), 1)) == RETURN))
3279 return 1;
3280 if (XEXP (SET_SRC (x), 1) == pc_rtx
3281 && (GET_CODE (XEXP (SET_SRC (x), 2)) == LABEL_REF
3282 || GET_CODE (XEXP (SET_SRC (x), 2)) == RETURN))
3283 return 1;
3284 return 0;
3287 /* Return nonzero if INSN is a (possibly) conditional jump
3288 and nothing more. */
3291 condjump_in_parallel_p (insn)
3292 rtx insn;
3294 register rtx x = PATTERN (insn);
3296 if (GET_CODE (x) != PARALLEL)
3297 return 0;
3298 else
3299 x = XVECEXP (x, 0, 0);
3301 if (GET_CODE (x) != SET)
3302 return 0;
3303 if (GET_CODE (SET_DEST (x)) != PC)
3304 return 0;
3305 if (GET_CODE (SET_SRC (x)) == LABEL_REF)
3306 return 1;
3307 if (GET_CODE (SET_SRC (x)) != IF_THEN_ELSE)
3308 return 0;
3309 if (XEXP (SET_SRC (x), 2) == pc_rtx
3310 && (GET_CODE (XEXP (SET_SRC (x), 1)) == LABEL_REF
3311 || GET_CODE (XEXP (SET_SRC (x), 1)) == RETURN))
3312 return 1;
3313 if (XEXP (SET_SRC (x), 1) == pc_rtx
3314 && (GET_CODE (XEXP (SET_SRC (x), 2)) == LABEL_REF
3315 || GET_CODE (XEXP (SET_SRC (x), 2)) == RETURN))
3316 return 1;
3317 return 0;
3320 #ifdef HAVE_cc0
3322 /* Return 1 if X is an RTX that does nothing but set the condition codes
3323 and CLOBBER or USE registers.
3324 Return -1 if X does explicitly set the condition codes,
3325 but also does other things. */
3328 sets_cc0_p (x)
3329 rtx x ATTRIBUTE_UNUSED;
3331 if (GET_CODE (x) == SET && SET_DEST (x) == cc0_rtx)
3332 return 1;
3333 if (GET_CODE (x) == PARALLEL)
3335 int i;
3336 int sets_cc0 = 0;
3337 int other_things = 0;
3338 for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
3340 if (GET_CODE (XVECEXP (x, 0, i)) == SET
3341 && SET_DEST (XVECEXP (x, 0, i)) == cc0_rtx)
3342 sets_cc0 = 1;
3343 else if (GET_CODE (XVECEXP (x, 0, i)) == SET)
3344 other_things = 1;
3346 return ! sets_cc0 ? 0 : other_things ? -1 : 1;
3348 return 0;
3350 #endif
3352 /* Follow any unconditional jump at LABEL;
3353 return the ultimate label reached by any such chain of jumps.
3354 If LABEL is not followed by a jump, return LABEL.
3355 If the chain loops or we can't find end, return LABEL,
3356 since that tells caller to avoid changing the insn.
3358 If RELOAD_COMPLETED is 0, we do not chain across a NOTE_INSN_LOOP_BEG or
3359 a USE or CLOBBER. */
3362 follow_jumps (label)
3363 rtx label;
3365 register rtx insn;
3366 register rtx next;
3367 register rtx value = label;
3368 register int depth;
3370 for (depth = 0;
3371 (depth < 10
3372 && (insn = next_active_insn (value)) != 0
3373 && GET_CODE (insn) == JUMP_INSN
3374 && ((JUMP_LABEL (insn) != 0 && simplejump_p (insn))
3375 || GET_CODE (PATTERN (insn)) == RETURN)
3376 && (next = NEXT_INSN (insn))
3377 && GET_CODE (next) == BARRIER);
3378 depth++)
3380 /* Don't chain through the insn that jumps into a loop
3381 from outside the loop,
3382 since that would create multiple loop entry jumps
3383 and prevent loop optimization. */
3384 rtx tem;
3385 if (!reload_completed)
3386 for (tem = value; tem != insn; tem = NEXT_INSN (tem))
3387 if (GET_CODE (tem) == NOTE
3388 && (NOTE_LINE_NUMBER (tem) == NOTE_INSN_LOOP_BEG
3389 /* ??? Optional. Disables some optimizations, but makes
3390 gcov output more accurate with -O. */
3391 || (flag_test_coverage && NOTE_LINE_NUMBER (tem) > 0)))
3392 return value;
3394 /* If we have found a cycle, make the insn jump to itself. */
3395 if (JUMP_LABEL (insn) == label)
3396 return label;
3398 tem = next_active_insn (JUMP_LABEL (insn));
3399 if (tem && (GET_CODE (PATTERN (tem)) == ADDR_VEC
3400 || GET_CODE (PATTERN (tem)) == ADDR_DIFF_VEC))
3401 break;
3403 value = JUMP_LABEL (insn);
3405 if (depth == 10)
3406 return label;
3407 return value;
3410 /* Assuming that field IDX of X is a vector of label_refs,
3411 replace each of them by the ultimate label reached by it.
3412 Return nonzero if a change is made.
3413 If IGNORE_LOOPS is 0, we do not chain across a NOTE_INSN_LOOP_BEG. */
3415 static int
3416 tension_vector_labels (x, idx)
3417 register rtx x;
3418 register int idx;
3420 int changed = 0;
3421 register int i;
3422 for (i = XVECLEN (x, idx) - 1; i >= 0; i--)
3424 register rtx olabel = XEXP (XVECEXP (x, idx, i), 0);
3425 register rtx nlabel = follow_jumps (olabel);
3426 if (nlabel && nlabel != olabel)
3428 XEXP (XVECEXP (x, idx, i), 0) = nlabel;
3429 ++LABEL_NUSES (nlabel);
3430 if (--LABEL_NUSES (olabel) == 0)
3431 delete_insn (olabel);
3432 changed = 1;
3435 return changed;
3438 /* Find all CODE_LABELs referred to in X, and increment their use counts.
3439 If INSN is a JUMP_INSN and there is at least one CODE_LABEL referenced
3440 in INSN, then store one of them in JUMP_LABEL (INSN).
3441 If INSN is an INSN or a CALL_INSN and there is at least one CODE_LABEL
3442 referenced in INSN, add a REG_LABEL note containing that label to INSN.
3443 Also, when there are consecutive labels, canonicalize on the last of them.
3445 Note that two labels separated by a loop-beginning note
3446 must be kept distinct if we have not yet done loop-optimization,
3447 because the gap between them is where loop-optimize
3448 will want to move invariant code to. CROSS_JUMP tells us
3449 that loop-optimization is done with.
3451 Once reload has completed (CROSS_JUMP non-zero), we need not consider
3452 two labels distinct if they are separated by only USE or CLOBBER insns. */
3454 static void
3455 mark_jump_label (x, insn, cross_jump)
3456 register rtx x;
3457 rtx insn;
3458 int cross_jump;
3460 register RTX_CODE code = GET_CODE (x);
3461 register int i;
3462 register char *fmt;
3464 switch (code)
3466 case PC:
3467 case CC0:
3468 case REG:
3469 case SUBREG:
3470 case CONST_INT:
3471 case SYMBOL_REF:
3472 case CONST_DOUBLE:
3473 case CLOBBER:
3474 case CALL:
3475 return;
3477 case MEM:
3478 /* If this is a constant-pool reference, see if it is a label. */
3479 if (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
3480 && CONSTANT_POOL_ADDRESS_P (XEXP (x, 0)))
3481 mark_jump_label (get_pool_constant (XEXP (x, 0)), insn, cross_jump);
3482 break;
3484 case LABEL_REF:
3486 rtx label = XEXP (x, 0);
3487 rtx olabel = label;
3488 rtx note;
3489 rtx next;
3491 if (GET_CODE (label) != CODE_LABEL)
3492 abort ();
3494 /* Ignore references to labels of containing functions. */
3495 if (LABEL_REF_NONLOCAL_P (x))
3496 break;
3498 /* If there are other labels following this one,
3499 replace it with the last of the consecutive labels. */
3500 for (next = NEXT_INSN (label); next; next = NEXT_INSN (next))
3502 if (GET_CODE (next) == CODE_LABEL)
3503 label = next;
3504 else if (cross_jump && GET_CODE (next) == INSN
3505 && (GET_CODE (PATTERN (next)) == USE
3506 || GET_CODE (PATTERN (next)) == CLOBBER))
3507 continue;
3508 else if (GET_CODE (next) != NOTE)
3509 break;
3510 else if (! cross_jump
3511 && (NOTE_LINE_NUMBER (next) == NOTE_INSN_LOOP_BEG
3512 || NOTE_LINE_NUMBER (next) == NOTE_INSN_FUNCTION_END
3513 /* ??? Optional. Disables some optimizations, but
3514 makes gcov output more accurate with -O. */
3515 || (flag_test_coverage && NOTE_LINE_NUMBER (next) > 0)))
3516 break;
3519 XEXP (x, 0) = label;
3520 if (! insn || ! INSN_DELETED_P (insn))
3521 ++LABEL_NUSES (label);
3523 if (insn)
3525 if (GET_CODE (insn) == JUMP_INSN)
3526 JUMP_LABEL (insn) = label;
3528 /* If we've changed OLABEL and we had a REG_LABEL note
3529 for it, update it as well. */
3530 else if (label != olabel
3531 && (note = find_reg_note (insn, REG_LABEL, olabel)) != 0)
3532 XEXP (note, 0) = label;
3534 /* Otherwise, add a REG_LABEL note for LABEL unless there already
3535 is one. */
3536 else if (! find_reg_note (insn, REG_LABEL, label))
3538 /* This code used to ignore labels which refered to dispatch
3539 tables to avoid flow.c generating worse code.
3541 However, in the presense of global optimizations like
3542 gcse which call find_basic_blocks without calling
3543 life_analysis, not recording such labels will lead
3544 to compiler aborts because of inconsistencies in the
3545 flow graph. So we go ahead and record the label.
3547 It may also be the case that the optimization argument
3548 is no longer valid because of the more accurate cfg
3549 we build in find_basic_blocks -- it no longer pessimizes
3550 code when it finds a REG_LABEL note. */
3551 REG_NOTES (insn) = gen_rtx_EXPR_LIST (REG_LABEL, label,
3552 REG_NOTES (insn));
3555 return;
3558 /* Do walk the labels in a vector, but not the first operand of an
3559 ADDR_DIFF_VEC. Don't set the JUMP_LABEL of a vector. */
3560 case ADDR_VEC:
3561 case ADDR_DIFF_VEC:
3562 if (! INSN_DELETED_P (insn))
3564 int eltnum = code == ADDR_DIFF_VEC ? 1 : 0;
3566 for (i = 0; i < XVECLEN (x, eltnum); i++)
3567 mark_jump_label (XVECEXP (x, eltnum, i), NULL_RTX, cross_jump);
3569 return;
3571 default:
3572 break;
3575 fmt = GET_RTX_FORMAT (code);
3576 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
3578 if (fmt[i] == 'e')
3579 mark_jump_label (XEXP (x, i), insn, cross_jump);
3580 else if (fmt[i] == 'E')
3582 register int j;
3583 for (j = 0; j < XVECLEN (x, i); j++)
3584 mark_jump_label (XVECEXP (x, i, j), insn, cross_jump);
3589 /* If all INSN does is set the pc, delete it,
3590 and delete the insn that set the condition codes for it
3591 if that's what the previous thing was. */
3593 void
3594 delete_jump (insn)
3595 rtx insn;
3597 register rtx set = single_set (insn);
3599 if (set && GET_CODE (SET_DEST (set)) == PC)
3600 delete_computation (insn);
3603 /* Delete INSN and recursively delete insns that compute values used only
3604 by INSN. This uses the REG_DEAD notes computed during flow analysis.
3605 If we are running before flow.c, we need do nothing since flow.c will
3606 delete dead code. We also can't know if the registers being used are
3607 dead or not at this point.
3609 Otherwise, look at all our REG_DEAD notes. If a previous insn does
3610 nothing other than set a register that dies in this insn, we can delete
3611 that insn as well.
3613 On machines with CC0, if CC0 is used in this insn, we may be able to
3614 delete the insn that set it. */
3616 static void
3617 delete_computation (insn)
3618 rtx insn;
3620 rtx note, next;
3622 #ifdef HAVE_cc0
3623 if (reg_referenced_p (cc0_rtx, PATTERN (insn)))
3625 rtx prev = prev_nonnote_insn (insn);
3626 /* We assume that at this stage
3627 CC's are always set explicitly
3628 and always immediately before the jump that
3629 will use them. So if the previous insn
3630 exists to set the CC's, delete it
3631 (unless it performs auto-increments, etc.). */
3632 if (prev && GET_CODE (prev) == INSN
3633 && sets_cc0_p (PATTERN (prev)))
3635 if (sets_cc0_p (PATTERN (prev)) > 0
3636 && !FIND_REG_INC_NOTE (prev, NULL_RTX))
3637 delete_computation (prev);
3638 else
3639 /* Otherwise, show that cc0 won't be used. */
3640 REG_NOTES (prev) = gen_rtx_EXPR_LIST (REG_UNUSED,
3641 cc0_rtx, REG_NOTES (prev));
3644 #endif
3646 for (note = REG_NOTES (insn); note; note = next)
3648 rtx our_prev;
3650 next = XEXP (note, 1);
3652 if (REG_NOTE_KIND (note) != REG_DEAD
3653 /* Verify that the REG_NOTE is legitimate. */
3654 || GET_CODE (XEXP (note, 0)) != REG)
3655 continue;
3657 for (our_prev = prev_nonnote_insn (insn);
3658 our_prev && GET_CODE (our_prev) == INSN;
3659 our_prev = prev_nonnote_insn (our_prev))
3661 /* If we reach a SEQUENCE, it is too complex to try to
3662 do anything with it, so give up. */
3663 if (GET_CODE (PATTERN (our_prev)) == SEQUENCE)
3664 break;
3666 if (GET_CODE (PATTERN (our_prev)) == USE
3667 && GET_CODE (XEXP (PATTERN (our_prev), 0)) == INSN)
3668 /* reorg creates USEs that look like this. We leave them
3669 alone because reorg needs them for its own purposes. */
3670 break;
3672 if (reg_set_p (XEXP (note, 0), PATTERN (our_prev)))
3674 if (FIND_REG_INC_NOTE (our_prev, NULL_RTX))
3675 break;
3677 if (GET_CODE (PATTERN (our_prev)) == PARALLEL)
3679 /* If we find a SET of something else, we can't
3680 delete the insn. */
3682 int i;
3684 for (i = 0; i < XVECLEN (PATTERN (our_prev), 0); i++)
3686 rtx part = XVECEXP (PATTERN (our_prev), 0, i);
3688 if (GET_CODE (part) == SET
3689 && SET_DEST (part) != XEXP (note, 0))
3690 break;
3693 if (i == XVECLEN (PATTERN (our_prev), 0))
3694 delete_computation (our_prev);
3696 else if (GET_CODE (PATTERN (our_prev)) == SET
3697 && SET_DEST (PATTERN (our_prev)) == XEXP (note, 0))
3698 delete_computation (our_prev);
3700 break;
3703 /* If OUR_PREV references the register that dies here, it is an
3704 additional use. Hence any prior SET isn't dead. However, this
3705 insn becomes the new place for the REG_DEAD note. */
3706 if (reg_overlap_mentioned_p (XEXP (note, 0),
3707 PATTERN (our_prev)))
3709 XEXP (note, 1) = REG_NOTES (our_prev);
3710 REG_NOTES (our_prev) = note;
3711 break;
3716 delete_insn (insn);
3719 /* Delete insn INSN from the chain of insns and update label ref counts.
3720 May delete some following insns as a consequence; may even delete
3721 a label elsewhere and insns that follow it.
3723 Returns the first insn after INSN that was not deleted. */
3726 delete_insn (insn)
3727 register rtx insn;
3729 register rtx next = NEXT_INSN (insn);
3730 register rtx prev = PREV_INSN (insn);
3731 register int was_code_label = (GET_CODE (insn) == CODE_LABEL);
3732 register int dont_really_delete = 0;
3734 while (next && INSN_DELETED_P (next))
3735 next = NEXT_INSN (next);
3737 /* This insn is already deleted => return first following nondeleted. */
3738 if (INSN_DELETED_P (insn))
3739 return next;
3741 /* Don't delete user-declared labels. Convert them to special NOTEs
3742 instead. */
3743 if (was_code_label && LABEL_NAME (insn) != 0
3744 && optimize && ! dont_really_delete)
3746 PUT_CODE (insn, NOTE);
3747 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED_LABEL;
3748 NOTE_SOURCE_FILE (insn) = 0;
3749 dont_really_delete = 1;
3751 else
3752 /* Mark this insn as deleted. */
3753 INSN_DELETED_P (insn) = 1;
3755 /* If this is an unconditional jump, delete it from the jump chain. */
3756 if (simplejump_p (insn))
3757 delete_from_jump_chain (insn);
3759 /* If instruction is followed by a barrier,
3760 delete the barrier too. */
3762 if (next != 0 && GET_CODE (next) == BARRIER)
3764 INSN_DELETED_P (next) = 1;
3765 next = NEXT_INSN (next);
3768 /* Patch out INSN (and the barrier if any) */
3770 if (optimize && ! dont_really_delete)
3772 if (prev)
3774 NEXT_INSN (prev) = next;
3775 if (GET_CODE (prev) == INSN && GET_CODE (PATTERN (prev)) == SEQUENCE)
3776 NEXT_INSN (XVECEXP (PATTERN (prev), 0,
3777 XVECLEN (PATTERN (prev), 0) - 1)) = next;
3780 if (next)
3782 PREV_INSN (next) = prev;
3783 if (GET_CODE (next) == INSN && GET_CODE (PATTERN (next)) == SEQUENCE)
3784 PREV_INSN (XVECEXP (PATTERN (next), 0, 0)) = prev;
3787 if (prev && NEXT_INSN (prev) == 0)
3788 set_last_insn (prev);
3791 /* If deleting a jump, decrement the count of the label,
3792 and delete the label if it is now unused. */
3794 if (GET_CODE (insn) == JUMP_INSN && JUMP_LABEL (insn))
3795 if (--LABEL_NUSES (JUMP_LABEL (insn)) == 0)
3797 /* This can delete NEXT or PREV,
3798 either directly if NEXT is JUMP_LABEL (INSN),
3799 or indirectly through more levels of jumps. */
3800 delete_insn (JUMP_LABEL (insn));
3801 /* I feel a little doubtful about this loop,
3802 but I see no clean and sure alternative way
3803 to find the first insn after INSN that is not now deleted.
3804 I hope this works. */
3805 while (next && INSN_DELETED_P (next))
3806 next = NEXT_INSN (next);
3807 return next;
3810 /* Likewise if we're deleting a dispatch table. */
3812 if (GET_CODE (insn) == JUMP_INSN
3813 && (GET_CODE (PATTERN (insn)) == ADDR_VEC
3814 || GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC))
3816 rtx pat = PATTERN (insn);
3817 int i, diff_vec_p = GET_CODE (pat) == ADDR_DIFF_VEC;
3818 int len = XVECLEN (pat, diff_vec_p);
3820 for (i = 0; i < len; i++)
3821 if (--LABEL_NUSES (XEXP (XVECEXP (pat, diff_vec_p, i), 0)) == 0)
3822 delete_insn (XEXP (XVECEXP (pat, diff_vec_p, i), 0));
3823 while (next && INSN_DELETED_P (next))
3824 next = NEXT_INSN (next);
3825 return next;
3828 while (prev && (INSN_DELETED_P (prev) || GET_CODE (prev) == NOTE))
3829 prev = PREV_INSN (prev);
3831 /* If INSN was a label and a dispatch table follows it,
3832 delete the dispatch table. The tablejump must have gone already.
3833 It isn't useful to fall through into a table. */
3835 if (was_code_label
3836 && NEXT_INSN (insn) != 0
3837 && GET_CODE (NEXT_INSN (insn)) == JUMP_INSN
3838 && (GET_CODE (PATTERN (NEXT_INSN (insn))) == ADDR_VEC
3839 || GET_CODE (PATTERN (NEXT_INSN (insn))) == ADDR_DIFF_VEC))
3840 next = delete_insn (NEXT_INSN (insn));
3842 /* If INSN was a label, delete insns following it if now unreachable. */
3844 if (was_code_label && prev && GET_CODE (prev) == BARRIER)
3846 register RTX_CODE code;
3847 while (next != 0
3848 && (GET_RTX_CLASS (code = GET_CODE (next)) == 'i'
3849 || code == NOTE || code == BARRIER
3850 || (code == CODE_LABEL && INSN_DELETED_P (next))))
3852 if (code == NOTE
3853 && NOTE_LINE_NUMBER (next) != NOTE_INSN_FUNCTION_END)
3854 next = NEXT_INSN (next);
3855 /* Keep going past other deleted labels to delete what follows. */
3856 else if (code == CODE_LABEL && INSN_DELETED_P (next))
3857 next = NEXT_INSN (next);
3858 else
3859 /* Note: if this deletes a jump, it can cause more
3860 deletion of unreachable code, after a different label.
3861 As long as the value from this recursive call is correct,
3862 this invocation functions correctly. */
3863 next = delete_insn (next);
3867 return next;
3870 /* Advance from INSN till reaching something not deleted
3871 then return that. May return INSN itself. */
3874 next_nondeleted_insn (insn)
3875 rtx insn;
3877 while (INSN_DELETED_P (insn))
3878 insn = NEXT_INSN (insn);
3879 return insn;
3882 /* Delete a range of insns from FROM to TO, inclusive.
3883 This is for the sake of peephole optimization, so assume
3884 that whatever these insns do will still be done by a new
3885 peephole insn that will replace them. */
3887 void
3888 delete_for_peephole (from, to)
3889 register rtx from, to;
3891 register rtx insn = from;
3893 while (1)
3895 register rtx next = NEXT_INSN (insn);
3896 register rtx prev = PREV_INSN (insn);
3898 if (GET_CODE (insn) != NOTE)
3900 INSN_DELETED_P (insn) = 1;
3902 /* Patch this insn out of the chain. */
3903 /* We don't do this all at once, because we
3904 must preserve all NOTEs. */
3905 if (prev)
3906 NEXT_INSN (prev) = next;
3908 if (next)
3909 PREV_INSN (next) = prev;
3912 if (insn == to)
3913 break;
3914 insn = next;
3917 /* Note that if TO is an unconditional jump
3918 we *do not* delete the BARRIER that follows,
3919 since the peephole that replaces this sequence
3920 is also an unconditional jump in that case. */
3923 /* Invert the condition of the jump JUMP, and make it jump
3924 to label NLABEL instead of where it jumps now. */
3927 invert_jump (jump, nlabel)
3928 rtx jump, nlabel;
3930 /* We have to either invert the condition and change the label or
3931 do neither. Either operation could fail. We first try to invert
3932 the jump. If that succeeds, we try changing the label. If that fails,
3933 we invert the jump back to what it was. */
3935 if (! invert_exp (PATTERN (jump), jump))
3936 return 0;
3938 if (redirect_jump (jump, nlabel))
3940 if (flag_branch_probabilities)
3942 rtx note = find_reg_note (jump, REG_BR_PROB, 0);
3944 /* An inverted jump means that a probability taken becomes a
3945 probability not taken. Subtract the branch probability from the
3946 probability base to convert it back to a taken probability.
3947 (We don't flip the probability on a branch that's never taken. */
3948 if (note && XINT (XEXP (note, 0), 0) >= 0)
3949 XINT (XEXP (note, 0), 0) = REG_BR_PROB_BASE - XINT (XEXP (note, 0), 0);
3952 return 1;
3955 if (! invert_exp (PATTERN (jump), jump))
3956 /* This should just be putting it back the way it was. */
3957 abort ();
3959 return 0;
3962 /* Invert the jump condition of rtx X contained in jump insn, INSN.
3964 Return 1 if we can do so, 0 if we cannot find a way to do so that
3965 matches a pattern. */
3968 invert_exp (x, insn)
3969 rtx x;
3970 rtx insn;
3972 register RTX_CODE code;
3973 register int i;
3974 register char *fmt;
3976 code = GET_CODE (x);
3978 if (code == IF_THEN_ELSE)
3980 register rtx comp = XEXP (x, 0);
3981 register rtx tem;
3983 /* We can do this in two ways: The preferable way, which can only
3984 be done if this is not an integer comparison, is to reverse
3985 the comparison code. Otherwise, swap the THEN-part and ELSE-part
3986 of the IF_THEN_ELSE. If we can't do either, fail. */
3988 if (can_reverse_comparison_p (comp, insn)
3989 && validate_change (insn, &XEXP (x, 0),
3990 gen_rtx_fmt_ee (reverse_condition (GET_CODE (comp)),
3991 GET_MODE (comp), XEXP (comp, 0),
3992 XEXP (comp, 1)), 0))
3993 return 1;
3995 tem = XEXP (x, 1);
3996 validate_change (insn, &XEXP (x, 1), XEXP (x, 2), 1);
3997 validate_change (insn, &XEXP (x, 2), tem, 1);
3998 return apply_change_group ();
4001 fmt = GET_RTX_FORMAT (code);
4002 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4004 if (fmt[i] == 'e')
4005 if (! invert_exp (XEXP (x, i), insn))
4006 return 0;
4007 if (fmt[i] == 'E')
4009 register int j;
4010 for (j = 0; j < XVECLEN (x, i); j++)
4011 if (!invert_exp (XVECEXP (x, i, j), insn))
4012 return 0;
4016 return 1;
4019 /* Make jump JUMP jump to label NLABEL instead of where it jumps now.
4020 If the old jump target label is unused as a result,
4021 it and the code following it may be deleted.
4023 If NLABEL is zero, we are to turn the jump into a (possibly conditional)
4024 RETURN insn.
4026 The return value will be 1 if the change was made, 0 if it wasn't (this
4027 can only occur for NLABEL == 0). */
4030 redirect_jump (jump, nlabel)
4031 rtx jump, nlabel;
4033 register rtx olabel = JUMP_LABEL (jump);
4035 if (nlabel == olabel)
4036 return 1;
4038 if (! redirect_exp (&PATTERN (jump), olabel, nlabel, jump))
4039 return 0;
4041 /* If this is an unconditional branch, delete it from the jump_chain of
4042 OLABEL and add it to the jump_chain of NLABEL (assuming both labels
4043 have UID's in range and JUMP_CHAIN is valid). */
4044 if (jump_chain && (simplejump_p (jump)
4045 || GET_CODE (PATTERN (jump)) == RETURN))
4047 int label_index = nlabel ? INSN_UID (nlabel) : 0;
4049 delete_from_jump_chain (jump);
4050 if (label_index < max_jump_chain
4051 && INSN_UID (jump) < max_jump_chain)
4053 jump_chain[INSN_UID (jump)] = jump_chain[label_index];
4054 jump_chain[label_index] = jump;
4058 JUMP_LABEL (jump) = nlabel;
4059 if (nlabel)
4060 ++LABEL_NUSES (nlabel);
4062 if (olabel && --LABEL_NUSES (olabel) == 0)
4063 delete_insn (olabel);
4065 return 1;
4068 /* Delete the instruction JUMP from any jump chain it might be on. */
4070 static void
4071 delete_from_jump_chain (jump)
4072 rtx jump;
4074 int index;
4075 rtx olabel = JUMP_LABEL (jump);
4077 /* Handle unconditional jumps. */
4078 if (jump_chain && olabel != 0
4079 && INSN_UID (olabel) < max_jump_chain
4080 && simplejump_p (jump))
4081 index = INSN_UID (olabel);
4082 /* Handle return insns. */
4083 else if (jump_chain && GET_CODE (PATTERN (jump)) == RETURN)
4084 index = 0;
4085 else return;
4087 if (jump_chain[index] == jump)
4088 jump_chain[index] = jump_chain[INSN_UID (jump)];
4089 else
4091 rtx insn;
4093 for (insn = jump_chain[index];
4094 insn != 0;
4095 insn = jump_chain[INSN_UID (insn)])
4096 if (jump_chain[INSN_UID (insn)] == jump)
4098 jump_chain[INSN_UID (insn)] = jump_chain[INSN_UID (jump)];
4099 break;
4104 /* If NLABEL is nonzero, throughout the rtx at LOC,
4105 alter (LABEL_REF OLABEL) to (LABEL_REF NLABEL). If OLABEL is
4106 zero, alter (RETURN) to (LABEL_REF NLABEL).
4108 If NLABEL is zero, alter (LABEL_REF OLABEL) to (RETURN) and check
4109 validity with validate_change. Convert (set (pc) (label_ref olabel))
4110 to (return).
4112 Return 0 if we found a change we would like to make but it is invalid.
4113 Otherwise, return 1. */
4116 redirect_exp (loc, olabel, nlabel, insn)
4117 rtx *loc;
4118 rtx olabel, nlabel;
4119 rtx insn;
4121 register rtx x = *loc;
4122 register RTX_CODE code = GET_CODE (x);
4123 register int i;
4124 register char *fmt;
4126 if (code == LABEL_REF)
4128 if (XEXP (x, 0) == olabel)
4130 if (nlabel)
4131 XEXP (x, 0) = nlabel;
4132 else
4133 return validate_change (insn, loc, gen_rtx_RETURN (VOIDmode), 0);
4134 return 1;
4137 else if (code == RETURN && olabel == 0)
4139 x = gen_rtx_LABEL_REF (VOIDmode, nlabel);
4140 if (loc == &PATTERN (insn))
4141 x = gen_rtx_SET (VOIDmode, pc_rtx, x);
4142 return validate_change (insn, loc, x, 0);
4145 if (code == SET && nlabel == 0 && SET_DEST (x) == pc_rtx
4146 && GET_CODE (SET_SRC (x)) == LABEL_REF
4147 && XEXP (SET_SRC (x), 0) == olabel)
4148 return validate_change (insn, loc, gen_rtx_RETURN (VOIDmode), 0);
4150 fmt = GET_RTX_FORMAT (code);
4151 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4153 if (fmt[i] == 'e')
4154 if (! redirect_exp (&XEXP (x, i), olabel, nlabel, insn))
4155 return 0;
4156 if (fmt[i] == 'E')
4158 register int j;
4159 for (j = 0; j < XVECLEN (x, i); j++)
4160 if (! redirect_exp (&XVECEXP (x, i, j), olabel, nlabel, insn))
4161 return 0;
4165 return 1;
4168 /* Make jump JUMP jump to label NLABEL, assuming it used to be a tablejump.
4170 If the old jump target label (before the dispatch table) becomes unused,
4171 it and the dispatch table may be deleted. In that case, find the insn
4172 before the jump references that label and delete it and logical successors
4173 too. */
4175 static void
4176 redirect_tablejump (jump, nlabel)
4177 rtx jump, nlabel;
4179 register rtx olabel = JUMP_LABEL (jump);
4181 /* Add this jump to the jump_chain of NLABEL. */
4182 if (jump_chain && INSN_UID (nlabel) < max_jump_chain
4183 && INSN_UID (jump) < max_jump_chain)
4185 jump_chain[INSN_UID (jump)] = jump_chain[INSN_UID (nlabel)];
4186 jump_chain[INSN_UID (nlabel)] = jump;
4189 PATTERN (jump) = gen_jump (nlabel);
4190 JUMP_LABEL (jump) = nlabel;
4191 ++LABEL_NUSES (nlabel);
4192 INSN_CODE (jump) = -1;
4194 if (--LABEL_NUSES (olabel) == 0)
4196 delete_labelref_insn (jump, olabel, 0);
4197 delete_insn (olabel);
4201 /* Find the insn referencing LABEL that is a logical predecessor of INSN.
4202 If we found one, delete it and then delete this insn if DELETE_THIS is
4203 non-zero. Return non-zero if INSN or a predecessor references LABEL. */
4205 static int
4206 delete_labelref_insn (insn, label, delete_this)
4207 rtx insn, label;
4208 int delete_this;
4210 int deleted = 0;
4211 rtx link;
4213 if (GET_CODE (insn) != NOTE
4214 && reg_mentioned_p (label, PATTERN (insn)))
4216 if (delete_this)
4218 delete_insn (insn);
4219 deleted = 1;
4221 else
4222 return 1;
4225 for (link = LOG_LINKS (insn); link; link = XEXP (link, 1))
4226 if (delete_labelref_insn (XEXP (link, 0), label, 1))
4228 if (delete_this)
4230 delete_insn (insn);
4231 deleted = 1;
4233 else
4234 return 1;
4237 return deleted;
4240 /* Like rtx_equal_p except that it considers two REGs as equal
4241 if they renumber to the same value and considers two commutative
4242 operations to be the same if the order of the operands has been
4243 reversed.
4245 ??? Addition is not commutative on the PA due to the weird implicit
4246 space register selection rules for memory addresses. Therefore, we
4247 don't consider a + b == b + a.
4249 We could/should make this test a little tighter. Possibly only
4250 disabling it on the PA via some backend macro or only disabling this
4251 case when the PLUS is inside a MEM. */
4254 rtx_renumbered_equal_p (x, y)
4255 rtx x, y;
4257 register int i;
4258 register RTX_CODE code = GET_CODE (x);
4259 register char *fmt;
4261 if (x == y)
4262 return 1;
4264 if ((code == REG || (code == SUBREG && GET_CODE (SUBREG_REG (x)) == REG))
4265 && (GET_CODE (y) == REG || (GET_CODE (y) == SUBREG
4266 && GET_CODE (SUBREG_REG (y)) == REG)))
4268 int reg_x = -1, reg_y = -1;
4269 int word_x = 0, word_y = 0;
4271 if (GET_MODE (x) != GET_MODE (y))
4272 return 0;
4274 /* If we haven't done any renumbering, don't
4275 make any assumptions. */
4276 if (reg_renumber == 0)
4277 return rtx_equal_p (x, y);
4279 if (code == SUBREG)
4281 reg_x = REGNO (SUBREG_REG (x));
4282 word_x = SUBREG_WORD (x);
4284 if (reg_renumber[reg_x] >= 0)
4286 reg_x = reg_renumber[reg_x] + word_x;
4287 word_x = 0;
4291 else
4293 reg_x = REGNO (x);
4294 if (reg_renumber[reg_x] >= 0)
4295 reg_x = reg_renumber[reg_x];
4298 if (GET_CODE (y) == SUBREG)
4300 reg_y = REGNO (SUBREG_REG (y));
4301 word_y = SUBREG_WORD (y);
4303 if (reg_renumber[reg_y] >= 0)
4305 reg_y = reg_renumber[reg_y];
4306 word_y = 0;
4310 else
4312 reg_y = REGNO (y);
4313 if (reg_renumber[reg_y] >= 0)
4314 reg_y = reg_renumber[reg_y];
4317 return reg_x >= 0 && reg_x == reg_y && word_x == word_y;
4320 /* Now we have disposed of all the cases
4321 in which different rtx codes can match. */
4322 if (code != GET_CODE (y))
4323 return 0;
4325 switch (code)
4327 case PC:
4328 case CC0:
4329 case ADDR_VEC:
4330 case ADDR_DIFF_VEC:
4331 return 0;
4333 case CONST_INT:
4334 return INTVAL (x) == INTVAL (y);
4336 case LABEL_REF:
4337 /* We can't assume nonlocal labels have their following insns yet. */
4338 if (LABEL_REF_NONLOCAL_P (x) || LABEL_REF_NONLOCAL_P (y))
4339 return XEXP (x, 0) == XEXP (y, 0);
4341 /* Two label-refs are equivalent if they point at labels
4342 in the same position in the instruction stream. */
4343 return (next_real_insn (XEXP (x, 0))
4344 == next_real_insn (XEXP (y, 0)));
4346 case SYMBOL_REF:
4347 return XSTR (x, 0) == XSTR (y, 0);
4349 default:
4350 break;
4353 /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent. */
4355 if (GET_MODE (x) != GET_MODE (y))
4356 return 0;
4358 /* For commutative operations, the RTX match if the operand match in any
4359 order. Also handle the simple binary and unary cases without a loop.
4361 ??? Don't consider PLUS a commutative operator; see comments above. */
4362 if ((code == EQ || code == NE || GET_RTX_CLASS (code) == 'c')
4363 && code != PLUS)
4364 return ((rtx_renumbered_equal_p (XEXP (x, 0), XEXP (y, 0))
4365 && rtx_renumbered_equal_p (XEXP (x, 1), XEXP (y, 1)))
4366 || (rtx_renumbered_equal_p (XEXP (x, 0), XEXP (y, 1))
4367 && rtx_renumbered_equal_p (XEXP (x, 1), XEXP (y, 0))));
4368 else if (GET_RTX_CLASS (code) == '<' || GET_RTX_CLASS (code) == '2')
4369 return (rtx_renumbered_equal_p (XEXP (x, 0), XEXP (y, 0))
4370 && rtx_renumbered_equal_p (XEXP (x, 1), XEXP (y, 1)));
4371 else if (GET_RTX_CLASS (code) == '1')
4372 return rtx_renumbered_equal_p (XEXP (x, 0), XEXP (y, 0));
4374 /* Compare the elements. If any pair of corresponding elements
4375 fail to match, return 0 for the whole things. */
4377 fmt = GET_RTX_FORMAT (code);
4378 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4380 register int j;
4381 switch (fmt[i])
4383 case 'w':
4384 if (XWINT (x, i) != XWINT (y, i))
4385 return 0;
4386 break;
4388 case 'i':
4389 if (XINT (x, i) != XINT (y, i))
4390 return 0;
4391 break;
4393 case 's':
4394 if (strcmp (XSTR (x, i), XSTR (y, i)))
4395 return 0;
4396 break;
4398 case 'e':
4399 if (! rtx_renumbered_equal_p (XEXP (x, i), XEXP (y, i)))
4400 return 0;
4401 break;
4403 case 'u':
4404 if (XEXP (x, i) != XEXP (y, i))
4405 return 0;
4406 /* fall through. */
4407 case '0':
4408 break;
4410 case 'E':
4411 if (XVECLEN (x, i) != XVECLEN (y, i))
4412 return 0;
4413 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
4414 if (!rtx_renumbered_equal_p (XVECEXP (x, i, j), XVECEXP (y, i, j)))
4415 return 0;
4416 break;
4418 default:
4419 abort ();
4422 return 1;
4425 /* If X is a hard register or equivalent to one or a subregister of one,
4426 return the hard register number. If X is a pseudo register that was not
4427 assigned a hard register, return the pseudo register number. Otherwise,
4428 return -1. Any rtx is valid for X. */
4431 true_regnum (x)
4432 rtx x;
4434 if (GET_CODE (x) == REG)
4436 if (REGNO (x) >= FIRST_PSEUDO_REGISTER && reg_renumber[REGNO (x)] >= 0)
4437 return reg_renumber[REGNO (x)];
4438 return REGNO (x);
4440 if (GET_CODE (x) == SUBREG)
4442 int base = true_regnum (SUBREG_REG (x));
4443 if (base >= 0 && base < FIRST_PSEUDO_REGISTER)
4444 return SUBREG_WORD (x) + base;
4446 return -1;
4449 /* Optimize code of the form:
4451 for (x = a[i]; x; ...)
4453 for (x = a[i]; x; ...)
4455 foo:
4457 Loop optimize will change the above code into
4459 if (x = a[i])
4460 for (;;)
4461 { ...; if (! (x = ...)) break; }
4462 if (x = a[i])
4463 for (;;)
4464 { ...; if (! (x = ...)) break; }
4465 foo:
4467 In general, if the first test fails, the program can branch
4468 directly to `foo' and skip the second try which is doomed to fail.
4469 We run this after loop optimization and before flow analysis. */
4471 /* When comparing the insn patterns, we track the fact that different
4472 pseudo-register numbers may have been used in each computation.
4473 The following array stores an equivalence -- same_regs[I] == J means
4474 that pseudo register I was used in the first set of tests in a context
4475 where J was used in the second set. We also count the number of such
4476 pending equivalences. If nonzero, the expressions really aren't the
4477 same. */
4479 static int *same_regs;
4481 static int num_same_regs;
4483 /* Track any registers modified between the target of the first jump and
4484 the second jump. They never compare equal. */
4486 static char *modified_regs;
4488 /* Record if memory was modified. */
4490 static int modified_mem;
4492 /* Called via note_stores on each insn between the target of the first
4493 branch and the second branch. It marks any changed registers. */
4495 static void
4496 mark_modified_reg (dest, x)
4497 rtx dest;
4498 rtx x ATTRIBUTE_UNUSED;
4500 int regno, i;
4502 if (GET_CODE (dest) == SUBREG)
4503 dest = SUBREG_REG (dest);
4505 if (GET_CODE (dest) == MEM)
4506 modified_mem = 1;
4508 if (GET_CODE (dest) != REG)
4509 return;
4511 regno = REGNO (dest);
4512 if (regno >= FIRST_PSEUDO_REGISTER)
4513 modified_regs[regno] = 1;
4514 else
4515 for (i = 0; i < HARD_REGNO_NREGS (regno, GET_MODE (dest)); i++)
4516 modified_regs[regno + i] = 1;
4519 /* F is the first insn in the chain of insns. */
4521 void
4522 thread_jumps (f, max_reg, flag_before_loop)
4523 rtx f;
4524 int max_reg;
4525 int flag_before_loop;
4527 /* Basic algorithm is to find a conditional branch,
4528 the label it may branch to, and the branch after
4529 that label. If the two branches test the same condition,
4530 walk back from both branch paths until the insn patterns
4531 differ, or code labels are hit. If we make it back to
4532 the target of the first branch, then we know that the first branch
4533 will either always succeed or always fail depending on the relative
4534 senses of the two branches. So adjust the first branch accordingly
4535 in this case. */
4537 rtx label, b1, b2, t1, t2;
4538 enum rtx_code code1, code2;
4539 rtx b1op0, b1op1, b2op0, b2op1;
4540 int changed = 1;
4541 int i;
4542 int *all_reset;
4544 /* Allocate register tables and quick-reset table. */
4545 modified_regs = (char *) alloca (max_reg * sizeof (char));
4546 same_regs = (int *) alloca (max_reg * sizeof (int));
4547 all_reset = (int *) alloca (max_reg * sizeof (int));
4548 for (i = 0; i < max_reg; i++)
4549 all_reset[i] = -1;
4551 while (changed)
4553 changed = 0;
4555 for (b1 = f; b1; b1 = NEXT_INSN (b1))
4557 /* Get to a candidate branch insn. */
4558 if (GET_CODE (b1) != JUMP_INSN
4559 || ! condjump_p (b1) || simplejump_p (b1)
4560 || JUMP_LABEL (b1) == 0)
4561 continue;
4563 bzero (modified_regs, max_reg * sizeof (char));
4564 modified_mem = 0;
4566 bcopy ((char *) all_reset, (char *) same_regs,
4567 max_reg * sizeof (int));
4568 num_same_regs = 0;
4570 label = JUMP_LABEL (b1);
4572 /* Look for a branch after the target. Record any registers and
4573 memory modified between the target and the branch. Stop when we
4574 get to a label since we can't know what was changed there. */
4575 for (b2 = NEXT_INSN (label); b2; b2 = NEXT_INSN (b2))
4577 if (GET_CODE (b2) == CODE_LABEL)
4578 break;
4580 else if (GET_CODE (b2) == JUMP_INSN)
4582 /* If this is an unconditional jump and is the only use of
4583 its target label, we can follow it. */
4584 if (simplejump_p (b2)
4585 && JUMP_LABEL (b2) != 0
4586 && LABEL_NUSES (JUMP_LABEL (b2)) == 1)
4588 b2 = JUMP_LABEL (b2);
4589 continue;
4591 else
4592 break;
4595 if (GET_CODE (b2) != CALL_INSN && GET_CODE (b2) != INSN)
4596 continue;
4598 if (GET_CODE (b2) == CALL_INSN)
4600 modified_mem = 1;
4601 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
4602 if (call_used_regs[i] && ! fixed_regs[i]
4603 && i != STACK_POINTER_REGNUM
4604 && i != FRAME_POINTER_REGNUM
4605 && i != HARD_FRAME_POINTER_REGNUM
4606 && i != ARG_POINTER_REGNUM)
4607 modified_regs[i] = 1;
4610 note_stores (PATTERN (b2), mark_modified_reg);
4613 /* Check the next candidate branch insn from the label
4614 of the first. */
4615 if (b2 == 0
4616 || GET_CODE (b2) != JUMP_INSN
4617 || b2 == b1
4618 || ! condjump_p (b2)
4619 || simplejump_p (b2))
4620 continue;
4622 /* Get the comparison codes and operands, reversing the
4623 codes if appropriate. If we don't have comparison codes,
4624 we can't do anything. */
4625 b1op0 = XEXP (XEXP (SET_SRC (PATTERN (b1)), 0), 0);
4626 b1op1 = XEXP (XEXP (SET_SRC (PATTERN (b1)), 0), 1);
4627 code1 = GET_CODE (XEXP (SET_SRC (PATTERN (b1)), 0));
4628 if (XEXP (SET_SRC (PATTERN (b1)), 1) == pc_rtx)
4629 code1 = reverse_condition (code1);
4631 b2op0 = XEXP (XEXP (SET_SRC (PATTERN (b2)), 0), 0);
4632 b2op1 = XEXP (XEXP (SET_SRC (PATTERN (b2)), 0), 1);
4633 code2 = GET_CODE (XEXP (SET_SRC (PATTERN (b2)), 0));
4634 if (XEXP (SET_SRC (PATTERN (b2)), 1) == pc_rtx)
4635 code2 = reverse_condition (code2);
4637 /* If they test the same things and knowing that B1 branches
4638 tells us whether or not B2 branches, check if we
4639 can thread the branch. */
4640 if (rtx_equal_for_thread_p (b1op0, b2op0, b2)
4641 && rtx_equal_for_thread_p (b1op1, b2op1, b2)
4642 && (comparison_dominates_p (code1, code2)
4643 || (comparison_dominates_p (code1, reverse_condition (code2))
4644 && can_reverse_comparison_p (XEXP (SET_SRC (PATTERN (b1)),
4646 b1))))
4648 t1 = prev_nonnote_insn (b1);
4649 t2 = prev_nonnote_insn (b2);
4651 while (t1 != 0 && t2 != 0)
4653 if (t2 == label)
4655 /* We have reached the target of the first branch.
4656 If there are no pending register equivalents,
4657 we know that this branch will either always
4658 succeed (if the senses of the two branches are
4659 the same) or always fail (if not). */
4660 rtx new_label;
4662 if (num_same_regs != 0)
4663 break;
4665 if (comparison_dominates_p (code1, code2))
4666 new_label = JUMP_LABEL (b2);
4667 else
4668 new_label = get_label_after (b2);
4670 if (JUMP_LABEL (b1) != new_label)
4672 rtx prev = PREV_INSN (new_label);
4674 if (flag_before_loop
4675 && GET_CODE (prev) == NOTE
4676 && NOTE_LINE_NUMBER (prev) == NOTE_INSN_LOOP_BEG)
4678 /* Don't thread to the loop label. If a loop
4679 label is reused, loop optimization will
4680 be disabled for that loop. */
4681 new_label = gen_label_rtx ();
4682 emit_label_after (new_label, PREV_INSN (prev));
4684 changed |= redirect_jump (b1, new_label);
4686 break;
4689 /* If either of these is not a normal insn (it might be
4690 a JUMP_INSN, CALL_INSN, or CODE_LABEL) we fail. (NOTEs
4691 have already been skipped above.) Similarly, fail
4692 if the insns are different. */
4693 if (GET_CODE (t1) != INSN || GET_CODE (t2) != INSN
4694 || recog_memoized (t1) != recog_memoized (t2)
4695 || ! rtx_equal_for_thread_p (PATTERN (t1),
4696 PATTERN (t2), t2))
4697 break;
4699 t1 = prev_nonnote_insn (t1);
4700 t2 = prev_nonnote_insn (t2);
4707 /* This is like RTX_EQUAL_P except that it knows about our handling of
4708 possibly equivalent registers and knows to consider volatile and
4709 modified objects as not equal.
4711 YINSN is the insn containing Y. */
4714 rtx_equal_for_thread_p (x, y, yinsn)
4715 rtx x, y;
4716 rtx yinsn;
4718 register int i;
4719 register int j;
4720 register enum rtx_code code;
4721 register char *fmt;
4723 code = GET_CODE (x);
4724 /* Rtx's of different codes cannot be equal. */
4725 if (code != GET_CODE (y))
4726 return 0;
4728 /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent.
4729 (REG:SI x) and (REG:HI x) are NOT equivalent. */
4731 if (GET_MODE (x) != GET_MODE (y))
4732 return 0;
4734 /* For floating-point, consider everything unequal. This is a bit
4735 pessimistic, but this pass would only rarely do anything for FP
4736 anyway. */
4737 if (TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT
4738 && FLOAT_MODE_P (GET_MODE (x)) && ! flag_fast_math)
4739 return 0;
4741 /* For commutative operations, the RTX match if the operand match in any
4742 order. Also handle the simple binary and unary cases without a loop. */
4743 if (code == EQ || code == NE || GET_RTX_CLASS (code) == 'c')
4744 return ((rtx_equal_for_thread_p (XEXP (x, 0), XEXP (y, 0), yinsn)
4745 && rtx_equal_for_thread_p (XEXP (x, 1), XEXP (y, 1), yinsn))
4746 || (rtx_equal_for_thread_p (XEXP (x, 0), XEXP (y, 1), yinsn)
4747 && rtx_equal_for_thread_p (XEXP (x, 1), XEXP (y, 0), yinsn)));
4748 else if (GET_RTX_CLASS (code) == '<' || GET_RTX_CLASS (code) == '2')
4749 return (rtx_equal_for_thread_p (XEXP (x, 0), XEXP (y, 0), yinsn)
4750 && rtx_equal_for_thread_p (XEXP (x, 1), XEXP (y, 1), yinsn));
4751 else if (GET_RTX_CLASS (code) == '1')
4752 return rtx_equal_for_thread_p (XEXP (x, 0), XEXP (y, 0), yinsn);
4754 /* Handle special-cases first. */
4755 switch (code)
4757 case REG:
4758 if (REGNO (x) == REGNO (y) && ! modified_regs[REGNO (x)])
4759 return 1;
4761 /* If neither is user variable or hard register, check for possible
4762 equivalence. */
4763 if (REG_USERVAR_P (x) || REG_USERVAR_P (y)
4764 || REGNO (x) < FIRST_PSEUDO_REGISTER
4765 || REGNO (y) < FIRST_PSEUDO_REGISTER)
4766 return 0;
4768 if (same_regs[REGNO (x)] == -1)
4770 same_regs[REGNO (x)] = REGNO (y);
4771 num_same_regs++;
4773 /* If this is the first time we are seeing a register on the `Y'
4774 side, see if it is the last use. If not, we can't thread the
4775 jump, so mark it as not equivalent. */
4776 if (REGNO_LAST_UID (REGNO (y)) != INSN_UID (yinsn))
4777 return 0;
4779 return 1;
4781 else
4782 return (same_regs[REGNO (x)] == REGNO (y));
4784 break;
4786 case MEM:
4787 /* If memory modified or either volatile, not equivalent.
4788 Else, check address. */
4789 if (modified_mem || MEM_VOLATILE_P (x) || MEM_VOLATILE_P (y))
4790 return 0;
4792 return rtx_equal_for_thread_p (XEXP (x, 0), XEXP (y, 0), yinsn);
4794 case ASM_INPUT:
4795 if (MEM_VOLATILE_P (x) || MEM_VOLATILE_P (y))
4796 return 0;
4798 break;
4800 case SET:
4801 /* Cancel a pending `same_regs' if setting equivalenced registers.
4802 Then process source. */
4803 if (GET_CODE (SET_DEST (x)) == REG
4804 && GET_CODE (SET_DEST (y)) == REG)
4806 if (same_regs[REGNO (SET_DEST (x))] == REGNO (SET_DEST (y)))
4808 same_regs[REGNO (SET_DEST (x))] = -1;
4809 num_same_regs--;
4811 else if (REGNO (SET_DEST (x)) != REGNO (SET_DEST (y)))
4812 return 0;
4814 else
4815 if (rtx_equal_for_thread_p (SET_DEST (x), SET_DEST (y), yinsn) == 0)
4816 return 0;
4818 return rtx_equal_for_thread_p (SET_SRC (x), SET_SRC (y), yinsn);
4820 case LABEL_REF:
4821 return XEXP (x, 0) == XEXP (y, 0);
4823 case SYMBOL_REF:
4824 return XSTR (x, 0) == XSTR (y, 0);
4826 default:
4827 break;
4830 if (x == y)
4831 return 1;
4833 fmt = GET_RTX_FORMAT (code);
4834 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4836 switch (fmt[i])
4838 case 'w':
4839 if (XWINT (x, i) != XWINT (y, i))
4840 return 0;
4841 break;
4843 case 'n':
4844 case 'i':
4845 if (XINT (x, i) != XINT (y, i))
4846 return 0;
4847 break;
4849 case 'V':
4850 case 'E':
4851 /* Two vectors must have the same length. */
4852 if (XVECLEN (x, i) != XVECLEN (y, i))
4853 return 0;
4855 /* And the corresponding elements must match. */
4856 for (j = 0; j < XVECLEN (x, i); j++)
4857 if (rtx_equal_for_thread_p (XVECEXP (x, i, j),
4858 XVECEXP (y, i, j), yinsn) == 0)
4859 return 0;
4860 break;
4862 case 'e':
4863 if (rtx_equal_for_thread_p (XEXP (x, i), XEXP (y, i), yinsn) == 0)
4864 return 0;
4865 break;
4867 case 'S':
4868 case 's':
4869 if (strcmp (XSTR (x, i), XSTR (y, i)))
4870 return 0;
4871 break;
4873 case 'u':
4874 /* These are just backpointers, so they don't matter. */
4875 break;
4877 case '0':
4878 break;
4880 /* It is believed that rtx's at this level will never
4881 contain anything but integers and other rtx's,
4882 except for within LABEL_REFs and SYMBOL_REFs. */
4883 default:
4884 abort ();
4887 return 1;
4891 #ifndef HAVE_cc0
4892 /* Return the insn that NEW can be safely inserted in front of starting at
4893 the jump insn INSN. Return 0 if it is not safe to do this jump
4894 optimization. Note that NEW must contain a single set. */
4896 static rtx
4897 find_insert_position (insn, new)
4898 rtx insn;
4899 rtx new;
4901 int i;
4902 rtx prev;
4904 /* If NEW does not clobber, it is safe to insert NEW before INSN. */
4905 if (GET_CODE (PATTERN (new)) != PARALLEL)
4906 return insn;
4908 for (i = XVECLEN (PATTERN (new), 0) - 1; i >= 0; i--)
4909 if (GET_CODE (XVECEXP (PATTERN (new), 0, i)) == CLOBBER
4910 && reg_overlap_mentioned_p (XEXP (XVECEXP (PATTERN (new), 0, i), 0),
4911 insn))
4912 break;
4914 if (i < 0)
4915 return insn;
4917 /* There is a good chance that the previous insn PREV sets the thing
4918 being clobbered (often the CC in a hard reg). If PREV does not
4919 use what NEW sets, we can insert NEW before PREV. */
4921 prev = prev_active_insn (insn);
4922 for (i = XVECLEN (PATTERN (new), 0) - 1; i >= 0; i--)
4923 if (GET_CODE (XVECEXP (PATTERN (new), 0, i)) == CLOBBER
4924 && reg_overlap_mentioned_p (XEXP (XVECEXP (PATTERN (new), 0, i), 0),
4925 insn)
4926 && ! modified_in_p (XEXP (XVECEXP (PATTERN (new), 0, i), 0),
4927 prev))
4928 return 0;
4930 return reg_mentioned_p (SET_DEST (single_set (new)), prev) ? 0 : prev;
4932 #endif /* !HAVE_cc0 */