]> gcc.gnu.org Git - gcc.git/blob - gcc/jump.c
(jump_optimize): Delete insns that set registers that are not used elsewhere.
[gcc.git] / gcc / jump.c
1 /* Optimize jump instructions, for GNU compiler.
2 Copyright (C) 1987, 1988, 1989, 1991, 1992 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
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.
10
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.
15
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, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21 /* This is the jump-optimization pass of the compiler.
22 It is run two or three times: once before cse, sometimes once after cse,
23 and once after reload (before final).
24
25 jump_optimize deletes unreachable code and labels that are not used.
26 It also deletes jumps that jump to the following insn,
27 and simplifies jumps around unconditional jumps and jumps
28 to unconditional jumps.
29
30 Each CODE_LABEL has a count of the times it is used
31 stored in the LABEL_NUSES internal field, and each JUMP_INSN
32 has one label that it refers to stored in the
33 JUMP_LABEL internal field. With this we can detect labels that
34 become unused because of the deletion of all the jumps that
35 formerly used them. The JUMP_LABEL info is sometimes looked
36 at by later passes.
37
38 Optionally, cross-jumping can be done. Currently it is done
39 only the last time (when after reload and before final).
40 In fact, the code for cross-jumping now assumes that register
41 allocation has been done, since it uses `rtx_renumbered_equal_p'.
42
43 Jump optimization is done after cse when cse's constant-propagation
44 causes jumps to become unconditional or to be deleted.
45
46 Unreachable loops are not detected here, because the labels
47 have references and the insns appear reachable from the labels.
48 find_basic_blocks in flow.c finds and deletes such loops.
49
50 The subroutines delete_insn, redirect_jump, and invert_jump are used
51 from other passes as well. */
52
53 #include "config.h"
54 #include "rtl.h"
55 #include "flags.h"
56 #include "hard-reg-set.h"
57 #include "regs.h"
58 #include "expr.h"
59 #include "insn-config.h"
60 #include "insn-flags.h"
61 #include "real.h"
62
63 /* ??? Eventually must record somehow the labels used by jumps
64 from nested functions. */
65 /* Pre-record the next or previous real insn for each label?
66 No, this pass is very fast anyway. */
67 /* Condense consecutive labels?
68 This would make life analysis faster, maybe. */
69 /* Optimize jump y; x: ... y: jumpif... x?
70 Don't know if it is worth bothering with. */
71 /* Optimize two cases of conditional jump to conditional jump?
72 This can never delete any instruction or make anything dead,
73 or even change what is live at any point.
74 So perhaps let combiner do it. */
75
76 /* Vector indexed by uid.
77 For each CODE_LABEL, index by its uid to get first unconditional jump
78 that jumps to the label.
79 For each JUMP_INSN, index by its uid to get the next unconditional jump
80 that jumps to the same label.
81 Element 0 is the start of a chain of all return insns.
82 (It is safe to use element 0 because insn uid 0 is not used. */
83
84 static rtx *jump_chain;
85
86 /* List of labels referred to from initializers.
87 These can never be deleted. */
88 rtx forced_labels;
89
90 /* Maximum index in jump_chain. */
91
92 static int max_jump_chain;
93
94 /* Set nonzero by jump_optimize if control can fall through
95 to the end of the function. */
96 int can_reach_end;
97
98 /* Indicates whether death notes are significant in cross jump analysis.
99 Normally they are not significant, because of A and B jump to C,
100 and R dies in A, it must die in B. But this might not be true after
101 stack register conversion, and we must compare death notes in that
102 case. */
103
104 static int cross_jump_death_matters = 0;
105
106 static int duplicate_loop_exit_test ();
107 void redirect_tablejump ();
108 static int delete_labelref_insn ();
109 static void mark_jump_label ();
110 void delete_jump ();
111 void delete_computation ();
112 static void delete_from_jump_chain ();
113 static int tension_vector_labels ();
114 static void find_cross_jump ();
115 static void do_cross_jump ();
116 static int jump_back_p ();
117
118 extern rtx gen_jump ();
119 \f
120 /* Delete no-op jumps and optimize jumps to jumps
121 and jumps around jumps.
122 Delete unused labels and unreachable code.
123
124 If CROSS_JUMP is 1, detect matching code
125 before a jump and its destination and unify them.
126 If CROSS_JUMP is 2, do cross-jumping, but pay attention to death notes.
127
128 If NOOP_MOVES is nonzero, delete no-op move insns.
129
130 If AFTER_REGSCAN is nonzero, then this jump pass is being run immediately
131 after regscan, and it is safe to use regno_first_uid and regno_last_uid.
132
133 If `optimize' is zero, don't change any code,
134 just determine whether control drops off the end of the function.
135 This case occurs when we have -W and not -O.
136 It works because `delete_insn' checks the value of `optimize'
137 and refrains from actually deleting when that is 0. */
138
139 void
140 jump_optimize (f, cross_jump, noop_moves, after_regscan)
141 rtx f;
142 int cross_jump;
143 int noop_moves;
144 int after_regscan;
145 {
146 register rtx insn, next;
147 int changed;
148 int first = 1;
149 int max_uid = 0;
150 rtx last_insn;
151
152 cross_jump_death_matters = (cross_jump == 2);
153
154 /* Initialize LABEL_NUSES and JUMP_LABEL fields. */
155
156 for (insn = f; insn; insn = NEXT_INSN (insn))
157 {
158 if (GET_CODE (insn) == CODE_LABEL)
159 LABEL_NUSES (insn) = (LABEL_PRESERVE_P (insn) != 0);
160 else if (GET_CODE (insn) == JUMP_INSN)
161 JUMP_LABEL (insn) = 0;
162 if (INSN_UID (insn) > max_uid)
163 max_uid = INSN_UID (insn);
164 }
165
166 max_uid++;
167
168 /* Delete insns following barriers, up to next label. */
169
170 for (insn = f; insn;)
171 {
172 if (GET_CODE (insn) == BARRIER)
173 {
174 insn = NEXT_INSN (insn);
175 while (insn != 0 && GET_CODE (insn) != CODE_LABEL)
176 {
177 if (GET_CODE (insn) == NOTE
178 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_FUNCTION_END)
179 insn = NEXT_INSN (insn);
180 else
181 insn = delete_insn (insn);
182 }
183 /* INSN is now the code_label. */
184 }
185 else
186 insn = NEXT_INSN (insn);
187 }
188
189 /* Leave some extra room for labels and duplicate exit test insns
190 we make. */
191 max_jump_chain = max_uid * 14 / 10;
192 jump_chain = (rtx *) alloca (max_jump_chain * sizeof (rtx));
193 bzero (jump_chain, max_jump_chain * sizeof (rtx));
194
195 /* Mark the label each jump jumps to.
196 Combine consecutive labels, and count uses of labels.
197
198 For each label, make a chain (using `jump_chain')
199 of all the *unconditional* jumps that jump to it;
200 also make a chain of all returns. */
201
202 for (insn = f; insn; insn = NEXT_INSN (insn))
203 if ((GET_CODE (insn) == JUMP_INSN || GET_CODE (insn) == INSN
204 || GET_CODE (insn) == CALL_INSN)
205 && ! INSN_DELETED_P (insn))
206 {
207 mark_jump_label (PATTERN (insn), insn, cross_jump);
208 if (GET_CODE (insn) == JUMP_INSN)
209 {
210 if (JUMP_LABEL (insn) != 0 && simplejump_p (insn))
211 {
212 jump_chain[INSN_UID (insn)]
213 = jump_chain[INSN_UID (JUMP_LABEL (insn))];
214 jump_chain[INSN_UID (JUMP_LABEL (insn))] = insn;
215 }
216 if (GET_CODE (PATTERN (insn)) == RETURN)
217 {
218 jump_chain[INSN_UID (insn)] = jump_chain[0];
219 jump_chain[0] = insn;
220 }
221 }
222 }
223
224 /* Keep track of labels used from static data;
225 they cannot ever be deleted. */
226
227 for (insn = forced_labels; insn; insn = XEXP (insn, 1))
228 LABEL_NUSES (XEXP (insn, 0))++;
229
230 /* Delete all labels already not referenced.
231 Also find the last insn. */
232
233 last_insn = 0;
234 for (insn = f; insn; )
235 {
236 if (GET_CODE (insn) == CODE_LABEL && LABEL_NUSES (insn) == 0)
237 insn = delete_insn (insn);
238 else
239 {
240 last_insn = insn;
241 insn = NEXT_INSN (insn);
242 }
243 }
244
245 if (!optimize)
246 {
247 /* See if there is still a NOTE_INSN_FUNCTION_END in this function.
248 If so record that this function can drop off the end. */
249
250 insn = last_insn;
251 {
252 int n_labels = 1;
253 while (insn
254 /* One label can follow the end-note: the return label. */
255 && ((GET_CODE (insn) == CODE_LABEL && n_labels-- > 0)
256 /* Ordinary insns can follow it if returning a structure. */
257 || GET_CODE (insn) == INSN
258 /* If machine uses explicit RETURN insns, no epilogue,
259 then one of them follows the note. */
260 || (GET_CODE (insn) == JUMP_INSN
261 && GET_CODE (PATTERN (insn)) == RETURN)
262 /* Other kinds of notes can follow also. */
263 || (GET_CODE (insn) == NOTE
264 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_FUNCTION_END)))
265 insn = PREV_INSN (insn);
266 }
267
268 /* Report if control can fall through at the end of the function. */
269 if (insn && GET_CODE (insn) == NOTE
270 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_FUNCTION_END
271 && ! INSN_DELETED_P (insn))
272 can_reach_end = 1;
273
274 /* Zero the "deleted" flag of all the "deleted" insns. */
275 for (insn = f; insn; insn = NEXT_INSN (insn))
276 INSN_DELETED_P (insn) = 0;
277 return;
278 }
279
280 #ifdef HAVE_return
281 if (HAVE_return)
282 {
283 /* If we fall through to the epilogue, see if we can insert a RETURN insn
284 in front of it. If the machine allows it at this point (we might be
285 after reload for a leaf routine), it will improve optimization for it
286 to be there. */
287 insn = get_last_insn ();
288 while (insn && GET_CODE (insn) == NOTE)
289 insn = PREV_INSN (insn);
290
291 if (insn && GET_CODE (insn) != BARRIER)
292 {
293 emit_jump_insn (gen_return ());
294 emit_barrier ();
295 }
296 }
297 #endif
298
299 if (noop_moves)
300 for (insn = f; insn; )
301 {
302 next = NEXT_INSN (insn);
303
304 if (GET_CODE (insn) == INSN)
305 {
306 register rtx body = PATTERN (insn);
307
308 /* Combine stack_adjusts with following push_insns. */
309 #ifdef PUSH_ROUNDING
310 if (GET_CODE (body) == SET
311 && SET_DEST (body) == stack_pointer_rtx
312 && GET_CODE (SET_SRC (body)) == PLUS
313 && XEXP (SET_SRC (body), 0) == stack_pointer_rtx
314 && GET_CODE (XEXP (SET_SRC (body), 1)) == CONST_INT
315 && INTVAL (XEXP (SET_SRC (body), 1)) > 0)
316 {
317 rtx p;
318 rtx stack_adjust_insn = insn;
319 int stack_adjust_amount = INTVAL (XEXP (SET_SRC (body), 1));
320 int total_pushed = 0;
321 int pushes = 0;
322
323 /* Find all successive push insns. */
324 p = insn;
325 /* Don't convert more than three pushes;
326 that starts adding too many displaced addresses
327 and the whole thing starts becoming a losing
328 proposition. */
329 while (pushes < 3)
330 {
331 rtx pbody, dest;
332 p = next_nonnote_insn (p);
333 if (p == 0 || GET_CODE (p) != INSN)
334 break;
335 pbody = PATTERN (p);
336 if (GET_CODE (pbody) != SET)
337 break;
338 dest = SET_DEST (pbody);
339 /* Allow a no-op move between the adjust and the push. */
340 if (GET_CODE (dest) == REG
341 && GET_CODE (SET_SRC (pbody)) == REG
342 && REGNO (dest) == REGNO (SET_SRC (pbody)))
343 continue;
344 if (! (GET_CODE (dest) == MEM
345 && GET_CODE (XEXP (dest, 0)) == POST_INC
346 && XEXP (XEXP (dest, 0), 0) == stack_pointer_rtx))
347 break;
348 pushes++;
349 if (total_pushed + GET_MODE_SIZE (SET_DEST (pbody))
350 > stack_adjust_amount)
351 break;
352 total_pushed += GET_MODE_SIZE (SET_DEST (pbody));
353 }
354
355 /* Discard the amount pushed from the stack adjust;
356 maybe eliminate it entirely. */
357 if (total_pushed >= stack_adjust_amount)
358 {
359 delete_insn (stack_adjust_insn);
360 total_pushed = stack_adjust_amount;
361 }
362 else
363 XEXP (SET_SRC (PATTERN (stack_adjust_insn)), 1)
364 = GEN_INT (stack_adjust_amount - total_pushed);
365
366 /* Change the appropriate push insns to ordinary stores. */
367 p = insn;
368 while (total_pushed > 0)
369 {
370 rtx pbody, dest;
371 p = next_nonnote_insn (p);
372 if (GET_CODE (p) != INSN)
373 break;
374 pbody = PATTERN (p);
375 if (GET_CODE (pbody) == SET)
376 break;
377 dest = SET_DEST (pbody);
378 if (! (GET_CODE (dest) == MEM
379 && GET_CODE (XEXP (dest, 0)) == POST_INC
380 && XEXP (XEXP (dest, 0), 0) == stack_pointer_rtx))
381 break;
382 total_pushed -= GET_MODE_SIZE (SET_DEST (pbody));
383 /* If this push doesn't fully fit in the space
384 of the stack adjust that we deleted,
385 make another stack adjust here for what we
386 didn't use up. There should be peepholes
387 to recognize the resulting sequence of insns. */
388 if (total_pushed < 0)
389 {
390 emit_insn_before (gen_add2_insn (stack_pointer_rtx,
391 GEN_INT (- total_pushed)),
392 p);
393 break;
394 }
395 XEXP (dest, 0)
396 = plus_constant (stack_pointer_rtx, total_pushed);
397 }
398 }
399 #endif
400
401 /* Detect and delete no-op move instructions
402 resulting from not allocating a parameter in a register. */
403
404 if (GET_CODE (body) == SET
405 && (SET_DEST (body) == SET_SRC (body)
406 || (GET_CODE (SET_DEST (body)) == MEM
407 && GET_CODE (SET_SRC (body)) == MEM
408 && rtx_equal_p (SET_SRC (body), SET_DEST (body))))
409 && ! (GET_CODE (SET_DEST (body)) == MEM
410 && MEM_VOLATILE_P (SET_DEST (body)))
411 && ! (GET_CODE (SET_SRC (body)) == MEM
412 && MEM_VOLATILE_P (SET_SRC (body))))
413 delete_insn (insn);
414
415 /* Detect and ignore no-op move instructions
416 resulting from smart or fortuitous register allocation. */
417
418 else if (GET_CODE (body) == SET)
419 {
420 int sreg = true_regnum (SET_SRC (body));
421 int dreg = true_regnum (SET_DEST (body));
422
423 if (sreg == dreg && sreg >= 0)
424 delete_insn (insn);
425 else if (sreg >= 0 && dreg >= 0)
426 {
427 rtx trial;
428 rtx tem = find_equiv_reg (NULL_RTX, insn, 0,
429 sreg, NULL_PTR, dreg,
430 GET_MODE (SET_SRC (body)));
431
432 #ifdef PRESERVE_DEATH_INFO_REGNO_P
433 /* Deleting insn could lose a death-note for SREG or DREG
434 so don't do it if final needs accurate death-notes. */
435 if (! PRESERVE_DEATH_INFO_REGNO_P (sreg)
436 && ! PRESERVE_DEATH_INFO_REGNO_P (dreg))
437 #endif
438 {
439 /* DREG may have been the target of a REG_DEAD note in
440 the insn which makes INSN redundant. If so, reorg
441 would still think it is dead. So search for such a
442 note and delete it if we find it. */
443 for (trial = prev_nonnote_insn (insn);
444 trial && GET_CODE (trial) != CODE_LABEL;
445 trial = prev_nonnote_insn (trial))
446 if (find_regno_note (trial, REG_DEAD, dreg))
447 {
448 remove_death (dreg, trial);
449 break;
450 }
451
452 if (tem != 0
453 && GET_MODE (tem) == GET_MODE (SET_DEST (body)))
454 delete_insn (insn);
455 }
456 }
457 else if (dreg >= 0 && CONSTANT_P (SET_SRC (body))
458 && find_equiv_reg (SET_SRC (body), insn, 0, dreg,
459 NULL_PTR, 0,
460 GET_MODE (SET_DEST (body))))
461 {
462 /* This handles the case where we have two consecutive
463 assignments of the same constant to pseudos that didn't
464 get a hard reg. Each SET from the constant will be
465 converted into a SET of the spill register and an
466 output reload will be made following it. This produces
467 two loads of the same constant into the same spill
468 register. */
469
470 rtx in_insn = insn;
471
472 /* Look back for a death note for the first reg.
473 If there is one, it is no longer accurate. */
474 while (in_insn && GET_CODE (in_insn) != CODE_LABEL)
475 {
476 if ((GET_CODE (in_insn) == INSN
477 || GET_CODE (in_insn) == JUMP_INSN)
478 && find_regno_note (in_insn, REG_DEAD, dreg))
479 {
480 remove_death (dreg, in_insn);
481 break;
482 }
483 in_insn = PREV_INSN (in_insn);
484 }
485
486 /* Delete the second load of the value. */
487 delete_insn (insn);
488 }
489 }
490 else if (GET_CODE (body) == PARALLEL)
491 {
492 /* If each part is a set between two identical registers or
493 a USE or CLOBBER, delete the insn. */
494 int i, sreg, dreg;
495 rtx tem;
496
497 for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
498 {
499 tem = XVECEXP (body, 0, i);
500 if (GET_CODE (tem) == USE || GET_CODE (tem) == CLOBBER)
501 continue;
502
503 if (GET_CODE (tem) != SET
504 || (sreg = true_regnum (SET_SRC (tem))) < 0
505 || (dreg = true_regnum (SET_DEST (tem))) < 0
506 || dreg != sreg)
507 break;
508 }
509
510 if (i < 0)
511 delete_insn (insn);
512 }
513 #if !BYTES_BIG_ENDIAN /* Not worth the hair to detect this
514 in the big-endian case. */
515 /* Also delete insns to store bit fields if they are no-ops. */
516 else if (GET_CODE (body) == SET
517 && GET_CODE (SET_DEST (body)) == ZERO_EXTRACT
518 && XEXP (SET_DEST (body), 2) == const0_rtx
519 && XEXP (SET_DEST (body), 0) == SET_SRC (body)
520 && ! (GET_CODE (SET_SRC (body)) == MEM
521 && MEM_VOLATILE_P (SET_SRC (body))))
522 delete_insn (insn);
523 #endif /* not BYTES_BIG_ENDIAN */
524 }
525 insn = next;
526 }
527
528 /* If we haven't yet gotten to reload and we have just run regscan,
529 delete any insn that sets a register that isn't used elsewhere.
530 This helps some of the optimizations below by having less insns
531 being jumped around. */
532
533 if (! reload_completed && after_regscan)
534 for (insn = f; insn; insn = next)
535 {
536 rtx set = single_set (insn);
537
538 next = NEXT_INSN (insn);
539
540 if (set && GET_CODE (SET_DEST (set)) == REG
541 && REGNO (SET_DEST (set)) >= FIRST_PSEUDO_REGISTER
542 && regno_first_uid[REGNO (SET_DEST (set))] == INSN_UID (insn)
543 && regno_last_uid[REGNO (SET_DEST (set))] == INSN_UID (insn)
544 && ! side_effects_p (SET_SRC (set)))
545 delete_insn (insn);
546 }
547
548 /* Now iterate optimizing jumps until nothing changes over one pass. */
549 changed = 1;
550 while (changed)
551 {
552 changed = 0;
553
554 for (insn = f; insn; insn = next)
555 {
556 rtx reallabelprev;
557 rtx temp, temp1, temp2, temp3, temp4, temp5, temp6;
558 rtx nlabel;
559 int this_is_simplejump, this_is_condjump, reversep;
560 #if 0
561 /* If NOT the first iteration, if this is the last jump pass
562 (just before final), do the special peephole optimizations.
563 Avoiding the first iteration gives ordinary jump opts
564 a chance to work before peephole opts. */
565
566 if (reload_completed && !first && !flag_no_peephole)
567 if (GET_CODE (insn) == INSN || GET_CODE (insn) == JUMP_INSN)
568 peephole (insn);
569 #endif
570
571 /* That could have deleted some insns after INSN, so check now
572 what the following insn is. */
573
574 next = NEXT_INSN (insn);
575
576 /* See if this is a NOTE_INSN_LOOP_BEG followed by an unconditional
577 jump. Try to optimize by duplicating the loop exit test if so.
578 This is only safe immediately after regscan, because it uses
579 the values of regno_first_uid and regno_last_uid. */
580 if (after_regscan && GET_CODE (insn) == NOTE
581 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG
582 && (temp1 = next_nonnote_insn (insn)) != 0
583 && simplejump_p (temp1))
584 {
585 temp = PREV_INSN (insn);
586 if (duplicate_loop_exit_test (insn))
587 {
588 changed = 1;
589 next = NEXT_INSN (temp);
590 continue;
591 }
592 }
593
594 if (GET_CODE (insn) != JUMP_INSN)
595 continue;
596
597 this_is_simplejump = simplejump_p (insn);
598 this_is_condjump = condjump_p (insn);
599
600 /* Tension the labels in dispatch tables. */
601
602 if (GET_CODE (PATTERN (insn)) == ADDR_VEC)
603 changed |= tension_vector_labels (PATTERN (insn), 0);
604 if (GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC)
605 changed |= tension_vector_labels (PATTERN (insn), 1);
606
607 /* If a dispatch table always goes to the same place,
608 get rid of it and replace the insn that uses it. */
609
610 if (GET_CODE (PATTERN (insn)) == ADDR_VEC
611 || GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC)
612 {
613 int i;
614 rtx pat = PATTERN (insn);
615 int diff_vec_p = GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC;
616 int len = XVECLEN (pat, diff_vec_p);
617 rtx dispatch = prev_real_insn (insn);
618
619 for (i = 0; i < len; i++)
620 if (XEXP (XVECEXP (pat, diff_vec_p, i), 0)
621 != XEXP (XVECEXP (pat, diff_vec_p, 0), 0))
622 break;
623 if (i == len
624 && GET_CODE (dispatch) == JUMP_INSN
625 && JUMP_LABEL (dispatch) != 0
626 /* Don't mess with a casesi insn. */
627 && !(GET_CODE (PATTERN (dispatch)) == SET
628 && (GET_CODE (SET_SRC (PATTERN (dispatch)))
629 == IF_THEN_ELSE))
630 && next_real_insn (JUMP_LABEL (dispatch)) == insn)
631 {
632 redirect_tablejump (dispatch,
633 XEXP (XVECEXP (pat, diff_vec_p, 0), 0));
634 changed = 1;
635 }
636 }
637
638 reallabelprev = prev_active_insn (JUMP_LABEL (insn));
639
640 /* If a jump references the end of the function, try to turn
641 it into a RETURN insn, possibly a conditional one. */
642 if (JUMP_LABEL (insn)
643 && next_active_insn (JUMP_LABEL (insn)) == 0)
644 changed |= redirect_jump (insn, NULL_RTX);
645
646 /* Detect jump to following insn. */
647 if (reallabelprev == insn && condjump_p (insn))
648 {
649 delete_jump (insn);
650 changed = 1;
651 continue;
652 }
653
654 /* If we have an unconditional jump preceded by a USE, try to put
655 the USE before the target and jump there. This simplifies many
656 of the optimizations below since we don't have to worry about
657 dealing with these USE insns. We only do this if the label
658 being branch to already has the identical USE or if code
659 never falls through to that label. */
660
661 if (this_is_simplejump
662 && (temp = prev_nonnote_insn (insn)) != 0
663 && GET_CODE (temp) == INSN && GET_CODE (PATTERN (temp)) == USE
664 && (temp1 = prev_nonnote_insn (JUMP_LABEL (insn))) != 0
665 && (GET_CODE (temp1) == BARRIER
666 || (GET_CODE (temp1) == INSN
667 && rtx_equal_p (PATTERN (temp), PATTERN (temp1)))))
668 {
669 if (GET_CODE (temp1) == BARRIER)
670 {
671 emit_insn_after (PATTERN (temp), temp1);
672 temp1 = NEXT_INSN (temp1);
673 }
674
675 delete_insn (temp);
676 redirect_jump (insn, get_label_before (temp1));
677 reallabelprev = prev_real_insn (temp1);
678 changed = 1;
679 }
680
681 /* Simplify if (...) x = a; else x = b; by converting it
682 to x = b; if (...) x = a;
683 if B is sufficiently simple, the test doesn't involve X,
684 and nothing in the test modifies B or X.
685
686 If we have small register classes, we also can't do this if X
687 is a hard register.
688
689 If the "x = b;" insn has any REG_NOTES, we don't do this because
690 of the possibility that we are running after CSE and there is a
691 REG_EQUAL note that is only valid if the branch has already been
692 taken. If we move the insn with the REG_EQUAL note, we may
693 fold the comparison to always be false in a later CSE pass.
694 (We could also delete the REG_NOTES when moving the insn, but it
695 seems simpler to not move it.) An exception is that we can move
696 the insn if the only note is a REG_EQUAL or REG_EQUIV whose
697 value is the same as "b".
698
699 INSN is the branch over the `else' part.
700
701 We set:
702
703 TEMP to the jump insn preceding "x = a;"
704 TEMP1 to X
705 TEMP2 to the insn that sets "x = b;"
706 TEMP3 to the insn that sets "x = a;"
707 TEMP4 to the set of "x = b"; */
708
709 if (this_is_simplejump
710 && (temp3 = prev_active_insn (insn)) != 0
711 && GET_CODE (temp3) == INSN
712 && (temp4 = single_set (temp3)) != 0
713 && GET_CODE (temp1 = SET_DEST (temp4)) == REG
714 #ifdef SMALL_REGISTER_CLASSES
715 && REGNO (temp1) >= FIRST_PSEUDO_REGISTER
716 #endif
717 && (temp2 = next_active_insn (insn)) != 0
718 && GET_CODE (temp2) == INSN
719 && (temp4 = single_set (temp2)) != 0
720 && rtx_equal_p (SET_DEST (temp4), temp1)
721 && (GET_CODE (SET_SRC (temp4)) == REG
722 || GET_CODE (SET_SRC (temp4)) == SUBREG
723 || CONSTANT_P (SET_SRC (temp4)))
724 && (REG_NOTES (temp2) == 0
725 || ((REG_NOTE_KIND (REG_NOTES (temp2)) == REG_EQUAL
726 || REG_NOTE_KIND (REG_NOTES (temp2)) == REG_EQUIV)
727 && XEXP (REG_NOTES (temp2), 1) == 0
728 && rtx_equal_p (XEXP (REG_NOTES (temp2), 0),
729 SET_SRC (temp4))))
730 && (temp = prev_active_insn (temp3)) != 0
731 && condjump_p (temp) && ! simplejump_p (temp)
732 /* TEMP must skip over the "x = a;" insn */
733 && prev_real_insn (JUMP_LABEL (temp)) == insn
734 && no_labels_between_p (insn, JUMP_LABEL (temp))
735 /* There must be no other entries to the "x = b;" insn. */
736 && no_labels_between_p (JUMP_LABEL (temp), temp2)
737 /* INSN must either branch to the insn after TEMP2 or the insn
738 after TEMP2 must branch to the same place as INSN. */
739 && (reallabelprev == temp2
740 || ((temp5 = next_active_insn (temp2)) != 0
741 && simplejump_p (temp5)
742 && JUMP_LABEL (temp5) == JUMP_LABEL (insn))))
743 {
744 /* The test expression, X, may be a complicated test with
745 multiple branches. See if we can find all the uses of
746 the label that TEMP branches to without hitting a CALL_INSN
747 or a jump to somewhere else. */
748 rtx target = JUMP_LABEL (temp);
749 int nuses = LABEL_NUSES (target);
750 rtx p, q;
751
752 /* Set P to the first jump insn that goes around "x = a;". */
753 for (p = temp; nuses && p; p = prev_nonnote_insn (p))
754 {
755 if (GET_CODE (p) == JUMP_INSN)
756 {
757 if (condjump_p (p) && ! simplejump_p (p)
758 && JUMP_LABEL (p) == target)
759 {
760 nuses--;
761 if (nuses == 0)
762 break;
763 }
764 else
765 break;
766 }
767 else if (GET_CODE (p) == CALL_INSN)
768 break;
769 }
770
771 #ifdef HAVE_cc0
772 /* We cannot insert anything between a set of cc and its use
773 so if P uses cc0, we must back up to the previous insn. */
774 q = prev_nonnote_insn (p);
775 if (q && GET_RTX_CLASS (GET_CODE (q)) == 'i'
776 && sets_cc0_p (PATTERN (q)))
777 p = q;
778 #endif
779
780 if (p)
781 p = PREV_INSN (p);
782
783 /* If we found all the uses and there was no data conflict, we
784 can move the assignment unless we can branch into the middle
785 from somewhere. */
786 if (nuses == 0 && p
787 && no_labels_between_p (p, insn)
788 && ! reg_referenced_between_p (temp1, p, NEXT_INSN (temp3))
789 && ! reg_set_between_p (temp1, p, temp3)
790 && (GET_CODE (SET_SRC (temp4)) == CONST_INT
791 || ! reg_set_between_p (SET_SRC (temp4), p, temp2)))
792 {
793 emit_insn_after_with_line_notes (PATTERN (temp2), p, temp2);
794 delete_insn (temp2);
795
796 /* Set NEXT to an insn that we know won't go away. */
797 next = next_active_insn (insn);
798
799 /* Delete the jump around the set. Note that we must do
800 this before we redirect the test jumps so that it won't
801 delete the code immediately following the assignment
802 we moved (which might be a jump). */
803
804 delete_insn (insn);
805
806 /* We either have two consecutive labels or a jump to
807 a jump, so adjust all the JUMP_INSNs to branch to where
808 INSN branches to. */
809 for (p = NEXT_INSN (p); p != next; p = NEXT_INSN (p))
810 if (GET_CODE (p) == JUMP_INSN)
811 redirect_jump (p, target);
812
813 changed = 1;
814 continue;
815 }
816 }
817
818 #ifndef HAVE_cc0
819 /* If we have if (...) x = exp; and branches are expensive,
820 EXP is a single insn, does not have any side effects, cannot
821 trap, and is not too costly, convert this to
822 t = exp; if (...) x = t;
823
824 Don't do this when we have CC0 because it is unlikely to help
825 and we'd need to worry about where to place the new insn and
826 the potential for conflicts. We also can't do this when we have
827 notes on the insn for the same reason as above.
828
829 We set:
830
831 TEMP to the "x = exp;" insn.
832 TEMP1 to the single set in the "x = exp; insn.
833 TEMP2 to "x". */
834
835 if (! reload_completed
836 && this_is_condjump && ! this_is_simplejump
837 && BRANCH_COST >= 3
838 && (temp = next_nonnote_insn (insn)) != 0
839 && REG_NOTES (temp) == 0
840 && (reallabelprev == temp
841 || ((temp2 = next_active_insn (temp)) != 0
842 && simplejump_p (temp2)
843 && JUMP_LABEL (temp2) == JUMP_LABEL (insn)))
844 && (temp1 = single_set (temp)) != 0
845 && (temp2 = SET_DEST (temp1), GET_CODE (temp2) == REG)
846 && GET_MODE_CLASS (GET_MODE (temp2)) == MODE_INT
847 #ifdef SMALL_REGISTER_CLASSES
848 && REGNO (temp2) >= FIRST_PSEUDO_REGISTER
849 #endif
850 && GET_CODE (SET_SRC (temp1)) != REG
851 && GET_CODE (SET_SRC (temp1)) != SUBREG
852 && GET_CODE (SET_SRC (temp1)) != CONST_INT
853 && ! side_effects_p (SET_SRC (temp1))
854 && ! may_trap_p (SET_SRC (temp1))
855 && rtx_cost (SET_SRC (temp1)) < 10)
856 {
857 rtx new = gen_reg_rtx (GET_MODE (temp2));
858
859 if (validate_change (temp, &SET_DEST (temp1), new, 0))
860 {
861 next = emit_insn_after (gen_move_insn (temp2, new), insn);
862 emit_insn_after_with_line_notes (PATTERN (temp),
863 PREV_INSN (insn), temp);
864 delete_insn (temp);
865 }
866 }
867
868 /* Similarly, if it takes two insns to compute EXP but they
869 have the same destination. Here TEMP3 will be the second
870 insn and TEMP4 the SET from that insn. */
871
872 if (! reload_completed
873 && this_is_condjump && ! this_is_simplejump
874 && BRANCH_COST >= 4
875 && (temp = next_nonnote_insn (insn)) != 0
876 && REG_NOTES (temp) == 0
877 && (temp3 = next_nonnote_insn (temp)) != 0
878 && REG_NOTES (temp3) == 0
879 && (reallabelprev == temp3
880 || ((temp2 = next_active_insn (temp3)) != 0
881 && simplejump_p (temp2)
882 && JUMP_LABEL (temp2) == JUMP_LABEL (insn)))
883 && (temp1 = single_set (temp)) != 0
884 && (temp2 = SET_DEST (temp1), GET_CODE (temp2) == REG)
885 && GET_MODE_CLASS (GET_MODE (temp2)) == MODE_INT
886 #ifdef SMALL_REGISTER_CLASSES
887 && REGNO (temp2) >= FIRST_PSEUDO_REGISTER
888 #endif
889 && ! side_effects_p (SET_SRC (temp1))
890 && ! may_trap_p (SET_SRC (temp1))
891 && rtx_cost (SET_SRC (temp1)) < 10
892 && (temp4 = single_set (temp3)) != 0
893 && rtx_equal_p (SET_DEST (temp4), temp2)
894 && ! side_effects_p (SET_SRC (temp4))
895 && ! may_trap_p (SET_SRC (temp4))
896 && rtx_cost (SET_SRC (temp4)) < 10)
897 {
898 rtx new = gen_reg_rtx (GET_MODE (temp2));
899
900 if (validate_change (temp, &SET_DEST (temp1), new, 0))
901 {
902 next = emit_insn_after (gen_move_insn (temp2, new), insn);
903 emit_insn_after_with_line_notes (PATTERN (temp),
904 PREV_INSN (insn), temp);
905 emit_insn_after_with_line_notes
906 (replace_rtx (PATTERN (temp3), temp2, new),
907 PREV_INSN (insn), temp3);
908 delete_insn (temp);
909 delete_insn (temp3);
910 }
911 }
912
913 /* Finally, handle the case where two insns are used to
914 compute EXP but a temporary register is used. Here we must
915 ensure that the temporary register is not used anywhere else. */
916
917 if (! reload_completed
918 && after_regscan
919 && this_is_condjump && ! this_is_simplejump
920 && BRANCH_COST >= 4
921 && (temp = next_nonnote_insn (insn)) != 0
922 && REG_NOTES (temp) == 0
923 && (temp3 = next_nonnote_insn (temp)) != 0
924 && REG_NOTES (temp3) == 0
925 && (reallabelprev == temp3
926 || ((temp2 = next_active_insn (temp3)) != 0
927 && simplejump_p (temp2)
928 && JUMP_LABEL (temp2) == JUMP_LABEL (insn)))
929 && (temp1 = single_set (temp)) != 0
930 && (temp5 = SET_DEST (temp1), GET_CODE (temp5) == REG)
931 && REGNO (temp5) >= FIRST_PSEUDO_REGISTER
932 && regno_first_uid[REGNO (temp5)] == INSN_UID (temp)
933 && regno_last_uid[REGNO (temp5)] == INSN_UID (temp3)
934 && ! side_effects_p (SET_SRC (temp1))
935 && ! may_trap_p (SET_SRC (temp1))
936 && rtx_cost (SET_SRC (temp1)) < 10
937 && (temp4 = single_set (temp3)) != 0
938 && (temp2 = SET_DEST (temp4), GET_CODE (temp2) == REG)
939 && GET_MODE_CLASS (GET_MODE (temp2)) == MODE_INT
940 #ifdef SMALL_REGISTER_CLASSES
941 && REGNO (temp2) >= FIRST_PSEUDO_REGISTER
942 #endif
943 && rtx_equal_p (SET_DEST (temp4), temp2)
944 && ! side_effects_p (SET_SRC (temp4))
945 && ! may_trap_p (SET_SRC (temp4))
946 && rtx_cost (SET_SRC (temp4)) < 10)
947 {
948 rtx new = gen_reg_rtx (GET_MODE (temp2));
949
950 if (validate_change (temp3, &SET_DEST (temp4), new, 0))
951 {
952 next = emit_insn_after (gen_move_insn (temp2, new), insn);
953 emit_insn_after_with_line_notes (PATTERN (temp),
954 PREV_INSN (insn), temp);
955 emit_insn_after_with_line_notes (PATTERN (temp3),
956 PREV_INSN (insn), temp3);
957 delete_insn (temp);
958 delete_insn (temp3);
959 }
960 }
961 #endif /* HAVE_cc0 */
962
963 /* We deal with four cases:
964
965 1) x = a; if (...) x = b; and either A or B is zero,
966 2) if (...) x = 0; and jumps are expensive,
967 3) x = a; if (...) x = b; and A and B are constants where all the
968 set bits in A are also set in B and jumps are expensive, and
969 4) x = a; if (...) x = b; and A and B non-zero, and jumps are
970 more expensive.
971 5) if (...) x = b; if jumps are even more expensive.
972
973 In each of these try to use a store-flag insn to avoid the jump.
974 (If the jump would be faster, the machine should not have
975 defined the scc insns!). These cases are often made by the
976 previous optimization.
977
978 INSN here is the jump around the store. We set:
979
980 TEMP to the "x = b;" insn.
981 TEMP1 to X.
982 TEMP2 to B (const0_rtx in the second case).
983 TEMP3 to A (X in the second case).
984 TEMP4 to the condition being tested.
985 TEMP5 to the earliest insn used to find the condition. */
986
987 if (/* We can't do this after reload has completed. */
988 ! reload_completed
989 && this_is_condjump && ! this_is_simplejump
990 /* Set TEMP to the "x = b;" insn. */
991 && (temp = next_nonnote_insn (insn)) != 0
992 && GET_CODE (temp) == INSN
993 && GET_CODE (PATTERN (temp)) == SET
994 && GET_CODE (temp1 = SET_DEST (PATTERN (temp))) == REG
995 #ifdef SMALL_REGISTER_CLASSES
996 && REGNO (temp1) >= FIRST_PSEUDO_REGISTER
997 #endif
998 && GET_MODE_CLASS (GET_MODE (temp1)) == MODE_INT
999 && (GET_CODE (temp2 = SET_SRC (PATTERN (temp))) == REG
1000 || GET_CODE (temp2) == SUBREG
1001 || GET_CODE (temp2) == CONST_INT)
1002 /* Allow either form, but prefer the former if both apply.
1003 There is no point in using the old value of TEMP1 if
1004 it is a register, since cse will alias them. It can
1005 lose if the old value were a hard register since CSE
1006 won't replace hard registers. */
1007 && (((temp3 = reg_set_last (temp1, insn)) != 0
1008 && GET_CODE (temp3) == CONST_INT)
1009 /* Make the latter case look like x = x; if (...) x = 0; */
1010 || (temp3 = temp1,
1011 ((BRANCH_COST >= 2
1012 && temp2 == const0_rtx)
1013 || BRANCH_COST >= 3)))
1014 /* INSN must either branch to the insn after TEMP or the insn
1015 after TEMP must branch to the same place as INSN. */
1016 && (reallabelprev == temp
1017 || ((temp4 = next_active_insn (temp)) != 0
1018 && simplejump_p (temp4)
1019 && JUMP_LABEL (temp4) == JUMP_LABEL (insn)))
1020 && (temp4 = get_condition (insn, &temp5)) != 0
1021
1022 /* If B is zero, OK; if A is zero, can only do (1) if we
1023 can reverse the condition. See if (3) applies possibly
1024 by reversing the condition. Prefer reversing to (4) when
1025 branches are very expensive. */
1026 && ((reversep = 0, temp2 == const0_rtx)
1027 || (temp3 == const0_rtx
1028 && (reversep = can_reverse_comparison_p (temp4, insn)))
1029 || (BRANCH_COST >= 2
1030 && GET_CODE (temp2) == CONST_INT
1031 && GET_CODE (temp3) == CONST_INT
1032 && ((INTVAL (temp2) & INTVAL (temp3)) == INTVAL (temp2)
1033 || ((INTVAL (temp2) & INTVAL (temp3)) == INTVAL (temp3)
1034 && (reversep = can_reverse_comparison_p (temp4,
1035 insn)))))
1036 || BRANCH_COST >= 3)
1037 #ifdef HAVE_cc0
1038 /* If the previous insn sets CC0 and something else, we can't
1039 do this since we are going to delete that insn. */
1040
1041 && ! ((temp6 = prev_nonnote_insn (insn)) != 0
1042 && GET_CODE (temp6) == INSN
1043 && sets_cc0_p (PATTERN (temp6)) == -1)
1044 #endif
1045 )
1046 {
1047 enum rtx_code code = GET_CODE (temp4);
1048 rtx uval, cval, var = temp1;
1049 int normalizep;
1050 rtx target;
1051
1052 /* If necessary, reverse the condition. */
1053 if (reversep)
1054 code = reverse_condition (code), uval = temp2, cval = temp3;
1055 else
1056 uval = temp3, cval = temp2;
1057
1058 /* See if we can do this with a store-flag insn. */
1059 start_sequence ();
1060
1061 /* If CVAL is non-zero, normalize to -1. Otherwise,
1062 if UVAL is the constant 1, it is best to just compute
1063 the result directly. If UVAL is constant and STORE_FLAG_VALUE
1064 includes all of its bits, it is best to compute the flag
1065 value unnormalized and `and' it with UVAL. Otherwise,
1066 normalize to -1 and `and' with UVAL. */
1067 normalizep = (cval != const0_rtx ? -1
1068 : (uval == const1_rtx ? 1
1069 : (GET_CODE (uval) == CONST_INT
1070 && (INTVAL (uval) & ~STORE_FLAG_VALUE) == 0)
1071 ? 0 : -1));
1072
1073 /* We will be putting the store-flag insn immediately in
1074 front of the comparison that was originally being done,
1075 so we know all the variables in TEMP4 will be valid.
1076 However, this might be in front of the assignment of
1077 A to VAR. If it is, it would clobber the store-flag
1078 we will be emitting.
1079
1080 Therefore, emit into a temporary which will be copied to
1081 VAR immediately after TEMP. */
1082
1083 target = emit_store_flag (gen_reg_rtx (GET_MODE (var)), code,
1084 XEXP (temp4, 0), XEXP (temp4, 1),
1085 VOIDmode,
1086 (code == LTU || code == LEU
1087 || code == GEU || code == GTU),
1088 normalizep);
1089 if (target)
1090 {
1091 rtx seq;
1092
1093 /* Put the store-flag insns in front of the first insn
1094 used to compute the condition to ensure that we
1095 use the same values of them as the current
1096 comparison. However, the remainder of the insns we
1097 generate will be placed directly in front of the
1098 jump insn, in case any of the pseudos we use
1099 are modified earlier. */
1100
1101 seq = get_insns ();
1102 end_sequence ();
1103
1104 emit_insns_before (seq, temp5);
1105
1106 start_sequence ();
1107
1108 /* Both CVAL and UVAL are non-zero. */
1109 if (cval != const0_rtx && uval != const0_rtx)
1110 {
1111 rtx tem1, tem2;
1112
1113 tem1 = expand_and (uval, target, NULL_RTX);
1114 if (GET_CODE (cval) == CONST_INT
1115 && GET_CODE (uval) == CONST_INT
1116 && (INTVAL (cval) & INTVAL (uval)) == INTVAL (cval))
1117 tem2 = cval;
1118 else
1119 {
1120 tem2 = expand_unop (GET_MODE (var), one_cmpl_optab,
1121 target, NULL_RTX, 0);
1122 tem2 = expand_and (cval, tem2, tem2);
1123 }
1124
1125 /* If we usually make new pseudos, do so here. This
1126 turns out to help machines that have conditional
1127 move insns. */
1128
1129 if (flag_expensive_optimizations)
1130 target = 0;
1131
1132 target = expand_binop (GET_MODE (var), ior_optab,
1133 tem1, tem2, target,
1134 1, OPTAB_WIDEN);
1135 }
1136 else if (normalizep != 1)
1137 target = expand_and (uval, target,
1138 (GET_CODE (target) == REG
1139 && ! preserve_subexpressions_p ()
1140 ? target : NULL_RTX));
1141
1142 emit_move_insn (var, target);
1143 seq = get_insns ();
1144 end_sequence ();
1145
1146 emit_insns_before (seq, insn);
1147
1148 delete_insn (temp);
1149 next = NEXT_INSN (insn);
1150
1151 delete_jump (insn);
1152 changed = 1;
1153 continue;
1154 }
1155 else
1156 end_sequence ();
1157 }
1158
1159 /* If branches are expensive, convert
1160 if (foo) bar++; to bar += (foo != 0);
1161 and similarly for "bar--;"
1162
1163 INSN is the conditional branch around the arithmetic. We set:
1164
1165 TEMP is the arithmetic insn.
1166 TEMP1 is the SET doing the arithmetic.
1167 TEMP2 is the operand being incremented or decremented.
1168 TEMP3 to the condition being tested.
1169 TEMP4 to the earliest insn used to find the condition. */
1170
1171 if (BRANCH_COST >= 2
1172 && ! reload_completed
1173 && this_is_condjump && ! this_is_simplejump
1174 && (temp = next_nonnote_insn (insn)) != 0
1175 && (temp1 = single_set (temp)) != 0
1176 && (temp2 = SET_DEST (temp1),
1177 GET_MODE_CLASS (GET_MODE (temp2)) == MODE_INT)
1178 && GET_CODE (SET_SRC (temp1)) == PLUS
1179 && (XEXP (SET_SRC (temp1), 1) == const1_rtx
1180 || XEXP (SET_SRC (temp1), 1) == constm1_rtx)
1181 && rtx_equal_p (temp2, XEXP (SET_SRC (temp1), 0))
1182 /* INSN must either branch to the insn after TEMP or the insn
1183 after TEMP must branch to the same place as INSN. */
1184 && (reallabelprev == temp
1185 || ((temp3 = next_active_insn (temp)) != 0
1186 && simplejump_p (temp3)
1187 && JUMP_LABEL (temp3) == JUMP_LABEL (insn)))
1188 && (temp3 = get_condition (insn, &temp4)) != 0
1189 && can_reverse_comparison_p (temp3, insn))
1190 {
1191 rtx temp6, target = 0, seq, init_insn = 0, init = temp2;
1192 enum rtx_code code = reverse_condition (GET_CODE (temp3));
1193
1194 start_sequence ();
1195
1196 /* It must be the case that TEMP2 is not modified in the range
1197 [TEMP4, INSN). The one exception we make is if the insn
1198 before INSN sets TEMP2 to something which is also unchanged
1199 in that range. In that case, we can move the initialization
1200 into our sequence. */
1201
1202 if ((temp5 = prev_active_insn (insn)) != 0
1203 && GET_CODE (temp5) == INSN
1204 && (temp6 = single_set (temp5)) != 0
1205 && rtx_equal_p (temp2, SET_DEST (temp6))
1206 && (CONSTANT_P (SET_SRC (temp6))
1207 || GET_CODE (SET_SRC (temp6)) == REG
1208 || GET_CODE (SET_SRC (temp6)) == SUBREG))
1209 {
1210 emit_insn (PATTERN (temp5));
1211 init_insn = temp5;
1212 init = SET_SRC (temp6);
1213 }
1214
1215 if (CONSTANT_P (init)
1216 || ! reg_set_between_p (init, PREV_INSN (temp4), insn))
1217 target = emit_store_flag (gen_reg_rtx (GET_MODE (temp2)), code,
1218 XEXP (temp3, 0), XEXP (temp3, 1),
1219 VOIDmode,
1220 (code == LTU || code == LEU
1221 || code == GTU || code == GEU), 1);
1222
1223 /* If we can do the store-flag, do the addition or
1224 subtraction. */
1225
1226 if (target)
1227 target = expand_binop (GET_MODE (temp2),
1228 (XEXP (SET_SRC (temp1), 1) == const1_rtx
1229 ? add_optab : sub_optab),
1230 temp2, target, temp2, OPTAB_WIDEN);
1231
1232 if (target != 0)
1233 {
1234 /* Put the result back in temp2 in case it isn't already.
1235 Then replace the jump, possible a CC0-setting insn in
1236 front of the jump, and TEMP, with the sequence we have
1237 made. */
1238
1239 if (target != temp2)
1240 emit_move_insn (temp2, target);
1241
1242 seq = get_insns ();
1243 end_sequence ();
1244
1245 emit_insns_before (seq, temp4);
1246 delete_insn (temp);
1247
1248 if (init_insn)
1249 delete_insn (init_insn);
1250
1251 next = NEXT_INSN (insn);
1252 #ifdef HAVE_cc0
1253 delete_insn (prev_nonnote_insn (insn));
1254 #endif
1255 delete_insn (insn);
1256 changed = 1;
1257 continue;
1258 }
1259 else
1260 end_sequence ();
1261 }
1262
1263 /* Simplify if (...) x = 1; else {...} if (x) ...
1264 We recognize this case scanning backwards as well.
1265
1266 TEMP is the assignment to x;
1267 TEMP1 is the label at the head of the second if. */
1268 /* ?? This should call get_condition to find the values being
1269 compared, instead of looking for a COMPARE insn when HAVE_cc0
1270 is not defined. This would allow it to work on the m88k. */
1271 /* ?? This optimization is only safe before cse is run if HAVE_cc0
1272 is not defined and the condition is tested by a separate compare
1273 insn. This is because the code below assumes that the result
1274 of the compare dies in the following branch.
1275
1276 Not only that, but there might be other insns between the
1277 compare and branch whose results are live. Those insns need
1278 to be executed.
1279
1280 A way to fix this is to move the insns at JUMP_LABEL (insn)
1281 to before INSN. If we are running before flow, they will
1282 be deleted if they aren't needed. But this doesn't work
1283 well after flow.
1284
1285 This is really a special-case of jump threading, anyway. The
1286 right thing to do is to replace this and jump threading with
1287 much simpler code in cse.
1288
1289 This code has been turned off in the non-cc0 case in the
1290 meantime. */
1291
1292 #ifdef HAVE_cc0
1293 else if (this_is_simplejump
1294 /* Safe to skip USE and CLOBBER insns here
1295 since they will not be deleted. */
1296 && (temp = prev_active_insn (insn))
1297 && no_labels_between_p (temp, insn)
1298 && GET_CODE (temp) == INSN
1299 && GET_CODE (PATTERN (temp)) == SET
1300 && GET_CODE (SET_DEST (PATTERN (temp))) == REG
1301 && CONSTANT_P (SET_SRC (PATTERN (temp)))
1302 && (temp1 = next_active_insn (JUMP_LABEL (insn)))
1303 /* If we find that the next value tested is `x'
1304 (TEMP1 is the insn where this happens), win. */
1305 && GET_CODE (temp1) == INSN
1306 && GET_CODE (PATTERN (temp1)) == SET
1307 #ifdef HAVE_cc0
1308 /* Does temp1 `tst' the value of x? */
1309 && SET_SRC (PATTERN (temp1)) == SET_DEST (PATTERN (temp))
1310 && SET_DEST (PATTERN (temp1)) == cc0_rtx
1311 && (temp1 = next_nonnote_insn (temp1))
1312 #else
1313 /* Does temp1 compare the value of x against zero? */
1314 && GET_CODE (SET_SRC (PATTERN (temp1))) == COMPARE
1315 && XEXP (SET_SRC (PATTERN (temp1)), 1) == const0_rtx
1316 && (XEXP (SET_SRC (PATTERN (temp1)), 0)
1317 == SET_DEST (PATTERN (temp)))
1318 && GET_CODE (SET_DEST (PATTERN (temp1))) == REG
1319 && (temp1 = find_next_ref (SET_DEST (PATTERN (temp1)), temp1))
1320 #endif
1321 && condjump_p (temp1))
1322 {
1323 /* Get the if_then_else from the condjump. */
1324 rtx choice = SET_SRC (PATTERN (temp1));
1325 if (GET_CODE (choice) == IF_THEN_ELSE)
1326 {
1327 enum rtx_code code = GET_CODE (XEXP (choice, 0));
1328 rtx val = SET_SRC (PATTERN (temp));
1329 rtx cond
1330 = simplify_relational_operation (code, GET_MODE (SET_DEST (PATTERN (temp))),
1331 val, const0_rtx);
1332 rtx ultimate;
1333
1334 if (cond == const_true_rtx)
1335 ultimate = XEXP (choice, 1);
1336 else if (cond == const0_rtx)
1337 ultimate = XEXP (choice, 2);
1338 else
1339 ultimate = 0;
1340
1341 if (ultimate == pc_rtx)
1342 ultimate = get_label_after (temp1);
1343 else if (ultimate && GET_CODE (ultimate) != RETURN)
1344 ultimate = XEXP (ultimate, 0);
1345
1346 if (ultimate)
1347 changed |= redirect_jump (insn, ultimate);
1348 }
1349 }
1350 #endif
1351
1352 #if 0
1353 /* @@ This needs a bit of work before it will be right.
1354
1355 Any type of comparison can be accepted for the first and
1356 second compare. When rewriting the first jump, we must
1357 compute the what conditions can reach label3, and use the
1358 appropriate code. We can not simply reverse/swap the code
1359 of the first jump. In some cases, the second jump must be
1360 rewritten also.
1361
1362 For example,
1363 < == converts to > ==
1364 < != converts to == >
1365 etc.
1366
1367 If the code is written to only accept an '==' test for the second
1368 compare, then all that needs to be done is to swap the condition
1369 of the first branch.
1370
1371 It is questionable whether we want this optimization anyways,
1372 since if the user wrote code like this because he/she knew that
1373 the jump to label1 is taken most of the time, then rewriting
1374 this gives slower code. */
1375 /* @@ This should call get_condition to find the values being
1376 compared, instead of looking for a COMPARE insn when HAVE_cc0
1377 is not defined. This would allow it to work on the m88k. */
1378 /* @@ This optimization is only safe before cse is run if HAVE_cc0
1379 is not defined and the condition is tested by a separate compare
1380 insn. This is because the code below assumes that the result
1381 of the compare dies in the following branch. */
1382
1383 /* Simplify test a ~= b
1384 condjump label1;
1385 test a == b
1386 condjump label2;
1387 jump label3;
1388 label1:
1389
1390 rewriting as
1391 test a ~~= b
1392 condjump label3
1393 test a == b
1394 condjump label2
1395 label1:
1396
1397 where ~= is an inequality, e.g. >, and ~~= is the swapped
1398 inequality, e.g. <.
1399
1400 We recognize this case scanning backwards.
1401
1402 TEMP is the conditional jump to `label2';
1403 TEMP1 is the test for `a == b';
1404 TEMP2 is the conditional jump to `label1';
1405 TEMP3 is the test for `a ~= b'. */
1406 else if (this_is_simplejump
1407 && (temp = prev_active_insn (insn))
1408 && no_labels_between_p (temp, insn)
1409 && condjump_p (temp)
1410 && (temp1 = prev_active_insn (temp))
1411 && no_labels_between_p (temp1, temp)
1412 && GET_CODE (temp1) == INSN
1413 && GET_CODE (PATTERN (temp1)) == SET
1414 #ifdef HAVE_cc0
1415 && sets_cc0_p (PATTERN (temp1)) == 1
1416 #else
1417 && GET_CODE (SET_SRC (PATTERN (temp1))) == COMPARE
1418 && GET_CODE (SET_DEST (PATTERN (temp1))) == REG
1419 && (temp == find_next_ref (SET_DEST (PATTERN (temp1)), temp1))
1420 #endif
1421 && (temp2 = prev_active_insn (temp1))
1422 && no_labels_between_p (temp2, temp1)
1423 && condjump_p (temp2)
1424 && JUMP_LABEL (temp2) == next_nonnote_insn (NEXT_INSN (insn))
1425 && (temp3 = prev_active_insn (temp2))
1426 && no_labels_between_p (temp3, temp2)
1427 && GET_CODE (PATTERN (temp3)) == SET
1428 && rtx_equal_p (SET_DEST (PATTERN (temp3)),
1429 SET_DEST (PATTERN (temp1)))
1430 && rtx_equal_p (SET_SRC (PATTERN (temp1)),
1431 SET_SRC (PATTERN (temp3)))
1432 && ! inequality_comparisons_p (PATTERN (temp))
1433 && inequality_comparisons_p (PATTERN (temp2)))
1434 {
1435 rtx fallthrough_label = JUMP_LABEL (temp2);
1436
1437 ++LABEL_NUSES (fallthrough_label);
1438 if (swap_jump (temp2, JUMP_LABEL (insn)))
1439 {
1440 delete_insn (insn);
1441 changed = 1;
1442 }
1443
1444 if (--LABEL_NUSES (fallthrough_label) == 0)
1445 delete_insn (fallthrough_label);
1446 }
1447 #endif
1448 /* Simplify if (...) {... x = 1;} if (x) ...
1449
1450 We recognize this case backwards.
1451
1452 TEMP is the test of `x';
1453 TEMP1 is the assignment to `x' at the end of the
1454 previous statement. */
1455 /* @@ This should call get_condition to find the values being
1456 compared, instead of looking for a COMPARE insn when HAVE_cc0
1457 is not defined. This would allow it to work on the m88k. */
1458 /* @@ This optimization is only safe before cse is run if HAVE_cc0
1459 is not defined and the condition is tested by a separate compare
1460 insn. This is because the code below assumes that the result
1461 of the compare dies in the following branch. */
1462
1463 /* ??? This has to be turned off. The problem is that the
1464 unconditional jump might indirectly end up branching to the
1465 label between TEMP1 and TEMP. We can't detect this, in general,
1466 since it may become a jump to there after further optimizations.
1467 If that jump is done, it will be deleted, so we will retry
1468 this optimization in the next pass, thus an infinite loop.
1469
1470 The present code prevents this by putting the jump after the
1471 label, but this is not logically correct. */
1472 #if 0
1473 else if (this_is_condjump
1474 /* Safe to skip USE and CLOBBER insns here
1475 since they will not be deleted. */
1476 && (temp = prev_active_insn (insn))
1477 && no_labels_between_p (temp, insn)
1478 && GET_CODE (temp) == INSN
1479 && GET_CODE (PATTERN (temp)) == SET
1480 #ifdef HAVE_cc0
1481 && sets_cc0_p (PATTERN (temp)) == 1
1482 && GET_CODE (SET_SRC (PATTERN (temp))) == REG
1483 #else
1484 /* Temp must be a compare insn, we can not accept a register
1485 to register move here, since it may not be simply a
1486 tst insn. */
1487 && GET_CODE (SET_SRC (PATTERN (temp))) == COMPARE
1488 && XEXP (SET_SRC (PATTERN (temp)), 1) == const0_rtx
1489 && GET_CODE (XEXP (SET_SRC (PATTERN (temp)), 0)) == REG
1490 && GET_CODE (SET_DEST (PATTERN (temp))) == REG
1491 && insn == find_next_ref (SET_DEST (PATTERN (temp)), temp)
1492 #endif
1493 /* May skip USE or CLOBBER insns here
1494 for checking for opportunity, since we
1495 take care of them later. */
1496 && (temp1 = prev_active_insn (temp))
1497 && GET_CODE (temp1) == INSN
1498 && GET_CODE (PATTERN (temp1)) == SET
1499 #ifdef HAVE_cc0
1500 && SET_SRC (PATTERN (temp)) == SET_DEST (PATTERN (temp1))
1501 #else
1502 && (XEXP (SET_SRC (PATTERN (temp)), 0)
1503 == SET_DEST (PATTERN (temp1)))
1504 #endif
1505 && CONSTANT_P (SET_SRC (PATTERN (temp1)))
1506 /* If this isn't true, cse will do the job. */
1507 && ! no_labels_between_p (temp1, temp))
1508 {
1509 /* Get the if_then_else from the condjump. */
1510 rtx choice = SET_SRC (PATTERN (insn));
1511 if (GET_CODE (choice) == IF_THEN_ELSE
1512 && (GET_CODE (XEXP (choice, 0)) == EQ
1513 || GET_CODE (XEXP (choice, 0)) == NE))
1514 {
1515 int want_nonzero = (GET_CODE (XEXP (choice, 0)) == NE);
1516 rtx last_insn;
1517 rtx ultimate;
1518 rtx p;
1519
1520 /* Get the place that condjump will jump to
1521 if it is reached from here. */
1522 if ((SET_SRC (PATTERN (temp1)) != const0_rtx)
1523 == want_nonzero)
1524 ultimate = XEXP (choice, 1);
1525 else
1526 ultimate = XEXP (choice, 2);
1527 /* Get it as a CODE_LABEL. */
1528 if (ultimate == pc_rtx)
1529 ultimate = get_label_after (insn);
1530 else
1531 /* Get the label out of the LABEL_REF. */
1532 ultimate = XEXP (ultimate, 0);
1533
1534 /* Insert the jump immediately before TEMP, specifically
1535 after the label that is between TEMP1 and TEMP. */
1536 last_insn = PREV_INSN (temp);
1537
1538 /* If we would be branching to the next insn, the jump
1539 would immediately be deleted and the re-inserted in
1540 a subsequent pass over the code. So don't do anything
1541 in that case. */
1542 if (next_active_insn (last_insn)
1543 != next_active_insn (ultimate))
1544 {
1545 emit_barrier_after (last_insn);
1546 p = emit_jump_insn_after (gen_jump (ultimate),
1547 last_insn);
1548 JUMP_LABEL (p) = ultimate;
1549 ++LABEL_NUSES (ultimate);
1550 if (INSN_UID (ultimate) < max_jump_chain
1551 && INSN_CODE (p) < max_jump_chain)
1552 {
1553 jump_chain[INSN_UID (p)]
1554 = jump_chain[INSN_UID (ultimate)];
1555 jump_chain[INSN_UID (ultimate)] = p;
1556 }
1557 changed = 1;
1558 continue;
1559 }
1560 }
1561 }
1562 #endif
1563 /* Detect a conditional jump going to the same place
1564 as an immediately following unconditional jump. */
1565 else if (this_is_condjump
1566 && (temp = next_active_insn (insn)) != 0
1567 && simplejump_p (temp)
1568 && (next_active_insn (JUMP_LABEL (insn))
1569 == next_active_insn (JUMP_LABEL (temp))))
1570 {
1571 delete_jump (insn);
1572 changed = 1;
1573 continue;
1574 }
1575 /* Detect a conditional jump jumping over an unconditional jump. */
1576
1577 else if (this_is_condjump && ! this_is_simplejump
1578 && reallabelprev != 0
1579 && GET_CODE (reallabelprev) == JUMP_INSN
1580 && prev_active_insn (reallabelprev) == insn
1581 && no_labels_between_p (insn, reallabelprev)
1582 && simplejump_p (reallabelprev))
1583 {
1584 /* When we invert the unconditional jump, we will be
1585 decrementing the usage count of its old label.
1586 Make sure that we don't delete it now because that
1587 might cause the following code to be deleted. */
1588 rtx prev_uses = prev_nonnote_insn (reallabelprev);
1589 rtx prev_label = JUMP_LABEL (insn);
1590
1591 ++LABEL_NUSES (prev_label);
1592
1593 if (invert_jump (insn, JUMP_LABEL (reallabelprev)))
1594 {
1595 /* It is very likely that if there are USE insns before
1596 this jump, they hold REG_DEAD notes. These REG_DEAD
1597 notes are no longer valid due to this optimization,
1598 and will cause the life-analysis that following passes
1599 (notably delayed-branch scheduling) to think that
1600 these registers are dead when they are not.
1601
1602 To prevent this trouble, we just remove the USE insns
1603 from the insn chain. */
1604
1605 while (prev_uses && GET_CODE (prev_uses) == INSN
1606 && GET_CODE (PATTERN (prev_uses)) == USE)
1607 {
1608 rtx useless = prev_uses;
1609 prev_uses = prev_nonnote_insn (prev_uses);
1610 delete_insn (useless);
1611 }
1612
1613 delete_insn (reallabelprev);
1614 next = insn;
1615 changed = 1;
1616 }
1617
1618 /* We can now safely delete the label if it is unreferenced
1619 since the delete_insn above has deleted the BARRIER. */
1620 if (--LABEL_NUSES (prev_label) == 0)
1621 delete_insn (prev_label);
1622 continue;
1623 }
1624 else
1625 {
1626 /* Detect a jump to a jump. */
1627
1628 nlabel = follow_jumps (JUMP_LABEL (insn));
1629 if (nlabel != JUMP_LABEL (insn)
1630 && redirect_jump (insn, nlabel))
1631 {
1632 changed = 1;
1633 next = insn;
1634 }
1635
1636 /* Look for if (foo) bar; else break; */
1637 /* The insns look like this:
1638 insn = condjump label1;
1639 ...range1 (some insns)...
1640 jump label2;
1641 label1:
1642 ...range2 (some insns)...
1643 jump somewhere unconditionally
1644 label2: */
1645 {
1646 rtx label1 = next_label (insn);
1647 rtx range1end = label1 ? prev_active_insn (label1) : 0;
1648 /* Don't do this optimization on the first round, so that
1649 jump-around-a-jump gets simplified before we ask here
1650 whether a jump is unconditional.
1651
1652 Also don't do it when we are called after reload since
1653 it will confuse reorg. */
1654 if (! first
1655 && (reload_completed ? ! flag_delayed_branch : 1)
1656 /* Make sure INSN is something we can invert. */
1657 && condjump_p (insn)
1658 && label1 != 0
1659 && JUMP_LABEL (insn) == label1
1660 && LABEL_NUSES (label1) == 1
1661 && GET_CODE (range1end) == JUMP_INSN
1662 && simplejump_p (range1end))
1663 {
1664 rtx label2 = next_label (label1);
1665 rtx range2end = label2 ? prev_active_insn (label2) : 0;
1666 if (range1end != range2end
1667 && JUMP_LABEL (range1end) == label2
1668 && GET_CODE (range2end) == JUMP_INSN
1669 && GET_CODE (NEXT_INSN (range2end)) == BARRIER
1670 /* Invert the jump condition, so we
1671 still execute the same insns in each case. */
1672 && invert_jump (insn, label1))
1673 {
1674 rtx range1beg = next_active_insn (insn);
1675 rtx range2beg = next_active_insn (label1);
1676 rtx range1after, range2after;
1677 rtx range1before, range2before;
1678
1679 /* Include in each range any line number before it. */
1680 while (PREV_INSN (range1beg)
1681 && GET_CODE (PREV_INSN (range1beg)) == NOTE
1682 && NOTE_LINE_NUMBER (PREV_INSN (range1beg)) > 0)
1683 range1beg = PREV_INSN (range1beg);
1684
1685 while (PREV_INSN (range2beg)
1686 && GET_CODE (PREV_INSN (range2beg)) == NOTE
1687 && NOTE_LINE_NUMBER (PREV_INSN (range2beg)) > 0)
1688 range2beg = PREV_INSN (range2beg);
1689
1690 /* Don't move NOTEs for blocks or loops; shift them
1691 outside the ranges, where they'll stay put. */
1692 range1beg = squeeze_notes (range1beg, range1end);
1693 range2beg = squeeze_notes (range2beg, range2end);
1694
1695 /* Get current surrounds of the 2 ranges. */
1696 range1before = PREV_INSN (range1beg);
1697 range2before = PREV_INSN (range2beg);
1698 range1after = NEXT_INSN (range1end);
1699 range2after = NEXT_INSN (range2end);
1700
1701 /* Splice range2 where range1 was. */
1702 NEXT_INSN (range1before) = range2beg;
1703 PREV_INSN (range2beg) = range1before;
1704 NEXT_INSN (range2end) = range1after;
1705 PREV_INSN (range1after) = range2end;
1706 /* Splice range1 where range2 was. */
1707 NEXT_INSN (range2before) = range1beg;
1708 PREV_INSN (range1beg) = range2before;
1709 NEXT_INSN (range1end) = range2after;
1710 PREV_INSN (range2after) = range1end;
1711 changed = 1;
1712 continue;
1713 }
1714 }
1715 }
1716
1717 /* Now that the jump has been tensioned,
1718 try cross jumping: check for identical code
1719 before the jump and before its target label. */
1720
1721 /* First, cross jumping of conditional jumps: */
1722
1723 if (cross_jump && condjump_p (insn))
1724 {
1725 rtx newjpos, newlpos;
1726 rtx x = prev_real_insn (JUMP_LABEL (insn));
1727
1728 /* A conditional jump may be crossjumped
1729 only if the place it jumps to follows
1730 an opposing jump that comes back here. */
1731
1732 if (x != 0 && ! jump_back_p (x, insn))
1733 /* We have no opposing jump;
1734 cannot cross jump this insn. */
1735 x = 0;
1736
1737 newjpos = 0;
1738 /* TARGET is nonzero if it is ok to cross jump
1739 to code before TARGET. If so, see if matches. */
1740 if (x != 0)
1741 find_cross_jump (insn, x, 2,
1742 &newjpos, &newlpos);
1743
1744 if (newjpos != 0)
1745 {
1746 do_cross_jump (insn, newjpos, newlpos);
1747 /* Make the old conditional jump
1748 into an unconditional one. */
1749 SET_SRC (PATTERN (insn))
1750 = gen_rtx (LABEL_REF, VOIDmode, JUMP_LABEL (insn));
1751 INSN_CODE (insn) = -1;
1752 emit_barrier_after (insn);
1753 /* Add to jump_chain unless this is a new label
1754 whose UID is too large. */
1755 if (INSN_UID (JUMP_LABEL (insn)) < max_jump_chain)
1756 {
1757 jump_chain[INSN_UID (insn)]
1758 = jump_chain[INSN_UID (JUMP_LABEL (insn))];
1759 jump_chain[INSN_UID (JUMP_LABEL (insn))] = insn;
1760 }
1761 changed = 1;
1762 next = insn;
1763 }
1764 }
1765
1766 /* Cross jumping of unconditional jumps:
1767 a few differences. */
1768
1769 if (cross_jump && simplejump_p (insn))
1770 {
1771 rtx newjpos, newlpos;
1772 rtx target;
1773
1774 newjpos = 0;
1775
1776 /* TARGET is nonzero if it is ok to cross jump
1777 to code before TARGET. If so, see if matches. */
1778 find_cross_jump (insn, JUMP_LABEL (insn), 1,
1779 &newjpos, &newlpos);
1780
1781 /* If cannot cross jump to code before the label,
1782 see if we can cross jump to another jump to
1783 the same label. */
1784 /* Try each other jump to this label. */
1785 if (INSN_UID (JUMP_LABEL (insn)) < max_uid)
1786 for (target = jump_chain[INSN_UID (JUMP_LABEL (insn))];
1787 target != 0 && newjpos == 0;
1788 target = jump_chain[INSN_UID (target)])
1789 if (target != insn
1790 && JUMP_LABEL (target) == JUMP_LABEL (insn)
1791 /* Ignore TARGET if it's deleted. */
1792 && ! INSN_DELETED_P (target))
1793 find_cross_jump (insn, target, 2,
1794 &newjpos, &newlpos);
1795
1796 if (newjpos != 0)
1797 {
1798 do_cross_jump (insn, newjpos, newlpos);
1799 changed = 1;
1800 next = insn;
1801 }
1802 }
1803
1804 /* This code was dead in the previous jump.c! */
1805 if (cross_jump && GET_CODE (PATTERN (insn)) == RETURN)
1806 {
1807 /* Return insns all "jump to the same place"
1808 so we can cross-jump between any two of them. */
1809
1810 rtx newjpos, newlpos, target;
1811
1812 newjpos = 0;
1813
1814 /* If cannot cross jump to code before the label,
1815 see if we can cross jump to another jump to
1816 the same label. */
1817 /* Try each other jump to this label. */
1818 for (target = jump_chain[0];
1819 target != 0 && newjpos == 0;
1820 target = jump_chain[INSN_UID (target)])
1821 if (target != insn
1822 && ! INSN_DELETED_P (target)
1823 && GET_CODE (PATTERN (target)) == RETURN)
1824 find_cross_jump (insn, target, 2,
1825 &newjpos, &newlpos);
1826
1827 if (newjpos != 0)
1828 {
1829 do_cross_jump (insn, newjpos, newlpos);
1830 changed = 1;
1831 next = insn;
1832 }
1833 }
1834 }
1835 }
1836
1837 first = 0;
1838 }
1839
1840 /* Delete extraneous line number notes.
1841 Note that two consecutive notes for different lines are not really
1842 extraneous. There should be some indication where that line belonged,
1843 even if it became empty. */
1844
1845 {
1846 rtx last_note = 0;
1847
1848 for (insn = f; insn; insn = NEXT_INSN (insn))
1849 if (GET_CODE (insn) == NOTE && NOTE_LINE_NUMBER (insn) >= 0)
1850 {
1851 /* Delete this note if it is identical to previous note. */
1852 if (last_note
1853 && NOTE_SOURCE_FILE (insn) == NOTE_SOURCE_FILE (last_note)
1854 && NOTE_LINE_NUMBER (insn) == NOTE_LINE_NUMBER (last_note))
1855 {
1856 delete_insn (insn);
1857 continue;
1858 }
1859
1860 last_note = insn;
1861 }
1862 }
1863
1864 /* See if there is still a NOTE_INSN_FUNCTION_END in this function.
1865 If so, delete it, and record that this function can drop off the end. */
1866
1867 insn = last_insn;
1868 {
1869 int n_labels = 1;
1870 while (insn
1871 /* One label can follow the end-note: the return label. */
1872 && ((GET_CODE (insn) == CODE_LABEL && n_labels-- > 0)
1873 /* Ordinary insns can follow it if returning a structure. */
1874 || GET_CODE (insn) == INSN
1875 /* If machine uses explicit RETURN insns, no epilogue,
1876 then one of them follows the note. */
1877 || (GET_CODE (insn) == JUMP_INSN
1878 && GET_CODE (PATTERN (insn)) == RETURN)
1879 /* Other kinds of notes can follow also. */
1880 || (GET_CODE (insn) == NOTE
1881 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_FUNCTION_END)))
1882 insn = PREV_INSN (insn);
1883 }
1884
1885 /* Report if control can fall through at the end of the function. */
1886 if (insn && GET_CODE (insn) == NOTE
1887 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_FUNCTION_END)
1888 {
1889 can_reach_end = 1;
1890 delete_insn (insn);
1891 }
1892
1893 /* Show JUMP_CHAIN no longer valid. */
1894 jump_chain = 0;
1895 }
1896 \f
1897 /* LOOP_START is a NOTE_INSN_LOOP_BEG note that is followed by an unconditional
1898 jump. Assume that this unconditional jump is to the exit test code. If
1899 the code is sufficiently simple, make a copy of it before INSN,
1900 followed by a jump to the exit of the loop. Then delete the unconditional
1901 jump after INSN.
1902
1903 Note that it is possible we can get confused here if the jump immediately
1904 after the loop start branches outside the loop but within an outer loop.
1905 If we are near the exit of that loop, we will copy its exit test. This
1906 will not generate incorrect code, but could suppress some optimizations.
1907 However, such cases are degenerate loops anyway.
1908
1909 Return 1 if we made the change, else 0.
1910
1911 This is only safe immediately after a regscan pass because it uses the
1912 values of regno_first_uid and regno_last_uid. */
1913
1914 static int
1915 duplicate_loop_exit_test (loop_start)
1916 rtx loop_start;
1917 {
1918 rtx insn, set, p;
1919 rtx copy, link;
1920 int num_insns = 0;
1921 rtx exitcode = NEXT_INSN (JUMP_LABEL (next_nonnote_insn (loop_start)));
1922 rtx lastexit;
1923 int max_reg = max_reg_num ();
1924 rtx *reg_map = 0;
1925
1926 /* Scan the exit code. We do not perform this optimization if any insn:
1927
1928 is a CALL_INSN
1929 is a CODE_LABEL
1930 has a REG_RETVAL or REG_LIBCALL note (hard to adjust)
1931 is a NOTE_INSN_LOOP_BEG because this means we have a nested loop
1932 is a NOTE_INSN_BLOCK_{BEG,END} because duplicating these notes
1933 are not valid
1934
1935 Also, don't do this if the exit code is more than 20 insns. */
1936
1937 for (insn = exitcode;
1938 insn
1939 && ! (GET_CODE (insn) == NOTE
1940 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END);
1941 insn = NEXT_INSN (insn))
1942 {
1943 switch (GET_CODE (insn))
1944 {
1945 case CODE_LABEL:
1946 case CALL_INSN:
1947 return 0;
1948 case NOTE:
1949 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG
1950 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
1951 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END)
1952 return 0;
1953 break;
1954 case JUMP_INSN:
1955 case INSN:
1956 if (++num_insns > 20
1957 || find_reg_note (insn, REG_RETVAL, NULL_RTX)
1958 || find_reg_note (insn, REG_LIBCALL, NULL_RTX))
1959 return 0;
1960 break;
1961 }
1962 }
1963
1964 /* Unless INSN is zero, we can do the optimization. */
1965 if (insn == 0)
1966 return 0;
1967
1968 lastexit = insn;
1969
1970 /* See if any insn sets a register only used in the loop exit code and
1971 not a user variable. If so, replace it with a new register. */
1972 for (insn = exitcode; insn != lastexit; insn = NEXT_INSN (insn))
1973 if (GET_CODE (insn) == INSN
1974 && (set = single_set (insn)) != 0
1975 && GET_CODE (SET_DEST (set)) == REG
1976 && REGNO (SET_DEST (set)) >= FIRST_PSEUDO_REGISTER
1977 && regno_first_uid[REGNO (SET_DEST (set))] == INSN_UID (insn))
1978 {
1979 for (p = NEXT_INSN (insn); p != lastexit; p = NEXT_INSN (p))
1980 if (regno_last_uid[REGNO (SET_DEST (set))] == INSN_UID (p))
1981 break;
1982
1983 if (p != lastexit)
1984 {
1985 /* We can do the replacement. Allocate reg_map if this is the
1986 first replacement we found. */
1987 if (reg_map == 0)
1988 {
1989 reg_map = (rtx *) alloca (max_reg * sizeof (rtx));
1990 bzero (reg_map, max_reg * sizeof (rtx));
1991 }
1992
1993 REG_LOOP_TEST_P (SET_DEST (set)) = 1;
1994
1995 reg_map[REGNO (SET_DEST (set))]
1996 = gen_reg_rtx (GET_MODE (SET_DEST (set)));
1997 }
1998 }
1999
2000 /* Now copy each insn. */
2001 for (insn = exitcode; insn != lastexit; insn = NEXT_INSN (insn))
2002 switch (GET_CODE (insn))
2003 {
2004 case BARRIER:
2005 copy = emit_barrier_before (loop_start);
2006 break;
2007 case NOTE:
2008 /* Only copy line-number notes. */
2009 if (NOTE_LINE_NUMBER (insn) >= 0)
2010 {
2011 copy = emit_note_before (NOTE_LINE_NUMBER (insn), loop_start);
2012 NOTE_SOURCE_FILE (copy) = NOTE_SOURCE_FILE (insn);
2013 }
2014 break;
2015
2016 case INSN:
2017 copy = emit_insn_before (copy_rtx (PATTERN (insn)), loop_start);
2018 if (reg_map)
2019 replace_regs (PATTERN (copy), reg_map, max_reg, 1);
2020
2021 mark_jump_label (PATTERN (copy), copy, 0);
2022
2023 /* Copy all REG_NOTES except REG_LABEL since mark_jump_label will
2024 make them. */
2025 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
2026 if (REG_NOTE_KIND (link) != REG_LABEL)
2027 REG_NOTES (copy)
2028 = copy_rtx (gen_rtx (EXPR_LIST, REG_NOTE_KIND (link),
2029 XEXP (link, 0), REG_NOTES (copy)));
2030 if (reg_map && REG_NOTES (copy))
2031 replace_regs (REG_NOTES (copy), reg_map, max_reg, 1);
2032 break;
2033
2034 case JUMP_INSN:
2035 copy = emit_jump_insn_before (copy_rtx (PATTERN (insn)), loop_start);
2036 if (reg_map)
2037 replace_regs (PATTERN (copy), reg_map, max_reg, 1);
2038 mark_jump_label (PATTERN (copy), copy, 0);
2039 if (REG_NOTES (insn))
2040 {
2041 REG_NOTES (copy) = copy_rtx (REG_NOTES (insn));
2042 if (reg_map)
2043 replace_regs (REG_NOTES (copy), reg_map, max_reg, 1);
2044 }
2045
2046 /* If this is a simple jump, add it to the jump chain. */
2047
2048 if (INSN_UID (copy) < max_jump_chain && JUMP_LABEL (copy)
2049 && simplejump_p (copy))
2050 {
2051 jump_chain[INSN_UID (copy)]
2052 = jump_chain[INSN_UID (JUMP_LABEL (copy))];
2053 jump_chain[INSN_UID (JUMP_LABEL (copy))] = copy;
2054 }
2055 break;
2056
2057 default:
2058 abort ();
2059 }
2060
2061 /* Now clean up by emitting a jump to the end label and deleting the jump
2062 at the start of the loop. */
2063 if (GET_CODE (copy) != BARRIER)
2064 {
2065 copy = emit_jump_insn_before (gen_jump (get_label_after (insn)),
2066 loop_start);
2067 mark_jump_label (PATTERN (copy), copy, 0);
2068 if (INSN_UID (copy) < max_jump_chain
2069 && INSN_UID (JUMP_LABEL (copy)) < max_jump_chain)
2070 {
2071 jump_chain[INSN_UID (copy)]
2072 = jump_chain[INSN_UID (JUMP_LABEL (copy))];
2073 jump_chain[INSN_UID (JUMP_LABEL (copy))] = copy;
2074 }
2075 emit_barrier_before (loop_start);
2076 }
2077
2078 delete_insn (next_nonnote_insn (loop_start));
2079
2080 /* Mark the exit code as the virtual top of the converted loop. */
2081 emit_note_before (NOTE_INSN_LOOP_VTOP, exitcode);
2082
2083 return 1;
2084 }
2085 \f
2086 /* Move all block-beg, block-end, loop-beg, loop-cont, loop-vtop, and
2087 loop-end notes between START and END out before START. Assume that
2088 END is not such a note. START may be such a note. Returns the value
2089 of the new starting insn, which may be different if the original start
2090 was such a note. */
2091
2092 rtx
2093 squeeze_notes (start, end)
2094 rtx start, end;
2095 {
2096 rtx insn;
2097 rtx next;
2098
2099 for (insn = start; insn != end; insn = next)
2100 {
2101 next = NEXT_INSN (insn);
2102 if (GET_CODE (insn) == NOTE
2103 && (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END
2104 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG
2105 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG
2106 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END
2107 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_CONT
2108 || NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_VTOP))
2109 {
2110 if (insn == start)
2111 start = next;
2112 else
2113 {
2114 rtx prev = PREV_INSN (insn);
2115 PREV_INSN (insn) = PREV_INSN (start);
2116 NEXT_INSN (insn) = start;
2117 NEXT_INSN (PREV_INSN (insn)) = insn;
2118 PREV_INSN (NEXT_INSN (insn)) = insn;
2119 NEXT_INSN (prev) = next;
2120 PREV_INSN (next) = prev;
2121 }
2122 }
2123 }
2124
2125 return start;
2126 }
2127 \f
2128 /* Compare the instructions before insn E1 with those before E2
2129 to find an opportunity for cross jumping.
2130 (This means detecting identical sequences of insns followed by
2131 jumps to the same place, or followed by a label and a jump
2132 to that label, and replacing one with a jump to the other.)
2133
2134 Assume E1 is a jump that jumps to label E2
2135 (that is not always true but it might as well be).
2136 Find the longest possible equivalent sequences
2137 and store the first insns of those sequences into *F1 and *F2.
2138 Store zero there if no equivalent preceding instructions are found.
2139
2140 We give up if we find a label in stream 1.
2141 Actually we could transfer that label into stream 2. */
2142
2143 static void
2144 find_cross_jump (e1, e2, minimum, f1, f2)
2145 rtx e1, e2;
2146 int minimum;
2147 rtx *f1, *f2;
2148 {
2149 register rtx i1 = e1, i2 = e2;
2150 register rtx p1, p2;
2151 int lose = 0;
2152
2153 rtx last1 = 0, last2 = 0;
2154 rtx afterlast1 = 0, afterlast2 = 0;
2155 rtx prev1;
2156
2157 *f1 = 0;
2158 *f2 = 0;
2159
2160 while (1)
2161 {
2162 i1 = prev_nonnote_insn (i1);
2163
2164 i2 = PREV_INSN (i2);
2165 while (i2 && (GET_CODE (i2) == NOTE || GET_CODE (i2) == CODE_LABEL))
2166 i2 = PREV_INSN (i2);
2167
2168 if (i1 == 0)
2169 break;
2170
2171 /* Don't allow the range of insns preceding E1 or E2
2172 to include the other (E2 or E1). */
2173 if (i2 == e1 || i1 == e2)
2174 break;
2175
2176 /* If we will get to this code by jumping, those jumps will be
2177 tensioned to go directly to the new label (before I2),
2178 so this cross-jumping won't cost extra. So reduce the minimum. */
2179 if (GET_CODE (i1) == CODE_LABEL)
2180 {
2181 --minimum;
2182 break;
2183 }
2184
2185 if (i2 == 0 || GET_CODE (i1) != GET_CODE (i2))
2186 break;
2187
2188 p1 = PATTERN (i1);
2189 p2 = PATTERN (i2);
2190
2191 #ifdef STACK_REGS
2192 /* If cross_jump_death_matters is not 0, the insn's mode
2193 indicates whether or not the insn contains any stack-like
2194 regs. */
2195
2196 if (cross_jump_death_matters && GET_MODE (i1) == QImode)
2197 {
2198 /* If register stack conversion has already been done, then
2199 death notes must also be compared before it is certain that
2200 the two instruction streams match. */
2201
2202 rtx note;
2203 HARD_REG_SET i1_regset, i2_regset;
2204
2205 CLEAR_HARD_REG_SET (i1_regset);
2206 CLEAR_HARD_REG_SET (i2_regset);
2207
2208 for (note = REG_NOTES (i1); note; note = XEXP (note, 1))
2209 if (REG_NOTE_KIND (note) == REG_DEAD
2210 && STACK_REG_P (XEXP (note, 0)))
2211 SET_HARD_REG_BIT (i1_regset, REGNO (XEXP (note, 0)));
2212
2213 for (note = REG_NOTES (i2); note; note = XEXP (note, 1))
2214 if (REG_NOTE_KIND (note) == REG_DEAD
2215 && STACK_REG_P (XEXP (note, 0)))
2216 SET_HARD_REG_BIT (i2_regset, REGNO (XEXP (note, 0)));
2217
2218 GO_IF_HARD_REG_EQUAL (i1_regset, i2_regset, done);
2219
2220 lose = 1;
2221
2222 done:
2223 ;
2224 }
2225 #endif
2226
2227 if (lose || GET_CODE (p1) != GET_CODE (p2)
2228 || ! rtx_renumbered_equal_p (p1, p2))
2229 {
2230 /* The following code helps take care of G++ cleanups. */
2231 rtx equiv1;
2232 rtx equiv2;
2233
2234 if (!lose && GET_CODE (p1) == GET_CODE (p2)
2235 && ((equiv1 = find_reg_note (i1, REG_EQUAL, NULL_RTX)) != 0
2236 || (equiv1 = find_reg_note (i1, REG_EQUIV, NULL_RTX)) != 0)
2237 && ((equiv2 = find_reg_note (i2, REG_EQUAL, NULL_RTX)) != 0
2238 || (equiv2 = find_reg_note (i2, REG_EQUIV, NULL_RTX)) != 0)
2239 /* If the equivalences are not to a constant, they may
2240 reference pseudos that no longer exist, so we can't
2241 use them. */
2242 && CONSTANT_P (XEXP (equiv1, 0))
2243 && rtx_equal_p (XEXP (equiv1, 0), XEXP (equiv2, 0)))
2244 {
2245 rtx s1 = single_set (i1);
2246 rtx s2 = single_set (i2);
2247 if (s1 != 0 && s2 != 0
2248 && rtx_renumbered_equal_p (SET_DEST (s1), SET_DEST (s2)))
2249 {
2250 validate_change (i1, &SET_SRC (s1), XEXP (equiv1, 0), 1);
2251 validate_change (i2, &SET_SRC (s2), XEXP (equiv2, 0), 1);
2252 if (! rtx_renumbered_equal_p (p1, p2))
2253 cancel_changes (0);
2254 else if (apply_change_group ())
2255 goto win;
2256 }
2257 }
2258
2259 /* Insns fail to match; cross jumping is limited to the following
2260 insns. */
2261
2262 #ifdef HAVE_cc0
2263 /* Don't allow the insn after a compare to be shared by
2264 cross-jumping unless the compare is also shared.
2265 Here, if either of these non-matching insns is a compare,
2266 exclude the following insn from possible cross-jumping. */
2267 if (sets_cc0_p (p1) || sets_cc0_p (p2))
2268 last1 = afterlast1, last2 = afterlast2, ++minimum;
2269 #endif
2270
2271 /* If cross-jumping here will feed a jump-around-jump
2272 optimization, this jump won't cost extra, so reduce
2273 the minimum. */
2274 if (GET_CODE (i1) == JUMP_INSN
2275 && JUMP_LABEL (i1)
2276 && prev_real_insn (JUMP_LABEL (i1)) == e1)
2277 --minimum;
2278 break;
2279 }
2280
2281 win:
2282 if (GET_CODE (p1) != USE && GET_CODE (p1) != CLOBBER)
2283 {
2284 /* Ok, this insn is potentially includable in a cross-jump here. */
2285 afterlast1 = last1, afterlast2 = last2;
2286 last1 = i1, last2 = i2, --minimum;
2287 }
2288 }
2289
2290 /* We have to be careful that we do not cross-jump into the middle of
2291 USE-CALL_INSN-CLOBBER sequence. This sequence is used instead of
2292 putting the USE and CLOBBERs inside the CALL_INSN. The delay slot
2293 scheduler needs to know what registers are used and modified by the
2294 CALL_INSN and needs the adjacent USE and CLOBBERs to do so.
2295
2296 ??? At some point we should probably change this so that these are
2297 part of the CALL_INSN. The way we are doing it now is a kludge that
2298 is now causing trouble. */
2299
2300 if (last1 != 0 && GET_CODE (last1) == CALL_INSN
2301 && (prev1 = prev_nonnote_insn (last1))
2302 && GET_CODE (prev1) == INSN
2303 && GET_CODE (PATTERN (prev1)) == USE)
2304 {
2305 /* Remove this CALL_INSN from the range we can cross-jump. */
2306 last1 = next_real_insn (last1);
2307 last2 = next_real_insn (last2);
2308
2309 minimum++;
2310 }
2311
2312 /* Skip past CLOBBERS since they may be right after a CALL_INSN. It
2313 isn't worth checking for the CALL_INSN. */
2314 while (last1 != 0 && GET_CODE (PATTERN (last1)) == CLOBBER)
2315 last1 = next_real_insn (last1), last2 = next_real_insn (last2);
2316
2317 if (minimum <= 0 && last1 != 0 && last1 != e1)
2318 *f1 = last1, *f2 = last2;
2319 }
2320
2321 static void
2322 do_cross_jump (insn, newjpos, newlpos)
2323 rtx insn, newjpos, newlpos;
2324 {
2325 /* Find an existing label at this point
2326 or make a new one if there is none. */
2327 register rtx label = get_label_before (newlpos);
2328
2329 /* Make the same jump insn jump to the new point. */
2330 if (GET_CODE (PATTERN (insn)) == RETURN)
2331 {
2332 /* Remove from jump chain of returns. */
2333 delete_from_jump_chain (insn);
2334 /* Change the insn. */
2335 PATTERN (insn) = gen_jump (label);
2336 INSN_CODE (insn) = -1;
2337 JUMP_LABEL (insn) = label;
2338 LABEL_NUSES (label)++;
2339 /* Add to new the jump chain. */
2340 if (INSN_UID (label) < max_jump_chain
2341 && INSN_UID (insn) < max_jump_chain)
2342 {
2343 jump_chain[INSN_UID (insn)] = jump_chain[INSN_UID (label)];
2344 jump_chain[INSN_UID (label)] = insn;
2345 }
2346 }
2347 else
2348 redirect_jump (insn, label);
2349
2350 /* Delete the matching insns before the jump. Also, remove any REG_EQUAL
2351 or REG_EQUIV note in the NEWLPOS stream that isn't also present in
2352 the NEWJPOS stream. */
2353
2354 while (newjpos != insn)
2355 {
2356 rtx lnote;
2357
2358 for (lnote = REG_NOTES (newlpos); lnote; lnote = XEXP (lnote, 1))
2359 if ((REG_NOTE_KIND (lnote) == REG_EQUAL
2360 || REG_NOTE_KIND (lnote) == REG_EQUIV)
2361 && ! find_reg_note (newjpos, REG_EQUAL, XEXP (lnote, 0))
2362 && ! find_reg_note (newjpos, REG_EQUIV, XEXP (lnote, 0)))
2363 remove_note (newlpos, lnote);
2364
2365 delete_insn (newjpos);
2366 newjpos = next_real_insn (newjpos);
2367 newlpos = next_real_insn (newlpos);
2368 }
2369 }
2370 \f
2371 /* Return the label before INSN, or put a new label there. */
2372
2373 rtx
2374 get_label_before (insn)
2375 rtx insn;
2376 {
2377 rtx label;
2378
2379 /* Find an existing label at this point
2380 or make a new one if there is none. */
2381 label = prev_nonnote_insn (insn);
2382
2383 if (label == 0 || GET_CODE (label) != CODE_LABEL)
2384 {
2385 rtx prev = PREV_INSN (insn);
2386
2387 /* Don't put a label between a CALL_INSN and USE insns that precede
2388 it. */
2389
2390 if (GET_CODE (insn) == CALL_INSN
2391 || (GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == SEQUENCE
2392 && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == CALL_INSN))
2393 while (GET_CODE (prev) == INSN && GET_CODE (PATTERN (prev)) == USE)
2394 prev = PREV_INSN (prev);
2395
2396 label = gen_label_rtx ();
2397 emit_label_after (label, prev);
2398 LABEL_NUSES (label) = 0;
2399 }
2400 return label;
2401 }
2402
2403 /* Return the label after INSN, or put a new label there. */
2404
2405 rtx
2406 get_label_after (insn)
2407 rtx insn;
2408 {
2409 rtx label;
2410
2411 /* Find an existing label at this point
2412 or make a new one if there is none. */
2413 label = next_nonnote_insn (insn);
2414
2415 if (label == 0 || GET_CODE (label) != CODE_LABEL)
2416 {
2417 /* Don't put a label between a CALL_INSN and CLOBBER insns
2418 following it. */
2419
2420 if (GET_CODE (insn) == CALL_INSN
2421 || (GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == SEQUENCE
2422 && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == CALL_INSN))
2423 while (GET_CODE (NEXT_INSN (insn)) == INSN
2424 && GET_CODE (PATTERN (NEXT_INSN (insn))) == CLOBBER)
2425 insn = NEXT_INSN (insn);
2426
2427 label = gen_label_rtx ();
2428 emit_label_after (label, insn);
2429 LABEL_NUSES (label) = 0;
2430 }
2431 return label;
2432 }
2433 \f
2434 /* Return 1 if INSN is a jump that jumps to right after TARGET
2435 only on the condition that TARGET itself would drop through.
2436 Assumes that TARGET is a conditional jump. */
2437
2438 static int
2439 jump_back_p (insn, target)
2440 rtx insn, target;
2441 {
2442 rtx cinsn, ctarget;
2443 enum rtx_code codei, codet;
2444
2445 if (simplejump_p (insn) || ! condjump_p (insn)
2446 || simplejump_p (target)
2447 || target != prev_real_insn (JUMP_LABEL (insn)))
2448 return 0;
2449
2450 cinsn = XEXP (SET_SRC (PATTERN (insn)), 0);
2451 ctarget = XEXP (SET_SRC (PATTERN (target)), 0);
2452
2453 codei = GET_CODE (cinsn);
2454 codet = GET_CODE (ctarget);
2455
2456 if (XEXP (SET_SRC (PATTERN (insn)), 1) == pc_rtx)
2457 {
2458 if (! can_reverse_comparison_p (cinsn, insn))
2459 return 0;
2460 codei = reverse_condition (codei);
2461 }
2462
2463 if (XEXP (SET_SRC (PATTERN (target)), 2) == pc_rtx)
2464 {
2465 if (! can_reverse_comparison_p (ctarget, target))
2466 return 0;
2467 codet = reverse_condition (codet);
2468 }
2469
2470 return (codei == codet
2471 && rtx_renumbered_equal_p (XEXP (cinsn, 0), XEXP (ctarget, 0))
2472 && rtx_renumbered_equal_p (XEXP (cinsn, 1), XEXP (ctarget, 1)));
2473 }
2474 \f
2475 /* Given a comparison, COMPARISON, inside a conditional jump insn, INSN,
2476 return non-zero if it is safe to reverse this comparison. It is if our
2477 floating-point is not IEEE, if this is an NE or EQ comparison, or if
2478 this is known to be an integer comparison. */
2479
2480 int
2481 can_reverse_comparison_p (comparison, insn)
2482 rtx comparison;
2483 rtx insn;
2484 {
2485 rtx arg0;
2486
2487 /* If this is not actually a comparison, we can't reverse it. */
2488 if (GET_RTX_CLASS (GET_CODE (comparison)) != '<')
2489 return 0;
2490
2491 if (TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
2492 /* If this is an NE comparison, it is safe to reverse it to an EQ
2493 comparison and vice versa, even for floating point. If no operands
2494 are NaNs, the reversal is valid. If some operand is a NaN, EQ is
2495 always false and NE is always true, so the reversal is also valid. */
2496 || GET_CODE (comparison) == NE
2497 || GET_CODE (comparison) == EQ)
2498 return 1;
2499
2500 arg0 = XEXP (comparison, 0);
2501
2502 /* Make sure ARG0 is one of the actual objects being compared. If we
2503 can't do this, we can't be sure the comparison can be reversed.
2504
2505 Handle cc0 and a MODE_CC register. */
2506 if ((GET_CODE (arg0) == REG && GET_MODE_CLASS (GET_MODE (arg0)) == MODE_CC)
2507 #ifdef HAVE_cc0
2508 || arg0 == cc0_rtx
2509 #endif
2510 )
2511 {
2512 rtx prev = prev_nonnote_insn (insn);
2513 rtx set = single_set (prev);
2514
2515 if (set == 0 || SET_DEST (set) != arg0)
2516 return 0;
2517
2518 arg0 = SET_SRC (set);
2519
2520 if (GET_CODE (arg0) == COMPARE)
2521 arg0 = XEXP (arg0, 0);
2522 }
2523
2524 /* We can reverse this if ARG0 is a CONST_INT or if its mode is
2525 not VOIDmode and neither a MODE_CC nor MODE_FLOAT type. */
2526 return (GET_CODE (arg0) == CONST_INT
2527 || (GET_MODE (arg0) != VOIDmode
2528 && GET_MODE_CLASS (GET_MODE (arg0)) != MODE_CC
2529 && GET_MODE_CLASS (GET_MODE (arg0)) != MODE_FLOAT));
2530 }
2531
2532 /* Given an rtx-code for a comparison, return the code
2533 for the negated comparison.
2534 WATCH OUT! reverse_condition is not safe to use on a jump
2535 that might be acting on the results of an IEEE floating point comparison,
2536 because of the special treatment of non-signaling nans in comparisons.
2537 Use can_reverse_comparison_p to be sure. */
2538
2539 enum rtx_code
2540 reverse_condition (code)
2541 enum rtx_code code;
2542 {
2543 switch (code)
2544 {
2545 case EQ:
2546 return NE;
2547
2548 case NE:
2549 return EQ;
2550
2551 case GT:
2552 return LE;
2553
2554 case GE:
2555 return LT;
2556
2557 case LT:
2558 return GE;
2559
2560 case LE:
2561 return GT;
2562
2563 case GTU:
2564 return LEU;
2565
2566 case GEU:
2567 return LTU;
2568
2569 case LTU:
2570 return GEU;
2571
2572 case LEU:
2573 return GTU;
2574
2575 default:
2576 abort ();
2577 return UNKNOWN;
2578 }
2579 }
2580
2581 /* Similar, but return the code when two operands of a comparison are swapped.
2582 This IS safe for IEEE floating-point. */
2583
2584 enum rtx_code
2585 swap_condition (code)
2586 enum rtx_code code;
2587 {
2588 switch (code)
2589 {
2590 case EQ:
2591 case NE:
2592 return code;
2593
2594 case GT:
2595 return LT;
2596
2597 case GE:
2598 return LE;
2599
2600 case LT:
2601 return GT;
2602
2603 case LE:
2604 return GE;
2605
2606 case GTU:
2607 return LTU;
2608
2609 case GEU:
2610 return LEU;
2611
2612 case LTU:
2613 return GTU;
2614
2615 case LEU:
2616 return GEU;
2617
2618 default:
2619 abort ();
2620 return UNKNOWN;
2621 }
2622 }
2623
2624 /* Given a comparison CODE, return the corresponding unsigned comparison.
2625 If CODE is an equality comparison or already an unsigned comparison,
2626 CODE is returned. */
2627
2628 enum rtx_code
2629 unsigned_condition (code)
2630 enum rtx_code code;
2631 {
2632 switch (code)
2633 {
2634 case EQ:
2635 case NE:
2636 case GTU:
2637 case GEU:
2638 case LTU:
2639 case LEU:
2640 return code;
2641
2642 case GT:
2643 return GTU;
2644
2645 case GE:
2646 return GEU;
2647
2648 case LT:
2649 return LTU;
2650
2651 case LE:
2652 return LEU;
2653
2654 default:
2655 abort ();
2656 }
2657 }
2658
2659 /* Similarly, return the signed version of a comparison. */
2660
2661 enum rtx_code
2662 signed_condition (code)
2663 enum rtx_code code;
2664 {
2665 switch (code)
2666 {
2667 case EQ:
2668 case NE:
2669 case GT:
2670 case GE:
2671 case LT:
2672 case LE:
2673 return code;
2674
2675 case GTU:
2676 return GT;
2677
2678 case GEU:
2679 return GE;
2680
2681 case LTU:
2682 return LT;
2683
2684 case LEU:
2685 return LE;
2686
2687 default:
2688 abort ();
2689 }
2690 }
2691 \f
2692 /* Return non-zero if CODE1 is more strict than CODE2, i.e., if the
2693 truth of CODE1 implies the truth of CODE2. */
2694
2695 int
2696 comparison_dominates_p (code1, code2)
2697 enum rtx_code code1, code2;
2698 {
2699 if (code1 == code2)
2700 return 1;
2701
2702 switch (code1)
2703 {
2704 case EQ:
2705 if (code2 == LE || code2 == LEU || code2 == GE || code2 == GEU)
2706 return 1;
2707 break;
2708
2709 case LT:
2710 if (code2 == LE)
2711 return 1;
2712 break;
2713
2714 case GT:
2715 if (code2 == GE)
2716 return 1;
2717 break;
2718
2719 case LTU:
2720 if (code2 == LEU)
2721 return 1;
2722 break;
2723
2724 case GTU:
2725 if (code2 == GEU)
2726 return 1;
2727 break;
2728 }
2729
2730 return 0;
2731 }
2732 \f
2733 /* Return 1 if INSN is an unconditional jump and nothing else. */
2734
2735 int
2736 simplejump_p (insn)
2737 rtx insn;
2738 {
2739 return (GET_CODE (insn) == JUMP_INSN
2740 && GET_CODE (PATTERN (insn)) == SET
2741 && GET_CODE (SET_DEST (PATTERN (insn))) == PC
2742 && GET_CODE (SET_SRC (PATTERN (insn))) == LABEL_REF);
2743 }
2744
2745 /* Return nonzero if INSN is a (possibly) conditional jump
2746 and nothing more. */
2747
2748 int
2749 condjump_p (insn)
2750 rtx insn;
2751 {
2752 register rtx x = PATTERN (insn);
2753 if (GET_CODE (x) != SET)
2754 return 0;
2755 if (GET_CODE (SET_DEST (x)) != PC)
2756 return 0;
2757 if (GET_CODE (SET_SRC (x)) == LABEL_REF)
2758 return 1;
2759 if (GET_CODE (SET_SRC (x)) != IF_THEN_ELSE)
2760 return 0;
2761 if (XEXP (SET_SRC (x), 2) == pc_rtx
2762 && (GET_CODE (XEXP (SET_SRC (x), 1)) == LABEL_REF
2763 || GET_CODE (XEXP (SET_SRC (x), 1)) == RETURN))
2764 return 1;
2765 if (XEXP (SET_SRC (x), 1) == pc_rtx
2766 && (GET_CODE (XEXP (SET_SRC (x), 2)) == LABEL_REF
2767 || GET_CODE (XEXP (SET_SRC (x), 2)) == RETURN))
2768 return 1;
2769 return 0;
2770 }
2771
2772 /* Return 1 if X is an RTX that does nothing but set the condition codes
2773 and CLOBBER or USE registers.
2774 Return -1 if X does explicitly set the condition codes,
2775 but also does other things. */
2776
2777 int
2778 sets_cc0_p (x)
2779 rtx x;
2780 {
2781 #ifdef HAVE_cc0
2782 if (GET_CODE (x) == SET && SET_DEST (x) == cc0_rtx)
2783 return 1;
2784 if (GET_CODE (x) == PARALLEL)
2785 {
2786 int i;
2787 int sets_cc0 = 0;
2788 int other_things = 0;
2789 for (i = XVECLEN (x, 0) - 1; i >= 0; i--)
2790 {
2791 if (GET_CODE (XVECEXP (x, 0, i)) == SET
2792 && SET_DEST (XVECEXP (x, 0, i)) == cc0_rtx)
2793 sets_cc0 = 1;
2794 else if (GET_CODE (XVECEXP (x, 0, i)) == SET)
2795 other_things = 1;
2796 }
2797 return ! sets_cc0 ? 0 : other_things ? -1 : 1;
2798 }
2799 return 0;
2800 #else
2801 abort ();
2802 #endif
2803 }
2804 \f
2805 /* Follow any unconditional jump at LABEL;
2806 return the ultimate label reached by any such chain of jumps.
2807 If LABEL is not followed by a jump, return LABEL.
2808 If the chain loops or we can't find end, return LABEL,
2809 since that tells caller to avoid changing the insn.
2810
2811 If RELOAD_COMPLETED is 0, we do not chain across a NOTE_INSN_LOOP_BEG or
2812 a USE or CLOBBER. */
2813
2814 rtx
2815 follow_jumps (label)
2816 rtx label;
2817 {
2818 register rtx insn;
2819 register rtx next;
2820 register rtx value = label;
2821 register int depth;
2822
2823 for (depth = 0;
2824 (depth < 10
2825 && (insn = next_active_insn (value)) != 0
2826 && GET_CODE (insn) == JUMP_INSN
2827 && (JUMP_LABEL (insn) != 0 || GET_CODE (PATTERN (insn)) == RETURN)
2828 && (next = NEXT_INSN (insn))
2829 && GET_CODE (next) == BARRIER);
2830 depth++)
2831 {
2832 /* Don't chain through the insn that jumps into a loop
2833 from outside the loop,
2834 since that would create multiple loop entry jumps
2835 and prevent loop optimization. */
2836 rtx tem;
2837 if (!reload_completed)
2838 for (tem = value; tem != insn; tem = NEXT_INSN (tem))
2839 if (GET_CODE (tem) == NOTE
2840 && NOTE_LINE_NUMBER (tem) == NOTE_INSN_LOOP_BEG)
2841 return value;
2842
2843 /* If we have found a cycle, make the insn jump to itself. */
2844 if (JUMP_LABEL (insn) == label)
2845 return label;
2846 value = JUMP_LABEL (insn);
2847 }
2848 if (depth == 10)
2849 return label;
2850 return value;
2851 }
2852
2853 /* Assuming that field IDX of X is a vector of label_refs,
2854 replace each of them by the ultimate label reached by it.
2855 Return nonzero if a change is made.
2856 If IGNORE_LOOPS is 0, we do not chain across a NOTE_INSN_LOOP_BEG. */
2857
2858 static int
2859 tension_vector_labels (x, idx)
2860 register rtx x;
2861 register int idx;
2862 {
2863 int changed = 0;
2864 register int i;
2865 for (i = XVECLEN (x, idx) - 1; i >= 0; i--)
2866 {
2867 register rtx olabel = XEXP (XVECEXP (x, idx, i), 0);
2868 register rtx nlabel = follow_jumps (olabel);
2869 if (nlabel && nlabel != olabel)
2870 {
2871 XEXP (XVECEXP (x, idx, i), 0) = nlabel;
2872 ++LABEL_NUSES (nlabel);
2873 if (--LABEL_NUSES (olabel) == 0)
2874 delete_insn (olabel);
2875 changed = 1;
2876 }
2877 }
2878 return changed;
2879 }
2880 \f
2881 /* Find all CODE_LABELs referred to in X, and increment their use counts.
2882 If INSN is a JUMP_INSN and there is at least one CODE_LABEL referenced
2883 in INSN, then store one of them in JUMP_LABEL (INSN).
2884 If INSN is an INSN or a CALL_INSN and there is at least one CODE_LABEL
2885 referenced in INSN, add a REG_LABEL note containing that label to INSN.
2886 Also, when there are consecutive labels, canonicalize on the last of them.
2887
2888 Note that two labels separated by a loop-beginning note
2889 must be kept distinct if we have not yet done loop-optimization,
2890 because the gap between them is where loop-optimize
2891 will want to move invariant code to. CROSS_JUMP tells us
2892 that loop-optimization is done with.
2893
2894 Once reload has completed (CROSS_JUMP non-zero), we need not consider
2895 two labels distinct if they are separated by only USE or CLOBBER insns. */
2896
2897 static void
2898 mark_jump_label (x, insn, cross_jump)
2899 register rtx x;
2900 rtx insn;
2901 int cross_jump;
2902 {
2903 register RTX_CODE code = GET_CODE (x);
2904 register int i;
2905 register char *fmt;
2906
2907 switch (code)
2908 {
2909 case PC:
2910 case CC0:
2911 case REG:
2912 case SUBREG:
2913 case CONST_INT:
2914 case SYMBOL_REF:
2915 case CONST_DOUBLE:
2916 case CLOBBER:
2917 case CALL:
2918 return;
2919
2920 case MEM:
2921 /* If this is a constant-pool reference, see if it is a label. */
2922 if (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
2923 && CONSTANT_POOL_ADDRESS_P (XEXP (x, 0)))
2924 mark_jump_label (get_pool_constant (XEXP (x, 0)), insn, cross_jump);
2925 break;
2926
2927 case LABEL_REF:
2928 {
2929 register rtx label = XEXP (x, 0);
2930 register rtx next;
2931 if (GET_CODE (label) != CODE_LABEL)
2932 abort ();
2933 /* Ignore references to labels of containing functions. */
2934 if (LABEL_REF_NONLOCAL_P (x))
2935 break;
2936 /* If there are other labels following this one,
2937 replace it with the last of the consecutive labels. */
2938 for (next = NEXT_INSN (label); next; next = NEXT_INSN (next))
2939 {
2940 if (GET_CODE (next) == CODE_LABEL)
2941 label = next;
2942 else if (cross_jump && GET_CODE (next) == INSN
2943 && (GET_CODE (PATTERN (next)) == USE
2944 || GET_CODE (PATTERN (next)) == CLOBBER))
2945 continue;
2946 else if (GET_CODE (next) != NOTE)
2947 break;
2948 else if (! cross_jump
2949 && (NOTE_LINE_NUMBER (next) == NOTE_INSN_LOOP_BEG
2950 || NOTE_LINE_NUMBER (next) == NOTE_INSN_FUNCTION_END))
2951 break;
2952 }
2953 XEXP (x, 0) = label;
2954 ++LABEL_NUSES (label);
2955 if (insn)
2956 {
2957 if (GET_CODE (insn) == JUMP_INSN)
2958 JUMP_LABEL (insn) = label;
2959 else if (! find_reg_note (insn, REG_LABEL, label))
2960 {
2961 rtx next = next_real_insn (label);
2962 /* Don't record labels that refer to dispatch tables.
2963 This is not necessary, since the tablejump
2964 references the same label.
2965 And if we did record them, flow.c would make worse code. */
2966 if (next == 0
2967 || ! (GET_CODE (next) == JUMP_INSN
2968 && (GET_CODE (PATTERN (next)) == ADDR_VEC
2969 || GET_CODE (PATTERN (next)) == ADDR_DIFF_VEC)))
2970 REG_NOTES (insn) = gen_rtx (EXPR_LIST, REG_LABEL, label,
2971 REG_NOTES (insn));
2972 }
2973 }
2974 return;
2975 }
2976
2977 /* Do walk the labels in a vector, but not the first operand of an
2978 ADDR_DIFF_VEC. Don't set the JUMP_LABEL of a vector. */
2979 case ADDR_VEC:
2980 case ADDR_DIFF_VEC:
2981 {
2982 int eltnum = code == ADDR_DIFF_VEC ? 1 : 0;
2983
2984 for (i = 0; i < XVECLEN (x, eltnum); i++)
2985 mark_jump_label (XVECEXP (x, eltnum, i), NULL_RTX, cross_jump);
2986 return;
2987 }
2988 }
2989
2990 fmt = GET_RTX_FORMAT (code);
2991 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
2992 {
2993 if (fmt[i] == 'e')
2994 mark_jump_label (XEXP (x, i), insn, cross_jump);
2995 else if (fmt[i] == 'E')
2996 {
2997 register int j;
2998 for (j = 0; j < XVECLEN (x, i); j++)
2999 mark_jump_label (XVECEXP (x, i, j), insn, cross_jump);
3000 }
3001 }
3002 }
3003
3004 /* If all INSN does is set the pc, delete it,
3005 and delete the insn that set the condition codes for it
3006 if that's what the previous thing was. */
3007
3008 void
3009 delete_jump (insn)
3010 rtx insn;
3011 {
3012 register rtx x = PATTERN (insn);
3013
3014 if (GET_CODE (x) == SET
3015 && GET_CODE (SET_DEST (x)) == PC)
3016 {
3017 #ifdef HAVE_cc0
3018 rtx prev = prev_nonnote_insn (insn);
3019 /* We assume that at this stage
3020 CC's are always set explicitly
3021 and always immediately before the jump that
3022 will use them. So if the previous insn
3023 exists to set the CC's, delete it
3024 (unless it performs auto-increments, etc.). */
3025 if (prev && GET_CODE (prev) == INSN
3026 && sets_cc0_p (PATTERN (prev)))
3027 {
3028 if (sets_cc0_p (PATTERN (prev)) > 0
3029 && !FIND_REG_INC_NOTE (prev, NULL_RTX))
3030 delete_insn (prev);
3031 else
3032 /* Otherwise, show that cc0 won't be used. */
3033 REG_NOTES (prev) = gen_rtx (EXPR_LIST, REG_UNUSED,
3034 cc0_rtx, REG_NOTES (prev));
3035 }
3036 #endif
3037 /* Now delete the jump insn itself. */
3038 delete_computation (insn);
3039 }
3040 }
3041
3042 /* Delete INSN and recursively delete insns that compute values used only
3043 by INSN. This uses the REG_DEAD notes computed during flow analysis.
3044 If we are running before flow.c, we need do nothing since flow.c will
3045 delete dead code. We also can't know if the registers being used are
3046 dead or not at this point.
3047
3048 Otherwise, look at all our REG_DEAD notes. If a previous insn does
3049 nothing other than set a register that dies in this insn, we can delete
3050 that insn as well. */
3051
3052 void
3053 delete_computation (insn)
3054 rtx insn;
3055 {
3056 #ifndef HAVE_cc0
3057 rtx note, next;
3058
3059 for (note = REG_NOTES (insn); note; note = next)
3060 {
3061 rtx our_prev;
3062
3063 next = XEXP (note, 1);
3064
3065 if (REG_NOTE_KIND (note) != REG_DEAD
3066 /* Verify that the REG_NOTE is legitimate. */
3067 || GET_CODE (XEXP (note, 0)) != REG)
3068 continue;
3069
3070 for (our_prev = prev_nonnote_insn (insn);
3071 our_prev && GET_CODE (our_prev) == INSN;
3072 our_prev = prev_nonnote_insn (our_prev))
3073 {
3074 /* If we reach a SEQUENCE, it is too complex to try to
3075 do anything with it, so give up. */
3076 if (GET_CODE (PATTERN (our_prev)) == SEQUENCE)
3077 break;
3078
3079 if (GET_CODE (PATTERN (our_prev)) == USE
3080 && GET_CODE (XEXP (PATTERN (our_prev), 0)) == INSN)
3081 /* reorg creates USEs that look like this. We leave them
3082 alone because reorg needs them for its own purposes. */
3083 break;
3084
3085 if (reg_set_p (XEXP (note, 0), PATTERN (our_prev)))
3086 {
3087 if (FIND_REG_INC_NOTE (our_prev, NULL_RTX))
3088 break;
3089
3090 if (GET_CODE (PATTERN (our_prev)) == PARALLEL)
3091 {
3092 /* If we find a SET of something else, we can't
3093 delete the insn. */
3094
3095 int i;
3096
3097 for (i = 0; i < XVECLEN (PATTERN (our_prev), 0); i++)
3098 {
3099 rtx part = XVECEXP (PATTERN (our_prev), 0, i);
3100
3101 if (GET_CODE (part) == SET
3102 && SET_DEST (part) != XEXP (note, 0))
3103 break;
3104 }
3105
3106 if (i == XVECLEN (PATTERN (our_prev), 0))
3107 delete_computation (our_prev);
3108 }
3109 else if (GET_CODE (PATTERN (our_prev)) == SET
3110 && SET_DEST (PATTERN (our_prev)) == XEXP (note, 0))
3111 delete_computation (our_prev);
3112
3113 break;
3114 }
3115
3116 /* If OUR_PREV references the register that dies here, it is an
3117 additional use. Hence any prior SET isn't dead. However, this
3118 insn becomes the new place for the REG_DEAD note. */
3119 if (reg_overlap_mentioned_p (XEXP (note, 0),
3120 PATTERN (our_prev)))
3121 {
3122 XEXP (note, 1) = REG_NOTES (our_prev);
3123 REG_NOTES (our_prev) = note;
3124 break;
3125 }
3126 }
3127 }
3128 #endif /* Don't HAVE_cc0 */
3129 delete_insn (insn);
3130 }
3131 \f
3132 /* Delete insn INSN from the chain of insns and update label ref counts.
3133 May delete some following insns as a consequence; may even delete
3134 a label elsewhere and insns that follow it.
3135
3136 Returns the first insn after INSN that was not deleted. */
3137
3138 rtx
3139 delete_insn (insn)
3140 register rtx insn;
3141 {
3142 register rtx next = NEXT_INSN (insn);
3143 register rtx prev = PREV_INSN (insn);
3144 register int was_code_label = (GET_CODE (insn) == CODE_LABEL);
3145 register int dont_really_delete = 0;
3146
3147 while (next && INSN_DELETED_P (next))
3148 next = NEXT_INSN (next);
3149
3150 /* This insn is already deleted => return first following nondeleted. */
3151 if (INSN_DELETED_P (insn))
3152 return next;
3153
3154 /* Don't delete user-declared labels. Convert them to special NOTEs
3155 instead. */
3156 if (was_code_label && LABEL_NAME (insn) != 0
3157 && optimize && ! dont_really_delete)
3158 {
3159 PUT_CODE (insn, NOTE);
3160 NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED_LABEL;
3161 NOTE_SOURCE_FILE (insn) = 0;
3162 dont_really_delete = 1;
3163 }
3164 else
3165 /* Mark this insn as deleted. */
3166 INSN_DELETED_P (insn) = 1;
3167
3168 /* If this is an unconditional jump, delete it from the jump chain. */
3169 if (simplejump_p (insn))
3170 delete_from_jump_chain (insn);
3171
3172 /* If instruction is followed by a barrier,
3173 delete the barrier too. */
3174
3175 if (next != 0 && GET_CODE (next) == BARRIER)
3176 {
3177 INSN_DELETED_P (next) = 1;
3178 next = NEXT_INSN (next);
3179 }
3180
3181 /* Patch out INSN (and the barrier if any) */
3182
3183 if (optimize && ! dont_really_delete)
3184 {
3185 if (prev)
3186 {
3187 NEXT_INSN (prev) = next;
3188 if (GET_CODE (prev) == INSN && GET_CODE (PATTERN (prev)) == SEQUENCE)
3189 NEXT_INSN (XVECEXP (PATTERN (prev), 0,
3190 XVECLEN (PATTERN (prev), 0) - 1)) = next;
3191 }
3192
3193 if (next)
3194 {
3195 PREV_INSN (next) = prev;
3196 if (GET_CODE (next) == INSN && GET_CODE (PATTERN (next)) == SEQUENCE)
3197 PREV_INSN (XVECEXP (PATTERN (next), 0, 0)) = prev;
3198 }
3199
3200 if (prev && NEXT_INSN (prev) == 0)
3201 set_last_insn (prev);
3202 }
3203
3204 /* If deleting a jump, decrement the count of the label,
3205 and delete the label if it is now unused. */
3206
3207 if (GET_CODE (insn) == JUMP_INSN && JUMP_LABEL (insn))
3208 if (--LABEL_NUSES (JUMP_LABEL (insn)) == 0)
3209 {
3210 /* This can delete NEXT or PREV,
3211 either directly if NEXT is JUMP_LABEL (INSN),
3212 or indirectly through more levels of jumps. */
3213 delete_insn (JUMP_LABEL (insn));
3214 /* I feel a little doubtful about this loop,
3215 but I see no clean and sure alternative way
3216 to find the first insn after INSN that is not now deleted.
3217 I hope this works. */
3218 while (next && INSN_DELETED_P (next))
3219 next = NEXT_INSN (next);
3220 return next;
3221 }
3222
3223 while (prev && (INSN_DELETED_P (prev) || GET_CODE (prev) == NOTE))
3224 prev = PREV_INSN (prev);
3225
3226 /* If INSN was a label and a dispatch table follows it,
3227 delete the dispatch table. The tablejump must have gone already.
3228 It isn't useful to fall through into a table. */
3229
3230 if (was_code_label
3231 && NEXT_INSN (insn) != 0
3232 && GET_CODE (NEXT_INSN (insn)) == JUMP_INSN
3233 && (GET_CODE (PATTERN (NEXT_INSN (insn))) == ADDR_VEC
3234 || GET_CODE (PATTERN (NEXT_INSN (insn))) == ADDR_DIFF_VEC))
3235 next = delete_insn (NEXT_INSN (insn));
3236
3237 /* If INSN was a label, delete insns following it if now unreachable. */
3238
3239 if (was_code_label && prev && GET_CODE (prev) == BARRIER)
3240 {
3241 register RTX_CODE code;
3242 while (next != 0
3243 && ((code = GET_CODE (next)) == INSN
3244 || code == JUMP_INSN || code == CALL_INSN
3245 || code == NOTE
3246 || (code == CODE_LABEL && INSN_DELETED_P (next))))
3247 {
3248 if (code == NOTE
3249 && NOTE_LINE_NUMBER (next) != NOTE_INSN_FUNCTION_END)
3250 next = NEXT_INSN (next);
3251 /* Keep going past other deleted labels to delete what follows. */
3252 else if (code == CODE_LABEL && INSN_DELETED_P (next))
3253 next = NEXT_INSN (next);
3254 else
3255 /* Note: if this deletes a jump, it can cause more
3256 deletion of unreachable code, after a different label.
3257 As long as the value from this recursive call is correct,
3258 this invocation functions correctly. */
3259 next = delete_insn (next);
3260 }
3261 }
3262
3263 return next;
3264 }
3265
3266 /* Advance from INSN till reaching something not deleted
3267 then return that. May return INSN itself. */
3268
3269 rtx
3270 next_nondeleted_insn (insn)
3271 rtx insn;
3272 {
3273 while (INSN_DELETED_P (insn))
3274 insn = NEXT_INSN (insn);
3275 return insn;
3276 }
3277 \f
3278 /* Delete a range of insns from FROM to TO, inclusive.
3279 This is for the sake of peephole optimization, so assume
3280 that whatever these insns do will still be done by a new
3281 peephole insn that will replace them. */
3282
3283 void
3284 delete_for_peephole (from, to)
3285 register rtx from, to;
3286 {
3287 register rtx insn = from;
3288
3289 while (1)
3290 {
3291 register rtx next = NEXT_INSN (insn);
3292 register rtx prev = PREV_INSN (insn);
3293
3294 if (GET_CODE (insn) != NOTE)
3295 {
3296 INSN_DELETED_P (insn) = 1;
3297
3298 /* Patch this insn out of the chain. */
3299 /* We don't do this all at once, because we
3300 must preserve all NOTEs. */
3301 if (prev)
3302 NEXT_INSN (prev) = next;
3303
3304 if (next)
3305 PREV_INSN (next) = prev;
3306 }
3307
3308 if (insn == to)
3309 break;
3310 insn = next;
3311 }
3312
3313 /* Note that if TO is an unconditional jump
3314 we *do not* delete the BARRIER that follows,
3315 since the peephole that replaces this sequence
3316 is also an unconditional jump in that case. */
3317 }
3318 \f
3319 /* Invert the condition of the jump JUMP, and make it jump
3320 to label NLABEL instead of where it jumps now. */
3321
3322 int
3323 invert_jump (jump, nlabel)
3324 rtx jump, nlabel;
3325 {
3326 register rtx olabel = JUMP_LABEL (jump);
3327
3328 /* We have to either invert the condition and change the label or
3329 do neither. Either operation could fail. We first try to invert
3330 the jump. If that succeeds, we try changing the label. If that fails,
3331 we invert the jump back to what it was. */
3332
3333 if (! invert_exp (PATTERN (jump), jump))
3334 return 0;
3335
3336 if (redirect_jump (jump, nlabel))
3337 return 1;
3338
3339 if (! invert_exp (PATTERN (jump), jump))
3340 /* This should just be putting it back the way it was. */
3341 abort ();
3342
3343 return 0;
3344 }
3345
3346 /* Invert the jump condition of rtx X contained in jump insn, INSN.
3347
3348 Return 1 if we can do so, 0 if we cannot find a way to do so that
3349 matches a pattern. */
3350
3351 int
3352 invert_exp (x, insn)
3353 rtx x;
3354 rtx insn;
3355 {
3356 register RTX_CODE code;
3357 register int i;
3358 register char *fmt;
3359
3360 code = GET_CODE (x);
3361
3362 if (code == IF_THEN_ELSE)
3363 {
3364 register rtx comp = XEXP (x, 0);
3365 register rtx tem;
3366
3367 /* We can do this in two ways: The preferable way, which can only
3368 be done if this is not an integer comparison, is to reverse
3369 the comparison code. Otherwise, swap the THEN-part and ELSE-part
3370 of the IF_THEN_ELSE. If we can't do either, fail. */
3371
3372 if (can_reverse_comparison_p (comp, insn)
3373 && validate_change (insn, &XEXP (x, 0),
3374 gen_rtx (reverse_condition (GET_CODE (comp)),
3375 GET_MODE (comp), XEXP (comp, 0),
3376 XEXP (comp, 1)), 0))
3377 return 1;
3378
3379 tem = XEXP (x, 1);
3380 validate_change (insn, &XEXP (x, 1), XEXP (x, 2), 1);
3381 validate_change (insn, &XEXP (x, 2), tem, 1);
3382 return apply_change_group ();
3383 }
3384
3385 fmt = GET_RTX_FORMAT (code);
3386 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
3387 {
3388 if (fmt[i] == 'e')
3389 if (! invert_exp (XEXP (x, i), insn))
3390 return 0;
3391 if (fmt[i] == 'E')
3392 {
3393 register int j;
3394 for (j = 0; j < XVECLEN (x, i); j++)
3395 if (!invert_exp (XVECEXP (x, i, j), insn))
3396 return 0;
3397 }
3398 }
3399
3400 return 1;
3401 }
3402 \f
3403 /* Make jump JUMP jump to label NLABEL instead of where it jumps now.
3404 If the old jump target label is unused as a result,
3405 it and the code following it may be deleted.
3406
3407 If NLABEL is zero, we are to turn the jump into a (possibly conditional)
3408 RETURN insn.
3409
3410 The return value will be 1 if the change was made, 0 if it wasn't (this
3411 can only occur for NLABEL == 0). */
3412
3413 int
3414 redirect_jump (jump, nlabel)
3415 rtx jump, nlabel;
3416 {
3417 register rtx olabel = JUMP_LABEL (jump);
3418
3419 if (nlabel == olabel)
3420 return 1;
3421
3422 if (! redirect_exp (&PATTERN (jump), olabel, nlabel, jump))
3423 return 0;
3424
3425 /* If this is an unconditional branch, delete it from the jump_chain of
3426 OLABEL and add it to the jump_chain of NLABEL (assuming both labels
3427 have UID's in range and JUMP_CHAIN is valid). */
3428 if (jump_chain && (simplejump_p (jump)
3429 || GET_CODE (PATTERN (jump)) == RETURN))
3430 {
3431 int label_index = nlabel ? INSN_UID (nlabel) : 0;
3432
3433 delete_from_jump_chain (jump);
3434 if (label_index < max_jump_chain
3435 && INSN_UID (jump) < max_jump_chain)
3436 {
3437 jump_chain[INSN_UID (jump)] = jump_chain[label_index];
3438 jump_chain[label_index] = jump;
3439 }
3440 }
3441
3442 JUMP_LABEL (jump) = nlabel;
3443 if (nlabel)
3444 ++LABEL_NUSES (nlabel);
3445
3446 if (olabel && --LABEL_NUSES (olabel) == 0)
3447 delete_insn (olabel);
3448
3449 return 1;
3450 }
3451
3452 /* Delete the instruction JUMP from any jump chain it might be on. */
3453
3454 static void
3455 delete_from_jump_chain (jump)
3456 rtx jump;
3457 {
3458 int index;
3459 rtx olabel = JUMP_LABEL (jump);
3460
3461 /* Handle unconditional jumps. */
3462 if (jump_chain && olabel != 0
3463 && INSN_UID (olabel) < max_jump_chain
3464 && simplejump_p (jump))
3465 index = INSN_UID (olabel);
3466 /* Handle return insns. */
3467 else if (jump_chain && GET_CODE (PATTERN (jump)) == RETURN)
3468 index = 0;
3469 else return;
3470
3471 if (jump_chain[index] == jump)
3472 jump_chain[index] = jump_chain[INSN_UID (jump)];
3473 else
3474 {
3475 rtx insn;
3476
3477 for (insn = jump_chain[index];
3478 insn != 0;
3479 insn = jump_chain[INSN_UID (insn)])
3480 if (jump_chain[INSN_UID (insn)] == jump)
3481 {
3482 jump_chain[INSN_UID (insn)] = jump_chain[INSN_UID (jump)];
3483 break;
3484 }
3485 }
3486 }
3487
3488 /* If NLABEL is nonzero, throughout the rtx at LOC,
3489 alter (LABEL_REF OLABEL) to (LABEL_REF NLABEL). If OLABEL is
3490 zero, alter (RETURN) to (LABEL_REF NLABEL).
3491
3492 If NLABEL is zero, alter (LABEL_REF OLABEL) to (RETURN) and check
3493 validity with validate_change. Convert (set (pc) (label_ref olabel))
3494 to (return).
3495
3496 Return 0 if we found a change we would like to make but it is invalid.
3497 Otherwise, return 1. */
3498
3499 int
3500 redirect_exp (loc, olabel, nlabel, insn)
3501 rtx *loc;
3502 rtx olabel, nlabel;
3503 rtx insn;
3504 {
3505 register rtx x = *loc;
3506 register RTX_CODE code = GET_CODE (x);
3507 register int i;
3508 register char *fmt;
3509
3510 if (code == LABEL_REF)
3511 {
3512 if (XEXP (x, 0) == olabel)
3513 {
3514 if (nlabel)
3515 XEXP (x, 0) = nlabel;
3516 else
3517 return validate_change (insn, loc, gen_rtx (RETURN, VOIDmode), 0);
3518 return 1;
3519 }
3520 }
3521 else if (code == RETURN && olabel == 0)
3522 {
3523 x = gen_rtx (LABEL_REF, VOIDmode, nlabel);
3524 if (loc == &PATTERN (insn))
3525 x = gen_rtx (SET, VOIDmode, pc_rtx, x);
3526 return validate_change (insn, loc, x, 0);
3527 }
3528
3529 if (code == SET && nlabel == 0 && SET_DEST (x) == pc_rtx
3530 && GET_CODE (SET_SRC (x)) == LABEL_REF
3531 && XEXP (SET_SRC (x), 0) == olabel)
3532 return validate_change (insn, loc, gen_rtx (RETURN, VOIDmode), 0);
3533
3534 fmt = GET_RTX_FORMAT (code);
3535 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
3536 {
3537 if (fmt[i] == 'e')
3538 if (! redirect_exp (&XEXP (x, i), olabel, nlabel, insn))
3539 return 0;
3540 if (fmt[i] == 'E')
3541 {
3542 register int j;
3543 for (j = 0; j < XVECLEN (x, i); j++)
3544 if (! redirect_exp (&XVECEXP (x, i, j), olabel, nlabel, insn))
3545 return 0;
3546 }
3547 }
3548
3549 return 1;
3550 }
3551 \f
3552 /* Make jump JUMP jump to label NLABEL, assuming it used to be a tablejump.
3553
3554 If the old jump target label (before the dispatch table) becomes unused,
3555 it and the dispatch table may be deleted. In that case, find the insn
3556 before the jump references that label and delete it and logical successors
3557 too. */
3558
3559 void
3560 redirect_tablejump (jump, nlabel)
3561 rtx jump, nlabel;
3562 {
3563 register rtx olabel = JUMP_LABEL (jump);
3564
3565 /* Add this jump to the jump_chain of NLABEL. */
3566 if (jump_chain && INSN_UID (nlabel) < max_jump_chain
3567 && INSN_UID (jump) < max_jump_chain)
3568 {
3569 jump_chain[INSN_UID (jump)] = jump_chain[INSN_UID (nlabel)];
3570 jump_chain[INSN_UID (nlabel)] = jump;
3571 }
3572
3573 PATTERN (jump) = gen_jump (nlabel);
3574 JUMP_LABEL (jump) = nlabel;
3575 ++LABEL_NUSES (nlabel);
3576 INSN_CODE (jump) = -1;
3577
3578 if (--LABEL_NUSES (olabel) == 0)
3579 {
3580 delete_labelref_insn (jump, olabel, 0);
3581 delete_insn (olabel);
3582 }
3583 }
3584
3585 /* Find the insn referencing LABEL that is a logical predecessor of INSN.
3586 If we found one, delete it and then delete this insn if DELETE_THIS is
3587 non-zero. Return non-zero if INSN or a predecessor references LABEL. */
3588
3589 static int
3590 delete_labelref_insn (insn, label, delete_this)
3591 rtx insn, label;
3592 int delete_this;
3593 {
3594 int deleted = 0;
3595 rtx link;
3596
3597 if (GET_CODE (insn) != NOTE
3598 && reg_mentioned_p (label, PATTERN (insn)))
3599 {
3600 if (delete_this)
3601 {
3602 delete_insn (insn);
3603 deleted = 1;
3604 }
3605 else
3606 return 1;
3607 }
3608
3609 for (link = LOG_LINKS (insn); link; link = XEXP (link, 1))
3610 if (delete_labelref_insn (XEXP (link, 0), label, 1))
3611 {
3612 if (delete_this)
3613 {
3614 delete_insn (insn);
3615 deleted = 1;
3616 }
3617 else
3618 return 1;
3619 }
3620
3621 return deleted;
3622 }
3623 \f
3624 /* Like rtx_equal_p except that it considers two REGs as equal
3625 if they renumber to the same value. */
3626
3627 int
3628 rtx_renumbered_equal_p (x, y)
3629 rtx x, y;
3630 {
3631 register int i;
3632 register RTX_CODE code = GET_CODE (x);
3633 register char *fmt;
3634
3635 if (x == y)
3636 return 1;
3637 if ((code == REG || (code == SUBREG && GET_CODE (SUBREG_REG (x)) == REG))
3638 && (GET_CODE (y) == REG || (GET_CODE (y) == SUBREG
3639 && GET_CODE (SUBREG_REG (y)) == REG)))
3640 {
3641 register int j;
3642
3643 if (GET_MODE (x) != GET_MODE (y))
3644 return 0;
3645
3646 /* If we haven't done any renumbering, don't
3647 make any assumptions. */
3648 if (reg_renumber == 0)
3649 return rtx_equal_p (x, y);
3650
3651 if (code == SUBREG)
3652 {
3653 i = REGNO (SUBREG_REG (x));
3654 if (reg_renumber[i] >= 0)
3655 i = reg_renumber[i];
3656 i += SUBREG_WORD (x);
3657 }
3658 else
3659 {
3660 i = REGNO (x);
3661 if (reg_renumber[i] >= 0)
3662 i = reg_renumber[i];
3663 }
3664 if (GET_CODE (y) == SUBREG)
3665 {
3666 j = REGNO (SUBREG_REG (y));
3667 if (reg_renumber[j] >= 0)
3668 j = reg_renumber[j];
3669 j += SUBREG_WORD (y);
3670 }
3671 else
3672 {
3673 j = REGNO (y);
3674 if (reg_renumber[j] >= 0)
3675 j = reg_renumber[j];
3676 }
3677 return i == j;
3678 }
3679 /* Now we have disposed of all the cases
3680 in which different rtx codes can match. */
3681 if (code != GET_CODE (y))
3682 return 0;
3683 switch (code)
3684 {
3685 case PC:
3686 case CC0:
3687 case ADDR_VEC:
3688 case ADDR_DIFF_VEC:
3689 return 0;
3690
3691 case CONST_INT:
3692 return XINT (x, 0) == XINT (y, 0);
3693
3694 case LABEL_REF:
3695 /* We can't assume nonlocal labels have their following insns yet. */
3696 if (LABEL_REF_NONLOCAL_P (x) || LABEL_REF_NONLOCAL_P (y))
3697 return XEXP (x, 0) == XEXP (y, 0);
3698 /* Two label-refs are equivalent if they point at labels
3699 in the same position in the instruction stream. */
3700 return (next_real_insn (XEXP (x, 0))
3701 == next_real_insn (XEXP (y, 0)));
3702
3703 case SYMBOL_REF:
3704 return XSTR (x, 0) == XSTR (y, 0);
3705 }
3706
3707 /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent. */
3708
3709 if (GET_MODE (x) != GET_MODE (y))
3710 return 0;
3711
3712 /* Compare the elements. If any pair of corresponding elements
3713 fail to match, return 0 for the whole things. */
3714
3715 fmt = GET_RTX_FORMAT (code);
3716 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
3717 {
3718 register int j;
3719 switch (fmt[i])
3720 {
3721 case 'w':
3722 if (XWINT (x, i) != XWINT (y, i))
3723 return 0;
3724 break;
3725
3726 case 'i':
3727 if (XINT (x, i) != XINT (y, i))
3728 return 0;
3729 break;
3730
3731 case 's':
3732 if (strcmp (XSTR (x, i), XSTR (y, i)))
3733 return 0;
3734 break;
3735
3736 case 'e':
3737 if (! rtx_renumbered_equal_p (XEXP (x, i), XEXP (y, i)))
3738 return 0;
3739 break;
3740
3741 case 'u':
3742 if (XEXP (x, i) != XEXP (y, i))
3743 return 0;
3744 /* fall through. */
3745 case '0':
3746 break;
3747
3748 case 'E':
3749 if (XVECLEN (x, i) != XVECLEN (y, i))
3750 return 0;
3751 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
3752 if (!rtx_renumbered_equal_p (XVECEXP (x, i, j), XVECEXP (y, i, j)))
3753 return 0;
3754 break;
3755
3756 default:
3757 abort ();
3758 }
3759 }
3760 return 1;
3761 }
3762 \f
3763 /* If X is a hard register or equivalent to one or a subregister of one,
3764 return the hard register number. If X is a pseudo register that was not
3765 assigned a hard register, return the pseudo register number. Otherwise,
3766 return -1. Any rtx is valid for X. */
3767
3768 int
3769 true_regnum (x)
3770 rtx x;
3771 {
3772 if (GET_CODE (x) == REG)
3773 {
3774 if (REGNO (x) >= FIRST_PSEUDO_REGISTER && reg_renumber[REGNO (x)] >= 0)
3775 return reg_renumber[REGNO (x)];
3776 return REGNO (x);
3777 }
3778 if (GET_CODE (x) == SUBREG)
3779 {
3780 int base = true_regnum (SUBREG_REG (x));
3781 if (base >= 0 && base < FIRST_PSEUDO_REGISTER)
3782 return SUBREG_WORD (x) + base;
3783 }
3784 return -1;
3785 }
3786 \f
3787 /* Optimize code of the form:
3788
3789 for (x = a[i]; x; ...)
3790 ...
3791 for (x = a[i]; x; ...)
3792 ...
3793 foo:
3794
3795 Loop optimize will change the above code into
3796
3797 if (x = a[i])
3798 for (;;)
3799 { ...; if (! (x = ...)) break; }
3800 if (x = a[i])
3801 for (;;)
3802 { ...; if (! (x = ...)) break; }
3803 foo:
3804
3805 In general, if the first test fails, the program can branch
3806 directly to `foo' and skip the second try which is doomed to fail.
3807 We run this after loop optimization and before flow analysis. */
3808
3809 /* When comparing the insn patterns, we track the fact that different
3810 pseudo-register numbers may have been used in each computation.
3811 The following array stores an equivalence -- same_regs[I] == J means
3812 that pseudo register I was used in the first set of tests in a context
3813 where J was used in the second set. We also count the number of such
3814 pending equivalences. If nonzero, the expressions really aren't the
3815 same. */
3816
3817 static short *same_regs;
3818
3819 static int num_same_regs;
3820
3821 /* Track any registers modified between the target of the first jump and
3822 the second jump. They never compare equal. */
3823
3824 static char *modified_regs;
3825
3826 /* Record if memory was modified. */
3827
3828 static int modified_mem;
3829
3830 /* Called via note_stores on each insn between the target of the first
3831 branch and the second branch. It marks any changed registers. */
3832
3833 static void
3834 mark_modified_reg (dest, x)
3835 rtx dest;
3836 rtx x;
3837 {
3838 int regno, i;
3839
3840 if (GET_CODE (dest) == SUBREG)
3841 dest = SUBREG_REG (dest);
3842
3843 if (GET_CODE (dest) == MEM)
3844 modified_mem = 1;
3845
3846 if (GET_CODE (dest) != REG)
3847 return;
3848
3849 regno = REGNO (dest);
3850 if (regno >= FIRST_PSEUDO_REGISTER)
3851 modified_regs[regno] = 1;
3852 else
3853 for (i = 0; i < HARD_REGNO_NREGS (regno, GET_MODE (dest)); i++)
3854 modified_regs[regno + i] = 1;
3855 }
3856
3857 /* F is the first insn in the chain of insns. */
3858
3859 void
3860 thread_jumps (f, max_reg, verbose)
3861 rtx f;
3862 int max_reg;
3863 int verbose;
3864 {
3865 /* Basic algorithm is to find a conditional branch,
3866 the label it may branch to, and the branch after
3867 that label. If the two branches test the same condition,
3868 walk back from both branch paths until the insn patterns
3869 differ, or code labels are hit. If we make it back to
3870 the target of the first branch, then we know that the first branch
3871 will either always succeed or always fail depending on the relative
3872 senses of the two branches. So adjust the first branch accordingly
3873 in this case. */
3874
3875 rtx label, b1, b2, t1, t2;
3876 enum rtx_code code1, code2;
3877 rtx b1op0, b1op1, b2op0, b2op1;
3878 int changed = 1;
3879 int i;
3880 short *all_reset;
3881
3882 /* Allocate register tables and quick-reset table. */
3883 modified_regs = (char *) alloca (max_reg * sizeof (char));
3884 same_regs = (short *) alloca (max_reg * sizeof (short));
3885 all_reset = (short *) alloca (max_reg * sizeof (short));
3886 for (i = 0; i < max_reg; i++)
3887 all_reset[i] = -1;
3888
3889 while (changed)
3890 {
3891 changed = 0;
3892
3893 for (b1 = f; b1; b1 = NEXT_INSN (b1))
3894 {
3895 /* Get to a candidate branch insn. */
3896 if (GET_CODE (b1) != JUMP_INSN
3897 || ! condjump_p (b1) || simplejump_p (b1)
3898 || JUMP_LABEL (b1) == 0)
3899 continue;
3900
3901 bzero (modified_regs, max_reg * sizeof (char));
3902 modified_mem = 0;
3903
3904 bcopy (all_reset, same_regs, max_reg * sizeof (short));
3905 num_same_regs = 0;
3906
3907 label = JUMP_LABEL (b1);
3908
3909 /* Look for a branch after the target. Record any registers and
3910 memory modified between the target and the branch. Stop when we
3911 get to a label since we can't know what was changed there. */
3912 for (b2 = NEXT_INSN (label); b2; b2 = NEXT_INSN (b2))
3913 {
3914 if (GET_CODE (b2) == CODE_LABEL)
3915 break;
3916
3917 else if (GET_CODE (b2) == JUMP_INSN)
3918 {
3919 /* If this is an unconditional jump and is the only use of
3920 its target label, we can follow it. */
3921 if (simplejump_p (b2)
3922 && JUMP_LABEL (b2) != 0
3923 && LABEL_NUSES (JUMP_LABEL (b2)) == 1)
3924 {
3925 b2 = JUMP_LABEL (b2);
3926 continue;
3927 }
3928 else
3929 break;
3930 }
3931
3932 if (GET_CODE (b2) != CALL_INSN && GET_CODE (b2) != INSN)
3933 continue;
3934
3935 if (GET_CODE (b2) == CALL_INSN)
3936 {
3937 modified_mem = 1;
3938 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
3939 if (call_used_regs[i] && ! fixed_regs[i]
3940 && i != STACK_POINTER_REGNUM
3941 && i != FRAME_POINTER_REGNUM
3942 && i != ARG_POINTER_REGNUM)
3943 modified_regs[i] = 1;
3944 }
3945
3946 note_stores (PATTERN (b2), mark_modified_reg);
3947 }
3948
3949 /* Check the next candidate branch insn from the label
3950 of the first. */
3951 if (b2 == 0
3952 || GET_CODE (b2) != JUMP_INSN
3953 || b2 == b1
3954 || ! condjump_p (b2)
3955 || simplejump_p (b2))
3956 continue;
3957
3958 /* Get the comparison codes and operands, reversing the
3959 codes if appropriate. If we don't have comparison codes,
3960 we can't do anything. */
3961 b1op0 = XEXP (XEXP (SET_SRC (PATTERN (b1)), 0), 0);
3962 b1op1 = XEXP (XEXP (SET_SRC (PATTERN (b1)), 0), 1);
3963 code1 = GET_CODE (XEXP (SET_SRC (PATTERN (b1)), 0));
3964 if (XEXP (SET_SRC (PATTERN (b1)), 1) == pc_rtx)
3965 code1 = reverse_condition (code1);
3966
3967 b2op0 = XEXP (XEXP (SET_SRC (PATTERN (b2)), 0), 0);
3968 b2op1 = XEXP (XEXP (SET_SRC (PATTERN (b2)), 0), 1);
3969 code2 = GET_CODE (XEXP (SET_SRC (PATTERN (b2)), 0));
3970 if (XEXP (SET_SRC (PATTERN (b2)), 1) == pc_rtx)
3971 code2 = reverse_condition (code2);
3972
3973 /* If they test the same things and knowing that B1 branches
3974 tells us whether or not B2 branches, check if we
3975 can thread the branch. */
3976 if (rtx_equal_for_thread_p (b1op0, b2op0, b2)
3977 && rtx_equal_for_thread_p (b1op1, b2op1, b2)
3978 && (comparison_dominates_p (code1, code2)
3979 || comparison_dominates_p (code1, reverse_condition (code2))))
3980 {
3981 t1 = prev_nonnote_insn (b1);
3982 t2 = prev_nonnote_insn (b2);
3983
3984 while (t1 != 0 && t2 != 0)
3985 {
3986 if (t1 == 0 || t2 == 0)
3987 break;
3988
3989 if (t2 == label)
3990 {
3991 /* We have reached the target of the first branch.
3992 If there are no pending register equivalents,
3993 we know that this branch will either always
3994 succeed (if the senses of the two branches are
3995 the same) or always fail (if not). */
3996 rtx new_label;
3997
3998 if (num_same_regs != 0)
3999 break;
4000
4001 if (comparison_dominates_p (code1, code2))
4002 new_label = JUMP_LABEL (b2);
4003 else
4004 new_label = get_label_after (b2);
4005
4006 if (JUMP_LABEL (b1) != new_label
4007 && redirect_jump (b1, new_label))
4008 changed = 1;
4009 break;
4010 }
4011
4012 /* If either of these is not a normal insn (it might be
4013 a JUMP_INSN, CALL_INSN, or CODE_LABEL) we fail. (NOTEs
4014 have already been skipped above.) Similarly, fail
4015 if the insns are different. */
4016 if (GET_CODE (t1) != INSN || GET_CODE (t2) != INSN
4017 || recog_memoized (t1) != recog_memoized (t2)
4018 || ! rtx_equal_for_thread_p (PATTERN (t1),
4019 PATTERN (t2), t2))
4020 break;
4021
4022 t1 = prev_nonnote_insn (t1);
4023 t2 = prev_nonnote_insn (t2);
4024 }
4025 }
4026 }
4027 }
4028 }
4029 \f
4030 /* This is like RTX_EQUAL_P except that it knows about our handling of
4031 possibly equivalent registers and knows to consider volatile and
4032 modified objects as not equal.
4033
4034 YINSN is the insn containing Y. */
4035
4036 int
4037 rtx_equal_for_thread_p (x, y, yinsn)
4038 rtx x, y;
4039 rtx yinsn;
4040 {
4041 register int i;
4042 register int j;
4043 register enum rtx_code code;
4044 register char *fmt;
4045
4046 code = GET_CODE (x);
4047 /* Rtx's of different codes cannot be equal. */
4048 if (code != GET_CODE (y))
4049 return 0;
4050
4051 /* (MULT:SI x y) and (MULT:HI x y) are NOT equivalent.
4052 (REG:SI x) and (REG:HI x) are NOT equivalent. */
4053
4054 if (GET_MODE (x) != GET_MODE (y))
4055 return 0;
4056
4057 /* Handle special-cases first. */
4058 switch (code)
4059 {
4060 case REG:
4061 if (REGNO (x) == REGNO (y) && ! modified_regs[REGNO (x)])
4062 return 1;
4063
4064 /* If neither is user variable or hard register, check for possible
4065 equivalence. */
4066 if (REG_USERVAR_P (x) || REG_USERVAR_P (y)
4067 || REGNO (x) < FIRST_PSEUDO_REGISTER
4068 || REGNO (y) < FIRST_PSEUDO_REGISTER)
4069 return 0;
4070
4071 if (same_regs[REGNO (x)] == -1)
4072 {
4073 same_regs[REGNO (x)] = REGNO (y);
4074 num_same_regs++;
4075
4076 /* If this is the first time we are seeing a register on the `Y'
4077 side, see if it is the last use. If not, we can't thread the
4078 jump, so mark it as not equivalent. */
4079 if (regno_last_uid[REGNO (y)] != INSN_UID (yinsn))
4080 return 0;
4081
4082 return 1;
4083 }
4084 else
4085 return (same_regs[REGNO (x)] == REGNO (y));
4086
4087 break;
4088
4089 case MEM:
4090 /* If memory modified or either volatile, not equivalent.
4091 Else, check address. */
4092 if (modified_mem || MEM_VOLATILE_P (x) || MEM_VOLATILE_P (y))
4093 return 0;
4094
4095 return rtx_equal_for_thread_p (XEXP (x, 0), XEXP (y, 0), yinsn);
4096
4097 case ASM_INPUT:
4098 if (MEM_VOLATILE_P (x) || MEM_VOLATILE_P (y))
4099 return 0;
4100
4101 break;
4102
4103 case SET:
4104 /* Cancel a pending `same_regs' if setting equivalenced registers.
4105 Then process source. */
4106 if (GET_CODE (SET_DEST (x)) == REG
4107 && GET_CODE (SET_DEST (y)) == REG)
4108 {
4109 if (same_regs[REGNO (SET_DEST (x))] == REGNO (SET_DEST (y)))
4110 {
4111 same_regs[REGNO (SET_DEST (x))] = -1;
4112 num_same_regs--;
4113 }
4114 else if (REGNO (SET_DEST (x)) != REGNO (SET_DEST (y)))
4115 return 0;
4116 }
4117 else
4118 if (rtx_equal_for_thread_p (SET_DEST (x), SET_DEST (y), yinsn) == 0)
4119 return 0;
4120
4121 return rtx_equal_for_thread_p (SET_SRC (x), SET_SRC (y), yinsn);
4122
4123 case LABEL_REF:
4124 return XEXP (x, 0) == XEXP (y, 0);
4125
4126 case SYMBOL_REF:
4127 return XSTR (x, 0) == XSTR (y, 0);
4128 }
4129
4130 if (x == y)
4131 return 1;
4132
4133 fmt = GET_RTX_FORMAT (code);
4134 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
4135 {
4136 switch (fmt[i])
4137 {
4138 case 'w':
4139 if (XWINT (x, i) != XWINT (y, i))
4140 return 0;
4141 break;
4142
4143 case 'n':
4144 case 'i':
4145 if (XINT (x, i) != XINT (y, i))
4146 return 0;
4147 break;
4148
4149 case 'V':
4150 case 'E':
4151 /* Two vectors must have the same length. */
4152 if (XVECLEN (x, i) != XVECLEN (y, i))
4153 return 0;
4154
4155 /* And the corresponding elements must match. */
4156 for (j = 0; j < XVECLEN (x, i); j++)
4157 if (rtx_equal_for_thread_p (XVECEXP (x, i, j),
4158 XVECEXP (y, i, j), yinsn) == 0)
4159 return 0;
4160 break;
4161
4162 case 'e':
4163 if (rtx_equal_for_thread_p (XEXP (x, i), XEXP (y, i), yinsn) == 0)
4164 return 0;
4165 break;
4166
4167 case 'S':
4168 case 's':
4169 if (strcmp (XSTR (x, i), XSTR (y, i)))
4170 return 0;
4171 break;
4172
4173 case 'u':
4174 /* These are just backpointers, so they don't matter. */
4175 break;
4176
4177 case '0':
4178 break;
4179
4180 /* It is believed that rtx's at this level will never
4181 contain anything but integers and other rtx's,
4182 except for within LABEL_REFs and SYMBOL_REFs. */
4183 default:
4184 abort ();
4185 }
4186 }
4187 return 1;
4188 }
This page took 0.238967 seconds and 6 git commands to generate.