OSDN Git Service

* cse.c (insert_with_costs): Put semi-colon after empty loop body
[pf3gnuchains/gcc-fork.git] / gcc / haifa-sched.c
1 /* Instruction scheduling pass.
2    Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3    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
24 /* Instruction scheduling pass.  This file, along with sched-deps.c,
25    contains the generic parts.  The actual entry point is found for
26    the normal instruction scheduling pass is found in sched-rgn.c.
27
28    We compute insn priorities based on data dependencies.  Flow
29    analysis only creates a fraction of the data-dependencies we must
30    observe: namely, only those dependencies which the combiner can be
31    expected to use.  For this pass, we must therefore create the
32    remaining dependencies we need to observe: register dependencies,
33    memory dependencies, dependencies to keep function calls in order,
34    and the dependence between a conditional branch and the setting of
35    condition codes are all dealt with here.
36
37    The scheduler first traverses the data flow graph, starting with
38    the last instruction, and proceeding to the first, assigning values
39    to insn_priority as it goes.  This sorts the instructions
40    topologically by data dependence.
41
42    Once priorities have been established, we order the insns using
43    list scheduling.  This works as follows: starting with a list of
44    all the ready insns, and sorted according to priority number, we
45    schedule the insn from the end of the list by placing its
46    predecessors in the list according to their priority order.  We
47    consider this insn scheduled by setting the pointer to the "end" of
48    the list to point to the previous insn.  When an insn has no
49    predecessors, we either queue it until sufficient time has elapsed
50    or add it to the ready list.  As the instructions are scheduled or
51    when stalls are introduced, the queue advances and dumps insns into
52    the ready list.  When all insns down to the lowest priority have
53    been scheduled, the critical path of the basic block has been made
54    as short as possible.  The remaining insns are then scheduled in
55    remaining slots.
56
57    The following list shows the order in which we want to break ties
58    among insns in the ready list:
59
60    1.  choose insn with the longest path to end of bb, ties
61    broken by
62    2.  choose insn with least contribution to register pressure,
63    ties broken by
64    3.  prefer in-block upon interblock motion, ties broken by
65    4.  prefer useful upon speculative motion, ties broken by
66    5.  choose insn with largest control flow probability, ties
67    broken by
68    6.  choose insn with the least dependences upon the previously
69    scheduled insn, or finally
70    7   choose the insn which has the most insns dependent on it.
71    8.  choose insn with lowest UID.
72
73    Memory references complicate matters.  Only if we can be certain
74    that memory references are not part of the data dependency graph
75    (via true, anti, or output dependence), can we move operations past
76    memory references.  To first approximation, reads can be done
77    independently, while writes introduce dependencies.  Better
78    approximations will yield fewer dependencies.
79
80    Before reload, an extended analysis of interblock data dependences
81    is required for interblock scheduling.  This is performed in
82    compute_block_backward_dependences ().
83
84    Dependencies set up by memory references are treated in exactly the
85    same way as other dependencies, by using insn backward dependences
86    INSN_BACK_DEPS.  INSN_BACK_DEPS are translated into forward dependences
87    INSN_FORW_DEPS the purpose of forward list scheduling.
88
89    Having optimized the critical path, we may have also unduly
90    extended the lifetimes of some registers.  If an operation requires
91    that constants be loaded into registers, it is certainly desirable
92    to load those constants as early as necessary, but no earlier.
93    I.e., it will not do to load up a bunch of registers at the
94    beginning of a basic block only to use them at the end, if they
95    could be loaded later, since this may result in excessive register
96    utilization.
97
98    Note that since branches are never in basic blocks, but only end
99    basic blocks, this pass will not move branches.  But that is ok,
100    since we can use GNU's delayed branch scheduling pass to take care
101    of this case.
102
103    Also note that no further optimizations based on algebraic
104    identities are performed, so this pass would be a good one to
105    perform instruction splitting, such as breaking up a multiply
106    instruction into shifts and adds where that is profitable.
107
108    Given the memory aliasing analysis that this pass should perform,
109    it should be possible to remove redundant stores to memory, and to
110    load values from registers instead of hitting memory.
111
112    Before reload, speculative insns are moved only if a 'proof' exists
113    that no exception will be caused by this, and if no live registers
114    exist that inhibit the motion (live registers constraints are not
115    represented by data dependence edges).
116
117    This pass must update information that subsequent passes expect to
118    be correct.  Namely: reg_n_refs, reg_n_sets, reg_n_deaths,
119    reg_n_calls_crossed, and reg_live_length.  Also, BB_HEAD, BB_END.
120
121    The information in the line number notes is carefully retained by
122    this pass.  Notes that refer to the starting and ending of
123    exception regions are also carefully retained by this pass.  All
124    other NOTE insns are grouped in their same relative order at the
125    beginning of basic blocks and regions that have been scheduled.  */
126 \f
127 #include "config.h"
128 #include "system.h"
129 #include "coretypes.h"
130 #include "tm.h"
131 #include "diagnostic-core.h"
132 #include "rtl.h"
133 #include "tm_p.h"
134 #include "hard-reg-set.h"
135 #include "regs.h"
136 #include "function.h"
137 #include "flags.h"
138 #include "insn-config.h"
139 #include "insn-attr.h"
140 #include "except.h"
141 #include "recog.h"
142 #include "sched-int.h"
143 #include "target.h"
144 #include "common/common-target.h"
145 #include "output.h"
146 #include "params.h"
147 #include "vecprim.h"
148 #include "dbgcnt.h"
149 #include "cfgloop.h"
150 #include "ira.h"
151 #include "emit-rtl.h"  /* FIXME: Can go away once crtl is moved to rtl.h.  */
152
153 #ifdef INSN_SCHEDULING
154
155 /* issue_rate is the number of insns that can be scheduled in the same
156    machine cycle.  It can be defined in the config/mach/mach.h file,
157    otherwise we set it to 1.  */
158
159 int issue_rate;
160
161 /* sched-verbose controls the amount of debugging output the
162    scheduler prints.  It is controlled by -fsched-verbose=N:
163    N>0 and no -DSR : the output is directed to stderr.
164    N>=10 will direct the printouts to stderr (regardless of -dSR).
165    N=1: same as -dSR.
166    N=2: bb's probabilities, detailed ready list info, unit/insn info.
167    N=3: rtl at abort point, control-flow, regions info.
168    N=5: dependences info.  */
169
170 int sched_verbose = 0;
171
172 /* Debugging file.  All printouts are sent to dump, which is always set,
173    either to stderr, or to the dump listing file (-dRS).  */
174 FILE *sched_dump = 0;
175
176 /* This is a placeholder for the scheduler parameters common
177    to all schedulers.  */
178 struct common_sched_info_def *common_sched_info;
179
180 #define INSN_TICK(INSN) (HID (INSN)->tick)
181 #define INTER_TICK(INSN) (HID (INSN)->inter_tick)
182
183 /* If INSN_TICK of an instruction is equal to INVALID_TICK,
184    then it should be recalculated from scratch.  */
185 #define INVALID_TICK (-(max_insn_queue_index + 1))
186 /* The minimal value of the INSN_TICK of an instruction.  */
187 #define MIN_TICK (-max_insn_queue_index)
188
189 /* List of important notes we must keep around.  This is a pointer to the
190    last element in the list.  */
191 rtx note_list;
192
193 static struct spec_info_def spec_info_var;
194 /* Description of the speculative part of the scheduling.
195    If NULL - no speculation.  */
196 spec_info_t spec_info = NULL;
197
198 /* True, if recovery block was added during scheduling of current block.
199    Used to determine, if we need to fix INSN_TICKs.  */
200 static bool haifa_recovery_bb_recently_added_p;
201
202 /* True, if recovery block was added during this scheduling pass.
203    Used to determine if we should have empty memory pools of dependencies
204    after finishing current region.  */
205 bool haifa_recovery_bb_ever_added_p;
206
207 /* Counters of different types of speculative instructions.  */
208 static int nr_begin_data, nr_be_in_data, nr_begin_control, nr_be_in_control;
209
210 /* Array used in {unlink, restore}_bb_notes.  */
211 static rtx *bb_header = 0;
212
213 /* Basic block after which recovery blocks will be created.  */
214 static basic_block before_recovery;
215
216 /* Basic block just before the EXIT_BLOCK and after recovery, if we have
217    created it.  */
218 basic_block after_recovery;
219
220 /* FALSE if we add bb to another region, so we don't need to initialize it.  */
221 bool adding_bb_to_current_region_p = true;
222
223 /* Queues, etc.  */
224
225 /* An instruction is ready to be scheduled when all insns preceding it
226    have already been scheduled.  It is important to ensure that all
227    insns which use its result will not be executed until its result
228    has been computed.  An insn is maintained in one of four structures:
229
230    (P) the "Pending" set of insns which cannot be scheduled until
231    their dependencies have been satisfied.
232    (Q) the "Queued" set of insns that can be scheduled when sufficient
233    time has passed.
234    (R) the "Ready" list of unscheduled, uncommitted insns.
235    (S) the "Scheduled" list of insns.
236
237    Initially, all insns are either "Pending" or "Ready" depending on
238    whether their dependencies are satisfied.
239
240    Insns move from the "Ready" list to the "Scheduled" list as they
241    are committed to the schedule.  As this occurs, the insns in the
242    "Pending" list have their dependencies satisfied and move to either
243    the "Ready" list or the "Queued" set depending on whether
244    sufficient time has passed to make them ready.  As time passes,
245    insns move from the "Queued" set to the "Ready" list.
246
247    The "Pending" list (P) are the insns in the INSN_FORW_DEPS of the
248    unscheduled insns, i.e., those that are ready, queued, and pending.
249    The "Queued" set (Q) is implemented by the variable `insn_queue'.
250    The "Ready" list (R) is implemented by the variables `ready' and
251    `n_ready'.
252    The "Scheduled" list (S) is the new insn chain built by this pass.
253
254    The transition (R->S) is implemented in the scheduling loop in
255    `schedule_block' when the best insn to schedule is chosen.
256    The transitions (P->R and P->Q) are implemented in `schedule_insn' as
257    insns move from the ready list to the scheduled list.
258    The transition (Q->R) is implemented in 'queue_to_insn' as time
259    passes or stalls are introduced.  */
260
261 /* Implement a circular buffer to delay instructions until sufficient
262    time has passed.  For the new pipeline description interface,
263    MAX_INSN_QUEUE_INDEX is a power of two minus one which is not less
264    than maximal time of instruction execution computed by genattr.c on
265    the base maximal time of functional unit reservations and getting a
266    result.  This is the longest time an insn may be queued.  */
267
268 static rtx *insn_queue;
269 static int q_ptr = 0;
270 static int q_size = 0;
271 #define NEXT_Q(X) (((X)+1) & max_insn_queue_index)
272 #define NEXT_Q_AFTER(X, C) (((X)+C) & max_insn_queue_index)
273
274 #define QUEUE_SCHEDULED (-3)
275 #define QUEUE_NOWHERE   (-2)
276 #define QUEUE_READY     (-1)
277 /* QUEUE_SCHEDULED - INSN is scheduled.
278    QUEUE_NOWHERE   - INSN isn't scheduled yet and is neither in
279    queue or ready list.
280    QUEUE_READY     - INSN is in ready list.
281    N >= 0 - INSN queued for X [where NEXT_Q_AFTER (q_ptr, X) == N] cycles.  */
282
283 #define QUEUE_INDEX(INSN) (HID (INSN)->queue_index)
284
285 /* The following variable value refers for all current and future
286    reservations of the processor units.  */
287 state_t curr_state;
288
289 /* The following variable value is size of memory representing all
290    current and future reservations of the processor units.  */
291 size_t dfa_state_size;
292
293 /* The following array is used to find the best insn from ready when
294    the automaton pipeline interface is used.  */
295 char *ready_try = NULL;
296
297 /* The ready list.  */
298 struct ready_list ready = {NULL, 0, 0, 0, 0};
299
300 /* The pointer to the ready list (to be removed).  */
301 static struct ready_list *readyp = &ready;
302
303 /* Scheduling clock.  */
304 static int clock_var;
305
306 /* This records the actual schedule.  It is built up during the main phase
307    of schedule_block, and afterwards used to reorder the insns in the RTL.  */
308 static VEC(rtx, heap) *scheduled_insns;
309
310 static int may_trap_exp (const_rtx, int);
311
312 /* Nonzero iff the address is comprised from at most 1 register.  */
313 #define CONST_BASED_ADDRESS_P(x)                        \
314   (REG_P (x)                                    \
315    || ((GET_CODE (x) == PLUS || GET_CODE (x) == MINUS   \
316         || (GET_CODE (x) == LO_SUM))                    \
317        && (CONSTANT_P (XEXP (x, 0))                     \
318            || CONSTANT_P (XEXP (x, 1)))))
319
320 /* Returns a class that insn with GET_DEST(insn)=x may belong to,
321    as found by analyzing insn's expression.  */
322
323 \f
324 static int haifa_luid_for_non_insn (rtx x);
325
326 /* Haifa version of sched_info hooks common to all headers.  */
327 const struct common_sched_info_def haifa_common_sched_info =
328   {
329     NULL, /* fix_recovery_cfg */
330     NULL, /* add_block */
331     NULL, /* estimate_number_of_insns */
332     haifa_luid_for_non_insn, /* luid_for_non_insn */
333     SCHED_PASS_UNKNOWN /* sched_pass_id */
334   };
335
336 /* Mapping from instruction UID to its Logical UID.  */
337 VEC (int, heap) *sched_luids = NULL;
338
339 /* Next LUID to assign to an instruction.  */
340 int sched_max_luid = 1;
341
342 /* Haifa Instruction Data.  */
343 VEC (haifa_insn_data_def, heap) *h_i_d = NULL;
344
345 void (* sched_init_only_bb) (basic_block, basic_block);
346
347 /* Split block function.  Different schedulers might use different functions
348    to handle their internal data consistent.  */
349 basic_block (* sched_split_block) (basic_block, rtx);
350
351 /* Create empty basic block after the specified block.  */
352 basic_block (* sched_create_empty_bb) (basic_block);
353
354 static int
355 may_trap_exp (const_rtx x, int is_store)
356 {
357   enum rtx_code code;
358
359   if (x == 0)
360     return TRAP_FREE;
361   code = GET_CODE (x);
362   if (is_store)
363     {
364       if (code == MEM && may_trap_p (x))
365         return TRAP_RISKY;
366       else
367         return TRAP_FREE;
368     }
369   if (code == MEM)
370     {
371       /* The insn uses memory:  a volatile load.  */
372       if (MEM_VOLATILE_P (x))
373         return IRISKY;
374       /* An exception-free load.  */
375       if (!may_trap_p (x))
376         return IFREE;
377       /* A load with 1 base register, to be further checked.  */
378       if (CONST_BASED_ADDRESS_P (XEXP (x, 0)))
379         return PFREE_CANDIDATE;
380       /* No info on the load, to be further checked.  */
381       return PRISKY_CANDIDATE;
382     }
383   else
384     {
385       const char *fmt;
386       int i, insn_class = TRAP_FREE;
387
388       /* Neither store nor load, check if it may cause a trap.  */
389       if (may_trap_p (x))
390         return TRAP_RISKY;
391       /* Recursive step: walk the insn...  */
392       fmt = GET_RTX_FORMAT (code);
393       for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
394         {
395           if (fmt[i] == 'e')
396             {
397               int tmp_class = may_trap_exp (XEXP (x, i), is_store);
398               insn_class = WORST_CLASS (insn_class, tmp_class);
399             }
400           else if (fmt[i] == 'E')
401             {
402               int j;
403               for (j = 0; j < XVECLEN (x, i); j++)
404                 {
405                   int tmp_class = may_trap_exp (XVECEXP (x, i, j), is_store);
406                   insn_class = WORST_CLASS (insn_class, tmp_class);
407                   if (insn_class == TRAP_RISKY || insn_class == IRISKY)
408                     break;
409                 }
410             }
411           if (insn_class == TRAP_RISKY || insn_class == IRISKY)
412             break;
413         }
414       return insn_class;
415     }
416 }
417
418 /* Classifies rtx X of an insn for the purpose of verifying that X can be
419    executed speculatively (and consequently the insn can be moved
420    speculatively), by examining X, returning:
421    TRAP_RISKY: store, or risky non-load insn (e.g. division by variable).
422    TRAP_FREE: non-load insn.
423    IFREE: load from a globally safe location.
424    IRISKY: volatile load.
425    PFREE_CANDIDATE, PRISKY_CANDIDATE: load that need to be checked for
426    being either PFREE or PRISKY.  */
427
428 static int
429 haifa_classify_rtx (const_rtx x)
430 {
431   int tmp_class = TRAP_FREE;
432   int insn_class = TRAP_FREE;
433   enum rtx_code code;
434
435   if (GET_CODE (x) == PARALLEL)
436     {
437       int i, len = XVECLEN (x, 0);
438
439       for (i = len - 1; i >= 0; i--)
440         {
441           tmp_class = haifa_classify_rtx (XVECEXP (x, 0, i));
442           insn_class = WORST_CLASS (insn_class, tmp_class);
443           if (insn_class == TRAP_RISKY || insn_class == IRISKY)
444             break;
445         }
446     }
447   else
448     {
449       code = GET_CODE (x);
450       switch (code)
451         {
452         case CLOBBER:
453           /* Test if it is a 'store'.  */
454           tmp_class = may_trap_exp (XEXP (x, 0), 1);
455           break;
456         case SET:
457           /* Test if it is a store.  */
458           tmp_class = may_trap_exp (SET_DEST (x), 1);
459           if (tmp_class == TRAP_RISKY)
460             break;
461           /* Test if it is a load.  */
462           tmp_class =
463             WORST_CLASS (tmp_class,
464                          may_trap_exp (SET_SRC (x), 0));
465           break;
466         case COND_EXEC:
467           tmp_class = haifa_classify_rtx (COND_EXEC_CODE (x));
468           if (tmp_class == TRAP_RISKY)
469             break;
470           tmp_class = WORST_CLASS (tmp_class,
471                                    may_trap_exp (COND_EXEC_TEST (x), 0));
472           break;
473         case TRAP_IF:
474           tmp_class = TRAP_RISKY;
475           break;
476         default:;
477         }
478       insn_class = tmp_class;
479     }
480
481   return insn_class;
482 }
483
484 int
485 haifa_classify_insn (const_rtx insn)
486 {
487   return haifa_classify_rtx (PATTERN (insn));
488 }
489
490 /* Forward declarations.  */
491
492 static int priority (rtx);
493 static int rank_for_schedule (const void *, const void *);
494 static void swap_sort (rtx *, int);
495 static void queue_insn (rtx, int, const char *);
496 static int schedule_insn (rtx);
497 static void adjust_priority (rtx);
498 static void advance_one_cycle (void);
499 static void extend_h_i_d (void);
500
501
502 /* Notes handling mechanism:
503    =========================
504    Generally, NOTES are saved before scheduling and restored after scheduling.
505    The scheduler distinguishes between two types of notes:
506
507    (1) LOOP_BEGIN, LOOP_END, SETJMP, EHREGION_BEG, EHREGION_END notes:
508    Before scheduling a region, a pointer to the note is added to the insn
509    that follows or precedes it.  (This happens as part of the data dependence
510    computation).  After scheduling an insn, the pointer contained in it is
511    used for regenerating the corresponding note (in reemit_notes).
512
513    (2) All other notes (e.g. INSN_DELETED):  Before scheduling a block,
514    these notes are put in a list (in rm_other_notes() and
515    unlink_other_notes ()).  After scheduling the block, these notes are
516    inserted at the beginning of the block (in schedule_block()).  */
517
518 static void ready_add (struct ready_list *, rtx, bool);
519 static rtx ready_remove_first (struct ready_list *);
520 static rtx ready_remove_first_dispatch (struct ready_list *ready);
521
522 static void queue_to_ready (struct ready_list *);
523 static int early_queue_to_ready (state_t, struct ready_list *);
524
525 static void debug_ready_list (struct ready_list *);
526
527 /* The following functions are used to implement multi-pass scheduling
528    on the first cycle.  */
529 static rtx ready_remove (struct ready_list *, int);
530 static void ready_remove_insn (rtx);
531
532 static void fix_inter_tick (rtx, rtx);
533 static int fix_tick_ready (rtx);
534 static void change_queue_index (rtx, int);
535
536 /* The following functions are used to implement scheduling of data/control
537    speculative instructions.  */
538
539 static void extend_h_i_d (void);
540 static void init_h_i_d (rtx);
541 static void generate_recovery_code (rtx);
542 static void process_insn_forw_deps_be_in_spec (rtx, rtx, ds_t);
543 static void begin_speculative_block (rtx);
544 static void add_to_speculative_block (rtx);
545 static void init_before_recovery (basic_block *);
546 static void create_check_block_twin (rtx, bool);
547 static void fix_recovery_deps (basic_block);
548 static void haifa_change_pattern (rtx, rtx);
549 static void dump_new_block_header (int, basic_block, rtx, rtx);
550 static void restore_bb_notes (basic_block);
551 static void fix_jump_move (rtx);
552 static void move_block_after_check (rtx);
553 static void move_succs (VEC(edge,gc) **, basic_block);
554 static void sched_remove_insn (rtx);
555 static void clear_priorities (rtx, rtx_vec_t *);
556 static void calc_priorities (rtx_vec_t);
557 static void add_jump_dependencies (rtx, rtx);
558 #ifdef ENABLE_CHECKING
559 static int has_edge_p (VEC(edge,gc) *, int);
560 static void check_cfg (rtx, rtx);
561 #endif
562
563 #endif /* INSN_SCHEDULING */
564 \f
565 /* Point to state used for the current scheduling pass.  */
566 struct haifa_sched_info *current_sched_info;
567 \f
568 #ifndef INSN_SCHEDULING
569 void
570 schedule_insns (void)
571 {
572 }
573 #else
574
575 /* Do register pressure sensitive insn scheduling if the flag is set
576    up.  */
577 bool sched_pressure_p;
578
579 /* Map regno -> its pressure class.  The map defined only when
580    SCHED_PRESSURE_P is true.  */
581 enum reg_class *sched_regno_pressure_class;
582
583 /* The current register pressure.  Only elements corresponding pressure
584    classes are defined.  */
585 static int curr_reg_pressure[N_REG_CLASSES];
586
587 /* Saved value of the previous array.  */
588 static int saved_reg_pressure[N_REG_CLASSES];
589
590 /* Register living at given scheduling point.  */
591 static bitmap curr_reg_live;
592
593 /* Saved value of the previous array.  */
594 static bitmap saved_reg_live;
595
596 /* Registers mentioned in the current region.  */
597 static bitmap region_ref_regs;
598
599 /* Initiate register pressure relative info for scheduling the current
600    region.  Currently it is only clearing register mentioned in the
601    current region.  */
602 void
603 sched_init_region_reg_pressure_info (void)
604 {
605   bitmap_clear (region_ref_regs);
606 }
607
608 /* Update current register pressure related info after birth (if
609    BIRTH_P) or death of register REGNO.  */
610 static void
611 mark_regno_birth_or_death (int regno, bool birth_p)
612 {
613   enum reg_class pressure_class;
614
615   pressure_class = sched_regno_pressure_class[regno];
616   if (regno >= FIRST_PSEUDO_REGISTER)
617     {
618       if (pressure_class != NO_REGS)
619         {
620           if (birth_p)
621             {
622               bitmap_set_bit (curr_reg_live, regno);
623               curr_reg_pressure[pressure_class]
624                 += (ira_reg_class_max_nregs
625                     [pressure_class][PSEUDO_REGNO_MODE (regno)]);
626             }
627           else
628             {
629               bitmap_clear_bit (curr_reg_live, regno);
630               curr_reg_pressure[pressure_class]
631                 -= (ira_reg_class_max_nregs
632                     [pressure_class][PSEUDO_REGNO_MODE (regno)]);
633             }
634         }
635     }
636   else if (pressure_class != NO_REGS
637            && ! TEST_HARD_REG_BIT (ira_no_alloc_regs, regno))
638     {
639       if (birth_p)
640         {
641           bitmap_set_bit (curr_reg_live, regno);
642           curr_reg_pressure[pressure_class]++;
643         }
644       else
645         {
646           bitmap_clear_bit (curr_reg_live, regno);
647           curr_reg_pressure[pressure_class]--;
648         }
649     }
650 }
651
652 /* Initiate current register pressure related info from living
653    registers given by LIVE.  */
654 static void
655 initiate_reg_pressure_info (bitmap live)
656 {
657   int i;
658   unsigned int j;
659   bitmap_iterator bi;
660
661   for (i = 0; i < ira_pressure_classes_num; i++)
662     curr_reg_pressure[ira_pressure_classes[i]] = 0;
663   bitmap_clear (curr_reg_live);
664   EXECUTE_IF_SET_IN_BITMAP (live, 0, j, bi)
665     if (current_nr_blocks == 1 || bitmap_bit_p (region_ref_regs, j))
666       mark_regno_birth_or_death (j, true);
667 }
668
669 /* Mark registers in X as mentioned in the current region.  */
670 static void
671 setup_ref_regs (rtx x)
672 {
673   int i, j, regno;
674   const RTX_CODE code = GET_CODE (x);
675   const char *fmt;
676
677   if (REG_P (x))
678     {
679       regno = REGNO (x);
680       if (HARD_REGISTER_NUM_P (regno))
681         bitmap_set_range (region_ref_regs, regno,
682                           hard_regno_nregs[regno][GET_MODE (x)]);
683       else
684         bitmap_set_bit (region_ref_regs, REGNO (x));
685       return;
686     }
687   fmt = GET_RTX_FORMAT (code);
688   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
689     if (fmt[i] == 'e')
690       setup_ref_regs (XEXP (x, i));
691     else if (fmt[i] == 'E')
692       {
693         for (j = 0; j < XVECLEN (x, i); j++)
694           setup_ref_regs (XVECEXP (x, i, j));
695       }
696 }
697
698 /* Initiate current register pressure related info at the start of
699    basic block BB.  */
700 static void
701 initiate_bb_reg_pressure_info (basic_block bb)
702 {
703   unsigned int i ATTRIBUTE_UNUSED;
704   rtx insn;
705
706   if (current_nr_blocks > 1)
707     FOR_BB_INSNS (bb, insn)
708       if (NONDEBUG_INSN_P (insn))
709         setup_ref_regs (PATTERN (insn));
710   initiate_reg_pressure_info (df_get_live_in (bb));
711 #ifdef EH_RETURN_DATA_REGNO
712   if (bb_has_eh_pred (bb))
713     for (i = 0; ; ++i)
714       {
715         unsigned int regno = EH_RETURN_DATA_REGNO (i);
716
717         if (regno == INVALID_REGNUM)
718           break;
719         if (! bitmap_bit_p (df_get_live_in (bb), regno))
720           mark_regno_birth_or_death (regno, true);
721       }
722 #endif
723 }
724
725 /* Save current register pressure related info.  */
726 static void
727 save_reg_pressure (void)
728 {
729   int i;
730
731   for (i = 0; i < ira_pressure_classes_num; i++)
732     saved_reg_pressure[ira_pressure_classes[i]]
733       = curr_reg_pressure[ira_pressure_classes[i]];
734   bitmap_copy (saved_reg_live, curr_reg_live);
735 }
736
737 /* Restore saved register pressure related info.  */
738 static void
739 restore_reg_pressure (void)
740 {
741   int i;
742
743   for (i = 0; i < ira_pressure_classes_num; i++)
744     curr_reg_pressure[ira_pressure_classes[i]]
745       = saved_reg_pressure[ira_pressure_classes[i]];
746   bitmap_copy (curr_reg_live, saved_reg_live);
747 }
748
749 /* Return TRUE if the register is dying after its USE.  */
750 static bool
751 dying_use_p (struct reg_use_data *use)
752 {
753   struct reg_use_data *next;
754
755   for (next = use->next_regno_use; next != use; next = next->next_regno_use)
756     if (NONDEBUG_INSN_P (next->insn)
757         && QUEUE_INDEX (next->insn) != QUEUE_SCHEDULED)
758       return false;
759   return true;
760 }
761
762 /* Print info about the current register pressure and its excess for
763    each pressure class.  */
764 static void
765 print_curr_reg_pressure (void)
766 {
767   int i;
768   enum reg_class cl;
769
770   fprintf (sched_dump, ";;\t");
771   for (i = 0; i < ira_pressure_classes_num; i++)
772     {
773       cl = ira_pressure_classes[i];
774       gcc_assert (curr_reg_pressure[cl] >= 0);
775       fprintf (sched_dump, "  %s:%d(%d)", reg_class_names[cl],
776                curr_reg_pressure[cl],
777                curr_reg_pressure[cl] - ira_available_class_regs[cl]);
778     }
779   fprintf (sched_dump, "\n");
780 }
781
782 /* Pointer to the last instruction scheduled.  */
783 static rtx last_scheduled_insn;
784
785 /* Pointer to the last nondebug instruction scheduled within the
786    block, or the prev_head of the scheduling block.  Used by
787    rank_for_schedule, so that insns independent of the last scheduled
788    insn will be preferred over dependent instructions.  */
789 static rtx last_nondebug_scheduled_insn;
790
791 /* Pointer that iterates through the list of unscheduled insns if we
792    have a dbg_cnt enabled.  It always points at an insn prior to the
793    first unscheduled one.  */
794 static rtx nonscheduled_insns_begin;
795
796 /* Cached cost of the instruction.  Use below function to get cost of the
797    insn.  -1 here means that the field is not initialized.  */
798 #define INSN_COST(INSN) (HID (INSN)->cost)
799
800 /* Compute cost of executing INSN.
801    This is the number of cycles between instruction issue and
802    instruction results.  */
803 int
804 insn_cost (rtx insn)
805 {
806   int cost;
807
808   if (sel_sched_p ())
809     {
810       if (recog_memoized (insn) < 0)
811         return 0;
812
813       cost = insn_default_latency (insn);
814       if (cost < 0)
815         cost = 0;
816
817       return cost;
818     }
819
820   cost = INSN_COST (insn);
821
822   if (cost < 0)
823     {
824       /* A USE insn, or something else we don't need to
825          understand.  We can't pass these directly to
826          result_ready_cost or insn_default_latency because it will
827          trigger a fatal error for unrecognizable insns.  */
828       if (recog_memoized (insn) < 0)
829         {
830           INSN_COST (insn) = 0;
831           return 0;
832         }
833       else
834         {
835           cost = insn_default_latency (insn);
836           if (cost < 0)
837             cost = 0;
838
839           INSN_COST (insn) = cost;
840         }
841     }
842
843   return cost;
844 }
845
846 /* Compute cost of dependence LINK.
847    This is the number of cycles between instruction issue and
848    instruction results.
849    ??? We also use this function to call recog_memoized on all insns.  */
850 int
851 dep_cost_1 (dep_t link, dw_t dw)
852 {
853   rtx insn = DEP_PRO (link);
854   rtx used = DEP_CON (link);
855   int cost;
856
857   /* A USE insn should never require the value used to be computed.
858      This allows the computation of a function's result and parameter
859      values to overlap the return and call.  We don't care about the
860      dependence cost when only decreasing register pressure.  */
861   if (recog_memoized (used) < 0)
862     {
863       cost = 0;
864       recog_memoized (insn);
865     }
866   else
867     {
868       enum reg_note dep_type = DEP_TYPE (link);
869
870       cost = insn_cost (insn);
871
872       if (INSN_CODE (insn) >= 0)
873         {
874           if (dep_type == REG_DEP_ANTI)
875             cost = 0;
876           else if (dep_type == REG_DEP_OUTPUT)
877             {
878               cost = (insn_default_latency (insn)
879                       - insn_default_latency (used));
880               if (cost <= 0)
881                 cost = 1;
882             }
883           else if (bypass_p (insn))
884             cost = insn_latency (insn, used);
885         }
886
887
888       if (targetm.sched.adjust_cost_2)
889         cost = targetm.sched.adjust_cost_2 (used, (int) dep_type, insn, cost,
890                                             dw);
891       else if (targetm.sched.adjust_cost != NULL)
892         {
893           /* This variable is used for backward compatibility with the
894              targets.  */
895           rtx dep_cost_rtx_link = alloc_INSN_LIST (NULL_RTX, NULL_RTX);
896
897           /* Make it self-cycled, so that if some tries to walk over this
898              incomplete list he/she will be caught in an endless loop.  */
899           XEXP (dep_cost_rtx_link, 1) = dep_cost_rtx_link;
900
901           /* Targets use only REG_NOTE_KIND of the link.  */
902           PUT_REG_NOTE_KIND (dep_cost_rtx_link, DEP_TYPE (link));
903
904           cost = targetm.sched.adjust_cost (used, dep_cost_rtx_link,
905                                             insn, cost);
906
907           free_INSN_LIST_node (dep_cost_rtx_link);
908         }
909
910       if (cost < 0)
911         cost = 0;
912     }
913
914   return cost;
915 }
916
917 /* Compute cost of dependence LINK.
918    This is the number of cycles between instruction issue and
919    instruction results.  */
920 int
921 dep_cost (dep_t link)
922 {
923   return dep_cost_1 (link, 0);
924 }
925
926 /* Use this sel-sched.c friendly function in reorder2 instead of increasing
927    INSN_PRIORITY explicitly.  */
928 void
929 increase_insn_priority (rtx insn, int amount)
930 {
931   if (!sel_sched_p ())
932     {
933       /* We're dealing with haifa-sched.c INSN_PRIORITY.  */
934       if (INSN_PRIORITY_KNOWN (insn))
935           INSN_PRIORITY (insn) += amount;
936     }
937   else
938     {
939       /* In sel-sched.c INSN_PRIORITY is not kept up to date.
940          Use EXPR_PRIORITY instead. */
941       sel_add_to_insn_priority (insn, amount);
942     }
943 }
944
945 /* Return 'true' if DEP should be included in priority calculations.  */
946 static bool
947 contributes_to_priority_p (dep_t dep)
948 {
949   if (DEBUG_INSN_P (DEP_CON (dep))
950       || DEBUG_INSN_P (DEP_PRO (dep)))
951     return false;
952
953   /* Critical path is meaningful in block boundaries only.  */
954   if (!current_sched_info->contributes_to_priority (DEP_CON (dep),
955                                                     DEP_PRO (dep)))
956     return false;
957
958   /* If flag COUNT_SPEC_IN_CRITICAL_PATH is set,
959      then speculative instructions will less likely be
960      scheduled.  That is because the priority of
961      their producers will increase, and, thus, the
962      producers will more likely be scheduled, thus,
963      resolving the dependence.  */
964   if (sched_deps_info->generate_spec_deps
965       && !(spec_info->flags & COUNT_SPEC_IN_CRITICAL_PATH)
966       && (DEP_STATUS (dep) & SPECULATIVE))
967     return false;
968
969   return true;
970 }
971
972 /* Compute the number of nondebug forward deps of an insn.  */
973
974 static int
975 dep_list_size (rtx insn)
976 {
977   sd_iterator_def sd_it;
978   dep_t dep;
979   int dbgcount = 0, nodbgcount = 0;
980
981   if (!MAY_HAVE_DEBUG_INSNS)
982     return sd_lists_size (insn, SD_LIST_FORW);
983
984   FOR_EACH_DEP (insn, SD_LIST_FORW, sd_it, dep)
985     {
986       if (DEBUG_INSN_P (DEP_CON (dep)))
987         dbgcount++;
988       else if (!DEBUG_INSN_P (DEP_PRO (dep)))
989         nodbgcount++;
990     }
991
992   gcc_assert (dbgcount + nodbgcount == sd_lists_size (insn, SD_LIST_FORW));
993
994   return nodbgcount;
995 }
996
997 /* Compute the priority number for INSN.  */
998 static int
999 priority (rtx insn)
1000 {
1001   if (! INSN_P (insn))
1002     return 0;
1003
1004   /* We should not be interested in priority of an already scheduled insn.  */
1005   gcc_assert (QUEUE_INDEX (insn) != QUEUE_SCHEDULED);
1006
1007   if (!INSN_PRIORITY_KNOWN (insn))
1008     {
1009       int this_priority = -1;
1010
1011       if (dep_list_size (insn) == 0)
1012         /* ??? We should set INSN_PRIORITY to insn_cost when and insn has
1013            some forward deps but all of them are ignored by
1014            contributes_to_priority hook.  At the moment we set priority of
1015            such insn to 0.  */
1016         this_priority = insn_cost (insn);
1017       else
1018         {
1019           rtx prev_first, twin;
1020           basic_block rec;
1021
1022           /* For recovery check instructions we calculate priority slightly
1023              different than that of normal instructions.  Instead of walking
1024              through INSN_FORW_DEPS (check) list, we walk through
1025              INSN_FORW_DEPS list of each instruction in the corresponding
1026              recovery block.  */
1027
1028           /* Selective scheduling does not define RECOVERY_BLOCK macro.  */
1029           rec = sel_sched_p () ? NULL : RECOVERY_BLOCK (insn);
1030           if (!rec || rec == EXIT_BLOCK_PTR)
1031             {
1032               prev_first = PREV_INSN (insn);
1033               twin = insn;
1034             }
1035           else
1036             {
1037               prev_first = NEXT_INSN (BB_HEAD (rec));
1038               twin = PREV_INSN (BB_END (rec));
1039             }
1040
1041           do
1042             {
1043               sd_iterator_def sd_it;
1044               dep_t dep;
1045
1046               FOR_EACH_DEP (twin, SD_LIST_FORW, sd_it, dep)
1047                 {
1048                   rtx next;
1049                   int next_priority;
1050
1051                   next = DEP_CON (dep);
1052
1053                   if (BLOCK_FOR_INSN (next) != rec)
1054                     {
1055                       int cost;
1056
1057                       if (!contributes_to_priority_p (dep))
1058                         continue;
1059
1060                       if (twin == insn)
1061                         cost = dep_cost (dep);
1062                       else
1063                         {
1064                           struct _dep _dep1, *dep1 = &_dep1;
1065
1066                           init_dep (dep1, insn, next, REG_DEP_ANTI);
1067
1068                           cost = dep_cost (dep1);
1069                         }
1070
1071                       next_priority = cost + priority (next);
1072
1073                       if (next_priority > this_priority)
1074                         this_priority = next_priority;
1075                     }
1076                 }
1077
1078               twin = PREV_INSN (twin);
1079             }
1080           while (twin != prev_first);
1081         }
1082
1083       if (this_priority < 0)
1084         {
1085           gcc_assert (this_priority == -1);
1086
1087           this_priority = insn_cost (insn);
1088         }
1089
1090       INSN_PRIORITY (insn) = this_priority;
1091       INSN_PRIORITY_STATUS (insn) = 1;
1092     }
1093
1094   return INSN_PRIORITY (insn);
1095 }
1096 \f
1097 /* Macros and functions for keeping the priority queue sorted, and
1098    dealing with queuing and dequeuing of instructions.  */
1099
1100 #define SCHED_SORT(READY, N_READY)                                   \
1101 do { if ((N_READY) == 2)                                             \
1102        swap_sort (READY, N_READY);                                   \
1103      else if ((N_READY) > 2)                                         \
1104          qsort (READY, N_READY, sizeof (rtx), rank_for_schedule); }  \
1105 while (0)
1106
1107 /* Setup info about the current register pressure impact of scheduling
1108    INSN at the current scheduling point.  */
1109 static void
1110 setup_insn_reg_pressure_info (rtx insn)
1111 {
1112   int i, change, before, after, hard_regno;
1113   int excess_cost_change;
1114   enum machine_mode mode;
1115   enum reg_class cl;
1116   struct reg_pressure_data *pressure_info;
1117   int *max_reg_pressure;
1118   struct reg_use_data *use;
1119   static int death[N_REG_CLASSES];
1120
1121   gcc_checking_assert (!DEBUG_INSN_P (insn));
1122
1123   excess_cost_change = 0;
1124   for (i = 0; i < ira_pressure_classes_num; i++)
1125     death[ira_pressure_classes[i]] = 0;
1126   for (use = INSN_REG_USE_LIST (insn); use != NULL; use = use->next_insn_use)
1127     if (dying_use_p (use))
1128       {
1129         cl = sched_regno_pressure_class[use->regno];
1130         if (use->regno < FIRST_PSEUDO_REGISTER)
1131           death[cl]++;
1132         else
1133           death[cl]
1134             += ira_reg_class_max_nregs[cl][PSEUDO_REGNO_MODE (use->regno)];
1135       }
1136   pressure_info = INSN_REG_PRESSURE (insn);
1137   max_reg_pressure = INSN_MAX_REG_PRESSURE (insn);
1138   gcc_assert (pressure_info != NULL && max_reg_pressure != NULL);
1139   for (i = 0; i < ira_pressure_classes_num; i++)
1140     {
1141       cl = ira_pressure_classes[i];
1142       gcc_assert (curr_reg_pressure[cl] >= 0);
1143       change = (int) pressure_info[i].set_increase - death[cl];
1144       before = MAX (0, max_reg_pressure[i] - ira_available_class_regs[cl]);
1145       after = MAX (0, max_reg_pressure[i] + change
1146                    - ira_available_class_regs[cl]);
1147       hard_regno = ira_class_hard_regs[cl][0];
1148       gcc_assert (hard_regno >= 0);
1149       mode = reg_raw_mode[hard_regno];
1150       excess_cost_change += ((after - before)
1151                              * (ira_memory_move_cost[mode][cl][0]
1152                                 + ira_memory_move_cost[mode][cl][1]));
1153     }
1154   INSN_REG_PRESSURE_EXCESS_COST_CHANGE (insn) = excess_cost_change;
1155 }
1156
1157 /* Returns a positive value if x is preferred; returns a negative value if
1158    y is preferred.  Should never return 0, since that will make the sort
1159    unstable.  */
1160
1161 static int
1162 rank_for_schedule (const void *x, const void *y)
1163 {
1164   rtx tmp = *(const rtx *) y;
1165   rtx tmp2 = *(const rtx *) x;
1166   int tmp_class, tmp2_class;
1167   int val, priority_val, info_val;
1168
1169   if (MAY_HAVE_DEBUG_INSNS)
1170     {
1171       /* Schedule debug insns as early as possible.  */
1172       if (DEBUG_INSN_P (tmp) && !DEBUG_INSN_P (tmp2))
1173         return -1;
1174       else if (DEBUG_INSN_P (tmp2))
1175         return 1;
1176     }
1177
1178   /* The insn in a schedule group should be issued the first.  */
1179   if (flag_sched_group_heuristic &&
1180       SCHED_GROUP_P (tmp) != SCHED_GROUP_P (tmp2))
1181     return SCHED_GROUP_P (tmp2) ? 1 : -1;
1182
1183   /* Make sure that priority of TMP and TMP2 are initialized.  */
1184   gcc_assert (INSN_PRIORITY_KNOWN (tmp) && INSN_PRIORITY_KNOWN (tmp2));
1185
1186   if (sched_pressure_p)
1187     {
1188       int diff;
1189
1190       /* Prefer insn whose scheduling results in the smallest register
1191          pressure excess.  */
1192       if ((diff = (INSN_REG_PRESSURE_EXCESS_COST_CHANGE (tmp)
1193                    + (INSN_TICK (tmp) > clock_var
1194                       ? INSN_TICK (tmp) - clock_var : 0)
1195                    - INSN_REG_PRESSURE_EXCESS_COST_CHANGE (tmp2)
1196                    - (INSN_TICK (tmp2) > clock_var
1197                       ? INSN_TICK (tmp2) - clock_var : 0))) != 0)
1198         return diff;
1199     }
1200
1201
1202   if (sched_pressure_p
1203       && (INSN_TICK (tmp2) > clock_var || INSN_TICK (tmp) > clock_var))
1204     {
1205       if (INSN_TICK (tmp) <= clock_var)
1206         return -1;
1207       else if (INSN_TICK (tmp2) <= clock_var)
1208         return 1;
1209       else
1210         return INSN_TICK (tmp) - INSN_TICK (tmp2);
1211     }
1212   /* Prefer insn with higher priority.  */
1213   priority_val = INSN_PRIORITY (tmp2) - INSN_PRIORITY (tmp);
1214
1215   if (flag_sched_critical_path_heuristic && priority_val)
1216     return priority_val;
1217
1218   /* Prefer speculative insn with greater dependencies weakness.  */
1219   if (flag_sched_spec_insn_heuristic && spec_info)
1220     {
1221       ds_t ds1, ds2;
1222       dw_t dw1, dw2;
1223       int dw;
1224
1225       ds1 = TODO_SPEC (tmp) & SPECULATIVE;
1226       if (ds1)
1227         dw1 = ds_weak (ds1);
1228       else
1229         dw1 = NO_DEP_WEAK;
1230
1231       ds2 = TODO_SPEC (tmp2) & SPECULATIVE;
1232       if (ds2)
1233         dw2 = ds_weak (ds2);
1234       else
1235         dw2 = NO_DEP_WEAK;
1236
1237       dw = dw2 - dw1;
1238       if (dw > (NO_DEP_WEAK / 8) || dw < -(NO_DEP_WEAK / 8))
1239         return dw;
1240     }
1241
1242   info_val = (*current_sched_info->rank) (tmp, tmp2);
1243   if(flag_sched_rank_heuristic && info_val)
1244     return info_val;
1245
1246   /* Compare insns based on their relation to the last scheduled
1247      non-debug insn.  */
1248   if (flag_sched_last_insn_heuristic && last_nondebug_scheduled_insn)
1249     {
1250       dep_t dep1;
1251       dep_t dep2;
1252       rtx last = last_nondebug_scheduled_insn;
1253
1254       /* Classify the instructions into three classes:
1255          1) Data dependent on last schedule insn.
1256          2) Anti/Output dependent on last scheduled insn.
1257          3) Independent of last scheduled insn, or has latency of one.
1258          Choose the insn from the highest numbered class if different.  */
1259       dep1 = sd_find_dep_between (last, tmp, true);
1260
1261       if (dep1 == NULL || dep_cost (dep1) == 1)
1262         tmp_class = 3;
1263       else if (/* Data dependence.  */
1264                DEP_TYPE (dep1) == REG_DEP_TRUE)
1265         tmp_class = 1;
1266       else
1267         tmp_class = 2;
1268
1269       dep2 = sd_find_dep_between (last, tmp2, true);
1270
1271       if (dep2 == NULL || dep_cost (dep2)  == 1)
1272         tmp2_class = 3;
1273       else if (/* Data dependence.  */
1274                DEP_TYPE (dep2) == REG_DEP_TRUE)
1275         tmp2_class = 1;
1276       else
1277         tmp2_class = 2;
1278
1279       if ((val = tmp2_class - tmp_class))
1280         return val;
1281     }
1282
1283   /* Prefer the insn which has more later insns that depend on it.
1284      This gives the scheduler more freedom when scheduling later
1285      instructions at the expense of added register pressure.  */
1286
1287   val = (dep_list_size (tmp2) - dep_list_size (tmp));
1288
1289   if (flag_sched_dep_count_heuristic && val != 0)
1290     return val;
1291
1292   /* If insns are equally good, sort by INSN_LUID (original insn order),
1293      so that we make the sort stable.  This minimizes instruction movement,
1294      thus minimizing sched's effect on debugging and cross-jumping.  */
1295   return INSN_LUID (tmp) - INSN_LUID (tmp2);
1296 }
1297
1298 /* Resort the array A in which only element at index N may be out of order.  */
1299
1300 HAIFA_INLINE static void
1301 swap_sort (rtx *a, int n)
1302 {
1303   rtx insn = a[n - 1];
1304   int i = n - 2;
1305
1306   while (i >= 0 && rank_for_schedule (a + i, &insn) >= 0)
1307     {
1308       a[i + 1] = a[i];
1309       i -= 1;
1310     }
1311   a[i + 1] = insn;
1312 }
1313
1314 /* Add INSN to the insn queue so that it can be executed at least
1315    N_CYCLES after the currently executing insn.  Preserve insns
1316    chain for debugging purposes.  REASON will be printed in debugging
1317    output.  */
1318
1319 HAIFA_INLINE static void
1320 queue_insn (rtx insn, int n_cycles, const char *reason)
1321 {
1322   int next_q = NEXT_Q_AFTER (q_ptr, n_cycles);
1323   rtx link = alloc_INSN_LIST (insn, insn_queue[next_q]);
1324
1325   gcc_assert (n_cycles <= max_insn_queue_index);
1326   gcc_assert (!DEBUG_INSN_P (insn));
1327
1328   insn_queue[next_q] = link;
1329   q_size += 1;
1330
1331   if (sched_verbose >= 2)
1332     {
1333       fprintf (sched_dump, ";;\t\tReady-->Q: insn %s: ",
1334                (*current_sched_info->print_insn) (insn, 0));
1335
1336       fprintf (sched_dump, "queued for %d cycles (%s).\n", n_cycles, reason);
1337     }
1338
1339   QUEUE_INDEX (insn) = next_q;
1340 }
1341
1342 /* Remove INSN from queue.  */
1343 static void
1344 queue_remove (rtx insn)
1345 {
1346   gcc_assert (QUEUE_INDEX (insn) >= 0);
1347   remove_free_INSN_LIST_elem (insn, &insn_queue[QUEUE_INDEX (insn)]);
1348   q_size--;
1349   QUEUE_INDEX (insn) = QUEUE_NOWHERE;
1350 }
1351
1352 /* Return a pointer to the bottom of the ready list, i.e. the insn
1353    with the lowest priority.  */
1354
1355 rtx *
1356 ready_lastpos (struct ready_list *ready)
1357 {
1358   gcc_assert (ready->n_ready >= 1);
1359   return ready->vec + ready->first - ready->n_ready + 1;
1360 }
1361
1362 /* Add an element INSN to the ready list so that it ends up with the
1363    lowest/highest priority depending on FIRST_P.  */
1364
1365 HAIFA_INLINE static void
1366 ready_add (struct ready_list *ready, rtx insn, bool first_p)
1367 {
1368   if (!first_p)
1369     {
1370       if (ready->first == ready->n_ready)
1371         {
1372           memmove (ready->vec + ready->veclen - ready->n_ready,
1373                    ready_lastpos (ready),
1374                    ready->n_ready * sizeof (rtx));
1375           ready->first = ready->veclen - 1;
1376         }
1377       ready->vec[ready->first - ready->n_ready] = insn;
1378     }
1379   else
1380     {
1381       if (ready->first == ready->veclen - 1)
1382         {
1383           if (ready->n_ready)
1384             /* ready_lastpos() fails when called with (ready->n_ready == 0).  */
1385             memmove (ready->vec + ready->veclen - ready->n_ready - 1,
1386                      ready_lastpos (ready),
1387                      ready->n_ready * sizeof (rtx));
1388           ready->first = ready->veclen - 2;
1389         }
1390       ready->vec[++(ready->first)] = insn;
1391     }
1392
1393   ready->n_ready++;
1394   if (DEBUG_INSN_P (insn))
1395     ready->n_debug++;
1396
1397   gcc_assert (QUEUE_INDEX (insn) != QUEUE_READY);
1398   QUEUE_INDEX (insn) = QUEUE_READY;
1399 }
1400
1401 /* Remove the element with the highest priority from the ready list and
1402    return it.  */
1403
1404 HAIFA_INLINE static rtx
1405 ready_remove_first (struct ready_list *ready)
1406 {
1407   rtx t;
1408
1409   gcc_assert (ready->n_ready);
1410   t = ready->vec[ready->first--];
1411   ready->n_ready--;
1412   if (DEBUG_INSN_P (t))
1413     ready->n_debug--;
1414   /* If the queue becomes empty, reset it.  */
1415   if (ready->n_ready == 0)
1416     ready->first = ready->veclen - 1;
1417
1418   gcc_assert (QUEUE_INDEX (t) == QUEUE_READY);
1419   QUEUE_INDEX (t) = QUEUE_NOWHERE;
1420
1421   return t;
1422 }
1423
1424 /* The following code implements multi-pass scheduling for the first
1425    cycle.  In other words, we will try to choose ready insn which
1426    permits to start maximum number of insns on the same cycle.  */
1427
1428 /* Return a pointer to the element INDEX from the ready.  INDEX for
1429    insn with the highest priority is 0, and the lowest priority has
1430    N_READY - 1.  */
1431
1432 rtx
1433 ready_element (struct ready_list *ready, int index)
1434 {
1435   gcc_assert (ready->n_ready && index < ready->n_ready);
1436
1437   return ready->vec[ready->first - index];
1438 }
1439
1440 /* Remove the element INDEX from the ready list and return it.  INDEX
1441    for insn with the highest priority is 0, and the lowest priority
1442    has N_READY - 1.  */
1443
1444 HAIFA_INLINE static rtx
1445 ready_remove (struct ready_list *ready, int index)
1446 {
1447   rtx t;
1448   int i;
1449
1450   if (index == 0)
1451     return ready_remove_first (ready);
1452   gcc_assert (ready->n_ready && index < ready->n_ready);
1453   t = ready->vec[ready->first - index];
1454   ready->n_ready--;
1455   if (DEBUG_INSN_P (t))
1456     ready->n_debug--;
1457   for (i = index; i < ready->n_ready; i++)
1458     ready->vec[ready->first - i] = ready->vec[ready->first - i - 1];
1459   QUEUE_INDEX (t) = QUEUE_NOWHERE;
1460   return t;
1461 }
1462
1463 /* Remove INSN from the ready list.  */
1464 static void
1465 ready_remove_insn (rtx insn)
1466 {
1467   int i;
1468
1469   for (i = 0; i < readyp->n_ready; i++)
1470     if (ready_element (readyp, i) == insn)
1471       {
1472         ready_remove (readyp, i);
1473         return;
1474       }
1475   gcc_unreachable ();
1476 }
1477
1478 /* Sort the ready list READY by ascending priority, using the SCHED_SORT
1479    macro.  */
1480
1481 void
1482 ready_sort (struct ready_list *ready)
1483 {
1484   int i;
1485   rtx *first = ready_lastpos (ready);
1486
1487   if (sched_pressure_p)
1488     {
1489       for (i = 0; i < ready->n_ready; i++)
1490         if (!DEBUG_INSN_P (first[i]))
1491           setup_insn_reg_pressure_info (first[i]);
1492     }
1493   SCHED_SORT (first, ready->n_ready);
1494 }
1495
1496 /* PREV is an insn that is ready to execute.  Adjust its priority if that
1497    will help shorten or lengthen register lifetimes as appropriate.  Also
1498    provide a hook for the target to tweak itself.  */
1499
1500 HAIFA_INLINE static void
1501 adjust_priority (rtx prev)
1502 {
1503   /* ??? There used to be code here to try and estimate how an insn
1504      affected register lifetimes, but it did it by looking at REG_DEAD
1505      notes, which we removed in schedule_region.  Nor did it try to
1506      take into account register pressure or anything useful like that.
1507
1508      Revisit when we have a machine model to work with and not before.  */
1509
1510   if (targetm.sched.adjust_priority)
1511     INSN_PRIORITY (prev) =
1512       targetm.sched.adjust_priority (prev, INSN_PRIORITY (prev));
1513 }
1514
1515 /* Advance DFA state STATE on one cycle.  */
1516 void
1517 advance_state (state_t state)
1518 {
1519   if (targetm.sched.dfa_pre_advance_cycle)
1520     targetm.sched.dfa_pre_advance_cycle ();
1521
1522   if (targetm.sched.dfa_pre_cycle_insn)
1523     state_transition (state,
1524                       targetm.sched.dfa_pre_cycle_insn ());
1525
1526   state_transition (state, NULL);
1527
1528   if (targetm.sched.dfa_post_cycle_insn)
1529     state_transition (state,
1530                       targetm.sched.dfa_post_cycle_insn ());
1531
1532   if (targetm.sched.dfa_post_advance_cycle)
1533     targetm.sched.dfa_post_advance_cycle ();
1534 }
1535
1536 /* Advance time on one cycle.  */
1537 HAIFA_INLINE static void
1538 advance_one_cycle (void)
1539 {
1540   advance_state (curr_state);
1541   if (sched_verbose >= 6)
1542     fprintf (sched_dump, ";;\tAdvanced a state.\n");
1543 }
1544
1545 /* Clock at which the previous instruction was issued.  */
1546 static int last_clock_var;
1547
1548 /* Update register pressure after scheduling INSN.  */
1549 static void
1550 update_register_pressure (rtx insn)
1551 {
1552   struct reg_use_data *use;
1553   struct reg_set_data *set;
1554
1555   gcc_checking_assert (!DEBUG_INSN_P (insn));
1556
1557   for (use = INSN_REG_USE_LIST (insn); use != NULL; use = use->next_insn_use)
1558     if (dying_use_p (use) && bitmap_bit_p (curr_reg_live, use->regno))
1559       mark_regno_birth_or_death (use->regno, false);
1560   for (set = INSN_REG_SET_LIST (insn); set != NULL; set = set->next_insn_set)
1561     mark_regno_birth_or_death (set->regno, true);
1562 }
1563
1564 /* Set up or update (if UPDATE_P) max register pressure (see its
1565    meaning in sched-int.h::_haifa_insn_data) for all current BB insns
1566    after insn AFTER.  */
1567 static void
1568 setup_insn_max_reg_pressure (rtx after, bool update_p)
1569 {
1570   int i, p;
1571   bool eq_p;
1572   rtx insn;
1573   static int max_reg_pressure[N_REG_CLASSES];
1574
1575   save_reg_pressure ();
1576   for (i = 0; i < ira_pressure_classes_num; i++)
1577     max_reg_pressure[ira_pressure_classes[i]]
1578       = curr_reg_pressure[ira_pressure_classes[i]];
1579   for (insn = NEXT_INSN (after);
1580        insn != NULL_RTX && ! BARRIER_P (insn)
1581          && BLOCK_FOR_INSN (insn) == BLOCK_FOR_INSN (after);
1582        insn = NEXT_INSN (insn))
1583     if (NONDEBUG_INSN_P (insn))
1584       {
1585         eq_p = true;
1586         for (i = 0; i < ira_pressure_classes_num; i++)
1587           {
1588             p = max_reg_pressure[ira_pressure_classes[i]];
1589             if (INSN_MAX_REG_PRESSURE (insn)[i] != p)
1590               {
1591                 eq_p = false;
1592                 INSN_MAX_REG_PRESSURE (insn)[i]
1593                   = max_reg_pressure[ira_pressure_classes[i]];
1594               }
1595           }
1596         if (update_p && eq_p)
1597           break;
1598         update_register_pressure (insn);
1599         for (i = 0; i < ira_pressure_classes_num; i++)
1600           if (max_reg_pressure[ira_pressure_classes[i]]
1601               < curr_reg_pressure[ira_pressure_classes[i]])
1602             max_reg_pressure[ira_pressure_classes[i]]
1603               = curr_reg_pressure[ira_pressure_classes[i]];
1604       }
1605   restore_reg_pressure ();
1606 }
1607
1608 /* Update the current register pressure after scheduling INSN.  Update
1609    also max register pressure for unscheduled insns of the current
1610    BB.  */
1611 static void
1612 update_reg_and_insn_max_reg_pressure (rtx insn)
1613 {
1614   int i;
1615   int before[N_REG_CLASSES];
1616
1617   for (i = 0; i < ira_pressure_classes_num; i++)
1618     before[i] = curr_reg_pressure[ira_pressure_classes[i]];
1619   update_register_pressure (insn);
1620   for (i = 0; i < ira_pressure_classes_num; i++)
1621     if (curr_reg_pressure[ira_pressure_classes[i]] != before[i])
1622       break;
1623   if (i < ira_pressure_classes_num)
1624     setup_insn_max_reg_pressure (insn, true);
1625 }
1626
1627 /* Set up register pressure at the beginning of basic block BB whose
1628    insns starting after insn AFTER.  Set up also max register pressure
1629    for all insns of the basic block.  */
1630 void
1631 sched_setup_bb_reg_pressure_info (basic_block bb, rtx after)
1632 {
1633   gcc_assert (sched_pressure_p);
1634   initiate_bb_reg_pressure_info (bb);
1635   setup_insn_max_reg_pressure (after, false);
1636 }
1637
1638 /* INSN is the "currently executing insn".  Launch each insn which was
1639    waiting on INSN.  READY is the ready list which contains the insns
1640    that are ready to fire.  CLOCK is the current cycle.  The function
1641    returns necessary cycle advance after issuing the insn (it is not
1642    zero for insns in a schedule group).  */
1643
1644 static int
1645 schedule_insn (rtx insn)
1646 {
1647   sd_iterator_def sd_it;
1648   dep_t dep;
1649   int i;
1650   int advance = 0;
1651
1652   if (sched_verbose >= 1)
1653     {
1654       struct reg_pressure_data *pressure_info;
1655       char buf[2048];
1656
1657       print_insn (buf, insn, 0);
1658       buf[40] = 0;
1659       fprintf (sched_dump, ";;\t%3i--> %-40s:", clock_var, buf);
1660
1661       if (recog_memoized (insn) < 0)
1662         fprintf (sched_dump, "nothing");
1663       else
1664         print_reservation (sched_dump, insn);
1665       pressure_info = INSN_REG_PRESSURE (insn);
1666       if (pressure_info != NULL)
1667         {
1668           fputc (':', sched_dump);
1669           for (i = 0; i < ira_pressure_classes_num; i++)
1670             fprintf (sched_dump, "%s%+d(%d)",
1671                      reg_class_names[ira_pressure_classes[i]],
1672                      pressure_info[i].set_increase, pressure_info[i].change);
1673         }
1674       fputc ('\n', sched_dump);
1675     }
1676
1677   if (sched_pressure_p && !DEBUG_INSN_P (insn))
1678     update_reg_and_insn_max_reg_pressure (insn);
1679
1680   /* Scheduling instruction should have all its dependencies resolved and
1681      should have been removed from the ready list.  */
1682   gcc_assert (sd_lists_empty_p (insn, SD_LIST_BACK));
1683
1684   /* Reset debug insns invalidated by moving this insn.  */
1685   if (MAY_HAVE_DEBUG_INSNS && !DEBUG_INSN_P (insn))
1686     for (sd_it = sd_iterator_start (insn, SD_LIST_BACK);
1687          sd_iterator_cond (&sd_it, &dep);)
1688       {
1689         rtx dbg = DEP_PRO (dep);
1690         struct reg_use_data *use, *next;
1691
1692         gcc_assert (DEBUG_INSN_P (dbg));
1693
1694         if (sched_verbose >= 6)
1695           fprintf (sched_dump, ";;\t\tresetting: debug insn %d\n",
1696                    INSN_UID (dbg));
1697
1698         /* ??? Rather than resetting the debug insn, we might be able
1699            to emit a debug temp before the just-scheduled insn, but
1700            this would involve checking that the expression at the
1701            point of the debug insn is equivalent to the expression
1702            before the just-scheduled insn.  They might not be: the
1703            expression in the debug insn may depend on other insns not
1704            yet scheduled that set MEMs, REGs or even other debug
1705            insns.  It's not clear that attempting to preserve debug
1706            information in these cases is worth the effort, given how
1707            uncommon these resets are and the likelihood that the debug
1708            temps introduced won't survive the schedule change.  */
1709         INSN_VAR_LOCATION_LOC (dbg) = gen_rtx_UNKNOWN_VAR_LOC ();
1710         df_insn_rescan (dbg);
1711
1712         /* Unknown location doesn't use any registers.  */
1713         for (use = INSN_REG_USE_LIST (dbg); use != NULL; use = next)
1714           {
1715             struct reg_use_data *prev = use;
1716
1717             /* Remove use from the cyclic next_regno_use chain first.  */
1718             while (prev->next_regno_use != use)
1719               prev = prev->next_regno_use;
1720             prev->next_regno_use = use->next_regno_use;
1721             next = use->next_insn_use;
1722             free (use);
1723           }
1724         INSN_REG_USE_LIST (dbg) = NULL;
1725
1726         /* We delete rather than resolve these deps, otherwise we
1727            crash in sched_free_deps(), because forward deps are
1728            expected to be released before backward deps.  */
1729         sd_delete_dep (sd_it);
1730       }
1731
1732   gcc_assert (QUEUE_INDEX (insn) == QUEUE_NOWHERE);
1733   QUEUE_INDEX (insn) = QUEUE_SCHEDULED;
1734
1735   gcc_assert (INSN_TICK (insn) >= MIN_TICK);
1736   if (INSN_TICK (insn) > clock_var)
1737     /* INSN has been prematurely moved from the queue to the ready list.
1738        This is possible only if following flag is set.  */
1739     gcc_assert (flag_sched_stalled_insns);
1740
1741   /* ??? Probably, if INSN is scheduled prematurely, we should leave
1742      INSN_TICK untouched.  This is a machine-dependent issue, actually.  */
1743   INSN_TICK (insn) = clock_var;
1744
1745   /* Update dependent instructions.  */
1746   for (sd_it = sd_iterator_start (insn, SD_LIST_FORW);
1747        sd_iterator_cond (&sd_it, &dep);)
1748     {
1749       rtx next = DEP_CON (dep);
1750
1751       /* Resolve the dependence between INSN and NEXT.
1752          sd_resolve_dep () moves current dep to another list thus
1753          advancing the iterator.  */
1754       sd_resolve_dep (sd_it);
1755
1756       /* Don't bother trying to mark next as ready if insn is a debug
1757          insn.  If insn is the last hard dependency, it will have
1758          already been discounted.  */
1759       if (DEBUG_INSN_P (insn) && !DEBUG_INSN_P (next))
1760         continue;
1761
1762       if (!IS_SPECULATION_BRANCHY_CHECK_P (insn))
1763         {
1764           int effective_cost;
1765
1766           effective_cost = try_ready (next);
1767
1768           if (effective_cost >= 0
1769               && SCHED_GROUP_P (next)
1770               && advance < effective_cost)
1771             advance = effective_cost;
1772         }
1773       else
1774         /* Check always has only one forward dependence (to the first insn in
1775            the recovery block), therefore, this will be executed only once.  */
1776         {
1777           gcc_assert (sd_lists_empty_p (insn, SD_LIST_FORW));
1778           fix_recovery_deps (RECOVERY_BLOCK (insn));
1779         }
1780     }
1781
1782   /* This is the place where scheduler doesn't *basically* need backward and
1783      forward dependencies for INSN anymore.  Nevertheless they are used in
1784      heuristics in rank_for_schedule (), early_queue_to_ready () and in
1785      some targets (e.g. rs6000).  Thus the earliest place where we *can*
1786      remove dependencies is after targetm.sched.finish () call in
1787      schedule_block ().  But, on the other side, the safest place to remove
1788      dependencies is when we are finishing scheduling entire region.  As we
1789      don't generate [many] dependencies during scheduling itself, we won't
1790      need memory until beginning of next region.
1791      Bottom line: Dependencies are removed for all insns in the end of
1792      scheduling the region.  */
1793
1794   /* Annotate the instruction with issue information -- TImode
1795      indicates that the instruction is expected not to be able
1796      to issue on the same cycle as the previous insn.  A machine
1797      may use this information to decide how the instruction should
1798      be aligned.  */
1799   if (issue_rate > 1
1800       && GET_CODE (PATTERN (insn)) != USE
1801       && GET_CODE (PATTERN (insn)) != CLOBBER
1802       && !DEBUG_INSN_P (insn))
1803     {
1804       if (reload_completed)
1805         PUT_MODE (insn, clock_var > last_clock_var ? TImode : VOIDmode);
1806       last_clock_var = clock_var;
1807     }
1808
1809   return advance;
1810 }
1811
1812 /* Functions for handling of notes.  */
1813
1814 /* Add note list that ends on FROM_END to the end of TO_ENDP.  */
1815 void
1816 concat_note_lists (rtx from_end, rtx *to_endp)
1817 {
1818   rtx from_start;
1819
1820   /* It's easy when have nothing to concat.  */
1821   if (from_end == NULL)
1822     return;
1823
1824   /* It's also easy when destination is empty.  */
1825   if (*to_endp == NULL)
1826     {
1827       *to_endp = from_end;
1828       return;
1829     }
1830
1831   from_start = from_end;
1832   while (PREV_INSN (from_start) != NULL)
1833     from_start = PREV_INSN (from_start);
1834
1835   PREV_INSN (from_start) = *to_endp;
1836   NEXT_INSN (*to_endp) = from_start;
1837   *to_endp = from_end;
1838 }
1839
1840 /* Delete notes between HEAD and TAIL and put them in the chain
1841    of notes ended by NOTE_LIST.  */
1842 void
1843 remove_notes (rtx head, rtx tail)
1844 {
1845   rtx next_tail, insn, next;
1846
1847   note_list = 0;
1848   if (head == tail && !INSN_P (head))
1849     return;
1850
1851   next_tail = NEXT_INSN (tail);
1852   for (insn = head; insn != next_tail; insn = next)
1853     {
1854       next = NEXT_INSN (insn);
1855       if (!NOTE_P (insn))
1856         continue;
1857
1858       switch (NOTE_KIND (insn))
1859         {
1860         case NOTE_INSN_BASIC_BLOCK:
1861           continue;
1862
1863         case NOTE_INSN_EPILOGUE_BEG:
1864           if (insn != tail)
1865             {
1866               remove_insn (insn);
1867               add_reg_note (next, REG_SAVE_NOTE,
1868                             GEN_INT (NOTE_INSN_EPILOGUE_BEG));
1869               break;
1870             }
1871           /* FALLTHRU */
1872
1873         default:
1874           remove_insn (insn);
1875
1876           /* Add the note to list that ends at NOTE_LIST.  */
1877           PREV_INSN (insn) = note_list;
1878           NEXT_INSN (insn) = NULL_RTX;
1879           if (note_list)
1880             NEXT_INSN (note_list) = insn;
1881           note_list = insn;
1882           break;
1883         }
1884
1885       gcc_assert ((sel_sched_p () || insn != tail) && insn != head);
1886     }
1887 }
1888
1889
1890 /* Return the head and tail pointers of ebb starting at BEG and ending
1891    at END.  */
1892 void
1893 get_ebb_head_tail (basic_block beg, basic_block end, rtx *headp, rtx *tailp)
1894 {
1895   rtx beg_head = BB_HEAD (beg);
1896   rtx beg_tail = BB_END (beg);
1897   rtx end_head = BB_HEAD (end);
1898   rtx end_tail = BB_END (end);
1899
1900   /* Don't include any notes or labels at the beginning of the BEG
1901      basic block, or notes at the end of the END basic blocks.  */
1902
1903   if (LABEL_P (beg_head))
1904     beg_head = NEXT_INSN (beg_head);
1905
1906   while (beg_head != beg_tail)
1907     if (NOTE_P (beg_head))
1908       beg_head = NEXT_INSN (beg_head);
1909     else if (DEBUG_INSN_P (beg_head))
1910       {
1911         rtx note, next;
1912
1913         for (note = NEXT_INSN (beg_head);
1914              note != beg_tail;
1915              note = next)
1916           {
1917             next = NEXT_INSN (note);
1918             if (NOTE_P (note))
1919               {
1920                 if (sched_verbose >= 9)
1921                   fprintf (sched_dump, "reorder %i\n", INSN_UID (note));
1922
1923                 reorder_insns_nobb (note, note, PREV_INSN (beg_head));
1924
1925                 if (BLOCK_FOR_INSN (note) != beg)
1926                   df_insn_change_bb (note, beg);
1927               }
1928             else if (!DEBUG_INSN_P (note))
1929               break;
1930           }
1931
1932         break;
1933       }
1934     else
1935       break;
1936
1937   *headp = beg_head;
1938
1939   if (beg == end)
1940     end_head = beg_head;
1941   else if (LABEL_P (end_head))
1942     end_head = NEXT_INSN (end_head);
1943
1944   while (end_head != end_tail)
1945     if (NOTE_P (end_tail))
1946       end_tail = PREV_INSN (end_tail);
1947     else if (DEBUG_INSN_P (end_tail))
1948       {
1949         rtx note, prev;
1950
1951         for (note = PREV_INSN (end_tail);
1952              note != end_head;
1953              note = prev)
1954           {
1955             prev = PREV_INSN (note);
1956             if (NOTE_P (note))
1957               {
1958                 if (sched_verbose >= 9)
1959                   fprintf (sched_dump, "reorder %i\n", INSN_UID (note));
1960
1961                 reorder_insns_nobb (note, note, end_tail);
1962
1963                 if (end_tail == BB_END (end))
1964                   BB_END (end) = note;
1965
1966                 if (BLOCK_FOR_INSN (note) != end)
1967                   df_insn_change_bb (note, end);
1968               }
1969             else if (!DEBUG_INSN_P (note))
1970               break;
1971           }
1972
1973         break;
1974       }
1975     else
1976       break;
1977
1978   *tailp = end_tail;
1979 }
1980
1981 /* Return nonzero if there are no real insns in the range [ HEAD, TAIL ].  */
1982
1983 int
1984 no_real_insns_p (const_rtx head, const_rtx tail)
1985 {
1986   while (head != NEXT_INSN (tail))
1987     {
1988       if (!NOTE_P (head) && !LABEL_P (head))
1989         return 0;
1990       head = NEXT_INSN (head);
1991     }
1992   return 1;
1993 }
1994
1995 /* Restore-other-notes: NOTE_LIST is the end of a chain of notes
1996    previously found among the insns.  Insert them just before HEAD.  */
1997 rtx
1998 restore_other_notes (rtx head, basic_block head_bb)
1999 {
2000   if (note_list != 0)
2001     {
2002       rtx note_head = note_list;
2003
2004       if (head)
2005         head_bb = BLOCK_FOR_INSN (head);
2006       else
2007         head = NEXT_INSN (bb_note (head_bb));
2008
2009       while (PREV_INSN (note_head))
2010         {
2011           set_block_for_insn (note_head, head_bb);
2012           note_head = PREV_INSN (note_head);
2013         }
2014       /* In the above cycle we've missed this note.  */
2015       set_block_for_insn (note_head, head_bb);
2016
2017       PREV_INSN (note_head) = PREV_INSN (head);
2018       NEXT_INSN (PREV_INSN (head)) = note_head;
2019       PREV_INSN (head) = note_list;
2020       NEXT_INSN (note_list) = head;
2021
2022       if (BLOCK_FOR_INSN (head) != head_bb)
2023         BB_END (head_bb) = note_list;
2024
2025       head = note_head;
2026     }
2027
2028   return head;
2029 }
2030
2031 /* Move insns that became ready to fire from queue to ready list.  */
2032
2033 static void
2034 queue_to_ready (struct ready_list *ready)
2035 {
2036   rtx insn;
2037   rtx link;
2038   rtx skip_insn;
2039
2040   q_ptr = NEXT_Q (q_ptr);
2041
2042   if (dbg_cnt (sched_insn) == false)
2043     {
2044       /* If debug counter is activated do not requeue the first
2045          nonscheduled insn.  */
2046       skip_insn = nonscheduled_insns_begin;
2047       do
2048         {
2049           skip_insn = next_nonnote_nondebug_insn (skip_insn);
2050         }
2051       while (QUEUE_INDEX (skip_insn) == QUEUE_SCHEDULED);
2052     }
2053   else
2054     skip_insn = NULL_RTX;
2055
2056   /* Add all pending insns that can be scheduled without stalls to the
2057      ready list.  */
2058   for (link = insn_queue[q_ptr]; link; link = XEXP (link, 1))
2059     {
2060       insn = XEXP (link, 0);
2061       q_size -= 1;
2062
2063       if (sched_verbose >= 2)
2064         fprintf (sched_dump, ";;\t\tQ-->Ready: insn %s: ",
2065                  (*current_sched_info->print_insn) (insn, 0));
2066
2067       /* If the ready list is full, delay the insn for 1 cycle.
2068          See the comment in schedule_block for the rationale.  */
2069       if (!reload_completed
2070           && ready->n_ready - ready->n_debug > MAX_SCHED_READY_INSNS
2071           && !SCHED_GROUP_P (insn)
2072           && insn != skip_insn)
2073         queue_insn (insn, 1, "ready full");
2074       else
2075         {
2076           ready_add (ready, insn, false);
2077           if (sched_verbose >= 2)
2078             fprintf (sched_dump, "moving to ready without stalls\n");
2079         }
2080     }
2081   free_INSN_LIST_list (&insn_queue[q_ptr]);
2082
2083   /* If there are no ready insns, stall until one is ready and add all
2084      of the pending insns at that point to the ready list.  */
2085   if (ready->n_ready == 0)
2086     {
2087       int stalls;
2088
2089       for (stalls = 1; stalls <= max_insn_queue_index; stalls++)
2090         {
2091           if ((link = insn_queue[NEXT_Q_AFTER (q_ptr, stalls)]))
2092             {
2093               for (; link; link = XEXP (link, 1))
2094                 {
2095                   insn = XEXP (link, 0);
2096                   q_size -= 1;
2097
2098                   if (sched_verbose >= 2)
2099                     fprintf (sched_dump, ";;\t\tQ-->Ready: insn %s: ",
2100                              (*current_sched_info->print_insn) (insn, 0));
2101
2102                   ready_add (ready, insn, false);
2103                   if (sched_verbose >= 2)
2104                     fprintf (sched_dump, "moving to ready with %d stalls\n", stalls);
2105                 }
2106               free_INSN_LIST_list (&insn_queue[NEXT_Q_AFTER (q_ptr, stalls)]);
2107
2108               advance_one_cycle ();
2109
2110               break;
2111             }
2112
2113           advance_one_cycle ();
2114         }
2115
2116       q_ptr = NEXT_Q_AFTER (q_ptr, stalls);
2117       clock_var += stalls;
2118     }
2119 }
2120
2121 /* Used by early_queue_to_ready.  Determines whether it is "ok" to
2122    prematurely move INSN from the queue to the ready list.  Currently,
2123    if a target defines the hook 'is_costly_dependence', this function
2124    uses the hook to check whether there exist any dependences which are
2125    considered costly by the target, between INSN and other insns that
2126    have already been scheduled.  Dependences are checked up to Y cycles
2127    back, with default Y=1; The flag -fsched-stalled-insns-dep=Y allows
2128    controlling this value.
2129    (Other considerations could be taken into account instead (or in
2130    addition) depending on user flags and target hooks.  */
2131
2132 static bool
2133 ok_for_early_queue_removal (rtx insn)
2134 {
2135   if (targetm.sched.is_costly_dependence)
2136     {
2137       rtx prev_insn;
2138       int n_cycles;
2139       int i = VEC_length (rtx, scheduled_insns);
2140       for (n_cycles = flag_sched_stalled_insns_dep; n_cycles; n_cycles--)
2141         {
2142           while (i-- > 0)
2143             {
2144               int cost;
2145
2146               prev_insn = VEC_index (rtx, scheduled_insns, i);
2147
2148               if (!NOTE_P (prev_insn))
2149                 {
2150                   dep_t dep;
2151
2152                   dep = sd_find_dep_between (prev_insn, insn, true);
2153
2154                   if (dep != NULL)
2155                     {
2156                       cost = dep_cost (dep);
2157
2158                       if (targetm.sched.is_costly_dependence (dep, cost,
2159                                 flag_sched_stalled_insns_dep - n_cycles))
2160                         return false;
2161                     }
2162                 }
2163
2164               if (GET_MODE (prev_insn) == TImode) /* end of dispatch group */
2165                 break;
2166             }
2167
2168           if (i == 0)
2169             break;
2170         }
2171     }
2172
2173   return true;
2174 }
2175
2176
2177 /* Remove insns from the queue, before they become "ready" with respect
2178    to FU latency considerations.  */
2179
2180 static int
2181 early_queue_to_ready (state_t state, struct ready_list *ready)
2182 {
2183   rtx insn;
2184   rtx link;
2185   rtx next_link;
2186   rtx prev_link;
2187   bool move_to_ready;
2188   int cost;
2189   state_t temp_state = alloca (dfa_state_size);
2190   int stalls;
2191   int insns_removed = 0;
2192
2193   /*
2194      Flag '-fsched-stalled-insns=X' determines the aggressiveness of this
2195      function:
2196
2197      X == 0: There is no limit on how many queued insns can be removed
2198              prematurely.  (flag_sched_stalled_insns = -1).
2199
2200      X >= 1: Only X queued insns can be removed prematurely in each
2201              invocation.  (flag_sched_stalled_insns = X).
2202
2203      Otherwise: Early queue removal is disabled.
2204          (flag_sched_stalled_insns = 0)
2205   */
2206
2207   if (! flag_sched_stalled_insns)
2208     return 0;
2209
2210   for (stalls = 0; stalls <= max_insn_queue_index; stalls++)
2211     {
2212       if ((link = insn_queue[NEXT_Q_AFTER (q_ptr, stalls)]))
2213         {
2214           if (sched_verbose > 6)
2215             fprintf (sched_dump, ";; look at index %d + %d\n", q_ptr, stalls);
2216
2217           prev_link = 0;
2218           while (link)
2219             {
2220               next_link = XEXP (link, 1);
2221               insn = XEXP (link, 0);
2222               if (insn && sched_verbose > 6)
2223                 print_rtl_single (sched_dump, insn);
2224
2225               memcpy (temp_state, state, dfa_state_size);
2226               if (recog_memoized (insn) < 0)
2227                 /* non-negative to indicate that it's not ready
2228                    to avoid infinite Q->R->Q->R... */
2229                 cost = 0;
2230               else
2231                 cost = state_transition (temp_state, insn);
2232
2233               if (sched_verbose >= 6)
2234                 fprintf (sched_dump, "transition cost = %d\n", cost);
2235
2236               move_to_ready = false;
2237               if (cost < 0)
2238                 {
2239                   move_to_ready = ok_for_early_queue_removal (insn);
2240                   if (move_to_ready == true)
2241                     {
2242                       /* move from Q to R */
2243                       q_size -= 1;
2244                       ready_add (ready, insn, false);
2245
2246                       if (prev_link)
2247                         XEXP (prev_link, 1) = next_link;
2248                       else
2249                         insn_queue[NEXT_Q_AFTER (q_ptr, stalls)] = next_link;
2250
2251                       free_INSN_LIST_node (link);
2252
2253                       if (sched_verbose >= 2)
2254                         fprintf (sched_dump, ";;\t\tEarly Q-->Ready: insn %s\n",
2255                                  (*current_sched_info->print_insn) (insn, 0));
2256
2257                       insns_removed++;
2258                       if (insns_removed == flag_sched_stalled_insns)
2259                         /* Remove no more than flag_sched_stalled_insns insns
2260                            from Q at a time.  */
2261                         return insns_removed;
2262                     }
2263                 }
2264
2265               if (move_to_ready == false)
2266                 prev_link = link;
2267
2268               link = next_link;
2269             } /* while link */
2270         } /* if link */
2271
2272     } /* for stalls.. */
2273
2274   return insns_removed;
2275 }
2276
2277
2278 /* Print the ready list for debugging purposes.  Callable from debugger.  */
2279
2280 static void
2281 debug_ready_list (struct ready_list *ready)
2282 {
2283   rtx *p;
2284   int i;
2285
2286   if (ready->n_ready == 0)
2287     {
2288       fprintf (sched_dump, "\n");
2289       return;
2290     }
2291
2292   p = ready_lastpos (ready);
2293   for (i = 0; i < ready->n_ready; i++)
2294     {
2295       fprintf (sched_dump, "  %s:%d",
2296                (*current_sched_info->print_insn) (p[i], 0),
2297                INSN_LUID (p[i]));
2298       if (sched_pressure_p)
2299         fprintf (sched_dump, "(cost=%d",
2300                  INSN_REG_PRESSURE_EXCESS_COST_CHANGE (p[i]));
2301       if (INSN_TICK (p[i]) > clock_var)
2302         fprintf (sched_dump, ":delay=%d", INSN_TICK (p[i]) - clock_var);
2303       if (sched_pressure_p)
2304         fprintf (sched_dump, ")");
2305     }
2306   fprintf (sched_dump, "\n");
2307 }
2308
2309 /* Search INSN for REG_SAVE_NOTE notes and convert them back into insn
2310    NOTEs.  This is used for NOTE_INSN_EPILOGUE_BEG, so that sched-ebb
2311    replaces the epilogue note in the correct basic block.  */
2312 void
2313 reemit_notes (rtx insn)
2314 {
2315   rtx note, last = insn;
2316
2317   for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
2318     {
2319       if (REG_NOTE_KIND (note) == REG_SAVE_NOTE)
2320         {
2321           enum insn_note note_type = (enum insn_note) INTVAL (XEXP (note, 0));
2322
2323           last = emit_note_before (note_type, last);
2324           remove_note (insn, note);
2325         }
2326     }
2327 }
2328
2329 /* Move INSN.  Reemit notes if needed.  Update CFG, if needed.  */
2330 static void
2331 move_insn (rtx insn, rtx last, rtx nt)
2332 {
2333   if (PREV_INSN (insn) != last)
2334     {
2335       basic_block bb;
2336       rtx note;
2337       int jump_p = 0;
2338
2339       bb = BLOCK_FOR_INSN (insn);
2340
2341       /* BB_HEAD is either LABEL or NOTE.  */
2342       gcc_assert (BB_HEAD (bb) != insn);
2343
2344       if (BB_END (bb) == insn)
2345         /* If this is last instruction in BB, move end marker one
2346            instruction up.  */
2347         {
2348           /* Jumps are always placed at the end of basic block.  */
2349           jump_p = control_flow_insn_p (insn);
2350
2351           gcc_assert (!jump_p
2352                       || ((common_sched_info->sched_pass_id == SCHED_RGN_PASS)
2353                           && IS_SPECULATION_BRANCHY_CHECK_P (insn))
2354                       || (common_sched_info->sched_pass_id
2355                           == SCHED_EBB_PASS));
2356
2357           gcc_assert (BLOCK_FOR_INSN (PREV_INSN (insn)) == bb);
2358
2359           BB_END (bb) = PREV_INSN (insn);
2360         }
2361
2362       gcc_assert (BB_END (bb) != last);
2363
2364       if (jump_p)
2365         /* We move the block note along with jump.  */
2366         {
2367           gcc_assert (nt);
2368
2369           note = NEXT_INSN (insn);
2370           while (NOTE_NOT_BB_P (note) && note != nt)
2371             note = NEXT_INSN (note);
2372
2373           if (note != nt
2374               && (LABEL_P (note)
2375                   || BARRIER_P (note)))
2376             note = NEXT_INSN (note);
2377
2378           gcc_assert (NOTE_INSN_BASIC_BLOCK_P (note));
2379         }
2380       else
2381         note = insn;
2382
2383       NEXT_INSN (PREV_INSN (insn)) = NEXT_INSN (note);
2384       PREV_INSN (NEXT_INSN (note)) = PREV_INSN (insn);
2385
2386       NEXT_INSN (note) = NEXT_INSN (last);
2387       PREV_INSN (NEXT_INSN (last)) = note;
2388
2389       NEXT_INSN (last) = insn;
2390       PREV_INSN (insn) = last;
2391
2392       bb = BLOCK_FOR_INSN (last);
2393
2394       if (jump_p)
2395         {
2396           fix_jump_move (insn);
2397
2398           if (BLOCK_FOR_INSN (insn) != bb)
2399             move_block_after_check (insn);
2400
2401           gcc_assert (BB_END (bb) == last);
2402         }
2403
2404       df_insn_change_bb (insn, bb);
2405
2406       /* Update BB_END, if needed.  */
2407       if (BB_END (bb) == last)
2408         BB_END (bb) = insn;
2409     }
2410
2411   SCHED_GROUP_P (insn) = 0;
2412 }
2413
2414 /* Return true if scheduling INSN will finish current clock cycle.  */
2415 static bool
2416 insn_finishes_cycle_p (rtx insn)
2417 {
2418   if (SCHED_GROUP_P (insn))
2419     /* After issuing INSN, rest of the sched_group will be forced to issue
2420        in order.  Don't make any plans for the rest of cycle.  */
2421     return true;
2422
2423   /* Finishing the block will, apparently, finish the cycle.  */
2424   if (current_sched_info->insn_finishes_block_p
2425       && current_sched_info->insn_finishes_block_p (insn))
2426     return true;
2427
2428   return false;
2429 }
2430
2431 /* Define type for target data used in multipass scheduling.  */
2432 #ifndef TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DATA_T
2433 # define TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DATA_T int
2434 #endif
2435 typedef TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DATA_T first_cycle_multipass_data_t;
2436
2437 /* The following structure describe an entry of the stack of choices.  */
2438 struct choice_entry
2439 {
2440   /* Ordinal number of the issued insn in the ready queue.  */
2441   int index;
2442   /* The number of the rest insns whose issues we should try.  */
2443   int rest;
2444   /* The number of issued essential insns.  */
2445   int n;
2446   /* State after issuing the insn.  */
2447   state_t state;
2448   /* Target-specific data.  */
2449   first_cycle_multipass_data_t target_data;
2450 };
2451
2452 /* The following array is used to implement a stack of choices used in
2453    function max_issue.  */
2454 static struct choice_entry *choice_stack;
2455
2456 /* The following variable value is number of essential insns issued on
2457    the current cycle.  An insn is essential one if it changes the
2458    processors state.  */
2459 int cycle_issued_insns;
2460
2461 /* This holds the value of the target dfa_lookahead hook.  */
2462 int dfa_lookahead;
2463
2464 /* The following variable value is maximal number of tries of issuing
2465    insns for the first cycle multipass insn scheduling.  We define
2466    this value as constant*(DFA_LOOKAHEAD**ISSUE_RATE).  We would not
2467    need this constraint if all real insns (with non-negative codes)
2468    had reservations because in this case the algorithm complexity is
2469    O(DFA_LOOKAHEAD**ISSUE_RATE).  Unfortunately, the dfa descriptions
2470    might be incomplete and such insn might occur.  For such
2471    descriptions, the complexity of algorithm (without the constraint)
2472    could achieve DFA_LOOKAHEAD ** N , where N is the queue length.  */
2473 static int max_lookahead_tries;
2474
2475 /* The following value is value of hook
2476    `first_cycle_multipass_dfa_lookahead' at the last call of
2477    `max_issue'.  */
2478 static int cached_first_cycle_multipass_dfa_lookahead = 0;
2479
2480 /* The following value is value of `issue_rate' at the last call of
2481    `sched_init'.  */
2482 static int cached_issue_rate = 0;
2483
2484 /* The following function returns maximal (or close to maximal) number
2485    of insns which can be issued on the same cycle and one of which
2486    insns is insns with the best rank (the first insn in READY).  To
2487    make this function tries different samples of ready insns.  READY
2488    is current queue `ready'.  Global array READY_TRY reflects what
2489    insns are already issued in this try.  The function stops immediately,
2490    if it reached the such a solution, that all instruction can be issued.
2491    INDEX will contain index of the best insn in READY.  The following
2492    function is used only for first cycle multipass scheduling.
2493
2494    PRIVILEGED_N >= 0
2495
2496    This function expects recognized insns only.  All USEs,
2497    CLOBBERs, etc must be filtered elsewhere.  */
2498 int
2499 max_issue (struct ready_list *ready, int privileged_n, state_t state,
2500            bool first_cycle_insn_p, int *index)
2501 {
2502   int n, i, all, n_ready, best, delay, tries_num;
2503   int more_issue;
2504   struct choice_entry *top;
2505   rtx insn;
2506
2507   n_ready = ready->n_ready;
2508   gcc_assert (dfa_lookahead >= 1 && privileged_n >= 0
2509               && privileged_n <= n_ready);
2510
2511   /* Init MAX_LOOKAHEAD_TRIES.  */
2512   if (cached_first_cycle_multipass_dfa_lookahead != dfa_lookahead)
2513     {
2514       cached_first_cycle_multipass_dfa_lookahead = dfa_lookahead;
2515       max_lookahead_tries = 100;
2516       for (i = 0; i < issue_rate; i++)
2517         max_lookahead_tries *= dfa_lookahead;
2518     }
2519
2520   /* Init max_points.  */
2521   more_issue = issue_rate - cycle_issued_insns;
2522   gcc_assert (more_issue >= 0);
2523
2524   /* The number of the issued insns in the best solution.  */
2525   best = 0;
2526
2527   top = choice_stack;
2528
2529   /* Set initial state of the search.  */
2530   memcpy (top->state, state, dfa_state_size);
2531   top->rest = dfa_lookahead;
2532   top->n = 0;
2533   if (targetm.sched.first_cycle_multipass_begin)
2534     targetm.sched.first_cycle_multipass_begin (&top->target_data,
2535                                                ready_try, n_ready,
2536                                                first_cycle_insn_p);
2537
2538   /* Count the number of the insns to search among.  */
2539   for (all = i = 0; i < n_ready; i++)
2540     if (!ready_try [i])
2541       all++;
2542
2543   /* I is the index of the insn to try next.  */
2544   i = 0;
2545   tries_num = 0;
2546   for (;;)
2547     {
2548       if (/* If we've reached a dead end or searched enough of what we have
2549              been asked...  */
2550           top->rest == 0
2551           /* or have nothing else to try...  */
2552           || i >= n_ready
2553           /* or should not issue more.  */
2554           || top->n >= more_issue)
2555         {
2556           /* ??? (... || i == n_ready).  */
2557           gcc_assert (i <= n_ready);
2558
2559           /* We should not issue more than issue_rate instructions.  */
2560           gcc_assert (top->n <= more_issue);
2561
2562           if (top == choice_stack)
2563             break;
2564
2565           if (best < top - choice_stack)
2566             {
2567               if (privileged_n)
2568                 {
2569                   n = privileged_n;
2570                   /* Try to find issued privileged insn.  */
2571                   while (n && !ready_try[--n])
2572                     ;
2573                 }
2574
2575               if (/* If all insns are equally good...  */
2576                   privileged_n == 0
2577                   /* Or a privileged insn will be issued.  */
2578                   || ready_try[n])
2579                 /* Then we have a solution.  */
2580                 {
2581                   best = top - choice_stack;
2582                   /* This is the index of the insn issued first in this
2583                      solution.  */
2584                   *index = choice_stack [1].index;
2585                   if (top->n == more_issue || best == all)
2586                     break;
2587                 }
2588             }
2589
2590           /* Set ready-list index to point to the last insn
2591              ('i++' below will advance it to the next insn).  */
2592           i = top->index;
2593
2594           /* Backtrack.  */
2595           ready_try [i] = 0;
2596
2597           if (targetm.sched.first_cycle_multipass_backtrack)
2598             targetm.sched.first_cycle_multipass_backtrack (&top->target_data,
2599                                                            ready_try, n_ready);
2600
2601           top--;
2602           memcpy (state, top->state, dfa_state_size);
2603         }
2604       else if (!ready_try [i])
2605         {
2606           tries_num++;
2607           if (tries_num > max_lookahead_tries)
2608             break;
2609           insn = ready_element (ready, i);
2610           delay = state_transition (state, insn);
2611           if (delay < 0)
2612             {
2613               if (state_dead_lock_p (state)
2614                   || insn_finishes_cycle_p (insn))
2615                 /* We won't issue any more instructions in the next
2616                    choice_state.  */
2617                 top->rest = 0;
2618               else
2619                 top->rest--;
2620
2621               n = top->n;
2622               if (memcmp (top->state, state, dfa_state_size) != 0)
2623                 n++;
2624
2625               /* Advance to the next choice_entry.  */
2626               top++;
2627               /* Initialize it.  */
2628               top->rest = dfa_lookahead;
2629               top->index = i;
2630               top->n = n;
2631               memcpy (top->state, state, dfa_state_size);
2632               ready_try [i] = 1;
2633
2634               if (targetm.sched.first_cycle_multipass_issue)
2635                 targetm.sched.first_cycle_multipass_issue (&top->target_data,
2636                                                            ready_try, n_ready,
2637                                                            insn,
2638                                                            &((top - 1)
2639                                                              ->target_data));
2640
2641               i = -1;
2642             }
2643         }
2644
2645       /* Increase ready-list index.  */
2646       i++;
2647     }
2648
2649   if (targetm.sched.first_cycle_multipass_end)
2650     targetm.sched.first_cycle_multipass_end (best != 0
2651                                              ? &choice_stack[1].target_data
2652                                              : NULL);
2653
2654   /* Restore the original state of the DFA.  */
2655   memcpy (state, choice_stack->state, dfa_state_size);
2656
2657   return best;
2658 }
2659
2660 /* The following function chooses insn from READY and modifies
2661    READY.  The following function is used only for first
2662    cycle multipass scheduling.
2663    Return:
2664    -1 if cycle should be advanced,
2665    0 if INSN_PTR is set to point to the desirable insn,
2666    1 if choose_ready () should be restarted without advancing the cycle.  */
2667 static int
2668 choose_ready (struct ready_list *ready, bool first_cycle_insn_p,
2669               rtx *insn_ptr)
2670 {
2671   int lookahead;
2672
2673   if (dbg_cnt (sched_insn) == false)
2674     {
2675       rtx insn = nonscheduled_insns_begin;
2676       do
2677         {
2678           insn = next_nonnote_insn (insn);
2679         }
2680       while (QUEUE_INDEX (insn) == QUEUE_SCHEDULED);
2681
2682       if (QUEUE_INDEX (insn) == QUEUE_READY)
2683         /* INSN is in the ready_list.  */
2684         {
2685           nonscheduled_insns_begin = insn;
2686           ready_remove_insn (insn);
2687           *insn_ptr = insn;
2688           return 0;
2689         }
2690
2691       /* INSN is in the queue.  Advance cycle to move it to the ready list.  */
2692       return -1;
2693     }
2694
2695   lookahead = 0;
2696
2697   if (targetm.sched.first_cycle_multipass_dfa_lookahead)
2698     lookahead = targetm.sched.first_cycle_multipass_dfa_lookahead ();
2699   if (lookahead <= 0 || SCHED_GROUP_P (ready_element (ready, 0))
2700       || DEBUG_INSN_P (ready_element (ready, 0)))
2701     {
2702       if (targetm.sched.dispatch (NULL_RTX, IS_DISPATCH_ON))
2703         *insn_ptr = ready_remove_first_dispatch (ready);
2704       else
2705         *insn_ptr = ready_remove_first (ready);
2706
2707       return 0;
2708     }
2709   else
2710     {
2711       /* Try to choose the better insn.  */
2712       int index = 0, i, n;
2713       rtx insn;
2714       int try_data = 1, try_control = 1;
2715       ds_t ts;
2716
2717       insn = ready_element (ready, 0);
2718       if (INSN_CODE (insn) < 0)
2719         {
2720           *insn_ptr = ready_remove_first (ready);
2721           return 0;
2722         }
2723
2724       if (spec_info
2725           && spec_info->flags & (PREFER_NON_DATA_SPEC
2726                                  | PREFER_NON_CONTROL_SPEC))
2727         {
2728           for (i = 0, n = ready->n_ready; i < n; i++)
2729             {
2730               rtx x;
2731               ds_t s;
2732
2733               x = ready_element (ready, i);
2734               s = TODO_SPEC (x);
2735
2736               if (spec_info->flags & PREFER_NON_DATA_SPEC
2737                   && !(s & DATA_SPEC))
2738                 {
2739                   try_data = 0;
2740                   if (!(spec_info->flags & PREFER_NON_CONTROL_SPEC)
2741                       || !try_control)
2742                     break;
2743                 }
2744
2745               if (spec_info->flags & PREFER_NON_CONTROL_SPEC
2746                   && !(s & CONTROL_SPEC))
2747                 {
2748                   try_control = 0;
2749                   if (!(spec_info->flags & PREFER_NON_DATA_SPEC) || !try_data)
2750                     break;
2751                 }
2752             }
2753         }
2754
2755       ts = TODO_SPEC (insn);
2756       if ((ts & SPECULATIVE)
2757           && (((!try_data && (ts & DATA_SPEC))
2758                || (!try_control && (ts & CONTROL_SPEC)))
2759               || (targetm.sched.first_cycle_multipass_dfa_lookahead_guard_spec
2760                   && !targetm.sched
2761                   .first_cycle_multipass_dfa_lookahead_guard_spec (insn))))
2762         /* Discard speculative instruction that stands first in the ready
2763            list.  */
2764         {
2765           change_queue_index (insn, 1);
2766           return 1;
2767         }
2768
2769       ready_try[0] = 0;
2770
2771       for (i = 1; i < ready->n_ready; i++)
2772         {
2773           insn = ready_element (ready, i);
2774
2775           ready_try [i]
2776             = ((!try_data && (TODO_SPEC (insn) & DATA_SPEC))
2777                || (!try_control && (TODO_SPEC (insn) & CONTROL_SPEC)));
2778         }
2779
2780       /* Let the target filter the search space.  */
2781       for (i = 1; i < ready->n_ready; i++)
2782         if (!ready_try[i])
2783           {
2784             insn = ready_element (ready, i);
2785
2786             /* If this insn is recognizable we should have already
2787                recognized it earlier.
2788                ??? Not very clear where this is supposed to be done.
2789                See dep_cost_1.  */
2790             gcc_checking_assert (INSN_CODE (insn) >= 0
2791                                  || recog_memoized (insn) < 0);
2792
2793             ready_try [i]
2794               = (/* INSN_CODE check can be omitted here as it is also done later
2795                     in max_issue ().  */
2796                  INSN_CODE (insn) < 0
2797                  || (targetm.sched.first_cycle_multipass_dfa_lookahead_guard
2798                      && !targetm.sched.first_cycle_multipass_dfa_lookahead_guard
2799                      (insn)));
2800           }
2801
2802       if (max_issue (ready, 1, curr_state, first_cycle_insn_p, &index) == 0)
2803         {
2804           *insn_ptr = ready_remove_first (ready);
2805           if (sched_verbose >= 4)
2806             fprintf (sched_dump, ";;\t\tChosen insn (but can't issue) : %s \n",
2807                      (*current_sched_info->print_insn) (*insn_ptr, 0));
2808           return 0;
2809         }
2810       else
2811         {
2812           if (sched_verbose >= 4)
2813             fprintf (sched_dump, ";;\t\tChosen insn : %s\n",
2814                      (*current_sched_info->print_insn)
2815                      (ready_element (ready, index), 0));
2816
2817           *insn_ptr = ready_remove (ready, index);
2818           return 0;
2819         }
2820     }
2821 }
2822
2823 /* This function is called when we have successfully scheduled a
2824    block.  It uses the schedule stored in the scheduled_insns vector
2825    to rearrange the RTL.  PREV_HEAD is used as the anchor to which we
2826    append the scheduled insns; TAIL is the insn after the scheduled
2827    block.  TARGET_BB is the argument passed to schedule_block.  */
2828
2829 static void
2830 commit_schedule (rtx prev_head, rtx tail, basic_block *target_bb)
2831 {
2832   unsigned int i;
2833   rtx insn;
2834
2835   last_scheduled_insn = prev_head;
2836   for (i = 0;
2837        VEC_iterate (rtx, scheduled_insns, i, insn);
2838        i++)
2839     {
2840       if (control_flow_insn_p (last_scheduled_insn)
2841           || current_sched_info->advance_target_bb (*target_bb, insn))
2842         {
2843           *target_bb = current_sched_info->advance_target_bb (*target_bb, 0);
2844
2845           if (sched_verbose)
2846             {
2847               rtx x;
2848
2849               x = next_real_insn (last_scheduled_insn);
2850               gcc_assert (x);
2851               dump_new_block_header (1, *target_bb, x, tail);
2852             }
2853
2854           last_scheduled_insn = bb_note (*target_bb);
2855         }
2856
2857       if (current_sched_info->begin_move_insn)
2858         (*current_sched_info->begin_move_insn) (insn, last_scheduled_insn);
2859       move_insn (insn, last_scheduled_insn,
2860                  current_sched_info->next_tail);
2861       if (!DEBUG_INSN_P (insn))
2862         reemit_notes (insn);
2863       last_scheduled_insn = insn;
2864     }
2865
2866   VEC_truncate (rtx, scheduled_insns, 0);
2867 }
2868
2869 /* Examine all insns on the ready list and queue those which can't be
2870    issued in this cycle.  TEMP_STATE is temporary scheduler state we
2871    can use as scratch space.  If FIRST_CYCLE_INSN_P is true, no insns
2872    have been issued for the current cycle, which means it is valid to
2873    issue an asm statement.  */
2874
2875 static void
2876 prune_ready_list (state_t temp_state, bool first_cycle_insn_p)
2877 {
2878   int i;
2879
2880  restart:
2881   for (i = 0; i < ready.n_ready; i++)
2882     {
2883       rtx insn = ready_element (&ready, i);
2884       int cost = 0;
2885       const char *reason = "resource conflict";
2886
2887       if (recog_memoized (insn) < 0)
2888         {
2889           if (!first_cycle_insn_p
2890               && (GET_CODE (PATTERN (insn)) == ASM_INPUT
2891                   || asm_noperands (PATTERN (insn)) >= 0))
2892             cost = 1;
2893           reason = "asm";
2894         }
2895       else if (sched_pressure_p)
2896         cost = 0;
2897       else
2898         {
2899           memcpy (temp_state, curr_state, dfa_state_size);
2900           cost = state_transition (temp_state, insn);
2901           if (cost < 0)
2902             cost = 0;
2903           else if (cost == 0)
2904             cost = 1;
2905         }
2906       if (cost >= 1)
2907         {
2908           ready_remove (&ready, i);
2909           queue_insn (insn, cost, reason);
2910           goto restart;
2911         }
2912     }
2913 }
2914
2915 /* Use forward list scheduling to rearrange insns of block pointed to by
2916    TARGET_BB, possibly bringing insns from subsequent blocks in the same
2917    region.  */
2918
2919 void
2920 schedule_block (basic_block *target_bb)
2921 {
2922   int i;
2923   bool first_cycle_insn_p;
2924   int can_issue_more;
2925   state_t temp_state = NULL;  /* It is used for multipass scheduling.  */
2926   int sort_p, advance, start_clock_var;
2927
2928   /* Head/tail info for this block.  */
2929   rtx prev_head = current_sched_info->prev_head;
2930   rtx next_tail = current_sched_info->next_tail;
2931   rtx head = NEXT_INSN (prev_head);
2932   rtx tail = PREV_INSN (next_tail);
2933
2934   /* We used to have code to avoid getting parameters moved from hard
2935      argument registers into pseudos.
2936
2937      However, it was removed when it proved to be of marginal benefit
2938      and caused problems because schedule_block and compute_forward_dependences
2939      had different notions of what the "head" insn was.  */
2940
2941   gcc_assert (head != tail || INSN_P (head));
2942
2943   haifa_recovery_bb_recently_added_p = false;
2944
2945   /* Debug info.  */
2946   if (sched_verbose)
2947     dump_new_block_header (0, *target_bb, head, tail);
2948
2949   state_reset (curr_state);
2950
2951   /* Clear the ready list.  */
2952   ready.first = ready.veclen - 1;
2953   ready.n_ready = 0;
2954   ready.n_debug = 0;
2955
2956   /* It is used for first cycle multipass scheduling.  */
2957   temp_state = alloca (dfa_state_size);
2958
2959   if (targetm.sched.init)
2960     targetm.sched.init (sched_dump, sched_verbose, ready.veclen);
2961
2962   /* We start inserting insns after PREV_HEAD.  */
2963   last_scheduled_insn = nonscheduled_insns_begin = prev_head;
2964   last_nondebug_scheduled_insn = NULL_RTX;
2965
2966   gcc_assert ((NOTE_P (last_scheduled_insn)
2967                || DEBUG_INSN_P (last_scheduled_insn))
2968               && BLOCK_FOR_INSN (last_scheduled_insn) == *target_bb);
2969
2970   /* Initialize INSN_QUEUE.  Q_SIZE is the total number of insns in the
2971      queue.  */
2972   q_ptr = 0;
2973   q_size = 0;
2974
2975   insn_queue = XALLOCAVEC (rtx, max_insn_queue_index + 1);
2976   memset (insn_queue, 0, (max_insn_queue_index + 1) * sizeof (rtx));
2977
2978   /* Start just before the beginning of time.  */
2979   clock_var = -1;
2980
2981   /* We need queue and ready lists and clock_var be initialized
2982      in try_ready () (which is called through init_ready_list ()).  */
2983   (*current_sched_info->init_ready_list) ();
2984
2985   /* The algorithm is O(n^2) in the number of ready insns at any given
2986      time in the worst case.  Before reload we are more likely to have
2987      big lists so truncate them to a reasonable size.  */
2988   if (!reload_completed
2989       && ready.n_ready - ready.n_debug > MAX_SCHED_READY_INSNS)
2990     {
2991       ready_sort (&ready);
2992
2993       /* Find first free-standing insn past MAX_SCHED_READY_INSNS.
2994          If there are debug insns, we know they're first.  */
2995       for (i = MAX_SCHED_READY_INSNS + ready.n_debug; i < ready.n_ready; i++)
2996         if (!SCHED_GROUP_P (ready_element (&ready, i)))
2997           break;
2998
2999       if (sched_verbose >= 2)
3000         {
3001           fprintf (sched_dump,
3002                    ";;\t\tReady list on entry: %d insns\n", ready.n_ready);
3003           fprintf (sched_dump,
3004                    ";;\t\t before reload => truncated to %d insns\n", i);
3005         }
3006
3007       /* Delay all insns past it for 1 cycle.  If debug counter is
3008          activated make an exception for the insn right after
3009          nonscheduled_insns_begin.  */
3010       {
3011         rtx skip_insn;
3012
3013         if (dbg_cnt (sched_insn) == false)
3014           skip_insn = next_nonnote_insn (nonscheduled_insns_begin);
3015         else
3016           skip_insn = NULL_RTX;
3017
3018         while (i < ready.n_ready)
3019           {
3020             rtx insn;
3021
3022             insn = ready_remove (&ready, i);
3023
3024             if (insn != skip_insn)
3025               queue_insn (insn, 1, "list truncated");
3026           }
3027         if (skip_insn)
3028           ready_add (&ready, skip_insn, true);
3029       }
3030     }
3031
3032   /* Now we can restore basic block notes and maintain precise cfg.  */
3033   restore_bb_notes (*target_bb);
3034
3035   last_clock_var = -1;
3036
3037   advance = 0;
3038
3039   gcc_assert (VEC_length (rtx, scheduled_insns) == 0);
3040   sort_p = TRUE;
3041   /* Loop until all the insns in BB are scheduled.  */
3042   while ((*current_sched_info->schedule_more_p) ())
3043     {
3044       do
3045         {
3046           start_clock_var = clock_var;
3047
3048           clock_var++;
3049
3050           advance_one_cycle ();
3051
3052           /* Add to the ready list all pending insns that can be issued now.
3053              If there are no ready insns, increment clock until one
3054              is ready and add all pending insns at that point to the ready
3055              list.  */
3056           queue_to_ready (&ready);
3057
3058           gcc_assert (ready.n_ready);
3059
3060           if (sched_verbose >= 2)
3061             {
3062               fprintf (sched_dump, ";;\t\tReady list after queue_to_ready:  ");
3063               debug_ready_list (&ready);
3064             }
3065           advance -= clock_var - start_clock_var;
3066         }
3067       while (advance > 0);
3068
3069       if (ready.n_ready > 0)
3070         prune_ready_list (temp_state, true);
3071       if (ready.n_ready == 0)
3072         continue;
3073
3074       first_cycle_insn_p = true;
3075       cycle_issued_insns = 0;
3076       can_issue_more = issue_rate;
3077       for (;;)
3078         {
3079           rtx insn;
3080           int cost;
3081           bool asm_p = false;
3082
3083           if (sort_p && ready.n_ready > 0)
3084             {
3085               /* Sort the ready list based on priority.  This must be
3086                  done every iteration through the loop, as schedule_insn
3087                  may have readied additional insns that will not be
3088                  sorted correctly.  */
3089               ready_sort (&ready);
3090
3091               if (sched_verbose >= 2)
3092                 {
3093                   fprintf (sched_dump, ";;\t\tReady list after ready_sort:  ");
3094                   debug_ready_list (&ready);
3095                 }
3096             }
3097
3098           /* We don't want md sched reorder to even see debug isns, so put
3099              them out right away.  */
3100           if (ready.n_ready && DEBUG_INSN_P (ready_element (&ready, 0))
3101               && (*current_sched_info->schedule_more_p) ())
3102             {
3103               while (ready.n_ready && DEBUG_INSN_P (ready_element (&ready, 0)))
3104                 {
3105                   rtx insn = ready_remove_first (&ready);
3106                   gcc_assert (DEBUG_INSN_P (insn));
3107                   (*current_sched_info->begin_schedule_ready) (insn);
3108                   VEC_safe_push (rtx, heap, scheduled_insns, insn);
3109                   last_scheduled_insn = insn;
3110                   advance = schedule_insn (insn);
3111                   gcc_assert (advance == 0);
3112                   if (ready.n_ready > 0)
3113                     ready_sort (&ready);
3114                 }
3115             }
3116
3117           if (first_cycle_insn_p && !ready.n_ready)
3118             break;
3119
3120           /* Allow the target to reorder the list, typically for
3121              better instruction bundling.  */
3122           if (sort_p
3123               && (ready.n_ready == 0
3124                   || !SCHED_GROUP_P (ready_element (&ready, 0))))
3125             {
3126               if (first_cycle_insn_p && targetm.sched.reorder)
3127                 can_issue_more
3128                   = targetm.sched.reorder (sched_dump, sched_verbose,
3129                                            ready_lastpos (&ready),
3130                                            &ready.n_ready, clock_var);
3131               else if (!first_cycle_insn_p && targetm.sched.reorder2)
3132                 can_issue_more
3133                   = targetm.sched.reorder2 (sched_dump, sched_verbose,
3134                                             ready.n_ready
3135                                             ? ready_lastpos (&ready) : NULL,
3136                                             &ready.n_ready, clock_var);
3137             }
3138
3139         restart_choose_ready:
3140           if (sched_verbose >= 2)
3141             {
3142               fprintf (sched_dump, ";;\tReady list (t = %3d):  ",
3143                        clock_var);
3144               debug_ready_list (&ready);
3145               if (sched_pressure_p)
3146                 print_curr_reg_pressure ();
3147             }
3148
3149           if (ready.n_ready == 0
3150               && can_issue_more
3151               && reload_completed)
3152             {
3153               /* Allow scheduling insns directly from the queue in case
3154                  there's nothing better to do (ready list is empty) but
3155                  there are still vacant dispatch slots in the current cycle.  */
3156               if (sched_verbose >= 6)
3157                 fprintf (sched_dump,";;\t\tSecond chance\n");
3158               memcpy (temp_state, curr_state, dfa_state_size);
3159               if (early_queue_to_ready (temp_state, &ready))
3160                 ready_sort (&ready);
3161             }
3162
3163           if (ready.n_ready == 0
3164               || !can_issue_more
3165               || state_dead_lock_p (curr_state)
3166               || !(*current_sched_info->schedule_more_p) ())
3167             break;
3168
3169           /* Select and remove the insn from the ready list.  */
3170           if (sort_p)
3171             {
3172               int res;
3173
3174               insn = NULL_RTX;
3175               res = choose_ready (&ready, first_cycle_insn_p, &insn);
3176
3177               if (res < 0)
3178                 /* Finish cycle.  */
3179                 break;
3180               if (res > 0)
3181                 goto restart_choose_ready;
3182
3183               gcc_assert (insn != NULL_RTX);
3184             }
3185           else
3186             insn = ready_remove_first (&ready);
3187
3188           if (sched_pressure_p && INSN_TICK (insn) > clock_var)
3189             {
3190               ready_add (&ready, insn, true);
3191               advance = 1;
3192               break;
3193             }
3194
3195           if (targetm.sched.dfa_new_cycle
3196               && targetm.sched.dfa_new_cycle (sched_dump, sched_verbose,
3197                                               insn, last_clock_var,
3198                                               clock_var, &sort_p))
3199             /* SORT_P is used by the target to override sorting
3200                of the ready list.  This is needed when the target
3201                has modified its internal structures expecting that
3202                the insn will be issued next.  As we need the insn
3203                to have the highest priority (so it will be returned by
3204                the ready_remove_first call above), we invoke
3205                ready_add (&ready, insn, true).
3206                But, still, there is one issue: INSN can be later
3207                discarded by scheduler's front end through
3208                current_sched_info->can_schedule_ready_p, hence, won't
3209                be issued next.  */
3210             {
3211               ready_add (&ready, insn, true);
3212               break;
3213             }
3214
3215           sort_p = TRUE;
3216
3217           if (current_sched_info->can_schedule_ready_p
3218               && ! (*current_sched_info->can_schedule_ready_p) (insn))
3219             /* We normally get here only if we don't want to move
3220                insn from the split block.  */
3221             {
3222               TODO_SPEC (insn) = (TODO_SPEC (insn) & ~SPECULATIVE) | HARD_DEP;
3223               goto restart_choose_ready;
3224             }
3225
3226           /* DECISION is made.  */
3227
3228           if (TODO_SPEC (insn) & SPECULATIVE)
3229             generate_recovery_code (insn);
3230
3231           if (targetm.sched.dispatch (NULL_RTX, IS_DISPATCH_ON))
3232             targetm.sched.dispatch_do (insn, ADD_TO_DISPATCH_WINDOW);
3233
3234           /* Update counters, etc in the scheduler's front end.  */
3235           (*current_sched_info->begin_schedule_ready) (insn);
3236           VEC_safe_push (rtx, heap, scheduled_insns, insn);
3237           gcc_assert (NONDEBUG_INSN_P (insn));
3238           last_nondebug_scheduled_insn = last_scheduled_insn = insn;
3239
3240           if (recog_memoized (insn) >= 0)
3241             {
3242               memcpy (temp_state, curr_state, dfa_state_size);
3243               cost = state_transition (curr_state, insn);
3244               if (!sched_pressure_p)
3245                 gcc_assert (cost < 0);
3246               if (memcmp (temp_state, curr_state, dfa_state_size) != 0)
3247                 cycle_issued_insns++;
3248               asm_p = false;
3249             }
3250           else
3251             asm_p = (GET_CODE (PATTERN (insn)) == ASM_INPUT
3252                      || asm_noperands (PATTERN (insn)) >= 0);
3253
3254           if (targetm.sched.variable_issue)
3255             can_issue_more =
3256               targetm.sched.variable_issue (sched_dump, sched_verbose,
3257                                             insn, can_issue_more);
3258           /* A naked CLOBBER or USE generates no instruction, so do
3259              not count them against the issue rate.  */
3260           else if (GET_CODE (PATTERN (insn)) != USE
3261                    && GET_CODE (PATTERN (insn)) != CLOBBER)
3262             can_issue_more--;
3263           advance = schedule_insn (insn);
3264
3265           /* After issuing an asm insn we should start a new cycle.  */
3266           if (advance == 0 && asm_p)
3267             advance = 1;
3268           if (advance != 0)
3269             break;
3270
3271           first_cycle_insn_p = false;
3272           if (ready.n_ready > 0)
3273             prune_ready_list (temp_state, false);
3274         }
3275     }
3276
3277   /* Debug info.  */
3278   if (sched_verbose)
3279     {
3280       fprintf (sched_dump, ";;\tReady list (final):  ");
3281       debug_ready_list (&ready);
3282     }
3283
3284   if (current_sched_info->queue_must_finish_empty)
3285     /* Sanity check -- queue must be empty now.  Meaningless if region has
3286        multiple bbs.  */
3287     gcc_assert (!q_size && !ready.n_ready && !ready.n_debug);
3288   else
3289     {
3290       /* We must maintain QUEUE_INDEX between blocks in region.  */
3291       for (i = ready.n_ready - 1; i >= 0; i--)
3292         {
3293           rtx x;
3294
3295           x = ready_element (&ready, i);
3296           QUEUE_INDEX (x) = QUEUE_NOWHERE;
3297           TODO_SPEC (x) = (TODO_SPEC (x) & ~SPECULATIVE) | HARD_DEP;
3298         }
3299
3300       if (q_size)
3301         for (i = 0; i <= max_insn_queue_index; i++)
3302           {
3303             rtx link;
3304             for (link = insn_queue[i]; link; link = XEXP (link, 1))
3305               {
3306                 rtx x;
3307
3308                 x = XEXP (link, 0);
3309                 QUEUE_INDEX (x) = QUEUE_NOWHERE;
3310                 TODO_SPEC (x) = (TODO_SPEC (x) & ~SPECULATIVE) | HARD_DEP;
3311               }
3312             free_INSN_LIST_list (&insn_queue[i]);
3313           }
3314     }
3315
3316   commit_schedule (prev_head, tail, target_bb);
3317   if (sched_verbose)
3318     fprintf (sched_dump, ";;   total time = %d\n", clock_var);
3319
3320   if (!current_sched_info->queue_must_finish_empty
3321       || haifa_recovery_bb_recently_added_p)
3322     {
3323       /* INSN_TICK (minimum clock tick at which the insn becomes
3324          ready) may be not correct for the insn in the subsequent
3325          blocks of the region.  We should use a correct value of
3326          `clock_var' or modify INSN_TICK.  It is better to keep
3327          clock_var value equal to 0 at the start of a basic block.
3328          Therefore we modify INSN_TICK here.  */
3329       fix_inter_tick (NEXT_INSN (prev_head), last_scheduled_insn);
3330     }
3331
3332   if (targetm.sched.finish)
3333     {
3334       targetm.sched.finish (sched_dump, sched_verbose);
3335       /* Target might have added some instructions to the scheduled block
3336          in its md_finish () hook.  These new insns don't have any data
3337          initialized and to identify them we extend h_i_d so that they'll
3338          get zero luids.  */
3339       sched_extend_luids ();
3340     }
3341
3342   if (sched_verbose)
3343     fprintf (sched_dump, ";;   new head = %d\n;;   new tail = %d\n\n",
3344              INSN_UID (head), INSN_UID (tail));
3345
3346   /* Update head/tail boundaries.  */
3347   head = NEXT_INSN (prev_head);
3348   tail = last_scheduled_insn;
3349
3350   head = restore_other_notes (head, NULL);
3351
3352   current_sched_info->head = head;
3353   current_sched_info->tail = tail;
3354 }
3355 \f
3356 /* Set_priorities: compute priority of each insn in the block.  */
3357
3358 int
3359 set_priorities (rtx head, rtx tail)
3360 {
3361   rtx insn;
3362   int n_insn;
3363   int sched_max_insns_priority =
3364         current_sched_info->sched_max_insns_priority;
3365   rtx prev_head;
3366
3367   if (head == tail && ! INSN_P (head))
3368     gcc_unreachable ();
3369
3370   n_insn = 0;
3371
3372   prev_head = PREV_INSN (head);
3373   for (insn = tail; insn != prev_head; insn = PREV_INSN (insn))
3374     {
3375       if (!INSN_P (insn))
3376         continue;
3377
3378       n_insn++;
3379       (void) priority (insn);
3380
3381       gcc_assert (INSN_PRIORITY_KNOWN (insn));
3382
3383       sched_max_insns_priority = MAX (sched_max_insns_priority,
3384                                       INSN_PRIORITY (insn));
3385     }
3386
3387   current_sched_info->sched_max_insns_priority = sched_max_insns_priority;
3388
3389   return n_insn;
3390 }
3391
3392 /* Set dump and sched_verbose for the desired debugging output.  If no
3393    dump-file was specified, but -fsched-verbose=N (any N), print to stderr.
3394    For -fsched-verbose=N, N>=10, print everything to stderr.  */
3395 void
3396 setup_sched_dump (void)
3397 {
3398   sched_verbose = sched_verbose_param;
3399   if (sched_verbose_param == 0 && dump_file)
3400     sched_verbose = 1;
3401   sched_dump = ((sched_verbose_param >= 10 || !dump_file)
3402                 ? stderr : dump_file);
3403 }
3404
3405 /* Initialize some global state for the scheduler.  This function works
3406    with the common data shared between all the schedulers.  It is called
3407    from the scheduler specific initialization routine.  */
3408
3409 void
3410 sched_init (void)
3411 {
3412   /* Disable speculative loads in their presence if cc0 defined.  */
3413 #ifdef HAVE_cc0
3414   flag_schedule_speculative_load = 0;
3415 #endif
3416
3417   if (targetm.sched.dispatch (NULL_RTX, IS_DISPATCH_ON))
3418     targetm.sched.dispatch_do (NULL_RTX, DISPATCH_INIT);
3419
3420   sched_pressure_p = (flag_sched_pressure && ! reload_completed
3421                       && common_sched_info->sched_pass_id == SCHED_RGN_PASS);
3422
3423   if (sched_pressure_p)
3424     ira_setup_eliminable_regset ();
3425
3426   /* Initialize SPEC_INFO.  */
3427   if (targetm.sched.set_sched_flags)
3428     {
3429       spec_info = &spec_info_var;
3430       targetm.sched.set_sched_flags (spec_info);
3431
3432       if (spec_info->mask != 0)
3433         {
3434           spec_info->data_weakness_cutoff =
3435             (PARAM_VALUE (PARAM_SCHED_SPEC_PROB_CUTOFF) * MAX_DEP_WEAK) / 100;
3436           spec_info->control_weakness_cutoff =
3437             (PARAM_VALUE (PARAM_SCHED_SPEC_PROB_CUTOFF)
3438              * REG_BR_PROB_BASE) / 100;
3439         }
3440       else
3441         /* So we won't read anything accidentally.  */
3442         spec_info = NULL;
3443
3444     }
3445   else
3446     /* So we won't read anything accidentally.  */
3447     spec_info = 0;
3448
3449   /* Initialize issue_rate.  */
3450   if (targetm.sched.issue_rate)
3451     issue_rate = targetm.sched.issue_rate ();
3452   else
3453     issue_rate = 1;
3454
3455   if (cached_issue_rate != issue_rate)
3456     {
3457       cached_issue_rate = issue_rate;
3458       /* To invalidate max_lookahead_tries:  */
3459       cached_first_cycle_multipass_dfa_lookahead = 0;
3460     }
3461
3462   if (targetm.sched.first_cycle_multipass_dfa_lookahead)
3463     dfa_lookahead = targetm.sched.first_cycle_multipass_dfa_lookahead ();
3464   else
3465     dfa_lookahead = 0;
3466
3467   if (targetm.sched.init_dfa_pre_cycle_insn)
3468     targetm.sched.init_dfa_pre_cycle_insn ();
3469
3470   if (targetm.sched.init_dfa_post_cycle_insn)
3471     targetm.sched.init_dfa_post_cycle_insn ();
3472
3473   dfa_start ();
3474   dfa_state_size = state_size ();
3475
3476   init_alias_analysis ();
3477
3478   df_set_flags (DF_LR_RUN_DCE);
3479   df_note_add_problem ();
3480
3481   /* More problems needed for interloop dep calculation in SMS.  */
3482   if (common_sched_info->sched_pass_id == SCHED_SMS_PASS)
3483     {
3484       df_rd_add_problem ();
3485       df_chain_add_problem (DF_DU_CHAIN + DF_UD_CHAIN);
3486     }
3487
3488   df_analyze ();
3489
3490   /* Do not run DCE after reload, as this can kill nops inserted
3491      by bundling.  */
3492   if (reload_completed)
3493     df_clear_flags (DF_LR_RUN_DCE);
3494
3495   regstat_compute_calls_crossed ();
3496
3497   if (targetm.sched.init_global)
3498     targetm.sched.init_global (sched_dump, sched_verbose, get_max_uid () + 1);
3499
3500   if (sched_pressure_p)
3501     {
3502       int i, max_regno = max_reg_num ();
3503
3504       ira_set_pseudo_classes (sched_verbose ? sched_dump : NULL);
3505       sched_regno_pressure_class
3506         = (enum reg_class *) xmalloc (max_regno * sizeof (enum reg_class));
3507       for (i = 0; i < max_regno; i++)
3508         sched_regno_pressure_class[i]
3509           = (i < FIRST_PSEUDO_REGISTER
3510              ? ira_pressure_class_translate[REGNO_REG_CLASS (i)]
3511              : ira_pressure_class_translate[reg_allocno_class (i)]);
3512       curr_reg_live = BITMAP_ALLOC (NULL);
3513       saved_reg_live = BITMAP_ALLOC (NULL);
3514       region_ref_regs = BITMAP_ALLOC (NULL);
3515     }
3516
3517   curr_state = xmalloc (dfa_state_size);
3518 }
3519
3520 static void haifa_init_only_bb (basic_block, basic_block);
3521
3522 /* Initialize data structures specific to the Haifa scheduler.  */
3523 void
3524 haifa_sched_init (void)
3525 {
3526   setup_sched_dump ();
3527   sched_init ();
3528
3529   scheduled_insns = VEC_alloc (rtx, heap, 0);
3530
3531   if (spec_info != NULL)
3532     {
3533       sched_deps_info->use_deps_list = 1;
3534       sched_deps_info->generate_spec_deps = 1;
3535     }
3536
3537   /* Initialize luids, dependency caches, target and h_i_d for the
3538      whole function.  */
3539   {
3540     bb_vec_t bbs = VEC_alloc (basic_block, heap, n_basic_blocks);
3541     basic_block bb;
3542
3543     sched_init_bbs ();
3544
3545     FOR_EACH_BB (bb)
3546       VEC_quick_push (basic_block, bbs, bb);
3547     sched_init_luids (bbs);
3548     sched_deps_init (true);
3549     sched_extend_target ();
3550     haifa_init_h_i_d (bbs);
3551
3552     VEC_free (basic_block, heap, bbs);
3553   }
3554
3555   sched_init_only_bb = haifa_init_only_bb;
3556   sched_split_block = sched_split_block_1;
3557   sched_create_empty_bb = sched_create_empty_bb_1;
3558   haifa_recovery_bb_ever_added_p = false;
3559
3560 #ifdef ENABLE_CHECKING
3561   /* This is used preferably for finding bugs in check_cfg () itself.
3562      We must call sched_bbs_init () before check_cfg () because check_cfg ()
3563      assumes that the last insn in the last bb has a non-null successor.  */
3564   check_cfg (0, 0);
3565 #endif
3566
3567   nr_begin_data = nr_begin_control = nr_be_in_data = nr_be_in_control = 0;
3568   before_recovery = 0;
3569   after_recovery = 0;
3570 }
3571
3572 /* Finish work with the data specific to the Haifa scheduler.  */
3573 void
3574 haifa_sched_finish (void)
3575 {
3576   sched_create_empty_bb = NULL;
3577   sched_split_block = NULL;
3578   sched_init_only_bb = NULL;
3579
3580   if (spec_info && spec_info->dump)
3581     {
3582       char c = reload_completed ? 'a' : 'b';
3583
3584       fprintf (spec_info->dump,
3585                ";; %s:\n", current_function_name ());
3586
3587       fprintf (spec_info->dump,
3588                ";; Procedure %cr-begin-data-spec motions == %d\n",
3589                c, nr_begin_data);
3590       fprintf (spec_info->dump,
3591                ";; Procedure %cr-be-in-data-spec motions == %d\n",
3592                c, nr_be_in_data);
3593       fprintf (spec_info->dump,
3594                ";; Procedure %cr-begin-control-spec motions == %d\n",
3595                c, nr_begin_control);
3596       fprintf (spec_info->dump,
3597                ";; Procedure %cr-be-in-control-spec motions == %d\n",
3598                c, nr_be_in_control);
3599     }
3600
3601   VEC_free (rtx, heap, scheduled_insns);
3602
3603   /* Finalize h_i_d, dependency caches, and luids for the whole
3604      function.  Target will be finalized in md_global_finish ().  */
3605   sched_deps_finish ();
3606   sched_finish_luids ();
3607   current_sched_info = NULL;
3608   sched_finish ();
3609 }
3610
3611 /* Free global data used during insn scheduling.  This function works with
3612    the common data shared between the schedulers.  */
3613
3614 void
3615 sched_finish (void)
3616 {
3617   haifa_finish_h_i_d ();
3618   if (sched_pressure_p)
3619     {
3620       free (sched_regno_pressure_class);
3621       BITMAP_FREE (region_ref_regs);
3622       BITMAP_FREE (saved_reg_live);
3623       BITMAP_FREE (curr_reg_live);
3624     }
3625   free (curr_state);
3626
3627   if (targetm.sched.finish_global)
3628     targetm.sched.finish_global (sched_dump, sched_verbose);
3629
3630   end_alias_analysis ();
3631
3632   regstat_free_calls_crossed ();
3633
3634   dfa_finish ();
3635
3636 #ifdef ENABLE_CHECKING
3637   /* After reload ia64 backend clobbers CFG, so can't check anything.  */
3638   if (!reload_completed)
3639     check_cfg (0, 0);
3640 #endif
3641 }
3642
3643 /* Fix INSN_TICKs of the instructions in the current block as well as
3644    INSN_TICKs of their dependents.
3645    HEAD and TAIL are the begin and the end of the current scheduled block.  */
3646 static void
3647 fix_inter_tick (rtx head, rtx tail)
3648 {
3649   /* Set of instructions with corrected INSN_TICK.  */
3650   bitmap_head processed;
3651   /* ??? It is doubtful if we should assume that cycle advance happens on
3652      basic block boundaries.  Basically insns that are unconditionally ready
3653      on the start of the block are more preferable then those which have
3654      a one cycle dependency over insn from the previous block.  */
3655   int next_clock = clock_var + 1;
3656
3657   bitmap_initialize (&processed, 0);
3658
3659   /* Iterates over scheduled instructions and fix their INSN_TICKs and
3660      INSN_TICKs of dependent instructions, so that INSN_TICKs are consistent
3661      across different blocks.  */
3662   for (tail = NEXT_INSN (tail); head != tail; head = NEXT_INSN (head))
3663     {
3664       if (INSN_P (head))
3665         {
3666           int tick;
3667           sd_iterator_def sd_it;
3668           dep_t dep;
3669
3670           tick = INSN_TICK (head);
3671           gcc_assert (tick >= MIN_TICK);
3672
3673           /* Fix INSN_TICK of instruction from just scheduled block.  */
3674           if (bitmap_set_bit (&processed, INSN_LUID (head)))
3675             {
3676               tick -= next_clock;
3677
3678               if (tick < MIN_TICK)
3679                 tick = MIN_TICK;
3680
3681               INSN_TICK (head) = tick;
3682             }
3683
3684           FOR_EACH_DEP (head, SD_LIST_RES_FORW, sd_it, dep)
3685             {
3686               rtx next;
3687
3688               next = DEP_CON (dep);
3689               tick = INSN_TICK (next);
3690
3691               if (tick != INVALID_TICK
3692                   /* If NEXT has its INSN_TICK calculated, fix it.
3693                      If not - it will be properly calculated from
3694                      scratch later in fix_tick_ready.  */
3695                   && bitmap_set_bit (&processed, INSN_LUID (next)))
3696                 {
3697                   tick -= next_clock;
3698
3699                   if (tick < MIN_TICK)
3700                     tick = MIN_TICK;
3701
3702                   if (tick > INTER_TICK (next))
3703                     INTER_TICK (next) = tick;
3704                   else
3705                     tick = INTER_TICK (next);
3706
3707                   INSN_TICK (next) = tick;
3708                 }
3709             }
3710         }
3711     }
3712   bitmap_clear (&processed);
3713 }
3714
3715 static int haifa_speculate_insn (rtx, ds_t, rtx *);
3716
3717 /* Check if NEXT is ready to be added to the ready or queue list.
3718    If "yes", add it to the proper list.
3719    Returns:
3720       -1 - is not ready yet,
3721        0 - added to the ready list,
3722    0 < N - queued for N cycles.  */
3723 int
3724 try_ready (rtx next)
3725 {
3726   ds_t old_ts, *ts;
3727
3728   ts = &TODO_SPEC (next);
3729   old_ts = *ts;
3730
3731   gcc_assert (!(old_ts & ~(SPECULATIVE | HARD_DEP))
3732               && ((old_ts & HARD_DEP)
3733                   || (old_ts & SPECULATIVE)));
3734
3735   if (sd_lists_empty_p (next, SD_LIST_BACK))
3736     /* NEXT has all its dependencies resolved.  */
3737     {
3738       /* Remove HARD_DEP bit from NEXT's status.  */
3739       *ts &= ~HARD_DEP;
3740
3741       if (current_sched_info->flags & DO_SPECULATION)
3742         /* Remove all speculative bits from NEXT's status.  */
3743         *ts &= ~SPECULATIVE;
3744     }
3745   else
3746     {
3747       /* One of the NEXT's dependencies has been resolved.
3748          Recalculate NEXT's status.  */
3749
3750       *ts &= ~SPECULATIVE & ~HARD_DEP;
3751
3752       if (sd_lists_empty_p (next, SD_LIST_HARD_BACK))
3753         /* Now we've got NEXT with speculative deps only.
3754            1. Look at the deps to see what we have to do.
3755            2. Check if we can do 'todo'.  */
3756         {
3757           sd_iterator_def sd_it;
3758           dep_t dep;
3759           bool first_p = true;
3760
3761           FOR_EACH_DEP (next, SD_LIST_BACK, sd_it, dep)
3762             {
3763               ds_t ds = DEP_STATUS (dep) & SPECULATIVE;
3764
3765               if (DEBUG_INSN_P (DEP_PRO (dep))
3766                   && !DEBUG_INSN_P (next))
3767                 continue;
3768
3769               if (first_p)
3770                 {
3771                   first_p = false;
3772
3773                   *ts = ds;
3774                 }
3775               else
3776                 *ts = ds_merge (*ts, ds);
3777             }
3778
3779           if (ds_weak (*ts) < spec_info->data_weakness_cutoff)
3780             /* Too few points.  */
3781             *ts = (*ts & ~SPECULATIVE) | HARD_DEP;
3782         }
3783       else
3784         *ts |= HARD_DEP;
3785     }
3786
3787   if (*ts & HARD_DEP)
3788     gcc_assert (*ts == old_ts
3789                 && QUEUE_INDEX (next) == QUEUE_NOWHERE);
3790   else if (current_sched_info->new_ready)
3791     *ts = current_sched_info->new_ready (next, *ts);
3792
3793   /* * if !(old_ts & SPECULATIVE) (e.g. HARD_DEP or 0), then insn might
3794      have its original pattern or changed (speculative) one.  This is due
3795      to changing ebb in region scheduling.
3796      * But if (old_ts & SPECULATIVE), then we are pretty sure that insn
3797      has speculative pattern.
3798
3799      We can't assert (!(*ts & HARD_DEP) || *ts == old_ts) here because
3800      control-speculative NEXT could have been discarded by sched-rgn.c
3801      (the same case as when discarded by can_schedule_ready_p ()).  */
3802
3803   if ((*ts & SPECULATIVE)
3804       /* If (old_ts == *ts), then (old_ts & SPECULATIVE) and we don't
3805          need to change anything.  */
3806       && *ts != old_ts)
3807     {
3808       int res;
3809       rtx new_pat;
3810
3811       gcc_assert ((*ts & SPECULATIVE) && !(*ts & ~SPECULATIVE));
3812
3813       res = haifa_speculate_insn (next, *ts, &new_pat);
3814
3815       switch (res)
3816         {
3817         case -1:
3818           /* It would be nice to change DEP_STATUS of all dependences,
3819              which have ((DEP_STATUS & SPECULATIVE) == *ts) to HARD_DEP,
3820              so we won't reanalyze anything.  */
3821           *ts = (*ts & ~SPECULATIVE) | HARD_DEP;
3822           break;
3823
3824         case 0:
3825           /* We follow the rule, that every speculative insn
3826              has non-null ORIG_PAT.  */
3827           if (!ORIG_PAT (next))
3828             ORIG_PAT (next) = PATTERN (next);
3829           break;
3830
3831         case 1:
3832           if (!ORIG_PAT (next))
3833             /* If we gonna to overwrite the original pattern of insn,
3834                save it.  */
3835             ORIG_PAT (next) = PATTERN (next);
3836
3837           haifa_change_pattern (next, new_pat);
3838           break;
3839
3840         default:
3841           gcc_unreachable ();
3842         }
3843     }
3844
3845   /* We need to restore pattern only if (*ts == 0), because otherwise it is
3846      either correct (*ts & SPECULATIVE),
3847      or we simply don't care (*ts & HARD_DEP).  */
3848
3849   gcc_assert (!ORIG_PAT (next)
3850               || !IS_SPECULATION_BRANCHY_CHECK_P (next));
3851
3852   if (*ts & HARD_DEP)
3853     {
3854       /* We can't assert (QUEUE_INDEX (next) == QUEUE_NOWHERE) here because
3855          control-speculative NEXT could have been discarded by sched-rgn.c
3856          (the same case as when discarded by can_schedule_ready_p ()).  */
3857       /*gcc_assert (QUEUE_INDEX (next) == QUEUE_NOWHERE);*/
3858
3859       change_queue_index (next, QUEUE_NOWHERE);
3860       return -1;
3861     }
3862   else if (!(*ts & BEGIN_SPEC) && ORIG_PAT (next) && !IS_SPECULATION_CHECK_P (next))
3863     /* We should change pattern of every previously speculative
3864        instruction - and we determine if NEXT was speculative by using
3865        ORIG_PAT field.  Except one case - speculation checks have ORIG_PAT
3866        pat too, so skip them.  */
3867     {
3868       haifa_change_pattern (next, ORIG_PAT (next));
3869       ORIG_PAT (next) = 0;
3870     }
3871
3872   if (sched_verbose >= 2)
3873     {
3874       int s = TODO_SPEC (next);
3875
3876       fprintf (sched_dump, ";;\t\tdependencies resolved: insn %s",
3877                (*current_sched_info->print_insn) (next, 0));
3878
3879       if (spec_info && spec_info->dump)
3880         {
3881           if (s & BEGIN_DATA)
3882             fprintf (spec_info->dump, "; data-spec;");
3883           if (s & BEGIN_CONTROL)
3884             fprintf (spec_info->dump, "; control-spec;");
3885           if (s & BE_IN_CONTROL)
3886             fprintf (spec_info->dump, "; in-control-spec;");
3887         }
3888
3889       fprintf (sched_dump, "\n");
3890     }
3891
3892   adjust_priority (next);
3893
3894   return fix_tick_ready (next);
3895 }
3896
3897 /* Calculate INSN_TICK of NEXT and add it to either ready or queue list.  */
3898 static int
3899 fix_tick_ready (rtx next)
3900 {
3901   int tick, delay;
3902
3903   if (!DEBUG_INSN_P (next) && !sd_lists_empty_p (next, SD_LIST_RES_BACK))
3904     {
3905       int full_p;
3906       sd_iterator_def sd_it;
3907       dep_t dep;
3908
3909       tick = INSN_TICK (next);
3910       /* if tick is not equal to INVALID_TICK, then update
3911          INSN_TICK of NEXT with the most recent resolved dependence
3912          cost.  Otherwise, recalculate from scratch.  */
3913       full_p = (tick == INVALID_TICK);
3914
3915       FOR_EACH_DEP (next, SD_LIST_RES_BACK, sd_it, dep)
3916         {
3917           rtx pro = DEP_PRO (dep);
3918           int tick1;
3919
3920           gcc_assert (INSN_TICK (pro) >= MIN_TICK);
3921
3922           tick1 = INSN_TICK (pro) + dep_cost (dep);
3923           if (tick1 > tick)
3924             tick = tick1;
3925
3926           if (!full_p)
3927             break;
3928         }
3929     }
3930   else
3931     tick = -1;
3932
3933   INSN_TICK (next) = tick;
3934
3935   delay = tick - clock_var;
3936   if (delay <= 0 || sched_pressure_p)
3937     delay = QUEUE_READY;
3938
3939   change_queue_index (next, delay);
3940
3941   return delay;
3942 }
3943
3944 /* Move NEXT to the proper queue list with (DELAY >= 1),
3945    or add it to the ready list (DELAY == QUEUE_READY),
3946    or remove it from ready and queue lists at all (DELAY == QUEUE_NOWHERE).  */
3947 static void
3948 change_queue_index (rtx next, int delay)
3949 {
3950   int i = QUEUE_INDEX (next);
3951
3952   gcc_assert (QUEUE_NOWHERE <= delay && delay <= max_insn_queue_index
3953               && delay != 0);
3954   gcc_assert (i != QUEUE_SCHEDULED);
3955
3956   if ((delay > 0 && NEXT_Q_AFTER (q_ptr, delay) == i)
3957       || (delay < 0 && delay == i))
3958     /* We have nothing to do.  */
3959     return;
3960
3961   /* Remove NEXT from wherever it is now.  */
3962   if (i == QUEUE_READY)
3963     ready_remove_insn (next);
3964   else if (i >= 0)
3965     queue_remove (next);
3966
3967   /* Add it to the proper place.  */
3968   if (delay == QUEUE_READY)
3969     ready_add (readyp, next, false);
3970   else if (delay >= 1)
3971     queue_insn (next, delay, "change queue index");
3972
3973   if (sched_verbose >= 2)
3974     {
3975       fprintf (sched_dump, ";;\t\ttick updated: insn %s",
3976                (*current_sched_info->print_insn) (next, 0));
3977
3978       if (delay == QUEUE_READY)
3979         fprintf (sched_dump, " into ready\n");
3980       else if (delay >= 1)
3981         fprintf (sched_dump, " into queue with cost=%d\n", delay);
3982       else
3983         fprintf (sched_dump, " removed from ready or queue lists\n");
3984     }
3985 }
3986
3987 static int sched_ready_n_insns = -1;
3988
3989 /* Initialize per region data structures.  */
3990 void
3991 sched_extend_ready_list (int new_sched_ready_n_insns)
3992 {
3993   int i;
3994
3995   if (sched_ready_n_insns == -1)
3996     /* At the first call we need to initialize one more choice_stack
3997        entry.  */
3998     {
3999       i = 0;
4000       sched_ready_n_insns = 0;
4001       VEC_reserve (rtx, heap, scheduled_insns, new_sched_ready_n_insns);
4002     }
4003   else
4004     i = sched_ready_n_insns + 1;
4005
4006   ready.veclen = new_sched_ready_n_insns + issue_rate;
4007   ready.vec = XRESIZEVEC (rtx, ready.vec, ready.veclen);
4008
4009   gcc_assert (new_sched_ready_n_insns >= sched_ready_n_insns);
4010
4011   ready_try = (char *) xrecalloc (ready_try, new_sched_ready_n_insns,
4012                                   sched_ready_n_insns, sizeof (*ready_try));
4013
4014   /* We allocate +1 element to save initial state in the choice_stack[0]
4015      entry.  */
4016   choice_stack = XRESIZEVEC (struct choice_entry, choice_stack,
4017                              new_sched_ready_n_insns + 1);
4018
4019   for (; i <= new_sched_ready_n_insns; i++)
4020     {
4021       choice_stack[i].state = xmalloc (dfa_state_size);
4022
4023       if (targetm.sched.first_cycle_multipass_init)
4024         targetm.sched.first_cycle_multipass_init (&(choice_stack[i]
4025                                                     .target_data));
4026     }
4027
4028   sched_ready_n_insns = new_sched_ready_n_insns;
4029 }
4030
4031 /* Free per region data structures.  */
4032 void
4033 sched_finish_ready_list (void)
4034 {
4035   int i;
4036
4037   free (ready.vec);
4038   ready.vec = NULL;
4039   ready.veclen = 0;
4040
4041   free (ready_try);
4042   ready_try = NULL;
4043
4044   for (i = 0; i <= sched_ready_n_insns; i++)
4045     {
4046       if (targetm.sched.first_cycle_multipass_fini)
4047         targetm.sched.first_cycle_multipass_fini (&(choice_stack[i]
4048                                                     .target_data));
4049
4050       free (choice_stack [i].state);
4051     }
4052   free (choice_stack);
4053   choice_stack = NULL;
4054
4055   sched_ready_n_insns = -1;
4056 }
4057
4058 static int
4059 haifa_luid_for_non_insn (rtx x)
4060 {
4061   gcc_assert (NOTE_P (x) || LABEL_P (x));
4062
4063   return 0;
4064 }
4065
4066 /* Generates recovery code for INSN.  */
4067 static void
4068 generate_recovery_code (rtx insn)
4069 {
4070   if (TODO_SPEC (insn) & BEGIN_SPEC)
4071     begin_speculative_block (insn);
4072
4073   /* Here we have insn with no dependencies to
4074      instructions other then CHECK_SPEC ones.  */
4075
4076   if (TODO_SPEC (insn) & BE_IN_SPEC)
4077     add_to_speculative_block (insn);
4078 }
4079
4080 /* Helper function.
4081    Tries to add speculative dependencies of type FS between instructions
4082    in deps_list L and TWIN.  */
4083 static void
4084 process_insn_forw_deps_be_in_spec (rtx insn, rtx twin, ds_t fs)
4085 {
4086   sd_iterator_def sd_it;
4087   dep_t dep;
4088
4089   FOR_EACH_DEP (insn, SD_LIST_FORW, sd_it, dep)
4090     {
4091       ds_t ds;
4092       rtx consumer;
4093
4094       consumer = DEP_CON (dep);
4095
4096       ds = DEP_STATUS (dep);
4097
4098       if (/* If we want to create speculative dep.  */
4099           fs
4100           /* And we can do that because this is a true dep.  */
4101           && (ds & DEP_TYPES) == DEP_TRUE)
4102         {
4103           gcc_assert (!(ds & BE_IN_SPEC));
4104
4105           if (/* If this dep can be overcome with 'begin speculation'.  */
4106               ds & BEGIN_SPEC)
4107             /* Then we have a choice: keep the dep 'begin speculative'
4108                or transform it into 'be in speculative'.  */
4109             {
4110               if (/* In try_ready we assert that if insn once became ready
4111                      it can be removed from the ready (or queue) list only
4112                      due to backend decision.  Hence we can't let the
4113                      probability of the speculative dep to decrease.  */
4114                   ds_weak (ds) <= ds_weak (fs))
4115                 {
4116                   ds_t new_ds;
4117
4118                   new_ds = (ds & ~BEGIN_SPEC) | fs;
4119
4120                   if (/* consumer can 'be in speculative'.  */
4121                       sched_insn_is_legitimate_for_speculation_p (consumer,
4122                                                                   new_ds))
4123                     /* Transform it to be in speculative.  */
4124                     ds = new_ds;
4125                 }
4126             }
4127           else
4128             /* Mark the dep as 'be in speculative'.  */
4129             ds |= fs;
4130         }
4131
4132       {
4133         dep_def _new_dep, *new_dep = &_new_dep;
4134
4135         init_dep_1 (new_dep, twin, consumer, DEP_TYPE (dep), ds);
4136         sd_add_dep (new_dep, false);
4137       }
4138     }
4139 }
4140
4141 /* Generates recovery code for BEGIN speculative INSN.  */
4142 static void
4143 begin_speculative_block (rtx insn)
4144 {
4145   if (TODO_SPEC (insn) & BEGIN_DATA)
4146     nr_begin_data++;
4147   if (TODO_SPEC (insn) & BEGIN_CONTROL)
4148     nr_begin_control++;
4149
4150   create_check_block_twin (insn, false);
4151
4152   TODO_SPEC (insn) &= ~BEGIN_SPEC;
4153 }
4154
4155 static void haifa_init_insn (rtx);
4156
4157 /* Generates recovery code for BE_IN speculative INSN.  */
4158 static void
4159 add_to_speculative_block (rtx insn)
4160 {
4161   ds_t ts;
4162   sd_iterator_def sd_it;
4163   dep_t dep;
4164   rtx twins = NULL;
4165   rtx_vec_t priorities_roots;
4166
4167   ts = TODO_SPEC (insn);
4168   gcc_assert (!(ts & ~BE_IN_SPEC));
4169
4170   if (ts & BE_IN_DATA)
4171     nr_be_in_data++;
4172   if (ts & BE_IN_CONTROL)
4173     nr_be_in_control++;
4174
4175   TODO_SPEC (insn) &= ~BE_IN_SPEC;
4176   gcc_assert (!TODO_SPEC (insn));
4177
4178   DONE_SPEC (insn) |= ts;
4179
4180   /* First we convert all simple checks to branchy.  */
4181   for (sd_it = sd_iterator_start (insn, SD_LIST_SPEC_BACK);
4182        sd_iterator_cond (&sd_it, &dep);)
4183     {
4184       rtx check = DEP_PRO (dep);
4185
4186       if (IS_SPECULATION_SIMPLE_CHECK_P (check))
4187         {
4188           create_check_block_twin (check, true);
4189
4190           /* Restart search.  */
4191           sd_it = sd_iterator_start (insn, SD_LIST_SPEC_BACK);
4192         }
4193       else
4194         /* Continue search.  */
4195         sd_iterator_next (&sd_it);
4196     }
4197
4198   priorities_roots = NULL;
4199   clear_priorities (insn, &priorities_roots);
4200
4201   while (1)
4202     {
4203       rtx check, twin;
4204       basic_block rec;
4205
4206       /* Get the first backward dependency of INSN.  */
4207       sd_it = sd_iterator_start (insn, SD_LIST_SPEC_BACK);
4208       if (!sd_iterator_cond (&sd_it, &dep))
4209         /* INSN has no backward dependencies left.  */
4210         break;
4211
4212       gcc_assert ((DEP_STATUS (dep) & BEGIN_SPEC) == 0
4213                   && (DEP_STATUS (dep) & BE_IN_SPEC) != 0
4214                   && (DEP_STATUS (dep) & DEP_TYPES) == DEP_TRUE);
4215
4216       check = DEP_PRO (dep);
4217
4218       gcc_assert (!IS_SPECULATION_CHECK_P (check) && !ORIG_PAT (check)
4219                   && QUEUE_INDEX (check) == QUEUE_NOWHERE);
4220
4221       rec = BLOCK_FOR_INSN (check);
4222
4223       twin = emit_insn_before (copy_insn (PATTERN (insn)), BB_END (rec));
4224       haifa_init_insn (twin);
4225
4226       sd_copy_back_deps (twin, insn, true);
4227
4228       if (sched_verbose && spec_info->dump)
4229         /* INSN_BB (insn) isn't determined for twin insns yet.
4230            So we can't use current_sched_info->print_insn.  */
4231         fprintf (spec_info->dump, ";;\t\tGenerated twin insn : %d/rec%d\n",
4232                  INSN_UID (twin), rec->index);
4233
4234       twins = alloc_INSN_LIST (twin, twins);
4235
4236       /* Add dependences between TWIN and all appropriate
4237          instructions from REC.  */
4238       FOR_EACH_DEP (insn, SD_LIST_SPEC_BACK, sd_it, dep)
4239         {
4240           rtx pro = DEP_PRO (dep);
4241
4242           gcc_assert (DEP_TYPE (dep) == REG_DEP_TRUE);
4243
4244           /* INSN might have dependencies from the instructions from
4245              several recovery blocks.  At this iteration we process those
4246              producers that reside in REC.  */
4247           if (BLOCK_FOR_INSN (pro) == rec)
4248             {
4249               dep_def _new_dep, *new_dep = &_new_dep;
4250
4251               init_dep (new_dep, pro, twin, REG_DEP_TRUE);
4252               sd_add_dep (new_dep, false);
4253             }
4254         }
4255
4256       process_insn_forw_deps_be_in_spec (insn, twin, ts);
4257
4258       /* Remove all dependencies between INSN and insns in REC.  */
4259       for (sd_it = sd_iterator_start (insn, SD_LIST_SPEC_BACK);
4260            sd_iterator_cond (&sd_it, &dep);)
4261         {
4262           rtx pro = DEP_PRO (dep);
4263
4264           if (BLOCK_FOR_INSN (pro) == rec)
4265             sd_delete_dep (sd_it);
4266           else
4267             sd_iterator_next (&sd_it);
4268         }
4269     }
4270
4271   /* We couldn't have added the dependencies between INSN and TWINS earlier
4272      because that would make TWINS appear in the INSN_BACK_DEPS (INSN).  */
4273   while (twins)
4274     {
4275       rtx twin;
4276
4277       twin = XEXP (twins, 0);
4278
4279       {
4280         dep_def _new_dep, *new_dep = &_new_dep;
4281
4282         init_dep (new_dep, insn, twin, REG_DEP_OUTPUT);
4283         sd_add_dep (new_dep, false);
4284       }
4285
4286       twin = XEXP (twins, 1);
4287       free_INSN_LIST_node (twins);
4288       twins = twin;
4289     }
4290
4291   calc_priorities (priorities_roots);
4292   VEC_free (rtx, heap, priorities_roots);
4293 }
4294
4295 /* Extends and fills with zeros (only the new part) array pointed to by P.  */
4296 void *
4297 xrecalloc (void *p, size_t new_nmemb, size_t old_nmemb, size_t size)
4298 {
4299   gcc_assert (new_nmemb >= old_nmemb);
4300   p = XRESIZEVAR (void, p, new_nmemb * size);
4301   memset (((char *) p) + old_nmemb * size, 0, (new_nmemb - old_nmemb) * size);
4302   return p;
4303 }
4304
4305 /* Helper function.
4306    Find fallthru edge from PRED.  */
4307 edge
4308 find_fallthru_edge_from (basic_block pred)
4309 {
4310   edge e;
4311   basic_block succ;
4312
4313   succ = pred->next_bb;
4314   gcc_assert (succ->prev_bb == pred);
4315
4316   if (EDGE_COUNT (pred->succs) <= EDGE_COUNT (succ->preds))
4317     {
4318       e = find_fallthru_edge (pred->succs);
4319
4320       if (e)
4321         {
4322           gcc_assert (e->dest == succ);
4323           return e;
4324         }
4325     }
4326   else
4327     {
4328       e = find_fallthru_edge (succ->preds);
4329
4330       if (e)
4331         {
4332           gcc_assert (e->src == pred);
4333           return e;
4334         }
4335     }
4336
4337   return NULL;
4338 }
4339
4340 /* Extend per basic block data structures.  */
4341 static void
4342 sched_extend_bb (void)
4343 {
4344   rtx insn;
4345
4346   /* The following is done to keep current_sched_info->next_tail non null.  */
4347   insn = BB_END (EXIT_BLOCK_PTR->prev_bb);
4348   if (NEXT_INSN (insn) == 0
4349       || (!NOTE_P (insn)
4350           && !LABEL_P (insn)
4351           /* Don't emit a NOTE if it would end up before a BARRIER.  */
4352           && !BARRIER_P (NEXT_INSN (insn))))
4353     {
4354       rtx note = emit_note_after (NOTE_INSN_DELETED, insn);
4355       /* Make insn appear outside BB.  */
4356       set_block_for_insn (note, NULL);
4357       BB_END (EXIT_BLOCK_PTR->prev_bb) = insn;
4358     }
4359 }
4360
4361 /* Init per basic block data structures.  */
4362 void
4363 sched_init_bbs (void)
4364 {
4365   sched_extend_bb ();
4366 }
4367
4368 /* Initialize BEFORE_RECOVERY variable.  */
4369 static void
4370 init_before_recovery (basic_block *before_recovery_ptr)
4371 {
4372   basic_block last;
4373   edge e;
4374
4375   last = EXIT_BLOCK_PTR->prev_bb;
4376   e = find_fallthru_edge_from (last);
4377
4378   if (e)
4379     {
4380       /* We create two basic blocks:
4381          1. Single instruction block is inserted right after E->SRC
4382          and has jump to
4383          2. Empty block right before EXIT_BLOCK.
4384          Between these two blocks recovery blocks will be emitted.  */
4385
4386       basic_block single, empty;
4387       rtx x, label;
4388
4389       /* If the fallthrough edge to exit we've found is from the block we've
4390          created before, don't do anything more.  */
4391       if (last == after_recovery)
4392         return;
4393
4394       adding_bb_to_current_region_p = false;
4395
4396       single = sched_create_empty_bb (last);
4397       empty = sched_create_empty_bb (single);
4398
4399       /* Add new blocks to the root loop.  */
4400       if (current_loops != NULL)
4401         {
4402           add_bb_to_loop (single, VEC_index (loop_p, current_loops->larray, 0));
4403           add_bb_to_loop (empty, VEC_index (loop_p, current_loops->larray, 0));
4404         }
4405
4406       single->count = last->count;
4407       empty->count = last->count;
4408       single->frequency = last->frequency;
4409       empty->frequency = last->frequency;
4410       BB_COPY_PARTITION (single, last);
4411       BB_COPY_PARTITION (empty, last);
4412
4413       redirect_edge_succ (e, single);
4414       make_single_succ_edge (single, empty, 0);
4415       make_single_succ_edge (empty, EXIT_BLOCK_PTR,
4416                              EDGE_FALLTHRU | EDGE_CAN_FALLTHRU);
4417
4418       label = block_label (empty);
4419       x = emit_jump_insn_after (gen_jump (label), BB_END (single));
4420       JUMP_LABEL (x) = label;
4421       LABEL_NUSES (label)++;
4422       haifa_init_insn (x);
4423
4424       emit_barrier_after (x);
4425
4426       sched_init_only_bb (empty, NULL);
4427       sched_init_only_bb (single, NULL);
4428       sched_extend_bb ();
4429
4430       adding_bb_to_current_region_p = true;
4431       before_recovery = single;
4432       after_recovery = empty;
4433
4434       if (before_recovery_ptr)
4435         *before_recovery_ptr = before_recovery;
4436
4437       if (sched_verbose >= 2 && spec_info->dump)
4438         fprintf (spec_info->dump,
4439                  ";;\t\tFixed fallthru to EXIT : %d->>%d->%d->>EXIT\n",
4440                  last->index, single->index, empty->index);
4441     }
4442   else
4443     before_recovery = last;
4444 }
4445
4446 /* Returns new recovery block.  */
4447 basic_block
4448 sched_create_recovery_block (basic_block *before_recovery_ptr)
4449 {
4450   rtx label;
4451   rtx barrier;
4452   basic_block rec;
4453
4454   haifa_recovery_bb_recently_added_p = true;
4455   haifa_recovery_bb_ever_added_p = true;
4456
4457   init_before_recovery (before_recovery_ptr);
4458
4459   barrier = get_last_bb_insn (before_recovery);
4460   gcc_assert (BARRIER_P (barrier));
4461
4462   label = emit_label_after (gen_label_rtx (), barrier);
4463
4464   rec = create_basic_block (label, label, before_recovery);
4465
4466   /* A recovery block always ends with an unconditional jump.  */
4467   emit_barrier_after (BB_END (rec));
4468
4469   if (BB_PARTITION (before_recovery) != BB_UNPARTITIONED)
4470     BB_SET_PARTITION (rec, BB_COLD_PARTITION);
4471
4472   if (sched_verbose && spec_info->dump)
4473     fprintf (spec_info->dump, ";;\t\tGenerated recovery block rec%d\n",
4474              rec->index);
4475
4476   return rec;
4477 }
4478
4479 /* Create edges: FIRST_BB -> REC; FIRST_BB -> SECOND_BB; REC -> SECOND_BB
4480    and emit necessary jumps.  */
4481 void
4482 sched_create_recovery_edges (basic_block first_bb, basic_block rec,
4483                              basic_block second_bb)
4484 {
4485   rtx label;
4486   rtx jump;
4487   int edge_flags;
4488
4489   /* This is fixing of incoming edge.  */
4490   /* ??? Which other flags should be specified?  */
4491   if (BB_PARTITION (first_bb) != BB_PARTITION (rec))
4492     /* Partition type is the same, if it is "unpartitioned".  */
4493     edge_flags = EDGE_CROSSING;
4494   else
4495     edge_flags = 0;
4496
4497   make_edge (first_bb, rec, edge_flags);
4498   label = block_label (second_bb);
4499   jump = emit_jump_insn_after (gen_jump (label), BB_END (rec));
4500   JUMP_LABEL (jump) = label;
4501   LABEL_NUSES (label)++;
4502
4503   if (BB_PARTITION (second_bb) != BB_PARTITION (rec))
4504     /* Partition type is the same, if it is "unpartitioned".  */
4505     {
4506       /* Rewritten from cfgrtl.c.  */
4507       if (flag_reorder_blocks_and_partition
4508           && targetm_common.have_named_sections)
4509         {
4510           /* We don't need the same note for the check because
4511              any_condjump_p (check) == true.  */
4512           add_reg_note (jump, REG_CROSSING_JUMP, NULL_RTX);
4513         }
4514       edge_flags = EDGE_CROSSING;
4515     }
4516   else
4517     edge_flags = 0;
4518
4519   make_single_succ_edge (rec, second_bb, edge_flags);
4520   if (dom_info_available_p (CDI_DOMINATORS))
4521     set_immediate_dominator (CDI_DOMINATORS, rec, first_bb);
4522 }
4523
4524 /* This function creates recovery code for INSN.  If MUTATE_P is nonzero,
4525    INSN is a simple check, that should be converted to branchy one.  */
4526 static void
4527 create_check_block_twin (rtx insn, bool mutate_p)
4528 {
4529   basic_block rec;
4530   rtx label, check, twin;
4531   ds_t fs;
4532   sd_iterator_def sd_it;
4533   dep_t dep;
4534   dep_def _new_dep, *new_dep = &_new_dep;
4535   ds_t todo_spec;
4536
4537   gcc_assert (ORIG_PAT (insn) != NULL_RTX);
4538
4539   if (!mutate_p)
4540     todo_spec = TODO_SPEC (insn);
4541   else
4542     {
4543       gcc_assert (IS_SPECULATION_SIMPLE_CHECK_P (insn)
4544                   && (TODO_SPEC (insn) & SPECULATIVE) == 0);
4545
4546       todo_spec = CHECK_SPEC (insn);
4547     }
4548
4549   todo_spec &= SPECULATIVE;
4550
4551   /* Create recovery block.  */
4552   if (mutate_p || targetm.sched.needs_block_p (todo_spec))
4553     {
4554       rec = sched_create_recovery_block (NULL);
4555       label = BB_HEAD (rec);
4556     }
4557   else
4558     {
4559       rec = EXIT_BLOCK_PTR;
4560       label = NULL_RTX;
4561     }
4562
4563   /* Emit CHECK.  */
4564   check = targetm.sched.gen_spec_check (insn, label, todo_spec);
4565
4566   if (rec != EXIT_BLOCK_PTR)
4567     {
4568       /* To have mem_reg alive at the beginning of second_bb,
4569          we emit check BEFORE insn, so insn after splitting
4570          insn will be at the beginning of second_bb, which will
4571          provide us with the correct life information.  */
4572       check = emit_jump_insn_before (check, insn);
4573       JUMP_LABEL (check) = label;
4574       LABEL_NUSES (label)++;
4575     }
4576   else
4577     check = emit_insn_before (check, insn);
4578
4579   /* Extend data structures.  */
4580   haifa_init_insn (check);
4581
4582   /* CHECK is being added to current region.  Extend ready list.  */
4583   gcc_assert (sched_ready_n_insns != -1);
4584   sched_extend_ready_list (sched_ready_n_insns + 1);
4585
4586   if (current_sched_info->add_remove_insn)
4587     current_sched_info->add_remove_insn (insn, 0);
4588
4589   RECOVERY_BLOCK (check) = rec;
4590
4591   if (sched_verbose && spec_info->dump)
4592     fprintf (spec_info->dump, ";;\t\tGenerated check insn : %s\n",
4593              (*current_sched_info->print_insn) (check, 0));
4594
4595   gcc_assert (ORIG_PAT (insn));
4596
4597   /* Initialize TWIN (twin is a duplicate of original instruction
4598      in the recovery block).  */
4599   if (rec != EXIT_BLOCK_PTR)
4600     {
4601       sd_iterator_def sd_it;
4602       dep_t dep;
4603
4604       FOR_EACH_DEP (insn, SD_LIST_RES_BACK, sd_it, dep)
4605         if ((DEP_STATUS (dep) & DEP_OUTPUT) != 0)
4606           {
4607             struct _dep _dep2, *dep2 = &_dep2;
4608
4609             init_dep (dep2, DEP_PRO (dep), check, REG_DEP_TRUE);
4610
4611             sd_add_dep (dep2, true);
4612           }
4613
4614       twin = emit_insn_after (ORIG_PAT (insn), BB_END (rec));
4615       haifa_init_insn (twin);
4616
4617       if (sched_verbose && spec_info->dump)
4618         /* INSN_BB (insn) isn't determined for twin insns yet.
4619            So we can't use current_sched_info->print_insn.  */
4620         fprintf (spec_info->dump, ";;\t\tGenerated twin insn : %d/rec%d\n",
4621                  INSN_UID (twin), rec->index);
4622     }
4623   else
4624     {
4625       ORIG_PAT (check) = ORIG_PAT (insn);
4626       HAS_INTERNAL_DEP (check) = 1;
4627       twin = check;
4628       /* ??? We probably should change all OUTPUT dependencies to
4629          (TRUE | OUTPUT).  */
4630     }
4631
4632   /* Copy all resolved back dependencies of INSN to TWIN.  This will
4633      provide correct value for INSN_TICK (TWIN).  */
4634   sd_copy_back_deps (twin, insn, true);
4635
4636   if (rec != EXIT_BLOCK_PTR)
4637     /* In case of branchy check, fix CFG.  */
4638     {
4639       basic_block first_bb, second_bb;
4640       rtx jump;
4641
4642       first_bb = BLOCK_FOR_INSN (check);
4643       second_bb = sched_split_block (first_bb, check);
4644
4645       sched_create_recovery_edges (first_bb, rec, second_bb);
4646
4647       sched_init_only_bb (second_bb, first_bb);
4648       sched_init_only_bb (rec, EXIT_BLOCK_PTR);
4649
4650       jump = BB_END (rec);
4651       haifa_init_insn (jump);
4652     }
4653
4654   /* Move backward dependences from INSN to CHECK and
4655      move forward dependences from INSN to TWIN.  */
4656
4657   /* First, create dependencies between INSN's producers and CHECK & TWIN.  */
4658   FOR_EACH_DEP (insn, SD_LIST_BACK, sd_it, dep)
4659     {
4660       rtx pro = DEP_PRO (dep);
4661       ds_t ds;
4662
4663       /* If BEGIN_DATA: [insn ~~TRUE~~> producer]:
4664          check --TRUE--> producer  ??? or ANTI ???
4665          twin  --TRUE--> producer
4666          twin  --ANTI--> check
4667
4668          If BEGIN_CONTROL: [insn ~~ANTI~~> producer]:
4669          check --ANTI--> producer
4670          twin  --ANTI--> producer
4671          twin  --ANTI--> check
4672
4673          If BE_IN_SPEC: [insn ~~TRUE~~> producer]:
4674          check ~~TRUE~~> producer
4675          twin  ~~TRUE~~> producer
4676          twin  --ANTI--> check  */
4677
4678       ds = DEP_STATUS (dep);
4679
4680       if (ds & BEGIN_SPEC)
4681         {
4682           gcc_assert (!mutate_p);
4683           ds &= ~BEGIN_SPEC;
4684         }
4685
4686       init_dep_1 (new_dep, pro, check, DEP_TYPE (dep), ds);
4687       sd_add_dep (new_dep, false);
4688
4689       if (rec != EXIT_BLOCK_PTR)
4690         {
4691           DEP_CON (new_dep) = twin;
4692           sd_add_dep (new_dep, false);
4693         }
4694     }
4695
4696   /* Second, remove backward dependencies of INSN.  */
4697   for (sd_it = sd_iterator_start (insn, SD_LIST_SPEC_BACK);
4698        sd_iterator_cond (&sd_it, &dep);)
4699     {
4700       if ((DEP_STATUS (dep) & BEGIN_SPEC)
4701           || mutate_p)
4702         /* We can delete this dep because we overcome it with
4703            BEGIN_SPECULATION.  */
4704         sd_delete_dep (sd_it);
4705       else
4706         sd_iterator_next (&sd_it);
4707     }
4708
4709   /* Future Speculations.  Determine what BE_IN speculations will be like.  */
4710   fs = 0;
4711
4712   /* Fields (DONE_SPEC (x) & BEGIN_SPEC) and CHECK_SPEC (x) are set only
4713      here.  */
4714
4715   gcc_assert (!DONE_SPEC (insn));
4716
4717   if (!mutate_p)
4718     {
4719       ds_t ts = TODO_SPEC (insn);
4720
4721       DONE_SPEC (insn) = ts & BEGIN_SPEC;
4722       CHECK_SPEC (check) = ts & BEGIN_SPEC;
4723
4724       /* Luckiness of future speculations solely depends upon initial
4725          BEGIN speculation.  */
4726       if (ts & BEGIN_DATA)
4727         fs = set_dep_weak (fs, BE_IN_DATA, get_dep_weak (ts, BEGIN_DATA));
4728       if (ts & BEGIN_CONTROL)
4729         fs = set_dep_weak (fs, BE_IN_CONTROL,
4730                            get_dep_weak (ts, BEGIN_CONTROL));
4731     }
4732   else
4733     CHECK_SPEC (check) = CHECK_SPEC (insn);
4734
4735   /* Future speculations: call the helper.  */
4736   process_insn_forw_deps_be_in_spec (insn, twin, fs);
4737
4738   if (rec != EXIT_BLOCK_PTR)
4739     {
4740       /* Which types of dependencies should we use here is,
4741          generally, machine-dependent question...  But, for now,
4742          it is not.  */
4743
4744       if (!mutate_p)
4745         {
4746           init_dep (new_dep, insn, check, REG_DEP_TRUE);
4747           sd_add_dep (new_dep, false);
4748
4749           init_dep (new_dep, insn, twin, REG_DEP_OUTPUT);
4750           sd_add_dep (new_dep, false);
4751         }
4752       else
4753         {
4754           if (spec_info->dump)
4755             fprintf (spec_info->dump, ";;\t\tRemoved simple check : %s\n",
4756                      (*current_sched_info->print_insn) (insn, 0));
4757
4758           /* Remove all dependencies of the INSN.  */
4759           {
4760             sd_it = sd_iterator_start (insn, (SD_LIST_FORW
4761                                               | SD_LIST_BACK
4762                                               | SD_LIST_RES_BACK));
4763             while (sd_iterator_cond (&sd_it, &dep))
4764               sd_delete_dep (sd_it);
4765           }
4766
4767           /* If former check (INSN) already was moved to the ready (or queue)
4768              list, add new check (CHECK) there too.  */
4769           if (QUEUE_INDEX (insn) != QUEUE_NOWHERE)
4770             try_ready (check);
4771
4772           /* Remove old check from instruction stream and free its
4773              data.  */
4774           sched_remove_insn (insn);
4775         }
4776
4777       init_dep (new_dep, check, twin, REG_DEP_ANTI);
4778       sd_add_dep (new_dep, false);
4779     }
4780   else
4781     {
4782       init_dep_1 (new_dep, insn, check, REG_DEP_TRUE, DEP_TRUE | DEP_OUTPUT);
4783       sd_add_dep (new_dep, false);
4784     }
4785
4786   if (!mutate_p)
4787     /* Fix priorities.  If MUTATE_P is nonzero, this is not necessary,
4788        because it'll be done later in add_to_speculative_block.  */
4789     {
4790       rtx_vec_t priorities_roots = NULL;
4791
4792       clear_priorities (twin, &priorities_roots);
4793       calc_priorities (priorities_roots);
4794       VEC_free (rtx, heap, priorities_roots);
4795     }
4796 }
4797
4798 /* Removes dependency between instructions in the recovery block REC
4799    and usual region instructions.  It keeps inner dependences so it
4800    won't be necessary to recompute them.  */
4801 static void
4802 fix_recovery_deps (basic_block rec)
4803 {
4804   rtx note, insn, jump, ready_list = 0;
4805   bitmap_head in_ready;
4806   rtx link;
4807
4808   bitmap_initialize (&in_ready, 0);
4809
4810   /* NOTE - a basic block note.  */
4811   note = NEXT_INSN (BB_HEAD (rec));
4812   gcc_assert (NOTE_INSN_BASIC_BLOCK_P (note));
4813   insn = BB_END (rec);
4814   gcc_assert (JUMP_P (insn));
4815   insn = PREV_INSN (insn);
4816
4817   do
4818     {
4819       sd_iterator_def sd_it;
4820       dep_t dep;
4821
4822       for (sd_it = sd_iterator_start (insn, SD_LIST_FORW);
4823            sd_iterator_cond (&sd_it, &dep);)
4824         {
4825           rtx consumer = DEP_CON (dep);
4826
4827           if (BLOCK_FOR_INSN (consumer) != rec)
4828             {
4829               sd_delete_dep (sd_it);
4830
4831               if (bitmap_set_bit (&in_ready, INSN_LUID (consumer)))
4832                 ready_list = alloc_INSN_LIST (consumer, ready_list);
4833             }
4834           else
4835             {
4836               gcc_assert ((DEP_STATUS (dep) & DEP_TYPES) == DEP_TRUE);
4837
4838               sd_iterator_next (&sd_it);
4839             }
4840         }
4841
4842       insn = PREV_INSN (insn);
4843     }
4844   while (insn != note);
4845
4846   bitmap_clear (&in_ready);
4847
4848   /* Try to add instructions to the ready or queue list.  */
4849   for (link = ready_list; link; link = XEXP (link, 1))
4850     try_ready (XEXP (link, 0));
4851   free_INSN_LIST_list (&ready_list);
4852
4853   /* Fixing jump's dependences.  */
4854   insn = BB_HEAD (rec);
4855   jump = BB_END (rec);
4856
4857   gcc_assert (LABEL_P (insn));
4858   insn = NEXT_INSN (insn);
4859
4860   gcc_assert (NOTE_INSN_BASIC_BLOCK_P (insn));
4861   add_jump_dependencies (insn, jump);
4862 }
4863
4864 /* Change pattern of INSN to NEW_PAT.  */
4865 void
4866 sched_change_pattern (rtx insn, rtx new_pat)
4867 {
4868   int t;
4869
4870   t = validate_change (insn, &PATTERN (insn), new_pat, 0);
4871   gcc_assert (t);
4872   dfa_clear_single_insn_cache (insn);
4873 }
4874
4875 /* Change pattern of INSN to NEW_PAT.  Invalidate cached haifa
4876    instruction data.  */
4877 static void
4878 haifa_change_pattern (rtx insn, rtx new_pat)
4879 {
4880   sched_change_pattern (insn, new_pat);
4881
4882   /* Invalidate INSN_COST, so it'll be recalculated.  */
4883   INSN_COST (insn) = -1;
4884   /* Invalidate INSN_TICK, so it'll be recalculated.  */
4885   INSN_TICK (insn) = INVALID_TICK;
4886 }
4887
4888 /* -1 - can't speculate,
4889    0 - for speculation with REQUEST mode it is OK to use
4890    current instruction pattern,
4891    1 - need to change pattern for *NEW_PAT to be speculative.  */
4892 int
4893 sched_speculate_insn (rtx insn, ds_t request, rtx *new_pat)
4894 {
4895   gcc_assert (current_sched_info->flags & DO_SPECULATION
4896               && (request & SPECULATIVE)
4897               && sched_insn_is_legitimate_for_speculation_p (insn, request));
4898
4899   if ((request & spec_info->mask) != request)
4900     return -1;
4901
4902   if (request & BE_IN_SPEC
4903       && !(request & BEGIN_SPEC))
4904     return 0;
4905
4906   return targetm.sched.speculate_insn (insn, request, new_pat);
4907 }
4908
4909 static int
4910 haifa_speculate_insn (rtx insn, ds_t request, rtx *new_pat)
4911 {
4912   gcc_assert (sched_deps_info->generate_spec_deps
4913               && !IS_SPECULATION_CHECK_P (insn));
4914
4915   if (HAS_INTERNAL_DEP (insn)
4916       || SCHED_GROUP_P (insn))
4917     return -1;
4918
4919   return sched_speculate_insn (insn, request, new_pat);
4920 }
4921
4922 /* Print some information about block BB, which starts with HEAD and
4923    ends with TAIL, before scheduling it.
4924    I is zero, if scheduler is about to start with the fresh ebb.  */
4925 static void
4926 dump_new_block_header (int i, basic_block bb, rtx head, rtx tail)
4927 {
4928   if (!i)
4929     fprintf (sched_dump,
4930              ";;   ======================================================\n");
4931   else
4932     fprintf (sched_dump,
4933              ";;   =====================ADVANCING TO=====================\n");
4934   fprintf (sched_dump,
4935            ";;   -- basic block %d from %d to %d -- %s reload\n",
4936            bb->index, INSN_UID (head), INSN_UID (tail),
4937            (reload_completed ? "after" : "before"));
4938   fprintf (sched_dump,
4939            ";;   ======================================================\n");
4940   fprintf (sched_dump, "\n");
4941 }
4942
4943 /* Unlink basic block notes and labels and saves them, so they
4944    can be easily restored.  We unlink basic block notes in EBB to
4945    provide back-compatibility with the previous code, as target backends
4946    assume, that there'll be only instructions between
4947    current_sched_info->{head and tail}.  We restore these notes as soon
4948    as we can.
4949    FIRST (LAST) is the first (last) basic block in the ebb.
4950    NB: In usual case (FIRST == LAST) nothing is really done.  */
4951 void
4952 unlink_bb_notes (basic_block first, basic_block last)
4953 {
4954   /* We DON'T unlink basic block notes of the first block in the ebb.  */
4955   if (first == last)
4956     return;
4957
4958   bb_header = XNEWVEC (rtx, last_basic_block);
4959
4960   /* Make a sentinel.  */
4961   if (last->next_bb != EXIT_BLOCK_PTR)
4962     bb_header[last->next_bb->index] = 0;
4963
4964   first = first->next_bb;
4965   do
4966     {
4967       rtx prev, label, note, next;
4968
4969       label = BB_HEAD (last);
4970       if (LABEL_P (label))
4971         note = NEXT_INSN (label);
4972       else
4973         note = label;
4974       gcc_assert (NOTE_INSN_BASIC_BLOCK_P (note));
4975
4976       prev = PREV_INSN (label);
4977       next = NEXT_INSN (note);
4978       gcc_assert (prev && next);
4979
4980       NEXT_INSN (prev) = next;
4981       PREV_INSN (next) = prev;
4982
4983       bb_header[last->index] = label;
4984
4985       if (last == first)
4986         break;
4987
4988       last = last->prev_bb;
4989     }
4990   while (1);
4991 }
4992
4993 /* Restore basic block notes.
4994    FIRST is the first basic block in the ebb.  */
4995 static void
4996 restore_bb_notes (basic_block first)
4997 {
4998   if (!bb_header)
4999     return;
5000
5001   /* We DON'T unlink basic block notes of the first block in the ebb.  */
5002   first = first->next_bb;
5003   /* Remember: FIRST is actually a second basic block in the ebb.  */
5004
5005   while (first != EXIT_BLOCK_PTR
5006          && bb_header[first->index])
5007     {
5008       rtx prev, label, note, next;
5009
5010       label = bb_header[first->index];
5011       prev = PREV_INSN (label);
5012       next = NEXT_INSN (prev);
5013
5014       if (LABEL_P (label))
5015         note = NEXT_INSN (label);
5016       else
5017         note = label;
5018       gcc_assert (NOTE_INSN_BASIC_BLOCK_P (note));
5019
5020       bb_header[first->index] = 0;
5021
5022       NEXT_INSN (prev) = label;
5023       NEXT_INSN (note) = next;
5024       PREV_INSN (next) = note;
5025
5026       first = first->next_bb;
5027     }
5028
5029   free (bb_header);
5030   bb_header = 0;
5031 }
5032
5033 /* Helper function.
5034    Fix CFG after both in- and inter-block movement of
5035    control_flow_insn_p JUMP.  */
5036 static void
5037 fix_jump_move (rtx jump)
5038 {
5039   basic_block bb, jump_bb, jump_bb_next;
5040
5041   bb = BLOCK_FOR_INSN (PREV_INSN (jump));
5042   jump_bb = BLOCK_FOR_INSN (jump);
5043   jump_bb_next = jump_bb->next_bb;
5044
5045   gcc_assert (common_sched_info->sched_pass_id == SCHED_EBB_PASS
5046               || IS_SPECULATION_BRANCHY_CHECK_P (jump));
5047
5048   if (!NOTE_INSN_BASIC_BLOCK_P (BB_END (jump_bb_next)))
5049     /* if jump_bb_next is not empty.  */
5050     BB_END (jump_bb) = BB_END (jump_bb_next);
5051
5052   if (BB_END (bb) != PREV_INSN (jump))
5053     /* Then there are instruction after jump that should be placed
5054        to jump_bb_next.  */
5055     BB_END (jump_bb_next) = BB_END (bb);
5056   else
5057     /* Otherwise jump_bb_next is empty.  */
5058     BB_END (jump_bb_next) = NEXT_INSN (BB_HEAD (jump_bb_next));
5059
5060   /* To make assertion in move_insn happy.  */
5061   BB_END (bb) = PREV_INSN (jump);
5062
5063   update_bb_for_insn (jump_bb_next);
5064 }
5065
5066 /* Fix CFG after interblock movement of control_flow_insn_p JUMP.  */
5067 static void
5068 move_block_after_check (rtx jump)
5069 {
5070   basic_block bb, jump_bb, jump_bb_next;
5071   VEC(edge,gc) *t;
5072
5073   bb = BLOCK_FOR_INSN (PREV_INSN (jump));
5074   jump_bb = BLOCK_FOR_INSN (jump);
5075   jump_bb_next = jump_bb->next_bb;
5076
5077   update_bb_for_insn (jump_bb);
5078
5079   gcc_assert (IS_SPECULATION_CHECK_P (jump)
5080               || IS_SPECULATION_CHECK_P (BB_END (jump_bb_next)));
5081
5082   unlink_block (jump_bb_next);
5083   link_block (jump_bb_next, bb);
5084
5085   t = bb->succs;
5086   bb->succs = 0;
5087   move_succs (&(jump_bb->succs), bb);
5088   move_succs (&(jump_bb_next->succs), jump_bb);
5089   move_succs (&t, jump_bb_next);
5090
5091   df_mark_solutions_dirty ();
5092
5093   common_sched_info->fix_recovery_cfg
5094     (bb->index, jump_bb->index, jump_bb_next->index);
5095 }
5096
5097 /* Helper function for move_block_after_check.
5098    This functions attaches edge vector pointed to by SUCCSP to
5099    block TO.  */
5100 static void
5101 move_succs (VEC(edge,gc) **succsp, basic_block to)
5102 {
5103   edge e;
5104   edge_iterator ei;
5105
5106   gcc_assert (to->succs == 0);
5107
5108   to->succs = *succsp;
5109
5110   FOR_EACH_EDGE (e, ei, to->succs)
5111     e->src = to;
5112
5113   *succsp = 0;
5114 }
5115
5116 /* Remove INSN from the instruction stream.
5117    INSN should have any dependencies.  */
5118 static void
5119 sched_remove_insn (rtx insn)
5120 {
5121   sd_finish_insn (insn);
5122
5123   change_queue_index (insn, QUEUE_NOWHERE);
5124   current_sched_info->add_remove_insn (insn, 1);
5125   remove_insn (insn);
5126 }
5127
5128 /* Clear priorities of all instructions, that are forward dependent on INSN.
5129    Store in vector pointed to by ROOTS_PTR insns on which priority () should
5130    be invoked to initialize all cleared priorities.  */
5131 static void
5132 clear_priorities (rtx insn, rtx_vec_t *roots_ptr)
5133 {
5134   sd_iterator_def sd_it;
5135   dep_t dep;
5136   bool insn_is_root_p = true;
5137
5138   gcc_assert (QUEUE_INDEX (insn) != QUEUE_SCHEDULED);
5139
5140   FOR_EACH_DEP (insn, SD_LIST_BACK, sd_it, dep)
5141     {
5142       rtx pro = DEP_PRO (dep);
5143
5144       if (INSN_PRIORITY_STATUS (pro) >= 0
5145           && QUEUE_INDEX (insn) != QUEUE_SCHEDULED)
5146         {
5147           /* If DEP doesn't contribute to priority then INSN itself should
5148              be added to priority roots.  */
5149           if (contributes_to_priority_p (dep))
5150             insn_is_root_p = false;
5151
5152           INSN_PRIORITY_STATUS (pro) = -1;
5153           clear_priorities (pro, roots_ptr);
5154         }
5155     }
5156
5157   if (insn_is_root_p)
5158     VEC_safe_push (rtx, heap, *roots_ptr, insn);
5159 }
5160
5161 /* Recompute priorities of instructions, whose priorities might have been
5162    changed.  ROOTS is a vector of instructions whose priority computation will
5163    trigger initialization of all cleared priorities.  */
5164 static void
5165 calc_priorities (rtx_vec_t roots)
5166 {
5167   int i;
5168   rtx insn;
5169
5170   FOR_EACH_VEC_ELT (rtx, roots, i, insn)
5171     priority (insn);
5172 }
5173
5174
5175 /* Add dependences between JUMP and other instructions in the recovery
5176    block.  INSN is the first insn the recovery block.  */
5177 static void
5178 add_jump_dependencies (rtx insn, rtx jump)
5179 {
5180   do
5181     {
5182       insn = NEXT_INSN (insn);
5183       if (insn == jump)
5184         break;
5185
5186       if (dep_list_size (insn) == 0)
5187         {
5188           dep_def _new_dep, *new_dep = &_new_dep;
5189
5190           init_dep (new_dep, insn, jump, REG_DEP_ANTI);
5191           sd_add_dep (new_dep, false);
5192         }
5193     }
5194   while (1);
5195
5196   gcc_assert (!sd_lists_empty_p (jump, SD_LIST_BACK));
5197 }
5198
5199 /* Return the NOTE_INSN_BASIC_BLOCK of BB.  */
5200 rtx
5201 bb_note (basic_block bb)
5202 {
5203   rtx note;
5204
5205   note = BB_HEAD (bb);
5206   if (LABEL_P (note))
5207     note = NEXT_INSN (note);
5208
5209   gcc_assert (NOTE_INSN_BASIC_BLOCK_P (note));
5210   return note;
5211 }
5212
5213 #ifdef ENABLE_CHECKING
5214 /* Helper function for check_cfg.
5215    Return nonzero, if edge vector pointed to by EL has edge with TYPE in
5216    its flags.  */
5217 static int
5218 has_edge_p (VEC(edge,gc) *el, int type)
5219 {
5220   edge e;
5221   edge_iterator ei;
5222
5223   FOR_EACH_EDGE (e, ei, el)
5224     if (e->flags & type)
5225       return 1;
5226   return 0;
5227 }
5228
5229 /* Search back, starting at INSN, for an insn that is not a
5230    NOTE_INSN_VAR_LOCATION.  Don't search beyond HEAD, and return it if
5231    no such insn can be found.  */
5232 static inline rtx
5233 prev_non_location_insn (rtx insn, rtx head)
5234 {
5235   while (insn != head && NOTE_P (insn)
5236          && NOTE_KIND (insn) == NOTE_INSN_VAR_LOCATION)
5237     insn = PREV_INSN (insn);
5238
5239   return insn;
5240 }
5241
5242 /* Check few properties of CFG between HEAD and TAIL.
5243    If HEAD (TAIL) is NULL check from the beginning (till the end) of the
5244    instruction stream.  */
5245 static void
5246 check_cfg (rtx head, rtx tail)
5247 {
5248   rtx next_tail;
5249   basic_block bb = 0;
5250   int not_first = 0, not_last;
5251
5252   if (head == NULL)
5253     head = get_insns ();
5254   if (tail == NULL)
5255     tail = get_last_insn ();
5256   next_tail = NEXT_INSN (tail);
5257
5258   do
5259     {
5260       not_last = head != tail;
5261
5262       if (not_first)
5263         gcc_assert (NEXT_INSN (PREV_INSN (head)) == head);
5264       if (not_last)
5265         gcc_assert (PREV_INSN (NEXT_INSN (head)) == head);
5266
5267       if (LABEL_P (head)
5268           || (NOTE_INSN_BASIC_BLOCK_P (head)
5269               && (!not_first
5270                   || (not_first && !LABEL_P (PREV_INSN (head))))))
5271         {
5272           gcc_assert (bb == 0);
5273           bb = BLOCK_FOR_INSN (head);
5274           if (bb != 0)
5275             gcc_assert (BB_HEAD (bb) == head);
5276           else
5277             /* This is the case of jump table.  See inside_basic_block_p ().  */
5278             gcc_assert (LABEL_P (head) && !inside_basic_block_p (head));
5279         }
5280
5281       if (bb == 0)
5282         {
5283           gcc_assert (!inside_basic_block_p (head));
5284           head = NEXT_INSN (head);
5285         }
5286       else
5287         {
5288           gcc_assert (inside_basic_block_p (head)
5289                       || NOTE_P (head));
5290           gcc_assert (BLOCK_FOR_INSN (head) == bb);
5291
5292           if (LABEL_P (head))
5293             {
5294               head = NEXT_INSN (head);
5295               gcc_assert (NOTE_INSN_BASIC_BLOCK_P (head));
5296             }
5297           else
5298             {
5299               if (control_flow_insn_p (head))
5300                 {
5301                   gcc_assert (prev_non_location_insn (BB_END (bb), head)
5302                               == head);
5303
5304                   if (any_uncondjump_p (head))
5305                     gcc_assert (EDGE_COUNT (bb->succs) == 1
5306                                 && BARRIER_P (NEXT_INSN (head)));
5307                   else if (any_condjump_p (head))
5308                     gcc_assert (/* Usual case.  */
5309                                 (EDGE_COUNT (bb->succs) > 1
5310                                  && !BARRIER_P (NEXT_INSN (head)))
5311                                 /* Or jump to the next instruction.  */
5312                                 || (EDGE_COUNT (bb->succs) == 1
5313                                     && (BB_HEAD (EDGE_I (bb->succs, 0)->dest)
5314                                         == JUMP_LABEL (head))));
5315                 }
5316               if (BB_END (bb) == head)
5317                 {
5318                   if (EDGE_COUNT (bb->succs) > 1)
5319                     gcc_assert (control_flow_insn_p (prev_non_location_insn
5320                                                      (head, BB_HEAD (bb)))
5321                                 || has_edge_p (bb->succs, EDGE_COMPLEX));
5322                   bb = 0;
5323                 }
5324
5325               head = NEXT_INSN (head);
5326             }
5327         }
5328
5329       not_first = 1;
5330     }
5331   while (head != next_tail);
5332
5333   gcc_assert (bb == 0);
5334 }
5335
5336 #endif /* ENABLE_CHECKING */
5337
5338 /* Extend data structures for logical insn UID.  */
5339 void
5340 sched_extend_luids (void)
5341 {
5342   int new_luids_max_uid = get_max_uid () + 1;
5343
5344   VEC_safe_grow_cleared (int, heap, sched_luids, new_luids_max_uid);
5345 }
5346
5347 /* Initialize LUID for INSN.  */
5348 void
5349 sched_init_insn_luid (rtx insn)
5350 {
5351   int i = INSN_P (insn) ? 1 : common_sched_info->luid_for_non_insn (insn);
5352   int luid;
5353
5354   if (i >= 0)
5355     {
5356       luid = sched_max_luid;
5357       sched_max_luid += i;
5358     }
5359   else
5360     luid = -1;
5361
5362   SET_INSN_LUID (insn, luid);
5363 }
5364
5365 /* Initialize luids for BBS.
5366    The hook common_sched_info->luid_for_non_insn () is used to determine
5367    if notes, labels, etc. need luids.  */
5368 void
5369 sched_init_luids (bb_vec_t bbs)
5370 {
5371   int i;
5372   basic_block bb;
5373
5374   sched_extend_luids ();
5375   FOR_EACH_VEC_ELT (basic_block, bbs, i, bb)
5376     {
5377       rtx insn;
5378
5379       FOR_BB_INSNS (bb, insn)
5380         sched_init_insn_luid (insn);
5381     }
5382 }
5383
5384 /* Free LUIDs.  */
5385 void
5386 sched_finish_luids (void)
5387 {
5388   VEC_free (int, heap, sched_luids);
5389   sched_max_luid = 1;
5390 }
5391
5392 /* Return logical uid of INSN.  Helpful while debugging.  */
5393 int
5394 insn_luid (rtx insn)
5395 {
5396   return INSN_LUID (insn);
5397 }
5398
5399 /* Extend per insn data in the target.  */
5400 void
5401 sched_extend_target (void)
5402 {
5403   if (targetm.sched.h_i_d_extended)
5404     targetm.sched.h_i_d_extended ();
5405 }
5406
5407 /* Extend global scheduler structures (those, that live across calls to
5408    schedule_block) to include information about just emitted INSN.  */
5409 static void
5410 extend_h_i_d (void)
5411 {
5412   int reserve = (get_max_uid () + 1
5413                  - VEC_length (haifa_insn_data_def, h_i_d));
5414   if (reserve > 0
5415       && ! VEC_space (haifa_insn_data_def, h_i_d, reserve))
5416     {
5417       VEC_safe_grow_cleared (haifa_insn_data_def, heap, h_i_d,
5418                              3 * get_max_uid () / 2);
5419       sched_extend_target ();
5420     }
5421 }
5422
5423 /* Initialize h_i_d entry of the INSN with default values.
5424    Values, that are not explicitly initialized here, hold zero.  */
5425 static void
5426 init_h_i_d (rtx insn)
5427 {
5428   if (INSN_LUID (insn) > 0)
5429     {
5430       INSN_COST (insn) = -1;
5431       QUEUE_INDEX (insn) = QUEUE_NOWHERE;
5432       INSN_TICK (insn) = INVALID_TICK;
5433       INTER_TICK (insn) = INVALID_TICK;
5434       TODO_SPEC (insn) = HARD_DEP;
5435     }
5436 }
5437
5438 /* Initialize haifa_insn_data for BBS.  */
5439 void
5440 haifa_init_h_i_d (bb_vec_t bbs)
5441 {
5442   int i;
5443   basic_block bb;
5444
5445   extend_h_i_d ();
5446   FOR_EACH_VEC_ELT (basic_block, bbs, i, bb)
5447     {
5448       rtx insn;
5449
5450       FOR_BB_INSNS (bb, insn)
5451         init_h_i_d (insn);
5452     }
5453 }
5454
5455 /* Finalize haifa_insn_data.  */
5456 void
5457 haifa_finish_h_i_d (void)
5458 {
5459   int i;
5460   haifa_insn_data_t data;
5461   struct reg_use_data *use, *next;
5462
5463   FOR_EACH_VEC_ELT (haifa_insn_data_def, h_i_d, i, data)
5464     {
5465       free (data->reg_pressure);
5466       for (use = data->reg_use_list; use != NULL; use = next)
5467         {
5468           next = use->next_insn_use;
5469           free (use);
5470         }
5471     }
5472   VEC_free (haifa_insn_data_def, heap, h_i_d);
5473 }
5474
5475 /* Init data for the new insn INSN.  */
5476 static void
5477 haifa_init_insn (rtx insn)
5478 {
5479   gcc_assert (insn != NULL);
5480
5481   sched_extend_luids ();
5482   sched_init_insn_luid (insn);
5483   sched_extend_target ();
5484   sched_deps_init (false);
5485   extend_h_i_d ();
5486   init_h_i_d (insn);
5487
5488   if (adding_bb_to_current_region_p)
5489     {
5490       sd_init_insn (insn);
5491
5492       /* Extend dependency caches by one element.  */
5493       extend_dependency_caches (1, false);
5494     }
5495   if (sched_pressure_p)
5496     init_insn_reg_pressure_info (insn);
5497 }
5498
5499 /* Init data for the new basic block BB which comes after AFTER.  */
5500 static void
5501 haifa_init_only_bb (basic_block bb, basic_block after)
5502 {
5503   gcc_assert (bb != NULL);
5504
5505   sched_init_bbs ();
5506
5507   if (common_sched_info->add_block)
5508     /* This changes only data structures of the front-end.  */
5509     common_sched_info->add_block (bb, after);
5510 }
5511
5512 /* A generic version of sched_split_block ().  */
5513 basic_block
5514 sched_split_block_1 (basic_block first_bb, rtx after)
5515 {
5516   edge e;
5517
5518   e = split_block (first_bb, after);
5519   gcc_assert (e->src == first_bb);
5520
5521   /* sched_split_block emits note if *check == BB_END.  Probably it
5522      is better to rip that note off.  */
5523
5524   return e->dest;
5525 }
5526
5527 /* A generic version of sched_create_empty_bb ().  */
5528 basic_block
5529 sched_create_empty_bb_1 (basic_block after)
5530 {
5531   return create_empty_bb (after);
5532 }
5533
5534 /* Insert PAT as an INSN into the schedule and update the necessary data
5535    structures to account for it. */
5536 rtx
5537 sched_emit_insn (rtx pat)
5538 {
5539   rtx insn = emit_insn_before (pat, nonscheduled_insns_begin);
5540   haifa_init_insn (insn);
5541
5542   if (current_sched_info->add_remove_insn)
5543     current_sched_info->add_remove_insn (insn, 0);
5544
5545   (*current_sched_info->begin_schedule_ready) (insn);
5546   VEC_safe_push (rtx, heap, scheduled_insns, insn);
5547
5548   last_scheduled_insn = insn;
5549   return insn;
5550 }
5551
5552 /* This function returns a candidate satisfying dispatch constraints from
5553    the ready list.  */
5554
5555 static rtx
5556 ready_remove_first_dispatch (struct ready_list *ready)
5557 {
5558   int i;
5559   rtx insn = ready_element (ready, 0);
5560
5561   if (ready->n_ready == 1
5562       || INSN_CODE (insn) < 0
5563       || !INSN_P (insn)
5564       || !active_insn_p (insn)
5565       || targetm.sched.dispatch (insn, FITS_DISPATCH_WINDOW))
5566     return ready_remove_first (ready);
5567
5568   for (i = 1; i < ready->n_ready; i++)
5569     {
5570       insn = ready_element (ready, i);
5571
5572       if (INSN_CODE (insn) < 0
5573           || !INSN_P (insn)
5574           || !active_insn_p (insn))
5575         continue;
5576
5577       if (targetm.sched.dispatch (insn, FITS_DISPATCH_WINDOW))
5578         {
5579           /* Return ith element of ready.  */
5580           insn = ready_remove (ready, i);
5581           return insn;
5582         }
5583     }
5584
5585   if (targetm.sched.dispatch (NULL_RTX, DISPATCH_VIOLATION))
5586     return ready_remove_first (ready);
5587
5588   for (i = 1; i < ready->n_ready; i++)
5589     {
5590       insn = ready_element (ready, i);
5591
5592       if (INSN_CODE (insn) < 0
5593           || !INSN_P (insn)
5594           || !active_insn_p (insn))
5595         continue;
5596
5597       /* Return i-th element of ready.  */
5598       if (targetm.sched.dispatch (insn, IS_CMP))
5599         return ready_remove (ready, i);
5600     }
5601
5602   return ready_remove_first (ready);
5603 }
5604
5605 /* Get number of ready insn in the ready list.  */
5606
5607 int
5608 number_in_ready (void)
5609 {
5610   return ready.n_ready;
5611 }
5612
5613 /* Get number of ready's in the ready list.  */
5614
5615 rtx
5616 get_ready_element (int i)
5617 {
5618   return ready_element (&ready, i);
5619 }
5620
5621 #endif /* INSN_SCHEDULING */