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