OSDN Git Service

2012-10-08 Tobias Burnus <burnus@net-b.de>
[pf3gnuchains/gcc-fork.git] / gcc / sched-ebb.c
1 /* Instruction scheduling pass.
2    Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
3    2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4    Free Software Foundation, Inc.
5    Contributed by Michael Tiemann (tiemann@cygnus.com) Enhanced by,
6    and currently maintained by, Jim Wilson (wilson@cygnus.com)
7
8 This file is part of GCC.
9
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 3, or (at your option) any later
13 version.
14
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
18 for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3.  If not see
22 <http://www.gnu.org/licenses/>.  */
23 \f
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tm.h"
28 #include "diagnostic-core.h"
29 #include "rtl.h"
30 #include "tm_p.h"
31 #include "hard-reg-set.h"
32 #include "regs.h"
33 #include "function.h"
34 #include "flags.h"
35 #include "insn-config.h"
36 #include "insn-attr.h"
37 #include "except.h"
38 #include "recog.h"
39 #include "params.h"
40 #include "sched-int.h"
41 #include "target.h"
42
43 \f
44 #ifdef INSN_SCHEDULING
45
46 /* The number of insns to be scheduled in total.  */
47 static int rgn_n_insns;
48
49 /* The number of insns scheduled so far.  */
50 static int sched_rgn_n_insns;
51
52 /* Set of blocks, that already have their dependencies calculated.  */
53 static bitmap_head dont_calc_deps;
54
55 /* Last basic block in current ebb.  */
56 static basic_block last_bb;
57
58 /* Implementations of the sched_info functions for region scheduling.  */
59 static void init_ready_list (void);
60 static void begin_schedule_ready (rtx);
61 static int schedule_more_p (void);
62 static const char *ebb_print_insn (const_rtx, int);
63 static int rank (rtx, rtx);
64 static int ebb_contributes_to_priority (rtx, rtx);
65 static basic_block earliest_block_with_similiar_load (basic_block, rtx);
66 static void add_deps_for_risky_insns (rtx, rtx);
67 static void debug_ebb_dependencies (rtx, rtx);
68
69 static void ebb_add_remove_insn (rtx, int);
70 static void ebb_add_block (basic_block, basic_block);
71 static basic_block advance_target_bb (basic_block, rtx);
72 static void ebb_fix_recovery_cfg (int, int, int);
73
74 /* Allocate memory and store the state of the frontend.  Return the allocated
75    memory.  */
76 static void *
77 save_ebb_state (void)
78 {
79   int *p = XNEW (int);
80   *p = sched_rgn_n_insns;
81   return p;
82 }
83
84 /* Restore the state of the frontend from P_, then free it.  */
85 static void
86 restore_ebb_state (void *p_)
87 {
88   int *p = (int *)p_;
89   sched_rgn_n_insns = *p;
90   free (p_);
91 }
92
93 /* Return nonzero if there are more insns that should be scheduled.  */
94
95 static int
96 schedule_more_p (void)
97 {
98   return sched_rgn_n_insns < rgn_n_insns;
99 }
100
101 /* Print dependency information about ebb between HEAD and TAIL.  */
102 static void
103 debug_ebb_dependencies (rtx head, rtx tail)
104 {
105   fprintf (sched_dump,
106            ";;   --------------- forward dependences: ------------ \n");
107
108   fprintf (sched_dump, "\n;;   --- EBB Dependences --- from bb%d to bb%d \n",
109            BLOCK_NUM (head), BLOCK_NUM (tail));
110
111   debug_dependencies (head, tail);
112 }
113
114 /* Add all insns that are initially ready to the ready list READY.  Called
115    once before scheduling a set of insns.  */
116
117 static void
118 init_ready_list (void)
119 {
120   int n = 0;
121   rtx prev_head = current_sched_info->prev_head;
122   rtx next_tail = current_sched_info->next_tail;
123   rtx insn;
124
125   sched_rgn_n_insns = 0;
126
127   /* Print debugging information.  */
128   if (sched_verbose >= 5)
129     debug_ebb_dependencies (NEXT_INSN (prev_head), PREV_INSN (next_tail));
130
131   /* Initialize ready list with all 'ready' insns in target block.
132      Count number of insns in the target block being scheduled.  */
133   for (insn = NEXT_INSN (prev_head); insn != next_tail; insn = NEXT_INSN (insn))
134     {
135       try_ready (insn);
136       n++;
137     }
138
139   gcc_assert (n == rgn_n_insns);
140 }
141
142 /* INSN is being scheduled after LAST.  Update counters.  */
143 static void
144 begin_schedule_ready (rtx insn ATTRIBUTE_UNUSED)
145 {
146   sched_rgn_n_insns++;
147 }
148
149 /* INSN is being moved to its place in the schedule, after LAST.  */
150 static void
151 begin_move_insn (rtx insn, rtx last)
152 {
153   if (BLOCK_FOR_INSN (insn) == last_bb
154       /* INSN is a jump in the last block, ...  */
155       && control_flow_insn_p (insn)
156       /* that is going to be moved over some instructions.  */
157       && last != PREV_INSN (insn))
158     {
159       edge e;
160       basic_block bb;
161
162       /* An obscure special case, where we do have partially dead
163          instruction scheduled after last control flow instruction.
164          In this case we can create new basic block.  It is
165          always exactly one basic block last in the sequence.  */
166
167       e = find_fallthru_edge (last_bb->succs);
168
169       gcc_checking_assert (!e || !(e->flags & EDGE_COMPLEX));
170
171       gcc_checking_assert (BLOCK_FOR_INSN (insn) == last_bb
172                            && !IS_SPECULATION_CHECK_P (insn)
173                            && BB_HEAD (last_bb) != insn
174                            && BB_END (last_bb) == insn);
175
176       {
177         rtx x;
178
179         x = NEXT_INSN (insn);
180         if (e)
181           gcc_checking_assert (NOTE_P (x) || LABEL_P (x));
182         else
183           gcc_checking_assert (BARRIER_P (x));
184       }
185
186       if (e)
187         {
188           bb = split_edge (e);
189           gcc_assert (NOTE_INSN_BASIC_BLOCK_P (BB_END (bb)));
190         }
191       else
192         {
193           /* Create an empty unreachable block after the INSN.  */
194           rtx next = NEXT_INSN (insn);
195           if (next && BARRIER_P (next))
196             next = NEXT_INSN (next);
197           bb = create_basic_block (next, NULL_RTX, last_bb);
198         }
199
200       /* split_edge () creates BB before E->DEST.  Keep in mind, that
201          this operation extends scheduling region till the end of BB.
202          Hence, we need to shift NEXT_TAIL, so haifa-sched.c won't go out
203          of the scheduling region.  */
204       current_sched_info->next_tail = NEXT_INSN (BB_END (bb));
205       gcc_assert (current_sched_info->next_tail);
206
207       /* Append new basic block to the end of the ebb.  */
208       sched_init_only_bb (bb, last_bb);
209       gcc_assert (last_bb == bb);
210     }
211 }
212
213 /* Return a string that contains the insn uid and optionally anything else
214    necessary to identify this insn in an output.  It's valid to use a
215    static buffer for this.  The ALIGNED parameter should cause the string
216    to be formatted so that multiple output lines will line up nicely.  */
217
218 static const char *
219 ebb_print_insn (const_rtx insn, int aligned ATTRIBUTE_UNUSED)
220 {
221   static char tmp[80];
222
223   /* '+' before insn means it is a new cycle start.  */
224   if (GET_MODE (insn) == TImode)
225     sprintf (tmp, "+ %4d", INSN_UID (insn));
226   else
227     sprintf (tmp, "  %4d", INSN_UID (insn));
228
229   return tmp;
230 }
231
232 /* Compare priority of two insns.  Return a positive number if the second
233    insn is to be preferred for scheduling, and a negative one if the first
234    is to be preferred.  Zero if they are equally good.  */
235
236 static int
237 rank (rtx insn1, rtx insn2)
238 {
239   basic_block bb1 = BLOCK_FOR_INSN (insn1);
240   basic_block bb2 = BLOCK_FOR_INSN (insn2);
241
242   if (bb1->count > bb2->count
243       || bb1->frequency > bb2->frequency)
244     return -1;
245   if (bb1->count < bb2->count
246       || bb1->frequency < bb2->frequency)
247     return 1;
248   return 0;
249 }
250
251 /* NEXT is an instruction that depends on INSN (a backward dependence);
252    return nonzero if we should include this dependence in priority
253    calculations.  */
254
255 static int
256 ebb_contributes_to_priority (rtx next ATTRIBUTE_UNUSED,
257                              rtx insn ATTRIBUTE_UNUSED)
258 {
259   return 1;
260 }
261
262  /* INSN is a JUMP_INSN.  Store the set of registers that
263     must be considered as used by this jump in USED.  */
264
265 void
266 ebb_compute_jump_reg_dependencies (rtx insn, regset used)
267 {
268   basic_block b = BLOCK_FOR_INSN (insn);
269   edge e;
270   edge_iterator ei;
271
272   FOR_EACH_EDGE (e, ei, b->succs)
273     if ((e->flags & EDGE_FALLTHRU) == 0)
274       bitmap_ior_into (used, df_get_live_in (e->dest));
275 }
276
277 /* Used in schedule_insns to initialize current_sched_info for scheduling
278    regions (or single basic blocks).  */
279
280 static struct common_sched_info_def ebb_common_sched_info;
281
282 static struct sched_deps_info_def ebb_sched_deps_info =
283   {
284     ebb_compute_jump_reg_dependencies,
285     NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
286     NULL,
287     1, 0, 0
288   };
289
290 static struct haifa_sched_info ebb_sched_info =
291 {
292   init_ready_list,
293   NULL,
294   schedule_more_p,
295   NULL,
296   rank,
297   ebb_print_insn,
298   ebb_contributes_to_priority,
299   NULL, /* insn_finishes_block_p */
300
301   NULL, NULL,
302   NULL, NULL,
303   1, 0,
304
305   ebb_add_remove_insn,
306   begin_schedule_ready,
307   begin_move_insn,
308   advance_target_bb,
309
310   save_ebb_state,
311   restore_ebb_state,
312
313   SCHED_EBB
314   /* We can create new blocks in begin_schedule_ready ().  */
315   | NEW_BBS
316 };
317 \f
318 /* Returns the earliest block in EBB currently being processed where a
319    "similar load" 'insn2' is found, and hence LOAD_INSN can move
320    speculatively into the found block.  All the following must hold:
321
322    (1) both loads have 1 base register (PFREE_CANDIDATEs).
323    (2) load_insn and load2 have a def-use dependence upon
324    the same insn 'insn1'.
325
326    From all these we can conclude that the two loads access memory
327    addresses that differ at most by a constant, and hence if moving
328    load_insn would cause an exception, it would have been caused by
329    load2 anyhow.
330
331    The function uses list (given by LAST_BLOCK) of already processed
332    blocks in EBB.  The list is formed in `add_deps_for_risky_insns'.  */
333
334 static basic_block
335 earliest_block_with_similiar_load (basic_block last_block, rtx load_insn)
336 {
337   sd_iterator_def back_sd_it;
338   dep_t back_dep;
339   basic_block bb, earliest_block = NULL;
340
341   FOR_EACH_DEP (load_insn, SD_LIST_BACK, back_sd_it, back_dep)
342     {
343       rtx insn1 = DEP_PRO (back_dep);
344
345       if (DEP_TYPE (back_dep) == REG_DEP_TRUE)
346         /* Found a DEF-USE dependence (insn1, load_insn).  */
347         {
348           sd_iterator_def fore_sd_it;
349           dep_t fore_dep;
350
351           FOR_EACH_DEP (insn1, SD_LIST_FORW, fore_sd_it, fore_dep)
352             {
353               rtx insn2 = DEP_CON (fore_dep);
354               basic_block insn2_block = BLOCK_FOR_INSN (insn2);
355
356               if (DEP_TYPE (fore_dep) == REG_DEP_TRUE)
357                 {
358                   if (earliest_block != NULL
359                       && earliest_block->index < insn2_block->index)
360                     continue;
361
362                   /* Found a DEF-USE dependence (insn1, insn2).  */
363                   if (haifa_classify_insn (insn2) != PFREE_CANDIDATE)
364                     /* insn2 not guaranteed to be a 1 base reg load.  */
365                     continue;
366
367                   for (bb = last_block; bb; bb = (basic_block) bb->aux)
368                     if (insn2_block == bb)
369                       break;
370
371                   if (!bb)
372                     /* insn2 is the similar load.  */
373                     earliest_block = insn2_block;
374                 }
375             }
376         }
377     }
378
379   return earliest_block;
380 }
381
382 /* The following function adds dependencies between jumps and risky
383    insns in given ebb.  */
384
385 static void
386 add_deps_for_risky_insns (rtx head, rtx tail)
387 {
388   rtx insn, prev;
389   int classification;
390   rtx last_jump = NULL_RTX;
391   rtx next_tail = NEXT_INSN (tail);
392   basic_block last_block = NULL, bb;
393
394   for (insn = head; insn != next_tail; insn = NEXT_INSN (insn))
395     {
396       add_delay_dependencies (insn);
397       if (control_flow_insn_p (insn))
398         {
399           bb = BLOCK_FOR_INSN (insn);
400           bb->aux = last_block;
401           last_block = bb;
402           /* Ensure blocks stay in the same order.  */
403           if (last_jump)
404             add_dependence (insn, last_jump, REG_DEP_ANTI);
405           last_jump = insn;
406         }
407       else if (INSN_P (insn) && last_jump != NULL_RTX)
408         {
409           classification = haifa_classify_insn (insn);
410           prev = last_jump;
411
412           switch (classification)
413             {
414             case PFREE_CANDIDATE:
415               if (flag_schedule_speculative_load)
416                 {
417                   bb = earliest_block_with_similiar_load (last_block, insn);
418                   if (bb)
419                     {
420                       bb = (basic_block) bb->aux;
421                       if (!bb)
422                         break;
423                       prev = BB_END (bb);
424                     }
425                 }
426               /* Fall through.  */
427             case TRAP_RISKY:
428             case IRISKY:
429             case PRISKY_CANDIDATE:
430               /* ??? We could implement better checking PRISKY_CANDIDATEs
431                  analogous to sched-rgn.c.  */
432               /* We can not change the mode of the backward
433                  dependency because REG_DEP_ANTI has the lowest
434                  rank.  */
435               if (! sched_insns_conditions_mutex_p (insn, prev))
436                 {
437                   if ((current_sched_info->flags & DO_SPECULATION)
438                       && (spec_info->mask & BEGIN_CONTROL))
439                     {
440                       dep_def _dep, *dep = &_dep;
441
442                       init_dep (dep, prev, insn, REG_DEP_ANTI);
443
444                       if (current_sched_info->flags & USE_DEPS_LIST)
445                         {
446                           DEP_STATUS (dep) = set_dep_weak (DEP_ANTI, BEGIN_CONTROL,
447                                                            MAX_DEP_WEAK);
448
449                         }
450                       sd_add_or_update_dep (dep, false);
451                     }
452                   else
453                     add_dependence (insn, prev, REG_DEP_CONTROL);
454                 }
455
456               break;
457
458             default:
459               break;
460             }
461         }
462     }
463   /* Maintain the invariant that bb->aux is clear after use.  */
464   while (last_block)
465     {
466       bb = (basic_block) last_block->aux;
467       last_block->aux = NULL;
468       last_block = bb;
469     }
470 }
471
472 /* Schedule a single extended basic block, defined by the boundaries
473    HEAD and TAIL.
474
475    We change our expectations about scheduler behaviour depending on
476    whether MODULO_SCHEDULING is true.  If it is, we expect that the
477    caller has already called set_modulo_params and created delay pairs
478    as appropriate.  If the modulo schedule failed, we return
479    NULL_RTX.  */
480
481 basic_block
482 schedule_ebb (rtx head, rtx tail, bool modulo_scheduling)
483 {
484   basic_block first_bb, target_bb;
485   struct deps_desc tmp_deps;
486   bool success;
487
488   /* Blah.  We should fix the rest of the code not to get confused by
489      a note or two.  */
490   while (head != tail)
491     {
492       if (NOTE_P (head) || DEBUG_INSN_P (head))
493         head = NEXT_INSN (head);
494       else if (NOTE_P (tail) || DEBUG_INSN_P (tail))
495         tail = PREV_INSN (tail);
496       else if (LABEL_P (head))
497         head = NEXT_INSN (head);
498       else
499         break;
500     }
501
502   first_bb = BLOCK_FOR_INSN (head);
503   last_bb = BLOCK_FOR_INSN (tail);
504
505   if (no_real_insns_p (head, tail))
506     return BLOCK_FOR_INSN (tail);
507
508   gcc_assert (INSN_P (head) && INSN_P (tail));
509
510   if (!bitmap_bit_p (&dont_calc_deps, first_bb->index))
511     {
512       init_deps_global ();
513
514       /* Compute dependencies.  */
515       init_deps (&tmp_deps, false);
516       sched_analyze (&tmp_deps, head, tail);
517       free_deps (&tmp_deps);
518
519       add_deps_for_risky_insns (head, tail);
520
521       if (targetm.sched.dependencies_evaluation_hook)
522         targetm.sched.dependencies_evaluation_hook (head, tail);
523
524       finish_deps_global ();
525     }
526   else
527     /* Only recovery blocks can have their dependencies already calculated,
528        and they always are single block ebbs.  */
529     gcc_assert (first_bb == last_bb);
530
531   /* Set priorities.  */
532   current_sched_info->sched_max_insns_priority = 0;
533   rgn_n_insns = set_priorities (head, tail);
534   current_sched_info->sched_max_insns_priority++;
535
536   current_sched_info->prev_head = PREV_INSN (head);
537   current_sched_info->next_tail = NEXT_INSN (tail);
538
539   remove_notes (head, tail);
540
541   unlink_bb_notes (first_bb, last_bb);
542
543   target_bb = first_bb;
544
545   /* Make ready list big enough to hold all the instructions from the ebb.  */
546   sched_extend_ready_list (rgn_n_insns);
547   success = schedule_block (&target_bb, NULL);
548   gcc_assert (success || modulo_scheduling);
549
550   /* Free ready list.  */
551   sched_finish_ready_list ();
552
553   /* We might pack all instructions into fewer blocks,
554      so we may made some of them empty.  Can't assert (b == last_bb).  */
555
556   /* Sanity check: verify that all region insns were scheduled.  */
557   gcc_assert (modulo_scheduling || sched_rgn_n_insns == rgn_n_insns);
558
559   /* Free dependencies.  */
560   sched_free_deps (current_sched_info->head, current_sched_info->tail, true);
561
562   gcc_assert (haifa_recovery_bb_ever_added_p
563               || deps_pools_are_empty_p ());
564
565   if (EDGE_COUNT (last_bb->preds) == 0)
566     /* LAST_BB is unreachable.  */
567     {
568       gcc_assert (first_bb != last_bb
569                   && EDGE_COUNT (last_bb->succs) == 0);
570       last_bb = last_bb->prev_bb;
571       delete_basic_block (last_bb->next_bb);
572     }
573
574   return success ? last_bb : NULL;
575 }
576
577 /* Perform initializations before running schedule_ebbs or a single
578    schedule_ebb.  */
579 void
580 schedule_ebbs_init (void)
581 {
582   /* Setup infos.  */
583   {
584     memcpy (&ebb_common_sched_info, &haifa_common_sched_info,
585             sizeof (ebb_common_sched_info));
586
587     ebb_common_sched_info.fix_recovery_cfg = ebb_fix_recovery_cfg;
588     ebb_common_sched_info.add_block = ebb_add_block;
589     ebb_common_sched_info.sched_pass_id = SCHED_EBB_PASS;
590
591     common_sched_info = &ebb_common_sched_info;
592     sched_deps_info = &ebb_sched_deps_info;
593     current_sched_info = &ebb_sched_info;
594   }
595
596   haifa_sched_init ();
597
598   compute_bb_for_insn ();
599
600   /* Initialize DONT_CALC_DEPS and ebb-{start, end} markers.  */
601   bitmap_initialize (&dont_calc_deps, 0);
602   bitmap_clear (&dont_calc_deps);
603 }
604
605 /* Perform cleanups after scheduling using schedules_ebbs or schedule_ebb.  */
606 void
607 schedule_ebbs_finish (void)
608 {
609   bitmap_clear (&dont_calc_deps);
610
611   /* Reposition the prologue and epilogue notes in case we moved the
612      prologue/epilogue insns.  */
613   if (reload_completed)
614     reposition_prologue_and_epilogue_notes ();
615
616   haifa_sched_finish ();
617 }
618
619 /* The main entry point in this file.  */
620
621 void
622 schedule_ebbs (void)
623 {
624   basic_block bb;
625   int probability_cutoff;
626   rtx tail;
627
628   /* Taking care of this degenerate case makes the rest of
629      this code simpler.  */
630   if (n_basic_blocks == NUM_FIXED_BLOCKS)
631     return;
632
633   if (profile_info && flag_branch_probabilities)
634     probability_cutoff = PARAM_VALUE (TRACER_MIN_BRANCH_PROBABILITY_FEEDBACK);
635   else
636     probability_cutoff = PARAM_VALUE (TRACER_MIN_BRANCH_PROBABILITY);
637   probability_cutoff = REG_BR_PROB_BASE / 100 * probability_cutoff;
638
639   schedule_ebbs_init ();
640
641   /* Schedule every region in the subroutine.  */
642   FOR_EACH_BB (bb)
643     {
644       rtx head = BB_HEAD (bb);
645
646       if (bb->flags & BB_DISABLE_SCHEDULE)
647         continue;
648
649       for (;;)
650         {
651           edge e;
652           tail = BB_END (bb);
653           if (bb->next_bb == EXIT_BLOCK_PTR
654               || LABEL_P (BB_HEAD (bb->next_bb)))
655             break;
656           e = find_fallthru_edge (bb->succs);
657           if (! e)
658             break;
659           if (e->probability <= probability_cutoff)
660             break;
661           if (e->dest->flags & BB_DISABLE_SCHEDULE)
662             break;
663           bb = bb->next_bb;
664         }
665
666       bb = schedule_ebb (head, tail, false);
667     }
668   schedule_ebbs_finish ();
669 }
670
671 /* INSN has been added to/removed from current ebb.  */
672 static void
673 ebb_add_remove_insn (rtx insn ATTRIBUTE_UNUSED, int remove_p)
674 {
675   if (!remove_p)
676     rgn_n_insns++;
677   else
678     rgn_n_insns--;
679 }
680
681 /* BB was added to ebb after AFTER.  */
682 static void
683 ebb_add_block (basic_block bb, basic_block after)
684 {
685   /* Recovery blocks are always bounded by BARRIERS,
686      therefore, they always form single block EBB,
687      therefore, we can use rec->index to identify such EBBs.  */
688   if (after == EXIT_BLOCK_PTR)
689     bitmap_set_bit (&dont_calc_deps, bb->index);
690   else if (after == last_bb)
691     last_bb = bb;
692 }
693
694 /* Return next block in ebb chain.  For parameter meaning please refer to
695    sched-int.h: struct sched_info: advance_target_bb.  */
696 static basic_block
697 advance_target_bb (basic_block bb, rtx insn)
698 {
699   if (insn)
700     {
701       if (BLOCK_FOR_INSN (insn) != bb
702           && control_flow_insn_p (insn)
703           /* We handle interblock movement of the speculation check
704              or over a speculation check in
705              haifa-sched.c: move_block_after_check ().  */
706           && !IS_SPECULATION_BRANCHY_CHECK_P (insn)
707           && !IS_SPECULATION_BRANCHY_CHECK_P (BB_END (bb)))
708         {
709           /* Assert that we don't move jumps across blocks.  */
710           gcc_assert (!control_flow_insn_p (BB_END (bb))
711                       && NOTE_INSN_BASIC_BLOCK_P (BB_HEAD (bb->next_bb)));
712           return bb;
713         }
714       else
715         return 0;
716     }
717   else
718     /* Return next non empty block.  */
719     {
720       do
721         {
722           gcc_assert (bb != last_bb);
723
724           bb = bb->next_bb;
725         }
726       while (bb_note (bb) == BB_END (bb));
727
728       return bb;
729     }
730 }
731
732 /* Fix internal data after interblock movement of jump instruction.
733    For parameter meaning please refer to
734    sched-int.h: struct sched_info: fix_recovery_cfg.  */
735 static void
736 ebb_fix_recovery_cfg (int bbi ATTRIBUTE_UNUSED, int jump_bbi,
737                       int jump_bb_nexti)
738 {
739   gcc_assert (last_bb->index != bbi);
740
741   if (jump_bb_nexti == last_bb->index)
742     last_bb = BASIC_BLOCK (jump_bbi);
743 }
744
745 #endif /* INSN_SCHEDULING */